diff --git a/Examples/Example1/RunToTreat.txt b/Examples/Example1/RunToTreat.txt
index 82908222e590c8760e20a5e47347834912b6c19c..4baf9cb3ab57671534853ca67caf68476db3a2d5 100644
--- a/Examples/Example1/RunToTreat.txt
+++ b/Examples/Example1/RunToTreat.txt
@@ -1,5 +1,5 @@
 TTreeName 
 	SimulatedTree
 RootFileName 
-	../../Outputs/Simulation/Example1.root
+	./root/simulation/Example1.root
 
diff --git a/Examples/Example1/ShowResults.C b/Examples/Example1/ShowResults.C
index 6d7c2ed410b92cf005913800d9d94f8a5d95abd2..78853c616d53ac12f89a77969464b0fae51a44fb 100644
--- a/Examples/Example1/ShowResults.C
+++ b/Examples/Example1/ShowResults.C
@@ -6,6 +6,7 @@ TChain* chain=NULL ;
 
 ////////////////////////////////////////////////////////////////////////////////
 void LoadCuts(){
+    std::cout << "Loading Cuts" << std::endl;
     TFile* File_ETOF = new TFile("cuts/ETOF.root","READ");
     ETOF = (TCutG*) File_ETOF->FindObjectAny("ETOF");
     
@@ -15,6 +16,8 @@ void LoadCuts(){
 
 ////////////////////////////////////////////////////////////////////////////////
 void LoadChain(){
+
+    std::cout << "Loading Chain" << std::endl;
     chain = new TChain("PhysicsTree");
     chain->Add("root/analysis/Example1.root");
 }
diff --git a/Examples/Example1/configs/ConfigMust2.dat b/Examples/Example1/configs/ConfigMust2.dat
index bebb0bf9ea475fdc1d492417228af5e96dbe37c5..4a76b40c82a19111e2d98809ddb225f33be4f602 100755
--- a/Examples/Example1/configs/ConfigMust2.dat
+++ b/Examples/Example1/configs/ConfigMust2.dat
@@ -14,4 +14,4 @@ ConfigMust2
 	DISABLE_ALL MM6
 	DISABLE_ALL MM7
 	DISABLE_ALL MM8
-  CSI_SIZE 256
+  CSI_SIZE 32
diff --git a/Inputs/DetectorConfiguration/Example1.detector b/Inputs/DetectorConfiguration/Example1.detector
index e67ae572d0e1b77285c08345d01c6aaa5e07f11f..0b9645962390ac415160145e323619de434cef93 100644
--- a/Inputs/DetectorConfiguration/Example1.detector
+++ b/Inputs/DetectorConfiguration/Example1.detector
@@ -94,8 +94,6 @@ M2Telescope
  CSI=    0
  VIS=    all
 
-%%%%%%%%%%%%%%%%%%%%%     
-SSSDArray
 %%%%%%%%%% Det 1 %%%%%%%%     
 SSSD
  A= 17.61 9.85  104.11 mm
diff --git a/NPLib/Physics/NPReaction.cxx b/NPLib/Physics/NPReaction.cxx
index b548dc168d24c69a70cafa4742fadda43c165b97..46aefd5692a7b4f768dab5145a18007890b6ed40 100644
--- a/NPLib/Physics/NPReaction.cxx
+++ b/NPLib/Physics/NPReaction.cxx
@@ -261,10 +261,10 @@ void Reaction::KineRelativistic(double& ThetaLab3, double& KineticEnergyLab3, do
   // case of inverse kinematics
 
   double theta = fThetaCM;
-  /*if (m1 > m2){
+  if (m1 > m2){
     theta = M_PI - fThetaCM;
     //fThetaCM = M_PI - fThetaCM;
-  }*/
+  }
   fEnergyImpulsionCM_3 = TLorentzVector(pCM_3 * sin(theta), 0, pCM_3 * cos(theta), ECM_3);
   fEnergyImpulsionCM_4 = fTotalEnergyImpulsionCM - fEnergyImpulsionCM_3;