diff --git a/Projects/s455/Analysis.cxx b/Projects/s455/Analysis.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..19cf9d33ed87735b19f06e7f0ced17e1eaa849ac
--- /dev/null
+++ b/Projects/s455/Analysis.cxx
@@ -0,0 +1,201 @@
+/*****************************************************************************
+ * 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: P. Morfouace contact address: pierre.morfouace2@cea.fr   *
+ *                                                                           *
+ * Creation Date  : June 2021                                                *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class describe  Sofia analysis project                       *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *****************************************************************************/
+
+#include<iostream>
+#include<algorithm>
+using namespace std;
+#include"Analysis.h"
+#include"NPAnalysisFactory.h"
+#include"NPDetectorManager.h"
+////////////////////////////////////////////////////////////////////////////////
+Analysis::Analysis(){
+}
+////////////////////////////////////////////////////////////////////////////////
+Analysis::~Analysis(){
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::Init(){
+  SofBeamID = new TSofBeamID();
+  SofSci= (TSofSciPhysics*) m_DetectorManager->GetDetector("SofSci");
+  SofTrim= (TSofTrimPhysics*) m_DetectorManager->GetDetector("SofTrim");
+  //SofTofW= (TSofTofWPhysics*) m_DetectorManager->GetDetector("SofTofW");
+
+  InitParameter();
+  InitOutputBranch();
+  LoadCut();
+
+
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::TreatEvent(){
+  ReInitValue();
+  //cout << "************" << endl;
+  BeamAnalysis();
+
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::BeamAnalysis(){
+  unsigned int sofsci_size = SofSci->DetectorNbr.size();
+  if(sofsci_size==2){
+    double beta = SofSci->Beta[0];
+    //cout << "Set beta to " << beta << endl;
+    SofTrim->SetBeta(beta);
+    SofTrim->BuildSimplePhysicalEvent();
+    double Zbeam,Qmax,Theta;
+    if(SofTrim->EnergySection.size()>0){
+      Zbeam = SofTrim->GetMaxEnergySection();
+      Qmax = DetermineQmax();
+      Theta = SofTrim->Theta[0];
+    }
+
+    double TofFromS2    = SofSci->CalTof[0];
+    double velocity_mns = SofSci->VelocityMNs[0];
+    double Beta         = SofSci->Beta[0];
+    double Gamma        = 1./(TMath::Sqrt(1 - TMath::Power(Beta,2)));
+    double XS2          = SofSci->PosMm[0];
+    double XCC          = SofSci->PosMm[1];
+    double LS2;
+    LS2 = fLS2_0*(1 + fK_LS2*Theta);
+    velocity_mns = LS2/TofFromS2;
+    double Brho = fBrho0 * (1 - XS2/fDS2 - XCC/fDCC);
+    double AoQ  = Brho / (3.10716*Gamma*Beta);
+    double A    = AoQ * Qmax;
+
+    // Filling Beam tree
+    SofBeamID->SetZbeam(Zbeam);
+    SofBeamID->SetQmax(rand.Gaus(Qmax,0.15));
+    SofBeamID->SetAoQ(AoQ);
+    SofBeamID->SetAbeam(A);
+    SofBeamID->SetBeta(Beta);
+    SofBeamID->SetGamma(Gamma);
+    SofBeamID->SetBrho(Brho);
+    SofBeamID->SetXS2(XS2);
+    SofBeamID->SetXCC(XCC);
+  }
+
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::LoadCut(){
+  TString input_path = "./calibration/SofTrim/cut/";
+
+  TString rootfile;
+  TString cutfile;
+  TFile* file;
+  for(int i=0; i<3; i++){
+    // Q=78
+    rootfile = Form("cutsec%iQ78.root",i+1);
+    cutfile = input_path + rootfile;
+    file = new TFile(cutfile);
+    cutQ78[i] = (TCutG*) file->Get(Form("cutsec%iQ78",i+1));
+    // Q=79
+    rootfile = Form("cutsec%iQ79.root",i+1);
+    cutfile = input_path + rootfile;
+    file = new TFile(cutfile);
+    cutQ79[i] = (TCutG*) file->Get(Form("cutsec%iQ79",i+1));
+    // Q=80
+    rootfile = Form("cutsec%iQ80.root",i+1);
+    cutfile = input_path + rootfile;
+    file = new TFile(cutfile);
+    cutQ80[i] = (TCutG*) file->Get(Form("cutsec%iQ80",i+1));
+    // Q=81
+    rootfile = Form("cutsec%iQ81.root",i+1);
+    cutfile = input_path + rootfile;
+    file = new TFile(cutfile);
+    cutQ81[i] = (TCutG*) file->Get(Form("cutsec%iQ81",i+1));
+  }
+}
+
+////////////////////////////////////////////////////////////////////////////////
+int Analysis::DetermineQmax(){
+  int Qmax;
+  int Qsec[3];
+
+  unsigned int size = SofTrim->EnergySection.size();
+  for(unsigned int i=0; i<size; i++){
+    int SecNbr   = SofTrim->SectionNbr[i];
+    double Theta = SofTrim->Theta[i];
+    double Esec  = SofTrim->EnergySection[i];
+
+    if(cutQ78[SecNbr-1]->IsInside(Theta,Esec))
+      Qsec[SecNbr-1] = 78;
+    else if(cutQ79[SecNbr-1]->IsInside(Theta,Esec))
+      Qsec[SecNbr-1] = 79;
+    else if(cutQ80[SecNbr-1]->IsInside(Theta,Esec))
+      Qsec[SecNbr-1] = 80;
+    else if(cutQ81[SecNbr-1]->IsInside(Theta,Esec))
+      Qsec[SecNbr-1] = 81;
+  }
+
+  Qmax = max(Qsec[0],Qsec[1]);
+  Qmax = max(Qsec[2],Qmax);
+
+  return Qmax;
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::End(){
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::InitParameter(){
+  fLS2_0 = 136.3706933;
+  fDS2   = 9500;
+  fDCC   = -30000;
+  fK_LS2 = -2.5e-8;
+  fBrho0 = 10.8183; // run401 -> 182Hg
+
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::ReInitValue(){
+  SofBeamID->Clear();
+}
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::InitOutputBranch(){
+  //RootOutput::getInstance()->GetTree()->Branch("Zbeam",&Zbeam,"Zbeam/D");
+  RootOutput::getInstance()->GetTree()->Branch("SofBeamID","TSofBeamID",&SofBeamID);
+
+}
+////////////////////////////////////////////////////////////////////////////////
+//            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/s455/Analysis.h b/Projects/s455/Analysis.h
new file mode 100644
index 0000000000000000000000000000000000000000..61849e2506f2dff274aefe17da165b7417dce33f
--- /dev/null
+++ b/Projects/s455/Analysis.h
@@ -0,0 +1,73 @@
+#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  Sofia analysis project                       *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *****************************************************************************/
+// Root
+#include "TCutG.h"
+#include "TRandom3.h"
+
+// NPTool
+#include"NPVAnalysis.h"
+#include"TSofTofWPhysics.h"
+#include"TSofTrimPhysics.h"
+#include"TSofSciPhysics.h"
+#include"TSofBeamID.h"
+
+class Analysis: public NPL::VAnalysis{
+  public:
+    Analysis();
+    ~Analysis();
+
+  public: 
+    void Init();
+    void TreatEvent();
+    void End();
+    void InitOutputBranch();
+    void InitParameter();
+    void ReInitValue();
+    void BeamAnalysis();
+
+    static NPL::VAnalysis* Construct();
+
+  public:
+    void LoadCut();
+    int DetermineQmax();
+
+  private:
+    TSofSciPhysics* SofSci;
+    TSofTrimPhysics* SofTrim;
+    TSofTofWPhysics* SofTofW;
+    TSofBeamID* SofBeamID;
+
+  private:
+    double fLS2_0; 
+    double fBrho0;
+    double fDS2;
+    double fDCC;
+    double fK_LS2;
+
+    TRandom3 rand;
+    TCutG* cutQ78[3];
+    TCutG* cutQ79[3];
+    TCutG* cutQ80[3];
+    TCutG* cutQ81[3];
+};
+#endif
diff --git a/Projects/s455/CMakeLists.txt b/Projects/s455/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..22c74affdfc45019bdda2594f8439c52d4ab97ec
--- /dev/null
+++ b/Projects/s455/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/s455/RunToTreat.txt b/Projects/s455/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7ec3cb2d74d69c930410c4b343705e6961b7e84c
--- /dev/null
+++ b/Projects/s455/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName
+  RawTree
+RootFileName 
+  /media/pierre/proton/s455/raw/run_raw_0401.root
diff --git a/Projects/s455/calibration.txt b/Projects/s455/calibration.txt
new file mode 100644
index 0000000000000000000000000000000000000000..48a079c5eb9007b0a2ae813bb4d8946b3e76da8f
--- /dev/null
+++ b/Projects/s455/calibration.txt
@@ -0,0 +1,14 @@
+CalibrationFilePath
+./calibration/SofTrim/SofTrim_Energy.cal
+./calibration/SofTrim/SofTrim_Time.cal
+./calibration/SofTrim/SofTrim_Beta.cal
+./calibration/SofTrim/SofTrim_PairAlign.cal
+./calibration/SofTrim/SofTrim_SectionAlign.cal
+./calibration/SofSci/VFTX_DET1_SIGNAL1.cal
+./calibration/SofSci/VFTX_DET1_SIGNAL2.cal
+./calibration/SofSci/VFTX_DET1_SIGNAL3.cal
+./calibration/SofSci/VFTX_DET2_SIGNAL1.cal
+./calibration/SofSci/VFTX_DET2_SIGNAL2.cal
+./calibration/SofSci/VFTX_DET2_SIGNAL3.cal
+./calibration/SofSci/ClockOffset.cal
+./calibration/SofSci/SofSci_physics.cal
diff --git a/Projects/s455/calibration/SofSci/ClockOffset.cal b/Projects/s455/calibration/SofSci/ClockOffset.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c29a8357518b8b671c4762a3e28780af33a04874
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/ClockOffset.cal
@@ -0,0 +1,6 @@
+SofSci_DET1_SIGNAL1_CLOCKOFFSET 0
+SofSci_DET1_SIGNAL2_CLOCKOFFSET 0
+SofSci_DET1_SIGNAL3_CLOCKOFFSET 0
+SofSci_DET2_SIGNAL1_CLOCKOFFSET 1
+SofSci_DET2_SIGNAL2_CLOCKOFFSET 1
+SofSci_DET2_SIGNAL3_CLOCKOFFSET 0
diff --git a/Projects/s455/calibration/SofSci/SofSci_physics.cal b/Projects/s455/calibration/SofSci/SofSci_physics.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d76d39b99e1a4a92a875920187c51f7d77942dac
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/SofSci_physics.cal
@@ -0,0 +1,4 @@
+SofSci_TOF2INV_V -7.976028838 0.007332953848
+SofSci_LENGTH_S2 136.3706933
+SofSci_DET1_POSPAR 104.9 54.6
+SofSci_DET2_POSPAR 943.287 86.652
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL1.cal b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..13d53b66e04add52b3fe9c9b020d30dadd1c2490
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL1.cal
@@ -0,0 +1 @@
+SofSci_DET1_SIGNAL1_TIME  0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052608 0.0881855 0.111379 0.118514 0.12629 0.145051 0.154519 0.171239 0.189961 0.191146 0.208274 0.224197 0.230321 0.25295 0.262787 0.271069 0.293116 0.299123 0.318467 0.329315 0.33993 0.356844 0.371347 0.371756 0.393374 0.396932 0.421098 0.423683 0.442327 0.44816 0.455528 0.458405 0.473161 0.497968 0.520248 0.535821 0.540506 0.549915 0.563369 0.580671 0.585726 0.618951 0.620895 0.623967 0.635146 0.642767 0.661819 0.667574 0.68616 0.699983 0.716683 0.732508 0.748197 0.774404 0.775765 0.7947 0.808873 0.8121 0.825165 0.844742 0.84793 0.869491 0.879892 0.894259 0.915897 0.917861 0.923771 0.946673 0.958551 0.977876 0.981725 1.00115 1.01139 1.02022 1.02796 1.04396 1.05428 1.06468 1.07658 1.09985 1.10304 1.11814 1.13158 1.14029 1.16002 1.1747 1.1818 1.20159 1.20437 1.21782 1.2246 1.24004 1.26065 1.27504 1.28369 1.30725 1.31888 1.32236 1.352 1.37154 1.37596 1.38853 1.40446 1.40955 1.42604 1.44137 1.45932 1.47089 1.48212 1.50057 1.50992 1.51451 1.53984 1.54819 1.56646 1.57464 1.58114 1.60142 1.61701 1.63342 1.65395 1.65511 1.66796 1.68515 1.68676 1.70976 1.71948 1.7287 1.74794 1.75076 1.76705 1.7767 1.79036 1.80333 1.81624 1.82308 1.84328 1.85713 1.8727 1.88767 1.89881 1.90499 1.92416 1.92515 1.94615 1.97335 1.98458 1.98624 1.99691 2.00218 2.02621 2.02733 2.04466 2.06661 2.08117 2.08941 2.10943 2.11396 2.12831 2.13745 2.14655 2.17616 2.18028 2.19562 2.20384 2.21924 2.22054 2.24181 2.25279 2.2889 2.28999 2.29864 2.30045 2.3103 2.32512 2.34096 2.34955 2.38743 2.40434 2.41247 2.42802 2.44546 2.44979 2.47264 2.48588 2.49276 2.50648 2.52056 2.52394 2.54719 2.54957 2.57904 2.59273 2.60478 2.60888 2.61985 2.63721 2.65667 2.66137 2.67819 2.6965 2.69983 2.70755 2.72992 2.73488 2.75183 2.75467 2.77919 2.7939 2.79847 2.80885 2.82794 2.84373 2.85794 2.86749 2.88302 2.89826 2.90342 2.91399 2.92095 2.94502 2.9576 2.96522 2.99086 2.99217 3.01281 3.05652 3.05768 3.06612 3.08704 3.10331 3.11146 3.12161 3.14556 3.15361 3.15926 3.18003 3.18139 3.20361 3.22112 3.22321 3.25612 3.26718 3.2727 3.28089 3.29426 3.30947 3.31948 3.32784 3.35078 3.36347 3.36478 3.37842 3.38437 3.41396 3.41676 3.43333 3.45181 3.46692 3.47722 3.48866 3.49148 3.50973 3.52419 3.53493 3.55689 3.56706 3.58507 3.58868 3.59968 3.60812 3.62587 3.6277 3.67117 3.6729 3.68925 3.69821 3.70861 3.71569 3.73733 3.74864 3.76941 3.78418 3.79344 3.79674 3.81146 3.81311 3.83154 3.85258 3.85925 3.88326 3.88502 3.91179 3.91345 3.93137 3.93279 3.95445 3.97167 3.99113 4.00208 4.00743 4.00991 4.01907 4.03601 4.06418 4.09544 4.11989 4.13035 4.1393 4.16282 4.16562 4.18494 4.20616 4.20738 4.21543 4.23279 4.25165 4.26675 4.27235 4.28513 4.30231 4.31248 4.31645 4.33019 4.34864 4.3701 4.37296 4.38741 4.4003 4.41182 4.41287 4.42491 4.45195 4.46459 4.47215 4.48593 4.49809 4.50687 4.50858 4.52777 4.55481 4.57091 4.58522 4.60095 4.6027 4.62109 4.62626 4.63952 4.66538 4.67061 4.68577 4.70644 4.70883 4.73434 4.76997 4.78823 4.79143 4.80887 4.81714 4.84173 4.84356 4.87591 4.88217 4.89994 4.90569 4.9158 4.92358 4.94667 4.94842 4.9874 4.99485 4.99854 4.99979 4.99986 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 
\ No newline at end of file
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL1.r3b b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL1.r3b
new file mode 100644
index 0000000000000000000000000000000000000000..9ea6fb9bf19f40d067b70152fa72114ac401b547
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL1.r3b
@@ -0,0 +1,101 @@
+SofSci_DET1_SIGNAL1_TIME 
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0.052608 0.0881855 0.111379 0.118514 0.12629 0.145051  \
+  0.154519 0.171239 0.189961 0.191146 0.208274 0.224197 0.230321 0.25295 0.262787 0.271069  \
+  0.293116 0.299123 0.318467 0.329315 0.33993 0.356844 0.371347 0.371756 0.393374 0.396932  \
+  0.421098 0.423683 0.442327 0.44816 0.455528 0.458405 0.473161 0.497968 0.520248 0.535821  \
+  0.540506 0.549915 0.563369 0.580671 0.585726 0.618951 0.620895 0.623967 0.635146 0.642767  \
+  0.661819 0.667574 0.68616 0.699983 0.716683 0.732508 0.748197 0.774404 0.775765 0.7947  \
+  0.808873 0.8121 0.825165 0.844742 0.84793 0.869491 0.879892 0.894259 0.915897 0.917861  \
+  0.923771 0.946673 0.958551 0.977876 0.981725 1.00115 1.01139 1.02022 1.02796 1.04396  \
+  1.05428 1.06468 1.07658 1.09985 1.10304 1.11814 1.13158 1.14029 1.16002 1.1747  \
+  1.1818 1.20159 1.20437 1.21782 1.2246 1.24004 1.26065 1.27504 1.28369 1.30725  \
+  1.31888 1.32236 1.352 1.37154 1.37596 1.38853 1.40446 1.40955 1.42604 1.44137  \
+  1.45932 1.47089 1.48212 1.50057 1.50992 1.51451 1.53984 1.54819 1.56646 1.57464  \
+  1.58114 1.60142 1.61701 1.63342 1.65395 1.65511 1.66796 1.68515 1.68676 1.70976  \
+  1.71948 1.7287 1.74794 1.75076 1.76705 1.7767 1.79036 1.80333 1.81624 1.82308  \
+  1.84328 1.85713 1.8727 1.88767 1.89881 1.90499 1.92416 1.92515 1.94615 1.97335  \
+  1.98458 1.98624 1.99691 2.00218 2.02621 2.02733 2.04466 2.06661 2.08117 2.08941  \
+  2.10943 2.11396 2.12831 2.13745 2.14655 2.17616 2.18028 2.19562 2.20384 2.21924  \
+  2.22054 2.24181 2.25279 2.2889 2.28999 2.29864 2.30045 2.3103 2.32512 2.34096  \
+  2.34955 2.38743 2.40434 2.41247 2.42802 2.44546 2.44979 2.47264 2.48588 2.49276  \
+  2.50648 2.52056 2.52394 2.54719 2.54957 2.57904 2.59273 2.60478 2.60888 2.61985  \
+  2.63721 2.65667 2.66137 2.67819 2.6965 2.69983 2.70755 2.72992 2.73488 2.75183  \
+  2.75467 2.77919 2.7939 2.79847 2.80885 2.82794 2.84373 2.85794 2.86749 2.88302  \
+  2.89826 2.90342 2.91399 2.92095 2.94502 2.9576 2.96522 2.99086 2.99217 3.01281  \
+  3.05652 3.05768 3.06612 3.08704 3.10331 3.11146 3.12161 3.14556 3.15361 3.15926  \
+  3.18003 3.18139 3.20361 3.22112 3.22321 3.25612 3.26718 3.2727 3.28089 3.29426  \
+  3.30947 3.31948 3.32784 3.35078 3.36347 3.36478 3.37842 3.38437 3.41396 3.41676  \
+  3.43333 3.45181 3.46692 3.47722 3.48866 3.49148 3.50973 3.52419 3.53493 3.55689  \
+  3.56706 3.58507 3.58868 3.59968 3.60812 3.62587 3.6277 3.67117 3.6729 3.68925  \
+  3.69821 3.70861 3.71569 3.73733 3.74864 3.76941 3.78418 3.79344 3.79674 3.81146  \
+  3.81311 3.83154 3.85258 3.85925 3.88326 3.88502 3.91179 3.91345 3.93137 3.93279  \
+  3.95445 3.97167 3.99113 4.00208 4.00743 4.00991 4.01907 4.03601 4.06418 4.09544  \
+  4.11989 4.13035 4.1393 4.16282 4.16562 4.18494 4.20616 4.20738 4.21543 4.23279  \
+  4.25165 4.26675 4.27235 4.28513 4.30231 4.31248 4.31645 4.33019 4.34864 4.3701  \
+  4.37296 4.38741 4.4003 4.41182 4.41287 4.42491 4.45195 4.46459 4.47215 4.48593  \
+  4.49809 4.50687 4.50858 4.52777 4.55481 4.57091 4.58522 4.60095 4.6027 4.62109  \
+  4.62626 4.63952 4.66538 4.67061 4.68577 4.70644 4.70883 4.73434 4.76997 4.78823  \
+  4.79143 4.80887 4.81714 4.84173 4.84356 4.87591 4.88217 4.89994 4.90569 4.9158  \
+  4.92358 4.94667 4.94842 4.9874 4.99485 4.99854 4.99979 4.99986 4.99998 4.99998  \
+  4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998  \
+  4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998 4.99998  \
+  4.99998 4.99998 4.99998 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL2.cal b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..39eb5e010d4694f80ec1aed38e06e82d3b5b468a
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL2.cal
@@ -0,0 +1 @@
+SofSci_DET1_SIGNAL2_TIME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.0559533 0.0904746 0.103765 0.123024 0.138651 0.147268 0.160284 0.176714 0.183049 0.202509 0.215836 0.232667 0.239148 0.256619 0.265582 0.277448 0.288219 0.296854 0.311367 0.335921 0.337965 0.358083 0.362264 0.376466 0.392988 0.399012 0.422489 0.430886 0.445363 0.459493 0.469661 0.475211 0.490381 0.511941 0.524756 0.531876 0.544892 0.556028 0.575616 0.576383 0.602416 0.613588 0.63659 0.641556 0.650957 0.66129 0.677683 0.68588 0.701251 0.714012 0.724144 0.741888 0.742637 0.764981 0.780937 0.786377 0.807663 0.814801 0.834152 0.845562 0.848683 0.866555 0.881215 0.887732 0.910405 0.914056 0.92961 0.940783 0.944288 0.963365 0.985856 0.990949 1.01273 1.02352 1.03336 1.04566 1.04853 1.07887 1.08133 1.09075 1.11584 1.12166 1.13765 1.1558 1.15987 1.18636 1.18873 1.20607 1.22223 1.22314 1.23185 1.2531 1.25799 1.27951 1.28607 1.31258 1.32955 1.33556 1.34124 1.35361 1.37247 1.39622 1.39927 1.41355 1.43268 1.43416 1.44852 1.4695 1.47702 1.4982 1.49953 1.52131 1.53931 1.54619 1.56312 1.56883 1.58643 1.60963 1.6108 1.62955 1.64298 1.65299 1.65584 1.6717 1.68711 1.70237 1.71297 1.72404 1.74259 1.74445 1.75922 1.77822 1.78162 1.80887 1.81048 1.82959 1.84648 1.84843 1.86417 1.87857 1.88224 1.89975 1.91652 1.92571 1.93571 1.96244 1.96923 1.97852 1.99101 2.00262 2.0193 2.02297 2.04103 2.06129 2.07851 2.08265 2.09183 2.09976 2.12495 2.13524 2.14817 2.16602 2.18196 2.19326 2.20703 2.20907 2.22165 2.24025 2.24175 2.27481 2.27828 2.28768 2.29883 2.30637 2.31891 2.34221 2.3431 2.3841 2.39488 2.40959 2.42009 2.43882 2.44429 2.46377 2.48352 2.48526 2.49442 2.50178 2.51909 2.52882 2.54632 2.56266 2.56746 2.58638 2.58915 2.60257 2.63063 2.63205 2.65124 2.67116 2.6724 2.68302 2.69204 2.70049 2.72408 2.74202 2.75398 2.77238 2.78173 2.79265 2.79971 2.80888 2.83797 2.84398 2.867 2.87282 2.8762 2.88573 2.90718 2.91019 2.94015 2.94145 2.96038 2.97564 2.98351 3.00291 3.03585 3.04461 3.05036 3.06122 3.0816 3.0889 3.10876 3.12473 3.14279 3.15312 3.16365 3.17307 3.19662 3.19907 3.21716 3.23219 3.25338 3.25902 3.262 3.27797 3.30289 3.31041 3.33241 3.34619 3.35693 3.36381 3.3771 3.38944 3.41043 3.41622 3.43913 3.44258 3.45843 3.47057 3.48132 3.48775 3.50306 3.51904 3.52953 3.5569 3.55821 3.56913 3.58463 3.58873 3.60562 3.62523 3.62707 3.6523 3.65409 3.68107 3.68341 3.69281 3.7004 3.71859 3.72096 3.76183 3.76749 3.78531 3.78916 3.79752 3.79891 3.82065 3.83201 3.85499 3.87951 3.88621 3.89357 3.90472 3.90788 3.92789 3.95522 3.96447 3.98581 3.98698 3.98809 4.00712 4.0127 4.02687 4.04352 4.0843 4.09708 4.10608 4.13226 4.144 4.15095 4.17237 4.18273 4.19732 4.19966 4.21119 4.23653 4.24564 4.26505 4.27617 4.27834 4.29364 4.29917 4.31476 4.33966 4.34543 4.35647 4.38459 4.38711 4.40259 4.40498 4.42029 4.441 4.44262 4.4652 4.47904 4.48083 4.50093 4.50522 4.52501 4.55615 4.56019 4.57695 4.58814 4.59887 4.60449 4.61523 4.62518 4.65345 4.6576 4.6735 4.69515 4.69864 4.72142 4.7648 4.77646 4.78915 4.79676 4.80943 4.82475 4.8334 4.8702 4.87181 4.878 4.89123 4.90405 4.91309 4.93094 4.9336 4.97258 4.98087 4.99007 4.99743 4.99828 4.99932 4.99932 4.99932 4.99932 4.99932 4.99932 4.99934 4.99934 4.99934 4.99934 4.99934 4.99934 4.99934 4.99934 4.99936 4.99936 4.99936 4.99936 4.99936 4.99938 4.99938 4.99938 4.99938 4.99938 4.99938 4.9994 4.99942 4.99942 4.99942 4.99942 4.99943 4.99943 4.99943 4.99943 4.99943 4.99945 4.99945 4.99945 4.99945 4.99945 4.99945 4.99945 4.99947 4.99949 4.99951 4.99951 4.99951 4.99951 4.99951 4.99951 4.99951 4.99953 4.99953 4.99953 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99956 4.99956 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99965 4.99965 4.99967 4.99967 4.99969 4.99969 4.99971 4.99973 4.99974 4.99976 4.99978 4.99978 4.99984 4.99987 4.99991 4.99991 4.99991 4.99991 4.99995 4.99998 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 
\ No newline at end of file
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL2.r3b b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL2.r3b
new file mode 100644
index 0000000000000000000000000000000000000000..4766539773143b4679da8f8ec54055596ed7867c
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL2.r3b
@@ -0,0 +1,101 @@
+SofSci_DET1_SIGNAL2_TIME
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0.000237322 0.000237322 0.000237322 0.000237322  \
+  0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322 0.000237322  \
+  0.000237322 0.000237322 0.000237322 0.000237322 0.0559533 0.0904746 0.103765 0.123024 0.138651 0.147268  \
+  0.160284 0.176714 0.183049 0.202509 0.215836 0.232667 0.239148 0.256619 0.265582 0.277448  \
+  0.288219 0.296854 0.311367 0.335921 0.337965 0.358083 0.362264 0.376466 0.392988 0.399012  \
+  0.422489 0.430886 0.445363 0.459493 0.469661 0.475211 0.490381 0.511941 0.524756 0.531876  \
+  0.544892 0.556028 0.575616 0.576383 0.602416 0.613588 0.63659 0.641556 0.650957 0.66129  \
+  0.677683 0.68588 0.701251 0.714012 0.724144 0.741888 0.742637 0.764981 0.780937 0.786377  \
+  0.807663 0.814801 0.834152 0.845562 0.848683 0.866555 0.881215 0.887732 0.910405 0.914056  \
+  0.92961 0.940783 0.944288 0.963365 0.985856 0.990949 1.01273 1.02352 1.03336 1.04566  \
+  1.04853 1.07887 1.08133 1.09075 1.11584 1.12166 1.13765 1.1558 1.15987 1.18636  \
+  1.18873 1.20607 1.22223 1.22314 1.23185 1.2531 1.25799 1.27951 1.28607 1.31258  \
+  1.32955 1.33556 1.34124 1.35361 1.37247 1.39622 1.39927 1.41355 1.43268 1.43416  \
+  1.44852 1.4695 1.47702 1.4982 1.49953 1.52131 1.53931 1.54619 1.56312 1.56883  \
+  1.58643 1.60963 1.6108 1.62955 1.64298 1.65299 1.65584 1.6717 1.68711 1.70237  \
+  1.71297 1.72404 1.74259 1.74445 1.75922 1.77822 1.78162 1.80887 1.81048 1.82959  \
+  1.84648 1.84843 1.86417 1.87857 1.88224 1.89975 1.91652 1.92571 1.93571 1.96244  \
+  1.96923 1.97852 1.99101 2.00262 2.0193 2.02297 2.04103 2.06129 2.07851 2.08265  \
+  2.09183 2.09976 2.12495 2.13524 2.14817 2.16602 2.18196 2.19326 2.20703 2.20907  \
+  2.22165 2.24025 2.24175 2.27481 2.27828 2.28768 2.29883 2.30637 2.31891 2.34221  \
+  2.3431 2.3841 2.39488 2.40959 2.42009 2.43882 2.44429 2.46377 2.48352 2.48526  \
+  2.49442 2.50178 2.51909 2.52882 2.54632 2.56266 2.56746 2.58638 2.58915 2.60257  \
+  2.63063 2.63205 2.65124 2.67116 2.6724 2.68302 2.69204 2.70049 2.72408 2.74202  \
+  2.75398 2.77238 2.78173 2.79265 2.79971 2.80888 2.83797 2.84398 2.867 2.87282  \
+  2.8762 2.88573 2.90718 2.91019 2.94015 2.94145 2.96038 2.97564 2.98351 3.00291  \
+  3.03585 3.04461 3.05036 3.06122 3.0816 3.0889 3.10876 3.12473 3.14279 3.15312  \
+  3.16365 3.17307 3.19662 3.19907 3.21716 3.23219 3.25338 3.25902 3.262 3.27797  \
+  3.30289 3.31041 3.33241 3.34619 3.35693 3.36381 3.3771 3.38944 3.41043 3.41622  \
+  3.43913 3.44258 3.45843 3.47057 3.48132 3.48775 3.50306 3.51904 3.52953 3.5569  \
+  3.55821 3.56913 3.58463 3.58873 3.60562 3.62523 3.62707 3.6523 3.65409 3.68107  \
+  3.68341 3.69281 3.7004 3.71859 3.72096 3.76183 3.76749 3.78531 3.78916 3.79752  \
+  3.79891 3.82065 3.83201 3.85499 3.87951 3.88621 3.89357 3.90472 3.90788 3.92789  \
+  3.95522 3.96447 3.98581 3.98698 3.98809 4.00712 4.0127 4.02687 4.04352 4.0843  \
+  4.09708 4.10608 4.13226 4.144 4.15095 4.17237 4.18273 4.19732 4.19966 4.21119  \
+  4.23653 4.24564 4.26505 4.27617 4.27834 4.29364 4.29917 4.31476 4.33966 4.34543  \
+  4.35647 4.38459 4.38711 4.40259 4.40498 4.42029 4.441 4.44262 4.4652 4.47904  \
+  4.48083 4.50093 4.50522 4.52501 4.55615 4.56019 4.57695 4.58814 4.59887 4.60449  \
+  4.61523 4.62518 4.65345 4.6576 4.6735 4.69515 4.69864 4.72142 4.7648 4.77646  \
+  4.78915 4.79676 4.80943 4.82475 4.8334 4.8702 4.87181 4.878 4.89123 4.90405  \
+  4.91309 4.93094 4.9336 4.97258 4.98087 4.99007 4.99743 4.99828 4.99932 4.99932  \
+  4.99932 4.99932 4.99932 4.99932 4.99934 4.99934 4.99934 4.99934 4.99934 4.99934  \
+  4.99934 4.99934 4.99936 4.99936 4.99936 4.99936 4.99936 4.99938 4.99938 4.99938  \
+  4.99938 4.99938 4.99938 4.9994 4.99942 4.99942 4.99942 4.99942 4.99943 4.99943  \
+  4.99943 4.99943 4.99943 4.99945 4.99945 4.99945 4.99945 4.99945 4.99945 4.99945  \
+  4.99947 4.99949 4.99951 4.99951 4.99951 4.99951 4.99951 4.99951 4.99951 4.99953  \
+  4.99953 4.99953 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99954  \
+  4.99954 4.99954 4.99954 4.99954 4.99954 4.99954 4.99956 4.99956 4.99958 4.99958  \
+  4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958  \
+  4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958  \
+  4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958  \
+  4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99958 4.99965 4.99965 4.99967  \
+  4.99967 4.99969 4.99969 4.99971 4.99973 4.99974 4.99976 4.99978 4.99978 4.99984  \
+  4.99987 4.99991 4.99991 4.99991 4.99991 4.99995 4.99998 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL3.cal b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c7ed93847e06ef8c4d8e6e213a62b74426646814
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL3.cal
@@ -0,0 +1 @@
+SofSci_DET1_SIGNAL3_TIME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0508422 0.101673 0.116465 0.121938 0.130028 0.155528 0.160244 0.171968 0.199769 0.201338 0.213433 0.226601 0.233946 0.254053 0.263971 0.270459 0.283987 0.299536 0.316325 0.331591 0.339896 0.344646 0.362327 0.372053 0.394348 0.398704 0.424599 0.429225 0.442708 0.44413 0.470849 0.472857 0.487514 0.514312 0.526554 0.541493 0.547383 0.558452 0.569769 0.584505 0.589503 0.630687 0.633891 0.637942 0.650094 0.652486 0.668971 0.684699 0.693816 0.714916 0.736253 0.754983 0.755998 0.780291 0.781419 0.790717 0.815472 0.820155 0.842518 0.853271 0.860334 0.866517 0.882596 0.90215 0.91868 0.919966 0.936981 0.951164 0.95491 0.973753 0.992145 1.00782 1.02489 1.02668 1.03401 1.04647 1.05345 1.07235 1.08737 1.10055 1.11849 1.12291 1.13341 1.14874 1.15768 1.17929 1.18512 1.21104 1.2232 1.22544 1.24184 1.25255 1.26788 1.29134 1.29258 1.31156 1.33 1.33224 1.36141 1.375 1.38136 1.39406 1.40388 1.41357 1.42677 1.44514 1.46897 1.47591 1.47828 1.49798 1.52115 1.52255 1.5426 1.5616 1.57668 1.58978 1.59285 1.61145 1.62523 1.63054 1.6476 1.65675 1.67374 1.68188 1.69457 1.7089 1.7271 1.73417 1.7506 1.76763 1.78415 1.78761 1.79482 1.80828 1.82438 1.83528 1.84739 1.86999 1.87465 1.88805 1.89663 1.91289 1.92915 1.94258 1.95218 1.97782 1.984 1.99526 2.00503 2.01779 2.0286 2.04478 2.04583 2.07626 2.07887 2.10075 2.10473 2.11995 2.12325 2.14681 2.16014 2.1836 2.19958 2.20741 2.22074 2.22779 2.23953 2.25336 2.26511 2.28557 2.30659 2.31335 2.32762 2.33406 2.34181 2.35394 2.37423 2.40812 2.41786 2.41931 2.44114 2.44565 2.4666 2.46766 2.4883 2.50683 2.51348 2.52719 2.52949 2.5478 2.57262 2.57404 2.594 2.60699 2.6149 2.62743 2.62959 2.64691 2.66608 2.67456 2.68357 2.70963 2.71593 2.72992 2.73704 2.75586 2.76713 2.78411 2.80695 2.81013 2.82484 2.83452 2.83598 2.85351 2.87868 2.88371 2.90682 2.9084 2.9284 2.94372 2.95196 2.96059 2.97939 2.98883 3.00785 3.01981 3.04348 3.06334 3.06893 3.09248 3.0945 3.11949 3.12019 3.15525 3.15692 3.17784 3.17865 3.18612 3.20291 3.22357 3.22677 3.26678 3.26963 3.27964 3.29106 3.29718 3.31211 3.3278 3.33311 3.36614 3.37043 3.38614 3.39121 3.40577 3.41454 3.4395 3.44038 3.46736 3.48255 3.48891 3.49187 3.50064 3.50979 3.531 3.54624 3.56395 3.57994 3.58855 3.60164 3.61317 3.61451 3.63677 3.64467 3.66561 3.68794 3.69668 3.70315 3.70396 3.71929 3.7257 3.75882 3.76225 3.78362 3.7991 3.8019 3.81308 3.82394 3.82674 3.86155 3.86858 3.87938 3.905 3.91548 3.92926 3.93633 3.93969 3.96719 3.97494 3.98492 4.00376 4.00902 4.01892 4.02179 4.03273 4.0828 4.1135 4.1162 4.12588 4.14249 4.14374 4.16646 4.17825 4.18884 4.21699 4.21741 4.2314 4.23709 4.2539 4.26896 4.27845 4.29226 4.31304 4.31987 4.32785 4.34675 4.35291 4.36689 4.37134 4.38724 4.41116 4.42688 4.42895 4.43864 4.45856 4.47806 4.48217 4.49976 4.51153 4.53036 4.54011 4.54357 4.56396 4.58002 4.58776 4.6044 4.62899 4.63911 4.64043 4.65109 4.66458 4.67739 4.68311 4.70424 4.72059 4.75239 4.77271 4.79118 4.79704 4.8094 4.81846 4.8444 4.85254 4.88009 4.8856 4.8997 4.90269 4.91945 4.92032 4.95521 4.96493 4.98533 4.9919 4.99933 4.99979 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 
\ No newline at end of file
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL3.r3b b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL3.r3b
new file mode 100644
index 0000000000000000000000000000000000000000..8389b90250e3e29060498e8a685f4ad1f2e16b78
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET1_SIGNAL3.r3b
@@ -0,0 +1,101 @@
+SofSci_DET1_SIGNAL3_TIME
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0.0508422 0.101673 0.116465 0.121938 0.130028 0.155528  \
+  0.160244 0.171968 0.199769 0.201338 0.213433 0.226601 0.233946 0.254053 0.263971 0.270459  \
+  0.283987 0.299536 0.316325 0.331591 0.339896 0.344646 0.362327 0.372053 0.394348 0.398704  \
+  0.424599 0.429225 0.442708 0.44413 0.470849 0.472857 0.487514 0.514312 0.526554 0.541493  \
+  0.547383 0.558452 0.569769 0.584505 0.589503 0.630687 0.633891 0.637942 0.650094 0.652486  \
+  0.668971 0.684699 0.693816 0.714916 0.736253 0.754983 0.755998 0.780291 0.781419 0.790717  \
+  0.815472 0.820155 0.842518 0.853271 0.860334 0.866517 0.882596 0.90215 0.91868 0.919966  \
+  0.936981 0.951164 0.95491 0.973753 0.992145 1.00782 1.02489 1.02668 1.03401 1.04647  \
+  1.05345 1.07235 1.08737 1.10055 1.11849 1.12291 1.13341 1.14874 1.15768 1.17929  \
+  1.18512 1.21104 1.2232 1.22544 1.24184 1.25255 1.26788 1.29134 1.29258 1.31156  \
+  1.33 1.33224 1.36141 1.375 1.38136 1.39406 1.40388 1.41357 1.42677 1.44514  \
+  1.46897 1.47591 1.47828 1.49798 1.52115 1.52255 1.5426 1.5616 1.57668 1.58978  \
+  1.59285 1.61145 1.62523 1.63054 1.6476 1.65675 1.67374 1.68188 1.69457 1.7089  \
+  1.7271 1.73417 1.7506 1.76763 1.78415 1.78761 1.79482 1.80828 1.82438 1.83528  \
+  1.84739 1.86999 1.87465 1.88805 1.89663 1.91289 1.92915 1.94258 1.95218 1.97782  \
+  1.984 1.99526 2.00503 2.01779 2.0286 2.04478 2.04583 2.07626 2.07887 2.10075  \
+  2.10473 2.11995 2.12325 2.14681 2.16014 2.1836 2.19958 2.20741 2.22074 2.22779  \
+  2.23953 2.25336 2.26511 2.28557 2.30659 2.31335 2.32762 2.33406 2.34181 2.35394  \
+  2.37423 2.40812 2.41786 2.41931 2.44114 2.44565 2.4666 2.46766 2.4883 2.50683  \
+  2.51348 2.52719 2.52949 2.5478 2.57262 2.57404 2.594 2.60699 2.6149 2.62743  \
+  2.62959 2.64691 2.66608 2.67456 2.68357 2.70963 2.71593 2.72992 2.73704 2.75586  \
+  2.76713 2.78411 2.80695 2.81013 2.82484 2.83452 2.83598 2.85351 2.87868 2.88371  \
+  2.90682 2.9084 2.9284 2.94372 2.95196 2.96059 2.97939 2.98883 3.00785 3.01981  \
+  3.04348 3.06334 3.06893 3.09248 3.0945 3.11949 3.12019 3.15525 3.15692 3.17784  \
+  3.17865 3.18612 3.20291 3.22357 3.22677 3.26678 3.26963 3.27964 3.29106 3.29718  \
+  3.31211 3.3278 3.33311 3.36614 3.37043 3.38614 3.39121 3.40577 3.41454 3.4395  \
+  3.44038 3.46736 3.48255 3.48891 3.49187 3.50064 3.50979 3.531 3.54624 3.56395  \
+  3.57994 3.58855 3.60164 3.61317 3.61451 3.63677 3.64467 3.66561 3.68794 3.69668  \
+  3.70315 3.70396 3.71929 3.7257 3.75882 3.76225 3.78362 3.7991 3.8019 3.81308  \
+  3.82394 3.82674 3.86155 3.86858 3.87938 3.905 3.91548 3.92926 3.93633 3.93969  \
+  3.96719 3.97494 3.98492 4.00376 4.00902 4.01892 4.02179 4.03273 4.0828 4.1135  \
+  4.1162 4.12588 4.14249 4.14374 4.16646 4.17825 4.18884 4.21699 4.21741 4.2314  \
+  4.23709 4.2539 4.26896 4.27845 4.29226 4.31304 4.31987 4.32785 4.34675 4.35291  \
+  4.36689 4.37134 4.38724 4.41116 4.42688 4.42895 4.43864 4.45856 4.47806 4.48217  \
+  4.49976 4.51153 4.53036 4.54011 4.54357 4.56396 4.58002 4.58776 4.6044 4.62899  \
+  4.63911 4.64043 4.65109 4.66458 4.67739 4.68311 4.70424 4.72059 4.75239 4.77271  \
+  4.79118 4.79704 4.8094 4.81846 4.8444 4.85254 4.88009 4.8856 4.8997 4.90269  \
+  4.91945 4.92032 4.95521 4.96493 4.98533 4.9919 4.99933 4.99979 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL1.cal b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c8e0d0bb3063f5c2d17f9209a625810e426c3674
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL1.cal
@@ -0,0 +1 @@
+SofSci_DET2_SIGNAL1_TIME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.000578954 0.00922467 0.0191827 0.020302 0.0220002 0.0297582 0.037246 0.060713 0.0666955 0.0687025 0.0714043 0.0737973 0.09078 0.0920537 0.0924396 0.0929414 0.0930958 0.108766 0.116563 0.121773 0.123587 0.129531 0.139335 0.155546 0.158749 0.167781 0.170405 0.173532 0.177198 0.188276 0.193641 0.195532 0.197964 0.204679 0.213981 0.221083 0.222704 0.228957 0.248101 0.252848 0.256785 0.257519 0.273343 0.274501 0.277049 0.279249 0.293298 0.29434 0.296309 0.312789 0.314719 0.323558 0.325063 0.3268 0.336179 0.350962 0.352043 0.360225 0.376822 0.378095 0.378983 0.38126 0.391527 0.397548 0.398127 0.417349 0.419356 0.422714 0.423524 0.427654 0.442823 0.45224 0.457644 0.462661 0.476093 0.479721 0.481535 0.482539 0.491377 0.503651 0.50562 0.514497 0.521753 0.522834 0.525999 0.530399 0.54854 0.55348 0.55761 0.560582 0.579649 0.581578 0.587407 0.590765 0.604891 0.608365 0.609407 0.616046 0.623958 0.62747 0.628512 0.631214 0.638818 0.646113 0.661706 0.667264 0.670544 0.678843 0.680194 0.69019 0.696752 0.704934 0.705706 0.706517 0.713271 0.726548 0.727012 0.727359 0.73338 0.748549 0.756461 0.769931 0.771205 0.783286 0.787146 0.792819 0.793746 0.803781 0.805402 0.811269 0.812774 0.823272 0.82389 0.830374 0.84755 0.851062 0.858318 0.862448 0.872869 0.88028 0.883252 0.884912 0.886494 0.896491 0.901779 0.904943 0.905793 0.923663 0.924281 0.927484 0.934779 0.936284 0.950681 0.957898 0.96199 0.971562 0.976232 0.981558 0.986267 0.998888 1.00097 1.00383 1.01247 1.02104 1.02201 1.02533 1.03007 1.03745 1.04609 1.06003 1.06551 1.06917 1.07238 1.08253 1.08542 1.09777 1.10086 1.1087 1.11896 1.12197 1.12294 1.12414 1.12854 1.14336 1.14922 1.1554 1.16624 1.17643 1.17898 1.18219 1.1899 1.19496 1.19596 1.21245 1.21519 1.21823 1.22001 1.22483 1.24487 1.24591 1.25409 1.25482 1.26934 1.26992 1.27308 1.27984 1.2815 1.29508 1.30678 1.31538 1.3204 1.32137 1.3302 1.33098 1.3434 1.34811 1.35062 1.35946 1.36842 1.37193 1.37351 1.38227 1.38632 1.39532 1.39848 1.41265 1.41604 1.41998 1.43048 1.43102 1.44067 1.44646 1.45113 1.45252 1.46348 1.47224 1.47382 1.47714 1.49914 1.50076 1.50578 1.51273 1.52091 1.5228 1.52601 1.54218 1.54438 1.54538 1.54808 1.55966 1.57205 1.57487 1.57734 1.58224 1.59556 1.59772 1.60258 1.61524 1.61644 1.61779 1.61875 1.63103 1.63304 1.64068 1.64678 1.64878 1.65616 1.67314 1.67599 1.68889 1.69147 1.69815 1.70066 1.70587 1.72192 1.7237 1.72621 1.73983 1.74238 1.74516 1.74585 1.76083 1.76365 1.77967 1.78133 1.79105 1.80004 1.80329 1.80483 1.81023 1.81737 1.82104 1.82976 1.83328 1.83853 1.84516 1.84864 1.84945 1.86099 1.88395 1.88716 1.89538 1.89746 1.89847 1.90182 1.91421 1.91912 1.92 1.92398 1.93247 1.93448 1.94154 1.94926 1.94999 1.95783 1.9784 1.98207 1.98388 1.98442 2.00148 2.0026 2.01723 2.02263 2.02283 2.02375 2.02781 2.03645 2.04371 2.04467 2.0534 2.06239 2.07887 2.08072 2.08925 2.09713 2.10226 2.10751 2.12113 2.12329 2.12739 2.12901 2.13379 2.1434 2.15348 2.15417 2.15703 2.17393 2.17467 2.18289 2.19663 2.20111 2.20767 2.21388 2.22075 2.22345 2.22832 2.23418 2.23569 2.24426 2.25364 2.25746 2.26896 2.26989 2.27575 2.29169 2.29374 2.31169 2.31273 2.31585 2.32195 2.32786 2.33315 2.33384 2.33882 2.34951 2.35758 2.36819 2.36977 2.3724 2.3734 2.39478 2.40104 2.4032 2.40621 2.413 2.41389 2.42643 2.42775 2.43284 2.44427 2.45063 2.457 2.46391 2.47059 2.47198 2.48255 2.49317 2.49579 2.49942 2.50243 2.50455 2.52038 2.52169 2.53099 2.54354 2.54805 2.54879 2.56048 2.56504 2.56812 2.56998 2.58522 2.59437 2.59514 2.60537 2.60579 2.60973 2.61741 2.62413 2.63281 2.63405 2.64524 2.64574 2.65014 2.65736 2.66091 2.67288 2.68936 2.69086 2.69758 2.6982 2.69912 2.71263 2.71325 2.72201 2.7378 2.74096 2.74196 2.75042 2.75401 2.75883 2.76759 2.76848 2.78276 2.78585 2.78813 2.78917 2.79986 2.8082 2.81055 2.8158 2.83869 2.83988 2.84938 2.86026 2.86077 2.86192 2.86717 2.88408 2.88497 2.89353 2.89786 2.90006 2.90079 2.9111 2.91824 2.92325 2.93267 2.9351 2.94101 2.95568 2.95815 2.96046 2.97034 2.97385 2.97636 2.98169 2.99697 3.00056 3.00145 3.01936 3.02141 3.03534 3.05004 3.05159 3.05255 3.0622 3.0693 3.07193 3.07382 3.08108 3.08509 3.09185 3.10786 3.11033 3.11682 3.12307 3.13476 3.13538 3.148 3.15001 3.15445 3.16429 3.16888 3.1697 3.17695 3.17788 3.1893 3.19444 3.20412 3.20818 3.21447 3.2267 3.24098 3.24172 3.24728 3.24901 3.25577 3.25708 3.2626 3.26572 3.27101 3.27869 3.28695 3.29645 3.30324 3.31922 3.32157 3.32605 3.33628 3.34547 3.35021 3.35496 3.35863 3.3611 3.36685 3.37148 3.37237 3.38499 3.39267 3.39645 3.40143 3.41355 3.41814 3.42544 3.43269 3.44292 3.4479 3.44937 3.45122 3.46265 3.46793 3.46886 3.4726 3.47546 3.48237 3.48854 3.50865 3.5097 3.51047 3.54135 3.54297 3.54424 3.5493 3.55343 3.55698 3.56805 3.57052 3.57608 3.58311 3.59457 3.59592 3.59851 3.61792 3.62965 3.63645 3.639 3.64008 3.64262 3.6483 3.65837 3.66181 3.66323 3.66871 3.674 3.67968 3.70473 3.70646 3.70986 3.71163 3.72981 3.7363 3.73692 3.73707 3.74074 3.75868 3.76197 3.76312 3.7644 3.77609 3.78007 3.78231 3.80593 3.81195 3.81905 3.82214 3.83804 3.84371 3.84819 3.84916 3.85552 3.85765 3.85838 3.86934 3.88096 3.88401 3.89123 3.89401 3.89717 3.91249 3.91963 3.92577 3.9287 3.94534 3.95117 3.9551 3.9592 3.96425 3.97375 3.97618 3.98533 3.99146 3.99548 4.01574 4.01968 4.02068 4.02292 4.03133 4.04808 4.05063 4.05403 4.06283 4.06445 4.07151 4.07391 4.08355 4.08988 4.09112 4.09652 4.10899 4.11208 4.11451 4.12605 4.13852 4.13925 4.14805 4.15195 4.16048 4.1633 4.16488 4.16997 4.17082 4.18703 4.19028 4.19792 4.20205 4.20703 4.21347 4.21579 4.22949 4.23227 4.24439 4.25002 4.25539 4.25678 4.26407 4.2665 4.276 4.2865 4.29171 4.29456 4.29715 4.30734 4.3139 4.32841 4.32973 4.33227 4.33636 4.3381 4.34953 4.35265 4.35667 4.36273 4.37299 4.37832 4.38087 4.3826 4.39631 4.40175 4.4065 4.41136 4.4124 4.42823 4.4351 4.4439 4.44474 4.45443 4.45536 4.46234 4.46956 4.4713 4.4791 4.48886 4.49739 4.49959 4.51159 4.51526 4.52402 4.5351 4.53711 4.54182 4.54402 4.56123 4.57636 4.58489 4.59902 4.60728 4.60928 4.61006 4.61696 4.62117 4.62858 4.63638 4.64086 4.6539 4.65599 4.65803 4.66232 4.67683 4.68748 4.69196 4.69643 4.70226 4.70423 4.71469 4.71581 4.72067 4.72801 4.73005 4.74866 4.75391 4.7597 4.76549 4.76622 4.77031 4.78675 4.79084 4.79397 4.80447 4.80512 4.80906 4.82114 4.82415 4.82643 4.82824 4.84353 4.84422 4.85268 4.86032 4.86341 4.86842 4.88444 4.88564 4.8878 4.90443 4.90586 4.91022 4.92049 4.92165 4.92686 4.93813 4.94461 4.94828 4.95434 4.95639 4.95897 4.97097 4.97935 4.9856 4.99402 4.99876 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 
\ No newline at end of file
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL1.r3b b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL1.r3b
new file mode 100644
index 0000000000000000000000000000000000000000..04f21a53eaaf3b608c297adb7d7741caaf0523be
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL1.r3b
@@ -0,0 +1,101 @@
+SofSci_DET2_SIGNAL1_TIME
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0.000578954 0.00922467 0.0191827  \
+  0.020302 0.0220002 0.0297582 0.037246 0.060713 0.0666955 0.0687025 0.0714043 0.0737973 0.09078  \
+  0.0920537 0.0924396 0.0929414 0.0930958 0.108766 0.116563 0.121773 0.123587 0.129531 0.139335  \
+  0.155546 0.158749 0.167781 0.170405 0.173532 0.177198 0.188276 0.193641 0.195532 0.197964  \
+  0.204679 0.213981 0.221083 0.222704 0.228957 0.248101 0.252848 0.256785 0.257519 0.273343  \
+  0.274501 0.277049 0.279249 0.293298 0.29434 0.296309 0.312789 0.314719 0.323558 0.325063  \
+  0.3268 0.336179 0.350962 0.352043 0.360225 0.376822 0.378095 0.378983 0.38126 0.391527  \
+  0.397548 0.398127 0.417349 0.419356 0.422714 0.423524 0.427654 0.442823 0.45224 0.457644  \
+  0.462661 0.476093 0.479721 0.481535 0.482539 0.491377 0.503651 0.50562 0.514497 0.521753  \
+  0.522834 0.525999 0.530399 0.54854 0.55348 0.55761 0.560582 0.579649 0.581578 0.587407  \
+  0.590765 0.604891 0.608365 0.609407 0.616046 0.623958 0.62747 0.628512 0.631214 0.638818  \
+  0.646113 0.661706 0.667264 0.670544 0.678843 0.680194 0.69019 0.696752 0.704934 0.705706  \
+  0.706517 0.713271 0.726548 0.727012 0.727359 0.73338 0.748549 0.756461 0.769931 0.771205  \
+  0.783286 0.787146 0.792819 0.793746 0.803781 0.805402 0.811269 0.812774 0.823272 0.82389  \
+  0.830374 0.84755 0.851062 0.858318 0.862448 0.872869 0.88028 0.883252 0.884912 0.886494  \
+  0.896491 0.901779 0.904943 0.905793 0.923663 0.924281 0.927484 0.934779 0.936284 0.950681  \
+  0.957898 0.96199 0.971562 0.976232 0.981558 0.986267 0.998888 1.00097 1.00383 1.01247  \
+  1.02104 1.02201 1.02533 1.03007 1.03745 1.04609 1.06003 1.06551 1.06917 1.07238  \
+  1.08253 1.08542 1.09777 1.10086 1.1087 1.11896 1.12197 1.12294 1.12414 1.12854  \
+  1.14336 1.14922 1.1554 1.16624 1.17643 1.17898 1.18219 1.1899 1.19496 1.19596  \
+  1.21245 1.21519 1.21823 1.22001 1.22483 1.24487 1.24591 1.25409 1.25482 1.26934  \
+  1.26992 1.27308 1.27984 1.2815 1.29508 1.30678 1.31538 1.3204 1.32137 1.3302  \
+  1.33098 1.3434 1.34811 1.35062 1.35946 1.36842 1.37193 1.37351 1.38227 1.38632  \
+  1.39532 1.39848 1.41265 1.41604 1.41998 1.43048 1.43102 1.44067 1.44646 1.45113  \
+  1.45252 1.46348 1.47224 1.47382 1.47714 1.49914 1.50076 1.50578 1.51273 1.52091  \
+  1.5228 1.52601 1.54218 1.54438 1.54538 1.54808 1.55966 1.57205 1.57487 1.57734  \
+  1.58224 1.59556 1.59772 1.60258 1.61524 1.61644 1.61779 1.61875 1.63103 1.63304  \
+  1.64068 1.64678 1.64878 1.65616 1.67314 1.67599 1.68889 1.69147 1.69815 1.70066  \
+  1.70587 1.72192 1.7237 1.72621 1.73983 1.74238 1.74516 1.74585 1.76083 1.76365  \
+  1.77967 1.78133 1.79105 1.80004 1.80329 1.80483 1.81023 1.81737 1.82104 1.82976  \
+  1.83328 1.83853 1.84516 1.84864 1.84945 1.86099 1.88395 1.88716 1.89538 1.89746  \
+  1.89847 1.90182 1.91421 1.91912 1.92 1.92398 1.93247 1.93448 1.94154 1.94926  \
+  1.94999 1.95783 1.9784 1.98207 1.98388 1.98442 2.00148 2.0026 2.01723 2.02263  \
+  2.02283 2.02375 2.02781 2.03645 2.04371 2.04467 2.0534 2.06239 2.07887 2.08072  \
+  2.08925 2.09713 2.10226 2.10751 2.12113 2.12329 2.12739 2.12901 2.13379 2.1434  \
+  2.15348 2.15417 2.15703 2.17393 2.17467 2.18289 2.19663 2.20111 2.20767 2.21388  \
+  2.22075 2.22345 2.22832 2.23418 2.23569 2.24426 2.25364 2.25746 2.26896 2.26989  \
+  2.27575 2.29169 2.29374 2.31169 2.31273 2.31585 2.32195 2.32786 2.33315 2.33384  \
+  2.33882 2.34951 2.35758 2.36819 2.36977 2.3724 2.3734 2.39478 2.40104 2.4032  \
+  2.40621 2.413 2.41389 2.42643 2.42775 2.43284 2.44427 2.45063 2.457 2.46391  \
+  2.47059 2.47198 2.48255 2.49317 2.49579 2.49942 2.50243 2.50455 2.52038 2.52169  \
+  2.53099 2.54354 2.54805 2.54879 2.56048 2.56504 2.56812 2.56998 2.58522 2.59437  \
+  2.59514 2.60537 2.60579 2.60973 2.61741 2.62413 2.63281 2.63405 2.64524 2.64574  \
+  2.65014 2.65736 2.66091 2.67288 2.68936 2.69086 2.69758 2.6982 2.69912 2.71263  \
+  2.71325 2.72201 2.7378 2.74096 2.74196 2.75042 2.75401 2.75883 2.76759 2.76848  \
+  2.78276 2.78585 2.78813 2.78917 2.79986 2.8082 2.81055 2.8158 2.83869 2.83988  \
+  2.84938 2.86026 2.86077 2.86192 2.86717 2.88408 2.88497 2.89353 2.89786 2.90006  \
+  2.90079 2.9111 2.91824 2.92325 2.93267 2.9351 2.94101 2.95568 2.95815 2.96046  \
+  2.97034 2.97385 2.97636 2.98169 2.99697 3.00056 3.00145 3.01936 3.02141 3.03534  \
+  3.05004 3.05159 3.05255 3.0622 3.0693 3.07193 3.07382 3.08108 3.08509 3.09185  \
+  3.10786 3.11033 3.11682 3.12307 3.13476 3.13538 3.148 3.15001 3.15445 3.16429  \
+  3.16888 3.1697 3.17695 3.17788 3.1893 3.19444 3.20412 3.20818 3.21447 3.2267  \
+  3.24098 3.24172 3.24728 3.24901 3.25577 3.25708 3.2626 3.26572 3.27101 3.27869  \
+  3.28695 3.29645 3.30324 3.31922 3.32157 3.32605 3.33628 3.34547 3.35021 3.35496  \
+  3.35863 3.3611 3.36685 3.37148 3.37237 3.38499 3.39267 3.39645 3.40143 3.41355  \
+  3.41814 3.42544 3.43269 3.44292 3.4479 3.44937 3.45122 3.46265 3.46793 3.46886  \
+  3.4726 3.47546 3.48237 3.48854 3.50865 3.5097 3.51047 3.54135 3.54297 3.54424  \
+  3.5493 3.55343 3.55698 3.56805 3.57052 3.57608 3.58311 3.59457 3.59592 3.59851  \
+  3.61792 3.62965 3.63645 3.639 3.64008 3.64262 3.6483 3.65837 3.66181 3.66323  \
+  3.66871 3.674 3.67968 3.70473 3.70646 3.70986 3.71163 3.72981 3.7363 3.73692  \
+  3.73707 3.74074 3.75868 3.76197 3.76312 3.7644 3.77609 3.78007 3.78231 3.80593  \
+  3.81195 3.81905 3.82214 3.83804 3.84371 3.84819 3.84916 3.85552 3.85765 3.85838  \
+  3.86934 3.88096 3.88401 3.89123 3.89401 3.89717 3.91249 3.91963 3.92577 3.9287  \
+  3.94534 3.95117 3.9551 3.9592 3.96425 3.97375 3.97618 3.98533 3.99146 3.99548  \
+  4.01574 4.01968 4.02068 4.02292 4.03133 4.04808 4.05063 4.05403 4.06283 4.06445  \
+  4.07151 4.07391 4.08355 4.08988 4.09112 4.09652 4.10899 4.11208 4.11451 4.12605  \
+  4.13852 4.13925 4.14805 4.15195 4.16048 4.1633 4.16488 4.16997 4.17082 4.18703  \
+  4.19028 4.19792 4.20205 4.20703 4.21347 4.21579 4.22949 4.23227 4.24439 4.25002  \
+  4.25539 4.25678 4.26407 4.2665 4.276 4.2865 4.29171 4.29456 4.29715 4.30734  \
+  4.3139 4.32841 4.32973 4.33227 4.33636 4.3381 4.34953 4.35265 4.35667 4.36273  \
+  4.37299 4.37832 4.38087 4.3826 4.39631 4.40175 4.4065 4.41136 4.4124 4.42823  \
+  4.4351 4.4439 4.44474 4.45443 4.45536 4.46234 4.46956 4.4713 4.4791 4.48886  \
+  4.49739 4.49959 4.51159 4.51526 4.52402 4.5351 4.53711 4.54182 4.54402 4.56123  \
+  4.57636 4.58489 4.59902 4.60728 4.60928 4.61006 4.61696 4.62117 4.62858 4.63638  \
+  4.64086 4.6539 4.65599 4.65803 4.66232 4.67683 4.68748 4.69196 4.69643 4.70226  \
+  4.70423 4.71469 4.71581 4.72067 4.72801 4.73005 4.74866 4.75391 4.7597 4.76549  \
+  4.76622 4.77031 4.78675 4.79084 4.79397 4.80447 4.80512 4.80906 4.82114 4.82415  \
+  4.82643 4.82824 4.84353 4.84422 4.85268 4.86032 4.86341 4.86842 4.88444 4.88564  \
+  4.8878 4.90443 4.90586 4.91022 4.92049 4.92165 4.92686 4.93813 4.94461 4.94828  \
+  4.95434 4.95639 4.95897 4.97097 4.97935 4.9856 4.99402 4.99876 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL2.cal b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6ace099ad441ee009dcfa9a03ad710892890f6a1
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL2.cal
@@ -0,0 +1 @@
+SofSci_DET2_SIGNAL2_TIME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.000578949 0.00424563 0.00698599 0.0191825 0.022772 0.0285615 0.0307229 0.0369756 0.0466633 0.0553862 0.0568914 0.0787371 0.0795862 0.0834073 0.0862249 0.0997337 0.101355 0.102165 0.103902 0.113435 0.121425 0.121965 0.130457 0.13806 0.146513 0.148211 0.158015 0.177313 0.186074 0.190088 0.191092 0.198695 0.203134 0.218881 0.223706 0.224787 0.228415 0.243969 0.248871 0.25219 0.256397 0.259408 0.264078 0.278204 0.279555 0.289513 0.294492 0.295226 0.312787 0.313675 0.319657 0.323015 0.333436 0.340113 0.342854 0.353352 0.357443 0.362229 0.36497 0.383921 0.389324 0.392528 0.39438 0.411787 0.414103 0.419275 0.42024 0.433903 0.435023 0.437107 0.446254 0.45463 0.45656 0.463314 0.474237 0.494963 0.495851 0.496468 0.498437 0.517735 0.519202 0.527384 0.53109 0.53109 0.532788 0.538693 0.555791 0.558686 0.564398 0.574704 0.578641 0.588097 0.589679 0.599251 0.602686 0.622834 0.623567 0.624223 0.628932 0.641862 0.64383 0.646185 0.650508 0.662357 0.672276 0.675016 0.692076 0.699139 0.700567 0.701725 0.71068 0.729013 0.731445 0.732448 0.735073 0.739859 0.751862 0.752673 0.752982 0.754603 0.771122 0.777104 0.789726 0.790961 0.797754 0.805319 0.821529 0.827473 0.828824 0.829364 0.839284 0.840789 0.844571 0.851557 0.856266 0.863329 0.876877 0.886642 0.887607 0.896561 0.897719 0.914393 0.926589 0.928982 0.932147 0.935196 0.936354 0.941642 0.950751 0.956154 0.958895 0.968621 0.978695 0.981705 0.985874 0.986684 0.995291 1.001 1.01613 1.02335 1.03196 1.03705 1.04558 1.0474 1.05627 1.0572 1.066 1.06673 1.07943 1.08109 1.08213 1.08399 1.10348 1.10822 1.11259 1.11764 1.12378 1.13351 1.14995 1.15207 1.15759 1.16075 1.16461 1.1899 1.19044 1.19128 1.19495 1.19881 1.21301 1.22201 1.22247 1.22498 1.23119 1.24567 1.24964 1.25505 1.26161 1.26535 1.28176 1.2845 1.29241 1.29314 1.29816 1.30198 1.31711 1.31769 1.32726 1.32811 1.3361 1.34583 1.35559 1.36246 1.37057 1.37786 1.37987 1.38145 1.39801 1.40256 1.40561 1.41889 1.42348 1.42576 1.42881 1.43529 1.44896 1.45112 1.45671 1.46787 1.46883 1.4757 1.48705 1.49091 1.4994 1.50037 1.50361 1.52094 1.5285 1.53067 1.5368 1.5434 1.55004 1.56285 1.57409 1.57528 1.5793 1.58269 1.59311 1.59558 1.59647 1.61037 1.61214 1.62492 1.62789 1.63117 1.64773 1.65113 1.65251 1.66537 1.68111 1.68497 1.68644 1.68721 1.70118 1.70238 1.70763 1.70979 1.72407 1.72708 1.73635 1.73978 1.74781 1.75279 1.75885 1.77745 1.77896 1.78235 1.78324 1.78872 1.79795 1.80632 1.81308 1.81408 1.82848 1.83017 1.83276 1.8487 1.84943 1.86283 1.86642 1.87367 1.87942 1.88776 1.88876 1.90652 1.90725 1.90856 1.90907 1.90949 1.92296 1.9306 1.94014 1.94732 1.95229 1.96685 1.97044 1.9724 1.98391 1.98668 1.99413 2.00448 2.00594 2.01011 2.01416 2.01648 2.02432 2.03192 2.04304 2.05697 2.05793 2.06214 2.07241 2.07669 2.08341 2.08808 2.08997 2.09769 2.10433 2.11691 2.12204 2.12374 2.1364 2.14628 2.16141 2.16261 2.16377 2.17716 2.18264 2.18766 2.19341 2.19545 2.199 2.20032 2.20383 2.21271 2.22297 2.22706 2.23791 2.24266 2.25794 2.26886 2.27238 2.27782 2.27994 2.28986 2.29781 2.30163 2.30279 2.30418 2.3075 2.3151 2.32178 2.33259 2.34822 2.35015 2.353 2.37037 2.38052 2.38438 2.3877 2.39118 2.40252 2.40407 2.41241 2.41696 2.42429 2.4312 2.43244 2.45208 2.45405 2.46185 2.46868 2.47281 2.47987 2.49087 2.49261 2.50253 2.50878 2.51052 2.51635 2.51932 2.53229 2.53341 2.53954 2.54433 2.55239 2.55757 2.56008 2.57069 2.58532 2.59597 2.59848 2.59929 2.61083 2.61187 2.61473 2.62395 2.6265 2.62932 2.64472 2.64645 2.65599 2.66294 2.6649 2.68536 2.68717 2.69675 2.70238 2.70338 2.71037 2.71157 2.72122 2.72234 2.72786 2.74816 2.75043 2.75221 2.76051 2.7624 2.76939 2.78563 2.79123 2.79552 2.80173 2.80679 2.80872 2.81477 2.82303 2.82485 2.83002 2.8311 2.84909 2.84994 2.8541 2.86167 2.86715 2.87996 2.88807 2.90305 2.90559 2.90818 2.90941 2.9103 2.923 2.93014 2.93481 2.93547 2.94249 2.94689 2.95959 2.96013 2.97927 2.98398 2.99614 3.0022 3.00787 3.01378 3.01501 3.03057 3.03196 3.03331 3.03975 3.05801 3.05967 3.0628 3.06608 3.08565 3.08738 3.08873 3.09796 3.11212 3.11633 3.11753 3.12648 3.14068 3.15277 3.15643 3.16307 3.1672 3.18086 3.18322 3.18588 3.20201 3.20684 3.21182 3.21626 3.2195 3.23015 3.24227 3.24343 3.24891 3.26207 3.27253 3.27369 3.27566 3.28106 3.28423 3.28604 3.30673 3.30762 3.30908 3.31796 3.31973 3.32965 3.34783 3.35169 3.35432 3.35602 3.37169 3.37751 3.38106 3.38292 3.3838 3.39195 3.40457 3.40773 3.41433 3.41792 3.43475 3.43568 3.44791 3.45463 3.45544 3.46864 3.47354 3.47883 3.48304 3.48987 3.49188 3.49272 3.50353 3.51631 3.52086 3.5263 3.52754 3.539 3.54556 3.54788 3.55938 3.56691 3.57138 3.57204 3.58138 3.58844 3.59138 3.59558 3.60531 3.61558 3.61967 3.62264 3.63051 3.63569 3.65464 3.65707 3.65834 3.66139 3.66818 3.6788 3.68513 3.69482 3.69717 3.70061 3.70763 3.71805 3.72307 3.72535 3.75522 3.75665 3.76174 3.76526 3.77784 3.78479 3.78729 3.79552 3.80262 3.80856 3.81292 3.8157 3.81929 3.82257 3.83566 3.84766 3.86016 3.86159 3.86642 3.86642 3.88672 3.88803 3.89401 3.9025 3.90918 3.91509 3.92342 3.92481 3.93284 3.93373 3.93956 3.95542 3.95658 3.96607 3.96966 3.97561 3.98638 3.99853 4.00486 4.00868 4.02038 4.02752 4.02991 4.03084 4.03983 4.04855 4.0545 4.05824 4.05979 4.06658 4.08306 4.08904 4.10927 4.11293 4.11687 4.12262 4.13061 4.13563 4.14231 4.14867 4.15138 4.15427 4.16415 4.17145 4.1765 4.18048 4.2007 4.20159 4.20526 4.20773 4.22189 4.22591 4.22753 4.23428 4.23826 4.25111 4.25987 4.26242 4.26551 4.27157 4.27373 4.28137 4.30738 4.30927 4.31696 4.31807 4.32471 4.32834 4.33899 4.34069 4.34405 4.34579 4.35906 4.36346 4.37265 4.37431 4.38006 4.38118 4.40816 4.41179 4.41287 4.42036 4.42827 4.43583 4.44641 4.44764 4.45258 4.45579 4.45857 4.46733 4.47335 4.48331 4.4869 4.48856 4.51114 4.51538 4.51557 4.51959 4.53607 4.5368 4.53773 4.54572 4.55641 4.55965 4.56366 4.57382 4.5759 4.57964 4.59497 4.59794 4.60902 4.6155 4.62337 4.62581 4.63491 4.63576 4.64063 4.66294 4.66761 4.66903 4.67027 4.67533 4.68671 4.68949 4.70084 4.71018 4.71693 4.72415 4.73469 4.74665 4.76082 4.76163 4.76761 4.78536 4.79015 4.79451 4.80134 4.80424 4.80729 4.81373 4.823 4.82485 4.84067 4.84442 4.84928 4.85924 4.86665 4.87313 4.88031 4.8839 4.88973 4.89536 4.90235 4.90594 4.91246 4.91655 4.93809 4.94342 4.94477 4.95422 4.96191 4.96789 4.9746 4.98205 4.98483 4.98769 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 
\ No newline at end of file
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL2.r3b b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL2.r3b
new file mode 100644
index 0000000000000000000000000000000000000000..86e5c609ebc4878cd98f66331e2f073b25832de4
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL2.r3b
@@ -0,0 +1,101 @@
+SofSci_DET2_SIGNAL2_TIME
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0.000578949 0.00424563 0.00698599 0.0191825 0.022772 0.0285615  \
+  0.0307229 0.0369756 0.0466633 0.0553862 0.0568914 0.0787371 0.0795862 0.0834073 0.0862249 0.0997337  \
+  0.101355 0.102165 0.103902 0.113435 0.121425 0.121965 0.130457 0.13806 0.146513 0.148211  \
+  0.158015 0.177313 0.186074 0.190088 0.191092 0.198695 0.203134 0.218881 0.223706 0.224787  \
+  0.228415 0.243969 0.248871 0.25219 0.256397 0.259408 0.264078 0.278204 0.279555 0.289513  \
+  0.294492 0.295226 0.312787 0.313675 0.319657 0.323015 0.333436 0.340113 0.342854 0.353352  \
+  0.357443 0.362229 0.36497 0.383921 0.389324 0.392528 0.39438 0.411787 0.414103 0.419275  \
+  0.42024 0.433903 0.435023 0.437107 0.446254 0.45463 0.45656 0.463314 0.474237 0.494963  \
+  0.495851 0.496468 0.498437 0.517735 0.519202 0.527384 0.53109 0.53109 0.532788 0.538693  \
+  0.555791 0.558686 0.564398 0.574704 0.578641 0.588097 0.589679 0.599251 0.602686 0.622834  \
+  0.623567 0.624223 0.628932 0.641862 0.64383 0.646185 0.650508 0.662357 0.672276 0.675016  \
+  0.692076 0.699139 0.700567 0.701725 0.71068 0.729013 0.731445 0.732448 0.735073 0.739859  \
+  0.751862 0.752673 0.752982 0.754603 0.771122 0.777104 0.789726 0.790961 0.797754 0.805319  \
+  0.821529 0.827473 0.828824 0.829364 0.839284 0.840789 0.844571 0.851557 0.856266 0.863329  \
+  0.876877 0.886642 0.887607 0.896561 0.897719 0.914393 0.926589 0.928982 0.932147 0.935196  \
+  0.936354 0.941642 0.950751 0.956154 0.958895 0.968621 0.978695 0.981705 0.985874 0.986684  \
+  0.995291 1.001 1.01613 1.02335 1.03196 1.03705 1.04558 1.0474 1.05627 1.0572  \
+  1.066 1.06673 1.07943 1.08109 1.08213 1.08399 1.10348 1.10822 1.11259 1.11764  \
+  1.12378 1.13351 1.14995 1.15207 1.15759 1.16075 1.16461 1.1899 1.19044 1.19128  \
+  1.19495 1.19881 1.21301 1.22201 1.22247 1.22498 1.23119 1.24567 1.24964 1.25505  \
+  1.26161 1.26535 1.28176 1.2845 1.29241 1.29314 1.29816 1.30198 1.31711 1.31769  \
+  1.32726 1.32811 1.3361 1.34583 1.35559 1.36246 1.37057 1.37786 1.37987 1.38145  \
+  1.39801 1.40256 1.40561 1.41889 1.42348 1.42576 1.42881 1.43529 1.44896 1.45112  \
+  1.45671 1.46787 1.46883 1.4757 1.48705 1.49091 1.4994 1.50037 1.50361 1.52094  \
+  1.5285 1.53067 1.5368 1.5434 1.55004 1.56285 1.57409 1.57528 1.5793 1.58269  \
+  1.59311 1.59558 1.59647 1.61037 1.61214 1.62492 1.62789 1.63117 1.64773 1.65113  \
+  1.65251 1.66537 1.68111 1.68497 1.68644 1.68721 1.70118 1.70238 1.70763 1.70979  \
+  1.72407 1.72708 1.73635 1.73978 1.74781 1.75279 1.75885 1.77745 1.77896 1.78235  \
+  1.78324 1.78872 1.79795 1.80632 1.81308 1.81408 1.82848 1.83017 1.83276 1.8487  \
+  1.84943 1.86283 1.86642 1.87367 1.87942 1.88776 1.88876 1.90652 1.90725 1.90856  \
+  1.90907 1.90949 1.92296 1.9306 1.94014 1.94732 1.95229 1.96685 1.97044 1.9724  \
+  1.98391 1.98668 1.99413 2.00448 2.00594 2.01011 2.01416 2.01648 2.02432 2.03192  \
+  2.04304 2.05697 2.05793 2.06214 2.07241 2.07669 2.08341 2.08808 2.08997 2.09769  \
+  2.10433 2.11691 2.12204 2.12374 2.1364 2.14628 2.16141 2.16261 2.16377 2.17716  \
+  2.18264 2.18766 2.19341 2.19545 2.199 2.20032 2.20383 2.21271 2.22297 2.22706  \
+  2.23791 2.24266 2.25794 2.26886 2.27238 2.27782 2.27994 2.28986 2.29781 2.30163  \
+  2.30279 2.30418 2.3075 2.3151 2.32178 2.33259 2.34822 2.35015 2.353 2.37037  \
+  2.38052 2.38438 2.3877 2.39118 2.40252 2.40407 2.41241 2.41696 2.42429 2.4312  \
+  2.43244 2.45208 2.45405 2.46185 2.46868 2.47281 2.47987 2.49087 2.49261 2.50253  \
+  2.50878 2.51052 2.51635 2.51932 2.53229 2.53341 2.53954 2.54433 2.55239 2.55757  \
+  2.56008 2.57069 2.58532 2.59597 2.59848 2.59929 2.61083 2.61187 2.61473 2.62395  \
+  2.6265 2.62932 2.64472 2.64645 2.65599 2.66294 2.6649 2.68536 2.68717 2.69675  \
+  2.70238 2.70338 2.71037 2.71157 2.72122 2.72234 2.72786 2.74816 2.75043 2.75221  \
+  2.76051 2.7624 2.76939 2.78563 2.79123 2.79552 2.80173 2.80679 2.80872 2.81477  \
+  2.82303 2.82485 2.83002 2.8311 2.84909 2.84994 2.8541 2.86167 2.86715 2.87996  \
+  2.88807 2.90305 2.90559 2.90818 2.90941 2.9103 2.923 2.93014 2.93481 2.93547  \
+  2.94249 2.94689 2.95959 2.96013 2.97927 2.98398 2.99614 3.0022 3.00787 3.01378  \
+  3.01501 3.03057 3.03196 3.03331 3.03975 3.05801 3.05967 3.0628 3.06608 3.08565  \
+  3.08738 3.08873 3.09796 3.11212 3.11633 3.11753 3.12648 3.14068 3.15277 3.15643  \
+  3.16307 3.1672 3.18086 3.18322 3.18588 3.20201 3.20684 3.21182 3.21626 3.2195  \
+  3.23015 3.24227 3.24343 3.24891 3.26207 3.27253 3.27369 3.27566 3.28106 3.28423  \
+  3.28604 3.30673 3.30762 3.30908 3.31796 3.31973 3.32965 3.34783 3.35169 3.35432  \
+  3.35602 3.37169 3.37751 3.38106 3.38292 3.3838 3.39195 3.40457 3.40773 3.41433  \
+  3.41792 3.43475 3.43568 3.44791 3.45463 3.45544 3.46864 3.47354 3.47883 3.48304  \
+  3.48987 3.49188 3.49272 3.50353 3.51631 3.52086 3.5263 3.52754 3.539 3.54556  \
+  3.54788 3.55938 3.56691 3.57138 3.57204 3.58138 3.58844 3.59138 3.59558 3.60531  \
+  3.61558 3.61967 3.62264 3.63051 3.63569 3.65464 3.65707 3.65834 3.66139 3.66818  \
+  3.6788 3.68513 3.69482 3.69717 3.70061 3.70763 3.71805 3.72307 3.72535 3.75522  \
+  3.75665 3.76174 3.76526 3.77784 3.78479 3.78729 3.79552 3.80262 3.80856 3.81292  \
+  3.8157 3.81929 3.82257 3.83566 3.84766 3.86016 3.86159 3.86642 3.86642 3.88672  \
+  3.88803 3.89401 3.9025 3.90918 3.91509 3.92342 3.92481 3.93284 3.93373 3.93956  \
+  3.95542 3.95658 3.96607 3.96966 3.97561 3.98638 3.99853 4.00486 4.00868 4.02038  \
+  4.02752 4.02991 4.03084 4.03983 4.04855 4.0545 4.05824 4.05979 4.06658 4.08306  \
+  4.08904 4.10927 4.11293 4.11687 4.12262 4.13061 4.13563 4.14231 4.14867 4.15138  \
+  4.15427 4.16415 4.17145 4.1765 4.18048 4.2007 4.20159 4.20526 4.20773 4.22189  \
+  4.22591 4.22753 4.23428 4.23826 4.25111 4.25987 4.26242 4.26551 4.27157 4.27373  \
+  4.28137 4.30738 4.30927 4.31696 4.31807 4.32471 4.32834 4.33899 4.34069 4.34405  \
+  4.34579 4.35906 4.36346 4.37265 4.37431 4.38006 4.38118 4.40816 4.41179 4.41287  \
+  4.42036 4.42827 4.43583 4.44641 4.44764 4.45258 4.45579 4.45857 4.46733 4.47335  \
+  4.48331 4.4869 4.48856 4.51114 4.51538 4.51557 4.51959 4.53607 4.5368 4.53773  \
+  4.54572 4.55641 4.55965 4.56366 4.57382 4.5759 4.57964 4.59497 4.59794 4.60902  \
+  4.6155 4.62337 4.62581 4.63491 4.63576 4.64063 4.66294 4.66761 4.66903 4.67027  \
+  4.67533 4.68671 4.68949 4.70084 4.71018 4.71693 4.72415 4.73469 4.74665 4.76082  \
+  4.76163 4.76761 4.78536 4.79015 4.79451 4.80134 4.80424 4.80729 4.81373 4.823  \
+  4.82485 4.84067 4.84442 4.84928 4.85924 4.86665 4.87313 4.88031 4.8839 4.88973  \
+  4.89536 4.90235 4.90594 4.91246 4.91655 4.93809 4.94342 4.94477 4.95422 4.96191  \
+  4.96789 4.9746 4.98205 4.98483 4.98769 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL3.cal b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d471ded0db13f29a5057fc2ac0d40b0d03871cf3
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL3.cal
@@ -0,0 +1 @@
+SofSci_DET2_SIGNAL3_TIME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00170873 0.0171638 0.0177334 0.0213974 0.0223921 0.0358749 0.036776 0.0423188 0.0571278 0.0615654 0.0639627 0.0702621 0.0886756 0.0959441 0.108245 0.110073 0.110753 0.115284 0.119509 0.129116 0.130391 0.134769 0.137846 0.148039 0.164285 0.165569 0.171256 0.17299 0.18462 0.202073 0.204138 0.206017 0.209409 0.226794 0.229846 0.230432 0.231589 0.243201 0.247044 0.250572 0.264471 0.266962 0.272369 0.27786 0.283267 0.306458 0.309672 0.310717 0.311474 0.313489 0.322526 0.327983 0.334733 0.339001 0.342699 0.355076 0.358162 0.377315 0.378965 0.38228 0.390203 0.407342 0.411958 0.412408 0.417577 0.421275 0.430014 0.432344 0.437886 0.439314 0.447501 0.456342 0.475759 0.476703 0.47774 0.478709 0.500259 0.512161 0.512765 0.513258 0.51727 0.535675 0.537248 0.538838 0.54563 0.552941 0.553834 0.566449 0.582253 0.583911 0.592905 0.594257 0.610613 0.614022 0.618051 0.620925 0.625651 0.627862 0.641141 0.646709 0.648724 0.651138 0.661305 0.66837 0.67109 0.679923 0.684539 0.685185 0.711012 0.712635 0.720082 0.721289 0.724911 0.733429 0.743435 0.745152 0.747252 0.752795 0.767706 0.779514 0.781911 0.792597 0.797885 0.799271 0.820524 0.820524 0.821892 0.822768 0.823788 0.828566 0.835426 0.851995 0.852709 0.854035 0.869822 0.881613 0.882616 0.896447 0.898122 0.905382 0.916451 0.921526 0.926873 0.928786 0.930358 0.934286 0.947352 0.94907 0.955743 0.958523 0.966633 0.970986 0.988404 0.991346 0.998597 1.00624 1.00942 1.01051 1.02635 1.03556 1.04019 1.04787 1.05213 1.05292 1.05476 1.06826 1.07115 1.07757 1.10074 1.10183 1.10713 1.10918 1.11282 1.13048 1.13179 1.14112 1.1427 1.1445 1.15527 1.16642 1.16741 1.16831 1.18312 1.18861 1.19704 1.20272 1.21234 1.2197 1.22465 1.22545 1.23842 1.24054 1.2412 1.25089 1.25478 1.25804 1.25927 1.2722 1.27466 1.29368 1.30527 1.30632 1.3083 1.32473 1.3261 1.33003 1.33699 1.34783 1.3513 1.3544 1.36394 1.36728 1.36793 1.37344 1.38286 1.39938 1.40152 1.40663 1.41922 1.42468 1.42927 1.43725 1.4446 1.45217 1.454 1.45757 1.45905 1.46867 1.47186 1.47264 1.48879 1.48963 1.50833 1.50976 1.51662 1.52451 1.5401 1.54126 1.54864 1.55282 1.56139 1.56273 1.57039 1.57809 1.58947 1.5969 1.6046 1.60992 1.61196 1.62198 1.62593 1.62784 1.6316 1.64323 1.65241 1.65408 1.66233 1.66623 1.6791 1.67974 1.68055 1.69431 1.70291 1.70688 1.70846 1.71951 1.73115 1.7354 1.74806 1.74898 1.75974 1.767 1.76959 1.77622 1.78981 1.79712 1.80561 1.80694 1.8115 1.81876 1.82212 1.83136 1.83407 1.83936 1.84578 1.84837 1.85125 1.86829 1.87765 1.87942 1.88523 1.89358 1.89598 1.90534 1.90775 1.92051 1.92995 1.93065 1.94221 1.95005 1.95494 1.96514 1.96766 1.9779 1.98386 1.98599 1.98986 1.99814 2.00451 2.01451 2.01696 2.0191 2.02547 2.03353 2.0363 2.04506 2.05173 2.06837 2.07025 2.07492 2.08287 2.08883 2.09704 2.10189 2.1062 2.10699 2.12084 2.12858 2.12961 2.14332 2.1471 2.16502 2.17226 2.1829 2.18359 2.19061 2.19643 2.20697 2.20777 2.20835 2.21479 2.22211 2.22894 2.23603 2.23796 2.24749 2.25382 2.26913 2.2783 2.28356 2.28906 2.29095 2.29503 2.30244 2.30459 2.31179 2.32052 2.32372 2.3393 2.34375 2.34513 2.34789 2.35458 2.38014 2.3848 2.38754 2.38913 2.39601 2.40205 2.40448 2.41371 2.42479 2.42739 2.43278 2.43369 2.44759 2.45241 2.45491 2.47499 2.47818 2.47914 2.48322 2.49417 2.50334 2.50779 2.51095 2.52259 2.53825 2.54119 2.54271 2.54356 2.54444 2.55428 2.56171 2.56528 2.59042 2.59187 2.5991 2.60613 2.61464 2.61888 2.62202 2.62692 2.63299 2.63694 2.6394 2.6494 2.65385 2.65533 2.66162 2.66967 2.68846 2.69523 2.69608 2.70251 2.71235 2.72035 2.72294 2.73182 2.73909 2.74083 2.74512 2.7499 2.75061 2.76039 2.76168 2.76438 2.78063 2.79581 2.80195 2.80957 2.82165 2.82632 2.83101 2.83425 2.83662 2.83914 2.8432 2.8449 2.85613 2.85897 2.86609 2.86689 2.88703 2.89659 2.89964 2.90655 2.91783 2.92931 2.93007 2.93658 2.94301 2.94412 2.9476 2.94908 2.95828 2.96165 2.96741 2.97147 2.99215 3.00254 3.00448 3.02135 3.0235 3.03474 3.03782 3.04087 3.04389 3.0483 3.05316 3.05809 3.06474 3.0659 3.07182 3.08817 3.09562 3.10269 3.10981 3.11107 3.13262 3.13717 3.14592 3.14894 3.15394 3.16014 3.16932 3.17786 3.18481 3.18966 3.19106 3.19712 3.20871 3.21486 3.21785 3.23147 3.24522 3.25074 3.25442 3.25685 3.25948 3.26529 3.27437 3.2763 3.28143 3.28324 3.29931 3.30465 3.31743 3.31895 3.32672 3.32799 3.34219 3.35768 3.35849 3.36654 3.37079 3.37343 3.38061 3.39027 3.39194 3.39583 3.40088 3.40473 3.41998 3.42099 3.42445 3.43173 3.44028 3.44541 3.46188 3.46313 3.46347 3.46375 3.47972 3.48108 3.4858 3.49174 3.50038 3.50828 3.51472 3.52338 3.52989 3.53167 3.54521 3.54795 3.56291 3.56682 3.57382 3.57457 3.58813 3.59074 3.59421 3.59521 3.5992 3.61528 3.61882 3.62254 3.62648 3.63958 3.65037 3.65269 3.65427 3.66972 3.67064 3.6835 3.68712 3.68901 3.69079 3.70429 3.70609 3.71795 3.72217 3.72371 3.73449 3.73745 3.75032 3.7582 3.7582 3.7748 3.776 3.79067 3.79576 3.80821 3.81273 3.81461 3.81705 3.81888 3.82992 3.8309 3.8404 3.85387 3.85743 3.85897 3.86642 3.8762 3.8919 3.89646 3.89813 3.9104 3.91309 3.91597 3.91892 3.92481 3.92647 3.93584 3.94873 3.95886 3.96316 3.9639 3.96465 3.97728 3.99758 4.0009 4.01124 4.01516 4.02412 4.02536 4.03615 4.03715 4.03943 4.05334 4.05493 4.06228 4.06859 4.07676 4.07925 4.0994 4.10241 4.10975 4.11547 4.11582 4.12138 4.12438 4.12715 4.13716 4.14329 4.15765 4.16491 4.17263 4.17378 4.17762 4.20268 4.2045 4.20587 4.22228 4.22321 4.22541 4.22668 4.23796 4.23912 4.24558 4.24989 4.25191 4.27104 4.27203 4.27451 4.27549 4.31033 4.31259 4.31587 4.3179 4.32253 4.32486 4.33859 4.3403 4.34368 4.34952 4.35162 4.36308 4.36836 4.37516 4.37617 4.38299 4.40309 4.41077 4.41378 4.4148 4.42045 4.42296 4.43072 4.43304 4.43493 4.4389 4.45397 4.46566 4.46757 4.47609 4.47952 4.48537 4.50391 4.51656 4.51656 4.52305 4.52404 4.52476 4.53679 4.54079 4.54199 4.54912 4.56073 4.56891 4.5697 4.58374 4.58524 4.59088 4.60192 4.61935 4.62026 4.62359 4.62501 4.63758 4.64183 4.64295 4.64749 4.66461 4.66596 4.67543 4.68001 4.68495 4.68631 4.70913 4.71226 4.71271 4.7199 4.72595 4.72704 4.73384 4.74891 4.76265 4.76615 4.78554 4.78728 4.79892 4.80307 4.80715 4.80994 4.8197 4.82448 4.82817 4.83102 4.84012 4.84113 4.84993 4.85409 4.88608 4.88749 4.88944 4.89518 4.90274 4.90488 4.90603 4.91693 4.92277 4.92395 4.93939 4.94035 4.94183 4.94393 4.95324 4.96632 4.97503 4.97636 4.99025 4.99507 4.99744 4.99988 4.99994 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 
\ No newline at end of file
diff --git a/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL3.r3b b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL3.r3b
new file mode 100644
index 0000000000000000000000000000000000000000..c9391059ecb070ea0e8c695eb72c55b477028732
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/VFTX_DET2_SIGNAL3.r3b
@@ -0,0 +1,101 @@
+SofSci_DET2_SIGNAL3_TIME
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0 0 0 0 0 0  \
+  0 0 0 0 0.00170873 0.0171638 0.0177334 0.0213974 0.0223921 0.0358749  \
+  0.036776 0.0423188 0.0571278 0.0615654 0.0639627 0.0702621 0.0886756 0.0959441 0.108245 0.110073  \
+  0.110753 0.115284 0.119509 0.129116 0.130391 0.134769 0.137846 0.148039 0.164285 0.165569  \
+  0.171256 0.17299 0.18462 0.202073 0.204138 0.206017 0.209409 0.226794 0.229846 0.230432  \
+  0.231589 0.243201 0.247044 0.250572 0.264471 0.266962 0.272369 0.27786 0.283267 0.306458  \
+  0.309672 0.310717 0.311474 0.313489 0.322526 0.327983 0.334733 0.339001 0.342699 0.355076  \
+  0.358162 0.377315 0.378965 0.38228 0.390203 0.407342 0.411958 0.412408 0.417577 0.421275  \
+  0.430014 0.432344 0.437886 0.439314 0.447501 0.456342 0.475759 0.476703 0.47774 0.478709  \
+  0.500259 0.512161 0.512765 0.513258 0.51727 0.535675 0.537248 0.538838 0.54563 0.552941  \
+  0.553834 0.566449 0.582253 0.583911 0.592905 0.594257 0.610613 0.614022 0.618051 0.620925  \
+  0.625651 0.627862 0.641141 0.646709 0.648724 0.651138 0.661305 0.66837 0.67109 0.679923  \
+  0.684539 0.685185 0.711012 0.712635 0.720082 0.721289 0.724911 0.733429 0.743435 0.745152  \
+  0.747252 0.752795 0.767706 0.779514 0.781911 0.792597 0.797885 0.799271 0.820524 0.820524  \
+  0.821892 0.822768 0.823788 0.828566 0.835426 0.851995 0.852709 0.854035 0.869822 0.881613  \
+  0.882616 0.896447 0.898122 0.905382 0.916451 0.921526 0.926873 0.928786 0.930358 0.934286  \
+  0.947352 0.94907 0.955743 0.958523 0.966633 0.970986 0.988404 0.991346 0.998597 1.00624  \
+  1.00942 1.01051 1.02635 1.03556 1.04019 1.04787 1.05213 1.05292 1.05476 1.06826  \
+  1.07115 1.07757 1.10074 1.10183 1.10713 1.10918 1.11282 1.13048 1.13179 1.14112  \
+  1.1427 1.1445 1.15527 1.16642 1.16741 1.16831 1.18312 1.18861 1.19704 1.20272  \
+  1.21234 1.2197 1.22465 1.22545 1.23842 1.24054 1.2412 1.25089 1.25478 1.25804  \
+  1.25927 1.2722 1.27466 1.29368 1.30527 1.30632 1.3083 1.32473 1.3261 1.33003  \
+  1.33699 1.34783 1.3513 1.3544 1.36394 1.36728 1.36793 1.37344 1.38286 1.39938  \
+  1.40152 1.40663 1.41922 1.42468 1.42927 1.43725 1.4446 1.45217 1.454 1.45757  \
+  1.45905 1.46867 1.47186 1.47264 1.48879 1.48963 1.50833 1.50976 1.51662 1.52451  \
+  1.5401 1.54126 1.54864 1.55282 1.56139 1.56273 1.57039 1.57809 1.58947 1.5969  \
+  1.6046 1.60992 1.61196 1.62198 1.62593 1.62784 1.6316 1.64323 1.65241 1.65408  \
+  1.66233 1.66623 1.6791 1.67974 1.68055 1.69431 1.70291 1.70688 1.70846 1.71951  \
+  1.73115 1.7354 1.74806 1.74898 1.75974 1.767 1.76959 1.77622 1.78981 1.79712  \
+  1.80561 1.80694 1.8115 1.81876 1.82212 1.83136 1.83407 1.83936 1.84578 1.84837  \
+  1.85125 1.86829 1.87765 1.87942 1.88523 1.89358 1.89598 1.90534 1.90775 1.92051  \
+  1.92995 1.93065 1.94221 1.95005 1.95494 1.96514 1.96766 1.9779 1.98386 1.98599  \
+  1.98986 1.99814 2.00451 2.01451 2.01696 2.0191 2.02547 2.03353 2.0363 2.04506  \
+  2.05173 2.06837 2.07025 2.07492 2.08287 2.08883 2.09704 2.10189 2.1062 2.10699  \
+  2.12084 2.12858 2.12961 2.14332 2.1471 2.16502 2.17226 2.1829 2.18359 2.19061  \
+  2.19643 2.20697 2.20777 2.20835 2.21479 2.22211 2.22894 2.23603 2.23796 2.24749  \
+  2.25382 2.26913 2.2783 2.28356 2.28906 2.29095 2.29503 2.30244 2.30459 2.31179  \
+  2.32052 2.32372 2.3393 2.34375 2.34513 2.34789 2.35458 2.38014 2.3848 2.38754  \
+  2.38913 2.39601 2.40205 2.40448 2.41371 2.42479 2.42739 2.43278 2.43369 2.44759  \
+  2.45241 2.45491 2.47499 2.47818 2.47914 2.48322 2.49417 2.50334 2.50779 2.51095  \
+  2.52259 2.53825 2.54119 2.54271 2.54356 2.54444 2.55428 2.56171 2.56528 2.59042  \
+  2.59187 2.5991 2.60613 2.61464 2.61888 2.62202 2.62692 2.63299 2.63694 2.6394  \
+  2.6494 2.65385 2.65533 2.66162 2.66967 2.68846 2.69523 2.69608 2.70251 2.71235  \
+  2.72035 2.72294 2.73182 2.73909 2.74083 2.74512 2.7499 2.75061 2.76039 2.76168  \
+  2.76438 2.78063 2.79581 2.80195 2.80957 2.82165 2.82632 2.83101 2.83425 2.83662  \
+  2.83914 2.8432 2.8449 2.85613 2.85897 2.86609 2.86689 2.88703 2.89659 2.89964  \
+  2.90655 2.91783 2.92931 2.93007 2.93658 2.94301 2.94412 2.9476 2.94908 2.95828  \
+  2.96165 2.96741 2.97147 2.99215 3.00254 3.00448 3.02135 3.0235 3.03474 3.03782  \
+  3.04087 3.04389 3.0483 3.05316 3.05809 3.06474 3.0659 3.07182 3.08817 3.09562  \
+  3.10269 3.10981 3.11107 3.13262 3.13717 3.14592 3.14894 3.15394 3.16014 3.16932  \
+  3.17786 3.18481 3.18966 3.19106 3.19712 3.20871 3.21486 3.21785 3.23147 3.24522  \
+  3.25074 3.25442 3.25685 3.25948 3.26529 3.27437 3.2763 3.28143 3.28324 3.29931  \
+  3.30465 3.31743 3.31895 3.32672 3.32799 3.34219 3.35768 3.35849 3.36654 3.37079  \
+  3.37343 3.38061 3.39027 3.39194 3.39583 3.40088 3.40473 3.41998 3.42099 3.42445  \
+  3.43173 3.44028 3.44541 3.46188 3.46313 3.46347 3.46375 3.47972 3.48108 3.4858  \
+  3.49174 3.50038 3.50828 3.51472 3.52338 3.52989 3.53167 3.54521 3.54795 3.56291  \
+  3.56682 3.57382 3.57457 3.58813 3.59074 3.59421 3.59521 3.5992 3.61528 3.61882  \
+  3.62254 3.62648 3.63958 3.65037 3.65269 3.65427 3.66972 3.67064 3.6835 3.68712  \
+  3.68901 3.69079 3.70429 3.70609 3.71795 3.72217 3.72371 3.73449 3.73745 3.75032  \
+  3.7582 3.7582 3.7748 3.776 3.79067 3.79576 3.80821 3.81273 3.81461 3.81705  \
+  3.81888 3.82992 3.8309 3.8404 3.85387 3.85743 3.85897 3.86642 3.8762 3.8919  \
+  3.89646 3.89813 3.9104 3.91309 3.91597 3.91892 3.92481 3.92647 3.93584 3.94873  \
+  3.95886 3.96316 3.9639 3.96465 3.97728 3.99758 4.0009 4.01124 4.01516 4.02412  \
+  4.02536 4.03615 4.03715 4.03943 4.05334 4.05493 4.06228 4.06859 4.07676 4.07925  \
+  4.0994 4.10241 4.10975 4.11547 4.11582 4.12138 4.12438 4.12715 4.13716 4.14329  \
+  4.15765 4.16491 4.17263 4.17378 4.17762 4.20268 4.2045 4.20587 4.22228 4.22321  \
+  4.22541 4.22668 4.23796 4.23912 4.24558 4.24989 4.25191 4.27104 4.27203 4.27451  \
+  4.27549 4.31033 4.31259 4.31587 4.3179 4.32253 4.32486 4.33859 4.3403 4.34368  \
+  4.34952 4.35162 4.36308 4.36836 4.37516 4.37617 4.38299 4.40309 4.41077 4.41378  \
+  4.4148 4.42045 4.42296 4.43072 4.43304 4.43493 4.4389 4.45397 4.46566 4.46757  \
+  4.47609 4.47952 4.48537 4.50391 4.51656 4.51656 4.52305 4.52404 4.52476 4.53679  \
+  4.54079 4.54199 4.54912 4.56073 4.56891 4.5697 4.58374 4.58524 4.59088 4.60192  \
+  4.61935 4.62026 4.62359 4.62501 4.63758 4.64183 4.64295 4.64749 4.66461 4.66596  \
+  4.67543 4.68001 4.68495 4.68631 4.70913 4.71226 4.71271 4.7199 4.72595 4.72704  \
+  4.73384 4.74891 4.76265 4.76615 4.78554 4.78728 4.79892 4.80307 4.80715 4.80994  \
+  4.8197 4.82448 4.82817 4.83102 4.84012 4.84113 4.84993 4.85409 4.88608 4.88749  \
+  4.88944 4.89518 4.90274 4.90488 4.90603 4.91693 4.92277 4.92395 4.93939 4.94035  \
+  4.94183 4.94393 4.95324 4.96632 4.97503 4.97636 4.99025 4.99507 4.99744 4.99988  \
+  4.99994 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
+  5 5 5 5 5 5 5 5 5 5  \
diff --git a/Projects/s455/calibration/SofSci/transform_file.C b/Projects/s455/calibration/SofSci/transform_file.C
new file mode 100644
index 0000000000000000000000000000000000000000..0cfdfe1fd21c12d7ba4a670446e44fed15799fc4
--- /dev/null
+++ b/Projects/s455/calibration/SofSci/transform_file.C
@@ -0,0 +1,23 @@
+void transform_file(int det=1, int signal=1)
+{
+  string input_filename  = "VFTX_DET" + to_string(det) + "_SIGNAL" + to_string(signal) + ".r3b";
+  string output_filename = "VFTX_DET" + to_string(det) + "_SIGNAL" + to_string(signal) + ".cal";
+
+  ifstream ifile;
+  ifile.open(input_filename.c_str());
+  ofstream ofile;
+  ofile.open(output_filename.c_str());
+
+  string buffer;
+  getline(ifile,buffer);
+  ofile << buffer << " ";
+
+  double v1, v2, v3, v4, v5, v6, v7, v8, v9, v10;
+  string endofline;
+  //while(!ifile.eof()){
+  for(int i=0; i<100; i++){
+    ifile >> v1 >> v2 >> v3 >> v4 >> v5 >> v6 >> v7 >> v8 >> v9 >> v10 >> endofline;
+    cout << v1 << " " << v2 << " " << v3 << " " << v4 << " " << v5 << " " << v6 << " " << v7 << " " << v8 << " " << v9 << " " << v10 << " " << endofline << endl;
+    ofile << v1 << " " << v2 << " " << v3 << " " << v4 << " " << v5 << " " << v6 << " " << v7 << " " << v8 << " " << v9 << " " << v10 << " ";
+  }
+}
diff --git a/Projects/s455/calibration/SofTrim/SofTrim_Beta.cal b/Projects/s455/calibration/SofTrim/SofTrim_Beta.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a155ae16b76ab693bd5f6a3fc0447cfa0118a9e0
--- /dev/null
+++ b/Projects/s455/calibration/SofTrim/SofTrim_Beta.cal
@@ -0,0 +1,9 @@
+SofTrim_SEC1_ANODE1_BETA 7465.29 18137.8  
+SofTrim_SEC1_ANODE2_BETA 7051.81 18404.7
+SofTrim_SEC1_ANODE3_BETA 7288.18 18238
+SofTrim_SEC2_ANODE1_BETA 6313.86 19036
+SofTrim_SEC2_ANODE2_BETA 4408.22 20531.7
+SofTrim_SEC2_ANODE3_BETA 5923.35 19394.1
+SofTrim_SEC3_ANODE1_BETA 5709.08 18200.4
+SofTrim_SEC3_ANODE2_BETA 2844.40 20293.3
+SofTrim_SEC3_ANODE3_BETA 5693.32 18155.2
diff --git a/Projects/s455/calibration/SofTrim/SofTrim_Energy.cal b/Projects/s455/calibration/SofTrim/SofTrim_Energy.cal
new file mode 100644
index 0000000000000000000000000000000000000000..649fb5f73a578fea619f30bd22b928e9e0c78885
--- /dev/null
+++ b/Projects/s455/calibration/SofTrim/SofTrim_Energy.cal
@@ -0,0 +1,20 @@
+SofTrim_SEC1_ANODE1_ENERGY 0 0.97
+SofTrim_SEC1_ANODE2_ENERGY 0 1
+SofTrim_SEC1_ANODE3_ENERGY 0 0.95
+SofTrim_SEC1_ANODE4_ENERGY 0 1
+SofTrim_SEC1_ANODE5_ENERGY 0 0.91
+SofTrim_SEC1_ANODE6_ENERGY 0 1
+
+SofTrim_SEC2_ANODE1_ENERGY 0 0.96
+SofTrim_SEC2_ANODE2_ENERGY 0 1
+SofTrim_SEC2_ANODE3_ENERGY 0 0.98
+SofTrim_SEC2_ANODE4_ENERGY 0 1
+SofTrim_SEC2_ANODE5_ENERGY 0 0.94
+SofTrim_SEC2_ANODE6_ENERGY 0 1
+
+SofTrim_SEC3_ANODE1_ENERGY 0 0.99
+SofTrim_SEC3_ANODE2_ENERGY 0 1
+SofTrim_SEC3_ANODE3_ENERGY 0 0.95
+SofTrim_SEC3_ANODE4_ENERGY 0 1
+SofTrim_SEC3_ANODE5_ENERGY 0 0.96
+SofTrim_SEC3_ANODE6_ENERGY 0 1
diff --git a/Projects/s455/calibration/SofTrim/SofTrim_PairAlign.cal b/Projects/s455/calibration/SofTrim/SofTrim_PairAlign.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cfa3f22eead87e0b2a6324253c4bc43cc9993bb0
--- /dev/null
+++ b/Projects/s455/calibration/SofTrim/SofTrim_PairAlign.cal
@@ -0,0 +1,9 @@
+SofTrim_SEC1_ANODE1_ALIGN 0 1.028 
+SofTrim_SEC1_ANODE2_ALIGN 0 1.017
+SofTrim_SEC1_ANODE3_ALIGN 0 0.953
+SofTrim_SEC2_ANODE1_ALIGN 0 1.053
+SofTrim_SEC2_ANODE2_ALIGN 0 1.002
+SofTrim_SEC2_ANODE3_ALIGN 0 0.950
+SofTrim_SEC3_ANODE1_ALIGN 0 0.960
+SofTrim_SEC3_ANODE2_ALIGN 0 1.033
+SofTrim_SEC3_ANODE3_ALIGN 0 1.009
diff --git a/Projects/s455/calibration/SofTrim/SofTrim_SectionAlign.cal b/Projects/s455/calibration/SofTrim/SofTrim_SectionAlign.cal
new file mode 100644
index 0000000000000000000000000000000000000000..f715cc34d2a0a69d058f618def6e38f5ff024c6b
--- /dev/null
+++ b/Projects/s455/calibration/SofTrim/SofTrim_SectionAlign.cal
@@ -0,0 +1,3 @@
+SofTrim_SEC1_ALIGN 1382.37 0.9567 
+SofTrim_SEC2_ALIGN 0 1
+SofTrim_SEC3_ALIGN -1730.62 1.15977
diff --git a/Projects/s455/calibration/SofTrim/SofTrim_Time.cal b/Projects/s455/calibration/SofTrim/SofTrim_Time.cal
new file mode 100644
index 0000000000000000000000000000000000000000..71af1022923f8e25d4e443b8c7ab6b008ba5691d
--- /dev/null
+++ b/Projects/s455/calibration/SofTrim/SofTrim_Time.cal
@@ -0,0 +1,20 @@
+SofTrim_SEC1_ANODE1_TIME -5397.91 1   
+SofTrim_SEC1_ANODE2_TIME -5515.04 1
+SofTrim_SEC1_ANODE3_TIME -5290.97 1
+SofTrim_SEC1_ANODE4_TIME -5413.29 1
+SofTrim_SEC1_ANODE5_TIME -5161.05 1
+SofTrim_SEC1_ANODE6_TIME -5308.73 1
+
+SofTrim_SEC2_ANODE1_TIME -4934.88 1
+SofTrim_SEC2_ANODE2_TIME -5086.79 1
+SofTrim_SEC2_ANODE3_TIME -4924.64 1
+SofTrim_SEC2_ANODE4_TIME -5125.15 1
+SofTrim_SEC2_ANODE5_TIME -4890.57 1
+SofTrim_SEC2_ANODE6_TIME -5017.66 1
+
+SofTrim_SEC3_ANODE1_TIME -5047.94 1
+SofTrim_SEC3_ANODE2_TIME -5054.42 1
+SofTrim_SEC3_ANODE3_TIME -5257.42 1
+SofTrim_SEC3_ANODE4_TIME -5288.32 1
+SofTrim_SEC3_ANODE5_TIME -5385.41 1
+SofTrim_SEC3_ANODE6_TIME -5348.71 1
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec1Q78.root b/Projects/s455/calibration/SofTrim/cut/cutsec1Q78.root
new file mode 100644
index 0000000000000000000000000000000000000000..fd65a0afb2ff573b9d38f2d3624230e4aefc8340
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec1Q78.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec1Q79.root b/Projects/s455/calibration/SofTrim/cut/cutsec1Q79.root
new file mode 100644
index 0000000000000000000000000000000000000000..f60bc45cf1026fcd291fae62de390c9efb931f06
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec1Q79.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec1Q80.root b/Projects/s455/calibration/SofTrim/cut/cutsec1Q80.root
new file mode 100644
index 0000000000000000000000000000000000000000..6b85a6b42a8ea84b4a8ff53d43c78f8acee9891d
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec1Q80.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec1Q81.root b/Projects/s455/calibration/SofTrim/cut/cutsec1Q81.root
new file mode 100644
index 0000000000000000000000000000000000000000..783382177f61c8096211b5af516d5052536a2881
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec1Q81.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec2Q78.root b/Projects/s455/calibration/SofTrim/cut/cutsec2Q78.root
new file mode 100644
index 0000000000000000000000000000000000000000..126a8ddb94749a73f5e0377952de555adb3bc0ec
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec2Q78.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec2Q79.root b/Projects/s455/calibration/SofTrim/cut/cutsec2Q79.root
new file mode 100644
index 0000000000000000000000000000000000000000..075e383001b3141fd880d2d5db041c2d85dca8eb
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec2Q79.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec2Q80.root b/Projects/s455/calibration/SofTrim/cut/cutsec2Q80.root
new file mode 100644
index 0000000000000000000000000000000000000000..59c901938c03abd79d6ab52b513716c6652b85de
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec2Q80.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec2Q81.root b/Projects/s455/calibration/SofTrim/cut/cutsec2Q81.root
new file mode 100644
index 0000000000000000000000000000000000000000..dce675be52105aad1a89b72e088ec406515f5f43
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec2Q81.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec3Q78.root b/Projects/s455/calibration/SofTrim/cut/cutsec3Q78.root
new file mode 100644
index 0000000000000000000000000000000000000000..00f9dc30bde79a946410a5896bedcb3e6be64900
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec3Q78.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec3Q79.root b/Projects/s455/calibration/SofTrim/cut/cutsec3Q79.root
new file mode 100644
index 0000000000000000000000000000000000000000..0a53f5e9d7185bb082f02c67a63738911c3d79e2
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec3Q79.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec3Q80.root b/Projects/s455/calibration/SofTrim/cut/cutsec3Q80.root
new file mode 100644
index 0000000000000000000000000000000000000000..4db5264f101740a3b8cfbf2cc36fc3429fe20f89
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec3Q80.root differ
diff --git a/Projects/s455/calibration/SofTrim/cut/cutsec3Q81.root b/Projects/s455/calibration/SofTrim/cut/cutsec3Q81.root
new file mode 100644
index 0000000000000000000000000000000000000000..3664bd7dcb38436649606334b6ad92175e887d1e
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/cut/cutsec3Q81.root differ
diff --git a/Projects/s455/calibration/SofTrim/spline/EvsA_spline.root b/Projects/s455/calibration/SofTrim/spline/EvsA_spline.root
new file mode 100644
index 0000000000000000000000000000000000000000..711c4d3de3d12d35ef759f211b8abd627f7374f5
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/spline/EvsA_spline.root differ
diff --git a/Projects/s455/calibration/SofTrim/spline/EvsDT_spline.root b/Projects/s455/calibration/SofTrim/spline/EvsDT_spline.root
new file mode 100644
index 0000000000000000000000000000000000000000..d3bc78008b93bcbbb3d2de685a00570b704f5e11
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/spline/EvsDT_spline.root differ
diff --git a/Projects/s455/calibration/SofTrim/spline/spline_section.root b/Projects/s455/calibration/SofTrim/spline/spline_section.root
new file mode 100644
index 0000000000000000000000000000000000000000..3045e21f7b71542e2c98df4aa8e9932b9960d363
Binary files /dev/null and b/Projects/s455/calibration/SofTrim/spline/spline_section.root differ
diff --git a/Projects/s455/configs/ConfigSofSci.dat b/Projects/s455/configs/ConfigSofSci.dat
new file mode 100644
index 0000000000000000000000000000000000000000..0ac36bed10c9133f1f69d1f1abcdbbe84b7b89bb
--- /dev/null
+++ b/Projects/s455/configs/ConfigSofSci.dat
@@ -0,0 +1,8 @@
+ConfigSofSci
+ DET1_POSNS_MIN -20
+ DET1_POSNS_MAX 20
+ DET2_POSNS_MIN -20
+ DET2_POSNS_MAX 20
+ RAWTOF_MIN 1600
+ RAWTOF_MAX 1700
+
diff --git a/Projects/s455/configs/ConfigSofTrim.dat b/Projects/s455/configs/ConfigSofTrim.dat
new file mode 100644
index 0000000000000000000000000000000000000000..5815cd203cefd30d194adc398e65e50405a1ec52
--- /dev/null
+++ b/Projects/s455/configs/ConfigSofTrim.dat
@@ -0,0 +1,4 @@
+ConfigSofTrim
+SPLINE_PAIR_ANGLE_PATH  ./calibration/SofTrim/spline/EvsA_spline.root
+SPLINE_PAIR_DT_PATH ./calibration/SofTrim/spline/EvsDT_spline.root
+SPLINE_SECTION_DT_PATH ./calibration/SofTrim/spline/spline_section.root
diff --git a/Projects/s455/s455.detector b/Projects/s455/s455.detector
new file mode 100644
index 0000000000000000000000000000000000000000..4a9243e2517e2bf349aabf52676e7e913a0208fd
--- /dev/null
+++ b/Projects/s455/s455.detector
@@ -0,0 +1,26 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Target
+ THICKNESS= 0.00001 mm
+ RADIUS= 50 mm
+ MATERIAL= Pb
+ ANGLE= 0 deg
+ X= 0 mm
+ Y= 0 mm
+ Z= 0 m
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+SofSci
+ POS= 0 0 -136.3706933 m
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+SofSci
+ POS= 0 0 0 m
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+SofTrim
+ POS= 0 0 -500
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+%SofTofW
+% R= 8 m
+% THETA= -9.5 deg
+% PHI= 0 deg
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+