diff --git a/.gitignore b/.gitignore
index 60234d01b38e6b2022b7d2b897ace7e45ac94304..5d640234a9fd38edef2a14a1fc019c388f974dac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,8 @@
 ROOTfiles/*
 #*
 hcana
-raw
\ No newline at end of file
+raw
+.root_history
+data_files/*
+root_files/*
+REPORT_OUTPUT/*
diff --git a/.rootrc b/.rootrc
new file mode 100644
index 0000000000000000000000000000000000000000..313d262d4d4a9ca6b2a1757855d04c67b8aedaba
--- /dev/null
+++ b/.rootrc
@@ -0,0 +1 @@
+Rint.History: .root_history
diff --git a/CALIBRATION/.gitignore b/CALIBRATION/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..a9da3531dad97cca6e7b465e53f6663be3666fdb
--- /dev/null
+++ b/CALIBRATION/.gitignore
@@ -0,0 +1,18 @@
+#
+# Ignore file for calorimeter calibration code
+#
+
+# Debug files
+*.deb
+# Monte Carlo results
+*.r
+*.pdf
+*.cal_data
+*.raw_data
+*.root
+# Parameter files generated by calibration
+*.param
+hms_dc_calib/data_files
+*.d
+hms_dc_calib/scripts/*.txt
+
diff --git a/CALIBRATION/hms_dc_calib/run_Cal.C b/CALIBRATION/hms_dc_calib/run_Cal.C
new file mode 100644
index 0000000000000000000000000000000000000000..94f7daf405a1725f68a3d7ee713b448231afc9fd
--- /dev/null
+++ b/CALIBRATION/hms_dc_calib/run_Cal.C
@@ -0,0 +1,68 @@
+//SCRIPT TO RUN OVER ALL HMS DC CALIBRATION SCRIPTS AT ONCE, AND UPDATE THE
+//NECESSARY PARAMTER FILES hdriftmap.param and  hdc.param
+void run_Cal()
+{
+      
+  //User Input Run
+  int run_NUM;
+  cout << "Enter Run Number: " << endl;
+  cin >> run_NUM;
+
+  //Create input file with run number
+  ofstream fout;
+  fout.open("scripts/input_RUN.txt");
+  fout << run_NUM << endl;
+  fout.close();
+
+
+  //Create root and data files Directories if they dont exist
+  char *dir_root = "mkdir ./root_files/";
+  char *dir_data = "mkdir ./data_files/";
+
+  if (system(dir_root || dir_data) != 0) {
+    system(dir_root);
+    system(dir_data);
+  }
+
+  //Create run Directories if they dont exist
+  char *dir0 = Form("mkdir ./root_files/run%d", run_NUM);
+  char *dir1 = Form("mkdir ./data_files/run%d", run_NUM);
+
+  if (system(dir0 || dir1) != 0) {
+    system(dir0);
+    system(dir1);
+  }
+
+  
+
+  //change directories and execute scripts
+  gSystem->cd("./scripts");
+  gSystem->Exec("root -l -q get_hdc_time_histo.C");
+  
+  //Load and Loop over Make Class events to get individual drift times
+  gROOT->LoadMacro("wire_drift_times.C");
+  gROOT->ProcessLine("wire_drift_times t"); //process line allows one to execute interactive root commands from a script, such as this one
+  gROOT->ProcessLine("t.Loop()");
+  //gROOT->ProcessLine(".q");
+  gROOT->Reset();
+  
+  
+
+gSystem->cd("./scripts");
+
+  
+  //execute code to get t0 from each wire in each plane
+  gSystem->Exec("root -l -q -b get_wire_tzero.C");
+ 
+  //execute code to update hdc parameter file
+  gSystem->Exec("root -l -q update_hdcparam.C");
+
+  //execute code to get t0 corrected drift times
+  gSystem->Exec("root -l -q get_hdc_time_histo_tzero_corrected.C");
+  
+ //execute code to update LookUp Table
+  gSystem->Exec("root -l -q get_LookUp_Values.C");
+
+  
+  
+}
diff --git a/CALIBRATION/hms_dc_calib/scripts/get_LookUp_Values.C b/CALIBRATION/hms_dc_calib/scripts/get_LookUp_Values.C
new file mode 100644
index 0000000000000000000000000000000000000000..e4a402769f251ae31d5a3845f1d6e8a1df6455c0
--- /dev/null
+++ b/CALIBRATION/hms_dc_calib/scripts/get_LookUp_Values.C
@@ -0,0 +1,126 @@
+/*This code produces a lookup table necessary to convert drift times to
+drift distances in the HMS drift chambers
+*/
+
+#define NPLANES 12
+#define TOTAL_BINS 137
+
+void get_LookUp_Values() {
+
+   
+  //Read Run Number from txt file
+  int run_NUM;
+ TString f0 = "input_RUN.txt";
+ ifstream infile(f0);
+ infile >> run_NUM;
+ 
+//Open root file containing drift time histos
+ TFile *f = new TFile(Form("../root_files/run%d/hms_dc_t0_corrected_%d.root", run_NUM, run_NUM),"READ");
+ 
+ //Define histogram array
+ TH1F *h[NPLANES];
+ 
+ //Define the number Drift Chamber planes
+ TString plane_names[NPLANES]={"1x1", "1y1", "1u1", "1v1", "1y2", "1x2", "2x1", "2y1", "2u1", "2v1", "2y2", "2x2"};
+ 
+ //Declare bin properties
+	int bin_t0[NPLANES];
+  int bin_final[NPLANES];					/*Array to store the bin number corresponding to last bin*/
+  int bin_Content[NPLANES];          /*Array to store the content (# events) corresponding to the bin with maximum content*/
+  double binContent_TOTAL[NPLANES];     /*Array to store sum of all bin contents for each plane*/
+  double binSUM[NPLANES];
+  int bin;
+  int binx;
+  double lookup_value[NPLANES];           /*Array to store lookup values for each plane*/ 
+  
+  //Create an output file to store lookup values  
+  ofstream ofs;
+ TString lookup_table = "../../../PARAM/HMS/DC/hdriftmap_new.param";
+ ofs.open (lookup_table);
+ 
+ 
+//Set headers for subsequent columns of data
+ ofs << Form("; Lookup Table: RUN %d", run_NUM) << "\n";
+ ofs << "; number of bins in Carlos's time to distance lookup table" << "\n";
+ ofs << Form("hdriftbins = %d", TOTAL_BINS+1) << "\n";
+ ofs << "; number of 1st bin in Carlos's table in ns" << "\n";
+ ofs << "hdrift1stbin=0" << "\n";
+ ofs << "; bin size in ns" << "\n";
+ ofs << "hdriftbinsz=2" << "\n";
+ 
+ 
+ 
+ //Loop over each plane of HMS Drift Chambers (DC1 & DC2)
+
+ for (int ip=0; ip<NPLANES; ip++){
+   
+   TString drift_time_histo = "hdc"+plane_names[ip]+"_time: t0_corr"; 
+
+   //Get drift time histograms from root file
+   h[ip] = (TH1F*)f->Get(drift_time_histo);
+
+   //Get bin corresponding to t0 = 0 ns
+  bin_t0[ip] = h[ip]->GetXaxis()->FindBin(0.0);
+   
+   //Get final bin 
+   bin_final[ip] = bin_t0[ip] + TOTAL_BINS;
+   
+   
+   
+   //Find total BIN Content over entire integration range
+   binContent_TOTAL[ip] = 0; //set counter to zero
+
+   for (bin = bin_t0[ip]; bin <= bin_final[ip]; bin ++ ) {
+     
+     bin_Content[ip] = h[ip] -> GetBinContent(bin);
+     
+     binContent_TOTAL[ip] = bin_Content[ip] + binContent_TOTAL[ip];
+     
+     //   cout << "Bin: " << bin << endl;
+     //   cout << "Content " << bin_Content[ip] << endl;
+     //   cout << "Content SUM : " << binContent_TOTAL[ip] << endl;
+   }
+   
+   TString headers = "hwc" + plane_names[ip] + "fract=";      
+   ofs << headers;	  
+   
+   //Calculate LookUp Value
+   
+   binSUM[ip] = 0.0;
+   int bin_count = 0;
+   
+   for (bin = bin_t0[ip]; bin <= bin_final[ip]; bin++) {
+     
+     bin_Content[ip] = h[ip] -> GetBinContent(bin);
+     binSUM[ip] = binSUM[ip] + bin_Content[ip];
+     
+     
+     lookup_value[ip] = binSUM[ip] / binContent_TOTAL[ip];
+     bin_count = bin_count + 1;
+     
+     if (bin_count < = 8 ) {
+       ofs << setprecision(5) << lookup_value[ip] << fixed << ",";
+     }
+     
+     else if (bin_count >8 && bin_count < 138) {
+       ofs << setprecision(5) << lookup_value[ip] << ((bin_count+1) % 10 ? "," : "\n") << fixed; 
+     }
+     else {
+       ofs << setprecision(5) << lookup_value[ip] << fixed << endl;	  
+     }
+     
+   }
+
+ }                                            
+ 
+}
+
+
+	 
+  
+
+
+
+
+
+
diff --git a/CALIBRATION/hms_dc_calib/scripts/get_hdc_time_histo.C b/CALIBRATION/hms_dc_calib/scripts/get_hdc_time_histo.C
new file mode 100644
index 0000000000000000000000000000000000000000..b3bfee5856ddaa84b4a9bb0ebe6b3eadc55d969b
--- /dev/null
+++ b/CALIBRATION/hms_dc_calib/scripts/get_hdc_time_histo.C
@@ -0,0 +1,98 @@
+//Script to add necessary drift time histograms/plane from original root file to new root file
+
+
+#define NPLANES 12
+
+void get_hdc_time_histo()
+{
+
+//Read Run Number from txt file
+int run_NUM;
+TString f0 = "input_RUN.txt";
+ifstream infile(f0);
+infile >> run_NUM;
+
+//Create RUN Directories if they dont exist
+char *dir0 = Form("mkdir ../root_files/run%d", run_NUM);
+char *dir1 = Form("mkdir ../data_files/run%d", run_NUM);
+
+if (system(dir0 || dir1) != 0) {
+system(dir0);
+system(dir1);
+}
+
+//open file
+TFile *f = new TFile(Form("../../../ROOTfiles/test_%d.root", run_NUM), "READ");
+
+//create new file
+ TFile *g = new TFile(Form("../root_files/run%d/hms_dc_time_%d.root", run_NUM, run_NUM), "RECREATE"); // create new file to store histo
+
+f->cd();
+
+//Get the tree
+TTree *tree = (TTree*)f->Get("T");
+TString SPECTROMETER="H";
+TString DETECTOR="dc";
+TString plane_names[NPLANES]={"1x1", "1y1", "1u1", "1v1", "1y2", "1x2", "2x1", "2y1", "2u1", "2v1", "2y2", "2x2"};
+
+//Declare Variables to Loop Over
+Int_t Ndata[NPLANES];
+Double_t hdc_time[NPLANES][1000];
+    
+//Declare Histogram array to store AVG drift times per plane
+TH1F* h[NPLANES];
+	
+g->cd();
+	
+//Loop over each plane
+for(Int_t ip=0; ip<NPLANES; ip++){
+  TString base_name = SPECTROMETER+"."+DETECTOR+"."+plane_names[ip];
+  TString ndata_name = "Ndata."+base_name+".time";
+  TString drift_time = base_name+".time";
+  
+  TString drift_time_histo = "hdc"+plane_names[ip]+"_time"; 
+  TString title = "hdc"+plane_names[ip]+"_drifttime";
+     
+  //Set Branch Address
+  tree->SetBranchAddress(drift_time, &hdc_time[ip][0]);   
+  tree->SetBranchAddress(ndata_name, &Ndata[ip]);  /* Ndata represents number of triggers vs number of hits that each trigger produced.
+                                                      A hit is refer to as when a trigger(traversing particle), ionizes the WC gas and ionized
+                                                      electrons reach the rearest sense wire, producing a detectable signal in the O'scope */
+  
+  //Create Histograms
+  h[ip] = new TH1F(drift_time_histo, title, 200, -50, 350);  //set time to 400 ns/200 bins = 2ns/bin
+ }
+ 
+
+ 
+//Declare number of entries in the tree
+ Long64_t nentries = tree->GetEntries(); //number of triggers (particles that passed through all 4 hodo planes)
+ 
+ //Loop over all entries
+ for(Long64_t i=0; i<nentries; i++)
+   {
+     tree->GetEntry(i);
+    
+    
+     //Loop over number of hits for each trigger in each DC plane 
+     for(ip=0; ip<NPLANES; ip++){
+       
+    
+       for(Int_t j=0; j<Ndata[ip]; j++){
+	
+	 h[ip]->Fill(hdc_time[ip][j]); 
+       }
+       
+     }
+
+   }
+
+
+
+		
+ //Write histograms to file
+ g->Write();
+
+
+
+}
diff --git a/CALIBRATION/hms_dc_calib/scripts/get_hdc_time_histo_tzero_corrected.C b/CALIBRATION/hms_dc_calib/scripts/get_hdc_time_histo_tzero_corrected.C
new file mode 100644
index 0000000000000000000000000000000000000000..d847ce0bc3b186b97eb26a7a470c4139fa7064d9
--- /dev/null
+++ b/CALIBRATION/hms_dc_calib/scripts/get_hdc_time_histo_tzero_corrected.C
@@ -0,0 +1,107 @@
+//Script to add t0 correction to HMS DC drift times
+
+#define NPLANES 12
+
+void get_hdc_time_histo_tzero_corrected()
+{
+
+	  
+  //read run number from input file
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;   
+
+  TString run = Form("run%d", run_NUM);
+
+
+	  //open file
+	  TFile *f = new TFile(Form("../../../ROOTfiles/test_%d.root", run_NUM), "READ");
+
+	  //updates file
+	  TFile *g = new TFile(Form("../root_files/run%d/hms_dc_t0_corrected_%d.root", run_NUM, run_NUM), "UPDATE"); // create new file to store histo
+
+      f->cd();
+
+     //Get the tree
+     TTree *tree = (TTree*)f->Get("T");
+
+	TString SPECTROMETER="H";
+	TString DETECTOR="dc";
+	TString plane_names[NPLANES]={"1x1", "1y1", "1u1", "1v1", "1y2", "1x2", "2x1", "2y1", "2u1", "2v1", "2y2", "2x2"};
+
+    //Declare Variables to Loop Over
+    Int_t Ndata[NPLANES];
+    Double_t hdc_time[NPLANES][1000];
+    
+    //Declare Histogram array to store AVG drift times per plane
+    TH1F* h[NPLANES];
+	
+	g->cd();
+	
+	//Loop over each plane
+	for(Int_t ip=0; ip<NPLANES; ip++){
+		TString base_name = SPECTROMETER+"."+DETECTOR+"."+plane_names[ip];
+		TString ndata_name = "Ndata."+base_name+".time";
+		TString drift_time = base_name+".time";
+
+		TString drift_time_histo = "hdc"+plane_names[ip]+"_time: t0_corr"; 
+        TString title = "hdc"+plane_names[ip]+"_drifttime: t0-corrected";
+     
+     //Set Branch Address
+     tree->SetBranchAddress(drift_time, hdc_time[ip]);   
+     tree->SetBranchAddress(ndata_name, &Ndata[ip]);  /* Ndata represents number of triggers vs number of hits that each trigger produced.
+                                                      A hit is refer to as when a trigger(traversing particle), ionizes the WC gas and ionized
+                                                      electrons reach the rearest sense wire, producing a detectable signal in the O'scope */
+	
+     //Create Histograms
+     h[ip] = new TH1F(drift_time_histo, title, 200, -50, 350);  //set time to 400 ns/200 bins = 2ns/bin
+}
+	
+	
+	//open and read tzero data file
+    ifstream ifs;
+    ifs.open("../data_files/" + run + "/tzero.dat");
+    
+	double t_zero_offsets[NPLANES];
+
+     for (ip=0; ip < 12; ip++) {	 
+	 ifs >> t_zero_offsets[ip];  //add tzero offsets to array
+   }
+   
+    //Declare number of entries in the tree
+    Long64_t nentries = tree->GetEntries(); //number of triggers (particles that passed through all 4 hodo planes)
+
+    //Loop over all entries
+    for(Long64_t i=0; i<nentries; i++)
+    {
+	tree->GetEntry(i);
+    
+    
+    //Loop over number of hits for each trigger in each DC plane 
+    for(ip=0; ip<NPLANES; ip++){
+   
+ 
+    
+    for(Int_t j=0; j<Ndata[ip]; j++){
+	
+	h[ip]->Fill(hdc_time[ip][j] - t_zero_offsets[ip]); //add t0 offset correction 
+       }
+      
+      
+
+			
+	
+	}
+
+}
+
+
+
+		
+//Write histograms to file
+g->Write();
+
+
+
+}
diff --git a/CALIBRATION/hms_dc_calib/scripts/get_wire_tzero.C b/CALIBRATION/hms_dc_calib/scripts/get_wire_tzero.C
new file mode 100644
index 0000000000000000000000000000000000000000..290d96ce11012397fc0672a7e24f2eb9df792786
--- /dev/null
+++ b/CALIBRATION/hms_dc_calib/scripts/get_wire_tzero.C
@@ -0,0 +1,409 @@
+
+
+/*Script to extract reference time "t0"  for each sense wire in a given HMS Wire Chamber Plane with COSMIC RUNS.  
+20% (MAX BIN CONTENT) is calculated per wire, and the corresponding bin is fitted linearly about +/- 
+a certain number of bins and this fit is extrapolated to y=0(x-axis). The extrapolated value is take to be t0*/
+
+#include <vector>
+#include <TMath>
+
+#define NPLANES 12
+
+void get_wire_tzero()
+{
+  using namespace std;
+
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;   
+
+  //check if tzero_weighted_avg text file exists (if it does, DELETE IT, otherwise new values will be appended to it, in addition to pre-existing tzero values)
+  std::ifstream stream(Form("../data_files/run%d/tzero_weighted_avg_run%d.txt",run_NUM, run_NUM));
+ if (stream.good())
+  {
+  gSystem->Exec(Form("rm ../data_files/run%d/tzero_weighted_avg_run%d.txt",run_NUM, run_NUM));
+  }
+
+ TString run = Form("run%d", run_NUM);
+
+ //Declare plane names to loop over
+ TString plane_names[NPLANES]={"1x1", "1y1", "1u1", "1v1", "1y2", "1x2", "2x1", "2y1", "2u1", "2v1", "2y2", "2x2"};
+
+ //Declare a root file array to store individual DC cell drift times
+ TString root_file;
+ TFile *f[NPLANES];
+   
+ int total_wires;  //integer to store total sense wires for a plane chosen by the user
+        
+ //Loop over all planes
+ for (int ip = 0; ip < NPLANES; ip++){
+
+   //READ root file
+   root_file = "../root_files/"+run+"/hms_DC_"+plane_names[ip]+Form("_%d.root",run_NUM);
+   f[ip] = new TFile(root_file, "READ");
+
+   //Create a file output file stream object to write t0 values to data file
+   ofstream ofs;
+   TString t_zero_file = "../data_files/" + run + "/hdc_"+plane_names[ip]+Form("tzero_run%d.dat", run_NUM);
+   ofs.open (t_zero_file);
+
+   //Set headers for subsequent columns of data
+   ofs << "#WIRE " << "   "  << "t0" << "   " << "t0_err" << "   " << " entries " << endl;
+
+   //Create root file to store fitted wire drift times histos and "t0 vs. wirenum"
+   TString output_root_file = "../root_files/"+run+"/hmsDC_"+plane_names[ip]+Form("run%d_fitted_histos.root", run_NUM);
+   TFile *g = new TFile(output_root_file,"RECREATE");
+
+   f[ip]->cd();  //change to file containing the wire drift times histos
+ 
+   int total_wires;  //integer to store total sense wires for a plane chosen by the user
+   
+   //Set variables depending on which plane is being studied
+   if (ip == 0 || ip == 5 || ip == 6 || ip == 11) {  
+     TH1F *cell_dt[113]; //declare array of histos to store drift times     
+     total_wires=113; 
+
+     //Declare bin properties for given sense wires in a plane
+
+     int bin_max[113];                    /*Array to store the bin number corresponding to the drift time distribution peak*/
+     int bin_maxContent[113];             /*Array to store the content (# events) corresponding to the bin with maximum content*/
+     double time_max[113];                /*Array to store the x-axis(drift time (ns)) corresponding to bin_max*/
+     double twenty_perc_maxContent[113];  /*Array to store 20% of maximum bin content (peak)*/						     
+     double ref_time[113];               /*Array to store reference times for each sense wire*/
+
+   }
+
+   else if (ip == 2 || ip == 3 || ip == 8 || ip == 9) {
+     TH1F *cell_dt[107];
+     total_wires=107;      
+   
+     int bin_max[107];                                 
+     int bin_maxContent[107];                           
+     double time_max[107];                               
+     double twenty_perc_maxContent[107];                
+     double ref_time[107];          
+
+   }	   
+ 
+   else if (ip == 1 || ip == 4 || ip == 7 || ip == 10) {
+     TH1F *cell_dt[52];
+     total_wires=52;
+
+     int bin_max[52];                                 
+     int bin_maxContent[52];                           
+     double time_max[52];                               
+     double twenty_perc_maxContent[52];                
+     double ref_time[52];          
+
+   }	 
+    
+ 	
+   /*Get wire histos from root file and loop over each 
+     sense wire of a plane in HMS Drift Chambers (DC1 or DC2)*/
+ 
+   for (int sensewire=1; sensewire<=total_wires; sensewire++){
+
+     //Get title of histos in root file
+     TString drift_time_histo = Form("wire_%d", sensewire); 
+ 
+     //Get drift time histograms from root file
+     cell_dt[sensewire-1] = (TH1F*)f[ip]->Get(drift_time_histo);
+
+     
+     //Get bin with Maximum Content
+     bin_max[sensewire-1] = cell_dt[sensewire-1]->GetMaximumBin();
+
+     //Get content of bin_max
+     bin_maxContent[sensewire-1] = cell_dt[sensewire-1]->GetBinContent(bin_max[sensewire-1]);
+     
+     //Get time (ns) [x-axis] corresponding to bin_max 
+     time_max[sensewire-1] = cell_dt[sensewire-1]->GetXaxis()->GetBinCenter(bin_max[sensewire-1]);
+     
+     //Calculate 20% of max content
+     twenty_perc_maxContent[sensewire-1] = bin_maxContent[sensewire-1] * 0.20;
+     
+
+   }
+   
+   
+   
+   //****************************************************//
+   //Determine  which bin has around 20% max_BinContent *//
+   //****************************************************//
+   
+   
+   //Declarations
+   int content_bin;      //stores content for each bin
+   int counts;           //a counter used to count the number of bins that have >20% max bin content for a plane 
+   int bin;              //store bin number
+   int j;                //jth bin, used to loop over n bins 
+   
+   //Declare vector arrays 
+   vector<int> content;               //stores bin content
+   vector <int> bin_num;           //stores bin number
+   
+   
+   //Loop over each wire 
+   for(sensewire=1; sensewire<=total_wires; sensewire++) {
+     
+     //Loop over each bin for individual wire drift time histo
+     for(bin=0; bin < bin_max[sensewire-1]; bin++) {
+       
+       content_bin = cell_dt[sensewire-1]->GetBinContent(bin);              //get bin content for all bins in a wire
+       
+       content.push_back(content_bin);                                      //add bin content to array
+       bin_num.push_back(bin);                                              //add bin number to array
+       
+       
+       // check if 2 bin contents have been stored and examine if these contents exceed or not 20% of peak
+       if (content.size() == 2) {
+	 
+	 //initialize counter to count how many bin contents >= 20%
+	 counts = 0;
+	 
+	 // Loop over 2 bin contents stored in array content
+	 for (j=0; j<2; j++){
+	   
+	   if(content[j] > =  twenty_perc_maxContent[sensewire-1]){
+	     counts = counts+1;
+             
+	     if(counts >= 2) { goto stop;}
+	     
+	     
+	   }
+	   
+	   content.clear();
+	   bin_num.clear();
+	   
+	 }
+	 
+       }
+     }
+     
+     //Print the time(ns) and BIN NUM corresponding to 20% of MAX content 
+     //if 2/2 elements exceeds 20% of Max content (for each plane)
+     
+   stop:
+     ref_time[sensewire-1] = cell_dt[sensewire-1] ->GetXaxis() -> GetBinCenter(bin_num[0]); //Get time corresponding ~20% Max BIN CONTENT  
+     
+     //cout << " ******* " << "Wire " << sensewire << " ******* " << endl;
+     //cout << "time (20% of Max BIN): " << ref_time[sensewire-1] << " ns" << endl;
+     //cout << "BIN: " << bin_num[0] << endl;
+     
+     
+     //*********************************************************//
+     //*******Extract the "t0" Using a Fitting Procedure********//
+     //*********************************************************//
+     
+     //Declarations
+     int time_init;           //start fit value 
+     int time_final;          //end fit value
+     int t_zero;
+     int entries;             //entries for each wire
+     
+     double m;                //slope
+     double y_int;            //y-intercept
+     double m_err;
+     double y_int_err;
+     double t_zero_err;
+     
+     //Get time corresponding to bin (fit range) 
+     time_init = cell_dt[sensewire-1] -> GetXaxis() -> GetBinCenter(bin_num[0]-5); //choose bin range over which to fit
+     time_final = cell_dt[sensewire-1] -> GetXaxis() -> GetBinCenter(bin_num[0]+5); 
+     
+     //Create Fit Function
+     TF1* tZero_fit = new TF1("tZero_fit", "[0]*x + [1]", time_init, time_final);
+     
+     //Set Parameter Names and Values
+     tZero_fit->SetParName(0, "slope");
+     tZero_fit->SetParName(1, "y-int");
+     tZero_fit->SetParameter(0, 1.0);
+     tZero_fit->SetParameter(1, 1.0);
+     
+     //Fit Function in specified range
+     cell_dt[sensewire-1]->Fit("tZero_fit", "QR");
+     
+     //Get Parameters and their errors
+     m = tZero_fit->GetParameter(0);
+     y_int = tZero_fit->GetParameter(1);
+     m_err = tZero_fit->GetParError(0);
+     y_int_err = tZero_fit->GetParError(1);
+     
+     //Calculate error on t0 using error propagation method of expanding partial derivatives
+     t_zero = - y_int/m;
+     t_zero_err = sqrt(y_int_err*y_int_err/(m*m) + y_int*y_int*m_err*m_err/(m*m*m*m) );
+     entries = cell_dt[sensewire-1]->GetEntries();  //number of entries (triggers) per wire
+     
+     //Write "t0" values to file
+     ofs << sensewire << "          " << t_zero << "          " << t_zero_err << "          " << entries << endl;
+     
+     //Change to output root file and write fitted histos to file
+     g->cd();
+     cell_dt[sensewire-1]->Write();
+     
+   }
+   
+   // Make Plot of t0 versus Wire Number 
+   
+   TCanvas *t = new TCanvas("t", "", 2000,500);
+   t->SetGrid();
+
+   
+   TGraphErrors *graph = new TGraphErrors(t_zero_file, "%lg %lg %lg");
+   graph->SetName("graph");
+   TString title = "DC"+plane_names[ip]+": t0 versus sensewire";
+   graph->SetTitle(title);
+   graph->SetMarkerStyle(20);
+   graph->SetMarkerColor(1);
+   graph->GetXaxis()->SetLimits(0., total_wires);
+   graph->GetXaxis()->SetTitle("Wire Number");
+   graph->GetXaxis()->CenterTitle();
+   graph->GetYaxis()->SetTitle("t-Zero (ns)");
+   graph->GetYaxis()->CenterTitle();
+   graph->GetYaxis()->SetRangeUser(-50.0, 50.0);
+   graph->Draw("AP");
+   t->Update();
+   t->Write(title);   //write to a root file
+   
+   //close dat file
+   ofs.close();
+   //save plots
+   //TString tzero_plots = "plots/"+run_NUM +"/hdc"+plane_names[ip]+Form("TESTING_tzero_v_wire_%d.eps", run);
+   //t->SaveAs(tzero_plots);
+   
+   
+   //*****************************************************************************************//
+   //        CALCULATE THE "t0s" WEIGHTED AVERAGE FOR WIRE DRIFT TIMES WITH ENTRIES > = 300   //
+   //*****************************************************************************************//
+   
+   
+   //open t0 dat file
+   ifstream ifs;
+   ifs.open (t_zero_file);
+   string line;
+   
+   //open new data file to write updated t0 values
+   TString t_zero_file_corr = "../data_files/" + run + "/hdc_"+plane_names[ip]+Form("tzero_run%d_updated.txt", run_NUM);
+   ofs.open(t_zero_file_corr);
+   ofs << " #Wire " << "     " << " t_zero " << "     " << " t_zero_err " << "     " << " entries " << endl; 
+   
+   //Initialize variables related to weighted avg
+   double sum_NUM;  //numerator of weighted avg
+   double sum_DEN;   //denominator of weighted avg
+   double weighted_AVG;
+   double weighted_AVG_err; 
+  
+   //set them to zero to start sum inside while loop 
+   sum_NUM = 0.0;
+   sum_DEN = 0.0;
+   
+   weighted_AVG;
+   weighted_AVG_err; 
+   
+   //read line bt line the t_zero_file
+   while(getline(ifs, line)) {
+     if(!line.length()|| line[0] == '#')
+       continue;
+     //	sensewire = 0, t_zero = 0.0, t_zero_err = 0.0, entries = 0 ; //set values to zero
+     
+     sscanf(line.c_str(), "%d %d %lf %d", &sensewire, &t_zero, &t_zero_err, &entries); //assign each of the variables above a data in the t_zero_file
+     
+     //Check if entries for each sensewire exceeds a certain number of events
+     
+     if (entries>300 && t_zero < 30) {
+	
+       //Calculate the weighted average of t0s
+       sum_NUM = sum_NUM + t_zero/(t_zero_err*t_zero_err);
+       sum_DEN = sum_DEN + 1.0/(t_zero_err*t_zero_err);      
+       
+       //cout << "sum_NUM : " << sum_NUM << endl;  
+       //cout << "sum_DEN : " << sum_DEN << endl;  
+       
+    
+
+
+       ofs << sensewire << "        " << t_zero << "        " << t_zero_err << "        " << entries << endl;
+
+       
+       
+     }
+     
+   }
+   
+   
+   
+   weighted_AVG = sum_NUM / sum_DEN;
+   weighted_AVG_err = sqrt( 1.0 / sum_DEN );
+   
+   
+   
+   //open new data file to write weighted average of updated t_zero values
+   
+   TString t_zero_AVG = Form("../data_files/run%d/tzero_weighted_avg_run%d.txt", run_NUM, run_NUM);
+   
+   ofstream ofile;
+   ofile.open(t_zero_AVG, std::ofstream::out | std::ofstream::app); //open file in and output and append mode
+   
+   ofile << " #weighted_AVG " << "     " << " DC plane: " <<  plane_names[ip] << endl; 
+   ofile << weighted_AVG << endl;
+   
+  
+   
+   
+   
+   ifs.close();
+
+   // Make Plot of t0 versus Wire Number for entries > 300 events
+
+   TCanvas *t1 = new TCanvas("t1", "", 2000,500);
+   t1->SetGrid();
+
+   //TString mygraph = "hdc"+plane_names[ip]+Form("_t_zero_run%d.txt", run);
+   TGraphErrors *graph1 = new TGraphErrors(t_zero_file_corr, "%lg %lg %lg");
+   graph1->SetName("graph1");
+   TString title1 = "hdc"+plane_names[ip]+": t0 versus sensewire_corrected";
+   graph1->SetTitle(title1);
+   graph1->SetMarkerStyle(20);
+   graph1->SetMarkerColor(1);
+   //graph1->GetXaxis()->SetLimits(0., total_wires);
+   graph1->GetXaxis()->SetTitle("Wire Number");
+   graph1->GetXaxis()->CenterTitle();
+   graph1->GetYaxis()->SetTitle("t-Zero (ns)");
+   graph1->GetYaxis()->CenterTitle();
+   graph1->GetYaxis()->SetRangeUser(-50.0, 50.0);
+   graph1->Draw("AP");
+   t1->Update();
+
+   // Draw TLine
+   TLine *wght_avg = new TLine(t1->GetUxmin(), weighted_AVG, t1->GetUxmax(), weighted_AVG);
+   wght_avg->SetLineColor(kRed);
+   wght_avg->SetLineWidth(2);
+   wght_avg->SetLineStyle(2);
+   wght_avg->Draw();
+   
+   //Add text to canvas
+   TLatex* ltx1 =  new TLatex();
+   ltx1->DrawLatex(t1->GetUxmax()*0.75,40, Form("Weighted Average = %lf #pm %lf ns", weighted_AVG, weighted_AVG_err) );
+   
+   t1->Write(title1);   //write canvas to a root file
+   
+   ofs.close();  //close data file
+
+   
+
+
+
+
+
+
+
+
+ }
+ 
+ 
+
+
+
+
+}
diff --git a/CALIBRATION/hms_dc_calib/scripts/update_hdcparam.C b/CALIBRATION/hms_dc_calib/scripts/update_hdcparam.C
new file mode 100644
index 0000000000000000000000000000000000000000..85acf3c94984dc62945d2577486415869ec226eb
--- /dev/null
+++ b/CALIBRATION/hms_dc_calib/scripts/update_hdcparam.C
@@ -0,0 +1,111 @@
+//This scirpt will produce an updated version of hdc.param file, with
+//the necessary t-zero corrections
+#define time_shift 1300.0
+
+void update_hdcparam()
+{
+	  
+  //read run number from input file
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;   
+
+  TString run = Form("run%d", run_NUM);
+
+    int lin_NUM = 0;
+	string t_zero[12];
+	double tzero[12];
+	string line;
+   //open t_zero file
+   ifstream ifs;
+   ifs.open("../data_files/"+ run +"/tzero_weighted_avg_" + run + ".txt");
+   
+
+while (getline(ifs, line))
+  {
+    
+    istringstream ss(line);
+    char id;
+    
+    if ( ss >> t_zero)
+      {
+		
+	if (id != '#') //skip comments   
+	  {
+	    //count lines  
+	    lin_NUM = lin_NUM + 1;
+	    cout << lin_NUM << endl;    
+	       t_zero[lin_NUM-1] = line;
+	       tzero[lin_NUM-1] = atof(t_zero[lin_NUM-1].c_str()); // convert string to double
+	    cout << tzero[lin_NUM-1] << endl;
+	  }       
+	
+      }     
+    
+  }
+ifs.close();
+
+//Update hdc.param parameter file 
+TString hdc_param = "../../../PARAM/HMS/DC/hdc_new.param";
+ofstream ofs(hdc_param);
+
+ofs << ";---------------------------------------------------------------------" << endl;
+ofs <<"; HMS_TRACKING"<< endl;
+ofs <<"; CTP parameter file containing all tracking parameters for the HMS "<< endl;
+ofs <<";----------------------------------------------------------------------"<< endl;
+ofs <<"; sigma of wire chamber resolution for each plane "<< endl;
+ofs <<" hdc_sigma = 0.020 "<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"             0.020"<< endl;
+ofs <<"  hdc_tdc_min_win = -25000,-25000,-25000,-25000,-25000,-25000 "<< endl;
+ofs <<"  		    -25000,-25000,-25000,-25000,-25000,-25000 "<< endl;
+ofs <<"  hdc_tdc_max_win = 25000,25000,25000,25000,25000,25000 "<< endl;
+ofs <<"                    25000,25000,25000,25000,25000,25000 "<< endl;
+ofs <<"; hms drift chamber tdc's time per channel "<< endl;
+ofs <<"        hdc_tdc_time_per_channel = -0.10 "<< endl;
+ofs <<"; hms zero time for drift chambers	!DECREASING this number moves the hdtime plots to LOWER time. "<< endl;
+ofs <<"hdc_plane_time_zero =  ";
+
+
+//*****************************************************************
+//output all t_0 corrected values to hdc.param    
+for (int i=0; i<12; i++) { 
+{
+if (i < = 5){
+ofs  <<  time_shift - tzero[i]   << ","; 
+}
+if (i ==6) {ofs << "\n" << time_shift - tzero[6]  << ",";}
+else if (i>6 && i <11) {
+ofs << time_shift - tzero[i] << ","; 
+}
+if (i==11){ ofs << time_shift - tzero[i] << endl;}
+}
+}
+//*****************************************************************
+ofs << "\n";
+ofs <<"; Dave Abbott's wire velocity correction "<< endl;
+ofs <<"hdc_wire_velocity = 12.0 "<< endl;
+ofs <<"hdc_central_time = 7,9,3,4,6,5 "<< endl;
+ofs << "                   7,5,3,4,6,6" << endl;
+ofs.close();
+
+//create a t_zero data file copy in another directory that will also use these values
+TString tzero_dat = "../data_files/" + run + "/tzero.dat";
+ofstream ofs(tzero_dat);
+
+for (int i=0; i<12; i++) 
+{
+ofs  <<  tzero[i]  << endl; 
+}
+ 
+}
diff --git a/CALIBRATION/hms_dc_calib/scripts/wire_drift_times.C b/CALIBRATION/hms_dc_calib/scripts/wire_drift_times.C
new file mode 100644
index 0000000000000000000000000000000000000000..11c86b9c7f23e1a5831e1e51376de7a22d258718
--- /dev/null
+++ b/CALIBRATION/hms_dc_calib/scripts/wire_drift_times.C
@@ -0,0 +1,305 @@
+#define wire_drift_times_cxx
+#include "wire_drift_times.h"
+#include <TH2.h>
+#include <TStyle.h>
+#include <TCanvas.h>
+#define NPLANES 12
+
+void wire_drift_times::Loop()
+{
+//   In a ROOT session, you can do:
+//      Root > .L wire_drift_times.C
+//      Root > wire_drift_times t
+//      Root > t.GetEntry(12); // Fill t data members with entry number 12
+//      Root > t.Show();       // Show values of entry 12
+//      Root > t.Show(16);     // Read and show values of entry 16
+//      Root > t.Loop();       // Loop on all entries
+//
+
+//     This is the loop skeleton where:
+//    jentry is the global entry number in the chain
+//    ientry is the entry number in the current Tree
+//  Note that the argument to GetEntry must be:
+//    jentry for TChain::GetEntry
+//    ientry for TTree::GetEntry and TBranch::GetEntry
+//
+//       To read only selected branches, Insert statements like:
+// METHOD1:
+//    fChain->SetBranchStatus("*",0);  // disable all branches
+//    fChain->SetBranchStatus("branchname",1);  // activate branchname
+// METHOD2: replace line
+//    fChain->GetEntry(jentry);       //read all branches
+//by  b_branchname->GetEntry(ientry); //read only this branch
+   if (fChain == 0) return;
+
+   Long64_t nentries = fChain->GetEntriesFast();
+
+//Read Run Number from txt file
+int run_NUM;
+TString f0 = "input_RUN.txt";
+ifstream infile(f0);
+infile >> run_NUM;
+
+ TString run = Form("run%d", run_NUM);
+//Declare plane names to loop over
+TString plane_names[NPLANES]={"1x1", "1y1", "1u1", "1v1", "1y2", "1x2", "2x1", "2y1", "2u1", "2v1", "2y2", "2x2"};
+
+//Declare a root file array to store individual DC cell drift times
+TString root_file[NPLANES];
+TFile *g[NPLANES];
+   
+int total_wires;  //integer to store total sense wires for a plane chosen by the user
+     
+   Long64_t nbytes = 0, nb = 0;
+   
+//Loop over all planes
+for (int ip = 0; ip < NPLANES; ip++){
+
+//Initialize a root file array to store individual DC cell drift times
+root_file[ip] = "../root_files/" + run + "/hms_DC_"+plane_names[ip]+Form("_%d.root", run_NUM);
+g[ip] = new TFile(root_file[ip], "RECREATE");
+g[ip]->cd();
+
+/*========================PLANES 1X1,1X2,2X1,2X2=====================================*/
+	
+	//If specific planes are encountered, treat them as follows:
+	
+	if(ip==0 || ip==5 || ip==6 || ip==11) {
+
+	total_wires = 113;
+	TH1F *cell_dt[113];    
+    TH2F *wire_vs_dt = new TH2F("wire_vs_dt", "", 200., -50., 350., 113., 0.,113.);
+    
+    //Initialize wire drift time histograms
+    for (int wirenum=1; wirenum<=total_wires; wirenum++){
+	cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", 200., -50., 350.);
+     }
+	
+       //Loop over all entries (triggers or events)   
+    for (Long64_t jentry=0; jentry<nentries; jentry++) {
+      Long64_t ientry = LoadTree(jentry);
+      if (ientry < 0) break;
+      nb = fChain->GetEntry(jentry);   nbytes += nb;
+      // if (Cut(ientry) < 0) continue;
+ 
+ if (ip==0) {
+    for (int i=0; i< Ndata_H_dc_1x1_wirenum; i++){
+       wirenum = int(H_dc_1x1_wirenum[i]);
+      //cout << " wire num: " << H_dc_1x1_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_1x1_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_1x1_time[i]);
+     wire_vs_dt->Fill(H_dc_1x1_time[i], H_dc_1x1_wirenum[i]);
+
+				}
+			}
+							
+	 if (ip==5) {
+    for (int i=0; i< Ndata_H_dc_1x2_wirenum; i++){
+       wirenum = int(H_dc_1x2_wirenum[i]);
+      //cout << " wire num: " << H_dc_1x2_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_1x2_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_1x2_time[i]);
+     wire_vs_dt->Fill(H_dc_1x2_time[i], H_dc_1x2_wirenum[i]);
+
+				}
+			}						
+			
+		 if (ip==6) {
+    for (int i=0; i< Ndata_H_dc_2x1_wirenum; i++){
+       wirenum = int(H_dc_2x1_wirenum[i]);
+      //cout << " wire num: " << H_dc_2x1_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_2x1_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_2x1_time[i]);
+     wire_vs_dt->Fill(H_dc_2x1_time[i], H_dc_2x1_wirenum[i]);
+
+				}
+			}		
+			
+		if (ip==11) {
+    for (int i=0; i< Ndata_H_dc_2x2_wirenum; i++){
+       wirenum = int(H_dc_2x2_wirenum[i]);
+      //cout << " wire num: " << H_dc_2x2_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_2x2_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_2x2_time[i]);
+     wire_vs_dt->Fill(H_dc_2x2_time[i], H_dc_2x2_wirenum[i]);
+
+				}
+			}						
+					
+					
+					
+					}
+					}
+					
+	/*PLANE 1U1, 1V1, 2U1, 2V1*/				
+	//If specific planes are encountered, treat them as follows:
+	if(ip==2 || ip==3 || ip==8 || ip==9) {
+
+	total_wires = 107;
+	TH1F *cell_dt[107];    
+    TH2F *wire_vs_dt = new TH2F("wire_vs_dt", "", 200., -50., 350., 107., 0.,107.);
+    
+    //Initialize wire drift time histograms
+    for (int wirenum=1; wirenum<=total_wires; wirenum++){
+	cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", 200., -50., 350.);
+     }
+	
+       //Loop over all entries (triggers or events)   
+    for (Long64_t jentry=0; jentry<nentries; jentry++) {
+      Long64_t ientry = LoadTree(jentry);
+      if (ientry < 0) break;
+      nb = fChain->GetEntry(jentry);   nbytes += nb;
+      // if (Cut(ientry) < 0) continue;
+ 
+ if (ip==2) {
+    for (int i=0; i< Ndata_H_dc_1u1_wirenum; i++){
+       wirenum = int(H_dc_1u1_wirenum[i]);
+      //cout << " wire num: " << H_dc_1u1_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_1u1_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_1u1_time[i]);
+     wire_vs_dt->Fill(H_dc_1u1_time[i], H_dc_1u1_wirenum[i]);
+
+				}
+			}
+							
+	 if (ip==3) {
+    for (int i=0; i< Ndata_H_dc_1v1_wirenum; i++){
+       wirenum = int(H_dc_1v1_wirenum[i]);
+      //cout << " wire num: " << H_dc_1v1_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_1v1_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_1v1_time[i]);
+     wire_vs_dt->Fill(H_dc_1v1_time[i], H_dc_1v1_wirenum[i]);
+
+				}
+			}						
+			
+		 if (ip==8) {
+    for (int i=0; i< Ndata_H_dc_2u1_wirenum; i++){
+       wirenum = int(H_dc_2u1_wirenum[i]);
+      //cout << " wire num: " << H_dc_2u1_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_2u1_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_2u1_time[i]);
+     wire_vs_dt->Fill(H_dc_2u1_time[i], H_dc_2u1_wirenum[i]);
+
+				}
+			}		
+			
+		if (ip==9) {
+    for (int i=0; i< Ndata_H_dc_2v1_wirenum; i++){
+       wirenum = int(H_dc_2v1_wirenum[i]);
+      //cout << " wire num: " << H_dc_2v1_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_2v1_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_2v1_time[i]);
+     wire_vs_dt->Fill(H_dc_2v1_time[i], H_dc_2v1_wirenum[i]);
+
+				}
+			}						
+					
+					
+					
+					}
+					}
+
+	/*PLANE 1Y1, 1Y2, 2Y1, 2Y2*/				
+	//If specific planes are encountered, treat them as follows:
+	if(ip==1 || ip==4 || ip==7 || ip==10) {
+
+	total_wires = 52;
+	TH1F *cell_dt[52];    
+    TH2F *wire_vs_dt = new TH2F("wire_vs_dt", "", 200., -50., 350., 52., 0.,52.);
+    
+    //Initialize wire drift time histograms
+    for (int wirenum=1; wirenum<=total_wires; wirenum++){
+	cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", 200., -50., 350.);
+     }
+	
+       //Loop over all entries (triggers or events)   
+    for (Long64_t jentry=0; jentry<nentries; jentry++) {
+      Long64_t ientry = LoadTree(jentry);
+      if (ientry < 0) break;
+      nb = fChain->GetEntry(jentry);   nbytes += nb;
+      // if (Cut(ientry) < 0) continue;
+ 
+ if (ip==1) {
+    for (int i=0; i< Ndata_H_dc_1y1_wirenum; i++){
+       wirenum = int(H_dc_1y1_wirenum[i]);
+      //cout << " wire num: " << H_dc_1y1_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_1y1_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_1y1_time[i]);
+     wire_vs_dt->Fill(H_dc_1y1_time[i], H_dc_1y1_wirenum[i]);
+
+				}
+			}
+							
+	 if (ip==4) {
+    for (int i=0; i< Ndata_H_dc_1y2_wirenum; i++){
+       wirenum = int(H_dc_1y2_wirenum[i]);
+      //cout << " wire num: " << H_dc_1y2_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_1y2_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_1y2_time[i]);
+     wire_vs_dt->Fill(H_dc_1y2_time[i], H_dc_1y2_wirenum[i]);
+
+				}
+			}						
+			
+		 if (ip==7) {
+    for (int i=0; i< Ndata_H_dc_2y1_wirenum; i++){
+       wirenum = int(H_dc_2y1_wirenum[i]);
+      //cout << " wire num: " << H_dc_2y1_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_2y1_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_2y1_time[i]);
+     wire_vs_dt->Fill(H_dc_2y1_time[i], H_dc_2y1_wirenum[i]);
+
+				}
+			}		
+			
+		if (ip==10) {
+    for (int i=0; i< Ndata_H_dc_2y2_wirenum; i++){
+       wirenum = int(H_dc_2y2_wirenum[i]);
+      //cout << " wire num: " << H_dc_2y2_wirenum[i] << endl;
+	  //cout << "Time: " << H_dc_2y2_time[i] << endl;
+
+      //Fill the Histograms
+     cell_dt[wirenum-1]->Fill(H_dc_2y2_time[i]);
+     wire_vs_dt->Fill(H_dc_2y2_time[i], H_dc_2y2_wirenum[i]);
+
+				}
+			}						
+					
+					
+					
+					}
+					}
+
+//Write wire drift time histos to file
+g[ip]->Write();
+	cout << "EVERYTHING OK in plane:" << ip << endl;	
+
+}
+
+
+     //     cout << "\r          \r" << (float)sensewire / total_wires * 100.0 << "%" << flush; 
+
+}
diff --git a/CALIBRATION/hms_dc_calib/scripts/wire_drift_times.h b/CALIBRATION/hms_dc_calib/scripts/wire_drift_times.h
new file mode 100644
index 0000000000000000000000000000000000000000..e0bafccdedf4a84ac57140b86ef5906261106bd6
--- /dev/null
+++ b/CALIBRATION/hms_dc_calib/scripts/wire_drift_times.h
@@ -0,0 +1,550 @@
+//////////////////////////////////////////////////////////
+// This class has been automatically generated on
+// Sun Dec 18 12:03:19 2016 by ROOT version 5.34/18
+// from TTree T/Hall A Analyzer Output DST
+// found on file: test_259.root
+//////////////////////////////////////////////////////////
+
+#ifndef wire_drift_times_h
+#define wire_drift_times_h
+
+#include <TROOT.h>
+#include <TChain.h>
+#include <TFile.h>
+
+// Header file for the classes stored in the TTree if any.
+
+// Fixed size dimensions of array or collections stored in the TTree if any.
+
+class wire_drift_times {
+public :
+   TTree          *fChain;   //!pointer to the analyzed TTree or TChain
+   Int_t           fCurrent; //!current Tree number in a TChain
+
+   // Declaration of leaf types
+   Int_t           Ndata_H_dc_1u1_dist;
+   Double_t        H_dc_1u1_dist[107];   //[Ndata.H.dc.1u1.dist]
+   Int_t           Ndata_H_dc_1u1_rawtdc;
+   Double_t        H_dc_1u1_rawtdc[107];   //[Ndata.H.dc.1u1.rawtdc]
+   Int_t           Ndata_H_dc_1u1_time;
+   Double_t        H_dc_1u1_time[107];   //[Ndata.H.dc.1u1.time]
+   Int_t           Ndata_H_dc_1u1_wirenum;
+   Double_t        H_dc_1u1_wirenum[107];   //[Ndata.H.dc.1u1.wirenum]
+   Int_t           Ndata_H_dc_1v1_dist;
+   Double_t        H_dc_1v1_dist[107];   //[Ndata.H.dc.1v1.dist]
+   Int_t           Ndata_H_dc_1v1_rawtdc;
+   Double_t        H_dc_1v1_rawtdc[107];   //[Ndata.H.dc.1v1.rawtdc]
+   Int_t           Ndata_H_dc_1v1_time;
+   Double_t        H_dc_1v1_time[107];   //[Ndata.H.dc.1v1.time]
+   Int_t           Ndata_H_dc_1v1_wirenum;
+   Double_t        H_dc_1v1_wirenum[107];   //[Ndata.H.dc.1v1.wirenum]
+   Int_t           Ndata_H_dc_1x1_dist;
+   Double_t        H_dc_1x1_dist[113];   //[Ndata.H.dc.1x1.dist]
+   Int_t           Ndata_H_dc_1x1_rawtdc;
+   Double_t        H_dc_1x1_rawtdc[113];   //[Ndata.H.dc.1x1.rawtdc]
+   Int_t           Ndata_H_dc_1x1_time;
+   Double_t        H_dc_1x1_time[113];   //[Ndata.H.dc.1x1.time]
+   Int_t           Ndata_H_dc_1x1_wirenum;
+   Double_t        H_dc_1x1_wirenum[113];   //[Ndata.H.dc.1x1.wirenum]
+   Int_t           Ndata_H_dc_1x2_dist;
+   Double_t        H_dc_1x2_dist[113];   //[Ndata.H.dc.1x2.dist]
+   Int_t           Ndata_H_dc_1x2_rawtdc;
+   Double_t        H_dc_1x2_rawtdc[113];   //[Ndata.H.dc.1x2.rawtdc]
+   Int_t           Ndata_H_dc_1x2_time;
+   Double_t        H_dc_1x2_time[113];   //[Ndata.H.dc.1x2.time]
+   Int_t           Ndata_H_dc_1x2_wirenum;
+   Double_t        H_dc_1x2_wirenum[113];   //[Ndata.H.dc.1x2.wirenum]
+   Int_t           Ndata_H_dc_1y1_dist;
+   Double_t        H_dc_1y1_dist[52];   //[Ndata.H.dc.1y1.dist]
+   Int_t           Ndata_H_dc_1y1_rawtdc;
+   Double_t        H_dc_1y1_rawtdc[52];   //[Ndata.H.dc.1y1.rawtdc]
+   Int_t           Ndata_H_dc_1y1_time;
+   Double_t        H_dc_1y1_time[52];   //[Ndata.H.dc.1y1.time]
+   Int_t           Ndata_H_dc_1y1_wirenum;
+   Double_t        H_dc_1y1_wirenum[52];   //[Ndata.H.dc.1y1.wirenum]
+   Int_t           Ndata_H_dc_1y2_dist;
+   Double_t        H_dc_1y2_dist[52];   //[Ndata.H.dc.1y2.dist]
+   Int_t           Ndata_H_dc_1y2_rawtdc;
+   Double_t        H_dc_1y2_rawtdc[52];   //[Ndata.H.dc.1y2.rawtdc]
+   Int_t           Ndata_H_dc_1y2_time;
+   Double_t        H_dc_1y2_time[52];   //[Ndata.H.dc.1y2.time]
+   Int_t           Ndata_H_dc_1y2_wirenum;
+   Double_t        H_dc_1y2_wirenum[52];   //[Ndata.H.dc.1y2.wirenum]
+   Int_t           Ndata_H_dc_2u1_dist;
+   Double_t        H_dc_2u1_dist[107];   //[Ndata.H.dc.2u1.dist]
+   Int_t           Ndata_H_dc_2u1_rawtdc;
+   Double_t        H_dc_2u1_rawtdc[107];   //[Ndata.H.dc.2u1.rawtdc]
+   Int_t           Ndata_H_dc_2u1_time;
+   Double_t        H_dc_2u1_time[107];   //[Ndata.H.dc.2u1.time]
+   Int_t           Ndata_H_dc_2u1_wirenum;
+   Double_t        H_dc_2u1_wirenum[107];   //[Ndata.H.dc.2u1.wirenum]
+   Int_t           Ndata_H_dc_2v1_dist;
+   Double_t        H_dc_2v1_dist[107];   //[Ndata.H.dc.2v1.dist]
+   Int_t           Ndata_H_dc_2v1_rawtdc;
+   Double_t        H_dc_2v1_rawtdc[107];   //[Ndata.H.dc.2v1.rawtdc]
+   Int_t           Ndata_H_dc_2v1_time;
+   Double_t        H_dc_2v1_time[107];   //[Ndata.H.dc.2v1.time]
+   Int_t           Ndata_H_dc_2v1_wirenum;
+   Double_t        H_dc_2v1_wirenum[107];   //[Ndata.H.dc.2v1.wirenum]
+   Int_t           Ndata_H_dc_2x1_dist;
+   Double_t        H_dc_2x1_dist[113];   //[Ndata.H.dc.2x1.dist]
+   Int_t           Ndata_H_dc_2x1_rawtdc;
+   Double_t        H_dc_2x1_rawtdc[113];   //[Ndata.H.dc.2x1.rawtdc]
+   Int_t           Ndata_H_dc_2x1_time;
+   Double_t        H_dc_2x1_time[113];   //[Ndata.H.dc.2x1.time]
+   Int_t           Ndata_H_dc_2x1_wirenum;
+   Double_t        H_dc_2x1_wirenum[113];   //[Ndata.H.dc.2x1.wirenum]
+   Int_t           Ndata_H_dc_2x2_dist;
+   Double_t        H_dc_2x2_dist[113];   //[Ndata.H.dc.2x2.dist]
+   Int_t           Ndata_H_dc_2x2_rawtdc;
+   Double_t        H_dc_2x2_rawtdc[113];   //[Ndata.H.dc.2x2.rawtdc]
+   Int_t           Ndata_H_dc_2x2_time;
+   Double_t        H_dc_2x2_time[113];   //[Ndata.H.dc.2x2.time]
+   Int_t           Ndata_H_dc_2x2_wirenum;
+   Double_t        H_dc_2x2_wirenum[113];   //[Ndata.H.dc.2x2.wirenum]
+   Int_t           Ndata_H_dc_2y1_dist;
+   Double_t        H_dc_2y1_dist[52];   //[Ndata.H.dc.2y1.dist]
+   Int_t           Ndata_H_dc_2y1_rawtdc;
+   Double_t        H_dc_2y1_rawtdc[52];   //[Ndata.H.dc.2y1.rawtdc]
+   Int_t           Ndata_H_dc_2y1_time;
+   Double_t        H_dc_2y1_time[52];   //[Ndata.H.dc.2y1.time]
+   Int_t           Ndata_H_dc_2y1_wirenum;
+   Double_t        H_dc_2y1_wirenum[52];   //[Ndata.H.dc.2y1.wirenum]
+   Int_t           Ndata_H_dc_2y2_dist;
+   Double_t        H_dc_2y2_dist[52];   //[Ndata.H.dc.2y2.dist]
+   Int_t           Ndata_H_dc_2y2_rawtdc;
+   Double_t        H_dc_2y2_rawtdc[52];   //[Ndata.H.dc.2y2.rawtdc]
+   Int_t           Ndata_H_dc_2y2_time;
+   Double_t        H_dc_2y2_time[52];   //[Ndata.H.dc.2y2.time]
+   Int_t           Ndata_H_dc_2y2_wirenum;
+   Double_t        H_dc_2y2_wirenum[52];   //[Ndata.H.dc.2y2.wirenum]
+   Int_t           Ndata_H_dc_residual;
+   Double_t        H_dc_residual[12];   //[Ndata.H.dc.residual]
+   Int_t           Ndata_H_dc_x;
+   Double_t        H_dc_x[8];   //[Ndata.H.dc.x]
+   Int_t           Ndata_H_dc_xp;
+   Double_t        H_dc_xp[8];   //[Ndata.H.dc.xp]
+   Int_t           Ndata_H_dc_y;
+   Double_t        H_dc_y[8];   //[Ndata.H.dc.y]
+   Int_t           Ndata_H_dc_yp;
+   Double_t        H_dc_yp[8];   //[Ndata.H.dc.yp]
+   Double_t        H_dc_1u1_nhit;
+   Double_t        H_dc_1v1_nhit;
+   Double_t        H_dc_1x1_nhit;
+   Double_t        H_dc_1x2_nhit;
+   Double_t        H_dc_1y1_nhit;
+   Double_t        H_dc_1y2_nhit;
+   Double_t        H_dc_2u1_nhit;
+   Double_t        H_dc_2v1_nhit;
+   Double_t        H_dc_2x1_nhit;
+   Double_t        H_dc_2x2_nhit;
+   Double_t        H_dc_2y1_nhit;
+   Double_t        H_dc_2y2_nhit;
+   Double_t        H_dc_Ch1_maxhits;
+   Double_t        H_dc_Ch1_nhit;
+   Double_t        H_dc_Ch1_spacepoints;
+   Double_t        H_dc_Ch1_trawhit;
+   Double_t        H_dc_Ch2_maxhits;
+   Double_t        H_dc_Ch2_nhit;
+   Double_t        H_dc_Ch2_spacepoints;
+   Double_t        H_dc_Ch2_trawhit;
+   Double_t        H_dc_nhit;
+   Double_t        H_dc_nsp;
+   Double_t        H_dc_ntrack;
+   Double_t        H_dc_stubtest;
+   Double_t        H_dc_tnhit;
+   Double_t        H_dc_trawhit;
+ 
+ //THaEvent        *Event_Branch;
+   ULong64_t       fEvtHdr_fEvtTime;
+   UInt_t          fEvtHdr_fEvtNum;
+   Int_t           fEvtHdr_fEvtType;
+   Int_t           fEvtHdr_fEvtLen;
+   Int_t           fEvtHdr_fHelicity;
+   Int_t           fEvtHdr_fTargetPol;
+   Int_t           fEvtHdr_fRun;
+
+   // List of branches
+   TBranch        *b_Ndata_H_dc_1u1_dist;   //!
+   TBranch        *b_H_dc_1u1_dist;   //!
+   TBranch        *b_Ndata_H_dc_1u1_rawtdc;   //!
+   TBranch        *b_H_dc_1u1_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_1u1_time;   //!
+   TBranch        *b_H_dc_1u1_time;   //!
+   TBranch        *b_Ndata_H_dc_1u1_wirenum;   //!
+   TBranch        *b_H_dc_1u1_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_1v1_dist;   //!
+   TBranch        *b_H_dc_1v1_dist;   //!
+   TBranch        *b_Ndata_H_dc_1v1_rawtdc;   //!
+   TBranch        *b_H_dc_1v1_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_1v1_time;   //!
+   TBranch        *b_H_dc_1v1_time;   //!
+   TBranch        *b_Ndata_H_dc_1v1_wirenum;   //!
+   TBranch        *b_H_dc_1v1_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_1x1_dist;   //!
+   TBranch        *b_H_dc_1x1_dist;   //!
+   TBranch        *b_Ndata_H_dc_1x1_rawtdc;   //!
+   TBranch        *b_H_dc_1x1_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_1x1_time;   //!
+   TBranch        *b_H_dc_1x1_time;   //!
+   TBranch        *b_Ndata_H_dc_1x1_wirenum;   //!
+   TBranch        *b_H_dc_1x1_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_1x2_dist;   //!
+   TBranch        *b_H_dc_1x2_dist;   //!
+   TBranch        *b_Ndata_H_dc_1x2_rawtdc;   //!
+   TBranch        *b_H_dc_1x2_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_1x2_time;   //!
+   TBranch        *b_H_dc_1x2_time;   //!
+   TBranch        *b_Ndata_H_dc_1x2_wirenum;   //!
+   TBranch        *b_H_dc_1x2_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_1y1_dist;   //!
+   TBranch        *b_H_dc_1y1_dist;   //!
+   TBranch        *b_Ndata_H_dc_1y1_rawtdc;   //!
+   TBranch        *b_H_dc_1y1_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_1y1_time;   //!
+   TBranch        *b_H_dc_1y1_time;   //!
+   TBranch        *b_Ndata_H_dc_1y1_wirenum;   //!
+   TBranch        *b_H_dc_1y1_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_1y2_dist;   //!
+   TBranch        *b_H_dc_1y2_dist;   //!
+   TBranch        *b_Ndata_H_dc_1y2_rawtdc;   //!
+   TBranch        *b_H_dc_1y2_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_1y2_time;   //!
+   TBranch        *b_H_dc_1y2_time;   //!
+   TBranch        *b_Ndata_H_dc_1y2_wirenum;   //!
+   TBranch        *b_H_dc_1y2_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_2u1_dist;   //!
+   TBranch        *b_H_dc_2u1_dist;   //!
+   TBranch        *b_Ndata_H_dc_2u1_rawtdc;   //!
+   TBranch        *b_H_dc_2u1_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_2u1_time;   //!
+   TBranch        *b_H_dc_2u1_time;   //!
+   TBranch        *b_Ndata_H_dc_2u1_wirenum;   //!
+   TBranch        *b_H_dc_2u1_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_2v1_dist;   //!
+   TBranch        *b_H_dc_2v1_dist;   //!
+   TBranch        *b_Ndata_H_dc_2v1_rawtdc;   //!
+   TBranch        *b_H_dc_2v1_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_2v1_time;   //!
+   TBranch        *b_H_dc_2v1_time;   //!
+   TBranch        *b_Ndata_H_dc_2v1_wirenum;   //!
+   TBranch        *b_H_dc_2v1_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_2x1_dist;   //!
+   TBranch        *b_H_dc_2x1_dist;   //!
+   TBranch        *b_Ndata_H_dc_2x1_rawtdc;   //!
+   TBranch        *b_H_dc_2x1_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_2x1_time;   //!
+   TBranch        *b_H_dc_2x1_time;   //!
+   TBranch        *b_Ndata_H_dc_2x1_wirenum;   //!
+   TBranch        *b_H_dc_2x1_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_2x2_dist;   //!
+   TBranch        *b_H_dc_2x2_dist;   //!
+   TBranch        *b_Ndata_H_dc_2x2_rawtdc;   //!
+   TBranch        *b_H_dc_2x2_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_2x2_time;   //!
+   TBranch        *b_H_dc_2x2_time;   //!
+   TBranch        *b_Ndata_H_dc_2x2_wirenum;   //!
+   TBranch        *b_H_dc_2x2_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_2y1_dist;   //!
+   TBranch        *b_H_dc_2y1_dist;   //!
+   TBranch        *b_Ndata_H_dc_2y1_rawtdc;   //!
+   TBranch        *b_H_dc_2y1_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_2y1_time;   //!
+   TBranch        *b_H_dc_2y1_time;   //!
+   TBranch        *b_Ndata_H_dc_2y1_wirenum;   //!
+   TBranch        *b_H_dc_2y1_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_2y2_dist;   //!
+   TBranch        *b_H_dc_2y2_dist;   //!
+   TBranch        *b_Ndata_H_dc_2y2_rawtdc;   //!
+   TBranch        *b_H_dc_2y2_rawtdc;   //!
+   TBranch        *b_Ndata_H_dc_2y2_time;   //!
+   TBranch        *b_H_dc_2y2_time;   //!
+   TBranch        *b_Ndata_H_dc_2y2_wirenum;   //!
+   TBranch        *b_H_dc_2y2_wirenum;   //!
+   TBranch        *b_Ndata_H_dc_residual;   //!
+   TBranch        *b_H_dc_residual;   //!
+   TBranch        *b_Ndata_H_dc_x;   //!
+   TBranch        *b_H_dc_x;   //!
+   TBranch        *b_Ndata_H_dc_xp;   //!
+   TBranch        *b_H_dc_xp;   //!
+   TBranch        *b_Ndata_H_dc_y;   //!
+   TBranch        *b_H_dc_y;   //!
+   TBranch        *b_Ndata_H_dc_yp;   //!
+   TBranch        *b_H_dc_yp;   //!
+   TBranch        *b_H_dc_1u1_nhit;   //!
+   TBranch        *b_H_dc_1v1_nhit;   //!
+   TBranch        *b_H_dc_1x1_nhit;   //!
+   TBranch        *b_H_dc_1x2_nhit;   //!
+   TBranch        *b_H_dc_1y1_nhit;   //!
+   TBranch        *b_H_dc_1y2_nhit;   //!
+   TBranch        *b_H_dc_2u1_nhit;   //!
+   TBranch        *b_H_dc_2v1_nhit;   //!
+   TBranch        *b_H_dc_2x1_nhit;   //!
+   TBranch        *b_H_dc_2x2_nhit;   //!
+   TBranch        *b_H_dc_2y1_nhit;   //!
+   TBranch        *b_H_dc_2y2_nhit;   //!
+   TBranch        *b_H_dc_Ch1_maxhits;   //!
+   TBranch        *b_H_dc_Ch1_nhit;   //!
+   TBranch        *b_H_dc_Ch1_spacepoints;   //!
+   TBranch        *b_H_dc_Ch1_trawhit;   //!
+   TBranch        *b_H_dc_Ch2_maxhits;   //!
+   TBranch        *b_H_dc_Ch2_nhit;   //!
+   TBranch        *b_H_dc_Ch2_spacepoints;   //!
+   TBranch        *b_H_dc_Ch2_trawhit;   //!
+   TBranch        *b_H_dc_nhit;   //!
+   TBranch        *b_H_dc_nsp;   //!
+   TBranch        *b_H_dc_ntrack;   //!
+   TBranch        *b_H_dc_stubtest;   //!
+   TBranch        *b_H_dc_tnhit;   //!
+   TBranch        *b_H_dc_trawhit;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fEvtTime;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fEvtNum;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fEvtType;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fEvtLen;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fHelicity;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fTargetPol;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fRun;   //!
+
+   wire_drift_times(TTree *tree=0);
+   virtual ~wire_drift_times();
+   virtual Int_t    Cut(Long64_t entry);
+   virtual Int_t    GetEntry(Long64_t entry);
+   virtual Long64_t LoadTree(Long64_t entry);
+   virtual void     Init(TTree *tree);
+   virtual void     Loop();
+   virtual Bool_t   Notify();
+   virtual void     Show(Long64_t entry = -1);
+};
+
+#endif
+
+#ifdef wire_drift_times_cxx
+wire_drift_times::wire_drift_times(TTree *tree) : fChain(0)
+{
+// if parameter tree is not specified (or zero), connect the file
+// used to generate this class and read the Tree.
+   if (tree == 0) {
+     int run_NUM;
+     TString f0 = "input_RUN.txt";
+     ifstream infile(f0);
+     infile >> run_NUM;         
+     
+     TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject(Form("../../../ROOTfiles/test_%d.root", run_NUM));
+     if (!f || !f->IsOpen()) {
+       f = new TFile(Form("../../../ROOTfiles/test_%d.root", run_NUM));
+     }
+     f->GetObject("T",tree);
+
+   }
+   Init(tree);
+}
+
+wire_drift_times::~wire_drift_times()
+{
+   if (!fChain) return;
+   delete fChain->GetCurrentFile();
+}
+
+Int_t wire_drift_times::GetEntry(Long64_t entry)
+{
+// Read contents of entry.
+   if (!fChain) return 0;
+   return fChain->GetEntry(entry);
+}
+Long64_t wire_drift_times::LoadTree(Long64_t entry)
+{
+// Set the environment to read one entry
+   if (!fChain) return -5;
+   Long64_t centry = fChain->LoadTree(entry);
+   if (centry < 0) return centry;
+   if (fChain->GetTreeNumber() != fCurrent) {
+      fCurrent = fChain->GetTreeNumber();
+      Notify();
+   }
+   return centry;
+}
+
+void wire_drift_times::Init(TTree *tree)
+{
+   // The Init() function is called when the selector needs to initialize
+   // a new tree or chain. Typically here the branch addresses and branch
+   // pointers of the tree will be set.
+   // It is normally not necessary to make changes to the generated
+   // code, but the routine can be extended by the user if needed.
+   // Init() will be called many times when running on PROOF
+   // (once per file to be processed).
+
+   // Set branch addresses and branch pointers
+   if (!tree) return;
+   fChain = tree;
+   fCurrent = -1;
+   fChain->SetMakeClass(1);
+
+   fChain->SetBranchAddress("Ndata.H.dc.1u1.dist", &Ndata_H_dc_1u1_dist, &b_Ndata_H_dc_1u1_dist);
+   fChain->SetBranchAddress("H.dc.1u1.dist", H_dc_1u1_dist, &b_H_dc_1u1_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.1u1.rawtdc", &Ndata_H_dc_1u1_rawtdc, &b_Ndata_H_dc_1u1_rawtdc);
+   fChain->SetBranchAddress("H.dc.1u1.rawtdc", H_dc_1u1_rawtdc, &b_H_dc_1u1_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.1u1.time", &Ndata_H_dc_1u1_time, &b_Ndata_H_dc_1u1_time);
+   fChain->SetBranchAddress("H.dc.1u1.time", H_dc_1u1_time, &b_H_dc_1u1_time);
+   fChain->SetBranchAddress("Ndata.H.dc.1u1.wirenum", &Ndata_H_dc_1u1_wirenum, &b_Ndata_H_dc_1u1_wirenum);
+   fChain->SetBranchAddress("H.dc.1u1.wirenum", H_dc_1u1_wirenum, &b_H_dc_1u1_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.1v1.dist", &Ndata_H_dc_1v1_dist, &b_Ndata_H_dc_1v1_dist);
+   fChain->SetBranchAddress("H.dc.1v1.dist", H_dc_1v1_dist, &b_H_dc_1v1_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.1v1.rawtdc", &Ndata_H_dc_1v1_rawtdc, &b_Ndata_H_dc_1v1_rawtdc);
+   fChain->SetBranchAddress("H.dc.1v1.rawtdc", H_dc_1v1_rawtdc, &b_H_dc_1v1_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.1v1.time", &Ndata_H_dc_1v1_time, &b_Ndata_H_dc_1v1_time);
+   fChain->SetBranchAddress("H.dc.1v1.time", H_dc_1v1_time, &b_H_dc_1v1_time);
+   fChain->SetBranchAddress("Ndata.H.dc.1v1.wirenum", &Ndata_H_dc_1v1_wirenum, &b_Ndata_H_dc_1v1_wirenum);
+   fChain->SetBranchAddress("H.dc.1v1.wirenum", H_dc_1v1_wirenum, &b_H_dc_1v1_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.1x1.dist", &Ndata_H_dc_1x1_dist, &b_Ndata_H_dc_1x1_dist);
+   fChain->SetBranchAddress("H.dc.1x1.dist", H_dc_1x1_dist, &b_H_dc_1x1_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.1x1.rawtdc", &Ndata_H_dc_1x1_rawtdc, &b_Ndata_H_dc_1x1_rawtdc);
+   fChain->SetBranchAddress("H.dc.1x1.rawtdc", H_dc_1x1_rawtdc, &b_H_dc_1x1_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.1x1.time", &Ndata_H_dc_1x1_time, &b_Ndata_H_dc_1x1_time);
+   fChain->SetBranchAddress("H.dc.1x1.time", H_dc_1x1_time, &b_H_dc_1x1_time);
+   fChain->SetBranchAddress("Ndata.H.dc.1x1.wirenum", &Ndata_H_dc_1x1_wirenum, &b_Ndata_H_dc_1x1_wirenum);
+   fChain->SetBranchAddress("H.dc.1x1.wirenum", H_dc_1x1_wirenum, &b_H_dc_1x1_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.1x2.dist", &Ndata_H_dc_1x2_dist, &b_Ndata_H_dc_1x2_dist);
+   fChain->SetBranchAddress("H.dc.1x2.dist", H_dc_1x2_dist, &b_H_dc_1x2_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.1x2.rawtdc", &Ndata_H_dc_1x2_rawtdc, &b_Ndata_H_dc_1x2_rawtdc);
+   fChain->SetBranchAddress("H.dc.1x2.rawtdc", H_dc_1x2_rawtdc, &b_H_dc_1x2_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.1x2.time", &Ndata_H_dc_1x2_time, &b_Ndata_H_dc_1x2_time);
+   fChain->SetBranchAddress("H.dc.1x2.time", H_dc_1x2_time, &b_H_dc_1x2_time);
+   fChain->SetBranchAddress("Ndata.H.dc.1x2.wirenum", &Ndata_H_dc_1x2_wirenum, &b_Ndata_H_dc_1x2_wirenum);
+   fChain->SetBranchAddress("H.dc.1x2.wirenum", H_dc_1x2_wirenum, &b_H_dc_1x2_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.1y1.dist", &Ndata_H_dc_1y1_dist, &b_Ndata_H_dc_1y1_dist);
+   fChain->SetBranchAddress("H.dc.1y1.dist", H_dc_1y1_dist, &b_H_dc_1y1_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.1y1.rawtdc", &Ndata_H_dc_1y1_rawtdc, &b_Ndata_H_dc_1y1_rawtdc);
+   fChain->SetBranchAddress("H.dc.1y1.rawtdc", H_dc_1y1_rawtdc, &b_H_dc_1y1_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.1y1.time", &Ndata_H_dc_1y1_time, &b_Ndata_H_dc_1y1_time);
+   fChain->SetBranchAddress("H.dc.1y1.time", H_dc_1y1_time, &b_H_dc_1y1_time);
+   fChain->SetBranchAddress("Ndata.H.dc.1y1.wirenum", &Ndata_H_dc_1y1_wirenum, &b_Ndata_H_dc_1y1_wirenum);
+   fChain->SetBranchAddress("H.dc.1y1.wirenum", H_dc_1y1_wirenum, &b_H_dc_1y1_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.1y2.dist", &Ndata_H_dc_1y2_dist, &b_Ndata_H_dc_1y2_dist);
+   fChain->SetBranchAddress("H.dc.1y2.dist", H_dc_1y2_dist, &b_H_dc_1y2_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.1y2.rawtdc", &Ndata_H_dc_1y2_rawtdc, &b_Ndata_H_dc_1y2_rawtdc);
+   fChain->SetBranchAddress("H.dc.1y2.rawtdc", H_dc_1y2_rawtdc, &b_H_dc_1y2_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.1y2.time", &Ndata_H_dc_1y2_time, &b_Ndata_H_dc_1y2_time);
+   fChain->SetBranchAddress("H.dc.1y2.time", H_dc_1y2_time, &b_H_dc_1y2_time);
+   fChain->SetBranchAddress("Ndata.H.dc.1y2.wirenum", &Ndata_H_dc_1y2_wirenum, &b_Ndata_H_dc_1y2_wirenum);
+   fChain->SetBranchAddress("H.dc.1y2.wirenum", H_dc_1y2_wirenum, &b_H_dc_1y2_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.2u1.dist", &Ndata_H_dc_2u1_dist, &b_Ndata_H_dc_2u1_dist);
+   fChain->SetBranchAddress("H.dc.2u1.dist", H_dc_2u1_dist, &b_H_dc_2u1_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.2u1.rawtdc", &Ndata_H_dc_2u1_rawtdc, &b_Ndata_H_dc_2u1_rawtdc);
+   fChain->SetBranchAddress("H.dc.2u1.rawtdc", H_dc_2u1_rawtdc, &b_H_dc_2u1_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.2u1.time", &Ndata_H_dc_2u1_time, &b_Ndata_H_dc_2u1_time);
+   fChain->SetBranchAddress("H.dc.2u1.time", H_dc_2u1_time, &b_H_dc_2u1_time);
+   fChain->SetBranchAddress("Ndata.H.dc.2u1.wirenum", &Ndata_H_dc_2u1_wirenum, &b_Ndata_H_dc_2u1_wirenum);
+   fChain->SetBranchAddress("H.dc.2u1.wirenum", H_dc_2u1_wirenum, &b_H_dc_2u1_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.2v1.dist", &Ndata_H_dc_2v1_dist, &b_Ndata_H_dc_2v1_dist);
+   fChain->SetBranchAddress("H.dc.2v1.dist", H_dc_2v1_dist, &b_H_dc_2v1_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.2v1.rawtdc", &Ndata_H_dc_2v1_rawtdc, &b_Ndata_H_dc_2v1_rawtdc);
+   fChain->SetBranchAddress("H.dc.2v1.rawtdc", H_dc_2v1_rawtdc, &b_H_dc_2v1_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.2v1.time", &Ndata_H_dc_2v1_time, &b_Ndata_H_dc_2v1_time);
+   fChain->SetBranchAddress("H.dc.2v1.time", H_dc_2v1_time, &b_H_dc_2v1_time);
+   fChain->SetBranchAddress("Ndata.H.dc.2v1.wirenum", &Ndata_H_dc_2v1_wirenum, &b_Ndata_H_dc_2v1_wirenum);
+   fChain->SetBranchAddress("H.dc.2v1.wirenum", H_dc_2v1_wirenum, &b_H_dc_2v1_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.2x1.dist", &Ndata_H_dc_2x1_dist, &b_Ndata_H_dc_2x1_dist);
+   fChain->SetBranchAddress("H.dc.2x1.dist", H_dc_2x1_dist, &b_H_dc_2x1_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.2x1.rawtdc", &Ndata_H_dc_2x1_rawtdc, &b_Ndata_H_dc_2x1_rawtdc);
+   fChain->SetBranchAddress("H.dc.2x1.rawtdc", H_dc_2x1_rawtdc, &b_H_dc_2x1_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.2x1.time", &Ndata_H_dc_2x1_time, &b_Ndata_H_dc_2x1_time);
+   fChain->SetBranchAddress("H.dc.2x1.time", H_dc_2x1_time, &b_H_dc_2x1_time);
+   fChain->SetBranchAddress("Ndata.H.dc.2x1.wirenum", &Ndata_H_dc_2x1_wirenum, &b_Ndata_H_dc_2x1_wirenum);
+   fChain->SetBranchAddress("H.dc.2x1.wirenum", H_dc_2x1_wirenum, &b_H_dc_2x1_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.2x2.dist", &Ndata_H_dc_2x2_dist, &b_Ndata_H_dc_2x2_dist);
+   fChain->SetBranchAddress("H.dc.2x2.dist", H_dc_2x2_dist, &b_H_dc_2x2_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.2x2.rawtdc", &Ndata_H_dc_2x2_rawtdc, &b_Ndata_H_dc_2x2_rawtdc);
+   fChain->SetBranchAddress("H.dc.2x2.rawtdc", H_dc_2x2_rawtdc, &b_H_dc_2x2_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.2x2.time", &Ndata_H_dc_2x2_time, &b_Ndata_H_dc_2x2_time);
+   fChain->SetBranchAddress("H.dc.2x2.time", H_dc_2x2_time, &b_H_dc_2x2_time);
+   fChain->SetBranchAddress("Ndata.H.dc.2x2.wirenum", &Ndata_H_dc_2x2_wirenum, &b_Ndata_H_dc_2x2_wirenum);
+   fChain->SetBranchAddress("H.dc.2x2.wirenum", H_dc_2x2_wirenum, &b_H_dc_2x2_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.2y1.dist", &Ndata_H_dc_2y1_dist, &b_Ndata_H_dc_2y1_dist);
+   fChain->SetBranchAddress("H.dc.2y1.dist", H_dc_2y1_dist, &b_H_dc_2y1_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.2y1.rawtdc", &Ndata_H_dc_2y1_rawtdc, &b_Ndata_H_dc_2y1_rawtdc);
+   fChain->SetBranchAddress("H.dc.2y1.rawtdc", H_dc_2y1_rawtdc, &b_H_dc_2y1_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.2y1.time", &Ndata_H_dc_2y1_time, &b_Ndata_H_dc_2y1_time);
+   fChain->SetBranchAddress("H.dc.2y1.time", H_dc_2y1_time, &b_H_dc_2y1_time);
+   fChain->SetBranchAddress("Ndata.H.dc.2y1.wirenum", &Ndata_H_dc_2y1_wirenum, &b_Ndata_H_dc_2y1_wirenum);
+   fChain->SetBranchAddress("H.dc.2y1.wirenum", H_dc_2y1_wirenum, &b_H_dc_2y1_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.2y2.dist", &Ndata_H_dc_2y2_dist, &b_Ndata_H_dc_2y2_dist);
+   fChain->SetBranchAddress("H.dc.2y2.dist", H_dc_2y2_dist, &b_H_dc_2y2_dist);
+   fChain->SetBranchAddress("Ndata.H.dc.2y2.rawtdc", &Ndata_H_dc_2y2_rawtdc, &b_Ndata_H_dc_2y2_rawtdc);
+   fChain->SetBranchAddress("H.dc.2y2.rawtdc", H_dc_2y2_rawtdc, &b_H_dc_2y2_rawtdc);
+   fChain->SetBranchAddress("Ndata.H.dc.2y2.time", &Ndata_H_dc_2y2_time, &b_Ndata_H_dc_2y2_time);
+   fChain->SetBranchAddress("H.dc.2y2.time", H_dc_2y2_time, &b_H_dc_2y2_time);
+   fChain->SetBranchAddress("Ndata.H.dc.2y2.wirenum", &Ndata_H_dc_2y2_wirenum, &b_Ndata_H_dc_2y2_wirenum);
+   fChain->SetBranchAddress("H.dc.2y2.wirenum", H_dc_2y2_wirenum, &b_H_dc_2y2_wirenum);
+   fChain->SetBranchAddress("Ndata.H.dc.residual", &Ndata_H_dc_residual, &b_Ndata_H_dc_residual);
+   fChain->SetBranchAddress("H.dc.residual", H_dc_residual, &b_H_dc_residual);
+   fChain->SetBranchAddress("Ndata.H.dc.x", &Ndata_H_dc_x, &b_Ndata_H_dc_x);
+   fChain->SetBranchAddress("H.dc.x", H_dc_x, &b_H_dc_x);
+   fChain->SetBranchAddress("Ndata.H.dc.xp", &Ndata_H_dc_xp, &b_Ndata_H_dc_xp);
+   fChain->SetBranchAddress("H.dc.xp", H_dc_xp, &b_H_dc_xp);
+   fChain->SetBranchAddress("Ndata.H.dc.y", &Ndata_H_dc_y, &b_Ndata_H_dc_y);
+   fChain->SetBranchAddress("H.dc.y", H_dc_y, &b_H_dc_y);
+   fChain->SetBranchAddress("Ndata.H.dc.yp", &Ndata_H_dc_yp, &b_Ndata_H_dc_yp);
+   fChain->SetBranchAddress("H.dc.yp", H_dc_yp, &b_H_dc_yp);
+   fChain->SetBranchAddress("H.dc.1u1.nhit", &H_dc_1u1_nhit, &b_H_dc_1u1_nhit);
+   fChain->SetBranchAddress("H.dc.1v1.nhit", &H_dc_1v1_nhit, &b_H_dc_1v1_nhit);
+   fChain->SetBranchAddress("H.dc.1x1.nhit", &H_dc_1x1_nhit, &b_H_dc_1x1_nhit);
+   fChain->SetBranchAddress("H.dc.1x2.nhit", &H_dc_1x2_nhit, &b_H_dc_1x2_nhit);
+   fChain->SetBranchAddress("H.dc.1y1.nhit", &H_dc_1y1_nhit, &b_H_dc_1y1_nhit);
+   fChain->SetBranchAddress("H.dc.1y2.nhit", &H_dc_1y2_nhit, &b_H_dc_1y2_nhit);
+   fChain->SetBranchAddress("H.dc.2u1.nhit", &H_dc_2u1_nhit, &b_H_dc_2u1_nhit);
+   fChain->SetBranchAddress("H.dc.2v1.nhit", &H_dc_2v1_nhit, &b_H_dc_2v1_nhit);
+   fChain->SetBranchAddress("H.dc.2x1.nhit", &H_dc_2x1_nhit, &b_H_dc_2x1_nhit);
+   fChain->SetBranchAddress("H.dc.2x2.nhit", &H_dc_2x2_nhit, &b_H_dc_2x2_nhit);
+   fChain->SetBranchAddress("H.dc.2y1.nhit", &H_dc_2y1_nhit, &b_H_dc_2y1_nhit);
+   fChain->SetBranchAddress("H.dc.2y2.nhit", &H_dc_2y2_nhit, &b_H_dc_2y2_nhit);
+   fChain->SetBranchAddress("H.dc.Ch1.maxhits", &H_dc_Ch1_maxhits, &b_H_dc_Ch1_maxhits);
+   fChain->SetBranchAddress("H.dc.Ch1.nhit", &H_dc_Ch1_nhit, &b_H_dc_Ch1_nhit);
+   fChain->SetBranchAddress("H.dc.Ch1.spacepoints", &H_dc_Ch1_spacepoints, &b_H_dc_Ch1_spacepoints);
+   fChain->SetBranchAddress("H.dc.Ch1.trawhit", &H_dc_Ch1_trawhit, &b_H_dc_Ch1_trawhit);
+   fChain->SetBranchAddress("H.dc.Ch2.maxhits", &H_dc_Ch2_maxhits, &b_H_dc_Ch2_maxhits);
+   fChain->SetBranchAddress("H.dc.Ch2.nhit", &H_dc_Ch2_nhit, &b_H_dc_Ch2_nhit);
+   fChain->SetBranchAddress("H.dc.Ch2.spacepoints", &H_dc_Ch2_spacepoints, &b_H_dc_Ch2_spacepoints);
+   fChain->SetBranchAddress("H.dc.Ch2.trawhit", &H_dc_Ch2_trawhit, &b_H_dc_Ch2_trawhit);
+   fChain->SetBranchAddress("H.dc.nhit", &H_dc_nhit, &b_H_dc_nhit);
+   fChain->SetBranchAddress("H.dc.nsp", &H_dc_nsp, &b_H_dc_nsp);
+   fChain->SetBranchAddress("H.dc.ntrack", &H_dc_ntrack, &b_H_dc_ntrack);
+   fChain->SetBranchAddress("H.dc.stubtest", &H_dc_stubtest, &b_H_dc_stubtest);
+   fChain->SetBranchAddress("H.dc.tnhit", &H_dc_tnhit, &b_H_dc_tnhit);
+   fChain->SetBranchAddress("H.dc.trawhit", &H_dc_trawhit, &b_H_dc_trawhit);
+   fChain->SetBranchAddress("fEvtHdr.fEvtTime", &fEvtHdr_fEvtTime, &b_Event_Branch_fEvtHdr_fEvtTime);
+   fChain->SetBranchAddress("fEvtHdr.fEvtNum", &fEvtHdr_fEvtNum, &b_Event_Branch_fEvtHdr_fEvtNum);
+   fChain->SetBranchAddress("fEvtHdr.fEvtType", &fEvtHdr_fEvtType, &b_Event_Branch_fEvtHdr_fEvtType);
+   fChain->SetBranchAddress("fEvtHdr.fEvtLen", &fEvtHdr_fEvtLen, &b_Event_Branch_fEvtHdr_fEvtLen);
+   fChain->SetBranchAddress("fEvtHdr.fHelicity", &fEvtHdr_fHelicity, &b_Event_Branch_fEvtHdr_fHelicity);
+   fChain->SetBranchAddress("fEvtHdr.fTargetPol", &fEvtHdr_fTargetPol, &b_Event_Branch_fEvtHdr_fTargetPol);
+   fChain->SetBranchAddress("fEvtHdr.fRun", &fEvtHdr_fRun, &b_Event_Branch_fEvtHdr_fRun);
+   Notify();
+}
+
+Bool_t wire_drift_times::Notify()
+{
+   // The Notify() function is called when a new file is opened. This
+   // can be either for a new TTree in a TChain or when when a new TTree
+   // is started when using PROOF. It is normally not necessary to make changes
+   // to the generated code, but the routine can be extended by the
+   // user if needed. The return value is currently not used.
+
+   return kTRUE;
+}
+
+void wire_drift_times::Show(Long64_t entry)
+{
+// Print contents of entry.
+// If entry is not specified, print current entry
+   if (!fChain) return;
+   fChain->Show(entry);
+}
+Int_t wire_drift_times::Cut(Long64_t entry)
+{
+// This function may be called from Loop.
+// returns  1 if entry is accepted.
+// returns -1 otherwise.
+   return 1;
+}
+#endif // #ifdef wire_drift_times_cxx
diff --git a/CALIBRATION/hodo_calib/.gitignore b/CALIBRATION/hodo_calib/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..016c032149ef893d377ab44447f60deaef632e6a
--- /dev/null
+++ b/CALIBRATION/hodo_calib/.gitignore
@@ -0,0 +1,4 @@
+*.37
+tofcal.param
+tofcal.parampass1
+tofcal
diff --git a/CALIBRATION/hodo_calib/Maketof b/CALIBRATION/hodo_calib/Maketof
new file mode 100755
index 0000000000000000000000000000000000000000..41260f4b912c4b2d76c6957c489e1047882dfb27
--- /dev/null
+++ b/CALIBRATION/hodo_calib/Maketof
@@ -0,0 +1 @@
+gfortran -W -ff2c -fbounds-check -fno-automatic  -fdefault-real-8  tofcal.f -L$CERN_ROOT/lib -lmathlib -lpacklib -lkernlib  -o tofcal
diff --git a/CALIBRATION/hodo_calib/README.md b/CALIBRATION/hodo_calib/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..9a7869d34fe68e61fbf3650d6edc80901aa51273
--- /dev/null
+++ b/CALIBRATION/hodo_calib/README.md
@@ -0,0 +1,50 @@
+Hodoscope Calibrations
+============================================
+This is directory contains the code for calibrating the hodoscope timing
+in SHMS and HMS
+
+Directory structure
+----------------------
+* tofcal.f  : Fortran code which execute the calibration.
+* Maketof   : Script to compile tofcal.f and make executable tofcal
+* tofcal.inp : Input file for tofcal.f
+* shmstofcal.inp : Version of tofcal.inp for SHMS
+* hmstofcal.inp : Version of tofcal.inp for HMS
+
+
+
+Compiling code
+--------------
+* Execute ./Maketof
+
+Running code
+-----------
+* First replay data with either
+** HMS:   gHcParms->Load("PARAM/HMS/HODO/htofcal.param");
+** SHMS:   gHcParms->Load("PARAM/HMS/HODO/ptofcal.param");
+* The replay should put the new file : hfort.37 or pfort.37 in the CALIBRATION/hodo_calib directory
+* Copy either hmstofcal.inp or shmstofcal.inp to tofcal.inp
+* Execute ./tofcal
+* Print out info on the initial chi2 of  data and final chi2 of the fit.
+* Creates file tofcal.param
+* Edit the parameters in tofcal.param into either PARAM/HMS/HODO/hhodo.param or  PARAM/SHMS/HODO/phodo.param
+
+Brief decription of code
+------------------------
+* The code fits tcorr = time - offset - path * velocity - adccor / sqrt(ADC)
+* Uses paddle 10 positive PMT on plane 1 as the reference PMT ( offset fixed at 0)
+* To get data file name. Reads-in the input file: tofcal.inp 
+* Opens data file
+    * "0" line separates events
+    * Should have pair of neg and pos PMTs for each paddle
+    * Format is : iside  ipl ipad tdcval_uncorr pathl zcor tdcval_corr adcval
+        * iside = 1,2 for pos and neg PMT
+        * ipl = plane number
+        * tdcval_uncorr = raw time in ns. The program uses this in optimization.
+        * pathl = distance for focal plane to the paddle using the track
+        * zcor = time (ns) for the particle to go from focal plane to paddle. Correction subtracted from tdcval_uncrr
+        * tdcval_corr = the corrected time in ns. Not used by program. Just gives the initial chi2.
+        * adcval = ADC value used in fit
+* Loops through data determines the number of hits in each PMT. Will only include PMT if the number of hits > 100.
+* Again loops through the data filling array with time difference between all pairs PMTs, pathl and adcval.
+* Use the CERNLIB routine deqn to invert the matrix and determine the fit parameters.
diff --git a/CALIBRATION/hodo_calib/hmstofcal.inp b/CALIBRATION/hodo_calib/hmstofcal.inp
new file mode 100644
index 0000000000000000000000000000000000000000..74c9201d09ee6fe80fc9ebae35b01583bc0ec14d
--- /dev/null
+++ b/CALIBRATION/hodo_calib/hmstofcal.inp
@@ -0,0 +1,4 @@
+hfort.37
+
+
+
diff --git a/CALIBRATION/hodo_calib/shmstofcal.inp b/CALIBRATION/hodo_calib/shmstofcal.inp
new file mode 100644
index 0000000000000000000000000000000000000000..dfa7acf81725110f68e703df566aead6d3eb3453
--- /dev/null
+++ b/CALIBRATION/hodo_calib/shmstofcal.inp
@@ -0,0 +1,4 @@
+pfort.37
+
+
+
diff --git a/CALIBRATION/hodo_calib/tofcal.f b/CALIBRATION/hodo_calib/tofcal.f
new file mode 100644
index 0000000000000000000000000000000000000000..0239fbedd69aac9b680d4e6654a167e3584c8e3b
--- /dev/null
+++ b/CALIBRATION/hodo_calib/tofcal.f
@@ -0,0 +1,475 @@
+      program tofcal
+! Fit TOF for Hall C HMS or SOS with the form for each PMT:
+! tcorr = time - offset - path * velocity - adccor / sqrt(ADC)
+! where offset, velocity, and adccor are parameters
+! April 10, 2005 P. Bosted
+! Input file: tofcal.inp should contain name of data file to be fit
+!             First xter of file name should be "h" for HMS data
+!             and "s" for SOS. 
+! To generate an input file, set xdumptof = 1 in xdebug.param in
+! the PARAM directory, where x=h for HMS, x=s for SOS
+! The HMS output will be in fort.37, and the SOS in fort.38
+! The output parameters will be in tofcal.param. Insert these
+! into the xhodo.param file that you are using. Make sure to 
+! erase the old values of sigma, or put the new ones after the
+! old ones, so that they get used properly
+! Normal values of invadc_offset are between -50 and 50,
+! normal values of invadc_velocity are between 12 and 17 (50 is
+! default if not enough data for the fit), and normal values of
+! shodo_pos_invadc_adc are 20 to 50. Normal values of the sigmas
+! are 0.3 to 0.8 nsec. 
+
+      implicit none
+      integer i,j,k,n,nparam,ipn,ipl,idt,idet(1000),nhit(200)
+      integer ip1(200),ip2(200),ip3(200),ifail,nhit0(200)
+      integer ipdet(600),iptyp(600),iwork(1000),k1,k2,k3,k4,k5,k6
+      real*8 tr(1000),p(1000),zc(1000),tc1(1000),p2(1000),hival,dtc
+      real*8 ax(1000,1000),bx(1000),sum1(200),sum2(200),sum3(200)
+      real*8 mean0(200),sig0(200),mean(200),sig(200),dt,adc(1000)
+      real*8 toff(200),vel(200),quad(200),chisq,df,ttol,adcmin(200)
+      real*8 avtime,ntime
+      integer thist(200,10),iloop,adchist(200,18),phist(200,18)
+      integer thistf(200,50),adchistf(200,50)
+      integer adchistpm(200,20,2)
+
+      character*80 string
+      character*40 filename
+
+      open(unit=7,file='tofcal.inp')
+      read(7,'(a)') filename
+c      open(unit=8,file='tofcal.out')
+      open(unit=11,file='tofcal.parampass1')
+      open(unit=12,file='tofcal.param')
+c      open(unit=13,file='tofcal.adchist')
+c      write(13,'(1x,'' xv'',50f5.0)') (20.*(j-0.5),j=1,50)
+c      open(unit=14,file='tofcal.tdchist')
+c      write(14,'(1x,'' xv'',50f5.1)') (-5.0+0.2*(j-0.5),j=1,50)
+
+! first see how many hits per PMT: need at least 100 for fitting
+! also make ADC histograms
+      open(unit=9,file=filename,err=998)
+       if(filename(1:1).ne.'h'.and.filename(1:1).ne.'p') then
+        write(6,'(1x,''error, input file name '',
+     >   '' should start with h or p'')')
+        goto 999
+       endif
+       write(*,*) ' filling adc histograms'
+       do i=1,10000000
+        n=0
+        do j=1,1000
+          read(9,'(a)',end=10) string
+          read(string,'(1x,i1)') k
+          if(k.eq.0) goto 9
+          n=n+1
+          read(string,'(1x,i1,2i3,5f10.3)') ipn,ipl,idt, 
+     >      tr(n),p(n),zc(n),tc1(n),adc(n)
+          k = min(18, max(1, int((adc(n)/20.)+1)))
+          idet(n) = 100*(ipn-1) + 20*(ipl-1) + idt
+          adchist(idet(n), k) = adchist(idet(n), k) + 1 
+          k = min(50, max(1, int((adc(n)/20.)+1)))
+          adchistf(idet(n), k) = adchistf(idet(n), k) + 1 
+          nhit0(idet(n)) = nhit0(idet(n)) + 1.
+        enddo
+ 9      continue
+      enddo
+
+! find more or less where threshold is
+ 10   do i=1,200
+        adcmin(i)=50.
+        if(nhit0(i).gt.0.) then
+c          write(13,'(i3,50i4)') i,(min(999,adchistf(i,j)),j=1,50)
+          hival=0.
+          k=0
+          do j=1,17
+            if(adchist(i,j).gt.hival) then
+              hival = adchist(i,j)
+              k = j
+            endif
+          enddo
+c for test
+c         do n=1,max(1,k)
+c           if(adchist(i,n).lt.hival/20.) adcmin(i)=20.*(n-0.5)
+c         enddo
+c         write(13,'(1x,''adcmin='',f6.1)') adcmin(i) 
+        endif
+      enddo
+      close(unit=9)
+      do i=1,200
+        sum1(i)=0.
+        sum2(i)=0.
+        sum3(i)=0.
+      enddo
+
+! Do everything twice, 2nd time with tighter tolerance (ttol) on
+! time differences, based on first pass
+      ttol=10.0
+      do iloop=1,2
+         write(*,*) ' loop = ',iloop
+! Initialize the fitting arrays
+        do i=1,1000
+          if(i.le.200) nhit(i)=0
+          bx(i)=0.
+          do j=1,1000
+            ax(i,j)=0.
+          enddo
+        enddo
+
+! read in data
+      open(unit=9,file=filename)
+      nparam=0
+      chisq=0.
+      df=0.
+      do i=1,10000000
+        n=0
+        do j=1,1000
+          read(9,'(a)',end=12) string
+          read(string,'(1x,i1)') k
+          if(k.eq.0) goto 11
+          n=n+1
+          read(string,'(1x,i1,2i3,5f10.3)') ipn,ipl,idt, 
+     >      tr(n),p(n),zc(n),tc1(n),adc(n)
+! linearize the detector numbers
+          idet(n) = 100*(ipn-1) + 20*(ipl-1) + idt
+          if(idet(n).lt.1.or.idet(n).gt.200) write(6,'(1x,
+     >      ''error! '',4i4)') ipn,ipl,idt,idet(n)
+
+! correct raw times for zpos using betap
+          tr(n) = tr(n)- zc(n)
+
+! remember path**2 or sqrt(p) or adc
+          p(n) = min(200., max(0., p(n)))
+c          adc(n) = min(500, max(0., adc(n)))
+          p2(n) = 1./sqrt(max(20., adc(n)))
+          k = min(18, max(1, int(p(n)/7.)+1))
+          phist(idet(n), k) = phist(idet(n), k) + 1 
+! ignore hits from paddles that are rarely hit
+          if(nhit0(idet(n)).lt.100) n=n-1
+        enddo
+
+! Loop over all pairs, if at least 6
+ 11     if(n.ge.6) then
+! see if this is first time a detector is used
+          do j=1,n
+            nhit(idet(j))=nhit(idet(j))+1
+
+! If first time detector used, assign corresponding parameters
+! Note that detector had has a fixed time offset (ip1) of zero
+! since all times are relative)
+            if(nhit(idet(j)).eq.1) then
+              if(idet(j).eq.10) then
+                ip1(idet(j))=0
+              else
+
+! fixed time offsets
+                nparam=nparam+1
+                ip1(idet(j))=nparam
+                ipdet(nparam)=idet(j)
+                iptyp(nparam)=1
+              endif
+
+! linear term in path 
+              nparam=nparam+1
+              ip2(idet(j))=nparam
+              ipdet(nparam)=idet(j)
+              iptyp(nparam)=2
+
+! quadratic term for path**2
+              nparam=nparam+1
+              ip3(idet(j))=nparam
+              ipdet(nparam)=idet(j)
+              iptyp(nparam)=3
+              k=idet(j)
+c              write(8,'(1x,i3,4i5)') k,nhit(k),ip1(k),ip2(k),ip3(k)
+            endif
+          enddo ! loop over n
+
+! now loop over all pairs in fill in the matrix
+! also accumulate sums to get means and sigmas for each detector
+! of original corrected times as read in from the file
+          do j=1,n-1
+            do k=j+1,n
+              dt = tc1(j)-tc1(k)
+              dtc = dt
+              if(iloop.eq.1.or.abs(dt).lt.ttol) then
+               idt = min(10,max(1,int((dt+5.))+1))
+               thist(idet(j),idt) = thist(idet(j),idt) + 1
+               chisq = chisq + dt**2
+               df = df + 1
+               sum1(idet(j)) = sum1(idet(j)) + 1.
+               sum2(idet(j)) = sum2(idet(j)) + dt
+               sum3(idet(j)) = sum3(idet(j)) + dt**2
+               dt = tc1(k)-tc1(j)
+               idt = min(10,max(1,int((dt+5.))+1))
+               thist(idet(k),idt) = thist(idet(k),idt) + 1
+               sum1(idet(k)) = sum1(idet(k)) + 1.
+               sum2(idet(k)) = sum2(idet(k)) + dt
+               sum3(idet(k)) = sum3(idet(k)) + dt**2
+              endif
+              k1 = idet(j)
+              k2 = idet(k)
+              dt = (tr(j) + toff(k1) + vel(k1)*p(j) + quad(k1)*p2(j))-
+     >             (tr(k) + toff(k2) + vel(k2)*p(k) + quad(k2)*p2(k))
+              if(iloop.eq.1.or.abs(dt).lt.ttol) then
+               k1=ip1(idet(j))
+               k2=ip1(idet(k))
+               k3=ip2(idet(j))
+               k4=ip2(idet(k))
+               k5=ip3(idet(j))
+               k6=ip3(idet(k))
+               if(k1.gt.0) then
+                bx(k1) = bx(k1) - (tr(j)-tr(k))
+                ax(k1,k1) = ax(k1,k1) + 1.
+                ax(k1,k3) = ax(k1,k3) + p(j)
+                ax(k1,k4) = ax(k1,k4) - p(k)
+                ax(k1,k5) = ax(k1,k5) + p2(j)
+                ax(k1,k6) = ax(k1,k6) - p2(k)
+                ax(k3,k1) = ax(k3,k1) + p(j)
+                ax(k4,k1) = ax(k4,k1) - p(k)
+                ax(k5,k1) = ax(k5,k1) + p2(j)
+                ax(k6,k1) = ax(k6,k1) - p2(k)
+               endif
+               if(k1.gt.0.and.k2.gt.0) then
+                ax(k1,k2) = ax(k1,k2) - 1.
+                ax(k2,k1) = ax(k2,k1) - 1.
+               endif
+               if(k2.gt.0) then
+                bx(k2) = bx(k2) + (tr(j)-tr(k))
+                ax(k2,k2) = ax(k2,k2) + 1.
+                ax(k2,k3) = ax(k2,k3) - p(j)
+                ax(k2,k4) = ax(k2,k4) + p(k)
+                ax(k2,k5) = ax(k2,k5) - p2(j)
+                ax(k2,k6) = ax(k2,k6) + p2(k)
+                ax(k3,k2) = ax(k3,k2) - p(j)    
+                ax(k4,k2) = ax(k4,k2) + p(k)    
+                ax(k5,k2) = ax(k5,k2) - p2(j)    
+                ax(k6,k2) = ax(k6,k2) + p2(k)    
+               endif
+               bx(k3) = bx(k3) - (tr(j)-tr(k)) * p(j)
+               bx(k4) = bx(k4) + (tr(j)-tr(k)) * p(k)
+               bx(k5) = bx(k5) - (tr(j)-tr(k)) * p2(j)
+               bx(k6) = bx(k6) + (tr(j)-tr(k)) * p2(k)
+               ax(k3,k3) = ax(k3,k3) + p(j)*p(j)
+               ax(k3,k4) = ax(k3,k4) - p(k)*p(j)
+               ax(k3,k5) = ax(k3,k5) + p2(j)*p(j)
+               ax(k3,k6) = ax(k3,k6) - p2(k)*p(j)
+               ax(k4,k3) = ax(k4,k3) - p(j)*p(k)
+               ax(k4,k4) = ax(k4,k4) + p(k)*p(k)
+               ax(k4,k5) = ax(k4,k5) - p2(j)*p(k)
+               ax(k4,k6) = ax(k4,k6) + p2(k)*p(k)
+               ax(k5,k3) = ax(k5,k3) + p(j)*p2(j)
+               ax(k5,k4) = ax(k5,k4) - p(k)*p2(j)
+               ax(k5,k5) = ax(k5,k5) + p2(j)*p2(j)
+               ax(k5,k6) = ax(k5,k6) - p2(k)*p2(j)
+               ax(k6,k3) = ax(k6,k3) - p(j)*p2(k)
+               ax(k6,k4) = ax(k6,k4) + p(k)*p2(k)
+               ax(k6,k5) = ax(k6,k5) - p2(j)*p2(k)
+               ax(k6,k6) = ax(k6,k6) + p2(k)*p2(k)
+              endif
+            enddo
+          enddo
+        endif ! if n>1
+      enddo ! loop over reading in data 
+ 12   close(unit=9)
+
+! Histograms
+      if(iloop.eq.1) then
+       do i=1,200
+        if(sum1(i).gt.0.) then
+c          write(13,'(i3,18i4)') i,(phist(i,j),j=1,18)
+        endif
+       enddo
+      endif
+! see how many hits per detector and get mean, sigma of original corr. times
+      do i=1,200
+        if(sum1(i).gt.0.) then
+          mean0(i)=sum2(i)/sum1(i)
+          sig0(i)=sqrt(sum3(i)/sum1(i) - mean0(i)**2)
+        endif
+c        write(8,'(1x,i3,i5,2f6.2,10i5)') i,nhit(i),
+c     >    mean0(i),sig0(i),(min(9999,thist(i,j)),j=1,10)
+        sum1(i)=0.
+        sum2(i)=0.
+        sum3(i)=0.
+        do j=1,10
+          thist(i,j)=0
+        enddo
+      enddo
+      df = max(1., df - nparam)
+      write(6,'(1x,''initial chi2/d.f.='',f8.3,'' for '',f7.0,
+     >   '' deg. freedom'')') chisq/df,df
+c      write(8,'(1x,''initial chi2/d.f.='',f8.3,'' for '',f7.0,
+c     >   '' deg. freedom'')') chisq/df,df
+
+! find the solutions
+      call deqn (nparam,ax,1000,iwork,ifail,1,bx)
+c      write(8,'(1x,''ifail='',i10)') ifail
+
+! association of parameters with detectors
+      do i=1,nparam
+        if(iptyp(i).eq.1) toff(ipdet(i))=bx(i)
+        if(iptyp(i).eq.2)  vel(ipdet(i))=bx(i)
+        if(iptyp(i).eq.3) quad(ipdet(i))=bx(i)
+      enddo
+
+! write solutions
+      write(10 + iloop,'(/''; use '',a,
+     >  ''tofusinginvadc=1 if want invadc_offset''/
+     >  '';  invadc_linear, and invadc_adc to be used''/
+     >            a,''tofusinginvadc=1'')') 
+     >  filename(1:1),filename(1:1)
+      write(10+iloop,'(/a,''hodo_pos_invadc_offset ='',3(f8.2,'',''),
+     >  f8.2)') filename(1:1),(-1.0*toff(i),i=1,80,20)
+      do j=2,16
+       write(10+iloop,'(1x,''                        '',3(f8.2,'',''),
+     >  f8.2)')(-1.0*toff(i),i=j,79+j,20)
+      enddo
+
+      write(10+iloop,'(/a,''hodo_neg_invadc_offset ='',3(f8.2,'',''),
+     >  f8.2)')filename(1:1),(-1.0*toff(i),i=101,180,20)
+      do j=2,16
+       write(10+iloop,'(1x,''                        '',3(f8.2,'',''),
+     >  f8.2)')(-1.0*toff(i),i=100+j,179+j,20)
+      enddo
+
+      write(10+iloop,'(/a,''hodo_pos_invadc_linear ='',3(f8.2,'',''),
+     >  f8.2)')filename(1:1),( -1./min(-1./15.,vel(i)),i=1,80,20)
+      do j=2,16
+       write(10+iloop,'(1x,''                        '',3(f8.2,'',''),
+     >  f8.2)')(-1./min(-1./15.,vel(i)),i=j,79+j,20)
+      enddo
+
+      write(10+iloop,'(/a,''hodo_neg_invadc_linear ='',3(f8.2,'',''),
+     >  f8.2)')filename(1:1),( -1./min(-1./15.,vel(i)),i=101,180,20)
+      do j=2,16
+       write(10+iloop,'(1x,''                        '',3(f8.2,'',''),
+     >  f8.2)')(-1./min(-1./15.,vel(i)),i=100+j,179+j,20)
+      enddo
+
+      write(10+iloop,'(/a,''hodo_pos_invadc_adc='',3(f9.2,'',''),
+     >  f9.2)')filename(1:1),(-1.*quad(i),i=1,80,20)
+      do j=2,16
+       write(10+iloop,'(1x,''                   '',3(f9.2,'',''),
+     >  f9.2)')(-1.*quad(i),i=j,79+j,20)
+      enddo
+
+      write(10+iloop,'(/a,''hodo_neg_invadc_adc='',3(f9.2,'',''),
+     >  f9.2)')filename(1:1),(-1.0*quad(i),i=101,180,20)
+      do j=2,16
+       write(10+iloop,'(1x,''                   '',3(f9.2,'',''),
+     >  f9.2)')(-1.*quad(i),i=100+j,179+j,20)
+      enddo
+
+
+! read in data again and look at sigmas relative to average fp time
+      chisq = 0.
+      df = 0.
+      open(unit=9,file=filename)
+      do i=1,10000000
+        n=0
+        do j=1,1000
+          read(9,'(a)',end=14) string
+          read(string,'(1x,i1)') k
+          if(k.eq.0) goto 13
+          n=n+1
+          read(string,'(1x,i1,2i3,5f10.3)') ipn,ipl,idt, 
+     >      tr(n),p(n),zc(n),tc1(n),adc(n)
+          idet(n) = 100*(ipn-1) + 20*(ipl-1) + idt
+          tr(n) = tr(n)- zc(n)
+          p(n) = min(200., max(0., p(n)))
+c          adc(n) = min(500, max(0., adc(n)))
+          p2(n) = 1./sqrt(max(20., adc(n)))
+! ignore hits from paddles that are rarely hit
+          k1 = idet(n)
+          dt = (tr(n) + toff(k1) + vel(k1)*p(n) + quad(k1)*p2(n))  
+          if(nhit0(idet(n)).lt.100) n=n-1
+        enddo
+! Loop over all pairs, if at least 6 hits
+ 13     if(n.ge.6) then
+          do j=1,n
+            avtime=0.
+            ntime=0.
+            do k=1,n
+             if(k.ne.j) then
+              k1 = idet(j)
+              k2 = idet(k)
+              dt = (tr(k) + toff(k2) + vel(k2)*p(k) + quad(k2)*p2(k))
+              avtime = avtime + dt
+              ntime = ntime + 1.
+             endif
+            enddo
+            avtime = avtime / ntime
+            dt = (tr(j) + toff(k1) + vel(k1)*p(j) + quad(k1)*p2(j))-
+     >             avtime
+            if(iloop.eq.2) then
+              idt = min(50,max(1,int((dt+ 5.)/0.2)+1))
+              thistf(idet(j),idt) = thistf(idet(j),idt) + 1
+              idt = max(1,min(20, int(adc(j)/50.)+1))
+              if(dt.gt.0.) adchistpm(idet(j),idt,1)=
+     >          adchistpm(idet(j),idt,1)+1
+              if(dt.le.0.) adchistpm(idet(j),idt,2)=
+     >          adchistpm(idet(j),idt,2)+1
+            endif
+            if(iloop.eq.1.or.abs(dt).lt.ttol) then
+              idt = min(10,max(1,int((dt+ 5.))+1))
+              thist(idet(j),idt) = thist(idet(j),idt) + 1
+              chisq = chisq + dt**2
+              df = df + 1
+              sum1(idet(j)) = sum1(idet(j)) + 1.
+              sum2(idet(j)) = sum2(idet(j)) + dt
+              sum3(idet(j)) = sum3(idet(j)) + dt**2
+            endif
+          enddo
+        endif ! if n>5
+      enddo ! loop over reading in data 
+ 14   close(unit=9)
+! see how many hits per detector and get mean, sigma of original corr. times
+      do i=1,200
+        sig(i)=100.
+        if(sum1(i).gt.0.) then
+          mean(i)=sum2(i)/sum1(i)
+          sig(i)=sqrt(sum3(i)/sum1(i) - mean(i)**2)
+        endif
+c        write(8,'(1x,i3,i5,2f6.2,10i5)') i,nhit(i),
+c     >    mean(i),sig(i),(min(9999,thist(i,j)),j=1,10)
+c        if(iloop.eq.2)
+c     >    write(14,'(1x,i3,50i5)') i,(min(9999,thistf(i,j)),j=1,50)
+        sum1(i)=0.
+        sum2(i)=0.
+        sum3(i)=0.
+        do j=1,10
+          thist(i,j)=0
+        enddo
+      enddo
+      df = max(1., df - nparam)
+      write(6,'(1x,''  final chi2/d.f.='',f8.3,'' for '',f7.0,
+     >   '' deg. freedom'')') chisq/df,df
+c      write(8,'(1x,''  final chi2/d.f.='',f8.3,'' for '',f7.0,
+c     >   '' deg. freedom'')') chisq/df,df
+
+      write(10+iloop,'(/a,''hodo_pos_sigma ='',3(f8.2,'',''),
+     >  f8.2)')filename(1:1),(sig(i),i=  1, 80,20)
+      do j=2,16
+       write(10+iloop,'(1x,''                '',3(f8.2,'',''),
+     >  f8.2)')(sig(i),i=    j, 79+j,20)
+      enddo
+      write(10+iloop,'(/a,''hodo_neg_sigma ='',3(f8.2,'',''),
+     >  f8.2)')filename(1:1),(sig(i),i=101,180,20)
+      do j=2,16
+       write(10+iloop,'(1x,''                '',3(f8.2,'',''),
+     >  f8.2)')(sig(i),i=100+j,179+j,20)
+      enddo
+
+      enddo ! loop over time tolerance
+
+      do i=1,200
+c        write(15,'(1x,i3,20i4)') i,(adchistpm(i,j,1),j=1,20)
+c        write(15,'(1x,i3,20i4)') i,(adchistpm(i,j,2),j=1,20)
+      enddo
+
+      goto 999
+
+ 998  write(6,'(1x,''error, cant find file '',a)') filename
+
+ 999  stop
+      end
+
diff --git a/CALIBRATION/hodo_calib/tofcal.inp b/CALIBRATION/hodo_calib/tofcal.inp
new file mode 100644
index 0000000000000000000000000000000000000000..dfa7acf81725110f68e703df566aead6d3eb3453
--- /dev/null
+++ b/CALIBRATION/hodo_calib/tofcal.inp
@@ -0,0 +1,4 @@
+pfort.37
+
+
+
diff --git a/CALIBRATION/shms_dc_calib/run_Cal.C b/CALIBRATION/shms_dc_calib/run_Cal.C
new file mode 100644
index 0000000000000000000000000000000000000000..8d08d80b9207fc7702ae5f524c4912bb847c60e1
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/run_Cal.C
@@ -0,0 +1,68 @@
+//SCRIPT TO RUN OVER ALL HMS DC CALIBRATION SCRIPTS AT ONCE, AND UPDATE THE
+//NECESSARY PARAMTER FILES hdriftmap.param and  hdc.param
+void run_Cal()
+{
+      
+  //User Input Run
+  int run_NUM;
+  cout << "Enter Run Number: " << endl;
+  cin >> run_NUM;
+
+  //Create input file with run number
+  ofstream fout;
+  fout.open("scripts/input_RUN.txt");
+  fout << run_NUM << endl;
+  fout.close();
+
+
+  //Create root and data files Directories if they dont exist
+  char *dir_root = "mkdir ./root_files/";
+  char *dir_data = "mkdir ./data_files/";
+
+  if (system(dir_root || dir_data) != 0) {
+    system(dir_root);
+    system(dir_data);
+  }
+
+  //Create run Directories if they dont exist
+  char *dir0 = Form("mkdir ./root_files/run%d", run_NUM);
+  char *dir1 = Form("mkdir ./data_files/run%d", run_NUM);
+
+  if (system(dir0 || dir1) != 0) {
+    system(dir0);
+    system(dir1);
+  }
+
+  
+
+  //change directories and execute scripts
+  gSystem->cd("./scripts");
+  gSystem->Exec("root -l -q get_pdc_time_histo.C");
+  
+  //Load and Loop over Make Class events to get individual drift times
+  gROOT->LoadMacro("wire_drift_times.C");
+  gROOT->ProcessLine("wire_drift_times t"); //process line allows one to execute interactive root commands from a script, such as this one
+  gROOT->ProcessLine("t.Loop()");
+  //gROOT->ProcessLine(".q");
+  gROOT->Reset();
+  
+  
+
+gSystem->cd("./scripts");
+
+  
+  //execute code to get t0 from each wire in each plane
+  gSystem->Exec("root -l -q -b get_wire_tzero.C");
+ 
+  //execute code to update pdc parameter file
+  gSystem->Exec("root -l -q update_pdcparam.C");
+
+  //execute code to get t0 corrected drift times
+  gSystem->Exec("root -l -q get_pdc_time_histo_tzero_corrected.C");
+  
+ //execute code to update LookUp Table
+  gSystem->Exec("root -l -q get_LookUp_Values.C");
+
+  
+  
+}
diff --git a/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C b/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C
new file mode 100644
index 0000000000000000000000000000000000000000..52f7457e72daa46773b22b927eff759f93b205de
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C
@@ -0,0 +1,126 @@
+/*This code produces a lookup table necessary to convert drift times to
+  drift distances in the shms drift chambers
+*/
+
+#define NPLANES 12
+#define TOTAL_BINS 137
+
+void get_LookUp_Values() {
+
+   
+  //Read Run Number from txt file
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;
+ 
+  //Open root file containing drift time histos
+  TFile *f = new TFile(Form("../root_files/run%d/shms_dc_t0_corrected_%d.root", run_NUM, run_NUM),"READ");
+ 
+  //Define histogram array
+  TH1F *h[NPLANES];
+ 
+  //Define the number Drift Chamber planes
+  TString plane_names[NPLANES]={"1u1", "1u2", "1x1", "1x2", "1v1", "1v2", "2v2", "2v1", "2x2", "2x1", "2u2", "2u1"};
+ 
+  //Declare bin properties
+  int bin_t0[NPLANES];
+  int bin_final[NPLANES];					/*Array to store the bin number corresponding to last bin*/
+  int bin_Content[NPLANES];          /*Array to store the content (# events) corresponding to the bin with maximum content*/
+  double binContent_TOTAL[NPLANES];     /*Array to store sum of all bin contents for each plane*/
+  double binSUM[NPLANES];
+  int bin;
+  int binx;
+  double lookup_value[NPLANES];           /*Array to store lookup values for each plane*/ 
+  
+  //Create an output file to store lookup values  
+  ofstream ofs;
+  TString lookup_table = "../../../PARAM/SHMS/DC/pdriftmap_new.param";
+  ofs.open (lookup_table);
+ 
+ 
+  //Set headers for subsequent columns of data
+  ofs << Form("; Lookup Table: RUN %d", run_NUM) << "\n";
+  ofs << "; number of bins in Carlos's time to distance lookup table" << "\n";
+  ofs << Form("pdriftbins = %d", TOTAL_BINS+1) << "\n";
+  ofs << "; number of 1st bin in Carlos's table in ns" << "\n";
+  ofs << "pdrift1stbin=0" << "\n";
+  ofs << "; bin size in ns" << "\n";
+  ofs << "pdriftbinsz=2" << "\n";
+ 
+ 
+ 
+  //Loop over each plane of shms Drift Chambers (DC1 & DC2)
+
+  for (int ip=0; ip<NPLANES; ip++){
+   
+    TString drift_time_histo = "pdc"+plane_names[ip]+"_time: t0_corr"; 
+
+    //Get drift time histograms from root file
+    h[ip] = (TH1F*)f->Get(drift_time_histo);
+
+    //Get bin corresponding to t0 = 0 ns
+    bin_t0[ip] = h[ip]->GetXaxis()->FindBin(0.0);
+   
+    //Get final bin 
+    bin_final[ip] = bin_t0[ip] + TOTAL_BINS;
+   
+   
+   
+    //Find total BIN Content over entire integration range
+    binContent_TOTAL[ip] = 0; //set counter to zero
+
+    for (bin = bin_t0[ip]; bin <= bin_final[ip]; bin ++ ) {
+     
+      bin_Content[ip] = h[ip] -> GetBinContent(bin);
+     
+      binContent_TOTAL[ip] = bin_Content[ip] + binContent_TOTAL[ip];
+     
+      //   cout << "Bin: " << bin << endl;
+      //   cout << "Content " << bin_Content[ip] << endl;
+      //   cout << "Content SUM : " << binContent_TOTAL[ip] << endl;
+    }
+   
+    TString headers = "pwc" + plane_names[ip] + "fract=";      
+    ofs << headers;	  
+   
+    //Calculate LookUp Value
+   
+    binSUM[ip] = 0.0;
+    int bin_count = 0;
+   
+    for (bin = bin_t0[ip]; bin <= bin_final[ip]; bin++) {
+     
+      bin_Content[ip] = h[ip] -> GetBinContent(bin);
+      binSUM[ip] = binSUM[ip] + bin_Content[ip];
+     
+     
+      lookup_value[ip] = binSUM[ip] / binContent_TOTAL[ip];
+      bin_count = bin_count + 1;
+     
+      if (bin_count < = 8 ) {
+	ofs << setprecision(5) << lookup_value[ip] << fixed << ",";
+      }
+     
+      else if (bin_count >8 && bin_count < 138) {
+	ofs << setprecision(5) << lookup_value[ip] << ((bin_count+1) % 10 ? "," : "\n") << fixed; 
+      }
+      else {
+	ofs << setprecision(5) << lookup_value[ip] << fixed << endl;	  
+      }
+     
+    }
+
+  }                                            
+ 
+}
+
+
+	 
+  
+
+
+
+
+
+
diff --git a/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo.C b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo.C
new file mode 100644
index 0000000000000000000000000000000000000000..87669b2bc34f2bc3b918c65ad23e6ff5f43ec961
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo.C
@@ -0,0 +1,93 @@
+//Script to add necessary drift time histograms/plane from original root file to new root file
+
+
+#define NPLANES 12
+
+void get_pdc_time_histo()
+{
+
+  //Read Run Number from txt file
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;
+
+  TString file_name = "../../../ROOTfiles/shms_replay_%d.root";
+
+  //Create RUN Directories if they dont exist
+  char *dir0 = Form("mkdir -p ../root_files/run%d", run_NUM);
+  char *dir1 = Form("mkdir -p ../data_files/run%d", run_NUM);
+
+  if (system(dir0 || dir1) != 0) {
+    system(dir0);
+    system(dir1);
+  }
+
+  //open file
+  TFile *f = new TFile(Form(file_name.Data(), run_NUM), "READ");
+
+  //create new file
+  TFile *g = new TFile(Form("../root_files/run%d/shms_dc_time_%d.root", run_NUM, run_NUM), "RECREATE"); // create new file to store histo
+
+  f->cd();
+
+  //Get the tree
+  TTree *tree = (TTree*)f->Get("T");
+  TString SPECTROMETER="P";
+  TString DETECTOR="dc";
+  TString plane_names[NPLANES]={"1u1", "1u2", "1x1", "1x2", "1v1", "1v2", "2v2", "2v1", "2x2", "2x1", "2u2", "2u1"};
+  
+  //Declare Variables to Loop Over
+  Int_t Ndata[NPLANES];
+  Double_t pdc_time[NPLANES][1000];
+    
+  //Declare Histogram array to store AVG drift times per plane
+  TH1F* h[NPLANES];
+	
+  g->cd();
+	
+  //Loop over each plane
+  for(Int_t ip=0; ip<NPLANES; ip++){
+    TString base_name = SPECTROMETER+"."+DETECTOR+"."+plane_names[ip];
+    TString ndata_name = "Ndata."+base_name+".time";
+    TString drift_time = base_name+".time";
+  
+    TString drift_time_histo = "pdc"+plane_names[ip]+"_time"; 
+    TString title = "pdc"+plane_names[ip]+"_drifttime";
+     
+    //Set Branch Address
+    tree->SetBranchAddress(drift_time, &pdc_time[ip][0]);   
+    tree->SetBranchAddress(ndata_name, &Ndata[ip]);  /* Ndata represents number of triggers vs number of hits that each trigger produced.
+							A hit is refer to as when a trigger(traversing particle), ionizes the WC gas and ionized
+							electrons reach the rearest sense wire, producing a detectable signal in the O'scope */
+  
+    //Create Histograms
+    h[ip] = new TH1F(drift_time_histo, title, 200, -50, 350);  //set time to 400 ns/200 bins = 2ns/bin
+  }
+ 
+ 
+  //Declare number of entries in the tree
+  Long64_t nentries = tree->GetEntries(); //number of triggers (particles that passed through all 4 hodo planes)
+ 
+  //Loop over all entries
+  for(Long64_t i=0; i<nentries; i++)
+    {
+      tree->GetEntry(i);
+    
+    
+      //Loop over number of hits for each trigger in each DC plane 
+      for(ip=0; ip<NPLANES; ip++){
+       
+    
+	for(Int_t j=0; j<Ndata[ip]; j++){
+	
+	  h[ip]->Fill(pdc_time[ip][j]); 
+	}
+       
+      }
+
+    }
+
+  //Write histograms to file
+  g->Write();
+}
diff --git a/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected.C b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected.C
new file mode 100644
index 0000000000000000000000000000000000000000..fa028104dce5ed683e0bc7ac88b8147040544abd
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected.C
@@ -0,0 +1,107 @@
+//Script to add t0 correction to SHMS DC drift times
+
+#define NPLANES 12
+
+void get_pdc_time_histo_tzero_corrected()
+{
+
+	  
+  //read run number from input file
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;   
+
+  TString run = Form("run%d", run_NUM);
+
+
+	  //open file
+	  TFile *f = new TFile(Form("../../../ROOTfiles/shms_replay_%d.root", run_NUM), "READ");
+
+	  //updates file
+	  TFile *g = new TFile(Form("../root_files/run%d/shms_dc_t0_corrected_%d.root", run_NUM, run_NUM), "UPDATE"); // create new file to store histo
+
+      f->cd();
+
+     //Get the tree
+     TTree *tree = (TTree*)f->Get("T");
+
+	TString SPECTROMETER="P";
+	TString DETECTOR="dc";
+	TString plane_names[NPLANES]={"1u1", "1u2", "1x1", "1x2", "1v1", "1v2", "2v2", "2v1", "2x2", "2x1", "2u2", "2u1"};
+
+    //Declare Variables to Loop Over
+    Int_t Ndata[NPLANES];
+    Double_t pdc_time[NPLANES][1000];
+    
+    //Declare Histogram array to store AVG drift times per plane
+    TH1F* h[NPLANES];
+	
+	g->cd();
+	
+	//Loop over each plane
+	for(Int_t ip=0; ip<NPLANES; ip++){
+		TString base_name = SPECTROMETER+"."+DETECTOR+"."+plane_names[ip];
+		TString ndata_name = "Ndata."+base_name+".time";
+		TString drift_time = base_name+".time";
+
+		TString drift_time_histo = "pdc"+plane_names[ip]+"_time: t0_corr"; 
+        TString title = "pdc"+plane_names[ip]+"_drifttime: t0-corrected";
+     
+     //Set Branch Address
+     tree->SetBranchAddress(drift_time, pdc_time[ip]);   
+     tree->SetBranchAddress(ndata_name, &Ndata[ip]);  /* Ndata represents number of triggers vs number of hits that each trigger produced.
+                                                      A hit is refer to as when a trigger(traversing particle), ionizes the WC gas and ionized
+                                                      electrons reach the rearest sense wire, producing a detectable signal in the O'scope */
+	
+     //Create Histograms
+     h[ip] = new TH1F(drift_time_histo, title, 200, -50, 350);  //set time to 400 ns/200 bins = 2ns/bin
+}
+	
+	
+	//open and read tzero data file
+    ifstream ifs;
+    ifs.open("../data_files/" + run + "/tzero.dat");
+    
+	double t_zero_offsets[NPLANES];
+
+     for (ip=0; ip < 12; ip++) {	 
+	 ifs >> t_zero_offsets[ip];  //add tzero offsets to array
+   }
+   
+    //Declare number of entries in the tree
+    Long64_t nentries = tree->GetEntries(); //number of triggers (particles that passed through all 4 hodo planes)
+
+    //Loop over all entries
+    for(Long64_t i=0; i<nentries; i++)
+    {
+	tree->GetEntry(i);
+    
+    
+    //Loop over number of hits for each trigger in each DC plane 
+    for(ip=0; ip<NPLANES; ip++){
+   
+ 
+    
+    for(Int_t j=0; j<Ndata[ip]; j++){
+	
+	h[ip]->Fill(pdc_time[ip][j] - t_zero_offsets[ip]); //add t0 offset correction 
+       }
+      
+      
+
+			
+	
+	}
+
+}
+
+
+
+		
+//Write histograms to file
+g->Write();
+
+
+
+}
diff --git a/CALIBRATION/shms_dc_calib/scripts/get_wire_tzero.C b/CALIBRATION/shms_dc_calib/scripts/get_wire_tzero.C
new file mode 100644
index 0000000000000000000000000000000000000000..1c6974e2e6f620f564165387f005b399331d4f16
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/scripts/get_wire_tzero.C
@@ -0,0 +1,397 @@
+
+
+/*Script to extract reference time "t0"  for each sense wire in a given HMS Wire Chamber Plane with COSMIC RUNS.  
+20% (MAX BIN CONTENT) is calculated per wire, and the corresponding bin is fitted linearly about +/- 
+a certain number of bins and this fit is extrapolated to y=0(x-axis). The extrapolated value is take to be t0*/
+
+#include <vector>
+#include <TMath>
+
+#define NPLANES 12
+
+void get_wire_tzero()
+{
+  using namespace std;
+
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;   
+
+  //check if tzero_weighted_avg text file exists (if it does, DELETE IT, otherwise new values will be appended to it, in addition to pre-existing tzero values)
+  std::ifstream stream(Form("../data_files/run%d/tzero_weighted_avg_run%d.txt",run_NUM, run_NUM));
+ if (stream.good())
+  {
+  gSystem->Exec(Form("rm ../data_files/run%d/tzero_weighted_avg_run%d.txt",run_NUM, run_NUM));
+  }
+
+ TString run = Form("run%d", run_NUM);
+
+ //Declare plane names to loop over
+ TString plane_names[NPLANES]={"1u1", "1u2", "1x1", "1x2", "1v1", "1v2", "2v2", "2v1", "2x2", "2x1", "2u2", "2u1"};
+
+ //Declare a root file array to store individual DC cell drift times
+ TString root_file;
+ TFile *f[NPLANES];
+   
+ int total_wires;  //integer to store total sense wires for a plane chosen by the user
+        
+ //Loop over all planes
+ for (int ip = 0; ip < NPLANES; ip++){
+
+   //READ root file
+   root_file = "../root_files/"+run+"/shms_DC_"+plane_names[ip]+Form("_%d.root",run_NUM);
+   f[ip] = new TFile(root_file, "READ");
+
+   //Create a file output file stream object to write t0 values to data file
+   ofstream ofs;
+   TString t_zero_file = "../data_files/" + run + "/hdc_"+plane_names[ip]+Form("tzero_run%d.dat", run_NUM);
+   ofs.open (t_zero_file);
+
+   //Set headers for subsequent columns of data
+   ofs << "#WIRE " << "   "  << "t0" << "   " << "t0_err" << "   " << " entries " << endl;
+
+   //Create root file to store fitted wire drift times histos and "t0 vs. wirenum"
+   TString output_root_file = "../root_files/"+run+"/shmsDC_"+plane_names[ip]+Form("run%d_fitted_histos.root", run_NUM);
+   TFile *g = new TFile(output_root_file,"RECREATE");
+
+   f[ip]->cd();  //change to file containing the wire drift times histos
+ 
+   int total_wires;  //integer to store total sense wires for a plane chosen by the user
+   
+   //Set variables depending on which plane is being studied
+   if(ip == 0 || ip == 1 || ip == 4 || ip == 5 || ip == 6 || ip == 7 || ip == 10 || ip == 11) {
+     TH1F *cell_dt[107]; //declare array of histos to store drift times     
+     total_wires=107; 
+
+     //Declare bin properties for given sense wires in a plane
+
+     int bin_max[107];                    /*Array to store the bin number corresponding to the drift time distribution peak*/
+     int bin_maxContent[107];             /*Array to store the content (# events) corresponding to the bin with maximum content*/
+     double time_max[107];                /*Array to store the x-axis(drift time (ns)) corresponding to bin_max*/
+     double twenty_perc_maxContent[107];  /*Array to store 20% of maximum bin content (peak)*/						     
+     double ref_time[107];               /*Array to store reference times for each sense wire*/
+
+   }
+
+   else if(ip == 2 || ip == 3 || ip == 8 || ip == 9) {
+     TH1F *cell_dt[79];
+     total_wires=79;      
+   
+     int bin_max[79];                                 
+     int bin_maxContent[79];                           
+     double time_max[79];                               
+     double twenty_perc_maxContent[79];                
+     double ref_time[79];          
+
+   }	   
+   
+ 	
+   /*Get wire histos from root file and loop over each 
+     sense wire of a plane in shms Drift Chambers (DC1 or DC2)*/
+ 
+   for (int sensewire=1; sensewire<=total_wires; sensewire++){
+
+     //Get title of histos in root file
+     TString drift_time_histo = Form("wire_%d", sensewire); 
+ 
+     //Get drift time histograms from root file
+     cell_dt[sensewire-1] = (TH1F*)f[ip]->Get(drift_time_histo);
+
+     
+     //Get bin with Maximum Content
+     bin_max[sensewire-1] = cell_dt[sensewire-1]->GetMaximumBin();
+
+     //Get content of bin_max
+     bin_maxContent[sensewire-1] = cell_dt[sensewire-1]->GetBinContent(bin_max[sensewire-1]);
+     
+     //Get time (ns) [x-axis] corresponding to bin_max 
+     time_max[sensewire-1] = cell_dt[sensewire-1]->GetXaxis()->GetBinCenter(bin_max[sensewire-1]);
+     
+     //Calculate 20% of max content
+     twenty_perc_maxContent[sensewire-1] = bin_maxContent[sensewire-1] * 0.20;
+     
+
+   }
+   
+   
+   
+   //****************************************************//
+   //Determine  which bin has around 20% max_BinContent *//
+   //****************************************************//
+   
+   
+   //Declarations
+   int content_bin;      //stores content for each bin
+   int counts;           //a counter used to count the number of bins that have >20% max bin content for a plane 
+   int bin;              //store bin number
+   int j;                //jth bin, used to loop over n bins 
+   
+   //Declare vector arrays 
+   vector<int> content;               //stores bin content
+   vector <int> bin_num;           //stores bin number
+   
+   
+   //Loop over each wire 
+   for(sensewire=1; sensewire<=total_wires; sensewire++) {
+     
+     //Loop over each bin for individual wire drift time histo
+     for(bin=0; bin < bin_max[sensewire-1]; bin++) {
+       
+       content_bin = cell_dt[sensewire-1]->GetBinContent(bin);              //get bin content for all bins in a wire
+       
+       content.push_back(content_bin);                                      //add bin content to array
+       bin_num.push_back(bin);                                              //add bin number to array
+       
+       
+       // check if 2 bin contents have been stored and examine if these contents exceed or not 20% of peak
+       if (content.size() == 2) {
+	 
+	 //initialize counter to count how many bin contents >= 20%
+	 counts = 0;
+	 
+	 // Loop over 2 bin contents stored in array content
+	 for (j=0; j<2; j++){
+	   
+	   if(content[j] > =  twenty_perc_maxContent[sensewire-1]){
+	     counts = counts+1;
+             
+	     if(counts >= 2) { goto stop;}
+	     
+	     
+	   }
+	   
+	   content.clear();
+	   bin_num.clear();
+	   
+	 }
+	 
+       }
+     }
+     
+     //Print the time(ns) and BIN NUM corresponding to 20% of MAX content 
+     //if 2/2 elements exceeds 20% of Max content (for each plane)
+     
+   stop:
+     ref_time[sensewire-1] = cell_dt[sensewire-1] ->GetXaxis() -> GetBinCenter(bin_num[0]); //Get time corresponding ~20% Max BIN CONTENT  
+     
+     //cout << " ******* " << "Wire " << sensewire << " ******* " << endl;
+     //cout << "time (20% of Max BIN): " << ref_time[sensewire-1] << " ns" << endl;
+     //cout << "BIN: " << bin_num[0] << endl;
+     
+     
+     //*********************************************************//
+     //*******Extract the "t0" Using a Fitting Procedure********//
+     //*********************************************************//
+     
+     //Declarations
+     int time_init;           //start fit value 
+     int time_final;          //end fit value
+     int t_zero;
+     int entries;             //entries for each wire
+     
+     double m;                //slope
+     double y_int;            //y-intercept
+     double m_err;
+     double y_int_err;
+     double t_zero_err;
+     
+     //Get time corresponding to bin (fit range) 
+     time_init = cell_dt[sensewire-1] -> GetXaxis() -> GetBinCenter(bin_num[0]-5); //choose bin range over which to fit
+     time_final = cell_dt[sensewire-1] -> GetXaxis() -> GetBinCenter(bin_num[0]+5); 
+     
+     //Create Fit Function
+     TF1* tZero_fit = new TF1("tZero_fit", "[0]*x + [1]", time_init, time_final);
+     
+     //Set Parameter Names and Values
+     tZero_fit->SetParName(0, "slope");
+     tZero_fit->SetParName(1, "y-int");
+     tZero_fit->SetParameter(0, 1.0);
+     tZero_fit->SetParameter(1, 1.0);
+     
+     //Fit Function in specified range
+     cell_dt[sensewire-1]->Fit("tZero_fit", "QR");
+     
+     //Get Parameters and their errors
+     m = tZero_fit->GetParameter(0);
+     y_int = tZero_fit->GetParameter(1);
+     m_err = tZero_fit->GetParError(0);
+     y_int_err = tZero_fit->GetParError(1);
+     
+     //Calculate error on t0 using error propagation method of expanding partial derivatives
+     t_zero = - y_int/m;
+     t_zero_err = sqrt(y_int_err*y_int_err/(m*m) + y_int*y_int*m_err*m_err/(m*m*m*m) );
+     entries = cell_dt[sensewire-1]->GetEntries();  //number of entries (triggers) per wire
+     
+     //Write "t0" values to file
+     ofs << sensewire << "          " << t_zero << "          " << t_zero_err << "          " << entries << endl;
+     
+     //Change to output root file and write fitted histos to file
+     g->cd();
+     cell_dt[sensewire-1]->Write();
+     
+   }
+   
+   // Make Plot of t0 versus Wire Number 
+   
+   TCanvas *t = new TCanvas("t", "", 2000,500);
+   t->SetGrid();
+
+   
+   TGraphErrors *graph = new TGraphErrors(t_zero_file, "%lg %lg %lg");
+   graph->SetName("graph");
+   TString title = "DC"+plane_names[ip]+": t0 versus sensewire";
+   graph->SetTitle(title);
+   graph->SetMarkerStyle(20);
+   graph->SetMarkerColor(1);
+   graph->GetXaxis()->SetLimits(0., total_wires);
+   graph->GetXaxis()->SetTitle("Wire Number");
+   graph->GetXaxis()->CenterTitle();
+   graph->GetYaxis()->SetTitle("t-Zero (ns)");
+   graph->GetYaxis()->CenterTitle();
+   graph->GetYaxis()->SetRangeUser(-50.0, 50.0);
+   graph->Draw("AP");
+   t->Update();
+   t->Write(title);   //write to a root file
+   
+   //close dat file
+   ofs.close();
+   //save plots
+   //TString tzero_plots = "plots/"+run_NUM +"/hdc"+plane_names[ip]+Form("TESTING_tzero_v_wire_%d.eps", run);
+   //t->SaveAs(tzero_plots);
+   
+   
+   //*****************************************************************************************//
+   //        CALCULATE THE "t0s" WEIGHTED AVERAGE FOR WIRE DRIFT TIMES WITH ENTRIES > = 300   //
+   //*****************************************************************************************//
+   
+   
+   //open t0 dat file
+   ifstream ifs;
+   ifs.open (t_zero_file);
+   string line;
+   
+   //open new data file to write updated t0 values
+   TString t_zero_file_corr = "../data_files/" + run + "/hdc_"+plane_names[ip]+Form("tzero_run%d_updated.txt", run_NUM);
+   ofs.open(t_zero_file_corr);
+   ofs << " #Wire " << "     " << " t_zero " << "     " << " t_zero_err " << "     " << " entries " << endl; 
+   
+   //Initialize variables related to weighted avg
+   double sum_NUM;  //numerator of weighted avg
+   double sum_DEN;   //denominator of weighted avg
+   double weighted_AVG;
+   double weighted_AVG_err; 
+  
+   //set them to zero to start sum inside while loop 
+   sum_NUM = 0.0;
+   sum_DEN = 0.0;
+   
+   weighted_AVG;
+   weighted_AVG_err; 
+   
+   //read line bt line the t_zero_file
+   while(getline(ifs, line)) {
+     if(!line.length()|| line[0] == '#')
+       continue;
+     //	sensewire = 0, t_zero = 0.0, t_zero_err = 0.0, entries = 0 ; //set values to zero
+     
+     sscanf(line.c_str(), "%d %d %lf %d", &sensewire, &t_zero, &t_zero_err, &entries); //assign each of the variables above a data in the t_zero_file
+     
+     //Check if entries for each sensewire exceeds a certain number of events
+     
+     if (entries>300 && t_zero < 30) {
+	
+       //Calculate the weighted average of t0s
+       sum_NUM = sum_NUM + t_zero/(t_zero_err*t_zero_err);
+       sum_DEN = sum_DEN + 1.0/(t_zero_err*t_zero_err);      
+       
+       //cout << "sum_NUM : " << sum_NUM << endl;  
+       //cout << "sum_DEN : " << sum_DEN << endl;  
+       
+    
+
+
+       ofs << sensewire << "        " << t_zero << "        " << t_zero_err << "        " << entries << endl;
+
+       
+       
+     }
+     
+   }
+   
+   
+   
+   weighted_AVG = sum_NUM / sum_DEN;
+   weighted_AVG_err = sqrt( 1.0 / sum_DEN );
+   
+   
+   
+   //open new data file to write weighted average of updated t_zero values
+   
+   TString t_zero_AVG = Form("../data_files/run%d/tzero_weighted_avg_run%d.txt", run_NUM, run_NUM);
+   
+   ofstream ofile;
+   ofile.open(t_zero_AVG, std::ofstream::out | std::ofstream::app); //open file in and output and append mode
+   
+   ofile << " #weighted_AVG " << "     " << " DC plane: " <<  plane_names[ip] << endl; 
+   ofile << weighted_AVG << endl;
+   
+  
+   
+   
+   
+   ifs.close();
+
+   // Make Plot of t0 versus Wire Number for entries > 300 events
+
+   TCanvas *t1 = new TCanvas("t1", "", 2000,500);
+   t1->SetGrid();
+
+   //TString mygraph = "hdc"+plane_names[ip]+Form("_t_zero_run%d.txt", run);
+   TGraphErrors *graph1 = new TGraphErrors(t_zero_file_corr, "%lg %lg %lg");
+   graph1->SetName("graph1");
+   TString title1 = "hdc"+plane_names[ip]+": t0 versus sensewire_corrected";
+   graph1->SetTitle(title1);
+   graph1->SetMarkerStyle(20);
+   graph1->SetMarkerColor(1);
+   //graph1->GetXaxis()->SetLimits(0., total_wires);
+   graph1->GetXaxis()->SetTitle("Wire Number");
+   graph1->GetXaxis()->CenterTitle();
+   graph1->GetYaxis()->SetTitle("t-Zero (ns)");
+   graph1->GetYaxis()->CenterTitle();
+   graph1->GetYaxis()->SetRangeUser(-50.0, 50.0);
+   graph1->Draw("AP");
+   t1->Update();
+
+   // Draw TLine
+   TLine *wght_avg = new TLine(t1->GetUxmin(), weighted_AVG, t1->GetUxmax(), weighted_AVG);
+   wght_avg->SetLineColor(kRed);
+   wght_avg->SetLineWidth(2);
+   wght_avg->SetLineStyle(2);
+   wght_avg->Draw();
+   
+   //Add text to canvas
+   TLatex* ltx1 =  new TLatex();
+   ltx1->DrawLatex(t1->GetUxmax()*0.75,40, Form("Weighted Average = %lf #pm %lf ns", weighted_AVG, weighted_AVG_err) );
+   
+   t1->Write(title1);   //write canvas to a root file
+   
+   ofs.close();  //close data file
+
+   
+
+
+
+
+
+
+
+
+ }
+ 
+ 
+
+
+
+
+}
diff --git a/CALIBRATION/shms_dc_calib/scripts/input_RUN.txt b/CALIBRATION/shms_dc_calib/scripts/input_RUN.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ce9cd4900e49a669fa6f04215ef6ad78dfeff5d0
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/scripts/input_RUN.txt
@@ -0,0 +1 @@
+437
diff --git a/CALIBRATION/shms_dc_calib/scripts/update_pdcparam.C b/CALIBRATION/shms_dc_calib/scripts/update_pdcparam.C
new file mode 100644
index 0000000000000000000000000000000000000000..bc10993b4a83700935ff4b582845f157ae759d37
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/scripts/update_pdcparam.C
@@ -0,0 +1,111 @@
+//This scirpt will produce an updated version of hdc.param file, with
+//the necessary t-zero corrections
+#define time_shift 1280.0
+
+void update_pdcparam()
+{
+	  
+  //read run number from input file
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;   
+
+  TString run = Form("run%d", run_NUM);
+
+    int lin_NUM = 0;
+	string t_zero[12];
+	double tzero[12];
+	string line;
+   //open t_zero file
+   ifstream ifs;
+   ifs.open("../data_files/"+ run +"/tzero_weighted_avg_" + run + ".txt");
+   
+
+while (getline(ifs, line))
+  {
+    
+    istringstream ss(line);
+    char id;
+    
+    if ( ss >> t_zero)
+      {
+		
+	if (id != '#') //skip comments   
+	  {
+	    //count lines  
+	    lin_NUM = lin_NUM + 1;
+	    cout << lin_NUM << endl;    
+	       t_zero[lin_NUM-1] = line;
+	       tzero[lin_NUM-1] = atof(t_zero[lin_NUM-1].c_str()); // convert string to double
+	    cout << tzero[lin_NUM-1] << endl;
+	  }       
+	
+      }     
+    
+  }
+ifs.close();
+
+//Update pdc.param parameter file 
+TString pdc_param = "../../../PARAM/SHMS/DC/pdc_tracking_new.param";
+ofstream ofs(pdc_param);
+
+// ofs << ";---------------------------------------------------------------------" << endl;
+// ofs <<"; SHMS_TRACKING"<< endl;
+// ofs <<"; CTP parameter file containing all tracking parameters for the SHMS "<< endl;
+// ofs <<";----------------------------------------------------------------------"<< endl;
+// ofs <<"; sigma of wire chamber resolution for each plane "<< endl;
+// ofs <<" pdc_sigma = 0.020 "<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"             0.020"<< endl;
+// ofs <<"  pdc_tdc_min_win = -25000,-25000,-25000,-25000,-25000,-25000 "<< endl;
+// ofs <<"  		    -25000,-25000,-25000,-25000,-25000,-25000 "<< endl;
+// ofs <<"  pdc_tdc_max_win = 25000,25000,25000,25000,25000,25000 "<< endl;
+// ofs <<"                    25000,25000,25000,25000,25000,25000 "<< endl;
+// ofs <<"; hms drift chamber tdc's time per channel "<< endl;
+// ofs <<"        pdc_tdc_time_per_channel = -0.10 "<< endl;
+// ofs <<"; hms zero time for drift chambers	!DECREASING this number moves the hdtime plots to LOWER time. "<< endl;
+// ofs <<"pdc_plane_time_zero =  ";
+
+
+//*****************************************************************
+//output all t_0 corrected values to pdc.param    
+for (int i=0; i<12; i++) { 
+{
+if (i < = 5){
+ofs  <<  time_shift - tzero[i]   << ","; 
+}
+if (i ==6) {ofs << "\n" << time_shift - tzero[6]  << ",";}
+else if (i>6 && i <11) {
+ofs << time_shift - tzero[i] << ","; 
+}
+if (i==11){ ofs << time_shift - tzero[i] << endl;}
+}
+}
+//*****************************************************************
+// ofs << "\n";
+// ofs <<"; Dave Abbott's wire velocity correction "<< endl;
+// ofs <<"pdc_wire_velocity = 12.0 "<< endl;
+// ofs <<"pdc_central_time = 7,9,3,4,6,5 "<< endl;
+// ofs << "                   7,5,3,4,6,6" << endl;
+ofs.close();
+
+//create a t_zero data file copy in another directory that will also use these values
+TString tzero_dat = "../data_files/" + run + "/tzero.dat";
+ofstream ofs(tzero_dat);
+
+for (int i=0; i<12; i++) 
+{
+ofs  <<  tzero[i]  << endl; 
+}
+ 
+}
diff --git a/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.C b/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.C
new file mode 100644
index 0000000000000000000000000000000000000000..7d8cb9455fb7e00c9cb96c1236408d20665e900c
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.C
@@ -0,0 +1,282 @@
+#define wire_drift_times_cxx
+#include "wire_drift_times.h"
+#include <TH2.h>
+#include <TStyle.h>
+#include <TCanvas.h>
+#define NPLANES 12
+
+void wire_drift_times::Loop()
+{
+  //   In a ROOT session, you can do:
+  //      Root > .L wire_drift_times.C
+  //      Root > wire_drift_times t
+  //      Root > t.GetEntry(12); // Fill t data members with entry number 12
+  //      Root > t.Show();       // Show values of entry 12
+  //      Root > t.Show(16);     // Read and show values of entry 16
+  //      Root > t.Loop();       // Loop on all entries
+  //
+
+  //     This is the loop skeleton where:
+  //    jentry is the global entry number in the chain
+  //    ientry is the entry number in the current Tree
+  //  Note that the argument to GetEntry must be:
+  //    jentry for TChain::GetEntry
+  //    ientry for TTree::GetEntry and TBranch::GetEntry
+  //
+  //       To read only selected branches, Insert statements like:
+  // METHOD1:
+  //    fChain->SetBranchStatus("*",0);  // disable all branches
+  //    fChain->SetBranchStatus("branchname",1);  // activate branchname
+  // METHOD2: replace line
+  //    fChain->GetEntry(jentry);       //read all branches
+  //by  b_branchname->GetEntry(ientry); //read only this branch
+  if (fChain == 0) return;
+
+  Long64_t nentries = fChain->GetEntriesFast();
+
+  //Read Run Number from txt file
+  int run_NUM;
+  TString f0 = "input_RUN.txt";
+  ifstream infile(f0);
+  infile >> run_NUM;
+
+  TString run = Form("run%d", run_NUM);
+  //Declare plane names to loop over
+  TString plane_names[NPLANES]={"1u1", "1u2", "1x1", "1x2", "1v1", "1v2", "2v2", "2v1", "2x2", "2x1", "2u2", "2u1"};
+
+  //Declare a root file array to store individual DC cell drift times
+  TString root_file[NPLANES];
+  TFile *g[NPLANES];
+   
+  //integer to store total sense wires for a plane chosen by the user
+  static const Int_t total_wires_x  = 79;  
+  static const Int_t total_wires_uv = 107;
+     
+  Long64_t nbytes = 0, nb = 0;
+   
+  //Loop over all planes
+  for (int ip = 0; ip < NPLANES; ip++){
+
+    //Initialize a root file array to store individual DC cell drift times
+    root_file[ip] = "../root_files/" + run + "/shms_DC_"+plane_names[ip]+Form("_%d.root", run_NUM);
+    g[ip] = new TFile(root_file[ip], "RECREATE");
+    g[ip]->cd();
+
+    /*========================PLANES 1X1,1X2,2X1,2X2=====================================*/
+	
+    //If specific planes are encountered, treat them as follows:
+
+    /*PLANE 1U1, 1V1, 2U1, 2V1*/				
+    //If specific planes are encountered, treat them as follows:
+    if(ip == 0 || ip == 1 || ip == 4 || ip == 5 || ip == 6 || ip == 7 || ip == 10 || ip == 11) {
+
+      TH1F *cell_dt[total_wires_uv];    
+      TH2F *wire_vs_dt = new TH2F("wire_vs_dt", "", 200., -50., 350., 107., 0.,107.);
+    
+      //Initialize wire drift time histograms
+      for (int wirenum=1; wirenum<=total_wires_uv; wirenum++){
+	cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", 200., -50., 350.);
+      }
+	
+      //Loop over all entries (triggers or events)   
+      for (Long64_t jentry=0; jentry<nentries; jentry++) {
+	Long64_t ientry = LoadTree(jentry);
+	if (ientry < 0) break;
+	nb = fChain->GetEntry(jentry);   nbytes += nb;
+	// if (Cut(ientry) < 0) continue;
+ 
+	if (ip == 0) {
+	  for (int i=0; i< Ndata_P_dc_1u1_wirenum; i++){
+	    wirenum = int(P_dc_1u1_wirenum[i]);
+	    //cout << " wire num: " << P_dc_1u1_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_1u1_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_1u1_time[i]);
+	    wire_vs_dt->Fill(P_dc_1u1_time[i], P_dc_1u1_wirenum[i]);
+
+	  }
+	}
+							
+	if (ip == 1) {
+	  for (int i=0; i< Ndata_P_dc_1u2_wirenum; i++){
+	    wirenum = int(P_dc_1u2_wirenum[i]);
+	    //cout << " wire num: " << P_dc_1u2_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_1u2_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_1u2_time[i]);
+	    wire_vs_dt->Fill(P_dc_1u2_time[i], P_dc_1u2_wirenum[i]);
+
+	  }
+	}						
+			
+	if (ip == 4) {
+	  for (int i=0; i< Ndata_P_dc_1v1_wirenum; i++){
+	    wirenum = int(P_dc_1v1_wirenum[i]);
+	    //cout << " wire num: " << P_dc_1v1_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_1v1_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_1v1_time[i]);
+	    wire_vs_dt->Fill(P_dc_1v1_time[i], P_dc_1v1_wirenum[i]);
+
+	  }
+	}		
+			
+	if (ip == 5) {
+	  for (int i=0; i< Ndata_P_dc_1v2_wirenum; i++){
+	    wirenum = int(P_dc_1v2_wirenum[i]);
+	    //cout << " wire num: " << P_dc_1v2_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_1v2_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_1v2_time[i]);
+	    wire_vs_dt->Fill(P_dc_1v2_time[i], P_dc_1v2_wirenum[i]);
+
+	  }
+	}
+
+	if (ip == 6) {
+	  for (int i=0; i< Ndata_P_dc_2v2_wirenum; i++){
+	    wirenum = int(P_dc_2v2_wirenum[i]);
+	    //cout << " wire num: " << P_dc_2v2_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_2v2_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_2v2_time[i]);
+	    wire_vs_dt->Fill(P_dc_2v2_time[i], P_dc_2v2_wirenum[i]);
+
+	  }
+	}
+
+	if (ip == 7) {
+	  for (int i=0; i< Ndata_P_dc_2v1_wirenum; i++){
+	    wirenum = int(P_dc_2v1_wirenum[i]);
+	    //cout << " wire num: " << P_dc_2v1_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_2v1_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_2v1_time[i]);
+	    wire_vs_dt->Fill(P_dc_2v1_time[i], P_dc_2v1_wirenum[i]);
+
+	  }
+	}
+
+	if (ip == 10) {
+	  for (int i=0; i< Ndata_P_dc_2u2_wirenum; i++){
+	    wirenum = int(P_dc_2u2_wirenum[i]);
+	    //cout << " wire num: " << P_dc_2u2_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_2u2_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_2u2_time[i]);
+	    wire_vs_dt->Fill(P_dc_2u2_time[i], P_dc_2u2_wirenum[i]);
+
+	  }
+	}
+
+	if (ip == 11) {
+	  for (int i=0; i< Ndata_P_dc_2u1_wirenum; i++){
+	    wirenum = int(P_dc_2u1_wirenum[i]);
+	    //cout << " wire num: " << P_dc_2u1_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_2u1_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_2u1_time[i]);
+	    wire_vs_dt->Fill(P_dc_2u1_time[i], P_dc_2u1_wirenum[i]);
+
+	  }
+	}						
+					
+					
+					
+      }
+    }
+	
+    if(ip == 2 || ip == 3 || ip == 8 || ip == 9) {
+
+      TH1F *cell_dt[total_wires_x];    
+      TH2F *wire_vs_dt = new TH2F("wire_vs_dt", "", 200., -50., 350., 79., 0., 79.);
+    
+      //Initialize wire drift time histograms
+      for (int wirenum=1; wirenum<=total_wires_x; wirenum++){
+	cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", 200., -50., 350.);
+      }
+	
+      //Loop over all entries (triggers or events)   
+      for (Long64_t jentry=0; jentry<nentries; jentry++) {
+	Long64_t ientry = LoadTree(jentry);
+	if (ientry < 0) break;
+	nb = fChain->GetEntry(jentry);   nbytes += nb;
+	// if (Cut(ientry) < 0) continue;
+ 
+	if (ip == 2) {
+	  for (int i=0; i< Ndata_P_dc_1x1_wirenum; i++){
+	    wirenum = int(P_dc_1x1_wirenum[i]);
+	    //cout << " wire num: " << P_dc_1x1_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_1x1_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_1x1_time[i]);
+	    wire_vs_dt->Fill(P_dc_1x1_time[i], P_dc_1x1_wirenum[i]);
+
+	  }
+	}
+							
+	if (ip == 3) {
+	  for (int i=0; i< Ndata_P_dc_1x2_wirenum; i++){
+	    wirenum = int(P_dc_1x2_wirenum[i]);
+	    //cout << " wire num: " << P_dc_1x2_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_1x2_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_1x2_time[i]);
+	    wire_vs_dt->Fill(P_dc_1x2_time[i], P_dc_1x2_wirenum[i]);
+
+	  }
+	}						
+			
+	if (ip == 8) {
+	  for (int i=0; i< Ndata_P_dc_2x2_wirenum; i++){
+	    wirenum = int(P_dc_2x2_wirenum[i]);
+	    //cout << " wire num: " << P_dc_2x2_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_2x2_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_2x2_time[i]);
+	    wire_vs_dt->Fill(P_dc_2x2_time[i], P_dc_2x2_wirenum[i]);
+
+	  }
+	}		
+			
+	if (ip == 9) {
+	  for (int i=0; i< Ndata_P_dc_2x1_wirenum; i++){
+	    wirenum = int(P_dc_2x1_wirenum[i]);
+	    //cout << " wire num: " << P_dc_2x1_wirenum[i] << endl;
+	    //cout << "Time: " << P_dc_2x1_time[i] << endl;
+
+	    //Fill the Histograms
+	    cell_dt[wirenum-1]->Fill(P_dc_2x1_time[i]);
+	    wire_vs_dt->Fill(P_dc_2x1_time[i], P_dc_2x1_wirenum[i]);
+
+	  }
+	}						
+					
+					
+					
+      }
+    }
+					
+
+
+    //Write wire drift time histos to file
+    g[ip]->Write();
+    cout << "EVERYTHING OK in plane:" << ip << endl;	
+
+  }
+
+
+  //     cout << "\r          \r" << (float)sensewire / total_wires * 100.0 << "%" << flush; 
+
+}
diff --git a/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.h b/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.h
new file mode 100644
index 0000000000000000000000000000000000000000..0e6c0b22893f58fa59bb5198cf389088627806ec
--- /dev/null
+++ b/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.h
@@ -0,0 +1,545 @@
+//////////////////////////////////////////////////////////
+// This class has been automatically generated on
+// Tue Mar  7 17:30:40 2017 by ROOT version 5.34/36
+// from TTree T/Hall A Analyzer Output DST
+// found on file: ROOTfiles/pdc_replay_437.root
+//////////////////////////////////////////////////////////
+
+#ifndef wire_drift_times_h
+#define wire_drift_times_h
+
+#include <TROOT.h>
+#include <TChain.h>
+#include <TFile.h>
+
+// Header file for the classes stored in the TTree if any.
+
+// Fixed size dimensions of array or collections stored in the TTree if any.
+
+class wire_drift_times {
+public :
+
+   TTree          *fChain;   //!pointer to the analyzed TTree or TChain
+   Int_t           fCurrent; //!current Tree number in a TChain
+
+   // Declaration of leaf types
+   Int_t           Ndata_P_dc_1u1_dist;
+   Double_t        P_dc_1u1_dist[107];   //[Ndata.P.dc.1u1.dist]
+   Int_t           Ndata_P_dc_1u1_rawtdc;
+   Double_t        P_dc_1u1_rawtdc[107];   //[Ndata.P.dc.1u1.rawtdc]
+   Int_t           Ndata_P_dc_1u1_time;
+   Double_t        P_dc_1u1_time[107];   //[Ndata.P.dc.1u1.time]
+   Int_t           Ndata_P_dc_1u1_wirenum;
+   Double_t        P_dc_1u1_wirenum[107];   //[Ndata.P.dc.1u1.wirenum]
+   Int_t           Ndata_P_dc_1u2_dist;
+   Double_t        P_dc_1u2_dist[107];   //[Ndata.P.dc.1u2.dist]
+   Int_t           Ndata_P_dc_1u2_rawtdc;
+   Double_t        P_dc_1u2_rawtdc[107];   //[Ndata.P.dc.1u2.rawtdc]
+   Int_t           Ndata_P_dc_1u2_time;
+   Double_t        P_dc_1u2_time[107];   //[Ndata.P.dc.1u2.time]
+   Int_t           Ndata_P_dc_1u2_wirenum;
+   Double_t        P_dc_1u2_wirenum[107];   //[Ndata.P.dc.1u2.wirenum]
+   Int_t           Ndata_P_dc_1v1_dist;
+   Double_t        P_dc_1v1_dist[107];   //[Ndata.P.dc.1v1.dist]
+   Int_t           Ndata_P_dc_1v1_rawtdc;
+   Double_t        P_dc_1v1_rawtdc[107];   //[Ndata.P.dc.1v1.rawtdc]
+   Int_t           Ndata_P_dc_1v1_time;
+   Double_t        P_dc_1v1_time[107];   //[Ndata.P.dc.1v1.time]
+   Int_t           Ndata_P_dc_1v1_wirenum;
+   Double_t        P_dc_1v1_wirenum[107];   //[Ndata.P.dc.1v1.wirenum]
+   Int_t           Ndata_P_dc_1v2_dist;
+   Double_t        P_dc_1v2_dist[107];   //[Ndata.P.dc.1v2.dist]
+   Int_t           Ndata_P_dc_1v2_rawtdc;
+   Double_t        P_dc_1v2_rawtdc[107];   //[Ndata.P.dc.1v2.rawtdc]
+   Int_t           Ndata_P_dc_1v2_time;
+   Double_t        P_dc_1v2_time[107];   //[Ndata.P.dc.1v2.time]
+   Int_t           Ndata_P_dc_1v2_wirenum;
+   Double_t        P_dc_1v2_wirenum[107];   //[Ndata.P.dc.1v2.wirenum]
+   Int_t           Ndata_P_dc_1x1_dist;
+   Double_t        P_dc_1x1_dist[80];   //[Ndata.P.dc.1x1.dist]
+   Int_t           Ndata_P_dc_1x1_rawtdc;
+   Double_t        P_dc_1x1_rawtdc[80];   //[Ndata.P.dc.1x1.rawtdc]
+   Int_t           Ndata_P_dc_1x1_time;
+   Double_t        P_dc_1x1_time[80];   //[Ndata.P.dc.1x1.time]
+   Int_t           Ndata_P_dc_1x1_wirenum;
+   Double_t        P_dc_1x1_wirenum[80];   //[Ndata.P.dc.1x1.wirenum]
+   Int_t           Ndata_P_dc_1x2_dist;
+   Double_t        P_dc_1x2_dist[80];   //[Ndata.P.dc.1x2.dist]
+   Int_t           Ndata_P_dc_1x2_rawtdc;
+   Double_t        P_dc_1x2_rawtdc[80];   //[Ndata.P.dc.1x2.rawtdc]
+   Int_t           Ndata_P_dc_1x2_time;
+   Double_t        P_dc_1x2_time[80];   //[Ndata.P.dc.1x2.time]
+   Int_t           Ndata_P_dc_1x2_wirenum;
+   Double_t        P_dc_1x2_wirenum[80];   //[Ndata.P.dc.1x2.wirenum]
+   Int_t           Ndata_P_dc_2u1_dist;
+   Double_t        P_dc_2u1_dist[107];   //[Ndata.P.dc.2u1.dist]
+   Int_t           Ndata_P_dc_2u1_rawtdc;
+   Double_t        P_dc_2u1_rawtdc[107];   //[Ndata.P.dc.2u1.rawtdc]
+   Int_t           Ndata_P_dc_2u1_time;
+   Double_t        P_dc_2u1_time[107];   //[Ndata.P.dc.2u1.time]
+   Int_t           Ndata_P_dc_2u1_wirenum;
+   Double_t        P_dc_2u1_wirenum[107];   //[Ndata.P.dc.2u1.wirenum]
+   Int_t           Ndata_P_dc_2u2_dist;
+   Double_t        P_dc_2u2_dist[107];   //[Ndata.P.dc.2u2.dist]
+   Int_t           Ndata_P_dc_2u2_rawtdc;
+   Double_t        P_dc_2u2_rawtdc[107];   //[Ndata.P.dc.2u2.rawtdc]
+   Int_t           Ndata_P_dc_2u2_time;
+   Double_t        P_dc_2u2_time[107];   //[Ndata.P.dc.2u2.time]
+   Int_t           Ndata_P_dc_2u2_wirenum;
+   Double_t        P_dc_2u2_wirenum[107];   //[Ndata.P.dc.2u2.wirenum]
+   Int_t           Ndata_P_dc_2v1_dist;
+   Double_t        P_dc_2v1_dist[107];   //[Ndata.P.dc.2v1.dist]
+   Int_t           Ndata_P_dc_2v1_rawtdc;
+   Double_t        P_dc_2v1_rawtdc[107];   //[Ndata.P.dc.2v1.rawtdc]
+   Int_t           Ndata_P_dc_2v1_time;
+   Double_t        P_dc_2v1_time[107];   //[Ndata.P.dc.2v1.time]
+   Int_t           Ndata_P_dc_2v1_wirenum;
+   Double_t        P_dc_2v1_wirenum[107];   //[Ndata.P.dc.2v1.wirenum]
+   Int_t           Ndata_P_dc_2v2_dist;
+   Double_t        P_dc_2v2_dist[107];   //[Ndata.P.dc.2v2.dist]
+   Int_t           Ndata_P_dc_2v2_rawtdc;
+   Double_t        P_dc_2v2_rawtdc[107];   //[Ndata.P.dc.2v2.rawtdc]
+   Int_t           Ndata_P_dc_2v2_time;
+   Double_t        P_dc_2v2_time[107];   //[Ndata.P.dc.2v2.time]
+   Int_t           Ndata_P_dc_2v2_wirenum;
+   Double_t        P_dc_2v2_wirenum[107];   //[Ndata.P.dc.2v2.wirenum]
+   Int_t           Ndata_P_dc_2x1_dist;
+   Double_t        P_dc_2x1_dist[80];   //[Ndata.P.dc.2x1.dist]
+   Int_t           Ndata_P_dc_2x1_rawtdc;
+   Double_t        P_dc_2x1_rawtdc[80];   //[Ndata.P.dc.2x1.rawtdc]
+   Int_t           Ndata_P_dc_2x1_time;
+   Double_t        P_dc_2x1_time[80];   //[Ndata.P.dc.2x1.time]
+   Int_t           Ndata_P_dc_2x1_wirenum;
+   Double_t        P_dc_2x1_wirenum[80];   //[Ndata.P.dc.2x1.wirenum]
+   Int_t           Ndata_P_dc_2x2_dist;
+   Double_t        P_dc_2x2_dist[80];   //[Ndata.P.dc.2x2.dist]
+   Int_t           Ndata_P_dc_2x2_rawtdc;
+   Double_t        P_dc_2x2_rawtdc[80];   //[Ndata.P.dc.2x2.rawtdc]
+   Int_t           Ndata_P_dc_2x2_time;
+   Double_t        P_dc_2x2_time[80];   //[Ndata.P.dc.2x2.time]
+   Int_t           Ndata_P_dc_2x2_wirenum;
+   Double_t        P_dc_2x2_wirenum[80];   //[Ndata.P.dc.2x2.wirenum]
+   Int_t           Ndata_P_dc_residual;
+   Double_t        P_dc_residual[12];   //[Ndata.P.dc.residual]
+   Int_t           Ndata_P_dc_x;
+   Double_t        P_dc_x[10];   //[Ndata.P.dc.x]
+   Int_t           Ndata_P_dc_xp;
+   Double_t        P_dc_xp[10];   //[Ndata.P.dc.xp]
+   Int_t           Ndata_P_dc_y;
+   Double_t        P_dc_y[10];   //[Ndata.P.dc.y]
+   Int_t           Ndata_P_dc_yp;
+   Double_t        P_dc_yp[10];   //[Ndata.P.dc.yp]
+   Double_t        P_dc_1u1_nhit;
+   Double_t        P_dc_1u2_nhit;
+   Double_t        P_dc_1v1_nhit;
+   Double_t        P_dc_1v2_nhit;
+   Double_t        P_dc_1x1_nhit;
+   Double_t        P_dc_1x2_nhit;
+   Double_t        P_dc_2u1_nhit;
+   Double_t        P_dc_2u2_nhit;
+   Double_t        P_dc_2v1_nhit;
+   Double_t        P_dc_2v2_nhit;
+   Double_t        P_dc_2x1_nhit;
+   Double_t        P_dc_2x2_nhit;
+   Double_t        P_dc_Ch1_maxhits;
+   Double_t        P_dc_Ch1_nhit;
+   Double_t        P_dc_Ch1_spacepoints;
+   Double_t        P_dc_Ch1_trawhit;
+   Double_t        P_dc_Ch2_maxhits;
+   Double_t        P_dc_Ch2_nhit;
+   Double_t        P_dc_Ch2_spacepoints;
+   Double_t        P_dc_Ch2_trawhit;
+   Double_t        P_dc_nhit;
+   Double_t        P_dc_nsp;
+   Double_t        P_dc_ntrack;
+   Double_t        P_dc_stubtest;
+   Double_t        P_dc_tnhit;
+   Double_t        P_dc_trawhit;
+ //THaEvent        *Event_Branch;
+   ULong64_t       fEvtHdr_fEvtTime;
+   UInt_t          fEvtHdr_fEvtNum;
+   Int_t           fEvtHdr_fEvtType;
+   Int_t           fEvtHdr_fEvtLen;
+   Int_t           fEvtHdr_fHelicity;
+   Int_t           fEvtHdr_fTargetPol;
+   Int_t           fEvtHdr_fRun;
+
+   // List of branches
+   TBranch        *b_Ndata_P_dc_1u1_dist;   //!
+   TBranch        *b_P_dc_1u1_dist;   //!
+   TBranch        *b_Ndata_P_dc_1u1_rawtdc;   //!
+   TBranch        *b_P_dc_1u1_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_1u1_time;   //!
+   TBranch        *b_P_dc_1u1_time;   //!
+   TBranch        *b_Ndata_P_dc_1u1_wirenum;   //!
+   TBranch        *b_P_dc_1u1_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_1u2_dist;   //!
+   TBranch        *b_P_dc_1u2_dist;   //!
+   TBranch        *b_Ndata_P_dc_1u2_rawtdc;   //!
+   TBranch        *b_P_dc_1u2_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_1u2_time;   //!
+   TBranch        *b_P_dc_1u2_time;   //!
+   TBranch        *b_Ndata_P_dc_1u2_wirenum;   //!
+   TBranch        *b_P_dc_1u2_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_1v1_dist;   //!
+   TBranch        *b_P_dc_1v1_dist;   //!
+   TBranch        *b_Ndata_P_dc_1v1_rawtdc;   //!
+   TBranch        *b_P_dc_1v1_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_1v1_time;   //!
+   TBranch        *b_P_dc_1v1_time;   //!
+   TBranch        *b_Ndata_P_dc_1v1_wirenum;   //!
+   TBranch        *b_P_dc_1v1_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_1v2_dist;   //!
+   TBranch        *b_P_dc_1v2_dist;   //!
+   TBranch        *b_Ndata_P_dc_1v2_rawtdc;   //!
+   TBranch        *b_P_dc_1v2_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_1v2_time;   //!
+   TBranch        *b_P_dc_1v2_time;   //!
+   TBranch        *b_Ndata_P_dc_1v2_wirenum;   //!
+   TBranch        *b_P_dc_1v2_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_1x1_dist;   //!
+   TBranch        *b_P_dc_1x1_dist;   //!
+   TBranch        *b_Ndata_P_dc_1x1_rawtdc;   //!
+   TBranch        *b_P_dc_1x1_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_1x1_time;   //!
+   TBranch        *b_P_dc_1x1_time;   //!
+   TBranch        *b_Ndata_P_dc_1x1_wirenum;   //!
+   TBranch        *b_P_dc_1x1_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_1x2_dist;   //!
+   TBranch        *b_P_dc_1x2_dist;   //!
+   TBranch        *b_Ndata_P_dc_1x2_rawtdc;   //!
+   TBranch        *b_P_dc_1x2_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_1x2_time;   //!
+   TBranch        *b_P_dc_1x2_time;   //!
+   TBranch        *b_Ndata_P_dc_1x2_wirenum;   //!
+   TBranch        *b_P_dc_1x2_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_2u1_dist;   //!
+   TBranch        *b_P_dc_2u1_dist;   //!
+   TBranch        *b_Ndata_P_dc_2u1_rawtdc;   //!
+   TBranch        *b_P_dc_2u1_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_2u1_time;   //!
+   TBranch        *b_P_dc_2u1_time;   //!
+   TBranch        *b_Ndata_P_dc_2u1_wirenum;   //!
+   TBranch        *b_P_dc_2u1_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_2u2_dist;   //!
+   TBranch        *b_P_dc_2u2_dist;   //!
+   TBranch        *b_Ndata_P_dc_2u2_rawtdc;   //!
+   TBranch        *b_P_dc_2u2_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_2u2_time;   //!
+   TBranch        *b_P_dc_2u2_time;   //!
+   TBranch        *b_Ndata_P_dc_2u2_wirenum;   //!
+   TBranch        *b_P_dc_2u2_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_2v1_dist;   //!
+   TBranch        *b_P_dc_2v1_dist;   //!
+   TBranch        *b_Ndata_P_dc_2v1_rawtdc;   //!
+   TBranch        *b_P_dc_2v1_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_2v1_time;   //!
+   TBranch        *b_P_dc_2v1_time;   //!
+   TBranch        *b_Ndata_P_dc_2v1_wirenum;   //!
+   TBranch        *b_P_dc_2v1_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_2v2_dist;   //!
+   TBranch        *b_P_dc_2v2_dist;   //!
+   TBranch        *b_Ndata_P_dc_2v2_rawtdc;   //!
+   TBranch        *b_P_dc_2v2_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_2v2_time;   //!
+   TBranch        *b_P_dc_2v2_time;   //!
+   TBranch        *b_Ndata_P_dc_2v2_wirenum;   //!
+   TBranch        *b_P_dc_2v2_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_2x1_dist;   //!
+   TBranch        *b_P_dc_2x1_dist;   //!
+   TBranch        *b_Ndata_P_dc_2x1_rawtdc;   //!
+   TBranch        *b_P_dc_2x1_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_2x1_time;   //!
+   TBranch        *b_P_dc_2x1_time;   //!
+   TBranch        *b_Ndata_P_dc_2x1_wirenum;   //!
+   TBranch        *b_P_dc_2x1_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_2x2_dist;   //!
+   TBranch        *b_P_dc_2x2_dist;   //!
+   TBranch        *b_Ndata_P_dc_2x2_rawtdc;   //!
+   TBranch        *b_P_dc_2x2_rawtdc;   //!
+   TBranch        *b_Ndata_P_dc_2x2_time;   //!
+   TBranch        *b_P_dc_2x2_time;   //!
+   TBranch        *b_Ndata_P_dc_2x2_wirenum;   //!
+   TBranch        *b_P_dc_2x2_wirenum;   //!
+   TBranch        *b_Ndata_P_dc_residual;   //!
+   TBranch        *b_P_dc_residual;   //!
+   TBranch        *b_Ndata_P_dc_x;   //!
+   TBranch        *b_P_dc_x;   //!
+   TBranch        *b_Ndata_P_dc_xp;   //!
+   TBranch        *b_P_dc_xp;   //!
+   TBranch        *b_Ndata_P_dc_y;   //!
+   TBranch        *b_P_dc_y;   //!
+   TBranch        *b_Ndata_P_dc_yp;   //!
+   TBranch        *b_P_dc_yp;   //!
+   TBranch        *b_P_dc_1u1_nhit;   //!
+   TBranch        *b_P_dc_1u2_nhit;   //!
+   TBranch        *b_P_dc_1v1_nhit;   //!
+   TBranch        *b_P_dc_1v2_nhit;   //!
+   TBranch        *b_P_dc_1x1_nhit;   //!
+   TBranch        *b_P_dc_1x2_nhit;   //!
+   TBranch        *b_P_dc_2u1_nhit;   //!
+   TBranch        *b_P_dc_2u2_nhit;   //!
+   TBranch        *b_P_dc_2v1_nhit;   //!
+   TBranch        *b_P_dc_2v2_nhit;   //!
+   TBranch        *b_P_dc_2x1_nhit;   //!
+   TBranch        *b_P_dc_2x2_nhit;   //!
+   TBranch        *b_P_dc_Ch1_maxhits;   //!
+   TBranch        *b_P_dc_Ch1_nhit;   //!
+   TBranch        *b_P_dc_Ch1_spacepoints;   //!
+   TBranch        *b_P_dc_Ch1_trawhit;   //!
+   TBranch        *b_P_dc_Ch2_maxhits;   //!
+   TBranch        *b_P_dc_Ch2_nhit;   //!
+   TBranch        *b_P_dc_Ch2_spacepoints;   //!
+   TBranch        *b_P_dc_Ch2_trawhit;   //!
+   TBranch        *b_P_dc_nhit;   //!
+   TBranch        *b_P_dc_nsp;   //!
+   TBranch        *b_P_dc_ntrack;   //!
+   TBranch        *b_P_dc_stubtest;   //!
+   TBranch        *b_P_dc_tnhit;   //!
+   TBranch        *b_P_dc_trawhit;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fEvtTime;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fEvtNum;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fEvtType;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fEvtLen;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fHelicity;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fTargetPol;   //!
+   TBranch        *b_Event_Branch_fEvtHdr_fRun;   //!
+
+   wire_drift_times(TTree *tree=0);
+   virtual ~wire_drift_times();
+   virtual Int_t    Cut(Long64_t entry);
+   virtual Int_t    GetEntry(Long64_t entry);
+   virtual Long64_t LoadTree(Long64_t entry);
+   virtual void     Init(TTree *tree);
+   virtual void     Loop();
+   virtual Bool_t   Notify();
+   virtual void     Show(Long64_t entry = -1);
+};
+
+#endif
+
+#ifdef wire_drift_times_cxx
+wire_drift_times::wire_drift_times(TTree *tree) : fChain(0) 
+{
+// if parameter tree is not specified (or zero), connect the file
+// used to generate this class and read the Tree.
+   if (tree == 0) {
+      TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject("../../../ROOTfiles/shms_replay_437.root");
+      if (!f || !f->IsOpen()) {
+         f = new TFile("../../../ROOTfiles/shms_replay_437.root");
+      }
+      f->GetObject("T",tree);
+
+   }
+   Init(tree);
+}
+
+wire_drift_times::~wire_drift_times()
+{
+   if (!fChain) return;
+   delete fChain->GetCurrentFile();
+}
+
+Int_t wire_drift_times::GetEntry(Long64_t entry)
+{
+// Read contents of entry.
+   if (!fChain) return 0;
+   return fChain->GetEntry(entry);
+}
+Long64_t wire_drift_times::LoadTree(Long64_t entry)
+{
+// Set the environment to read one entry
+   if (!fChain) return -5;
+   Long64_t centry = fChain->LoadTree(entry);
+   if (centry < 0) return centry;
+   if (fChain->GetTreeNumber() != fCurrent) {
+      fCurrent = fChain->GetTreeNumber();
+      Notify();
+   }
+   return centry;
+}
+
+void wire_drift_times::Init(TTree *tree)
+{
+   // The Init() function is called when the selector needs to initialize
+   // a new tree or chain. Typically here the branch addresses and branch
+   // pointers of the tree will be set.
+   // It is normally not necessary to make changes to the generated
+   // code, but the routine can be extended by the user if needed.
+   // Init() will be called many times when running on PROOF
+   // (once per file to be processed).
+
+   // Set branch addresses and branch pointers
+   if (!tree) return;
+   fChain = tree;
+   fCurrent = -1;
+   fChain->SetMakeClass(1);
+
+   fChain->SetBranchAddress("Ndata.P.dc.1u1.dist", &Ndata_P_dc_1u1_dist, &b_Ndata_P_dc_1u1_dist);
+   fChain->SetBranchAddress("P.dc.1u1.dist", P_dc_1u1_dist, &b_P_dc_1u1_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.1u1.rawtdc", &Ndata_P_dc_1u1_rawtdc, &b_Ndata_P_dc_1u1_rawtdc);
+   fChain->SetBranchAddress("P.dc.1u1.rawtdc", P_dc_1u1_rawtdc, &b_P_dc_1u1_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.1u1.time", &Ndata_P_dc_1u1_time, &b_Ndata_P_dc_1u1_time);
+   fChain->SetBranchAddress("P.dc.1u1.time", P_dc_1u1_time, &b_P_dc_1u1_time);
+   fChain->SetBranchAddress("Ndata.P.dc.1u1.wirenum", &Ndata_P_dc_1u1_wirenum, &b_Ndata_P_dc_1u1_wirenum);
+   fChain->SetBranchAddress("P.dc.1u1.wirenum", P_dc_1u1_wirenum, &b_P_dc_1u1_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.1u2.dist", &Ndata_P_dc_1u2_dist, &b_Ndata_P_dc_1u2_dist);
+   fChain->SetBranchAddress("P.dc.1u2.dist", P_dc_1u2_dist, &b_P_dc_1u2_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.1u2.rawtdc", &Ndata_P_dc_1u2_rawtdc, &b_Ndata_P_dc_1u2_rawtdc);
+   fChain->SetBranchAddress("P.dc.1u2.rawtdc", P_dc_1u2_rawtdc, &b_P_dc_1u2_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.1u2.time", &Ndata_P_dc_1u2_time, &b_Ndata_P_dc_1u2_time);
+   fChain->SetBranchAddress("P.dc.1u2.time", P_dc_1u2_time, &b_P_dc_1u2_time);
+   fChain->SetBranchAddress("Ndata.P.dc.1u2.wirenum", &Ndata_P_dc_1u2_wirenum, &b_Ndata_P_dc_1u2_wirenum);
+   fChain->SetBranchAddress("P.dc.1u2.wirenum", P_dc_1u2_wirenum, &b_P_dc_1u2_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.1v1.dist", &Ndata_P_dc_1v1_dist, &b_Ndata_P_dc_1v1_dist);
+   fChain->SetBranchAddress("P.dc.1v1.dist", P_dc_1v1_dist, &b_P_dc_1v1_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.1v1.rawtdc", &Ndata_P_dc_1v1_rawtdc, &b_Ndata_P_dc_1v1_rawtdc);
+   fChain->SetBranchAddress("P.dc.1v1.rawtdc", P_dc_1v1_rawtdc, &b_P_dc_1v1_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.1v1.time", &Ndata_P_dc_1v1_time, &b_Ndata_P_dc_1v1_time);
+   fChain->SetBranchAddress("P.dc.1v1.time", P_dc_1v1_time, &b_P_dc_1v1_time);
+   fChain->SetBranchAddress("Ndata.P.dc.1v1.wirenum", &Ndata_P_dc_1v1_wirenum, &b_Ndata_P_dc_1v1_wirenum);
+   fChain->SetBranchAddress("P.dc.1v1.wirenum", P_dc_1v1_wirenum, &b_P_dc_1v1_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.1v2.dist", &Ndata_P_dc_1v2_dist, &b_Ndata_P_dc_1v2_dist);
+   fChain->SetBranchAddress("P.dc.1v2.dist", P_dc_1v2_dist, &b_P_dc_1v2_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.1v2.rawtdc", &Ndata_P_dc_1v2_rawtdc, &b_Ndata_P_dc_1v2_rawtdc);
+   fChain->SetBranchAddress("P.dc.1v2.rawtdc", P_dc_1v2_rawtdc, &b_P_dc_1v2_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.1v2.time", &Ndata_P_dc_1v2_time, &b_Ndata_P_dc_1v2_time);
+   fChain->SetBranchAddress("P.dc.1v2.time", P_dc_1v2_time, &b_P_dc_1v2_time);
+   fChain->SetBranchAddress("Ndata.P.dc.1v2.wirenum", &Ndata_P_dc_1v2_wirenum, &b_Ndata_P_dc_1v2_wirenum);
+   fChain->SetBranchAddress("P.dc.1v2.wirenum", P_dc_1v2_wirenum, &b_P_dc_1v2_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.1x1.dist", &Ndata_P_dc_1x1_dist, &b_Ndata_P_dc_1x1_dist);
+   fChain->SetBranchAddress("P.dc.1x1.dist", P_dc_1x1_dist, &b_P_dc_1x1_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.1x1.rawtdc", &Ndata_P_dc_1x1_rawtdc, &b_Ndata_P_dc_1x1_rawtdc);
+   fChain->SetBranchAddress("P.dc.1x1.rawtdc", P_dc_1x1_rawtdc, &b_P_dc_1x1_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.1x1.time", &Ndata_P_dc_1x1_time, &b_Ndata_P_dc_1x1_time);
+   fChain->SetBranchAddress("P.dc.1x1.time", P_dc_1x1_time, &b_P_dc_1x1_time);
+   fChain->SetBranchAddress("Ndata.P.dc.1x1.wirenum", &Ndata_P_dc_1x1_wirenum, &b_Ndata_P_dc_1x1_wirenum);
+   fChain->SetBranchAddress("P.dc.1x1.wirenum", P_dc_1x1_wirenum, &b_P_dc_1x1_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.1x2.dist", &Ndata_P_dc_1x2_dist, &b_Ndata_P_dc_1x2_dist);
+   fChain->SetBranchAddress("P.dc.1x2.dist", P_dc_1x2_dist, &b_P_dc_1x2_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.1x2.rawtdc", &Ndata_P_dc_1x2_rawtdc, &b_Ndata_P_dc_1x2_rawtdc);
+   fChain->SetBranchAddress("P.dc.1x2.rawtdc", P_dc_1x2_rawtdc, &b_P_dc_1x2_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.1x2.time", &Ndata_P_dc_1x2_time, &b_Ndata_P_dc_1x2_time);
+   fChain->SetBranchAddress("P.dc.1x2.time", P_dc_1x2_time, &b_P_dc_1x2_time);
+   fChain->SetBranchAddress("Ndata.P.dc.1x2.wirenum", &Ndata_P_dc_1x2_wirenum, &b_Ndata_P_dc_1x2_wirenum);
+   fChain->SetBranchAddress("P.dc.1x2.wirenum", P_dc_1x2_wirenum, &b_P_dc_1x2_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.2u1.dist", &Ndata_P_dc_2u1_dist, &b_Ndata_P_dc_2u1_dist);
+   fChain->SetBranchAddress("P.dc.2u1.dist", P_dc_2u1_dist, &b_P_dc_2u1_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.2u1.rawtdc", &Ndata_P_dc_2u1_rawtdc, &b_Ndata_P_dc_2u1_rawtdc);
+   fChain->SetBranchAddress("P.dc.2u1.rawtdc", P_dc_2u1_rawtdc, &b_P_dc_2u1_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.2u1.time", &Ndata_P_dc_2u1_time, &b_Ndata_P_dc_2u1_time);
+   fChain->SetBranchAddress("P.dc.2u1.time", P_dc_2u1_time, &b_P_dc_2u1_time);
+   fChain->SetBranchAddress("Ndata.P.dc.2u1.wirenum", &Ndata_P_dc_2u1_wirenum, &b_Ndata_P_dc_2u1_wirenum);
+   fChain->SetBranchAddress("P.dc.2u1.wirenum", P_dc_2u1_wirenum, &b_P_dc_2u1_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.2u2.dist", &Ndata_P_dc_2u2_dist, &b_Ndata_P_dc_2u2_dist);
+   fChain->SetBranchAddress("P.dc.2u2.dist", P_dc_2u2_dist, &b_P_dc_2u2_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.2u2.rawtdc", &Ndata_P_dc_2u2_rawtdc, &b_Ndata_P_dc_2u2_rawtdc);
+   fChain->SetBranchAddress("P.dc.2u2.rawtdc", P_dc_2u2_rawtdc, &b_P_dc_2u2_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.2u2.time", &Ndata_P_dc_2u2_time, &b_Ndata_P_dc_2u2_time);
+   fChain->SetBranchAddress("P.dc.2u2.time", P_dc_2u2_time, &b_P_dc_2u2_time);
+   fChain->SetBranchAddress("Ndata.P.dc.2u2.wirenum", &Ndata_P_dc_2u2_wirenum, &b_Ndata_P_dc_2u2_wirenum);
+   fChain->SetBranchAddress("P.dc.2u2.wirenum", P_dc_2u2_wirenum, &b_P_dc_2u2_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.2v1.dist", &Ndata_P_dc_2v1_dist, &b_Ndata_P_dc_2v1_dist);
+   fChain->SetBranchAddress("P.dc.2v1.dist", P_dc_2v1_dist, &b_P_dc_2v1_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.2v1.rawtdc", &Ndata_P_dc_2v1_rawtdc, &b_Ndata_P_dc_2v1_rawtdc);
+   fChain->SetBranchAddress("P.dc.2v1.rawtdc", P_dc_2v1_rawtdc, &b_P_dc_2v1_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.2v1.time", &Ndata_P_dc_2v1_time, &b_Ndata_P_dc_2v1_time);
+   fChain->SetBranchAddress("P.dc.2v1.time", P_dc_2v1_time, &b_P_dc_2v1_time);
+   fChain->SetBranchAddress("Ndata.P.dc.2v1.wirenum", &Ndata_P_dc_2v1_wirenum, &b_Ndata_P_dc_2v1_wirenum);
+   fChain->SetBranchAddress("P.dc.2v1.wirenum", P_dc_2v1_wirenum, &b_P_dc_2v1_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.2v2.dist", &Ndata_P_dc_2v2_dist, &b_Ndata_P_dc_2v2_dist);
+   fChain->SetBranchAddress("P.dc.2v2.dist", P_dc_2v2_dist, &b_P_dc_2v2_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.2v2.rawtdc", &Ndata_P_dc_2v2_rawtdc, &b_Ndata_P_dc_2v2_rawtdc);
+   fChain->SetBranchAddress("P.dc.2v2.rawtdc", P_dc_2v2_rawtdc, &b_P_dc_2v2_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.2v2.time", &Ndata_P_dc_2v2_time, &b_Ndata_P_dc_2v2_time);
+   fChain->SetBranchAddress("P.dc.2v2.time", P_dc_2v2_time, &b_P_dc_2v2_time);
+   fChain->SetBranchAddress("Ndata.P.dc.2v2.wirenum", &Ndata_P_dc_2v2_wirenum, &b_Ndata_P_dc_2v2_wirenum);
+   fChain->SetBranchAddress("P.dc.2v2.wirenum", P_dc_2v2_wirenum, &b_P_dc_2v2_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.2x1.dist", &Ndata_P_dc_2x1_dist, &b_Ndata_P_dc_2x1_dist);
+   fChain->SetBranchAddress("P.dc.2x1.dist", P_dc_2x1_dist, &b_P_dc_2x1_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.2x1.rawtdc", &Ndata_P_dc_2x1_rawtdc, &b_Ndata_P_dc_2x1_rawtdc);
+   fChain->SetBranchAddress("P.dc.2x1.rawtdc", P_dc_2x1_rawtdc, &b_P_dc_2x1_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.2x1.time", &Ndata_P_dc_2x1_time, &b_Ndata_P_dc_2x1_time);
+   fChain->SetBranchAddress("P.dc.2x1.time", P_dc_2x1_time, &b_P_dc_2x1_time);
+   fChain->SetBranchAddress("Ndata.P.dc.2x1.wirenum", &Ndata_P_dc_2x1_wirenum, &b_Ndata_P_dc_2x1_wirenum);
+   fChain->SetBranchAddress("P.dc.2x1.wirenum", P_dc_2x1_wirenum, &b_P_dc_2x1_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.2x2.dist", &Ndata_P_dc_2x2_dist, &b_Ndata_P_dc_2x2_dist);
+   fChain->SetBranchAddress("P.dc.2x2.dist", P_dc_2x2_dist, &b_P_dc_2x2_dist);
+   fChain->SetBranchAddress("Ndata.P.dc.2x2.rawtdc", &Ndata_P_dc_2x2_rawtdc, &b_Ndata_P_dc_2x2_rawtdc);
+   fChain->SetBranchAddress("P.dc.2x2.rawtdc", P_dc_2x2_rawtdc, &b_P_dc_2x2_rawtdc);
+   fChain->SetBranchAddress("Ndata.P.dc.2x2.time", &Ndata_P_dc_2x2_time, &b_Ndata_P_dc_2x2_time);
+   fChain->SetBranchAddress("P.dc.2x2.time", P_dc_2x2_time, &b_P_dc_2x2_time);
+   fChain->SetBranchAddress("Ndata.P.dc.2x2.wirenum", &Ndata_P_dc_2x2_wirenum, &b_Ndata_P_dc_2x2_wirenum);
+   fChain->SetBranchAddress("P.dc.2x2.wirenum", P_dc_2x2_wirenum, &b_P_dc_2x2_wirenum);
+   fChain->SetBranchAddress("Ndata.P.dc.residual", &Ndata_P_dc_residual, &b_Ndata_P_dc_residual);
+   fChain->SetBranchAddress("P.dc.residual", P_dc_residual, &b_P_dc_residual);
+   fChain->SetBranchAddress("Ndata.P.dc.x", &Ndata_P_dc_x, &b_Ndata_P_dc_x);
+   fChain->SetBranchAddress("P.dc.x", P_dc_x, &b_P_dc_x);
+   fChain->SetBranchAddress("Ndata.P.dc.xp", &Ndata_P_dc_xp, &b_Ndata_P_dc_xp);
+   fChain->SetBranchAddress("P.dc.xp", P_dc_xp, &b_P_dc_xp);
+   fChain->SetBranchAddress("Ndata.P.dc.y", &Ndata_P_dc_y, &b_Ndata_P_dc_y);
+   fChain->SetBranchAddress("P.dc.y", P_dc_y, &b_P_dc_y);
+   fChain->SetBranchAddress("Ndata.P.dc.yp", &Ndata_P_dc_yp, &b_Ndata_P_dc_yp);
+   fChain->SetBranchAddress("P.dc.yp", P_dc_yp, &b_P_dc_yp);
+   fChain->SetBranchAddress("P.dc.1u1.nhit", &P_dc_1u1_nhit, &b_P_dc_1u1_nhit);
+   fChain->SetBranchAddress("P.dc.1u2.nhit", &P_dc_1u2_nhit, &b_P_dc_1u2_nhit);
+   fChain->SetBranchAddress("P.dc.1v1.nhit", &P_dc_1v1_nhit, &b_P_dc_1v1_nhit);
+   fChain->SetBranchAddress("P.dc.1v2.nhit", &P_dc_1v2_nhit, &b_P_dc_1v2_nhit);
+   fChain->SetBranchAddress("P.dc.1x1.nhit", &P_dc_1x1_nhit, &b_P_dc_1x1_nhit);
+   fChain->SetBranchAddress("P.dc.1x2.nhit", &P_dc_1x2_nhit, &b_P_dc_1x2_nhit);
+   fChain->SetBranchAddress("P.dc.2u1.nhit", &P_dc_2u1_nhit, &b_P_dc_2u1_nhit);
+   fChain->SetBranchAddress("P.dc.2u2.nhit", &P_dc_2u2_nhit, &b_P_dc_2u2_nhit);
+   fChain->SetBranchAddress("P.dc.2v1.nhit", &P_dc_2v1_nhit, &b_P_dc_2v1_nhit);
+   fChain->SetBranchAddress("P.dc.2v2.nhit", &P_dc_2v2_nhit, &b_P_dc_2v2_nhit);
+   fChain->SetBranchAddress("P.dc.2x1.nhit", &P_dc_2x1_nhit, &b_P_dc_2x1_nhit);
+   fChain->SetBranchAddress("P.dc.2x2.nhit", &P_dc_2x2_nhit, &b_P_dc_2x2_nhit);
+   fChain->SetBranchAddress("P.dc.Ch1.maxhits", &P_dc_Ch1_maxhits, &b_P_dc_Ch1_maxhits);
+   fChain->SetBranchAddress("P.dc.Ch1.nhit", &P_dc_Ch1_nhit, &b_P_dc_Ch1_nhit);
+   fChain->SetBranchAddress("P.dc.Ch1.spacepoints", &P_dc_Ch1_spacepoints, &b_P_dc_Ch1_spacepoints);
+   fChain->SetBranchAddress("P.dc.Ch1.trawhit", &P_dc_Ch1_trawhit, &b_P_dc_Ch1_trawhit);
+   fChain->SetBranchAddress("P.dc.Ch2.maxhits", &P_dc_Ch2_maxhits, &b_P_dc_Ch2_maxhits);
+   fChain->SetBranchAddress("P.dc.Ch2.nhit", &P_dc_Ch2_nhit, &b_P_dc_Ch2_nhit);
+   fChain->SetBranchAddress("P.dc.Ch2.spacepoints", &P_dc_Ch2_spacepoints, &b_P_dc_Ch2_spacepoints);
+   fChain->SetBranchAddress("P.dc.Ch2.trawhit", &P_dc_Ch2_trawhit, &b_P_dc_Ch2_trawhit);
+   fChain->SetBranchAddress("P.dc.nhit", &P_dc_nhit, &b_P_dc_nhit);
+   fChain->SetBranchAddress("P.dc.nsp", &P_dc_nsp, &b_P_dc_nsp);
+   fChain->SetBranchAddress("P.dc.ntrack", &P_dc_ntrack, &b_P_dc_ntrack);
+   fChain->SetBranchAddress("P.dc.stubtest", &P_dc_stubtest, &b_P_dc_stubtest);
+   fChain->SetBranchAddress("P.dc.tnhit", &P_dc_tnhit, &b_P_dc_tnhit);
+   fChain->SetBranchAddress("P.dc.trawhit", &P_dc_trawhit, &b_P_dc_trawhit);
+   fChain->SetBranchAddress("fEvtHdr.fEvtTime", &fEvtHdr_fEvtTime, &b_Event_Branch_fEvtHdr_fEvtTime);
+   fChain->SetBranchAddress("fEvtHdr.fEvtNum", &fEvtHdr_fEvtNum, &b_Event_Branch_fEvtHdr_fEvtNum);
+   fChain->SetBranchAddress("fEvtHdr.fEvtType", &fEvtHdr_fEvtType, &b_Event_Branch_fEvtHdr_fEvtType);
+   fChain->SetBranchAddress("fEvtHdr.fEvtLen", &fEvtHdr_fEvtLen, &b_Event_Branch_fEvtHdr_fEvtLen);
+   fChain->SetBranchAddress("fEvtHdr.fHelicity", &fEvtHdr_fHelicity, &b_Event_Branch_fEvtHdr_fHelicity);
+   fChain->SetBranchAddress("fEvtHdr.fTargetPol", &fEvtHdr_fTargetPol, &b_Event_Branch_fEvtHdr_fTargetPol);
+   fChain->SetBranchAddress("fEvtHdr.fRun", &fEvtHdr_fRun, &b_Event_Branch_fEvtHdr_fRun);
+   Notify();
+}
+
+Bool_t wire_drift_times::Notify()
+{
+   // The Notify() function is called when a new file is opened. This
+   // can be either for a new TTree in a TChain or when when a new TTree
+   // is started when using PROOF. It is normally not necessary to make changes
+   // to the generated code, but the routine can be extended by the
+   // user if needed. The return value is currently not used.
+
+   return kTRUE;
+}
+
+void wire_drift_times::Show(Long64_t entry)
+{
+// Print contents of entry.
+// If entry is not specified, print current entry
+   if (!fChain) return;
+   fChain->Show(entry);
+}
+Int_t wire_drift_times::Cut(Long64_t entry)
+{
+// This function may be called from Loop.
+// returns  1 if entry is accepted.
+// returns -1 otherwise.
+   return 1;
+}
+#endif // #ifdef wire_drift_times_cxx
diff --git a/DATFILES/SHMS_fr3_rec__order_3.dat b/DATFILES/SHMS_fr3_rec__order_3.dat
new file mode 100644
index 0000000000000000000000000000000000000000..c5f2181d6c2f23ac6d00b608da50f7048b1133e2
--- /dev/null
+++ b/DATFILES/SHMS_fr3_rec__order_3.dat
@@ -0,0 +1,61 @@
+! SHMS reconstruction optics
+! made with Cosy from `shms-2011-26cm-monte.fox`
+! order: 3
+! 2017/03/02
+ ------------------------------------------------------------------------------
+  0.271575341    -0.562369031E-01 0.319566081E-01 0.610081290     10000
+  -1.40168967     0.324549705E-02-0.184425300E-02-0.352085004E-01 01000
+   0.00000000    -0.614627877     0.268258711      0.00000000     00100
+   0.00000000    -0.334494693E-01 -1.61240146      0.00000000     00010
+  0.292838822    -0.779452895E-01 0.442923940E-01 0.845582884     00001
+ -0.461777083     0.133175413    -0.795465554E-01 -1.10941840     20000
+   2.31345901    -0.651650790     0.410139672      7.40765439     11000
+  0.313171813    -0.189779813     0.503365420E-02  1.07619090     02000
+  0.832253162E-02  3.25891656    -0.623172327     0.130538752E-01 10100
+ -0.429553235E-01-0.337197013     0.115900052    -0.673753442E-01 01100
+  0.123978840E-02 0.104304505E-02-0.173094061E-02 0.293611475E-02 00200
+ -0.346040884E-01 -34.2794401      6.37461563    -0.337822756E-01 10010
+  0.178603084      2.78206786    -0.304747320     0.174361437     01010
+  0.628665995E-01-0.824087278E-01 0.307462429E-01 0.154433455     00110
+  -1.40937257     0.301926273    -0.187978799     -2.47726546     10001
+   3.33484635    -0.862548006     0.574689551      10.5041926     01001
+  0.130450160E-01  4.51258325    -0.861523847     0.259132153E-01 00101
+ -0.372584164     0.399413222    -0.891791733E-01-0.402593585     00020
+ -0.618394302E-01 -47.7437685      8.94535901    -0.107744042     00011
+  -1.06632062     0.166741451    -0.107916204     -1.30229160     00002
+   2.02204786    -0.537494821     0.320946553      4.39751589     30000
+  -17.7287121      4.88024882     -2.93121031     -45.2936945     21000
+   41.4726095     -12.1033754      7.27184134      135.859531     12000
+  -19.2547522      6.35601113     -3.56945324     -68.6229278     03000
+ -0.639687330E-01 -12.8390163      2.47275279    -0.116142488     20100
+  0.383562426      75.4946872     -14.1477166     0.765093581     11100
+ -0.277071263     -83.0427890      15.0668682    -0.857237446     02100
+  0.521382345    -0.660319024E-01 0.836917529E-01  1.62277288     10200
+  -2.71588574     0.417636863    -0.374384882     -8.42602578     01200
+  0.379937962E-04 -2.22772445     0.411212109     0.595931979E-04 00300
+  0.401258847      134.208982     -25.7567354     0.723062757     20010
+  -2.21408761     -779.349257      145.964199     -4.18430354     11010
+  0.744454923      871.241762     -162.500709      2.34060679     02010
+  -11.1502022      2.11028391     -1.81145056     -34.1647857     10110
+   56.9030538     -11.4096323      8.30827966      175.204252     01110
+  0.176859767E-02  71.0256213     -13.2910486     0.286760156E-02 00210
+   8.25911531     -1.83293852      1.12279865      14.9915931     20001
+  -47.6174637      11.2343899     -6.91073184     -102.172282     11001
+   55.1407020     -14.8476604      8.99669952      167.425329     02001
+ -0.200203452     -29.7959889      5.79495205    -0.355610730     10101
+  0.581102351      92.6441192     -17.5793543      1.10085095     01101
+  0.674591396     0.105565721E-01 0.737030600E-01  1.59446569     00201
+   59.0337400     -14.8057660      9.71260964      178.996897     10020
+  -300.510217      74.3557252     -46.1380542     -914.862611     01020
+ -0.194284386E-01 -753.743934      142.021236    -0.257293020E-01 00120
+   1.26360425      313.950247     -60.8321033      2.32007781     10011
+  -3.37979081     -961.090841      181.666941     -6.43192219     01011
+  -14.6993850     0.949357085     -1.68119853     -34.2620511     00111
+   11.3392101     -2.12339845      1.34371762      17.7676078     10002
+  -33.1512599      6.62921723     -4.19625684     -59.3627787     01002
+ -0.156245518     -18.1815608      3.55438555    -0.262047136     00102
+  0.474746171E-01  2656.39369     -502.850206     0.463471419E-01 00030
+   78.9827113     -11.1025866      9.41992841      183.089209     00021
+  0.994119583      193.354137     -37.7652046      1.77029229     00012
+   5.21699886    -0.833070758     0.548672097      7.31883656     00003
+ ------------------------------------------------------------------------------
diff --git a/DATFILES/SHMS_fr3_rec__order_4.dat b/DATFILES/SHMS_fr3_rec__order_4.dat
new file mode 100644
index 0000000000000000000000000000000000000000..f76564f489f9cea5c7362342ddc15d2a72f91169
--- /dev/null
+++ b/DATFILES/SHMS_fr3_rec__order_4.dat
@@ -0,0 +1,131 @@
+! SHMS reconstruction optics
+! made with Cosy from `shms-2011-26cm-monte.fox`
+! order: 4
+! 2017/03/02
+ ------------------------------------------------------------------------------
+  0.271575341    -0.562369031E-01 0.319566081E-01 0.610081290     10000
+  -1.40168967     0.324549705E-02-0.184425300E-02-0.352085004E-01 01000
+   0.00000000    -0.614627877     0.268258711      0.00000000     00100
+   0.00000000    -0.334494694E-01 -1.61240146      0.00000000     00010
+  0.292838822    -0.779452895E-01 0.442923940E-01 0.845582884     00001
+ -0.461777083     0.133175413    -0.795465553E-01 -1.10941840     20000
+   2.31345901    -0.651650789     0.410139671      7.40765439     11000
+  0.313171813    -0.189779816     0.503365581E-02  1.07619090     02000
+  0.832253162E-02  3.25891656    -0.623172327     0.130538752E-01 10100
+ -0.429553235E-01-0.337197013     0.115900052    -0.673753442E-01 01100
+  0.123978942E-02 0.104304463E-02-0.173094037E-02 0.293611934E-02 00200
+ -0.346040884E-01 -34.2794401      6.37461563    -0.337822756E-01 10010
+  0.178603084      2.78206786    -0.304747320     0.174361437     01010
+  0.628665828E-01-0.824087197E-01 0.307462384E-01 0.154433368     00110
+  -1.40937257     0.301926272    -0.187978799     -2.47726546     10001
+   3.33484635    -0.862548003     0.574689548      10.5041926     01001
+  0.130450160E-01  4.51258325    -0.861523847     0.259132153E-01 00101
+ -0.372584092     0.399413185    -0.891791525E-01-0.402593189     00020
+ -0.618394303E-01 -47.7437685      8.94535901    -0.107744042     00011
+  -1.06632062     0.166741450    -0.107916202     -1.30229160     00002
+   2.02204786    -0.537494821     0.320946553      4.39751589     30000
+  -17.7287121      4.88024881     -2.93121031     -45.2936945     21000
+   41.4726095     -12.1033754      7.27184134      135.859531     12000
+  -19.2547522      6.35601113     -3.56945324     -68.6229278     03000
+ -0.639687330E-01 -12.8390163      2.47275279    -0.116142488     20100
+  0.383562426      75.4946872     -14.1477166     0.765093581     11100
+ -0.277071263     -83.0427890      15.0668682    -0.857237446     02100
+  0.521382339    -0.660319006E-01 0.836917518E-01  1.62277287     10200
+  -2.71588573     0.417636857    -0.374384878     -8.42602572     01200
+  0.379938274E-04 -2.22772443     0.411212104     0.595932468E-04 00300
+  0.401258847      134.208982     -25.7567354     0.723062757     20010
+  -2.21408761     -779.349257      145.964199     -4.18430354     11010
+  0.744454923      871.241762     -162.500709      2.34060679     02010
+  -11.1502021      2.11028387     -1.81145055     -34.1647855     10110
+   56.9030534     -11.4096322      8.30827960      175.204251     01110
+  0.176859702E-02  71.0256206     -13.2910484     0.286760063E-02 00210
+   8.25911531     -1.83293852      1.12279865      14.9915931     20001
+  -47.6174637      11.2343899     -6.91073183     -102.172282     11001
+   55.1407020     -14.8476603      8.99669951      167.425329     02001
+ -0.200203452     -29.7959889      5.79495205    -0.355610730     10101
+  0.581102351      92.6441192     -17.5793543      1.10085095     01101
+  0.674591387     0.105565741E-01 0.737030589E-01  1.59446567     00201
+   59.0337395     -14.8057659      9.71260956      178.996896     10020
+  -300.510215      74.3557247     -46.1380539     -914.862606     01020
+ -0.194284343E-01 -753.743927      142.021235    -0.257292965E-01 00120
+   1.26360425      313.950247     -60.8321033      2.32007781     10011
+  -3.37979081     -961.090841      181.666941     -6.43192219     01011
+  -14.6993848     0.949357049     -1.68119850     -34.2620508     00111
+   11.3392100     -2.12339844      1.34371761      17.7676078     10002
+  -33.1512599      6.62921721     -4.19625682     -59.3627787     01002
+ -0.156245518     -18.1815608      3.55438555    -0.262047136     00102
+  0.474746080E-01  2656.39367     -502.850202     0.463471330E-01 00030
+   78.9827105     -11.1025864      9.41992832      183.089208     00021
+  0.994119584      193.354137     -37.7652046      1.77029229     00012
+   5.21699886    -0.833070754     0.548672093      7.31883655     00003
+  -10.2310470      2.58793363     -1.55296721     -20.8818053     40000
+   122.346406     -31.8016932      19.1514013      274.803183     31000
+  -484.927223      130.536709     -78.8502838     -1239.39171     22000
+   698.547701     -196.026028      118.569038      2117.59464     13000
+  -253.197685      71.4733330     -43.2279696     -793.955820     04000
+  0.478755489      50.8042228     -9.90654419     0.873955482     30100
+  -4.37397264     -447.898534      86.2746229     -8.66132024     21100
+   11.4763945      1021.87912     -193.798068      25.5532707     12100
+  -8.48802044     -353.060335      66.8753150     -21.2396696     03100
+  -3.36720856    -0.838236137E-01-0.415102089     -7.72252748     20200
+   24.0878684    -0.495441583E-01  2.90836969      60.9325014     11200
+  -34.4455156      1.63349895     -4.69517143     -108.631838     02200
+  0.442912824E-01  12.5587081     -2.42559825     0.848367227E-01 10300
+ -0.230283981     -47.3794478      9.03448084    -0.440507240     01300
+  0.283577483E-02-0.143540814E-01-0.547824335E-02 0.852019165E-02 00400
+  -3.26791035     -534.506885      103.795498     -5.92725409     30010
+   28.6301188      4659.91444     -893.080659      56.0463947     21010
+  -70.6746261     -10463.9773      1970.57194     -152.877065     12010
+   51.0546659      3328.38500     -620.439421      110.384945     03010
+   70.5111913     -3.43784621      9.33042294      161.394208     20110
+  -496.879282      38.6458465     -65.4747054     -1255.15132     11110
+   692.837995     -91.3622773      104.349749      2188.94307     02110
+  -1.25350163     -400.576726      77.1331104     -2.34946862     10210
+   6.41379070      1464.94648     -277.703944      12.0388384     01210
+  0.616071108E-01 0.431663756     0.233010610     0.205151913     00310
+  -53.7324212      12.0470375     -7.36030184     -98.1457887     30001
+   479.946011     -111.483955      68.2857468      965.271814     21001
+  -1264.83188      310.320248     -190.049701     -2920.57582     12001
+   908.437630     -243.926965      148.585766      2640.79125     03001
+   2.09423955      181.634158     -35.4615615      3.66998998     20101
+  -12.4222735     -1095.06205      211.310694     -23.6481174     11101
+   15.9439662      1318.52165     -249.844514      34.4087498     02101
+  -9.04889731    -0.981106252    -0.821042459     -17.5288402     10201
+   32.7896220      1.98193201      3.03790517      68.2379234     01201
+  0.669006161E-01  13.8708530     -2.68487436     0.137585092     00301
+  -364.345369      44.3259006     -51.4824086     -832.969309     20020
+   2544.78208     -394.818493      363.991885      6417.23262     11020
+  -3471.80737      769.376790     -575.098054     -10993.0813     02020
+   11.3713563      4214.76797     -808.266433      20.7767758     10120
+  -57.8302273     -15048.6461      2835.73628     -105.832362     01120
+  -2.94126789     -4.06795828     -3.57808305     -9.18394603     00220
+  -14.3642114     -1918.69584      373.400431     -25.3958401     20011
+   81.1943805      11438.0513     -2198.62554      156.120611     11011
+  -97.3240701     -13566.1443      2554.66748     -212.552115     02011
+   190.592395      5.72007104      19.3473584      369.014697     10111
+  -681.345877      11.0581498     -71.0735626     -1421.30507     01111
+  -1.91822029     -449.741669      86.8561920     -3.88665845     00211
+  -106.687061      21.3753199     -13.3322724     -177.074890     20002
+   635.350738     -132.444105      82.7053122      1158.01320     11002
+  -835.125874      186.172717     -115.959664     -1741.61113     02002
+   3.06174899      221.985076     -43.3397534      5.08551026     10102
+  -8.92400515     -682.419547      131.944729     -16.1898306     01102
+  -5.93441915     -1.10073089    -0.387050717     -10.1072756     00202
+  -32.9889804     -14661.6002      2798.56486     -58.1276687     10030
+   167.517882      51368.8943     -9618.43653      295.415008     01030
+   28.3941058      9.68440912      23.4686858      87.2909201     00130
+  -991.039515      46.5410861     -111.012273     -1919.22414     10021
+   3518.02262     -329.920257      408.281903      7348.25893     01021
+   17.6373144      4803.10768     -924.194977      35.2966403     00121
+  -21.1299702     -2355.14589      458.851005     -35.7625112     10012
+   58.3993981      7153.37736     -1379.14932      108.523448     01012
+   125.953372      12.6540917      9.76198657      213.987872     00112
+  -95.1280312      17.1315503     -10.9364018     -145.190535     10003
+   284.630982     -53.3887762      34.0723953      475.442592     01003
+   1.49562799      92.8494452     -18.0995701      2.34278439     00103
+  -79.5213480      20.8879779     -54.9235969     -242.773246     00040
+  -51.9910231     -16946.9750      3246.45578     -102.509862     00031
+  -659.873281     -11.7721902     -58.9266855     -1119.21453     00022
+  -10.4011417     -989.993417      192.843488     -16.7150638     00013
+  -32.1638309      5.22805783     -3.42382893     -45.5409473     00004
+ ------------------------------------------------------------------------------
diff --git a/DATFILES/SHMS_fr3_rec__order_5.dat b/DATFILES/SHMS_fr3_rec__order_5.dat
new file mode 100644
index 0000000000000000000000000000000000000000..5179911bc917b729ae6219763f662a47f467eb47
--- /dev/null
+++ b/DATFILES/SHMS_fr3_rec__order_5.dat
@@ -0,0 +1,257 @@
+! SHMS reconstruction optics
+! made with Cosy from `shms-2011-26cm-monte.fox`
+! order: 5
+! 2017/03/02
+ ------------------------------------------------------------------------------
+  0.271575341    -0.562369031E-01 0.319566081E-01 0.610081289     10000
+  -1.40168967     0.324549698E-02-0.184425296E-02-0.352084997E-01 01000
+   0.00000000    -0.614627877     0.268258711      0.00000000     00100
+   0.00000000    -0.334494674E-01 -1.61240146      0.00000000     00010
+  0.292838822    -0.779452895E-01 0.442923940E-01 0.845582884     00001
+ -0.461777082     0.133175413    -0.795465553E-01 -1.10941840     20000
+   2.31345901    -0.651650789     0.410139671      7.40765439     11000
+  0.313171815    -0.189779816     0.503365625E-02  1.07619091     02000
+  0.832253162E-02  3.25891656    -0.623172326     0.130538752E-01 10100
+ -0.429553235E-01-0.337197010     0.115900052    -0.673753442E-01 01100
+  0.123978942E-02 0.104304463E-02-0.173094037E-02 0.293611934E-02 00200
+ -0.346040884E-01 -34.2794401      6.37461563    -0.337822756E-01 10010
+  0.178603084      2.78206782    -0.304747312     0.174361437     01010
+  0.628665828E-01-0.824087197E-01 0.307462384E-01 0.154433368     00110
+  -1.40937257     0.301926272    -0.187978798     -2.47726545     10001
+   3.33484635    -0.862548002     0.574689547      10.5041925     01001
+  0.130450160E-01  4.51258325    -0.861523847     0.259132153E-01 00101
+ -0.372584092     0.399413185    -0.891791525E-01-0.402593189     00020
+ -0.618394303E-01 -47.7437684      8.94535901    -0.107744042     00011
+  -1.06632062     0.166741450    -0.107916202     -1.30229160     00002
+   2.02204786    -0.537494821     0.320946553      4.39751589     30000
+  -17.7287122      4.88024881     -2.93121031     -45.2936945     21000
+   41.4726098     -12.1033754      7.27184134      135.859531     12000
+  -19.2547528      6.35601114     -3.56945325     -68.6229279     03000
+ -0.639687329E-01 -12.8390162      2.47275278    -0.116142488     20100
+  0.383562426      75.4946868     -14.1477165     0.765093581     11100
+ -0.277071262     -83.0427880      15.0668680    -0.857237445     02100
+  0.521382349    -0.660319017E-01 0.836917524E-01  1.62277288     10200
+  -2.71588577     0.417636863    -0.374384882     -8.42602578     01200
+  0.379938273E-04 -2.22772442     0.411212102     0.595932467E-04 00300
+  0.401258847      134.208981     -25.7567352     0.723062756     20010
+  -2.21408761     -779.349251      145.964198     -4.18430354     11010
+  0.744454921      871.241749     -162.500706      2.34060678     02010
+  -11.1502023      2.11028391     -1.81145056     -34.1647858     10110
+   56.9030546     -11.4096324      8.30827969      175.204252     01110
+  0.176859702E-02  71.0256202     -13.2910484     0.286760063E-02 00210
+   8.25911533     -1.83293852      1.12279865      14.9915932     20001
+  -47.6174640      11.2343899     -6.91073184     -102.172283     11001
+   55.1407027     -14.8476604      8.99669956      167.425330     02001
+ -0.200203451     -29.7959888      5.79495202    -0.355610730     10101
+  0.581102350      92.6441184     -17.5793541      1.10085095     01101
+  0.674591404     0.105565714E-01 0.737030604E-01  1.59446570     00201
+   59.0337410     -14.8057661      9.71260968      178.996899     10020
+  -300.510223      74.3557258     -46.1380545     -914.862619     01020
+ -0.194284343E-01 -753.743922      142.021234    -0.257292965E-01 00120
+   1.26360425      313.950245     -60.8321028      2.32007780     10011
+  -3.37979080     -961.090831      181.666938     -6.43192218     01011
+  -14.6993853     0.949357116     -1.68119854     -34.2620515     00111
+   11.3392101     -2.12339845      1.34371761      17.7676078     10002
+  -33.1512601      6.62921725     -4.19625684     -59.3627791     01002
+ -0.156245518     -18.1815606      3.55438552    -0.262047136     00102
+  0.474746080E-01  2656.39365     -502.850198     0.463471331E-01 00030
+   78.9827133     -11.1025869      9.41992856      183.089213     00021
+  0.994119583      193.354135     -37.7652042      1.77029229     00012
+   5.21699889    -0.833070759     0.548672095      7.31883661     00003
+  -10.2310470      2.58793362     -1.55296720     -20.8818053     40000
+   122.346406     -31.8016930      19.1514013      274.803184     31000
+  -484.927225      130.536708     -78.8502835     -1239.39171     22000
+   698.547705     -196.026025      118.569037      2117.59465     13000
+  -253.197685      71.4733280     -43.2279683     -793.955821     04000
+  0.478755489      50.8042226     -9.90654415     0.873955482     30100
+  -4.37397264     -447.898533      86.2746226     -8.66132023     21100
+   11.4763945      1021.87911     -193.798067      25.5532707     12100
+  -8.48802047     -353.060336      66.8753151     -21.2396696     03100
+  -3.36720859    -0.838236058E-01-0.415102092     -7.72252752     20200
+   24.0878686    -0.495442242E-01  2.90836971      60.9325017     11200
+  -34.4455158      1.63349908     -4.69517149     -108.631838     02200
+  0.442912829E-01  12.5587082     -2.42559826     0.848367234E-01 10300
+ -0.230283983     -47.3794481      9.03448090    -0.440507243     01300
+  0.283577623E-02-0.143540811E-01-0.547824347E-02 0.852018881E-02 00400
+  -3.26791034     -534.506883      103.795497     -5.92725408     30010
+   28.6301187      4659.91443     -893.080655      56.0463946     21010
+  -70.6746258     -10463.9772      1970.57193     -152.877065     12010
+   51.0546655      3328.38501     -620.439424      110.384945     03010
+   70.5111920     -3.43784640      9.33042304      161.394209     20110
+  -496.879287      38.6458480     -65.4747062     -1255.15133     11110
+   692.838002     -91.3622801      104.349751      2188.94309     02110
+  -1.25350164     -400.576729      77.1331109     -2.34946863     10210
+   6.41379076      1464.94649     -277.703946      12.0388385     01210
+  0.616071012E-01 0.431663751     0.233010610     0.205151952     00310
+  -53.7324214      12.0470374     -7.36030183     -98.1457889     30001
+   479.946013     -111.483954      68.2857467      965.271817     21001
+  -1264.83189      310.320245     -190.049701     -2920.57583     12001
+   908.437639     -243.926958      148.585765      2640.79126     03001
+   2.09423955      181.634158     -35.4615614      3.66998997     20101
+  -12.4222735     -1095.06205      211.310693     -23.6481174     11101
+   15.9439662      1318.52165     -249.844514      34.4087498     02101
+  -9.04889740    -0.981106225    -0.821042471     -17.5288403     10201
+   32.7896223      1.98193189      3.03790521      68.2379240     01201
+  0.669006170E-01  13.8708532     -2.68487439     0.137585094     00301
+  -364.345374      44.3259017     -51.4824092     -832.969317     20020
+   2544.78211     -394.818501      363.991890      6417.23269     11020
+  -3471.80741      769.376804     -575.098061     -10993.0814     02020
+   11.3713564      4214.76800     -808.266439      20.7767760     10120
+  -57.8302278     -15048.6462      2835.73631     -105.832362     01120
+  -2.94126792     -4.06795824     -3.57808304     -9.18394633     00220
+  -14.3642114     -1918.69583      373.400429     -25.3958400     20011
+   81.1943803      11438.0513     -2198.62553      156.120610     11011
+  -97.3240697     -13566.1443      2554.66747     -212.552114     02011
+   190.592397      5.72007042      19.3473587      369.014700     10111
+  -681.345885      11.0581522     -71.0735638     -1421.30508     01111
+  -1.91822032     -449.741675      86.8561930     -3.88665848     00211
+  -106.687061      21.3753198     -13.3322724     -177.074891     20002
+   635.350743     -132.444104      82.7053121      1158.01320     11002
+  -835.125883      186.172714     -115.959663     -1741.61114     02002
+   3.06174899      221.985076     -43.3397533      5.08551026     10102
+  -8.92400516     -682.419546      131.944729     -16.1898306     01102
+  -5.93441922     -1.10073087    -0.387050726     -10.1072757     00202
+  -32.9889805     -14661.6003      2798.56489     -58.1276688     10030
+   167.517883      51368.8950     -9618.43666      295.415008     01030
+   28.3941064      9.68440896      23.4686857      87.2909218     00130
+  -991.039530      46.5410894     -111.012275     -1919.22417     10021
+   3518.02268     -329.920270      408.281910      7348.25903     01021
+   17.6373146      4803.10775     -924.194990      35.2966406     00121
+  -21.1299702     -2355.14588      458.851003     -35.7625111     10012
+   58.3993979      7153.37734     -1379.14931      108.523448     01012
+   125.953374      12.6540913      9.76198680      213.987875     00112
+  -95.1280319      17.1315501     -10.9364018     -145.190536     10003
+   284.630985     -53.3887753      34.0723952      475.442597     01003
+   1.49562799      92.8494449     -18.0995700      2.34278440     00103
+  -79.5213500      20.8879780     -54.9235967     -242.773250     00040
+  -51.9910235     -16946.9753      3246.45584     -102.509863     00031
+  -659.873293     -11.7721877     -58.9266869     -1119.21455     00022
+  -10.4011417     -989.993413      192.843487     -16.7150638     00013
+  -32.1638312      5.22805774     -3.42382892     -45.5409478     00004
+   56.9874052     -14.0280263      8.44406126      113.166389     50000
+  -862.148504      217.000788     -130.924262     -1835.65902     41000
+   4799.47652     -1241.60187      750.626149      11147.8478     32000
+  -11898.1698      3183.83477     -1927.63729     -30857.8307     23000
+   12434.6516     -3462.29213      2097.50161      36948.2031     14000
+  -3990.49244      1146.30283     -695.128709     -12945.5677     05000
+  -3.44477032     -249.145828      48.6057862     -6.29724345     40100
+   41.7714168      3027.67374     -585.679647      81.4344326     31100
+  -171.531494     -12177.5931      2329.03675     -364.018985     22100
+   270.625730      17725.3388     -3335.70768      643.261694     13100
+  -126.957714     -6539.67012      1198.52782     -351.996902     04100
+   23.2462346      2.43155837      2.29253668      49.3366366     30200
+  -234.783393     -17.9606079     -23.9389059     -539.518291     21200
+   704.178643      25.5892552      77.1664334      1824.75535     12200
+  -576.444408      12.2697306     -71.2693576     -1828.16626     03200
+ -0.598599182     -84.4603491      16.4396122     -1.13912510     20300
+   4.45817688      605.281820     -116.354654      8.83333001     11300
+  -7.03512063     -915.661182      172.660638     -15.2093916     02300
+   1.06762704     0.374255924     0.119161486      2.95562701     10400
+  -5.59540997     -1.56625339    -0.450286240     -15.4431799     01400
+  0.217197000E-03-0.960608366     0.168448980     0.411150714E-03 00500
+   24.1580478      2632.70126     -511.988836      43.9432023     40010
+  -283.128549     -31772.9550      6125.08862     -549.087000     31010
+   1107.42109      126922.676     -24183.7800      2337.09747     22010
+  -1621.47504     -183964.370      34490.9352     -3824.14748     13010
+   659.869151      68870.4014     -12630.8408      1800.59807     04010
+  -485.210604     -16.1842214     -53.1948724     -1031.03277     30110
+   4859.46831      25.5791673      551.405275      11180.9997     21110
+  -14433.5182      504.059994     -1757.92419     -37456.4033     12110
+   11677.5132     -1058.56813      1592.31596      37107.0771     03110
+   16.8661919      2683.74362     -521.349453      31.9458035     20210
+  -123.178207     -18974.1474      3639.79305     -243.290295     11210
+   187.528059      28293.7118     -5322.14179      406.182661     02210
+  -47.5232327     -12.3285624     -5.60088482     -130.920636     10310
+   244.431098      48.5160794      21.8048230      674.824538     01310
+  0.431976467E-02  59.8136908     -11.0319431     0.864761359E-02 00410
+   367.377567     -82.6824915      50.4619769      673.160709     40001
+  -4435.92025      1023.92370     -626.038427     -8711.03977     31001
+   18493.3531     -4415.47173      2702.05022      39666.9109     22001
+  -30567.4222      7638.46524     -4671.44742     -73617.1308     13001
+   16038.4954     -4252.36261      2593.32705      45293.5060     04001
+  -19.4043828     -1193.12161      232.740037     -34.0166755     30101
+   174.493103      10939.1238     -2117.64680      326.128670     21101
+  -473.155134     -29745.1369      5698.26365     -962.418162     12101
+   370.379831      22233.4059     -4191.91515      845.592924     03101
+   91.0190854      14.9697702      6.95171402      172.875986     20201
+  -613.410062     -77.7304058     -50.4260848     -1251.62438     11201
+   926.799756      71.2278125      85.5228150      2115.72110     02201
+  -1.75130753     -195.741237      38.1734565     -3.26332266     10301
+   6.40012284      720.989443     -139.129269      12.2486999     01301
+   1.27109344     0.743554964     0.743139297E-01  3.18869907     00401
+   2499.68930     -92.0884395      300.960890      5321.22948     30020
+  -24933.5577      1656.32226     -3115.41289     -57451.6252     21020
+   73661.4307     -7942.31534      9882.57243      191450.910     12020
+  -59184.9250      9591.30798     -8838.09084     -188552.036     03020
+  -153.998922     -28195.2434      5464.23299     -290.242072     20120
+   1103.92870      197369.539     -37773.2044      2170.71865     11120
+  -1613.20094     -291108.369      54629.3971     -3496.90704     02120
+   775.584342      138.679038      96.0710850      2130.83121     10220
+  -3940.62199     -489.398388     -384.097382     -10885.0526     01220
+ -0.294033498     -1413.02750      264.755228    -0.557828885     00320
+   136.908065      12637.7063     -2459.05241      240.570548     30011
+  -1189.00726     -115052.551      22210.8941     -2230.01537     21011
+   3074.10115      310484.814     -59292.1644      6282.87279     12011
+  -2245.00467     -230632.952      43325.6304     -5153.99079     03011
+  -1905.33134     -170.893713     -168.479423     -3624.81709     20111
+   12735.6104      676.510595      1202.37578      26046.1290     11111
+  -19041.3456     -89.1798916     -1996.87135     -43631.5482     02111
+   49.6705800      6260.46872     -1218.72438      92.3424360     10211
+  -177.736416     -22749.9325      4381.96994     -340.054305     01211
+  -57.1634358     -26.8276872     -3.97845276     -142.039230     00311
+   955.320788     -197.644075      122.452961      1629.28796     30002
+  -8645.71138      1838.09648     -1140.13038     -15786.8327     21002
+   24022.7123     -5306.89371      3290.49341      47910.1278     12002
+  -19860.1945      4633.69315     -2864.62252     -44514.6215     03002
+  -41.0518476     -2186.45130      426.114423     -68.7276992     20102
+   244.190268      13439.4172     -2601.50144      436.382642     11102
+  -328.503492     -18478.6624      3543.14182     -639.758333     02102
+   118.919180      25.8939262      6.86989890      205.981939     10202
+  -404.064248     -69.2253993     -26.3853981     -745.324679     01202
+  -1.26449657     -114.704160      22.3668870     -2.26605584     00302
+   455.464686      98107.3191     -18964.7244      853.218781     20030
+  -3197.09543     -682046.123      130223.471     -6246.78311     11030
+   4428.96802      998321.180     -186937.682      9597.92772     02030
+  -5526.58960     -579.618541     -717.130860     -15173.1141     10130
+   27890.3721      1516.19385      2940.47657      77117.8731     01130
+   4.12740865      16022.0792     -3013.04039      7.64253774     00230
+   9846.83071      160.286895      986.066875      18773.2629     20021
+  -65566.5962      1354.63778     -6982.87458     -134372.683     11021
+   97426.3918     -6713.28525      11450.7709      223931.713     02021
+  -456.872353     -66175.1137      12853.5558     -848.384005     10121
+   1601.78891      238078.392     -45760.3184      3063.93531     01121
+   939.888077      347.481304      74.9163503      2324.91804     00221
+   291.291280      23217.1250     -4516.92215      491.395891     20012
+  -1672.25515     -141679.134      27370.4460     -3018.96270     11012
+   2145.08264      193215.095     -36959.2643      4231.12527     02012
+  -2498.26487     -348.210426     -176.637168     -4332.69216     10112
+   8422.08921      801.803136      657.778824      15569.9687     01112
+   36.1334242      3694.59848     -719.338793      64.6877708     00212
+   1253.94055     -239.430298      150.769632      2004.15183     20003
+  -7573.08007      1487.60127     -937.185346     -12941.0765     11003
+   10531.1436     -2156.83420      1356.43726      19652.8353     02003
+  -38.7031132     -1815.97136      353.365535     -61.7810020     10103
+   114.627679      5618.04358     -1086.75763      195.570480     01103
+   51.7940111      13.8809432      2.15620301      83.1013912     00203
+   14564.2549      511.990977      1974.52369      40035.0881     10040
+  -73363.6784      943.163943     -8305.08084     -203174.862     01040
+  -22.8085734     -88027.5212      16535.0877     -41.2193059     00140
+   1362.71596      231613.917     -44879.3389      2529.02565     10031
+  -4667.45713     -827371.337      158681.295     -8926.39149     01031
+  -6733.37773     -1886.39701     -600.492321     -16647.5823     00131
+   12959.2913      812.675183      1078.63618      22515.2213     10022
+  -43542.1228     -835.654469     -3950.38443     -80648.1551     01022
+  -335.014584     -39308.1721      7638.29187     -600.384561     00122
+   276.145232      19334.5383     -3758.95614      445.849699     10013
+  -788.763635     -59372.6331      11471.8453     -1366.71593     01013
+  -1092.59778     -202.863258     -60.5394738     -1753.76896     00113
+   831.520392     -146.935766      94.1466613      1252.09492     10004
+  -2518.45211      457.879726     -293.345340     -4046.44792     01004
+  -13.7319298     -575.917403      111.835289     -20.8987165     00104
+   44.4270743      188823.510     -35350.8790      78.3118688     00050
+   17812.3889      3504.86325      1749.96339      44166.2643     00041
+   1008.09985      138438.014     -26843.5381      1811.48774     00032
+   5691.22754      599.924140      391.062451      9145.39260     00023
+   98.5289267      6149.62744     -1194.22453      152.056469     00014
+   223.021664     -36.5318347      23.8422660      317.711926     00005
+ ------------------------------------------------------------------------------
diff --git a/DATFILES/SHMS_fr3_rec__order_6.dat b/DATFILES/SHMS_fr3_rec__order_6.dat
new file mode 100644
index 0000000000000000000000000000000000000000..3974aa1dc4c81451338ca14ef0c06a751a4650ab
--- /dev/null
+++ b/DATFILES/SHMS_fr3_rec__order_6.dat
@@ -0,0 +1,467 @@
+! SHMS reconstruction optics
+! made with Cosy from `shms-2011-26cm-monte.fox`
+! order: 6
+! 2017/03/02
+ ------------------------------------------------------------------------------
+  0.271575341    -0.562369031E-01 0.319566081E-01 0.610081289     10000
+  -1.40168967     0.324549698E-02-0.184425296E-02-0.352084997E-01 01000
+   0.00000000    -0.614627877     0.268258711      0.00000000     00100
+   0.00000000    -0.334494674E-01 -1.61240146      0.00000000     00010
+  0.292838822    -0.779452895E-01 0.442923940E-01 0.845582884     00001
+ -0.461777082     0.133175412    -0.795465553E-01 -1.10941840     20000
+   2.31345901    -0.651650789     0.410139671      7.40765439     11000
+  0.313171816    -0.189779817     0.503365657E-02  1.07619091     02000
+  0.832253162E-02  3.25891656    -0.623172326     0.130538752E-01 10100
+ -0.429553235E-01-0.337197010     0.115900052    -0.673753442E-01 01100
+  0.123978944E-02 0.104304462E-02-0.173094037E-02 0.293611941E-02 00200
+ -0.346040884E-01 -34.2794401      6.37461563    -0.337822756E-01 10010
+  0.178603084      2.78206782    -0.304747312     0.174361437     01010
+  0.628665824E-01-0.824087196E-01 0.307462383E-01 0.154433366     00110
+  -1.40937257     0.301926272    -0.187978798     -2.47726545     10001
+   3.33484635    -0.862548001     0.574689548      10.5041925     01001
+  0.130450160E-01  4.51258325    -0.861523847     0.259132153E-01 00101
+ -0.372584091     0.399413184    -0.891791521E-01-0.402593181     00020
+ -0.618394303E-01 -47.7437684      8.94535901    -0.107744042     00011
+  -1.06632062     0.166741450    -0.107916203     -1.30229160     00002
+   2.02204786    -0.537494821     0.320946553      4.39751589     30000
+  -17.7287122      4.88024881     -2.93121031     -45.2936945     21000
+   41.4726098     -12.1033754      7.27184133      135.859531     12000
+  -19.2547528      6.35601114     -3.56945325     -68.6229279     03000
+ -0.639687329E-01 -12.8390162      2.47275278    -0.116142488     20100
+  0.383562426      75.4946868     -14.1477165     0.765093581     11100
+ -0.277071262     -83.0427880      15.0668680    -0.857237445     02100
+  0.521382349    -0.660319016E-01 0.836917524E-01  1.62277288     10200
+  -2.71588577     0.417636863    -0.374384881     -8.42602577     01200
+  0.379938280E-04 -2.22772442     0.411212102     0.595932479E-04 00300
+  0.401258847      134.208981     -25.7567352     0.723062756     20010
+  -2.21408761     -779.349251      145.964198     -4.18430354     11010
+  0.744454921      871.241749     -162.500706      2.34060678     02010
+  -11.1502023      2.11028390     -1.81145056     -34.1647858     10110
+   56.9030546     -11.4096324      8.30827969      175.204252     01110
+  0.176859701E-02  71.0256202     -13.2910484     0.286760060E-02 00210
+   8.25911533     -1.83293852      1.12279865      14.9915932     20001
+  -47.6174640      11.2343899     -6.91073184     -102.172283     11001
+   55.1407027     -14.8476604      8.99669956      167.425330     02001
+ -0.200203451     -29.7959888      5.79495202    -0.355610730     10101
+  0.581102350      92.6441184     -17.5793541      1.10085095     01101
+  0.674591404     0.105565714E-01 0.737030604E-01  1.59446570     00201
+   59.0337410     -14.8057661      9.71260968      178.996899     10020
+  -300.510223      74.3557258     -46.1380545     -914.862618     01020
+ -0.194284342E-01 -753.743922      142.021234    -0.257292963E-01 00120
+   1.26360425      313.950245     -60.8321028      2.32007780     10011
+  -3.37979080     -961.090831      181.666938     -6.43192218     01011
+  -14.6993853     0.949357116     -1.68119854     -34.2620515     00111
+   11.3392101     -2.12339845      1.34371761      17.7676078     10002
+  -33.1512601      6.62921725     -4.19625684     -59.3627791     01002
+ -0.156245518     -18.1815606      3.55438552    -0.262047135     00102
+  0.474746078E-01  2656.39365     -502.850198     0.463471329E-01 00030
+   78.9827133     -11.1025869      9.41992856      183.089213     00021
+  0.994119583      193.354135     -37.7652042      1.77029229     00012
+   5.21699889    -0.833070758     0.548672097      7.31883661     00003
+  -10.2310470      2.58793363     -1.55296720     -20.8818053     40000
+   122.346406     -31.8016931      19.1514013      274.803184     31000
+  -484.927225      130.536708     -78.8502836     -1239.39171     22000
+   698.547705     -196.026026      118.569037      2117.59465     13000
+  -253.197685      71.4733299     -43.2279688     -793.955821     04000
+  0.478755489      50.8042226     -9.90654415     0.873955482     30100
+  -4.37397264     -447.898533      86.2746226     -8.66132023     21100
+   11.4763945      1021.87911     -193.798067      25.5532707     12100
+  -8.48802047     -353.060336      66.8753151     -21.2396696     03100
+  -3.36720859    -0.838236063E-01-0.415102092     -7.72252752     20200
+   24.0878685    -0.495442198E-01  2.90836971      60.9325017     11200
+  -34.4455158      1.63349907     -4.69517148     -108.631838     02200
+  0.442912828E-01  12.5587082     -2.42559826     0.848367234E-01 10300
+ -0.230283983     -47.3794481      9.03448089    -0.440507243     01300
+  0.283577733E-02-0.143540800E-01-0.547824407E-02 0.852017739E-02 00400
+  -3.26791034     -534.506883      103.795497     -5.92725407     30010
+   28.6301187      4659.91443     -893.080655      56.0463946     21010
+  -70.6746258     -10463.9772      1970.57193     -152.877065     12010
+   51.0546655      3328.38501     -620.439424      110.384945     03010
+   70.5111920     -3.43784639      9.33042303      161.394209     20110
+  -496.879287      38.6458479     -65.4747061     -1255.15133     11110
+   692.838001     -91.3622799      104.349751      2188.94309     02110
+  -1.25350164     -400.576728      77.1331109     -2.34946863     10210
+   6.41379076      1464.94649     -277.703946      12.0388385     01210
+  0.616070570E-01 0.431663738     0.233010617     0.205152083     00310
+  -53.7324214      12.0470375     -7.36030184     -98.1457889     30001
+   479.946013     -111.483955      68.2857468      965.271817     21001
+  -1264.83189      310.320246     -190.049701     -2920.57583     12001
+   908.437639     -243.926960      148.585765      2640.79126     03001
+   2.09423955      181.634158     -35.4615614      3.66998997     20101
+  -12.4222735     -1095.06205      211.310693     -23.6481174     11101
+   15.9439662      1318.52165     -249.844514      34.4087498     02101
+  -9.04889740    -0.981106226    -0.821042471     -17.5288403     10201
+   32.7896223      1.98193190      3.03790521      68.2379240     01201
+  0.669006170E-01  13.8708532     -2.68487439     0.137585094     00301
+  -364.345374      44.3259017     -51.4824091     -832.969317     20020
+   2544.78211     -394.818501      363.991889      6417.23269     11020
+  -3471.80741      769.376803     -575.098061     -10993.0814     02020
+   11.3713564      4214.76800     -808.266439      20.7767759     10120
+  -57.8302278     -15048.6462      2835.73631     -105.832362     01120
+  -2.94126738     -4.06795826     -3.57808303     -9.18394609     00220
+  -14.3642114     -1918.69583      373.400429     -25.3958400     20011
+   81.1943803      11438.0513     -2198.62553      156.120610     11011
+  -97.3240696     -13566.1443      2554.66747     -212.552114     02011
+   190.592397      5.72007044      19.3473587      369.014700     10111
+  -681.345885      11.0581522     -71.0735638     -1421.30508     01111
+  -1.91822032     -449.741674      86.8561930     -3.88665848     00211
+  -106.687061      21.3753198     -13.3322724     -177.074891     20002
+   635.350743     -132.444105      82.7053122      1158.01320     11002
+  -835.125883      186.172715     -115.959663     -1741.61114     02002
+   3.06174899      221.985076     -43.3397533      5.08551026     10102
+  -8.92400515     -682.419546      131.944729     -16.1898306     01102
+  -5.93441922     -1.10073087    -0.387050727     -10.1072757     00202
+  -32.9889805     -14661.6003      2798.56489     -58.1276688     10030
+   167.517883      51368.8950     -9618.43665      295.415008     01030
+   28.3941035      9.68440966      23.4686853      87.2909141     00130
+  -991.039530      46.5410893     -111.012275     -1919.22416     10021
+   3518.02268     -329.920269      408.281910      7348.25903     01021
+   17.6373146      4803.10774     -924.194989      35.2966405     00121
+  -21.1299702     -2355.14588      458.851003     -35.7625111     10012
+   58.3993979      7153.37734     -1379.14931      108.523448     01012
+   125.953374      12.6540913      9.76198680      213.987875     00112
+  -95.1280319      17.1315502     -10.9364018     -145.190536     10003
+   284.630985     -53.3887756      34.0723952      475.442597     01003
+   1.49562799      92.8494449     -18.0995700      2.34278439     00103
+  -79.5213439      20.8879758     -54.9235955     -242.773226     00040
+  -51.9910235     -16946.9753      3246.45584     -102.509862     00031
+  -659.873293     -11.7721877     -58.9266869     -1119.21455     00022
+  -10.4011416     -989.993413      192.843487     -16.7150638     00013
+  -32.1638312      5.22805775     -3.42382897     -45.5409478     00004
+   56.9874052     -14.0280264      8.44406126      113.166389     50000
+  -862.148504      217.000788     -130.924262     -1835.65902     41000
+   4799.47652     -1241.60187      750.626149      11147.8478     32000
+  -11898.1698      3183.83478     -1927.63729     -30857.8307     23000
+   12434.6516     -3462.29214      2097.50161      36948.2031     14000
+  -3990.49244      1146.30283     -695.128709     -12945.5677     05000
+  -3.44477032     -249.145828      48.6057862     -6.29724345     40100
+   41.7714168      3027.67374     -585.679647      81.4344326     31100
+  -171.531494     -12177.5931      2329.03675     -364.018985     22100
+   270.625730      17725.3388     -3335.70768      643.261693     13100
+  -126.957714     -6539.67012      1198.52782     -351.996902     04100
+   23.2462346      2.43155837      2.29253668      49.3366365     30200
+  -234.783393     -17.9606079     -23.9389058     -539.518291     21200
+   704.178643      25.5892554      77.1664333      1824.75535     12200
+  -576.444408      12.2697305     -71.2693576     -1828.16626     03200
+ -0.598599181     -84.4603491      16.4396122     -1.13912509     20300
+   4.45817688      605.281819     -116.354654      8.83333001     11300
+  -7.03512062     -915.661181      172.660638     -15.2093915     02300
+   1.06762705     0.374255925     0.119161485      2.95562699     10400
+  -5.59541001     -1.56625339    -0.450286237     -15.4431799     01400
+  0.217197036E-03-0.960608428     0.168448991     0.411150773E-03 00500
+   24.1580478      2632.70126     -511.988836      43.9432023     40010
+  -283.128549     -31772.9550      6125.08862     -549.087000     31010
+   1107.42109      126922.676     -24183.7800      2337.09747     22010
+  -1621.47504     -183964.370      34490.9352     -3824.14748     13010
+   659.869151      68870.4014     -12630.8408      1800.59807     04010
+  -485.210604     -16.1842215     -53.1948723     -1031.03277     30110
+   4859.46831      25.5791678      551.405274      11180.9997     21110
+  -14433.5182      504.059993     -1757.92419     -37456.4033     12110
+   11677.5132     -1058.56813      1592.31596      37107.0770     03110
+   16.8661919      2683.74362     -521.349453      31.9458035     20210
+  -123.178207     -18974.1474      3639.79305     -243.290295     11210
+   187.528059      28293.7117     -5322.14179      406.182661     02210
+  -47.5232327     -12.3285625     -5.60088479     -130.920635     10310
+   244.431098      48.5160796      21.8048229      674.824535     01310
+  0.431976306E-02  59.8136922     -11.0319433     0.864761108E-02 00410
+   367.377567     -82.6824917      50.4619769      673.160709     40001
+  -4435.92025      1023.92371     -626.038428     -8711.03977     31001
+   18493.3531     -4415.47174      2702.05023      39666.9109     22001
+  -30567.4222      7638.46527     -4671.44743     -73617.1309     13001
+   16038.4954     -4252.36263      2593.32705      45293.5060     04001
+  -19.4043828     -1193.12161      232.740037     -34.0166755     30101
+   174.493103      10939.1238     -2117.64680      326.128670     21101
+  -473.155134     -29745.1369      5698.26365     -962.418162     12101
+   370.379830      22233.4059     -4191.91514      845.592924     03101
+   91.0190854      14.9697702      6.95171401      172.875986     20201
+  -613.410062     -77.7304059     -50.4260848     -1251.62438     11201
+   926.799755      71.2278127      85.5228149      2115.72110     02201
+  -1.75130753     -195.741237      38.1734565     -3.26332266     10301
+   6.40012284      720.989443     -139.129269      12.2486999     01301
+   1.27109345     0.743554961     0.743139310E-01  3.18869908     00401
+   2499.68930     -92.0884393      300.960890      5321.22947     30020
+  -24933.5577      1656.32226     -3115.41289     -57451.6252     21020
+   73661.4307     -7942.31533      9882.57243      191450.910     12020
+  -59184.9250      9591.30797     -8838.09084     -188552.036     03020
+  -153.998922     -28195.2434      5464.23299     -290.242072     20120
+   1103.92870      197369.539     -37773.2044      2170.71865     11120
+  -1613.20094     -291108.369      54629.3971     -3496.90704     02120
+   775.584340      138.679038      96.0710844      2130.83120     10220
+  -3940.62199     -489.398391     -384.097380     -10885.0526     01220
+ -0.294033474     -1413.02750      264.755228    -0.557828849     00320
+   136.908065      12637.7063     -2459.05241      240.570548     30011
+  -1189.00726     -115052.551      22210.8941     -2230.01537     21011
+   3074.10115      310484.814     -59292.1644      6282.87278     12011
+  -2245.00467     -230632.952      43325.6304     -5153.99079     03011
+  -1905.33134     -170.893713     -168.479422     -3624.81709     20111
+   12735.6104      676.510596      1202.37578      26046.1290     11111
+  -19041.3456     -89.1798936     -1996.87135     -43631.5482     02111
+   49.6705799      6260.46871     -1218.72438      92.3424359     10211
+  -177.736415     -22749.9325      4381.96993     -340.054304     01211
+  -57.1634358     -26.8276872     -3.97845276     -142.039230     00311
+   955.320788     -197.644076      122.452961      1629.28796     30002
+  -8645.71138      1838.09648     -1140.13038     -15786.8327     21002
+   24022.7123     -5306.89373      3290.49342      47910.1278     12002
+  -19860.1945      4633.69317     -2864.62253     -44514.6215     03002
+  -41.0518476     -2186.45130      426.114423     -68.7276992     20102
+   244.190268      13439.4172     -2601.50144      436.382641     11102
+  -328.503492     -18478.6624      3543.14182     -639.758333     02102
+   118.919180      25.8939262      6.86989890      205.981939     10202
+  -404.064248     -69.2253994     -26.3853981     -745.324679     01202
+  -1.26449657     -114.704160      22.3668870     -2.26605583     00302
+   455.464686      98107.3190     -18964.7244      853.218781     20030
+  -3197.09543     -682046.122      130223.471     -6246.78311     11030
+   4428.96802      998321.180     -186937.682      9597.92772     02030
+  -5526.58958     -579.618546     -717.130857     -15173.1140     10130
+   27890.3720      1516.19387      2940.47656      77117.8729     01130
+   4.12740847      16022.0791     -3013.04037      7.64253749     00230
+   9846.83071      160.286896      986.066874      18773.2629     20021
+  -65566.5962      1354.63778     -6982.87458     -134372.683     11021
+   97426.3918     -6713.28524      11450.7709      223931.713     02021
+  -456.872352     -66175.1137      12853.5558     -848.384005     10121
+   1601.78891      238078.392     -45760.3183      3063.93531     01121
+   939.888074      347.481305      74.9163500      2324.91803     00221
+   291.291280      23217.1250     -4516.92215      491.395891     20012
+  -1672.25515     -141679.134      27370.4460     -3018.96270     11012
+   2145.08264      193215.095     -36959.2643      4231.12527     02012
+  -2498.26487     -348.210426     -176.637168     -4332.69216     10112
+   8422.08921      801.803137      657.778824      15569.9687     01112
+   36.1334242      3694.59848     -719.338793      64.6877707     00212
+   1253.94055     -239.430299      150.769632      2004.15183     20003
+  -7573.08007      1487.60128     -937.185348     -12941.0765     11003
+   10531.1436     -2156.83421      1356.43726      19652.8353     02003
+  -38.7031132     -1815.97136      353.365535     -61.7810020     10103
+   114.627679      5618.04358     -1086.75763      195.570480     01103
+   51.7940111      13.8809432      2.15620301      83.1013911     00203
+   14564.2549      511.990989      1974.52368      40035.0880     10040
+  -73363.6783      943.163905     -8305.08081     -203174.862     01040
+  -22.8085727     -88027.5206      16535.0876     -41.2193050     00140
+   1362.71596      231613.917     -44879.3389      2529.02565     10031
+  -4667.45713     -827371.336      158681.295     -8926.39148     01031
+  -6733.37771     -1886.39702     -600.492319     -16647.5823     00131
+   12959.2913      812.675184      1078.63618      22515.2213     10022
+  -43542.1228     -835.654472     -3950.38443     -80648.1551     01022
+  -335.014584     -39308.1721      7638.29187     -600.384561     00122
+   276.145231      19334.5383     -3758.95614      445.849699     10013
+  -788.763634     -59372.6331      11471.8453     -1366.71593     01013
+  -1092.59778     -202.863258     -60.5394739     -1753.76896     00113
+   831.520392     -146.935767      94.1466614      1252.09492     10004
+  -2518.45211      457.879729     -293.345341     -4046.44792     01004
+  -13.7319298     -575.917403      111.835290     -20.8987165     00104
+   44.4270733      188823.509     -35350.8788      78.3118677     00050
+   17812.3888      3504.86326      1749.96338      44166.2642     00041
+   1008.09985      138438.013     -26843.5381      1811.48774     00032
+   5691.22754      599.924140      391.062452      9145.39260     00023
+   98.5289265      6149.62744     -1194.22453      152.056469     00014
+   223.021664     -36.5318350      23.8422661      317.711927     00005
+  -337.509421      81.6690258     -49.2617602     -659.137367     60000
+   6169.95253     -1520.50640      918.686058      12722.8287     51000
+  -44127.0838      11112.0226     -6723.79442     -97050.4358     42000
+   155261.663     -40106.9530      24296.3619      368769.310     33000
+  -276171.572      73467.5756     -44534.7771     -718591.526     24000
+   226512.842     -62138.0595      37666.3267      652354.848     15000
+  -63524.4817      17751.8330     -10755.0866     -195042.521     06000
+   24.9420003      1358.26113     -264.765068      45.6728748     50100
+  -379.438571     -20851.0155      4040.85803     -731.664091     41100
+   2146.01352      117772.368     -22661.5093      4408.71191     32100
+  -5520.61754     -295846.695      56432.3573     -12262.3287     23100
+   6266.38364      312285.994     -58992.1443      15305.8228     14100
+  -2416.99690     -100973.290      19009.6203     -6557.31355     05100
+  -163.939003     -24.2249119     -13.7418705     -332.988638     40200
+   2155.48125      264.587658      190.851498      4648.92093     31200
+  -9824.71852     -900.537539     -934.098157     -22900.4151     22200
+   17790.3436      962.687020      1850.03300      45981.6308     13200
+  -10135.4333     -157.642729     -1165.76371     -30190.6185     04200
+   6.40165855      562.077852     -109.803026      12.0768168     30300
+  -66.1662168     -5746.38383      1114.03232     -130.513661     21300
+   207.666368      17516.7162     -3362.84788      437.347336     12300
+  -189.624810     -14570.2465      2761.35172     -441.147684     03300
+  -14.7395288     -6.55587229    -0.857932819     -33.2781508     20400
+   119.166950      47.7810308      6.57698941      279.214578     11400
+  -221.208276     -73.6488157     -13.0490725     -552.769264     02400
+  0.141193922      28.3486333     -5.52133125     0.294871034     10500
+ -0.739550573     -137.736836      26.6468572     -1.54068404     01500
+  0.663821717E-02-0.292282081E-01-0.685243335E-02 0.183880324E-01 00600
+  -177.500317     -14384.0536      2797.13749     -323.756192     50010
+   2629.21922      219668.159     -42462.0795      5050.98425     41010
+  -14365.4126     -1233948.64      236785.803     -29408.7283     32010
+   35297.0981      3082641.66     -586317.046      78106.0835     23010
+  -37652.5447     -3237914.43      609927.433     -91328.3919     14010
+   13418.8024      1042654.03     -195970.897      35486.4684     05010
+   3417.82552      265.682233      326.932669      6954.03929     40110
+  -44669.9428     -2355.30012     -4491.15050     -96501.2091     31110
+   202298.949      4353.99422      21710.5147      472200.968     22110
+  -363804.541      5829.43736     -42385.8582     -941044.256     13110
+   205878.079     -11124.0556      26291.6694      612541.416     04110
+  -180.585787     -17803.9616      3472.76578     -339.956144     30210
+   1841.57644      180347.032     -34907.8878      3627.10234     21210
+  -5680.25088     -543841.772      104233.947     -11954.0142     12210
+   5070.27597      446228.396     -84424.4034      11790.2958     03210
+   634.404830      232.972915      43.6445380      1432.50677     20310
+  -5063.06871     -1649.13534     -335.212421     -11879.4713     11310
+   9245.09527      2397.56327      655.769878      23173.1833     02310
+  -7.36643811     -1579.27929      307.466031     -15.1897919     10410
+   37.9141084      7445.84304     -1438.32955      78.2244836     01410
+ -0.257965911E-01  1.92995391     0.479028702    -0.639159835E-01 00510
+  -2584.00456      582.551712     -355.323904     -4740.40665     50001
+   39298.5107     -9036.87305      5519.51951      76098.9622     41001
+  -224600.782      52936.3245     -32361.0810     -464126.096     32001
+   592594.575     -144034.914      88066.9824      1325237.15     23001
+  -703642.501      177668.973     -108541.863     -1733311.25     14001
+   289523.871     -76442.1109      46607.3011      801909.021     05001
+   171.366300      8177.07333     -1592.63584      301.918300     40101
+  -2071.51631     -100610.315      19490.2615     -3842.85050     31101
+   8730.42538      428499.538     -82456.1605      17258.8152     22101
+  -14884.6921     -725274.088      138390.777     -31845.7525     13101
+   8408.11416      389530.782     -73556.8676      19837.2672     04101
+  -842.787534     -162.725736     -56.8544714     -1582.16058     30201
+   8303.79449      1352.53440      609.876245      16510.5316     21201
+  -25249.0913     -3193.88880     -2054.58631     -54194.3776     12201
+   22893.2540      1900.20407      2111.22207      54674.1791     03201
+   27.0316737      1998.31058     -390.287858      49.3222225     20301
+  -184.425555     -13722.0709      2661.65813     -350.649939     11301
+   287.116975      21308.6214     -4096.26285      580.917280     02301
+  -37.3112347     -21.0015636    -0.897914468     -76.9285178     10401
+   151.317332      74.7531764      4.11494043      318.964868     01401
+  0.202769495      30.2331068     -5.88796213     0.436694982     00501
+  -17587.1377     -156.280046     -1884.81597     -35854.0189     40020
+   229212.728     -3975.34694      25765.7717      495962.115     31020
+  -1034637.43      51479.8793     -123746.842     -2417778.11     22020
+   1853650.43     -163572.127      239511.816      4796859.79     13020
+  -1045080.43      132322.680     -147041.474     -3105205.67     04020
+   1658.24845      186672.374     -36346.4127      3114.25570     30120
+  -16691.7704     -1877327.25      362723.241     -32803.7435     21120
+   50561.8464      5611939.39     -1073680.74      106216.375     12120
+  -44018.5085     -4551427.75      859622.058     -102140.440     03120
+  -10104.4784     -2974.37562     -796.944491     -22827.6414     20220
+   79874.1254      20246.6876      6140.24499      187607.419     11220
+  -144005.115     -26894.7501     -11912.7141     -361645.823     02220
+   149.968417      34500.6823     -6705.98983      305.836375     10320
+  -762.417317     -159327.429      30717.8616     -1558.73880     01320
+  -7.99340888     -51.1898738     -13.5083168     -22.2192265     00420
+  -1225.99117     -86741.7389      16863.7524     -2160.92218     40011
+   14427.9285      1061738.37     -205276.247      26801.3511     31011
+  -58757.6319     -4496739.61      863460.139     -116445.222     22011
+   95770.9980      7567322.12     -1440589.01      205629.240     13011
+  -50939.7547     -4042813.45      761583.751     -120549.058     04011
+   17603.6062      2123.05127      1407.44247      33106.6478     30111
+  -172427.593     -15684.1371     -14823.3285     -343526.127     21111
+   520888.003      28695.3100      48957.6963      1120469.36     12111
+  -468862.927     -5697.23284     -49220.0813     -1122179.05     03111
+  -765.513173     -63520.1008      12389.6989     -1396.02291     20211
+   5149.75287      432299.671     -83736.7084      9796.91407     11211
+  -7873.99255     -663909.955      127439.186     -15965.7466     02211
+   1613.86758      771.319684      58.8609056      3324.30489     10311
+  -6467.46023     -2670.49190     -255.272830     -13645.6536     01311
+  -10.6714338     -1706.82838      332.400292     -22.6869511     00411
+  -8307.77721      1751.33298     -1080.93561     -14393.9191     40002
+   100990.725     -21739.2343      13431.2298      184597.138     31002
+  -432658.952      95679.0308     -59129.2996     -843999.823     22002
+   760933.671     -174270.406      107609.515      1608307.31     13002
+  -451904.883      108307.418     -66724.3293     -1055406.75     04002
+   472.030506      19997.6838     -3890.26712      798.986266     30102
+  -4258.79397     -184894.469      35790.4938     -7592.89212     21102
+   11907.3432      527206.935     -101424.652      22640.8153     12102
+  -10100.0135     -449577.721      85806.4019     -20816.8043     03102
+  -1632.83012     -381.837757     -86.9907352     -2859.46239     20202
+   10744.1931      2140.58088      646.815838      19866.7672     11202
+  -16389.3533     -2593.02815     -1132.79865     -32626.5353     02202
+   37.8906387      2403.65549     -469.030805      66.4572105     10302
+  -128.688324     -8328.19426      1615.23824     -234.816534     01302
+  -23.3447879     -15.7808640     0.140422724     -44.7517896     00402
+  -4957.48714     -648572.771      126041.796     -9281.46512     30030
+   49184.7374      6486980.90     -1251025.26      96346.0648     21030
+  -145838.861     -19256914.0      3677539.94     -305373.704     12030
+   123094.577      15461814.2     -2915181.63      284307.477     03030
+   70730.0907      15889.5293      6266.52605      159935.913     20130
+  -555417.326     -101691.484     -48498.5080     -1305679.49     11130
+   991909.304      113523.998      93702.8764      2493446.31     02130
+  -1494.13719     -371188.363      71989.0634     -3015.30705     10230
+   7534.78239      1689981.50     -325102.948      15261.0842     01230
+   207.674911      703.111076      198.286347      574.274576     00330
+  -90773.0493     -4492.34824     -8358.72815     -171070.144     30021
+   886718.132      16975.4486      87186.7405      1769950.20     21021
+  -2669629.67      46230.1854     -284618.902     -5752745.84     12021
+   2392888.08     -145146.640      282113.066      5736310.79     03021
+   7059.90249      668296.112     -130144.078      12873.1625     20121
+  -46842.7664     -4516507.68      873447.231     -89171.2400     11121
+   70282.7632      6874077.44     -1317368.03      142803.885     02121
+  -25815.2650     -10295.8733     -1242.87709     -53177.1348     10221
+   102585.336      34445.8746      5254.12594      216649.602     01221
+   219.095183      37683.0862     -7327.76600      461.013378     00321
+  -3393.41553     -212500.640      41289.2662     -5765.02534     30012
+   29804.4054      1954505.69     -377830.150      53417.3031     21012
+  -80536.9470     -5541292.88      1064409.08     -154240.057     12012
+   65347.7036      4696733.73     -894837.631      135932.040     03012
+   34178.1500      5434.18255      2267.56660      59950.6026     20112
+  -223591.100     -28040.1053     -16365.2776     -414276.519     11112
+   338802.033      28959.3181      27809.6770      676214.021     02112
+  -1077.54145     -76679.7699      14946.3835     -1890.75087     10212
+   3606.93612      263412.585     -51029.5073      6595.02830     01212
+   1015.29084      592.484282      8.20075288      1941.20820     00312
+  -14365.6218      2839.70410     -1774.74828     -23610.6460     30003
+   130965.288     -26455.5293      16544.7788      226928.950     21003
+  -374059.983      77769.8317     -48617.0587     -691609.278     12003
+   328902.263     -71074.5328      44348.6893      659518.154     03003
+   652.161938      24823.5317     -4821.84148      1060.18439     20103
+  -3910.69703     -153385.617      29658.9208     -6698.78207     11103
+   5448.34179      219536.196     -42209.7638      9963.42354     02103
+  -1413.59529     -383.785034     -57.5508466     -2327.09606     10203
+   4670.86292      1087.45155      225.973269      8089.23473     01203
+   17.6346643      975.818447     -190.130005      29.6690161     00303
+  -183924.331     -28852.8070     -18045.7097     -416444.410     20040
+   1438434.46      163362.056      140473.189      3383978.86     11040
+  -2551665.74     -106415.122     -271135.085     -6415600.89     02040
+   7302.74474      1972821.46     -381642.768      14579.2423     10140
+  -36657.5315     -8898952.51      1707833.83     -73483.0430     01140
+  -2175.05662     -5311.84078     -1603.87269     -6007.61457     00240
+  -21209.0205     -2329895.12      452944.968     -38672.3331     20031
+   138561.452      15662602.7     -3023874.18      263933.892     11031
+  -203283.282     -23665607.2      4527816.53     -413925.411     02031
+   181392.769      58714.7591      10758.6544      373987.886     10131
+  -716976.732     -187263.224     -44887.2281     -1515652.86     01131
+  -2201.83137     -409031.792      79365.4214     -4592.66778     00231
+  -176644.880     -15134.5199     -13958.4913     -310447.445     20022
+   1152575.16      59732.9884      99111.0885      2139588.84     11022
+  -1740290.75     -20636.2200     -165383.383     -3480739.10     02022
+   9982.55610      809570.698     -157583.466      17539.2487     10122
+  -32941.7143     -2762573.40      534436.695     -60391.8490     01122
+  -16316.0991     -8129.29890     -346.099830     -31164.7061     00222
+  -4709.52647     -264255.328      51302.0600     -7702.93391     20013
+   27490.4291      1624244.44     -313848.496      47481.5267     11013
+  -37015.2808     -2311075.34      443941.033     -68441.8066     02013
+   29659.9168      5760.88724      1610.88607      48887.7088     10113
+  -97443.0097     -15300.9514     -6022.19164     -169062.287     01113
+  -503.807057     -31248.0631      6083.20505     -848.357650     00213
+  -14097.2967      2618.55236     -1658.22785     -22058.4120     20004
+   85748.3259     -16284.0107      10315.0712      141335.343     11004
+  -122535.595      23985.9656     -15178.2043     -215444.364     02004
+   452.285970      15632.2122     -3031.17822      706.372115     10104
+  -1354.33952     -48464.4070      9358.41128     -2229.12072     01104
+  -461.310351     -141.747667     -13.5328724     -718.613115     00204
+  -14031.7529     -4153001.37      801208.549     -27675.6400     10050
+   70308.6512      18633564.6     -3567214.63      139236.158     01050
+   10488.1364      21073.1351      6790.07897      28974.1546     00150
+  -473330.646     -118811.500     -33206.7342     -977502.799     10041
+   1865936.73      350707.714      137683.006      3948436.37     01041
+   10861.8563      2190696.50     -423975.896      22472.9245     00141
+  -30137.8060     -2832205.08      550458.433     -53056.4741     10032
+   97865.6010      9616345.95     -1857581.69      180024.697     01032
+   115107.461      48086.7498      3876.94812      219934.456     00132
+  -153677.710     -18238.9718     -10371.0668     -253716.333     10023
+   503633.306      41103.2065      37777.1894      875263.447     01023
+   4689.87602      331115.470     -64385.3192      7913.81400     00123
+  -3280.03181     -166726.115      32333.5776     -5163.55590     10014
+   9560.12486      514135.395     -99277.1707      15904.0890     01014
+   9705.05790      2207.54137      421.666012      15129.2855     00114
+  -7446.63559      1301.66374     -835.773381     -11125.7182     10005
+   22687.8400     -4055.00951      2603.63779      35670.5595     01005
+   126.039234      3992.79874     -772.708985      189.244304     00105
+  -19153.6536     -34549.9585     -11759.5285     -52952.1358     00060
+  -21085.8334     -4643214.05      896106.937     -43260.9298     00051
+  -301430.771     -102577.628     -13781.5750     -576762.648     00042
+  -14232.3527     -1162531.02      225761.270     -24091.7874     00033
+  -50422.1309     -7541.88723     -2879.34175     -78698.1384     00024
+  -917.782159     -42671.8753      8265.09481     -1390.91123     00015
+  -1654.74395      272.439207     -177.483318     -2366.21348     00006
+ ------------------------------------------------------------------------------
diff --git a/DATFILES/hms_recon_coeff.dat b/DATFILES/hms_recon_coeff.dat
new file mode 100644
index 0000000000000000000000000000000000000000..3743bbc0a4a0f7552974776322fd86f9f52db820
--- /dev/null
+++ b/DATFILES/hms_recon_coeff.dat
@@ -0,0 +1,170 @@
+! recostruction matrix elements for HMS, tune HMS-100
+! <theta y phi delta | nmpq>;(x**n xp**m y**p yp**q)
+! as of 02/20/97, no z offset included: this statement is obsolete
+! created: 06/28/98
+! zeroth order matrix elements from fitting:
+! <theta|> -4.7276368293E-03 rad
+! <y|> -1.1606458055E-04 m
+! <phi|>  4.8280702357E-05 rad 
+! <p|> -3.8725980576E-03 %
+! <theta y phi delta | nmpq>;(x**n xp**m y**p yp**q)
+ ---------------------------------------------------------------------
+   .342704157      .183629749E-01 -.742670280E-02  .256021141     1000
+  -3.02138749     -.152502758      .472422058E-01  .130192976     0100
+  -.673199668E-02 -.407567405      .258501913      .278565265E-02 0010
+   .110287597     -.483378951     -2.16704420      .407874298E-01 0001
+  -.495779826     -.548491564E-01  .147936777E-01 -.318166729     2000
+   4.49999138      .451213193     -.151686093      3.07552684     1100
+   .796294361      1.48286554     -.303847305     -.297352223E-01 1010
+   .261524802     -20.7938893      5.00402934     -.249121889     1001
+  -1.65128983     -.995337651      .536837816      2.14776190     0200
+  -6.47649939      .226936328     -.123499047     -.266124530     0110
+  -3.98529962     -6.32858639      1.39991277      4.27708696     0101
+   .113653600E-01  .690088486E-01 -.437114986E-01 -.438953228E-01 0020
+   .881941403      .227473684     -.628899349E-01  .475605891     0011
+  -3.71740449      3.93769576      .113368630     -3.53478948     0002
+   1.95723299     -.820253354E-01  .103519807      .936834319     3000
+  -31.4466915      2.57527314     -2.51407447     -13.5405899     2100
+  -5.89608158     -3.50686592      .471876566     -.312542194E-01 2010
+   40.5129114      58.0458860     -12.5399800     -2.74488175     2001
+   156.932838     -23.8014414      21.1502247      51.8797642     1200
+   57.3250219      40.7718723     -7.13532706      .284008412     1110
+  -298.395506     -639.340672      173.523125      10.6819836     1101
+   1.88702326      .266847247      .271167866      .954315611     1020
+  -24.4326614     -33.6584609     -.114525239      .434687181     1011
+   180.539265      53.7698885      3.76822635      31.9077575     1002
+  -279.667300      64.3177661     -60.6190378     -20.4989850     0300
+  -64.0800162     -86.2289723      11.5806188      3.95564331     0210
+  -247.924962      1524.67217     -483.832639     -46.7762650     0201
+  -21.7150970     -13.4646889      .401043380     -7.06883817     0120
+   211.296709      323.699221     -6.72775908      25.6924121     0111
+  -1440.32950      361.536621     -384.751537     -467.898102     0102
+  -.656643228      3.62511407     -1.27960041     -.358205667     0030
+  -1.58376006      67.9025208     -22.9733471     -3.15593520     0021
+   23.7224929     -987.049261      560.285176      34.1790370     0012
+  -180.294278      5983.27702     -3518.42552     -71.5085362     0003
+  -4.16665084      1.49723155     -.759630854     -2.30278775     4000
+   69.1944845     -46.6812620      21.8666725      58.0248309     3100
+   18.5878217      3.69400020      .602106657E-01 -1.46212838     3010
+  -227.551196     -96.3179597      .489353421      20.4063547     3001
+  -243.511203      535.564222     -239.722086     -491.562374     2200
+  -230.021793     -40.7163893      .940804015      47.2957535     2110
+   3150.68103      1424.96519      38.5622615     -521.870646     2101
+  -10.2926426     -3.56149925     -1.10754304     -1.00472512     2020
+   138.770921      263.397128     -15.7671082     -26.1090659     2011
+  -211.394983     -1895.91500      234.605250      406.369321     2002
+  -832.967425     -2704.20708      1207.70554      1718.29721     1300
+   429.578554     -234.967423     -20.3231936     -432.372956     1210
+  -11612.7737     -2668.84972     -1176.05843      4021.85608     1201
+   130.736123      70.7440580      5.42914965      16.7434624     1120
+  -1905.84788     -3551.03419      224.098878      343.660595     1111
+   363.670026      16804.9474     -2673.42755     -4586.96491     1102
+   6.91955519     -9.98074257      7.57861652      4.98155457     1030
+  -114.693315      63.5563817     -65.8809200     -36.5101930     1021
+   710.699660      4980.54374     -780.431756      60.2646297     1012
+  -7520.04385     -13187.0100      2486.26739      536.066295     1003
+   4347.54210      5161.66425     -2427.09769     -1950.10403     0400
+   1156.75126      1725.44332      188.803395      1323.39948     0310
+   12047.3853     -8815.37699      3407.72589     -11081.6594     0301
+  -26.9308548      60.3544886     -47.8411214     -67.2731587     0220
+   826.904198      4520.84740      916.341424     -974.052221     0211
+   19983.2818      7167.34390     -4225.20780      9358.46286     0202
+  -26.0105902     -188.661888      54.6866678     -37.4367181     0130
+   648.226508      2521.63446     -1052.88888      292.436840     0121
+  -8498.59600     -31139.3846      8203.03704     -697.205971     0112
+   63967.4235      128236.246     -24237.5465     -2336.48364     0103
+  -1.07911254      1.22231630     -.173675833      3.83526317     0040
+   9.94134973      258.488500     -10.9579494     -84.9391998     0031
+   158.508425     -2684.84975     -3.07844063      726.975013     0022
+  -3017.64724      14872.1349     -469.458295     -1667.46714     0013
+   466.801936     -55258.4859      4661.52259      3912.11649     0004
+   1.88180503     -2.54978699      1.02249535      4.96781903     5000
+   27.9678707      85.1165188     -25.6500831     -214.635508     4100
+  -19.6018738     -1.90234997     -2.26475906      3.07907961     4010
+   338.908065     -3.13670480      84.7364876     -48.5819865     4001
+  -1595.43911     -986.185572      116.663362      3438.51266     3200
+   256.718721     -2.53553430      86.9081338     -71.7570318     3110
+  -5619.82737      2554.66160     -3220.55423      1952.97191     3101
+   5.63505956      5.65523837     -.178636671     -9.82929708     3020
+   28.4611788     -535.882022      112.200518      63.7792928     3011
+  -3335.14896      6481.34708     -841.916671     -2407.64911     3002
+   17748.8967      4446.27557      1781.86526     -27888.4078     2300
+  -365.812295      713.968459     -1184.61359      175.230779     2210
+   26149.2365     -61279.3626      44610.2113     -20776.5089     2201
+   82.8634399     -82.7911036      40.7995535      223.223395     2120
+  -4711.16007      7972.91446     -3042.34279     -1765.82660     2111
+   111837.314     -122751.891      25531.4588      55520.9916     2102
+  -13.8546171     -44.6122707     -1.49148927      7.53241271     2030
+   379.629516      2219.19103     -283.396915     -8.69875712     2021
+  -2940.77125     -39662.7132      6848.07035      332.501630     2012
+  -4833.05018      291262.775     -40868.2995     -930.899000     2003
+  -75870.6114     -3035.26190     -19402.1263      118850.529     1400
+  -1090.33337     -5565.51679      8155.50571      3660.70792     1310
+  -76601.8398      456263.377     -281440.652      79440.7749     1301
+  -2721.78279     -512.627944     -452.280825     -1934.55934     1220
+   83864.4298      5816.23957      23306.1137      11961.6529     1211
+  -1306713.82      400125.281     -216284.553     -418149.697     1202
+   100.956187      1309.56623     -226.290462     -173.118732     1130
+  -4032.82257     -56824.1834      10616.2930      1607.73072     1121
+   79840.4758      782713.236     -150889.930     -14254.2451     1112
+  -330377.607     -4233718.14      646182.662      39788.7678     1103
+   6.06681234      7.12938618     -.220192683     -1.11240314     1040
+  -243.665570     -948.255482      153.244584      165.982247     1031
+   7181.11150      25876.5416     -2553.92502     -3998.95843     1022
+  -75005.8412     -104271.766     -23488.8683      29493.1698     1013
+   124433.465     -149264.761      219376.542     -13196.6766     1004
+   113262.801     -18667.6651      53113.3093     -209797.800     0500
+  -11632.6603      7242.92619     -21110.0334     -18679.7717     0410
+   301044.558     -1035121.76      655646.504     -71841.5676     0401
+   8371.11263      2221.54910      1543.28892      6295.96049     0320
+  -258028.488     -135832.589     -66162.4672     -36062.5709     0311
+   4218622.48      128274.356      663799.998      1118597.09     0302
+  -167.926507     -3321.19532      237.754153      1077.44822     0230
+   15453.6273      205593.650     -24454.8426     -11675.9844     0221
+  -438724.451     -3267312.69      463392.237      52657.7588     0212
+   2249544.29      17936516.3     -2298746.48     -118752.747     0203
+  -25.5889867     -61.6539042      41.8282483     -107.686882     0140
+   1866.01089     -1606.56535     -3207.84127      946.869731     0131
+  -71480.9824     -31234.8373      79600.1247      25102.1443     0122
+   814034.645      434180.428     -606101.312     -259877.198     0113
+  -2102030.39     -1584569.00      1583206.11      303094.278     0104
+  -3.59866781     -19.7084031     -18.4827350     -1.36754912     0050
+   50.9893561      384.737475      1103.07001      164.395576     0041
+   1986.13677      18001.7932     -34498.4820      90.2668576     0032
+  -30037.4064     -584192.598      674006.856      1100.41524     0023
+   20801.9238      6212983.14     -6436686.94     -17333.4694     0014
+   408508.663     -23722308.6      22707746.7      30963.1531     0005
+   0.0            0.000000000E+00 0.000000000E+00 0.768177700     00001
+  0.0             0.000000000E+00 0.000000000E+00 -1.24824954     10001
+  0.0             0.000000000E+00 0.000000000E+00  7.18980365     01001
+  0.0             0.000000000E+00 0.000000000E+00 -1.79480024     00002
+   0.0            0.000000000E+00 0.000000000E+00  4.30979026     20001
+   0.0            0.000000000E+00 0.000000000E+00 -47.5141035     11001
+   0.0            0.000000000E+00 0.000000000E+00  127.404997     02001
+   0.0            0.000000000E+00 0.000000000E+00  1.52132362     00201
+   0.0            0.000000000E+00 0.000000000E+00 -44.8420242     00111
+   0.0            0.000000000E+00 0.000000000E+00  13.9035869     10002
+   0.0            0.000000000E+00 0.000000000E+00 -75.1770025     01002
+   0.0            0.000000000E+00 0.000000000E+00  332.945301     00021
+  0.000000000E+00  412.398418     -118.551680     0.000000000E+00 00012
+   0.0            0.000000000E+00 0.000000000E+00  15.5951865     00003
+  0.0             0.000000000E+00 0.000000000E+00 -15.7177358     30001
+  0.0             0.000000000E+00 0.000000000E+00  249.924995     21001
+  0.0             0.000000000E+00 0.000000000E+00 -1205.61003     12001
+  0.0             0.000000000E+00 0.000000000E+00  1650.70638     03001
+  0.0             0.000000000E+00 0.000000000E+00 -8.63945412     10201
+  0.0             0.000000000E+00 0.000000000E+00  51.7345340     01201
+  0.0             0.000000000E+00 0.000000000E+00  246.328770     10111
+  0.0             0.000000000E+00 0.000000000E+00 -1468.88025     01111
+  0.0             0.000000000E+00 0.000000000E+00 -77.6962058     20002
+  0.0             0.000000000E+00 0.000000000E+00  808.267218     11002
+  0.0             0.000000000E+00 0.000000000E+00 -1887.27393     02002
+  0.0             0.000000000E+00 0.000000000E+00 -13.1721627     00202
+  0.0             0.000000000E+00 0.000000000E+00 -1758.72381     10021
+  0.0             0.000000000E+00 0.000000000E+00  10443.6142     01021
+  0.0             0.000000000E+00 0.000000000E+00  377.176889     00112
+  0.0             0.000000000E+00 0.000000000E+00 -174.332974     10003
+  0.0             0.000000000E+00 0.000000000E+00  893.518077     01003
+  0.0             0.000000000E+00 0.000000000E+00 -2708.57078     00022
+  0.0             0.000000000E+00 0.000000000E+00 -149.156349     00004
+ ---------------------------------------------------------------------
diff --git a/DBASE/general.param b/DBASE/general.param
index 4132af98959e4b2b59de0af5a1f70eb75b1b01f8..b41241af82d1e370dbaf3dfc3ee93b6d3af459b5 100644
--- a/DBASE/general.param
+++ b/DBASE/general.param
@@ -1,5 +1,7 @@
 #real raddeg
 raddeg=3.14159265/180
+#real cminch
+cminch=2.54
 
 ; General Hall-C parameter files
 #include "PARAM/GEN/genflags.param"
@@ -14,14 +16,14 @@ raddeg=3.14159265/180
 #include "PARAM/HMS/GEN/hmsflags.param"
 #include "PARAM/HMS/GEN/htracking.param"
 
-; HMS detector specific paramter files  
+; HMS detector specific paramter files
 #include "PARAM/HMS/AERO/haero.param"
 #include "PARAM/HMS/CAL/hcal.pos"
 #include "PARAM/HMS/CAL/hcal.param"
 #include "PARAM/HMS/CER/hcer.param"
-#include "PARAM/HMS/DC/hdc_offsets.param"
-#include "PARAM/HMS/DC/hdc.pos"
 #include "PARAM/HMS/DC/hdc.param"
+#include "PARAM/HMS/DC/hdc.pos"
+#include "PARAM/HMS/DC/hdc_tracking.param"
 #include "PARAM/HMS/DC/hdriftmap.param"
 #include "PARAM/HMS/HODO/hhodo.pos"
 #include "PARAM/HMS/HODO/hhodo.param"
@@ -34,6 +36,13 @@ raddeg=3.14159265/180
 #include "PARAM/SHMS/GEN/ptracking.param"
 
 ; SHMS detector specific paramter files
-#include "PARAM/SHMS/DC/pdc.pos"
+#include "PARAM/SHMS/AERO/paero.param"
+#include "PARAM/SHMS/CAL/pcal.param"
+#include "PARAM/SHMS/HGCER/phgcer.param"
+#include "PARAM/SHMS/NGCER/pngcer.param"
 #include "PARAM/SHMS/DC/pdc.param"
+#include "PARAM/SHMS/DC/pdc.pos"
+#include "PARAM/SHMS/DC/pdc_tracking.param"
 #include "PARAM/SHMS/DC/pdriftmap.param"
+#include "PARAM/SHMS/HODO/phodo.pos"
+#include "PARAM/SHMS/HODO/phodo.param"
diff --git a/DBASE/standard.database b/DBASE/standard.database
index 4fd1440e04fe066990f6563268b26cae18f8cca0..c894b7b3ac9a6d994797c71731f079d9e940a582 100644
--- a/DBASE/standard.database
+++ b/DBASE/standard.database
@@ -1,5 +1,3 @@
 0-99999
 g_ctp_parm_filename ="DBASE/general.param"
-g_decode_map_filename ="MAPS/HMS/hdc.map"
-g_decode_map_filename ="MAPS/SHMS/pdc.map"
 g_ctp_kinematics_filename ="DBASE/standard.kinematics"
diff --git a/DBASE/standard.kinematics b/DBASE/standard.kinematics
index 332dde9d63e3cea9e9af08173e54e2de2ae92f40..defaf2c4cef622549f0a9b178a7b06a084003d7b 100644
--- a/DBASE/standard.kinematics
+++ b/DBASE/standard.kinematics
@@ -1,9 +1,9 @@
 1-99999
-gpbeam=999
-gtarg_num = 999
-htheta_lab = 999
-stheta_lab = 999
-hpcentral = 999
-spcentral = 999
+gpbeam=6.
+gtarg_num = 1
+htheta_lab = 15.
+ptheta_lab = 15.
+hpcentral = 2.
+ppcentral = 2.
 hpartmass = 0.00051099
-spartmass = 0.00051099
+ppartmass = 0.00051099
diff --git a/DEF-files/HMS/CAL/hcalana.def b/DEF-files/HMS/CAL/hcalana.def
new file mode 100644
index 0000000000000000000000000000000000000000..b3f449ac050b3ab7d45fad6cbdb1a224ed229110
--- /dev/null
+++ b/DEF-files/HMS/CAL/hcalana.def
@@ -0,0 +1,59 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block H.cal.*
+
+TH1F hcal_hA_pos_occu 'HMS hA+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.1pr.posAdcCounter 13 0.5 13.5
+TH1F hcal_hA_neg_occu 'HMS hA- ADC Occupancy; Block Number; Number of ADC Hits' H.cal.1pr.negAdcCounter 13 0.5 13.5
+TH1F hcal_hB_pos_occu 'HMS hB+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.2ta.posAdcCounter 13 0.5 13.5
+TH1F hcal_hB_neg_occu 'HMS hB- ADC Occupancy; Block Number; Number of ADC Hits' H.cal.2ta.negAdcCounter 13 0.5 13.5
+TH1F hcal_hC_pos_occu 'HMS hC+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.3ta.posAdcCounter 13 0.5 13.5
+TH1F hcal_hD_pos_occu 'HMS hD+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.4ta.posAdcCounter 13 0.5 13.5
+
+TH2F hcal_hA_pos_rawped_vs_blk 'HMS hA+ Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F hcal_hA_neg_rawped_vs_blk 'HMS hA- Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F hcal_hB_pos_rawped_vs_blk 'HMS hB+ Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F hcal_hB_neg_rawped_vs_blk 'HMS hB- Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F hcal_hC_pos_rawped_vs_blk 'HMS hC+ Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F hcal_hD_pos_rawped_vs_blk 'HMS hD+ Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPedRaw 13 0.5 13.5 400 0 4000
+
+TH2F hcal_hA_pos_rawpint_vs_blk 'HMS hA+ Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hA_neg_rawpint_vs_blk 'HMS hA- Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_pos_rawpint_vs_blk 'HMS hB+ Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_neg_rawpint_vs_blk 'HMS hB- Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hC_pos_rawpint_vs_blk 'HMS hC+ Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hD_pos_rawpint_vs_blk 'HMS hD+ Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+
+TH2F hcal_hA_pos_rawpamp_vs_blk 'HMS hA+ Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F hcal_hA_neg_rawpamp_vs_blk 'HMS hA- Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F hcal_hB_pos_rawpamp_vs_blk 'HMS hB+ Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F hcal_hB_neg_rawpamp_vs_blk 'HMS hB- Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F hcal_hC_pos_rawpamp_vs_blk 'HMS hC+ Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F hcal_hD_pos_rawpamp_vs_blk 'HMS hD+ Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+
+TH2F hcal_hA_pos_rawptime_vs_blk 'HMS hA+ Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseTimeRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hA_neg_rawptime_vs_blk 'HMS hA- Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseTimeRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_pos_rawptime_vs_blk 'HMS hB+ Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseTimeRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_neg_rawptime_vs_blk 'HMS hB- Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseTimeRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hC_pos_rawptime_vs_blk 'HMS hC+ Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseTimeRaw 13 0.5 13.5 4000 0 40000
+TH2F hcal_hD_pos_rawptime_vs_blk 'HMS hD+ Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseTimeRaw 13 0.5 13.5 4000 0 40000
+
+TH2F hcal_hA_pos_pped_vs_blk 'HMS hA+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPed 13 0.5 13.5 400 0 4000
+TH2F hcal_hA_neg_pped_vs_blk 'HMS hA- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPed 13 0.5 13.5 400 0 4000
+TH2F hcal_hB_pos_pped_vs_blk 'HMS hB+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPed 13 0.5 13.5 400 0 4000
+TH2F hcal_hB_neg_pped_vs_blk 'HMS hB- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPed 13 0.5 13.5 400 0 4000
+TH2F hcal_hC_pos_pped_vs_blk 'HMS hC+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPed 13 0.5 13.5 400 0 4000
+TH2F hcal_hD_pos_pped_vs_blk 'HMS hD+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPed 13 0.5 13.5 400 0 4000
+
+TH2F hcal_hA_pos_pi_vs_blk 'HMS hA+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hA_neg_pi_vs_blk 'HMS hA- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_pos_pi_vs_blk 'HMS hB+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_neg_pi_vs_blk 'HMS hB- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hC_pos_pi_vs_blk 'HMS hC+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hD_pos_pi_vs_blk 'HMS hD+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+
+TH2F hcal_hA_pos_pamp_vs_blk 'HMS hA+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F hcal_hA_neg_pamp_vs_blk 'HMS hA- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F hcal_hB_pos_pamp_vs_blk 'HMS hB+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F hcal_hB_neg_pamp_vs_blk 'HMS hB- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F hcal_hC_pos_pamp_vs_blk 'HMS hC+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F hcal_hD_pos_pamp_vs_blk 'HMS hD+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseAmp 13 0.5 13.5 410 0 4100
diff --git a/DEF-files/HMS/CAL/hcalana_cuts.def b/DEF-files/HMS/CAL/hcalana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/HMS/CAL/hcalana_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/HMS/CER/hcerana.def b/DEF-files/HMS/CER/hcerana.def
new file mode 100644
index 0000000000000000000000000000000000000000..644b22343ac9827452992a94a3d1f61975592380
--- /dev/null
+++ b/DEF-files/HMS/CER/hcerana.def
@@ -0,0 +1,15 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block H.cer.*
+block T.hms.*
+
+TH1F hcer_occu 'HMS Cherenkov ADC Occupancy; PMT Number; Number of ADC Hits' H.cer.adcCounter 2 0.5 2.5
+
+TH2F hcer_rawped 'HMS Cherenkov Raw Pulse Pedestal; PMT Number; Raw Pulse Pedestal / 10 ADC Units' H.cer.adcCounter H.cer.adcPedRaw 2 0.5 2.5 400 0 4000
+TH2F hcer_rawpint 'HMS Cherenkov Raw Pulse Integral; PMT Number; Raw Pulse Integral / 10 ADC Units' H.cer.adcCounter H.cer.adcPulseIntRaw 2 0.5 2.5 4000 0 40000
+TH2F hcer_rawpamp 'HMS Cherenkov Raw Pulse Amplitude; PMT Number; Raw Pulse Amplitude / 10 ADC Units' H.cer.adcCounter H.cer.adcPulseAmpRaw 2 0.5 2.5 410 0 4100
+TH2F hcer_rawptime 'HMS Cherenkov Raw Pulse Time; PMT Number; Raw Pulse Time / 10 ADC Units' H.cer.adcCounter H.cer.adcPulseTimeRaw 2 0.5 2.5 400 0 4000
+
+TH2F hcer_ped 'HMS Cherenkov Pulse Pedestal; PMT Number; Pulse Pedestal / 10 ADC Units' H.cer.adcCounter H.cer.adcPed 2 0.5 2.5 400 0 4000
+TH2F hcer_pint 'HMS Cherenkov Pulse Integral; PMT Number; Pulse Pedestal / 10 ADC Units' H.cer.adcCounter H.cer.adcPulseInt 2 0.5 2.5 4000 0 40000
+TH2F hcer_pamp 'HMS Cherenkov Pulse Amplitude; PMT Number; Pulse Pedestal / 10 ADC Units' H.cer.adcCounter H.cer.adcPulseAmp 2 0.5 2.5 410 0 4100
\ No newline at end of file
diff --git a/DEF-files/HMS/CER/hcerana_cuts.def b/DEF-files/HMS/CER/hcerana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/HMS/CER/hcerana_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/HMS/DC/hdcana.def b/DEF-files/HMS/DC/hdcana.def
index 3d3045e5b82fc2a5a35b66ccba863c6792a11162..80e2415faabed3860547b5fc7abe1293f615d63f 100644
--- a/DEF-files/HMS/DC/hdcana.def
+++ b/DEF-files/HMS/DC/hdcana.def
@@ -1,7 +1,21 @@
 # See $ANALYZER/examples/output_example.def for examples
 #
 block H.dc.*
-#block H.scin.*
+block T.hms.*
+
+TH1F hdc_ref1 'HDC Reference Time 1; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF1_tdcTime 15000 0 15000 
+TH1F hdc_ref2 'HDC Reference Time 2; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF2_tdcTime 15000 0 15000
+TH1F hdc_ref3 'HDC Reference Time 3; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF3_tdcTime 15000 0 15000
+TH1F hdc_ref4 'HDC Reference Time 4; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF4_tdcTime 15000 0 15000
+
+TH1F hdc_refdiff_1m2 'HDC Reference time 1 minus 2; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF1_tdcTime-T.hms.hDCREF2_tdcTime 2000 -1000 1000
+TH1F hdc_refdiff_1m3 'HDC Reference time 1 minus 3; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF1_tdcTime-T.hms.hDCREF3_tdcTime 2000 -1000 1000
+TH1F hdc_refdiff_1m4 'HDC Reference time 1 minus 4; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF1_tdcTime-T.hms.hDCREF4_tdcTime 2000 -1000 1000
+
+TH1F hdc_refdiff_2m3 'HDC Reference time 2 minus 3; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF2_tdcTime-T.hms.hDCREF3_tdcTime 2000 -1000 1000
+TH1F hdc_refdiff_2m4 'HDC Reference time 2 minus 4; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF2_tdcTime-T.hms.hDCREF4_tdcTime 2000 -1000 1000
+
+TH1F hdc_refdiff_3m4 'HDC Reference time 3 minus 4; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF3_tdcTime-T.hms.hDCREF4_tdcTime 2000 -1000 1000
 
 TH1F hdc1x1_wm 'HDC 1X1 Wiremap' H.dc.1x1.wirenum 113 0.5 113.5
 TH1F hdc1y1_wm 'HDC 1Y1 Wiremap' H.dc.1y1.wirenum  52 0.5  52.5
@@ -17,19 +31,19 @@ TH1F hdc2v1_wm 'HDC 2V1 Wiremap' H.dc.2v1.wirenum 107 0.5 107.5
 TH1F hdc2y2_wm 'HDC 2Y2 Wiremap' H.dc.2y2.wirenum  52 0.5  52.5
 TH1F hdc2x2_wm 'HDC 2X2 Wiremap' H.dc.2x2.wirenum 113 0.5 113.5
 
-TH2F hdc1x1_wire_num_vs_raw_tdc 'HDC 1X1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1x1.wirenum H.dc.1x1.rawtdc 113 0.5 113.5 5000 0 50000
-TH2F hdc1y1_wire_num_vs_raw_tdc 'HDC 1Y1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1y1.wirenum H.dc.1y1.rawtdc 52  0.5  52.5 5000 0 50000
-TH2F hdc1u1_wire_num_vs_raw_tdc 'HDC 1U1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1u1.wirenum H.dc.1u1.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F hdc1v1_wire_num_vs_raw_tdc 'HDC 1V1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1v1.wirenum H.dc.1v1.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F hdc1y2_wire_num_vs_raw_tdc 'HDC 1Y2 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1y2.wirenum H.dc.1y2.rawtdc 52  0.5  52.5 5000 0 50000
-TH2F hdc1x2_wire_num_vs_raw_tdc 'HDC 1X2 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1x2.wirenum H.dc.1x2.rawtdc 113 0.5 113.5 5000 0 50000
-
-TH2F hdc2x1_wire_num_vs_raw_tdc 'HDC 2X1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2x1.wirenum H.dc.2x1.rawtdc 113 0.5 113.5 5000 0 50000
-TH2F hdc2y1_wire_num_vs_raw_tdc 'HDC 2Y1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2y1.wirenum H.dc.2y1.rawtdc 52  0.5  52.5 5000 0 50000
-TH2F hdc2u1_wire_num_vs_raw_tdc 'HDC 2U1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2u1.wirenum H.dc.2u1.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F hdc2v1_wire_num_vs_raw_tdc 'HDC 2V1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2v1.wirenum H.dc.2v1.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F hdc2y2_wire_num_vs_raw_tdc 'HDC 2Y2 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2y2.wirenum H.dc.2y2.rawtdc 52  0.5  52.5 5000 0 50000
-TH2F hdc2x2_wire_num_vs_raw_tdc 'HDC 2X2 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2x2.wirenum H.dc.2x2.rawtdc 113 0.5 113.5 5000 0 50000
+TH2F hdc1x1_wire_num_vs_raw_tdc 'HDC 1X1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1x1.wirenum H.dc.1x1.rawtdc 113 0.5 113.5 10000 -50000 50000
+TH2F hdc1y1_wire_num_vs_raw_tdc 'HDC 1Y1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1y1.wirenum H.dc.1y1.rawtdc 52  0.5  52.5 10000 -50000 50000
+TH2F hdc1u1_wire_num_vs_raw_tdc 'HDC 1U1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1u1.wirenum H.dc.1u1.rawtdc 107 0.5 107.5 10000 -50000 50000
+TH2F hdc1v1_wire_num_vs_raw_tdc 'HDC 1V1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1v1.wirenum H.dc.1v1.rawtdc 107 0.5 107.5 10000 -50000 50000
+TH2F hdc1y2_wire_num_vs_raw_tdc 'HDC 1Y2 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1y2.wirenum H.dc.1y2.rawtdc 52  0.5  52.5 10000 -50000 50000
+TH2F hdc1x2_wire_num_vs_raw_tdc 'HDC 1X2 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.1x2.wirenum H.dc.1x2.rawtdc 113 0.5 113.5 10000 -50000 50000
+
+TH2F hdc2x1_wire_num_vs_raw_tdc 'HDC 2X1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2x1.wirenum H.dc.2x1.rawtdc 113 0.5 113.5 10000 -50000 50000
+TH2F hdc2y1_wire_num_vs_raw_tdc 'HDC 2Y1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2y1.wirenum H.dc.2y1.rawtdc 52  0.5  52.5 10000 -50000 50000
+TH2F hdc2u1_wire_num_vs_raw_tdc 'HDC 2U1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2u1.wirenum H.dc.2u1.rawtdc 107 0.5 107.5 10000 -50000 50000
+TH2F hdc2v1_wire_num_vs_raw_tdc 'HDC 2V1 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2v1.wirenum H.dc.2v1.rawtdc 107 0.5 107.5 10000 -50000 50000
+TH2F hdc2y2_wire_num_vs_raw_tdc 'HDC 2Y2 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2y2.wirenum H.dc.2y2.rawtdc 52  0.5  52.5 10000 -50000 50000
+TH2F hdc2x2_wire_num_vs_raw_tdc 'HDC 2X2 Wiremap; Wire Number; Raw TDC Value (clicks)' H.dc.2x2.wirenum H.dc.2x2.rawtdc 113 0.5 113.5 10000 -50000 50000
 
 TH2F hdc1x1_wire_num_vs_tdc_time 'HDC 1X1 Wiremap; Wire Number; TDC Time (ns)' H.dc.1x1.wirenum H.dc.1x1.time 113 0.5 113.5 6000 -1000 5000
 TH2F hdc1y1_wire_num_vs_tdc_time 'HDC 1Y1 Wiremap; Wire Number; TDC Time (ns)' H.dc.1y1.wirenum H.dc.1y1.time 52  0.5  52.5 6000 -1000 5000
diff --git a/DEF-files/HMS/DC/hdcana_cuts.def b/DEF-files/HMS/DC/hdcana_cuts.def
index 5add84a3159e6f172fdc03285b01e56eac648310..3af34a5e9835ac62bdbfcc30004dda336ed171d9 100644
--- a/DEF-files/HMS/DC/hdcana_cuts.def
+++ b/DEF-files/HMS/DC/hdcana_cuts.def
@@ -11,4 +11,3 @@ CoarseTracking_master 1
 
 Block: CoarseReconstruct
 CourseReconstruct 0
-
diff --git a/DEF-files/HMS/EPICS/epics.def b/DEF-files/HMS/EPICS/epics.def
new file mode 100644
index 0000000000000000000000000000000000000000..4389a675894b2b1d08a5d4b77815dccfc7f27a2f
--- /dev/null
+++ b/DEF-files/HMS/EPICS/epics.def
@@ -0,0 +1,299 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+begin epics
+C1068_QDAC01                    40908                           # Pockels Cell POS HV           
+C1068_QDAC07                    32800                           # IA Cell Setpoint  Hall A DAC 07 A0
+C1068_QDAC08                    32800                           # IA Cell Setpoint  Hall A DAC 08 A1
+C1068_QDAC09                    32800                           # IA Cell Setpoint  Hall A DAC 09 A2
+C1068_QDAC10                    32800                           # IA Cell Setpoint  Hall A DAC 10 A3
+C1068_QDAC11                    33411                           # IA Cell Setpoint  Hall C DAC 11 A0
+C1068_QDAC12                    33411                           # IA Cell Setpoint  Hall C DAC 12 A1
+C1068_QDAC13                    33411                           # IA Cell Setpoint  Hall C DAC 13 A2
+C1068_QDAC14                    33411                           # IA Cell Setpoint  Hall C DAC 14 A3
+CFI60DLP                        15.1522                         # "dirty flowrate" at ESR (warm return) g/s
+CFI6711C                        15.0215                         # 4k flow, g/s                  
+CFI6731C                        0                               # 15k Flow g/s                  
+COLPOS1                         0                               # Collimator Block 1            
+COLPOS2                         0                               # Collimator Block 2            
+COLPOS3                         0                               # Collimator Block 3            
+COLPOS4                         0                               # Collimator Block 4            
+COLPOS5                         0                               # Collimator Block 5            
+COLPOS6                         0                               # Collimator Block 6            
+COLPOS7                         0                               # Collimator Block 7            
+CPI671SC                        3.14437                         # 4K Supply pressure at ESR atm 
+CPI672                          1.22453                         # 5K return pressure at ESR atm 
+CPI673                          1.39524                         # 15K Supply pressure at ESR atm
+CPI9541                         1.08368                         # 20K return pressure at ESR atm
+CTD6614                         14.59                           # Hall A 15K supply temp K      
+CTD671SC                        4.11                            # 4K Supply temp at ESR K       
+CTD672                          4.5                             # 5K return temp at ESR K       
+CTD673                          220.43                          # 15K Supply temp at ESR K      
+CTD9541                         264.79                          # 20K return temp at ESR K      
+HALLC:p				6390.9                          # Tiefenback energy                     
+EHCFR_ENERGY                    8.519                           # -                             
+EHCFR_LIPRC                     disabled                        # Master Focus Location:  1=G0, 0=Pivot
+EHCFR_LIXWidth                  1                               # -                             
+EHCFR_LIYWidth                  1                               # -                             
+FB_A:FB_On                      Off                             # 
+FB_A:status:mbbi2.B7            1                               # 
+FB_A:use_RF                     RF Off                          # 
+FB_C:CORR:C1_value.B            0                               # -                             
+FB_C:CORR:C2_value.B            0                               # -                             
+FB_C:CORR:C3_value.B            0                               # -                             
+FB_C:CORR:C4_value.B            0                               # -                             
+FB_C:FB_On                      Off                             # 
+FB_C:status:mbbi2.B7            1                               # 
+FB_C:use_RF                     RF Off                          # 
+HELCLOCKd                       Free Clock                      # Helicity Clock Read           
+HELCLOCKs                       Free Clock                      # Helicity Clock Set            
+HELDELAYd                       No Delay                        # Helicity Delay Read           
+HELDELAYs                       No Delay                        # Helicity Delay Set            
+HELFREQ                         29.5596                         # Helicity Frequency            
+HELPATTERNd                     Quartet                         # Helicity Pattern Read         
+HELPATTERNs                     Quartet                         # Helicity Pattern Set          
+HELTSETTLEd                     500                             # Helicity Settle Read          
+HELTSTABLEd                     33330                           # Helicity Stable Read          
+HWienAngle                      0                               # Horizontal Wien Angle         
+IBC1H04CRCUR2                   0                               # Hall A MPS BCM Current uA     
+IBC3H00CRCUR4                   0                               # Hall C MPS BCM Current uA     
+IFY0I06I                        not inserted                    # PolCup position: FC1 (is/is not) inserted
+IFY0I06R                        retracted                       # PolCup position: FC1 (is/is not) retracted
+IFY0L03I                        not inserted                    # PolCup position: FC2 (is/is not) inserted
+IFY0L03R                        retracted                       # PolCup position: FC2 (is/is not) retracted
+IFY1I07I                        not inserted                    # PolCup position: PolCup (is/is not) inserted
+IFY1I07R                        retracted                       # PolCup position: PolCup (is/is not) retracted
+IGL1I00AI17                     2.98413                         # Dummy Helicity Pockels Cell Voltage V
+IGL1I00AI22                     0                               # G0 X PZT Voltage V            
+IGL1I00AI23                     0                               # G0 Y PZT Voltage V            
+IGL1I00AI24                     0                               # IA Voltage V                  
+IGL1I00AI25                     0                               # Hall A X PZT Voltage V        
+IGL1I00AI26                     0                               # Hall A Y PZT Voltage  V       
+IGL1I00AI27                     0                               # Hall A IA Voltage  V          
+IGL1I00AI7                      3.44322                         # Gun 2 PITA Voltage Positive V 
+IGL1I00AI8                      3.15507                         # Gun 2 PITA Voltage Negative V 
+IGL1I00DAC2                     0                               # Hall B Control Level          
+IGL1I00DAC3                     0                               # Hall B Seed Level             
+IGL1I00DAC5                     0                               # Horizontal Wien Electrode Voltage
+IGL1I00DAC6                     0                               # Vertical Wien Electrode Voltage
+IGL1I00DI24_24M                 IN                              # Beam Half-wave plate Read(off=out) () --
+IGL1I00DIOFLRD                  13119                           # Carlini insertable waveplate state (1
+IGL1I00DIOHWTB.B2               0                               # Carlini insertable waveplate state (0=in,1=out)
+IGL1I00OD16_16                  IN                              # Beam Half-wave plate Set(off=out)
+IGL1I00OD16_4                   POSITIVE                        # Vertical Wien HV Polarity     
+IGL1I00OD16_8                   ON                              # Pockels Cell ON/OFF           
+IGL1I00OD16_9                   POSITIVE                        # Horizontal Wien HV Polarity   
+IGL1I00PStrans                  0                               # Injector transmission         
+IGLdac2:G2Ch3Pos                0                               # Gun2: PC (PITA) POS           
+IGLdac2:G2Ch4Neg                0                               # Gun2: PC (PITA) NEG           
+pgunFreqDiv:A:frequency	        500	 			# Hall A Laser Frequency:  0: 500 MHz, 1: 250 MHz
+pgunFreqDiv:C:frequency        	250	       			# Hall C Laser Frequency:  0: 500 MHz, 1: 250 MHz
+IHA3H07AIR                      72.8365                         # monitor                       
+IHA3H07BIR                      83.6352                         # monitor                       
+IOCSE14:PassSel;r               Auto Select                     # Auto Select                   
+IOCSE14:SEEGainMod;r            Auto Gain                       # Auto Gain                     
+IOCSE14:SEEProcMod;r            SEE Norm Ops                    # SEE Norm Ops                  
+IOCSE17:PassSel;r               Auto Select                     # Auto Select                   
+IOCSE17:SEEGainMod;r            Auto Gain                       # Auto Gain                     
+IOCSE17:SEEProcMod;r            SEE Norm Ops                    # SEE Norm Ops                  
+IOCSE18:PassSel;r               Auto Select                     # Auto Select                   
+IOCSE18:SEEGainMod;r            Auto Gain                       # Auto Gain                     
+IOCSE18:SEEProcMod;r            SEE Norm Ops                    # SEE Norm Ops                  
+IOCSE20:PassSel;r               Auto Select                     # Auto Select                   
+IOCSE20:SEEGainMod;r            Auto Gain                       # Auto Gain                     
+IOCSE20:SEEProcMod;r            SEE Norm Ops                    # SEE Norm Ops                  
+IPM2C24A.IENG                   0.121083                        # Hall B Beam Current (2C24A)   
+IPM3C00.XPOS                    0                               # This should be added,           stripline bpm x position ,  BPM POSITION
+IPM3C00.YPOS                    0                               # This should be added,           stripline bpm x position
+IPM3C01.XPOS                    0                               # 
+IPM3C01.YPOS                    0                               # 
+IPM3C02.XPOS                    0                               # 
+IPM3C02.YPOS                    0                               # 
+IPM3C03.XPOS                    0                               # 
+IPM3C03.YPOS                    0                               # 
+IPM3C04.XPOS                    0                               # 
+IPM3C04.YPOS                    0                               # 
+IPM3C05.XPOS                    0                               # 
+IPM3C05.YPOS                    0                               # 
+IPM3C06.XPOS                    0                               # 
+IPM3C06.YPOS                    0                               # 
+IPM3C07.XPOS                    0                               # 
+IPM3C07.YPOS                    0                               # 
+IPM3C07A.XPOS                   0                               # 
+IPM3C07A.YPOS                   0                               # 
+IPM3C08.XPOS                    0                               # 
+IPM3C08.YPOS                    0                               # 
+IPM3C10.XPOS                    0                               # 
+IPM3C10.YPOS                    0                               # 
+IPM3C11.XPOS                    0                               # 
+IPM3C11.YPOS                    0                               # 
+IPM3C12.XPOS                    0                               # 
+IPM3C12.YPOS                    0                               # 
+IPM3C14.XPOS                    0                               # 
+IPM3C14.YPOS                    0                               # 
+IPM3C16.XPOS                    0                               # 
+IPM3C16.YPOS                    0                               # 
+IPM3C17.XIFG                    3000                            # stripline bpm x position auto-gain, BPM Position Auto-Gain
+IPM3C17.XPOS                    0                               # 
+IPM3C17.XSOF                    0.223                           # stripline bpm x position offset, BPM Position OffSet
+IPM3C17.YIFG                    3000                            # stripline bpm y position auto-gain
+IPM3C17.YPOS                    0                               # 
+IPM3C17.YSOF                    -0.356                          # stripline bpm y position offset
+IPM3C18.XIFG                    3000                            # 
+IPM3C18.XPOS                    0                               # 
+IPM3C18.XSOF                    -0.049                          # 
+IPM3C18.YIFG                    3000                            # 
+IPM3C18.YPOS                    0                               # 
+IPM3C18.YSOF                    -0.225                          # 
+IPM3C19.XIFG                    3000                            # 
+IPM3C19.XPOS                    0                               # 
+IPM3C19.XSOF                    0.003                           # 
+IPM3C19.YIFG                    3000                            # 
+IPM3C19.YPOS                    0                               # 
+IPM3C19.YSOF                    0.015                           # 
+IPM3C20.XIFG                    3000                            # 
+IPM3C20.XPOS                    0                               # 
+IPM3C20.XSOF                    0.11                            # 
+IPM3C20.YIFG                    3000                            # 
+IPM3C20.YPOS                    0                               # 
+IPM3C20.YSOF                    -0.52                           # 
+IPM3C21.XIFG                    3000                            # 
+IPM3C21.XPOS                    0                               # 
+IPM3C21.XSOF                    0.04                            # 
+IPM3C21.YIFG                    3000                            # 
+IPM3C21.YPOS                    0                               # 
+IPM3C21.YSOF                    -0.56                           # 
+IPM3H02.XIFG                    3000                            # 
+IPM3H02.XPOS                    0                               # 
+IPM3H02.XSOF                    0                               # 
+IPM3H02.YIFG                    3000                            # 
+IPM3H02.YPOS                    0                               # 
+IPM3H02.YSOF                    0                               # 
+IPM3H04.XIFG                    3000                            # 
+IPM3H04.XPOS                    0                               # 
+IPM3H04.XSOF                    0                               # 
+IPM3H04.YIFG                    3000                            # 
+IPM3H04.YPOS                    0                               # 
+IPM3H04.YSOF                    0                               # 
+IPM3H07A.XIFG                   3000                            # 
+IPM3H07A.XPOF                   -9999                           # BPM XXXX  OffSet (looks like offset but don't know)
+IPM3H07A.XPOS                   0                               # 
+IPM3H07A.XRAW                   0                               # BPM RAW                       
+IPM3H07A.XSOF                   0.4                             # 
+IPM3H07A.YIFG                   3000                            # 
+IPM3H07A.YPOF                   -9999                           # 
+IPM3H07A.YPOS                   0                               # 
+IPM3H07A.YRAW                   0                               # 
+IPM3H07A.YSOF                   0.2                             # 
+IPM3H07B.XIFG                   3000                            # 
+IPM3H07B.XPOF                   -9999                           # 
+IPM3H07B.XPOS                   0                               # 
+IPM3H07B.XRAW                   0                               # 
+IPM3H07B.XSOF                   0.2                             # 
+IPM3H07B.YIFG                   3000                            # 
+IPM3H07B.YPOF                   -9999                           # 
+IPM3H07B.YPOS                   0                               # 
+IPM3H07B.YRAW                   0                               # 
+IPM3H07B.YSOF                   0.2                             # 
+IPM3H07C.XIFG                   3000                            # 
+IPM3H07C.XPOF                   -9999                           # 
+IPM3H07C.XPOS                   0                               # 
+IPM3H07C.XRAW                   0                               # 
+IPM3H07C.XSOF                   0.6                             # 
+IPM3H07C.YIFG                   3000                            # 
+IPM3H07C.YPOF                   -9999                           # 
+IPM3H07C.YPOS                   0                               # 
+IPM3H07C.YRAW                   0                               # 
+IPM3H07C.YSOF                   0                               # 
+IPM3H08.XPOF                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew, Big BPM target down stream,  
+IPM3H08.XPOS                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H08.XRAW                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H08.XSOF                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,   
+IPM3H08.YPOF                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew, Big BPM target down stream,  
+IPM3H08.YPOS                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H08.YRAW                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H08.YSOF                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H09.XIFG                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew, 
+IPM3H09.XPOF                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew, Big BPM target down stream, 
+IPM3H09.XPOS                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H09.XRAW                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H09.XSOF                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H09.YIFG                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H09.YPOF                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew, Big BPM target down stream,  
+IPM3H09.YPOS                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H09.YRAW                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3H09.YSOF                    new Big BPMs at downstream               # offline in the Transports , Halls BPM Overwiew,  
+IPM3P01.XPOS                    *** not connected               # Hall-C Compton Control, offline in the Transports , Halls BPM Overwiew,  Compton
+IPM3P01.YPOS                    *** not connected               # Hall-C Compton Control, offline in the Transports , Halls BPM Overwiew,  Compton
+IPM3P02A.XIFG                   3000                            # 
+IPM3P02A.XPOS                   0                               # Hall-C Compton Control,       
+IPM3P02A.XSOF                   -0.48                           # 
+IPM3P02A.YIFG                   3000                            # 
+IPM3P02A.YPOS                   0                               # Hall-C Compton Control,       
+IPM3P02A.YSOF                   -0.4                            # 
+IPM3P02B.XIFG                   3000                            # 
+IPM3P02B.XPOS                   0                               # Hall-C Compton Control,       
+IPM3P02B.XSOF                   0                               # 
+IPM3P02B.YIFG                   3000                            # 
+IPM3P02B.YPOS                   0                               # Hall-C Compton Control,       
+IPM3P02B.YSOF                   0.07                            # 
+IPM3P03.XIFG                   *** not connected               # offline in the Transports , Halls BPM Overwiew, 
+IPM3P03.XPOS                   *** not connected               # Hall-C Compton Control, offline in the Transports , Halls BPM Overwiew,  Compton
+IPM3P03.XSOF                   *** not connected               # offline in the Transports , Halls BPM Overwiew,  Compton
+IPM3P03.YIFG                   *** not connected               # offline in the Transports , Halls BPM Overwiew,  Compton
+IPM3P03.YPOS                   *** not connected               # Hall-C Compton Control, offline in the Transports , Halls BPM Overwiew,  Compton
+IPM3P03.YSOF                   *** not connected               # offline in the Transports , Halls BPM Overwiew, Compton
+ISL0I04DT                       In                              # Master Slit Setting           
+MFG1I04A.BDL                    978                             # First Solenoid BDL (G-cm)     
+MFG1I04B.BDL                    -977.988                        # Second Solenoid BDL (G-cm)    
+MWF0I02.BDL                     -7.66356e-06                    # Horizontal Wien BDL (G-cm)    
+MWF1I04.BDL                     9.37619e-06                     # Vertical Wien BDL (G-cm)      
+OXSS_MGFD                       0                               # Persistent Field (T)          
+OXSS_RDF                        0                               # Leads Field                   
+Phi_FG                          0.000516931                     # Solenoids Angle (Phi_FG)      
+R00PGSET                        0.7                             # Prebuncher Setting            
+SMRPOSA                         -1.03809                        # Hall A Slit Position (Hall A Chopper Slit Readback) --
+SMRPOSB                         8                               # Hall B Chopper Slit Position Readback
+SMRPOSC                         8                               # Hall C Chopper Slit Position Readback
+TARGPOS                         0                               # Target position X             
+VWienAngle                      0                               # Vertical Wien Angle           
+WienAngle                       0                               # Wien Filter Angle Setting  degrees
+cdipc_xpos                      5e-05                           # Pockels Cell X Stage          
+cdipc_ypos                      0.0762                          # Pockels Cell Y Stage          
+hac_bcm_average                 0.0608161                       # Hall A BCM Current uA         
+halla_photocurrent              0                               # Hall A photocurrent uA        
+halla_transmission              0                               # Hall A Independent Transmission %
+hallb_transmission              0                               # Hall B Independent Transmission %
+hallc_photocurrent              0                               # Hall C photocurrent  uA       
+hel_even_1                      0                               # MHE0L01V Even Setpoint        
+hel_even_2                      0                               # MHE0L02H Even Setpoint        
+hel_even_3                      0                               # MHE0L03V Even Setpoint        
+hel_even_4                      0                               # MHE0L04H Even Setpoint        
+hel_mag_status.D                -1                              # Hel State Asymmetry           
+hel_odd_1                       0                               # MHE0L01V Even Setpoint        
+hel_odd_2                       0                               # MHE0L02H Even Setpoint        
+hel_odd_3                       0                               # MHE0L03V Even Setpoint        
+hel_odd_4                       0                               # MHE0L04H Even Setpoint        
+ibcm1                           0.00964451                      # Hall C Beam Current (monitor # 1): careful, this is also in target epics
+ibcm17                          -5.58226                        # Hall C Beam Current (monitor # 3): careful, this is also in target epics
+ibcm2                           0.000827091                     # Hall C Beam Current (monitor # 2): careful, this is also in target epics
+itov1out                        0.021978                        # A1 Slit Current               
+itov2out                        0.175824                        # A2 Slit Current               
+itov3out                        0                               # Master Slit Current           
+itov4out                        0                               # INJ Faraday cup (PCup, FC1, FC2, Dump) Current
+itov5out                        0                               # A3 Slit Current               
+itov7out                        0.029304                        # A4 Slit Current               
+iunser                          2477.15                         # Hall C Beam Current (unser)   
+laser_a_wavelength              0                               # Hall A laser wavelength nm    
+laser_b_wavelength              0                               # Hall B laser wavelength nm    
+laser_c_wavelength              0                               # Hall C laser wavelength nm    
+psub_aa_pos                     280.021                         # Hall A Laser Attenuator (Hall A Laser Attenuator Setting) --
+psub_ab_pos                     190.797                         # Hall B Laser Attenuator Setting
+psub_ac_pos                     120.01                          # Hall C Laser Attenuator Setting
+psub_cx_pos                     10500                           # Wafer X Stage         (X laser position on cathode) --
+psub_cy_pos                     11500                           # Wafer Y Stage         (Y laser position on cathode) --
+psub_pl_pos                     0.168                           # Rotating waveplate (Rotatable Half Wave Plate Setting) --
+qe_halla                        0.4498                          # Hall A Quantum Efficiency %   
+qe_hallb                        0.423                           # Hall B Quantum Efficiency %   
+qe_hallc                        0.4578                          # Hall C Quantum Efficiency %   
+scaler_calc1                    0.0711763                       # Hall B Beam Current (Faraday Cup) nA	
+end epics
diff --git a/DEF-files/HMS/GEN/hstackana.def b/DEF-files/HMS/GEN/hstackana.def
new file mode 100644
index 0000000000000000000000000000000000000000..582d5fdc258b3d9521ddaba201be61c1ea76d0a1
--- /dev/null
+++ b/DEF-files/HMS/GEN/hstackana.def
@@ -0,0 +1,189 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+#block *
+block T.hms.*
+block H.dc.*
+block H.tr.*
+block H.hod.*
+block H.cer.*
+block H.cal.*
+#block H.gtr.*
+
+# Drift Chambers
+TH1F hdc_ref1 'HMS DC Reference Time Slot 5 Channel 111; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF1_tdcTime 3000 12000 15000 
+TH1F hdc_ref2 'HMS DC Reference Time Slot 8 Channel 127; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF2_tdcTime 3000 12000 15000
+TH1F hdc_ref3 'HMS DC Reference Time Slot 10 Channel 127; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF3_tdcTime 3000 12000 15000
+TH1F hdc_ref4 'HMS DC Reference Time Slot 17 Channel 127; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF4_tdcTime 3000 12000 15000
+
+TH1F hdc1x1_wirenum 'HMS DC 1X1 Wiremap; Wire Number; Number of Entries' H.dc.1x1.wirenum 113 0.5 113.5
+TH1F hdc1y1_wirenum 'HMS DC 1Y1 Wiremap; Wire Number; Number of Entries' H.dc.1y1.wirenum  52 0.5  52.5
+TH1F hdc1u1_wirenum 'HMS DC 1U1 Wiremap; Wire Number; Number of Entries' H.dc.1u1.wirenum 107 0.5 107.5
+TH1F hdc1v1_wirenum 'HMS DC 1V1 Wiremap; Wire Number; Number of Entries' H.dc.1v1.wirenum 107 0.5 107.5
+TH1F hdc1y2_wirenum 'HMS DC 1Y2 Wiremap; Wire Number; Number of Entries' H.dc.1y2.wirenum  52 0.5  52.5
+TH1F hdc1x2_wirenum 'HMS DC 1X2 Wiremap; Wire Number; Number of Entries' H.dc.1x2.wirenum 113 0.5 113.5
+
+TH1F hdc2x1_wirenum 'HMS DC 2X1 Wiremap; Wire Number; Number of Entries' H.dc.2x1.wirenum 113 0.5 113.5
+TH1F hdc2y1_wirenum 'HMS DC 2Y1 Wiremap; Wire Number; Number of Entries' H.dc.2y1.wirenum  52 0.5  52.5
+TH1F hdc2u1_wirenum 'HMS DC 2U1 Wiremap; Wire Number; Number of Entries' H.dc.2u1.wirenum 107 0.5 107.5
+TH1F hdc2v1_wirenum 'HMS DC 2V1 Wiremap; Wire Number; Number of Entries' H.dc.2v1.wirenum 107 0.5 107.5
+TH1F hdc2y2_wirenum 'HMS DC 2Y2 Wiremap; Wire Number; Number of Entries' H.dc.2y2.wirenum  52 0.5  52.5
+TH1F hdc2x2_wirenum 'HMS DC 2X2 Wiremap; Wire Number; Number of Entries' H.dc.2x2.wirenum 113 0.5 113.5
+
+TH2F hdc1x1_wirenum_vs_tdc 'HMS DC 1X1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1x1.wirenum H.dc.1x1.time 113 0.5 113.5 2000 -500 1500
+TH2F hdc1y1_wirenum_vs_tdc 'HMS DC 1Y1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1y1.wirenum H.dc.1y1.time 52  0.5  52.5 2000 -500 1500
+TH2F hdc1u1_wirenum_vs_tdc 'HMS DC 1U1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1u1.wirenum H.dc.1u1.time 107 0.5 107.5 2000 -500 1500
+TH2F hdc1v1_wirenum_vs_tdc 'HMS DC 1V1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1v1.wirenum H.dc.1v1.time 107 0.5 107.5 2000 -500 1500
+TH2F hdc1y2_wirenum_vs_tdc 'HMS DC 1Y2 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1y2.wirenum H.dc.1y2.time 52  0.5  52.5 2000 -500 1500
+TH2F hdc1x2_wirenum_vs_tdc 'HMS DC 1X2 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1x2.wirenum H.dc.1x2.time 113 0.5 113.5 2000 -500 1500
+
+TH2F hdc2x1_wirenum_vs_tdc 'HMS DC 2X1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2x1.wirenum H.dc.2x1.time 113 0.5 113.5 2000 -500 1500
+TH2F hdc2y1_wirenum_vs_tdc 'HMS DC 2Y1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2y1.wirenum H.dc.2y1.time 52  0.5  52.5 2000 -500 1500
+TH2F hdc2u1_wirenum_vs_tdc 'HMS DC 2U1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2u1.wirenum H.dc.2u1.time 107 0.5 107.5 2000 -500 1500
+TH2F hdc2v1_wirenum_vs_tdc 'HMS DC 2V1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2v1.wirenum H.dc.2v1.time 107 0.5 107.5 2000 -500 1500
+TH2F hdc2y2_wirenum_vs_tdc 'HMS DC 2Y2 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2y2.wirenum H.dc.2y2.time 52  0.5  52.5 2000 -500 1500
+TH2F hdc2x2_wirenum_vs_tdc 'HMS DC 2X2 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2x2.wirenum H.dc.2x2.time 113 0.5 113.5 2000 -500 1500
+
+TH2F hdc1x1_wirenum_vs_resid 'HMS DC 1X1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1x1.wirenum H.dc.residual[0] 113 0.5 113.5 200 -1.0 1.0
+TH2F hdc1y1_wirenum_vs_resid 'HMS DC 1Y1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1y1.wirenum H.dc.residual[1] 52  0.5  52.5 200 -1.0 1.0
+TH2F hdc1u1_wirenum_vs_resid 'HMS DC 1U1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1u1.wirenum H.dc.residual[2] 107 0.5 107.5 200 -1.0 1.0
+TH2F hdc1v1_wirenum_vs_resid 'HMS DC 1V1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1v1.wirenum H.dc.residual[3] 107 0.5 107.5 200 -1.0 1.0
+TH2F hdc1y2_wirenum_vs_resid 'HMS DC 1Y2 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1y2.wirenum H.dc.residual[4] 52  0.5  52.5 200 -1.0 1.0
+TH2F hdc1x2_wirenum_vs_resid 'HMS DC 1X2 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1x2.wirenum H.dc.residual[5] 113 0.5 113.5 200 -1.0 1.0
+
+TH2F hdc2x1_wirenum_vs_resid 'HMS DC 2X1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2x1.wirenum H.dc.residual[6] 113 0.5 113.5 200 -1.0 1.0
+TH2F hdc2y1_wirenum_vs_resid 'HMS DC 2Y1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2y1.wirenum H.dc.residual[7] 52  0.5  52.5 200 -1.0 1.0
+TH2F hdc2u1_wirenum_vs_resid 'HMS DC 2U1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2u1.wirenum H.dc.residual[8] 107 0.5 107.5 200 -1.0 1.0
+TH2F hdc2v1_wirenum_vs_resid 'HMS DC 2V1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2v1.wirenum H.dc.residual[9] 107 0.5 107.5 200 -1.0 1.0
+TH2F hdc2y2_wirenum_vs_resid 'HMS DC 2Y2 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2y2.wirenum H.dc.residual[10] 52  0.5  52.5 200 -1.0 1.0
+TH2F hdc2x2_wirenum_vs_resid 'HMS DC 2X2 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2x2.wirenum H.dc.residual[11] 113 0.5 113.5 200 -1.0 1.0
+
+TH2F hdc_xfp_vs_yxp 'HMS DC Xfp vs Yxp; Yfp (cm) / 1 cm; Xfp (cm) / 1 cm' H.dc.y H.dc.x 100 -50 50 100 -50 50
+TH2F hdc_xfpp_vs_yxpp 'HMS DC Xfpp vs Yxpp; Yfpp; Xfpp' H.dc.yp H.dc.xp 100 -1 1 100 -1 1
+
+# Hodoscopes (Positive/Left) 
+TH1F hhodo_1x_pos_adc_occu 'HMS Hodoscope 1X+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.1x.posAdcCounter 16 0.5 16.5
+TH1F hhodo_1y_pos_adc_occu 'HMS Hodoscope 1Y+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.1y.posAdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_pos_adc_occu 'HMS Hodoscope 2X+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.2x.posAdcCounter 16 0.5 16.5
+TH1F hhodo_2y_pos_adc_occu 'HMS Hodoscope 2Y+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.2y.posAdcCounter 10 0.5 10.5
+TH1F hhodo_1x_pos_tdc_occu 'HMS Hodoscope 1X+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.1x.posTdcCounter 16 0.5 16.5
+TH1F hhodo_1y_pos_tdc_occu 'HMS Hodoscope 1Y+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.1y.posTdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_pos_tdc_occu 'HMS Hodoscope 2X+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.2x.posTdcCounter 16 0.5 16.5
+TH1F hhodo_2y_pos_tdc_occu 'HMS Hodoscope 2Y+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.2y.posTdcCounter 10 0.5 10.5
+TH2F hhodo_1x_pos_ped_vs_pad 'HMS Hodoscope 1X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPed 16 0.5 16.5 1000 0 1000
+TH2F hhodo_1y_pos_ped_vs_pad 'HMS Hodoscope 1Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPed 10 0.5 10.5 1000 0 1000
+TH2F hhodo_2x_pos_ped_vs_pad 'HMS Hodoscope 2X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPed 16 0.5 16.5 1000 0 1000
+TH2F hhodo_2y_pos_ped_vs_pad 'HMS Hodoscope 2Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPed 10 0.5 10.5 1000 0 1000
+TH2F hhodo_1x_pos_pi_vs_pad 'HMS Hodoscope 1X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1x.GoodPaddle  H.hod.1x.GoodPosAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_1y_pos_pi_vs_pad 'HMS Hodoscope 1Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1y.GoodPaddle  H.hod.1y.GoodPosAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_2x_pos_pi_vs_pad 'HMS Hodoscope 2X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2x.GoodPaddle  H.hod.2x.GoodPosAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_2y_pos_pi_vs_pad 'HMS Hodoscope 2Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2y.GoodPaddle  H.hod.2y.GoodPosAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_1x_pos_pamp_vs_pad 'HMS Hodoscope 1X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.1x.GoodPaddle  H.hod.1x.GoodPosAdcPulseAmp 16 0.5 16.5 4100 0 4100
+TH2F hhodo_1y_pos_pamp_vs_pad 'HMS Hodoscope 1Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.1y.GoodPaddle  H.hod.1y.GoodPosAdcPulseAmp 10 0.5 10.5 4100 0 4100
+TH2F hhodo_2x_pos_pamp_vs_pad 'HMS Hodoscope 2X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.2x.GoodPaddle  H.hod.2x.GoodPosAdcPulseAmp 16 0.5 16.5 4100 0 4100
+TH2F hhodo_2y_pos_pamp_vs_pad 'HMS Hodoscope 2Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.2y.GoodPaddle  H.hod.2y.GoodPosAdcPulseAmp 10 0.5 10.5 4100 0 4100
+TH2F hhodo_1x_pos_tdc_time_vs_pad 'HMS Hodoscope 1X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.1x.GoodPaddle  H.hod.1x.GoodPosTdcChan 16 0.5 16.5 3500 -500 3000
+TH2F hhodo_1y_pos_tdc_time_vs_pad 'HMS Hodoscope 1Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.1y.GoodPaddle  H.hod.1y.GoodPosTdcChan 10 0.5 10.5 3500 -500 3000
+TH2F hhodo_2x_pos_tdc_time_vs_pad 'HMS Hodoscope 2X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.2x.GoodPaddle  H.hod.2x.GoodPosTdcChan 16 0.5 16.5 3500 -500 3000
+TH2F hhodo_2y_pos_tdc_time_vs_pad 'HMS Hodoscope 2Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.2y.GoodPaddle  H.hod.2y.GoodPosTdcChan 10 0.5 10.5 3500 -500 3000
+
+# Hodoscopes (Negative/Right)
+TH1F hhodo_1x_neg_adc_occu 'HMS Hodoscope 1X- ADC Occupancy; Paddle Number; Number of Hits' H.hod.1x.negAdcCounter 16 0.5 16.5
+TH1F hhodo_1y_neg_adc_occu 'HMS Hodoscope 1Y- ADC Occupancy; Paddle Number; Number of Hits' H.hod.1y.negAdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_neg_adc_occu 'HMS Hodoscope 2X- ADC Occupancy; Paddle Number; Number of Hits' H.hod.2x.negAdcCounter 16 0.5 16.5
+TH1F hhodo_2y_neg_adc_occu 'HMS Hodoscope 2Y- ADC Occupancy; Paddle Number; Number of Hits' H.hod.2y.negAdcCounter 10 0.5 10.5
+TH1F hhodo_1x_neg_tdc_occu 'HMS Hodoscope 1X- TDC Occupancy; Paddle Number; Number of Hits' H.hod.1x.negTdcCounter 16 0.5 16.5
+TH1F hhodo_1y_neg_tdc_occu 'HMS Hodoscope 1Y- TDC Occupancy; Paddle Number; Number of Hits' H.hod.1y.negTdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_neg_tdc_occu 'HMS Hodoscope 2X- TDC Occupancy; Paddle Number; Number of Hits' H.hod.2x.negTdcCounter 16 0.5 16.5
+TH1F hhodo_2y_neg_tdc_occu 'HMS Hodoscope 2Y- TDC Occupancy; Paddle Number; Number of Hits' H.hod.2y.negTdcCounter 10 0.5 10.5
+TH2F hhodo_1x_neg_ped_vs_pad 'HMS Hodoscope 1X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPed 16 0.5 16.5 1000 0 1000
+TH2F hhodo_1y_neg_ped_vs_pad 'HMS Hodoscope 1Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPed 10 0.5 10.5 1000 0 1000
+TH2F hhodo_2x_neg_ped_vs_pad 'HMS Hodoscope 2X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPed 16 0.5 16.5 1000 0 1000
+TH2F hhodo_2y_neg_ped_vs_pad 'HMS Hodoscope 2Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPed 10 0.5 10.5 1000 0 1000
+TH2F hhodo_1x_neg_pi_vs_pad 'HMS Hodoscope 1X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1x.GoodPaddle  H.hod.1x.GoodNegAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_1y_neg_pi_vs_pad 'HMS Hodoscope 1Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1y.GoodPaddle  H.hod.1y.GoodNegAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_2x_neg_pi_vs_pad 'HMS Hodoscope 2X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2x.GoodPaddle  H.hod.2x.GoodNegAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_2y_neg_pi_vs_pad 'HMS Hodoscope 2Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2y.GoodPaddle  H.hod.2y.GoodNegAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_1x_neg_pamp_vs_pad 'HMS Hodoscope 1X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.1x.GoodPaddle  H.hod.1x.GoodNegAdcPulseAmp 16 0.5 16.5 4100 0 4100
+TH2F hhodo_1y_neg_pamp_vs_pad 'HMS Hodoscope 1Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.1y.GoodPaddle  H.hod.1y.GoodNegAdcPulseAmp 10 0.5 10.5 4100 0 4100
+TH2F hhodo_2x_neg_pamp_vs_pad 'HMS Hodoscope 2X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.2x.GoodPaddle  H.hod.2x.GoodNegAdcPulseAmp 16 0.5 16.5 4100 0 4100
+TH2F hhodo_2y_neg_pamp_vs_pad 'HMS Hodoscope 2Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.2y.GoodPaddle  H.hod.2y.GoodNegAdcPulseAmp 10 0.5 10.5 4100 0 4100
+TH2F hhodo_1x_neg_tdc_time_vs_pad 'HMS Hodoscope 1X- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.1x.GoodPaddle  H.hod.1x.GoodNegTdcChan 16 0.5 16.5 3500 -500 3000
+TH2F hhodo_1y_neg_tdc_time_vs_pad 'HMS Hodoscope 1Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.1y.GoodPaddle  H.hod.1y.GoodNegTdcChan 10 0.5 10.5 3500 -500 3000
+TH2F hhodo_2x_neg_tdc_time_vs_pad 'HMS Hodoscope 2X- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.2x.GoodPaddle  H.hod.2x.GoodNegTdcChan 16 0.5 16.5 3500 -500 3000
+TH2F hhodo_2y_neg_tdc_time_vs_pad 'HMS Hodoscope 2Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.2y.GoodPaddle  H.hod.2y.GoodNegTdcChan 10 0.5 10.5 3500 -500 3000
+
+# Cherenkov
+TH1F hgcer_occu 'HMS Cherenkov ADC Occupancy; PMT Number; Number of ADC Hits' H.cer.adcCounter 2 0.5 2.5
+TH2F hgcer_ped_vs_cntr 'HMS Cherenkov Pulse Pedestal; PMT Number; Pulse Pedestal / 1 ADC Units' H.cer.adcCounter H.cer.adcPed 2 0.5 2.5 1000 0 1000
+TH2F hgcer_pi_vs_cntr 'HMS Cherenkov Pulse Integral; PMT Number; Pulse Pedestal / 10 ADC Units' H.cer.adcCounter H.cer.adcPulseInt 2 0.5 2.5 4000 0 40000
+TH2F hgcer_pamp_vs_cntr 'HMS Cherenkov Pulse Amplitude; PMT Number; Pulse Pedestal / 1 ADC Units' H.cer.adcCounter H.cer.adcPulseAmp 2 0.5 2.5 4100 0 4100
+
+# Pre-Shower
+TH1F hcal_hA_pos_occu 'HMS hA+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.1pr.posAdcCounter 13 0.5 13.5
+TH2F hcal_hA_pos_ped_blk 'HMS hA+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hA_pos_pi_blk 'HMS hA+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hA_pos_pamp_blk 'HMS hA+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+TH1F hcal_hA_neg_occu 'HMS hA- ADC Occupancy; Block Number; Number of ADC Hits' H.cal.1pr.negAdcCounter 13 0.5 13.5
+TH2F hcal_hA_neg_ped_blk 'HMS hA- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hA_neg_pi_blk 'HMS hA- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hA_neg_pamp_blk 'HMS hA- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+TH1F hcal_hB_pos_occu 'HMS hB+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.2ta.posAdcCounter 13 0.5 13.5
+TH2F hcal_hB_pos_ped_blk 'HMS hB+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hB_pos_pi_blk 'HMS hB+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_pos_pamp_blk 'HMS hB+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+TH1F hcal_hB_neg_occu 'HMS hB- ADC Occupancy; Block Number; Number of ADC Hits' H.cal.2ta.negAdcCounter 13 0.5 13.5
+TH2F hcal_hB_neg_ped_blk 'HMS hB- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hB_neg_pi_blk 'HMS hB- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_neg_pamp_blk 'HMS hB- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+# Shower
+TH1F hcal_hC_occu 'HMS hC+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.3ta.posAdcCounter 13 0.5 13.5
+TH2F hcal_hC_ped_blk 'HMS hC+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hC_pi_blk 'HMS hC+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hC_pamp_blk 'HMS hC+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+TH1F hcal_hD_occu 'HMS hD+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.4ta.posAdcCounter 13 0.5 13.5
+TH2F hcal_hD_ped_blk 'HMS hD+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hD_pi_blk 'HMS hD+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hD_pamp_blk 'HMS hD+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+# Trigger Apparatus
+TH1F htrig_hCERsum_pped 'HMS Cherenkov Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hCERSUM_adcPed 1000 0 1000
+TH1F htrig_hCERsum_pint 'HMS Cherenkov Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hCERSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hCERsum_pamp 'HMS Cherenkov Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hCERSUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hCERsum_tdc_time 'HMS Cherenkov Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hCERSUM_tdcTime 4000 0 4000
+
+TH1F htrig_hAsum_pped 'HMS hA Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hASUM_adcPed 1000 0 1000
+TH1F htrig_hAsum_pint 'HMS hA Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hASUM_adcPulseInt 4000 0 40000
+TH1F htrig_hAsum_pamp 'HMS hA Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hASUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hAsum_tdc_time 'HMS hA Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hASUM_tdcTime 4000 0 4000
+
+TH1F htrig_hBsum_pped 'HMS hB Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hBSUM_adcPed 1000 0 1000
+TH1F htrig_hBsum_pint 'HMS hB Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hBSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hBsum_pamp 'HMS hB Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hBSUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hBsum_tdc_time 'HMS hB Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hBSUM_tdcTime 4000 0 4000
+
+TH1F htrig_hCsum_pped 'HMS hC Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hCSUM_adcPed 1000 0 1000
+TH1F htrig_hCsum_pint 'HMS hC Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hCSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hCsum_pamp 'HMS hC Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hCSUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hCsum_tdc_time 'HMS hC Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hCSUM_tdcTime 4000 0 4000
+
+TH1F htrig_hDsum_pped 'HMS hD Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hDSUM_adcPed 1000 0 1000
+TH1F htrig_hDsum_pint 'HMS hD Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hDSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hDsum_pamp 'HMS hD Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hDSUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hDsum_tdc_time 'HMS hD Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hDSUM_tdcTime 4000 0 4000
+
+TH1F htrig_hpreShwr_adc_pped 'HMS Pre-Shower Sum Pulse Pedestal; Pulse Pedestal (ADC Units); Number of Entries / 1 ADC Units;' T.hms.hPSHWR_adcPed 1000 0 1000
+TH1F htrig_hpreShwr_adc_pint 'HMS Pre-Shower Sum Pulse Integral; Pulse Integral (ADC Units); Number of Entries / 10 ADC Units;' T.hms.hPSHWR_adcPulseInt 4000 0 40000
+TH1F htrig_hpreShwr_adc_pamp 'HMS Pre-Shower Sum Pulse Amplitude; Pulse Amplitude (ADC Units); Number of Entries / 1 ADC Units;' T.hms.hPSHWR_adcPulseAmp 4100 0 4100
+
+TH1F htrig_hshwr_adc_pped 'HMS Shower Pulse Pedestal; Pulse Pedestal (ADC Units); Number of Entries / 1 ADC Units;' T.hms.hSHWR_adcPed 1000 0 1000
+TH1F htrig_hshwr_adc_pint 'HMS Shower Pulse Integral; Pulse Integral (ADC Units); Number of Entries / 10 ADC Units;' T.hms.hSHWR_adcPulseInt 4000 0 40000
+TH1F htrig_hshwr_adc_pamp 'HMS Shower Pulse Amplitude; Pulse Amplitude (ADC Units); Number of Entries / 1 ADC Units;' T.hms.hSHWR_adcPulseAmp 4100 0 4100
+
+TH1F htrig_hpreShwrLow_tdc 'HMS Pre-Shower Low TDC Time; TDC Time (TDC Units); Number of Entries / 1 TDC Units;' T.hms.hPSHWRLO_tdcTime 4000 0 4000
+TH1F htrig_hpreShwrHigh_tdc 'HMS Pre-Shower High TDC Time; TDC Time (TDC Units); Number of Entries / 1 TDC Units;' T.hms.hPSHWRHI_tdcTime 4000 0 4000
+TH1F htrig_hshwr_tdc 'HMS Shower TDC Time; TDC Time (TDC Units); Number of Entries / 1 TDC Units;' T.hms.hSHWR_tdcTime 4000 0 4000
diff --git a/DEF-files/HMS/GEN/hstackana_cuts.def b/DEF-files/HMS/GEN/hstackana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/HMS/GEN/hstackana_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/HMS/GEN/hstackana_report.def b/DEF-files/HMS/GEN/hstackana_report.def
new file mode 100644
index 0000000000000000000000000000000000000000..4c8cbc0fd09e605e73111b6da204e47807cfd460
--- /dev/null
+++ b/DEF-files/HMS/GEN/hstackana_report.def
@@ -0,0 +1,196 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+#block *
+block T.hms.*
+block H.dc.*
+block H.tr.*
+block H.hod.*
+block H.cer.*
+block H.cal.*
+block H.gtr.*
+
+# Drift Chambers
+TH1F hdc_ref1 'HMS DC Reference Time Slot 5 Channel 111; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF1_tdcTime 3000 12000 15000 
+TH1F hdc_ref2 'HMS DC Reference Time Slot 8 Channel 127; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF2_tdcTime 3000 12000 15000
+TH1F hdc_ref3 'HMS DC Reference Time Slot 10 Channel 127; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF3_tdcTime 3000 12000 15000
+TH1F hdc_ref4 'HMS DC Reference Time Slot 17 Channel 127; TDC Time (Clicks); Number of Entries / 1 click' T.hms.hDCREF4_tdcTime 3000 12000 15000
+
+TH1F hdc1x1_wirenum 'HMS DC 1X1 Wiremap; Wire Number; Number of Entries' H.dc.1x1.wirenum 113 0.5 113.5
+TH1F hdc1y1_wirenum 'HMS DC 1Y1 Wiremap; Wire Number; Number of Entries' H.dc.1y1.wirenum  52 0.5  52.5
+TH1F hdc1u1_wirenum 'HMS DC 1U1 Wiremap; Wire Number; Number of Entries' H.dc.1u1.wirenum 107 0.5 107.5
+TH1F hdc1v1_wirenum 'HMS DC 1V1 Wiremap; Wire Number; Number of Entries' H.dc.1v1.wirenum 107 0.5 107.5
+TH1F hdc1y2_wirenum 'HMS DC 1Y2 Wiremap; Wire Number; Number of Entries' H.dc.1y2.wirenum  52 0.5  52.5
+TH1F hdc1x2_wirenum 'HMS DC 1X2 Wiremap; Wire Number; Number of Entries' H.dc.1x2.wirenum 113 0.5 113.5
+
+TH1F hdc2x1_wirenum 'HMS DC 2X1 Wiremap; Wire Number; Number of Entries' H.dc.2x1.wirenum 113 0.5 113.5
+TH1F hdc2y1_wirenum 'HMS DC 2Y1 Wiremap; Wire Number; Number of Entries' H.dc.2y1.wirenum  52 0.5  52.5
+TH1F hdc2u1_wirenum 'HMS DC 2U1 Wiremap; Wire Number; Number of Entries' H.dc.2u1.wirenum 107 0.5 107.5
+TH1F hdc2v1_wirenum 'HMS DC 2V1 Wiremap; Wire Number; Number of Entries' H.dc.2v1.wirenum 107 0.5 107.5
+TH1F hdc2y2_wirenum 'HMS DC 2Y2 Wiremap; Wire Number; Number of Entries' H.dc.2y2.wirenum  52 0.5  52.5
+TH1F hdc2x2_wirenum 'HMS DC 2X2 Wiremap; Wire Number; Number of Entries' H.dc.2x2.wirenum 113 0.5 113.5
+
+TH2F hdc1x1_wirenum_vs_tdc 'HMS DC 1X1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1x1.wirenum H.dc.1x1.time 113 0.5 113.5 2000 -500 1500
+TH2F hdc1y1_wirenum_vs_tdc 'HMS DC 1Y1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1y1.wirenum H.dc.1y1.time 52  0.5  52.5 2000 -500 1500
+TH2F hdc1u1_wirenum_vs_tdc 'HMS DC 1U1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1u1.wirenum H.dc.1u1.time 107 0.5 107.5 2000 -500 1500
+TH2F hdc1v1_wirenum_vs_tdc 'HMS DC 1V1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1v1.wirenum H.dc.1v1.time 107 0.5 107.5 2000 -500 1500
+TH2F hdc1y2_wirenum_vs_tdc 'HMS DC 1Y2 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1y2.wirenum H.dc.1y2.time 52  0.5  52.5 2000 -500 1500
+TH2F hdc1x2_wirenum_vs_tdc 'HMS DC 1X2 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.1x2.wirenum H.dc.1x2.time 113 0.5 113.5 2000 -500 1500
+
+TH2F hdc2x1_wirenum_vs_tdc 'HMS DC 2X1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2x1.wirenum H.dc.2x1.time 113 0.5 113.5 2000 -500 1500
+TH2F hdc2y1_wirenum_vs_tdc 'HMS DC 2Y1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2y1.wirenum H.dc.2y1.time 52  0.5  52.5 2000 -500 1500
+TH2F hdc2u1_wirenum_vs_tdc 'HMS DC 2U1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2u1.wirenum H.dc.2u1.time 107 0.5 107.5 2000 -500 1500
+TH2F hdc2v1_wirenum_vs_tdc 'HMS DC 2V1 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2v1.wirenum H.dc.2v1.time 107 0.5 107.5 2000 -500 1500
+TH2F hdc2y2_wirenum_vs_tdc 'HMS DC 2Y2 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2y2.wirenum H.dc.2y2.time 52  0.5  52.5 2000 -500 1500
+TH2F hdc2x2_wirenum_vs_tdc 'HMS DC 2X2 Wire Number vs. TDC; Wire Number; TDC Time (ns)' H.dc.2x2.wirenum H.dc.2x2.time 113 0.5 113.5 2000 -500 1500
+
+TH2F hdc1x1_wirenum_vs_resid 'HMS DC 1X1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1x1.wirenum H.dc.residual[0] 113 0.5 113.5 200 -1.0 1.0
+TH2F hdc1y1_wirenum_vs_resid 'HMS DC 1Y1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1y1.wirenum H.dc.residual[1] 52  0.5  52.5 200 -1.0 1.0
+TH2F hdc1u1_wirenum_vs_resid 'HMS DC 1U1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1u1.wirenum H.dc.residual[2] 107 0.5 107.5 200 -1.0 1.0
+TH2F hdc1v1_wirenum_vs_resid 'HMS DC 1V1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1v1.wirenum H.dc.residual[3] 107 0.5 107.5 200 -1.0 1.0
+TH2F hdc1y2_wirenum_vs_resid 'HMS DC 1Y2 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1y2.wirenum H.dc.residual[4] 52  0.5  52.5 200 -1.0 1.0
+TH2F hdc1x2_wirenum_vs_resid 'HMS DC 1X2 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.1x2.wirenum H.dc.residual[5] 113 0.5 113.5 200 -1.0 1.0
+
+TH2F hdc2x1_wirenum_vs_resid 'HMS DC 2X1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2x1.wirenum H.dc.residual[6] 113 0.5 113.5 200 -1.0 1.0
+TH2F hdc2y1_wirenum_vs_resid 'HMS DC 2Y1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2y1.wirenum H.dc.residual[7] 52  0.5  52.5 200 -1.0 1.0
+TH2F hdc2u1_wirenum_vs_resid 'HMS DC 2U1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2u1.wirenum H.dc.residual[8] 107 0.5 107.5 200 -1.0 1.0
+TH2F hdc2v1_wirenum_vs_resid 'HMS DC 2V1 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2v1.wirenum H.dc.residual[9] 107 0.5 107.5 200 -1.0 1.0
+TH2F hdc2y2_wirenum_vs_resid 'HMS DC 2Y2 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2y2.wirenum H.dc.residual[10] 52  0.5  52.5 200 -1.0 1.0
+TH2F hdc2x2_wirenum_vs_resid 'HMS DC 2X2 Wire Number vs. Residuals; Wire Number; Residuals (mm)' H.dc.2x2.wirenum H.dc.residual[11] 113 0.5 113.5 200 -1.0 1.0
+
+TH2F hdc_xfp_vs_yxp 'HMS DC Xfp vs Yxp; Yfp (cm) / 1 cm; Xfp (cm) / 1 cm' H.dc.y H.dc.x 100 -50 50 100 -50 50
+TH2F hdc_xfpp_vs_yxpp 'HMS DC Xfpp vs Yxpp; Yfpp; Xfpp' H.dc.yp H.dc.xp 100 -1 1 100 -1 1
+
+# Hodoscopes (Positive/Left) 
+TH1F hhodo_1x_pos_adc_occu 'HMS Hodoscope 1X+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.1x.posAdcCounter 16 0.5 16.5
+TH1F hhodo_1y_pos_adc_occu 'HMS Hodoscope 1Y+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.1y.posAdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_pos_adc_occu 'HMS Hodoscope 2X+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.2x.posAdcCounter 16 0.5 16.5
+TH1F hhodo_2y_pos_adc_occu 'HMS Hodoscope 2Y+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.2y.posAdcCounter 10 0.5 10.5
+TH1F hhodo_1x_pos_tdc_occu 'HMS Hodoscope 1X+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.1x.posTdcCounter 16 0.5 16.5
+TH1F hhodo_1y_pos_tdc_occu 'HMS Hodoscope 1Y+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.1y.posTdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_pos_tdc_occu 'HMS Hodoscope 2X+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.2x.posTdcCounter 16 0.5 16.5
+TH1F hhodo_2y_pos_tdc_occu 'HMS Hodoscope 2Y+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.2y.posTdcCounter 10 0.5 10.5
+TH2F hhodo_1x_pos_ped_vs_pad 'HMS Hodoscope 1X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPed 16 0.5 16.5 1000 0 1000
+TH2F hhodo_1y_pos_ped_vs_pad 'HMS Hodoscope 1Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPed 10 0.5 10.5 1000 0 1000
+TH2F hhodo_2x_pos_ped_vs_pad 'HMS Hodoscope 2X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPed 16 0.5 16.5 1000 0 1000
+TH2F hhodo_2y_pos_ped_vs_pad 'HMS Hodoscope 2Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPed 10 0.5 10.5 1000 0 1000
+TH2F hhodo_1x_pos_pi_vs_pad 'HMS Hodoscope 1X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1x.GoodPaddle  H.hod.1x.GoodPosAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_1y_pos_pi_vs_pad 'HMS Hodoscope 1Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1y.GoodPaddle  H.hod.1y.GoodPosAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_2x_pos_pi_vs_pad 'HMS Hodoscope 2X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2x.GoodPaddle  H.hod.2x.GoodPosAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_2y_pos_pi_vs_pad 'HMS Hodoscope 2Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2y.GoodPaddle  H.hod.2y.GoodPosAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_1x_pos_pamp_vs_pad 'HMS Hodoscope 1X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.1x.GoodPaddle  H.hod.1x.GoodPosAdcPulseAmp 16 0.5 16.5 4100 0 4100
+TH2F hhodo_1y_pos_pamp_vs_pad 'HMS Hodoscope 1Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.1y.GoodPaddle  H.hod.1y.GoodPosAdcPulseAmp 10 0.5 10.5 4100 0 4100
+TH2F hhodo_2x_pos_pamp_vs_pad 'HMS Hodoscope 2X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.2x.GoodPaddle  H.hod.2x.GoodPosAdcPulseAmp 16 0.5 16.5 4100 0 4100
+TH2F hhodo_2y_pos_pamp_vs_pad 'HMS Hodoscope 2Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.2y.GoodPaddle  H.hod.2y.GoodPosAdcPulseAmp 10 0.5 10.5 4100 0 4100
+TH2F hhodo_1x_pos_tdc_time_vs_pad 'HMS Hodoscope 1X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.1x.GoodPaddle  H.hod.1x.GoodPosTdcChan 16 0.5 16.5 3500 -500 3000
+TH2F hhodo_1y_pos_tdc_time_vs_pad 'HMS Hodoscope 1Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.1y.GoodPaddle  H.hod.1y.GoodPosTdcChan 10 0.5 10.5 3500 -500 3000
+TH2F hhodo_2x_pos_tdc_time_vs_pad 'HMS Hodoscope 2X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.2x.GoodPaddle  H.hod.2x.GoodPosTdcChan 16 0.5 16.5 3500 -500 3000
+TH2F hhodo_2y_pos_tdc_time_vs_pad 'HMS Hodoscope 2Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.2y.GoodPaddle  H.hod.2y.GoodPosTdcChan 10 0.5 10.5 3500 -500 3000
+
+# Hodoscopes (Negative/Right)
+TH1F hhodo_1x_neg_adc_occu 'HMS Hodoscope 1X- ADC Occupancy; Paddle Number; Number of Hits' H.hod.1x.negAdcCounter 16 0.5 16.5
+TH1F hhodo_1y_neg_adc_occu 'HMS Hodoscope 1Y- ADC Occupancy; Paddle Number; Number of Hits' H.hod.1y.negAdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_neg_adc_occu 'HMS Hodoscope 2X- ADC Occupancy; Paddle Number; Number of Hits' H.hod.2x.negAdcCounter 16 0.5 16.5
+TH1F hhodo_2y_neg_adc_occu 'HMS Hodoscope 2Y- ADC Occupancy; Paddle Number; Number of Hits' H.hod.2y.negAdcCounter 10 0.5 10.5
+TH1F hhodo_1x_neg_tdc_occu 'HMS Hodoscope 1X- TDC Occupancy; Paddle Number; Number of Hits' H.hod.1x.negTdcCounter 16 0.5 16.5
+TH1F hhodo_1y_neg_tdc_occu 'HMS Hodoscope 1Y- TDC Occupancy; Paddle Number; Number of Hits' H.hod.1y.negTdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_neg_tdc_occu 'HMS Hodoscope 2X- TDC Occupancy; Paddle Number; Number of Hits' H.hod.2x.negTdcCounter 16 0.5 16.5
+TH1F hhodo_2y_neg_tdc_occu 'HMS Hodoscope 2Y- TDC Occupancy; Paddle Number; Number of Hits' H.hod.2y.negTdcCounter 10 0.5 10.5
+TH2F hhodo_1x_neg_ped_vs_pad 'HMS Hodoscope 1X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPed 16 0.5 16.5 1000 0 1000
+TH2F hhodo_1y_neg_ped_vs_pad 'HMS Hodoscope 1Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPed 10 0.5 10.5 1000 0 1000
+TH2F hhodo_2x_neg_ped_vs_pad 'HMS Hodoscope 2X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPed 16 0.5 16.5 1000 0 1000
+TH2F hhodo_2y_neg_ped_vs_pad 'HMS Hodoscope 2Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPed 10 0.5 10.5 1000 0 1000
+TH2F hhodo_1x_neg_pi_vs_pad 'HMS Hodoscope 1X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1x.GoodPaddle  H.hod.1x.GoodNegAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_1y_neg_pi_vs_pad 'HMS Hodoscope 1Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1y.GoodPaddle  H.hod.1y.GoodNegAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_2x_neg_pi_vs_pad 'HMS Hodoscope 2X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2x.GoodPaddle  H.hod.2x.GoodNegAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_2y_neg_pi_vs_pad 'HMS Hodoscope 2Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2y.GoodPaddle  H.hod.2y.GoodNegAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_1x_neg_pamp_vs_pad 'HMS Hodoscope 1X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.1x.GoodPaddle  H.hod.1x.GoodNegAdcPulseAmp 16 0.5 16.5 4100 0 4100
+TH2F hhodo_1y_neg_pamp_vs_pad 'HMS Hodoscope 1Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.1y.GoodPaddle  H.hod.1y.GoodNegAdcPulseAmp 10 0.5 10.5 4100 0 4100
+TH2F hhodo_2x_neg_pamp_vs_pad 'HMS Hodoscope 2X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.2x.GoodPaddle  H.hod.2x.GoodNegAdcPulseAmp 16 0.5 16.5 4100 0 4100
+TH2F hhodo_2y_neg_pamp_vs_pad 'HMS Hodoscope 2Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' H.hod.2y.GoodPaddle  H.hod.2y.GoodNegAdcPulseAmp 10 0.5 10.5 4100 0 4100
+TH2F hhodo_1x_neg_tdc_time_vs_pad 'HMS Hodoscope 1X- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.1x.GoodPaddle  H.hod.1x.GoodNegTdcChan 16 0.5 16.5 3500 -500 3000
+TH2F hhodo_1y_neg_tdc_time_vs_pad 'HMS Hodoscope 1Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.1y.GoodPaddle  H.hod.1y.GoodNegTdcChan 10 0.5 10.5 3500 -500 3000
+TH2F hhodo_2x_neg_tdc_time_vs_pad 'HMS Hodoscope 2X- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.2x.GoodPaddle  H.hod.2x.GoodNegTdcChan 16 0.5 16.5 3500 -500 3000
+TH2F hhodo_2y_neg_tdc_time_vs_pad 'HMS Hodoscope 2Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' H.hod.2y.GoodPaddle  H.hod.2y.GoodNegTdcChan 10 0.5 10.5 3500 -500 3000
+
+# Cherenkov
+TH1F hgcer_occu 'HMS Cherenkov ADC Occupancy; PMT Number; Number of ADC Hits' H.cer.adcCounter 2 0.5 2.5
+TH2F hgcer_ped_vs_cntr 'HMS Cherenkov Pulse Pedestal; PMT Number; Pulse Pedestal / 1 ADC Units' H.cer.adcCounter H.cer.adcPed 2 0.5 2.5 1000 0 1000
+TH2F hgcer_pi_vs_cntr 'HMS Cherenkov Pulse Integral; PMT Number; Pulse Pedestal / 10 ADC Units' H.cer.adcCounter H.cer.adcPulseInt 2 0.5 2.5 4000 0 40000
+TH2F hgcer_pamp_vs_cntr 'HMS Cherenkov Pulse Amplitude; PMT Number; Pulse Pedestal / 1 ADC Units' H.cer.adcCounter H.cer.adcPulseAmp 2 0.5 2.5 4100 0 4100
+
+#
+TH1F hgcer_pmt1_adc  'HMS Cherenkov PMT 1 ; ADC (chan) ; Counts' H.cer.adc_p[0] 1000 0. 100000. H.cer.adc_hit[0]==1
+TH1F hgcer_pmt2_adc  'HMS Cherenkov PMT 2 ; ADC (chan) ; Counts' H.cer.adc_p[1] 1000 0. 100000. H.cer.adc_hit[1]==1
+TH1F hgcer_pmt1_nphe 'HMS Cherenkov PMT 1 ; N_Phe ; Counts' H.cer.npe[0] 500 0. 100. H.cer.adc_hit[0]==1
+TH1F hgcer_pmt2_nphe 'HMS Cherenkov PMT 2 ; N_Phe ; Counts' H.cer.npe[1] 500 0. 100. H.cer.adc_hit[1]==1
+
+
+# Pre-Shower
+TH1F hcal_hA_pos_occu 'HMS hA+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.1pr.posAdcCounter 13 0.5 13.5
+TH2F hcal_hA_pos_ped_blk 'HMS hA+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hA_pos_pi_blk 'HMS hA+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hA_pos_pamp_blk 'HMS hA+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.1pr.posAdcCounter H.cal.1pr.posAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+TH1F hcal_hA_neg_occu 'HMS hA- ADC Occupancy; Block Number; Number of ADC Hits' H.cal.1pr.negAdcCounter 13 0.5 13.5
+TH2F hcal_hA_neg_ped_blk 'HMS hA- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hA_neg_pi_blk 'HMS hA- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hA_neg_pamp_blk 'HMS hA- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.1pr.negAdcCounter H.cal.1pr.negAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+TH1F hcal_hB_pos_occu 'HMS hB+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.2ta.posAdcCounter 13 0.5 13.5
+TH2F hcal_hB_pos_ped_blk 'HMS hB+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hB_pos_pi_blk 'HMS hB+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_pos_pamp_blk 'HMS hB+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.2ta.posAdcCounter H.cal.2ta.posAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+TH1F hcal_hB_neg_occu 'HMS hB- ADC Occupancy; Block Number; Number of ADC Hits' H.cal.2ta.negAdcCounter 13 0.5 13.5
+TH2F hcal_hB_neg_ped_blk 'HMS hB- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hB_neg_pi_blk 'HMS hB- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hB_neg_pamp_blk 'HMS hB- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.2ta.negAdcCounter H.cal.2ta.negAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+# Shower
+TH1F hcal_hC_occu 'HMS hC+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.3ta.posAdcCounter 13 0.5 13.5
+TH2F hcal_hC_ped_blk 'HMS hC+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hC_pi_blk 'HMS hC+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hC_pamp_blk 'HMS hC+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.3ta.posAdcCounter H.cal.3ta.posAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+TH1F hcal_hD_occu 'HMS hD+ ADC Occupancy; Block Number; Number of ADC Hits' H.cal.4ta.posAdcCounter 13 0.5 13.5
+TH2F hcal_hD_ped_blk 'HMS hD+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F hcal_hD_pi_blk 'HMS hD+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F hcal_hD_pamp_blk 'HMS hD+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Units' H.cal.4ta.posAdcCounter H.cal.4ta.posAdcPulseAmp 13 0.5 13.5 4100 0 4100
+
+# Trigger Apparatus
+TH1F htrig_hCERsum_pped 'HMS Cherenkov Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hCERSUM_adcPed 1000 0 1000
+TH1F htrig_hCERsum_pint 'HMS Cherenkov Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hCERSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hCERsum_pamp 'HMS Cherenkov Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hCERSUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hCERsum_tdc_time 'HMS Cherenkov Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hCERSUM_tdcTime 4000 0 4000
+
+TH1F htrig_hAsum_pped 'HMS hA Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hASUM_adcPed 1000 0 1000
+TH1F htrig_hAsum_pint 'HMS hA Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hASUM_adcPulseInt 4000 0 40000
+TH1F htrig_hAsum_pamp 'HMS hA Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hASUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hAsum_tdc_time 'HMS hA Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hASUM_tdcTime 4000 0 4000
+
+TH1F htrig_hBsum_pped 'HMS hB Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hBSUM_adcPed 1000 0 1000
+TH1F htrig_hBsum_pint 'HMS hB Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hBSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hBsum_pamp 'HMS hB Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hBSUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hBsum_tdc_time 'HMS hB Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hBSUM_tdcTime 4000 0 4000
+
+TH1F htrig_hCsum_pped 'HMS hC Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hCSUM_adcPed 1000 0 1000
+TH1F htrig_hCsum_pint 'HMS hC Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hCSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hCsum_pamp 'HMS hC Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hCSUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hCsum_tdc_time 'HMS hC Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hCSUM_tdcTime 4000 0 4000
+
+TH1F htrig_hDsum_pped 'HMS hD Sum Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Unit' T.hms.hDSUM_adcPed 1000 0 1000
+TH1F htrig_hDsum_pint 'HMS hD Sum Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.hms.hDSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hDsum_pamp 'HMS hD Sum Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Unit' T.hms.hDSUM_adcPulseAmp 4100 0 4100
+TH1F htrig_hDsum_tdc_time 'HMS hD Sum TDC Time; TDC Time (TDC Clicks); Number of Entries / 1 TDC Clicks' T.hms.hDSUM_tdcTime 4000 0 4000
+
+TH1F htrig_hpreShwr_adc_pped 'HMS Pre-Shower Sum Pulse Pedestal; Pulse Pedestal (ADC Units); Number of Entries / 1 ADC Units;' T.hms.hPSHWR_adcPed 1000 0 1000
+TH1F htrig_hpreShwr_adc_pint 'HMS Pre-Shower Sum Pulse Integral; Pulse Integral (ADC Units); Number of Entries / 10 ADC Units;' T.hms.hPSHWR_adcPulseInt 4000 0 40000
+TH1F htrig_hpreShwr_adc_pamp 'HMS Pre-Shower Sum Pulse Amplitude; Pulse Amplitude (ADC Units); Number of Entries / 1 ADC Units;' T.hms.hPSHWR_adcPulseAmp 4100 0 4100
+
+TH1F htrig_hshwr_adc_pped 'HMS Shower Pulse Pedestal; Pulse Pedestal (ADC Units); Number of Entries / 1 ADC Units;' T.hms.hSHWR_adcPed 1000 0 1000
+TH1F htrig_hshwr_adc_pint 'HMS Shower Pulse Integral; Pulse Integral (ADC Units); Number of Entries / 10 ADC Units;' T.hms.hSHWR_adcPulseInt 4000 0 40000
+TH1F htrig_hshwr_adc_pamp 'HMS Shower Pulse Amplitude; Pulse Amplitude (ADC Units); Number of Entries / 1 ADC Units;' T.hms.hSHWR_adcPulseAmp 4100 0 4100
+
+TH1F htrig_hpreShwrLow_tdc 'HMS Pre-Shower Low TDC Time; TDC Time (TDC Units); Number of Entries / 1 TDC Units;' T.hms.hPSHWRLO_tdcTime 4000 0 4000
+TH1F htrig_hpreShwrHigh_tdc 'HMS Pre-Shower High TDC Time; TDC Time (TDC Units); Number of Entries / 1 TDC Units;' T.hms.hPSHWRHI_tdcTime 4000 0 4000
+TH1F htrig_hshwr_tdc 'HMS Shower TDC Time; TDC Time (TDC Units); Number of Entries / 1 TDC Units;' T.hms.hSHWR_tdcTime 4000 0 4000
diff --git a/DEF-files/HMS/GEN/hstackana_report_cuts.def b/DEF-files/HMS/GEN/hstackana_report_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..535972d6ec8ba20ccf27b24dd404cf9e1f765942
--- /dev/null
+++ b/DEF-files/HMS/GEN/hstackana_report_cuts.def
@@ -0,0 +1,191 @@
+# Demo cuts for hodtest
+#
+
+Block: RawDecode
+
+Pedestal_event    g.evtyp==4
+scalar_event      g.evtyp==0
+HMS_event         g.evtyp==1
+SHMS_event         g.evtyp==1
+coin_event        g.evtyp==3
+misc_event        g.evtyp>=5
+hmscoin_event     g.evtyp==1||g.evtyp==3
+shmscoin_event     g.evtyp==2||g.evtyp==3
+all_event         g.evtyp==1||g.evtyp==2||g.evtyp==3
+RawDecode_master  1
+
+Block: Decode
+Decode_master     HMS_event
+
+Block: CoarseTracking
+CoarseTracking_master HMS_event
+
+all_trigs             g.evtyp==1 || g.evtyp==2 || g.evtyp==3
+hms_shms_trig          g.evtyp==1 || g.evtyp==2
+hms_coin_trig         g.evtyp==1 || g.evtyp==3
+
+cer_pmt1_good        H.cer.adc_hit[0]==1
+cer_pmt2_good        H.cer.adc_hit[1]==1
+
+
+hmsDC1Planes_large  (H.dc.1x1.nhit+H.dc.1y1.nhit+H.dc.1u1.nhit+H.dc.1v1.nhit+H.dc.1x2.nhit+H.dc.1y2.nhit) >20
+hmsDC2Planes_large  (H.dc.2x1.nhit+H.dc.2y1.nhit+H.dc.2u1.nhit+H.dc.2v1.nhit+H.dc.2x2.nhit+H.dc.2y2.nhit) >20
+
+hmsDC1_1hit_x1                H.dc.1x1.nhit == 1
+hmsDC1_1hit_y1                H.dc.1y1.nhit == 1
+hmsDC1_1hit_u1                H.dc.1u1.nhit == 1
+hmsDC1_1hit_v1                H.dc.1v1.nhit == 1
+hmsDC1_1hit_y2                H.dc.1y2.nhit == 1
+hmsDC1_1hit_x2                H.dc.1x2.nhit == 1
+
+hmsDC2_1hit_x1                H.dc.2x1.nhit == 1
+hmsDC2_1hit_y1                H.dc.2y1.nhit == 1
+hmsDC2_1hit_u1                H.dc.2u1.nhit == 1
+hmsDC2_1hit_v1                H.dc.2v1.nhit == 1
+hmsDC2_1hit_y2                H.dc.2y2.nhit == 1
+hmsDC2_1hit_x2                H.dc.2x2.nhit == 1
+
+h1hit1                H.dc.1x1.nhit >= 1
+h1hit2                H.dc.1y1.nhit >= 1
+h1hit3                H.dc.1u1.nhit >= 1
+h1hit4                H.dc.1v1.nhit >= 1
+h1hit5                H.dc.1y2.nhit >= 1
+h1hit6                H.dc.1x2.nhit >= 1
+
+h2hit1                H.dc.2x1.nhit >= 1
+h2hit2                H.dc.2y1.nhit >= 1
+h2hit3                H.dc.2u1.nhit >= 1
+h2hit4                H.dc.2v1.nhit >= 1
+h2hit5                H.dc.2y2.nhit >= 1
+h2hit6                H.dc.2x2.nhit >= 1
+
+hmsDC1Planes6hits   (H.dc.1x1.nhit+H.dc.1y1.nhit+H.dc.1u1.nhit+H.dc.1v1.nhit+H.dc.1x2.nhit+H.dc.1y2.nhit) ==6
+hmsDC2Planes6hits   (H.dc.2x1.nhit+H.dc.2y1.nhit+H.dc.2u1.nhit+H.dc.2v1.nhit+H.dc.2x2.nhit+H.dc.2y2.nhit )==6
+hmsDC1_5hits_x1     hmsDC1_1hit_y1&&hmsDC1_1hit_u1&&hmsDC1_1hit_v1&&hmsDC1_1hit_x2&&hmsDC1_1hit_y2
+hmsDC1_6hits_x1     h1hit1&&hmsDC1_1hit_y1&&hmsDC1_1hit_u1&&hmsDC1_1hit_v1&&hmsDC1_1hit_x2&&hmsDC1_1hit_y2
+hmsDC1_5hits_y1     hmsDC1_1hit_x1&&hmsDC1_1hit_u1&&hmsDC1_1hit_v1&&hmsDC1_1hit_x2&&hmsDC1_1hit_y2
+hmsDC1_6hits_y1     h1hit2&&hmsDC1_1hit_x1&&hmsDC1_1hit_u1&&hmsDC1_1hit_v1&&hmsDC1_1hit_x2&&hmsDC1_1hit_y2
+hmsDC1_5hits_u1     hmsDC1_1hit_x1&&hmsDC1_1hit_y1&&hmsDC1_1hit_v1&&hmsDC1_1hit_x2&&hmsDC1_1hit_y2
+hmsDC1_6hits_u1     h1hit3&&hmsDC1_1hit_x1&&hmsDC1_1hit_y1&&hmsDC1_1hit_v1&&hmsDC1_1hit_x2&&hmsDC1_1hit_y2
+hmsDC1_5hits_v1     hmsDC1_1hit_x1&&hmsDC1_1hit_y1&&hmsDC1_1hit_u1&&hmsDC1_1hit_x2&&hmsDC1_1hit_y2 
+hmsDC1_6hits_v1     h1hit4&&hmsDC1_1hit_x1&&hmsDC1_1hit_y1&&hmsDC1_1hit_u1&&hmsDC1_1hit_x2&&hmsDC1_1hit_y2
+hmsDC1_5hits_x2     hmsDC1_1hit_x1&&hmsDC1_1hit_y1&&hmsDC1_1hit_u1&&hmsDC1_1hit_v1&&hmsDC1_1hit_y2
+hmsDC1_6hits_x2     h1hit6&&hmsDC1_1hit_x1&&hmsDC1_1hit_y1&&hmsDC1_1hit_u1&&hmsDC1_1hit_v1&&hmsDC1_1hit_y2
+hmsDC1_5hits_y2     hmsDC1_1hit_x1&&hmsDC1_1hit_y1&&hmsDC1_1hit_u1&&hmsDC1_1hit_v1&&hmsDC1_1hit_x2
+hmsDC1_6hits_y2     h1hit5&&hmsDC1_1hit_x1&&hmsDC1_1hit_y1&&hmsDC1_1hit_u1&&hmsDC1_1hit_v1&&hmsDC1_1hit_x2
+
+hmsDC2_5hits_x1     hmsDC2_1hit_y1&&hmsDC2_1hit_u1&&hmsDC2_1hit_v1&&hmsDC2_1hit_x2&&hmsDC2_1hit_y2
+hmsDC2_6hits_x1     h2hit1&&hmsDC2_1hit_y1&&hmsDC2_1hit_u1&&hmsDC2_1hit_v1&&hmsDC2_1hit_x2&&hmsDC2_1hit_y2
+hmsDC2_5hits_y1     hmsDC2_1hit_x1&&hmsDC2_1hit_u1&&hmsDC2_1hit_v1&&hmsDC2_1hit_x2&&hmsDC2_1hit_y2
+hmsDC2_6hits_y1     h2hit2&&hmsDC2_1hit_x1&&hmsDC2_1hit_u1&&hmsDC2_1hit_v1&&hmsDC2_1hit_x2&&hmsDC2_1hit_y2
+hmsDC2_5hits_u1     hmsDC2_1hit_x1&&hmsDC2_1hit_y1&&hmsDC2_1hit_v1&&hmsDC2_1hit_x2&&hmsDC2_1hit_y2
+hmsDC2_6hits_u1     h2hit3&&hmsDC2_1hit_x1&&hmsDC2_1hit_y1&&hmsDC2_1hit_v1&&hmsDC2_1hit_x2&&hmsDC2_1hit_y2
+hmsDC2_5hits_v1     hmsDC2_1hit_x1&&hmsDC2_1hit_y1&&hmsDC2_1hit_u1&&hmsDC2_1hit_x2&&hmsDC2_1hit_y2 
+hmsDC2_6hits_v1     h2hit4&&hmsDC2_1hit_x1&&hmsDC2_1hit_y1&&hmsDC2_1hit_u1&&hmsDC2_1hit_x2&&hmsDC2_1hit_y2
+hmsDC2_5hits_x2     hmsDC2_1hit_x1&&hmsDC2_1hit_y1&&hmsDC2_1hit_u1&&hmsDC2_1hit_v1&&hmsDC2_1hit_y2
+hmsDC2_6hits_x2     h2hit6&&hmsDC2_1hit_x1&&hmsDC2_1hit_y1&&hmsDC2_1hit_u1&&hmsDC2_1hit_v1&&hmsDC2_1hit_y2
+hmsDC2_5hits_y2     hmsDC2_1hit_x1&&hmsDC2_1hit_y1&&hmsDC2_1hit_u1&&hmsDC2_1hit_v1&&hmsDC2_1hit_x2
+hmsDC2_6hits_y2     h2hit5&&hmsDC2_1hit_x1&&hmsDC2_1hit_y1&&hmsDC2_1hit_u1&&hmsDC2_1hit_v1&&hmsDC2_1hit_x2
+
+
+
+
+hms1HitsLt            H.dc.Ch1.nhit <= H.dc.Ch1.maxhits && g.evtyp==1
+hms2HitsLt            H.dc.Ch2.nhit <= H.dc.Ch2.maxhits && g.evtyp==1
+hmsHitsLt             H.dc.Ch1.nhit <= H.dc.Ch1.maxhits && H.dc.Ch2.nhit <= H.dc.Ch2.maxhits && g.evtyp==1
+hmsDC1PlanesGT        (h1hit1 + h1hit2 + h1hit3 + h1hit4 + h1hit5 + h1hit6 )>=5
+hmsDC2PlanesGT        (h2hit1 + h2hit2 + h2hit3 + h2hit4 + h2hit5 + h2hit6 )>=5
+hmsPlanesGT           hmsDC1PlanesGT && hmsDC2PlanesGT
+hmsHitsPlanes         (H.dc.Ch1.nhit <= H.dc.Ch1.maxhits) && (H.dc.Ch2.nhit <= H.dc.Ch2.maxhits) && hmsPlanesGT
+hSpacePoints          H.dc.Ch1.spacepoints >= 1 && H.dc.Ch2.spacepoints >=1
+hSpacePointsStub      H.dc.stubtest==1 && H.dc.Ch1.spacepoints >=1 && H.dc.Ch2.spacepoints >=1
+hFoundTrack           H.dc.ntrack>0 
+hStubLT               H.dc.stubtest==1
+f1HSpacePoints        hms1HitsLt && hmsDC1PlanesGT && H.dc.Ch1.spacepoints==0 && g.evtyp==1
+f2HSpacePoints        hms2HitsLt && hmsDC2PlanesGT && H.dc.Ch2.spacepoints==0 && g.evtyp==1
+hTest1                hmsHitsPlanes && (!hSpacePoints)
+hTest2                hSpacePoints && (!hStubLT)
+
+
+
+
+
+
+Block: CoarseReconstruct
+CoarseReconstruct_master HMS_event
+
+Block: Tracking
+Tracking_master  HMS_event
+
+Block: Reconstruct
+Reconstruct_master HMS_event
+
+HMSScinGood           H.hod.goodscinhit == 1
+
+HMSScinShould         HMSScinGood && H.cal.etotnorm > 0.7 && H.cer.npesum > 2.0
+HMSScinShoulde        HMSScinGood && H.cer.npesum > 2.0
+HMSScinShouldh        H.hod.goodscinhit == 1 && g.evtyp == 1
+
+HMSScinDid            HMSScinShould && H.dc.ntrack > 0
+HMSScinDide           HMSScinShoulde && H.dc.ntrack > 0
+HMSScinDidh           HMSScinShouldh && H.dc.ntrack > 0
+
+
+
+goodHDC1x1            H.dc.1x1.nhit > 0 && H.dc.1x1.nhit < 3
+goodHDC1y1            H.dc.1y1.nhit > 0 && H.dc.1y1.nhit < 3
+goodHDC1u1            H.dc.1u1.nhit > 0 && H.dc.1u1.nhit < 3
+goodHDC1v1            H.dc.1v1.nhit > 0 && H.dc.1v1.nhit < 3
+goodHDC1y2            H.dc.1y2.nhit > 0 && H.dc.1y2.nhit < 3
+goodHDC1x2            H.dc.1x2.nhit > 0 && H.dc.1x2.nhit < 3
+
+goodHDC2x1            H.dc.2x1.nhit > 0 && H.dc.2x1.nhit < 3
+goodHDC2y1            H.dc.2y1.nhit > 0 && H.dc.2y1.nhit < 3
+goodHDC2u1            H.dc.2u1.nhit > 0 && H.dc.2u1.nhit < 3
+goodHDC2v1            H.dc.2v1.nhit > 0 && H.dc.2v1.nhit < 3
+goodHDC2y2            H.dc.2y2.nhit > 0 && H.dc.2y2.nhit < 3
+goodHDC2x2            H.dc.2x2.nhit > 0 && H.dc.2x2.nhit < 3
+
+goodHDC1              goodHDC1x1  && goodHDC1y1 && goodHDC1u1 && goodHDC1v1 && goodHDC1y2 && goodHDC1x2 
+goodHDC2              goodHDC2x1  && goodHDC2y1 && goodHDC2u1 && goodHDC2v1 && goodHDC2y2 && goodHDC2x2 
+bothGood              goodHDC1 && goodHDC2
+
+realhdc1x1            goodHDC1x1 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc1y1            goodHDC1y1 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc1u1            goodHDC1u1 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc1v1            goodHDC1v1 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc1y2            goodHDC1y2 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc2x2            goodHDC1x2 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc2x1            goodHDC2x1 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc2y1            goodHDC2y1 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc2u1            goodHDC2u1 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc2v1            goodHDC2v1 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc2y2            goodHDC2y2 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+realhdc2x2            goodHDC2x2 && ((H.dc.Ch1.spacepoints+H.dc.Ch2.spacepoints)>0)
+
+hFound1Track          H.dc.ntrack == 1
+hFound2Track          H.dc.ntrack == 2
+hFound3Track          H.dc.ntrack == 3
+hFound4Track          H.dc.ntrack == 4
+
+hCleanTrack           H.gtr.index > -1
+1hCleanTrack          H.gtr.index == 0
+2hCleanTrack          H.gtr.index == 1
+3hCleanTrack          H.gtr.index == 2
+4hCleanTrack          H.gtr.index == 3
+
+anyhs1x               H.hod.1x.nhits > 0
+anyhs1y               H.hod.1y.nhits > 0
+anyhs2x               H.hod.2x.nhits > 0
+anyhs2y               H.hod.2y.nhits > 0
+
+goodhs1x              H.hod.1x.nhits > 0 && H.hod.1x.nhits < 3
+goodhs1y              H.hod.1y.nhits > 0 && H.hod.1y.nhits < 3
+goodhs1               goodhs1x && goodhs1y
+goodhs2x              H.hod.2x.nhits > 0 && H.hod.2x.nhits < 3
+goodhs2y              H.hod.2y.nhits > 0 && H.hod.2y.nhits < 3
+goodhs2               goodhs2x && goodhs2y
+goodhs1s2             goodhs1 && goodhs2
+
+Block: Physics
+Physics_master HMS_event
diff --git a/DEF-files/HMS/HODO/hhodoana.def b/DEF-files/HMS/HODO/hhodoana.def
new file mode 100644
index 0000000000000000000000000000000000000000..f6b7a4854e0b6fdb2b822a30aea7e4a60e1d9ea5
--- /dev/null
+++ b/DEF-files/HMS/HODO/hhodoana.def
@@ -0,0 +1,134 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block H.hod.*
+block T.hms.*
+
+TH1F hhodo_1x_multi 'HMS 1X Multiplicity; Number of Hits; Counts' H.hod.1x.nhits 16 0.5 16.5
+TH1F hhodo_1y_multi 'HMS 1Y Multiplicity; Number of Hits; Counts' H.hod.1y.nhits 10 0.5 10.5
+TH1F hhodo_2x_multi 'HMS 2X Multiplicity; Number of Hits; Counts' H.hod.2x.nhits 16 0.5 16.5
+TH1F hhodo_2y_multi 'HMS 2Y Multiplicity; Number of Hits; Counts' H.hod.2y.nhits 10 0.5 10.5
+
+TH1F hhodo_1x_pos_adc_occu 'HMS 1X+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.1x.posAdcCounter 16 0.5 16.5
+TH1F hhodo_1y_pos_adc_occu 'HMS 1Y+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.1y.posAdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_pos_adc_occu 'HMS 2X+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.2x.posAdcCounter 16 0.5 16.5
+TH1F hhodo_2y_pos_adc_occu 'HMS 2Y+ ADC Occupancy; Paddle Number; Number of Hits' H.hod.2y.posAdcCounter 10 0.5 10.5
+
+TH1F hhodo_1x_neg_adc_occu 'HMS 1X- ADC Occupancy; Paddle Number; Number of Hits' H.hod.1x.negAdcCounter 16 0.5 16.5
+TH1F hhodo_1y_neg_adc_occu 'HMS 1Y- ADC Occupancy; Paddle Number; Number of Hits' H.hod.1y.negAdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_neg_adc_occu 'HMS 2X- ADC Occupancy; Paddle Number; Number of Hits' H.hod.2x.negAdcCounter 16 0.5 16.5
+TH1F hhodo_2y_neg_adc_occu 'HMS 2Y- ADC Occupancy; Paddle Number; Number of Hits' H.hod.2y.negAdcCounter 10 0.5 10.5
+
+TH1F hhodo_1x_pos_tdc_occu 'HMS 1X+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.1x.posTdcCounter 16 0.5 16.5
+TH1F hhodo_1y_pos_tdc_occu 'HMS 1Y+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.1y.posTdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_pos_tdc_occu 'HMS 2X+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.2x.posTdcCounter 16 0.5 16.5
+TH1F hhodo_2y_pos_tdc_occu 'HMS 2Y+ TDC Occupancy; Paddle Number; Number of Hits' H.hod.2y.posTdcCounter 10 0.5 10.5
+
+TH1F hhodo_1x_neg_tdc_occu 'HMS 1X- TDC Occupancy; Paddle Number; Number of Hits' H.hod.1x.negTdcCounter 16 0.5 16.5
+TH1F hhodo_1y_neg_tdc_occu 'HMS 1Y- TDC Occupancy; Paddle Number; Number of Hits' H.hod.1y.negTdcCounter 10 0.5 10.5 
+TH1F hhodo_2x_neg_tdc_occu 'HMS 2X- TDC Occupancy; Paddle Number; Number of Hits' H.hod.2x.negTdcCounter 16 0.5 16.5
+TH1F hhodo_2y_neg_tdc_occu 'HMS 2Y- TDC Occupancy; Paddle Number; Number of Hits' H.hod.2y.negTdcCounter 10 0.5 10.5
+
+TH2F hhodo_1x_pos_rawped_vs_pad 'HMS 1X+ Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPedRaw 16 0.5 16.5 400 0 4000
+TH2F hhodo_1y_pos_rawped_vs_pad 'HMS 1Y+ Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPedRaw 10 0.5 10.5 400 0 4000
+TH2F hhodo_2x_pos_rawped_vs_pad 'HMS 2X+ Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPedRaw 16 0.5 16.5 400 0 4000
+TH2F hhodo_2y_pos_rawped_vs_pad 'HMS 2Y+ Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPedRaw 10 0.5 10.5 400 0 4000
+
+TH2F hhodo_1x_neg_rawped_vs_pad 'HMS 1X- Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPedRaw 16 0.5 16.5 400 0 4000
+TH2F hhodo_1y_neg_rawped_vs_pad 'HMS 1Y- Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPedRaw 10 0.5 10.5 400 0 4000
+TH2F hhodo_2x_neg_rawped_vs_pad 'HMS 2X- Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPedRaw 16 0.5 16.5 400 0 4000
+TH2F hhodo_2y_neg_rawped_vs_pad 'HMS 2Y- Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPedRaw 10 0.5 10.5 400 0 4000
+
+
+TH2F hhodo_1x_pos_rawpi_vs_pad 'HMS 1X+ Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPulseIntRaw 16 0.5 16.5 2000 0 20000
+TH2F hhodo_1y_pos_rawpi_vs_pad 'HMS 1Y+ Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPulseIntRaw 10 0.5 10.5 2000 0 20000
+TH2F hhodo_2x_pos_rawpi_vs_pad 'HMS 2X+ Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPulseIntRaw 16 0.5 16.5 2000 0 20000
+TH2F hhodo_2y_pos_rawpi_vs_pad 'HMS 2Y+ Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPulseIntRaw 10 0.5 10.5 2000 0 20000
+
+TH2F hhodo_1x_neg_rawpi_vs_pad 'HMS 1X- Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPulseIntRaw 16 0.5 16.5 2000 0 20000
+TH2F hhodo_1y_neg_rawpi_vs_pad 'HMS 1Y- Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPulseIntRaw 10 0.5 10.5 2000 0 20000
+TH2F hhodo_2x_neg_rawpi_vs_pad 'HMS 2X- Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPulseIntRaw 16 0.5 16.5 2000 0 20000
+TH2F hhodo_2y_neg_rawpi_vs_pad 'HMS 2Y- Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPulseIntRaw 10 0.5 10.5 2000 0 20000
+
+TH2F hhodo_1x_pos_rawpamp_vs_pad 'HMS 1X+ Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPulseAmpRaw 16 0.5 16.5 410 0 4100
+TH2F hhodo_1y_pos_rawpamp_vs_pad 'HMS 1Y+ Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPulseAmpRaw 10 0.5 10.5 410 0 4100
+TH2F hhodo_2x_pos_rawpamp_vs_pad 'HMS 2X+ Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPulseAmpRaw 16 0.5 16.5 410 0 4100
+TH2F hhodo_2y_pos_rawpamp_vs_pad 'HMS 2Y+ Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPulseAmpRaw 10 0.5 10.5 410 0 4100
+
+TH2F hhodo_1x_neg_rawpamp_vs_pad 'HMS 1X- Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPulseAmpRaw 16 0.5 16.5 410 0 4100
+TH2F hhodo_1y_neg_rawpamp_vs_pad 'HMS 1Y- Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPulseAmpRaw 10 0.5 10.5 410 0 4100
+TH2F hhodo_2x_neg_rawpamp_vs_pad 'HMS 2X- Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPulseAmpRaw 16 0.5 16.5 410 0 4100
+TH2F hhodo_2y_neg_rawpamp_vs_pad 'HMS 2Y- Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPulseAmpRaw 10 0.5 10.5 410 0 4100
+
+TH2F hhodo_1x_pos_rawptime_vs_pad 'HMS 1X+ Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPulseTimeRaw 16 0.5 16.5 410 0 4100
+TH2F hhodo_1y_pos_rawptime_vs_pad 'HMS 1Y+ Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPulseTimeRaw 10 0.5 10.5 410 0 4100
+TH2F hhodo_2x_pos_rawptime_vs_pad 'HMS 2X+ Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPulseTimeRaw 16 0.5 16.5 410 0 4100
+TH2F hhodo_2y_pos_rawptime_vs_pad 'HMS 2Y+ Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPulseTimeRaw 10 0.5 10.5 410 0 4100
+
+TH2F hhodo_1x_neg_rawptime_vs_pad 'HMS 1X- Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPulseTimeRaw 16 0.5 16.5 410 0 4100
+TH2F hhodo_1y_neg_rawptime_vs_pad 'HMS 1Y- Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPulseTimeRaw 10 0.5 10.5 410 0 4100
+TH2F hhodo_2x_neg_rawptime_vs_pad 'HMS 2X- Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPulseTimeRaw 16 0.5 16.5 410 0 4100
+TH2F hhodo_2y_neg_rawptime_vs_pad 'HMS 2Y- Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPulseTimeRaw 10 0.5 10.5 410 0 4100
+
+TH2F hhodo_1x_pos_raw_tdc_time_vs_pad 'HMS 1X+ Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' H.hod.1x.posTdcCounter  H.hod.1x.posTdcTimeRaw 16 0.5 16.5 800 0 8000
+TH2F hhodo_1y_pos_raw_tdc_time_vs_pad 'HMS 1Y+ Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' H.hod.1y.posTdcCounter  H.hod.1y.posTdcTimeRaw 10 0.5 10.5 800 0 8000
+TH2F hhodo_2x_pos_raw_tdc_time_vs_pad 'HMS 2X+ Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' H.hod.2x.posTdcCounter  H.hod.2x.posTdcTimeRaw 16 0.5 16.5 800 0 8000
+TH2F hhodo_2y_pos_raw_tdc_time_vs_pad 'HMS 2Y+ Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' H.hod.2y.posTdcCounter  H.hod.2y.posTdcTimeRaw 10 0.5 10.5 800 0 8000
+
+TH2F hhodo_1x_neg_raw_tdc_time_vs_pad 'HMS 1X- Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' H.hod.1x.negTdcCounter  H.hod.1x.negTdcTimeRaw 16 0.5 16.5 800 0 8000
+TH2F hhodo_1y_neg_raw_tdc_time_vs_pad 'HMS 1Y- Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' H.hod.1y.negTdcCounter  H.hod.1y.negTdcTimeRaw 10 0.5 10.5 800 0 8000
+TH2F hhodo_2x_neg_raw_tdc_time_vs_pad 'HMS 2X- Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' H.hod.2x.negTdcCounter  H.hod.2x.negTdcTimeRaw 16 0.5 16.5 800 0 8000
+TH2F hhodo_2y_neg_raw_tdc_time_vs_pad 'HMS 2Y- Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' H.hod.2y.negTdcCounter  H.hod.2y.negTdcTimeRaw 10 0.5 10.5 800 0 8000
+
+
+TH2F hhodo_1x_pos_pi_vs_pad 'HMS 1X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_1y_pos_pi_vs_pad 'HMS 1Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_2x_pos_pi_vs_pad 'HMS 2X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_2y_pos_pi_vs_pad 'HMS 2Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPulseInt 10 0.5 10.5 4000 0 40000
+
+TH2F hhodo_1x_neg_pi_vs_pad 'HMS 1X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_1y_neg_pi_vs_pad 'HMS 1Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPulseInt 10 0.5 10.5 4000 0 40000
+TH2F hhodo_2x_neg_pi_vs_pad 'HMS 2X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPulseInt 16 0.5 16.5 4000 0 40000
+TH2F hhodo_2y_neg_pi_vs_pad 'HMS 2Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPulseInt 10 0.5 10.5 4000 0 40000
+
+
+TH2F hhodo_1x_pos_ped_vs_pad 'HMS 1X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPed 16 0.5 16.5 100 0 1000
+TH2F hhodo_1y_pos_ped_vs_pad 'HMS 1Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPed 10 0.5 10.5 100 0 1000
+TH2F hhodo_2x_pos_ped_vs_pad 'HMS 2X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPed 16 0.5 16.5 100 0 1000
+TH2F hhodo_2y_pos_ped_vs_pad 'HMS 2Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPed 10 0.5 10.5 100 0 1000
+
+TH2F hhodo_1x_neg_ped_vs_pad 'HMS 1X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPed 16 0.5 16.5 100 0 1000
+TH2F hhodo_1y_neg_ped_vs_pad 'HMS 1Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPed 10 0.5 10.5 100 0 1000
+TH2F hhodo_2x_neg_ped_vs_pad 'HMS 2X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPed 16 0.5 16.5 100 0 1000
+TH2F hhodo_2y_neg_ped_vs_pad 'HMS 2Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPed 10 0.5 10.5 100 0 1000
+
+
+TH2F hhodo_1x_pos_pamp_vs_pad 'HMS 1X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' H.hod.1x.posAdcCounter  H.hod.1x.posAdcPulseAmp 16 0.5 16.5 410 0 4100
+TH2F hhodo_1y_pos_pamp_vs_pad 'HMS 1Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' H.hod.1y.posAdcCounter  H.hod.1y.posAdcPulseAmp 10 0.5 10.5 410 0 4100
+TH2F hhodo_2x_pos_pamp_vs_pad 'HMS 2X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' H.hod.2x.posAdcCounter  H.hod.2x.posAdcPulseAmp 16 0.5 16.5 410 0 4100
+TH2F hhodo_2y_pos_pamp_vs_pad 'HMS 2Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' H.hod.2y.posAdcCounter  H.hod.2y.posAdcPulseAmp 10 0.5 10.5 410 0 4100
+
+TH2F hhodo_1x_neg_pamp_vs_pad 'HMS 1X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' H.hod.1x.negAdcCounter  H.hod.1x.negAdcPulseAmp 16 0.5 16.5 410 0 4100
+TH2F hhodo_1y_neg_pamp_vs_pad 'HMS 1Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' H.hod.1y.negAdcCounter  H.hod.1y.negAdcPulseAmp 10 0.5 10.5 410 0 4100
+TH2F hhodo_2x_neg_pamp_vs_pad 'HMS 2X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' H.hod.2x.negAdcCounter  H.hod.2x.negAdcPulseAmp 16 0.5 16.5 410 0 4100
+TH2F hhodo_2y_neg_pamp_vs_pad 'HMS 2Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' H.hod.2y.negAdcCounter  H.hod.2y.negAdcPulseAmp 10 0.5 10.5 410 0 4100
+
+TH2F hhodo_1x_pos_tdc_time_vs_pad 'HMS 1X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' H.hod.1x.posTdcCounter  H.hod.1x.posTdcTime 16 0.5 16.5 200 -2000 0
+TH2F hhodo_1y_pos_tdc_time_vs_pad 'HMS 1Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' H.hod.1y.posTdcCounter  H.hod.1y.posTdcTime 10 0.5 10.5 200 -2000 0
+TH2F hhodo_2x_pos_tdc_time_vs_pad 'HMS 2X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' H.hod.2x.posTdcCounter  H.hod.2x.posTdcTime 16 0.5 16.5 200 -2000 0
+TH2F hhodo_2y_pos_tdc_time_vs_pad 'HMS 2Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' H.hod.2y.posTdcCounter  H.hod.2y.posTdcTime 10 0.5 10.5 200 -2000 0
+
+TH2F hhodo_1x_neg_tdc_time_vs_pad 'HMS 1X- TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' H.hod.1x.negTdcCounter  H.hod.1x.negTdcTime 16 0.5 16.5 200 -2000 0
+TH2F hhodo_1y_neg_tdc_time_vs_pad 'HMS 1Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' H.hod.1y.negTdcCounter  H.hod.1y.negTdcTime 10 0.5 10.5 200 -2000 0
+TH2F hhodo_2x_neg_tdc_time_vs_pad 'HMS 2X- TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' H.hod.2x.negTdcCounter  H.hod.2x.negTdcTime 16 0.5 16.5 200 -2000 0
+TH2F hhodo_2y_neg_tdc_time_vs_pad 'HMS 2Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' H.hod.2y.negTdcCounter  H.hod.2y.negTdcTime 10 0.5 10.5 200 -2000 0
+
+TH1F hbetanottrack 'HMS beta (no track)' H.hod.betanotrack 100 -1.2 1.2
+TH1F hstarttime ' HMS starttime' H.hod.starttime 500 0 50 
+TH1F hfptime   ' HMS Focal plane time (all hits) ' H.hod.fpHitsTime  500 0 50 
+TH1F hhodo_1x_fptime 'HMS 1X ; Focal plane time (ns); Counts' H.hod.1x.fptime 500 0 50
+TH1F hhodo_1y_fptime 'HMS 1Y ; Focal plane time (ns); Counts' H.hod.1y.fptime 500 0 50
+TH1F hhodo_2x_fptime 'HMS 2X ; Focal plane time (ns); Counts' H.hod.2x.fptime 500 0 50
+TH1F hhodo_2y_fptime 'HMS 2Y ; Focal plane time (ns); Counts' H.hod.2y.fptime 500 0 50
+
+
+
diff --git a/DEF-files/HMS/HODO/hhodoana_cuts.def b/DEF-files/HMS/HODO/hhodoana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/HMS/HODO/hhodoana_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/HMS/RASTER/hms_raster_simple.def b/DEF-files/HMS/RASTER/hms_raster_simple.def
new file mode 100644
index 0000000000000000000000000000000000000000..40b70735716483132670b68271e3b2581a992753
--- /dev/null
+++ b/DEF-files/HMS/RASTER/hms_raster_simple.def
@@ -0,0 +1,20 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block T.hms.*
+# Assume FADC range is set to 1V and the integration is 25 channels
+# Offset in the FADC is about 0.122V or 500 channels.
+formula FRXA_V T.hms.hFRXA_adcPulseIntRaw*(1./4096.)/25.
+formula FRXB_V T.hms.hFRXB_adcPulseIntRaw*(1./4096.)/25.
+formula FRYA_V T.hms.hFRYA_adcPulseIntRaw*(1./4096.)/25.
+formula FRYB_V T.hms.hFRYB_adcPulseIntRaw*(1./4096.)/25.
+TH1F hFRXA 'HMS FRXA; FRXA RAW ADC (chan); Counts' T.hms.hFRXA_adcPulseIntRaw 1000 0 100000
+TH1F hFRXA_V 'HMS FRXA; FRXA RAW ADC (Volts); Counts' FRXA_V 1000 0 1.0
+TH1F hFRXB 'HMS FRXB; FRXB RAW ADC (chan); Counts' T.hms.hFRXB_adcPulseIntRaw 1000 0 100000
+TH1F hFRXB_V 'HMS FRXB; FRXB RAW ADC (Volts); Counts' FRXB_V 1000 0 1.0
+TH1F hFRYA 'HMS FRYA; FRYA RAW ADC (chan); Counts' T.hms.hFRYA_adcPulseIntRaw 1000 0 100000
+TH1F hFRYA_V 'HMS FRYA; FRYA RAW ADC (Volts); Counts' FRYA_V 1000 0 1.0
+TH1F hFRYB 'HMS FRYB; FRYB RAW ADC (chan); Counts' T.hms.hFRYB_adcPulseIntRaw 1000 0 100000
+TH1F hFRYB_V 'HMS FRYB; FRYB RAW ADC (Volts); Counts' FRYB_V 1000 0 1.0
+TH2F hFRA_XvsY 'HMSFRA_XvsY ; FRXA RAW ADC (Volts); FRYA RAW ADC (Volts)' FRXA_V FRYA_V 1000 0 1.0 1000 0 1.0
+TH2F hFRB_XvsY 'HMSFRB_XvsY ; FRXB RAW ADC (Volts); FRYB RAW ADC (Volts)' FRXB_V FRYB_V 1000 0 1.0 1000 0 1.0
+
diff --git a/DEF-files/HMS/RASTER/hms_raster_simple_cuts.def b/DEF-files/HMS/RASTER/hms_raster_simple_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/HMS/RASTER/hms_raster_simple_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/HMS/TRIG/htrigana.def b/DEF-files/HMS/TRIG/htrigana.def
new file mode 100644
index 0000000000000000000000000000000000000000..0ee87d7837995bdd20b03114caa21bbb0392513f
--- /dev/null
+++ b/DEF-files/HMS/TRIG/htrigana.def
@@ -0,0 +1,115 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block T.hms.*
+
+TH1F htrig_h1x_tdc 'HMS h1X TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.h1X_tdcTimeRaw 1500 0 1500
+TH1F htrig_h1y_tdc 'HMS h1Y TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.h1Y_tdcTimeRaw 1500 0 1500
+TH1F htrig_h2x_tdc 'HMS h2X TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.h2X_tdcTimeRaw 1500 0 1500
+TH1F htrig_h2y_tdc 'HMS h2Y TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.h2Y_tdcTimeRaw 1500 0 1500
+
+TH1F htrig_h1T_tdc 'HMS h1X/h1Y Coincidence TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.h1T_tdcTimeRaw 1500 0 1500
+TH1F htrig_h2T_tdc 'HMS h2X/h2Y Coincidence TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.h2T_tdcTimeRaw 1500 0 1500
+
+TH1F htrig_hT1_tdc 'HMS h1X/h1Y/h2X/h2Y Coincidence TDC Time (Slot 2); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hT1_tdcTimeRaw 1500 0 1500
+TH1F htrig_hT2_tdc 'HMS h1X/h1Y/h2X/h2Y Coincidence TDC Time (Slot 20); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hT2_tdcTimeRaw 1500 0 1500
+
+TH1F htrig_hdc_ref1 'HMS HDC Reference Time 1; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hDCREF1_tdcTimeRaw 15000 0 15000
+TH1F htrig_hdc_ref2 'HMS HDC Reference Time 2; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hDCREF2_tdcTimeRaw 15000 0 15000
+TH1F htrig_hdc_ref3 'HMS HDC Reference Time 3; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hDCREF3_tdcTimeRaw 15000 0 15000
+TH1F htrig_hdc_ref4 'HMS HDC Reference Time 4; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hDCREF4_tdcTimeRaw 15000 0 15000
+
+TH1F htrig_hasum_adc_rawpped 'HMS hAsum Raw Pulse Pedestal; Raw Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hASUM_adcPedRaw 500 0 5000
+TH1F htrig_hasum_adc_rawpi 'HMS hAsum Raw Pulse Integral; Raw Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hASUM_adcPulseIntRaw 4000 0 40000
+TH1F htrig_hasum_adc_rawpamp 'HMS hAsum Raw Pulse Amplitude; Raw Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hASUM_adcPulseAmpRaw 410 0 4100
+TH1F htrig_hasum_adc_rawptime 'HMS hAsum Raw Pulse Time; Raw Pulse Time (ADC Units); Counts / 10 ADC Units;' T.hms.hASUM_adcPulseTimeRaw 2000 0 20000
+TH1F htrig_hasum_rawtdc 'HMS hAsum Raw TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hASUM_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_hasum_adc_pped 'HMS hAsum Pulse Pedestal;  Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hASUM_adcPed 500 0 5000
+TH1F htrig_hasum_adc_pi 'HMS hAsum Pulse Integral;  Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hASUM_adcPulseInt 4000 0 40000
+TH1F htrig_hasum_adc_pamp 'HMS hAsum Pulse Amplitude;  Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hASUM_adcPulseAmp 410 0 4100
+TH1F htrig_hasum_tdc 'HMS hAsum TDC Time;  TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hASUM_tdcTime 4000 0 40000
+
+TH1F htrig_hbsum_adc_rawpped 'HMS hBsum Raw Pulse Pedestal; Raw Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hBSUM_adcPedRaw 500 0 5000
+TH1F htrig_hbsum_adc_rawpi 'HMS hBsum Raw Pulse Integral; Raw Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hBSUM_adcPulseIntRaw 4000 0 40000
+TH1F htrig_hbsum_adc_rawpamp 'HMS hBsum Raw Pulse Amplitude; Raw Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hBSUM_adcPulseAmpRaw 410 0 4100
+TH1F htrig_hbsum_adc_rawptime 'HMS hBsum Raw Pulse Time; Raw Pulse Time (ADC Units); Counts / 10 ADC Units;' T.hms.hBSUM_adcPulseTimeRaw 2000 0 20000
+TH1F htrig_hbsum_rawtdc 'HMS hBsum Raw TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hBSUM_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_hbsum_adc_pped 'HMS hBsum Pulse Pedestal;  Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hBSUM_adcPed 500 0 5000
+TH1F htrig_hbsum_adc_pi 'HMS hBsum Pulse Integral;  Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hBSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hbsum_adc_pamp 'HMS hBsum Pulse Amplitude;  Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hBSUM_adcPulseAmp 410 0 4100
+TH1F htrig_hbsum_tdc 'HMS hBsum TDC Time;  TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hBSUM_tdcTime 4000 0 40000
+
+TH1F htrig_hcsum_adc_rawpped 'HMS hCsum Raw Pulse Pedestal; Raw Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hCSUM_adcPedRaw 500 0 5000
+TH1F htrig_hcsum_adc_rawpi 'HMS hCsum Raw Pulse Integral; Raw Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hCSUM_adcPulseIntRaw 4000 0 40000
+TH1F htrig_hcsum_adc_rawpamp 'HMS hCsum Raw Pulse Amplitude; Raw Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hCSUM_adcPulseAmpRaw 410 0 4100
+TH1F htrig_hcsum_adc_rawptime 'HMS hCsum Raw Pulse Time; Raw Pulse Time (ADC Units); Counts / 10 ADC Units;' T.hms.hCSUM_adcPulseTimeRaw 2000 0 20000
+TH1F htrig_hcsum_rawtdc 'HMS hCsum Raw TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hCSUM_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_hcsum_adc_pped 'HMS hCsum Pulse Pedestal;  Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hCSUM_adcPed 500 0 5000
+TH1F htrig_hcsum_adc_pi 'HMS hCsum Pulse Integral;  Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hCSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hcsum_adc_pamp 'HMS hCsum Pulse Amplitude;  Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hCSUM_adcPulseAmp 410 0 4100
+TH1F htrig_hcsum_tdc 'HMS hCsum TDC Time;  TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hCSUM_tdcTime 4000 0 40000
+
+TH1F htrig_hdsum_adc_rawpped 'HMS hDsum Raw Pulse Pedestal; Raw Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hDSUM_adcPedRaw 500 0 5000
+TH1F htrig_hdsum_adc_rawpi 'HMS hDsum Raw Pulse Integral; Raw Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hDSUM_adcPulseIntRaw 4000 0 40000
+TH1F htrig_hdsum_adc_rawpamp 'HMS hDsum Raw Pulse Amplitude; Raw Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hDSUM_adcPulseAmpRaw 410 0 4100
+TH1F htrig_hdsum_adc_rawptime 'HMS hDsum Raw Pulse Time; Raw Pulse Time (ADC Units); Counts / 10 ADC Units;' T.hms.hDSUM_adcPulseTimeRaw 2000 0 20000
+TH1F htrig_hdsum_rawtdc 'HMS hDsum Raw TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hDSUM_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_hdsum_adc_pped 'HMS hDsum Pulse Pedestal;  Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hDSUM_adcPed 500 0 5000
+TH1F htrig_hdsum_adc_pi 'HMS hDsum Pulse Integral;  Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hDSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hdsum_adc_pamp 'HMS hDsum Pulse Amplitude;  Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hDSUM_adcPulseAmp 410 0 4100
+TH1F htrig_hdsum_tdc 'HMS hDsum TDC Time;  TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hDSUM_tdcTime 4000 0 40000
+
+TH1F htrig_hpreShwr_adc_rawpped 'HMS Pre-Shower Raw Pulse Pedestal; Raw Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hPSHWR_adcPedRaw 500 0 5000
+TH1F htrig_hpreShwr_adc_rawpi 'HMS Pre-Shower Raw Pulse Integral; Raw Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hPSHWR_adcPulseIntRaw 4000 0 40000
+TH1F htrig_hpreShwr_adc_rawpamp 'HMS Pre-Shower Raw Pulse Amplitude; Raw Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hPSHWR_adcPulseAmpRaw 410 0 4100
+TH1F htrig_hpreShwr_adc_rawptime 'HMS Pre-Shower Raw Pulse Time; Raw Pulse Time (ADC Units); Counts / 10 ADC Units;' T.hms.hPSHWR_adcPulseTimeRaw 2000 0 20000
+TH1F htrig_hpreShwr_rawtdc 'HMS Pre-Shower Raw TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hPSHWR_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_hpreShwr_adc_pped 'HMS Pre-Shower Pulse Pedestal;  Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hPSHWR_adcPed 500 0 5000
+TH1F htrig_hpreShwr_adc_pi 'HMS Pre-Shower Pulse Integral;  Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hPSHWR_adcPulseInt 4000 0 40000
+TH1F htrig_hpreShwr_adc_pamp 'HMS Pre-Shower Pulse Amplitude;  Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hPSHWR_adcPulseAmp 410 0 4100
+TH1F htrig_hpreShwr_tdc 'HMS Pre-Shower TDC Time;  TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hPSHWR_tdcTime 4000 0 40000
+
+TH1F htrig_hpreShwrLow_tdc 'HMS hpreShwrLow TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hPSHWRLO_tdcTimeRaw 4000 0 40000
+TH1F htrig_hpreShwrHigh_tdc 'HMS hpreShwrHigh TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hPSHWRHI_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_hshwr_adc_rawpped 'HMS Shower Raw Pulse Pedestal; Raw Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hSHWR_adcPedRaw 500 0 5000
+TH1F htrig_hshwr_adc_rawpi 'HMS Shower Raw Pulse Integral; Raw Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hSHWR_adcPulseIntRaw 4000 0 40000
+TH1F htrig_hshwr_adc_rawpamp 'HMS Shower Raw Pulse Amplitude; Raw Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hSHWR_adcPulseAmpRaw 410 0 4100
+TH1F htrig_hshwr_adc_rawptime 'HMS Shower Raw Pulse Time; Raw Pulse Time (ADC Units); Counts / 10 ADC Units;' T.hms.hSHWR_adcPulseTimeRaw 2000 0 20000
+TH1F htrig_hshwr_rawtdc 'HMS Shower Raw TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hSHWR_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_hshwr_adc_pped 'HMS Shower Pulse Pedestal;  Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hSHWR_adcPed 500 0 5000
+TH1F htrig_hshwr_adc_pi 'HMS Shower Pulse Integral;  Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hSHWR_adcPulseInt 4000 0 40000
+TH1F htrig_hshwr_adc_pamp 'HMS Shower Pulse Amplitude;  Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hSHWR_adcPulseAmp 410 0 4100
+TH1F htrig_hshwr_tdc 'HMS Shower TDC Time;  TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hSHWR_tdcTime 4000 0 40000
+
+TH1F htrig_hcersum_adc_rawpped 'HMS Cherenkov Sum Raw Pulse Pedestal; Raw Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hCERSUM_adcPedRaw 500 0 5000
+TH1F htrig_hcersum_adc_rawpi 'HMS Cherenkov Sum Raw Pulse Integral; Raw Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hCERSUM_adcPulseIntRaw 4000 0 40000
+TH1F htrig_hcersum_adc_rawpamp 'HMS Cherenkov Sum Raw Pulse Amplitude; Raw Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hCERSUM_adcPulseAmpRaw 410 0 4100
+TH1F htrig_hcersum_adc_rawptime 'HMS Cherenkov Sum Raw Pulse Time; Raw Pulse Time (ADC Units); Counts / 10 ADC Units;' T.hms.hCERSUM_adcPulseTimeRaw 2000 0 20000
+TH1F htrig_hcersum_rawtdc 'HMS Cherenkov Sum Raw TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hCERSUM_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_hcersum_adc_pped 'HMS Cherenkov Sum Pulse Pedestal;  Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hCERSUM_adcPed 500 0 5000
+TH1F htrig_hcersum_adc_pi 'HMS Cherenkov Sum Pulse Integral;  Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hCERSUM_adcPulseInt 4000 0 40000
+TH1F htrig_hcersum_adc_pamp 'HMS Cherenkov Sum Pulse Amplitude;  Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hCERSUM_adcPulseAmp 410 0 4100
+TH1F htrig_hcersum_tdc 'HMS Cherenkov Sum TDC Time;  TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hCERSUM_tdcTime 4000 0 40000
+
+TH1F htrig_haersum_adc_rawpped 'HMS Aerogel Sum Raw Pulse Pedestal; Raw Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hAERSUM_adcPedRaw 500 0 5000
+TH1F htrig_haersum_adc_rawpi 'HMS Aerogel Sum Raw Pulse Integral; Raw Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hAERSUM_adcPulseIntRaw 4000 0 40000
+TH1F htrig_haersum_adc_rawpamp 'HMS Aerogel Sum Raw Pulse Amplitude; Raw Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hAERSUM_adcPulseAmpRaw 410 0 4100
+TH1F htrig_haersum_adc_rawptime 'HMS Aerogel Sum Raw Pulse Time; Raw Pulse Time (ADC Units); Counts / 10 ADC Units;' T.hms.hAERSUM_adcPulseTimeRaw 2000 0 20000
+TH1F htrig_haersum_rawtdc 'HMS Aerogel Sum Raw TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hAERSUM_tdcTimeRaw 4000 0 40000
+
+TH1F htrig_haersum_adc_pped 'HMS Aerogel Sum Pulse Pedestal;  Pulse Pedestal (ADC Units); Counts / 10 ADC Units;' T.hms.hAERSUM_adcPed 500 0 5000
+TH1F htrig_haersum_adc_pi 'HMS Aerogel Sum Pulse Integral;  Pulse Integral (ADC Units); Counts / 10 ADC Units;' T.hms.hAERSUM_adcPulseInt 4000 0 40000
+TH1F htrig_haersum_adc_pamp 'HMS Aerogel Sum Pulse Amplitude;  Pulse Amplitude (ADC Units); Counts / 10 ADC Units;' T.hms.hAERSUM_adcPulseAmp 410 0 4100
+TH1F htrig_haersum_tdc 'HMS Aerogel Sum TDC Time;  TDC Time (TDC Units); Counts / 10 TDC Units;' T.hms.hAERSUM_tdcTime 4000 0 40000
+
+
+
+
+
diff --git a/DEF-files/HMS/TRIG/htrigana_cuts.def b/DEF-files/HMS/TRIG/htrigana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/HMS/TRIG/htrigana_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/SHMS/AERO/paeroana.def b/DEF-files/SHMS/AERO/paeroana.def
new file mode 100644
index 0000000000000000000000000000000000000000..9cff8d08cc4cf1e803e7bbff3c1cb9d170298b88
--- /dev/null
+++ b/DEF-files/SHMS/AERO/paeroana.def
@@ -0,0 +1,25 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block P.aero.*
+block T.shms.*
+
+TH1F paero_neg_occu 'SHMS Aero- Occupancy; Counter Number; Number of Entries' P.aero.negAdcCounter 7 0.5 7.5
+TH1F paero_pos_occu 'SHMS Aero+ Occupancy; Counter Number; Number of Entries' P.aero.posAdcCounter 7 0.5 7.5
+
+TH2F paero_neg_rawped_vs_cntr 'SHMS Aero- Raw Pulse Pedestal vs. Counter Number; Counter Number; Raw Pulse Pedestal / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPedRaw 7 0.5 7.5 1000 0 10000
+TH2F paero_neg_rawpi_vs_cntr 'SHMS Aero- Raw Pulse Integral vs. Counter Number; Counter Number; Raw Pulse Integral / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPulseIntRaw 7 0.5 7.5 4000 0 40000
+TH2F paero_neg_rawamp_vs_cntr 'SHMS Aero- Raw Pulse Amplitude vs. Counter Number; Counter Number; Raw Pulse Amplitude / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPulseAmpRaw 7 0.5 7.5 410 0 4100
+TH2F paero_neg_rawptime_vs_cntr 'SHMS Aero- Raw Pulse Time vs. Counter Number; Counter Number;  Raw Pulse Time / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPulseTimeRaw 7 0.5 7.5 1000 0 10000
+
+TH2F paero_pos_rawped_vs_cntr 'SHMS Aero+ Raw Pulse Pedestal vs. Counter Number; Counter Number; Raw Pulse Pedestal / 10 ADC Units' P.aero.posAdcCounter P.aero.posAdcPedRaw 7 0.5 7.5 1000 0 10000
+TH2F paero_pos_rawpi_vs_cntr 'SHMS Aero+ Raw Pulse Integral vs. Counter Number; Counter Number; Raw Pulse Integral / 10 ADC Units' P.aero.posAdcCounter P.aero.posAdcPulseIntRaw 7 0.5 7.5 4000 0 40000
+TH2F paero_pos_rawamp_vs_cntr 'SHMS Aero+ Raw Pulse Amplitude vs. Counter Number; Counter Number; Raw Pulse Amplitude / 10 ADC Units' P.aero.posAdcCounter P.aero.posAdcPulseAmpRaw 7 0.5 7.5 410 0 4100
+TH2F paero_pos_rawptime_vs_cntr 'SHMS Aero+ Raw Pulse Time vs. Counter Number; Counter Number;  Raw Pulse Time / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPulseTimeRaw 7 0.5 7.5 1000 0 10000
+
+TH2F paero_neg_ped_vs_cntr 'SHMS Aero- Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPed 7 0.5 7.5 1000 0 10000
+TH2F paero_neg_pi_vs_cntr 'SHMS Aero- Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPulseInt 7 0.5 7.5 4000 0 40000
+TH2F paero_neg_amp_vs_cntr 'SHMS Aero- Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPulseAmp 7 0.5 7.5 410 0 4100
+
+TH2F paero_pos_ped_vs_cntr 'SHMS Aero+ Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 10 ADC Units' P.aero.posAdcCounter P.aero.posAdcPed 7 0.5 7.5 1000 0 10000
+TH2F paero_pos_pi_vs_cntr 'SHMS Aero+ Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.aero.posAdcCounter P.aero.posAdcPulseInt 7 0.5 7.5 4000 0 40000
+TH2F paero_pos_amp_vs_cntr 'SHMS Aero+ Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 10 ADC Units' P.aero.posAdcCounter P.aero.posAdcPulseAmp 7 0.5 7.5 410 0 4100
diff --git a/DEF-files/SHMS/AERO/paeroana_cuts.def b/DEF-files/SHMS/AERO/paeroana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..5add84a3159e6f172fdc03285b01e56eac648310
--- /dev/null
+++ b/DEF-files/SHMS/AERO/paeroana_cuts.def
@@ -0,0 +1,14 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
+
diff --git a/DEF-files/SHMS/CAL/pcalana.def b/DEF-files/SHMS/CAL/pcalana.def
new file mode 100644
index 0000000000000000000000000000000000000000..b2d2fb78a327123ef32618576f7beda706c7c3b5
--- /dev/null
+++ b/DEF-files/SHMS/CAL/pcalana.def
@@ -0,0 +1,34 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block P.cal.*
+
+TH1F pcal_prshwr_neg_occu 'SHMS Preshower- Occupancy; Block Number; Number of Entries' P.cal.pr.negAdcCounter 14 0.5 14.5
+TH1F pcal_prshwr_pos_occu 'SHMS Preshower+ Occupancy; Block Number; Number of Entries' P.cal.pr.posAdcCounter 14 0.5 14.5
+TH1F pcal_shwr_occu 'SHMS Shower Occupancy; Block Number; Number of Entries' P.cal.fly.adcCounter 224 0.5 224.5
+
+TH2F pcal_prshwr_neg_rawped_blk 'SHMS Preshower- Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPedRaw 14 0.5 14.5 400 0 4000
+TH2F pcal_prshwr_neg_rawpi_blk 'SHMS Preshower- Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseIntRaw 14 0.5 14.5 4000 0 40000
+TH2F pcal_prshwr_neg_rawamp_blk 'SHMS Preshower- Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseAmpRaw 14 0.5 14.5 410 0 4100 
+TH2F pcal_prshwr_neg_rawptime_blk 'SHMS Preshower- Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseTimeRaw 14 0.5 14.5 4000 0 40000
+
+TH2F pcal_prshwr_pos_rawped_blk 'SHMS Preshower+ Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPedRaw 14 0.5 14.5 400 0 4000
+TH2F pcal_prshwr_pos_rawpi_blk 'SHMS Preshower+ Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseIntRaw 14 0.5 14.5 4000 0 40000
+TH2F pcal_prshwr_pos_rawamp_blk 'SHMS Preshower+ Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseAmpRaw 14 0.5 14.5 410 0 4100 
+TH2F pcal_prshwr_pos_rawptime_blk 'SHMS Preshower+ Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseTimeRaw 14 0.5 14.5 4000 0 40000
+
+TH2F pcal_pshwr_neg_ped_blk 'SHMS Preshower- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPed 14 0.5 14.5 400 0 4000
+TH2F pcal_prshwr_neg_pi_blk 'SHMS Preshower- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F pcal_prshwr_neg_amp_blk 'SHMS Preshower- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseAmp 14 0.5 14.5 410 0 4100 
+
+TH2F pcal_prshwr_pos_ped_blk 'SHMS Preshower+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPed 14 0.5 14.5 400 0 4000
+TH2F pcal_prshwr_pos_pi_blk 'SHMS Preshower+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F pcal_prshwr_pos_amp_blk 'SHMS Preshower+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseAmp 14 0.5 14.5 410 0 4100
+
+TH2F pcal_shwr_rawped_blk 'SHMS Shower Raw Pulse Pedestal vs. Block Number; Block Number; Raw Pulse Pedestal / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPedRaw 224 0.5 224.5 400 0 4000
+TH2F pcal_shwr_rawpi_blk 'SHMS Shower Raw Pulse Integral vs. Block Number; Block Number; Raw Pulse Integral / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPulseIntRaw 224 0.5 224.5 4000 0 40000
+TH2F pcal_shwr_rawamp_blk 'SHMS Shower Raw Pulse Amplitude vs. Block Number; Block Number; Raw Pulse Amplitude / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPulseAmpRaw 224 0.5 224.5 410 0 4100 
+TH2F pcal_shwr_rawptime_blk 'SHMS Shower Raw Pulse Time vs. Block Number; Block Number; Raw Pulse Time / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPulseTimeRaw 224 0.5 224.5 4000 0 40000
+
+TH2F pcal_shwr_ped_blk 'SHMS Shower Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPed 224 0.5 224.5 400 0 4000
+TH2F pcal_shwr_pi_blk 'SHMS Shower Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPulseInt 224 0.5 224.5 4000 0 40000
+TH2F pcal_shwr_amp_blk 'SHMS Shower Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPulseAmp 224 0.5 224.5 410 0 4100 
\ No newline at end of file
diff --git a/DEF-files/SHMS/CAL/pcalana_cuts.def b/DEF-files/SHMS/CAL/pcalana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/SHMS/CAL/pcalana_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/SHMS/DC/pdcana.def b/DEF-files/SHMS/DC/pdcana.def
index e08edbfb4effc82d7fa5b741c49017a1d59d89aa..8488e1b4b2700e3dacba2449f060d1a1f9ed74c7 100644
--- a/DEF-files/SHMS/DC/pdcana.def
+++ b/DEF-files/SHMS/DC/pdcana.def
@@ -2,62 +2,78 @@
 #
 block P.dc.*
 
-TH1F pdc1u1_wm 'PDC 1U1 Wiremap' P.dc.1u1.wirenum 107 0.5 107.5
-TH1F pdc1u2_wm 'PDC 1U2 Wiremap' P.dc.1u2.wirenum 107 0.5 107.5
-TH1F pdc1x1_wm 'PDC 1X1 Wiremap' P.dc.1x1.wirenum  79 0.5  79.5
-TH1F pdc1x2_wm 'PDC 1X2 Wiremap' P.dc.1x2.wirenum  79 0.5  79.5
-TH1F pdc1v1_wm 'PDC 1V1 Wiremap' P.dc.1v1.wirenum 107 0.5 107.5
-TH1F pdc1v2_wm 'PDC 1V2 Wiremap' P.dc.1v2.wirenum 107 0.5 107.5
-
-TH1F pdc2v2_wm 'PDC 2V2 Wiremap' P.dc.2v2.wirenum 107 0.5 107.5
-TH1F pdc2v1_wm 'PDC 2V1 Wiremap' P.dc.2v1.wirenum 107 0.5 107.5
-TH1F pdc2x2_wm 'PDC 2X2 Wiremap' P.dc.2x2.wirenum  79 0.5  79.5
-TH1F pdc2x1_wm 'PDC 2X1 Wiremap' P.dc.2x1.wirenum  79 0.5  79.5
-TH1F pdc2u2_wm 'PDC 2U2 Wiremap' P.dc.2u2.wirenum 107 0.5 107.5
-TH1F pdc2u2_wm 'PDC 2U1 Wiremap' P.dc.2u1.wirenum 107 0.5 107.5
-
-TH2F pdc1u1_wire_num_vs_raw_tdc 'PDC 1U1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1u1.wirenum P.dc.1u1.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F pdc1u2_wire_num_vs_raw_tdc 'PDC 1U2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1u2.wirenum P.dc.1u2.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F pdc1x1_wire_num_vs_raw_tdc 'PDC 1X1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1x1.wirenum P.dc.1x1.rawtdc  79 0.5  79.5 5000 0 50000
-TH2F pdc1x2_wire_num_vs_raw_tdc 'PDC 1X2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1x2.wirenum P.dc.1x2.rawtdc  79 0.5  79.5 5000 0 50000
-TH2F pdc1v1_wire_num_vs_raw_tdc 'PDC 1V1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1v1.wirenum P.dc.1v1.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F pdc1v2_wire_num_vs_raw_tdc 'PDC 1V2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1v2.wirenum P.dc.1v2.rawtdc 107 0.5 107.5 5000 0 50000
-
-TH2F pdc2v2_wire_num_vs_raw_tdc 'PDC 2V2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2v2.wirenum P.dc.2v2.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F pdc2v1_wire_num_vs_raw_tdc 'PDC 2V1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2v1.wirenum P.dc.2v1.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F pdc2x2_wire_num_vs_raw_tdc 'PDC 2X2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2x2.wirenum P.dc.2x2.rawtdc  79 0.5  79.5 5000 0 50000
-TH2F pdc2x1_wire_num_vs_raw_tdc 'PDC 2X1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2x1.wirenum P.dc.2x1.rawtdc  79 0.5  79.5 5000 0 50000
-TH2F pdc2u2_wire_num_vs_raw_tdc 'PDC 2U2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2u2.wirenum P.dc.2u2.rawtdc 107 0.5 107.5 5000 0 50000
-TH2F pdc2u1_wire_num_vs_raw_tdc 'PDC 2U1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2u1.wirenum P.dc.2u1.rawtdc 107 0.5 107.5 5000 0 50000
-
-TH2F pdc1u1_wire_num_vs_tdc_time 'PDC 1U1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.1u1.wirenum P.dc.1u1.time 107 0.5 107.5 6000 -1000 5000
-TH2F pdc1u2_wire_num_vs_tdc_time 'PDC 1U2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.1u2.wirenum P.dc.1u2.time 107 0.5 107.5 6000 -1000 5000
-TH2F pdc1x1_wire_num_vs_tdc_time 'PDC 1X1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.1x1.wirenum P.dc.1x1.time  79 0.5  79.5 6000 -1000 5000
-TH2F pdc1x2_wire_num_vs_tdc_time 'PDC 1X2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.1x2.wirenum P.dc.1x2.time  79 0.5  79.5 6000 -1000 5000
-TH2F pdc1v1_wire_num_vs_tdc_time 'PDC 1V1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.1v1.wirenum P.dc.1v1.time 107 0.5 107.5 6000 -1000 5000
-TH2F pdc1v2_wire_num_vs_tdc_time 'PDC 1V2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.1v2.wirenum P.dc.1v2.time 107 0.5 107.5 6000 -1000 5000
-
-TH2F pdc2v2_wire_num_vs_tdc_time 'PDC 2V2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.2v2.wirenum P.dc.2v2.time 107 0.5 107.5 6000 -1000 5000
-TH2F pdc2v1_wire_num_vs_tdc_time 'PDC 2V1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.2v1.wirenum P.dc.2v1.time 107 0.5 107.5 6000 -1000 5000
-TH2F pdc2x2_wire_num_vs_tdc_time 'PDC 2X2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.2x2.wirenum P.dc.2x2.time  79 0.5  79.5 6000 -1000 5000
-TH2F pdc2x1_wire_num_vs_tdc_time 'PDC 2X1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.2x1.wirenum P.dc.2x1.time  79 0.5  79.5 6000 -1000 5000
-TH2F pdc2u2_wire_num_vs_tdc_time 'PDC 2U2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.2u2.wirenum P.dc.2u2.time 107 0.5 107.5 6000 -1000 5000
-TH2F pdc2u1_wire_num_vs_tdc_time 'PDC 2U1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (ns)' P.dc.2u1.wirenum P.dc.2u1.time 107 0.5 107.5 6000 -1000 5000
-
-TH2F pdc1u1_wire_num_vs_ddist 'PDC 1U1 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.1u1.wirenum P.dc.1u1.dist 107 0.5 107.5 300 -0.1 0.6
-TH2F pdc1u2_wire_num_vs_ddist 'PDC 1U2 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.1u2.wirenum P.dc.1u2.dist 107 0.5 107.5 300 -0.1 0.6
-TH2F pdc1x1_wire_num_vs_ddist 'PDC 1X1 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.1x1.wirenum P.dc.1x1.dist  79 0.5  79.5 300 -0.1 0.6
-TH2F pdc1x2_wire_num_vs_ddist 'PDC 1X2 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.1x2.wirenum P.dc.1x2.dist  79 0.5  79.5 300 -0.1 0.6
-TH2F pdc1v1_wire_num_vs_ddist 'PDC 1V1 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.1v1.wirenum P.dc.1v1.dist 107 0.5 107.5 300 -0.1 0.6
-TH2F pdc1v2_wire_num_vs_ddist 'PDC 1V2 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.1v2.wirenum P.dc.1v2.dist 107 0.5 107.5 300 -0.1 0.6
-
-TH2F pdc2u2_wire_num_vs_ddist 'PDC 2U2 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.2u2.wirenum P.dc.2u2.dist 107 0.5 107.5 300 -0.1 0.6
-TH2F pdc2u1_wire_num_vs_ddist 'PDC 2U1 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.2u1.wirenum P.dc.2u1.dist 107 0.5 107.5 300 -0.1 0.6
-TH2F pdc2x2_wire_num_vs_ddist 'PDC 2X2 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.2x2.wirenum P.dc.2x2.dist  79 0.5  79.5 300 -0.1 0.6
-TH2F pdc2x1_wire_num_vs_ddist 'PDC 2X1 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.2x1.wirenum P.dc.2x1.dist  79 0.5  79.5 300 -0.1 0.6
-TH2F pdc2v2_wire_num_vs_ddist 'PDC 2V2 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.2v2.wirenum P.dc.2v2.dist 107 0.5 107.5 300 -0.1 0.6
-TH2F pdc2v1_wire_num_vs_ddist 'PDC 2V1 Wiremap vs. Raw TDC; Wire Number; Drift Distance (cm)' P.dc.2v1.wirenum P.dc.2v1.dist 107 0.5 107.5 300 -0.1 0.6
+TH1F pdc1u1_wirenum 'SHMS DC 1U1 Wiremap; Wire Number; Number of Entries' P.dc.1u1.wirenum 107 0.5 107.5
+TH1F pdc1u2_wirenum 'SHMS DC 1U2 Wiremap; Wire Number; Number of Entries' P.dc.1u2.wirenum 107 0.5 107.5
+TH1F pdc1x1_wirenum 'SHMS DC 1X1 Wiremap; Wire Number; Number of Entries' P.dc.1x1.wirenum  79 0.5  79.5
+TH1F pdc1x2_wirenum 'SHMS DC 1X2 Wiremap; Wire Number; Number of Entries' P.dc.1x2.wirenum  79 0.5  79.5
+TH1F pdc1v1_wirenum 'SHMS DC 1V1 Wiremap; Wire Number; Number of Entries' P.dc.1v1.wirenum 107 0.5 107.5
+TH1F pdc1v2_wirenum 'SHMS DC 1V2 Wiremap; Wire Number; Number of Entries' P.dc.1v2.wirenum 107 0.5 107.5
 
+TH1F pdc2v2_wirenum 'SHMS DC 2V2 Wiremap; Wire Number; Number of Entries' P.dc.2v2.wirenum 107 0.5 107.5
+TH1F pdc2v1_wirenum 'SHMS DC 2V1 Wiremap; Wire Number; Number of Entries' P.dc.2v1.wirenum 107 0.5 107.5
+TH1F pdc2x2_wirenum 'SHMS DC 2X2 Wiremap; Wire Number; Number of Entries' P.dc.2x2.wirenum  79 0.5  79.5
+TH1F pdc2x1_wirenum 'SHMS DC 2X1 Wiremap; Wire Number; Number of Entries' P.dc.2x1.wirenum  79 0.5  79.5
+TH1F pdc2u2_wirenum 'SHMS DC 2U2 Wiremap; Wire Number; Number of Entries' P.dc.2u2.wirenum 107 0.5 107.5
+TH1F pdc2u1_wirenum 'SHMS DC 2U1 Wiremap; Wire Number; Number of Entries' P.dc.2u1.wirenum 107 0.5 107.5
+
+TH2F pdc1u1_wirenum_vs_raw_tdc 'PDC 1U1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1u1.wirenum P.dc.1u1.rawtdc 107 0.5 107.5 5000 -25000 25000
+TH2F pdc1u2_wirenum_vs_raw_tdc 'PDC 1U2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1u2.wirenum P.dc.1u2.rawtdc 107 0.5 107.5 5000 -25000 25000
+TH2F pdc1x1_wirenum_vs_raw_tdc 'PDC 1X1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1x1.wirenum P.dc.1x1.rawtdc  79 0.5  79.5 5000 -25000 25000
+TH2F pdc1x2_wirenum_vs_raw_tdc 'PDC 1X2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1x2.wirenum P.dc.1x2.rawtdc  79 0.5  79.5 5000 -25000 25000
+TH2F pdc1v1_wirenum_vs_raw_tdc 'PDC 1V1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1v1.wirenum P.dc.1v1.rawtdc 107 0.5 107.5 5000 -25000 25000
+TH2F pdc1v2_wirenum_vs_raw_tdc 'PDC 1V2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.1v2.wirenum P.dc.1v2.rawtdc 107 0.5 107.5 5000 -25000 25000
+
+TH2F pdc2v2_wirenum_vs_raw_tdc 'PDC 2V2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2v2.wirenum P.dc.2v2.rawtdc 107 0.5 107.5 5000 -25000 25000
+TH2F pdc2v1_wirenum_vs_raw_tdc 'PDC 2V1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2v1.wirenum P.dc.2v1.rawtdc 107 0.5 107.5 5000 -25000 25000
+TH2F pdc2x2_wirenum_vs_raw_tdc 'PDC 2X2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2x2.wirenum P.dc.2x2.rawtdc  79 0.5  79.5 5000 -25000 25000
+TH2F pdc2x1_wirenum_vs_raw_tdc 'PDC 2X1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2x1.wirenum P.dc.2x1.rawtdc  79 0.5  79.5 5000 -25000 25000
+TH2F pdc2u2_wirenum_vs_raw_tdc 'PDC 2U2 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2u2.wirenum P.dc.2u2.rawtdc 107 0.5 107.5 5000 -25000 25000
+TH2F pdc2u1_wirenum_vs_raw_tdc 'PDC 2U1 Wiremap vs. Raw TDC; Wire Number; Raw TDC Value (clicks)' P.dc.2u1.wirenum P.dc.2u1.rawtdc 107 0.5 107.5 5000 -25000 25000
+
+TH2F pdc1u1_wirenum_vs_tdc 'SHMS DC 1U1 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.1u1.wirenum P.dc.1u1.time 107 0.5 107.5 500 0 500
+TH2F pdc1u2_wirenum_vs_tdc 'SHMS DC 1U2 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.1u2.wirenum P.dc.1u2.time 107 0.5 107.5 500 0 500
+TH2F pdc1x1_wirenum_vs_tdc 'SHMS DC 1X1 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.1x1.wirenum P.dc.1x1.time  79 0.5  79.5 500 0 500
+TH2F pdc1x2_wirenum_vs_tdc 'SHMS DC 1X2 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.1x2.wirenum P.dc.1x2.time  79 0.5  79.5 500 0 500
+TH2F pdc1v1_wirenum_vs_tdc 'SHMS DC 1V1 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.1v1.wirenum P.dc.1v1.time 107 0.5 107.5 500 0 500
+TH2F pdc1v2_wirenum_vs_tdc 'SHMS DC 1V2 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.1v2.wirenum P.dc.1v2.time 107 0.5 107.5 500 0 500
+
+TH2F pdc2v2_wirenum_vs_tdc 'SHMS DC 2V2 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.2v2.wirenum P.dc.2v2.time 107 0.5 107.5 500 0 500
+TH2F pdc2v1_wirenum_vs_tdc 'SHMS DC 2V1 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.2v1.wirenum P.dc.2v1.time 107 0.5 107.5 500 0 500
+TH2F pdc2x2_wirenum_vs_tdc 'SHMS DC 2X2 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.2x2.wirenum P.dc.2x2.time  79 0.5  79.5 500 0 500
+TH2F pdc2x1_wirenum_vs_tdc 'SHMS DC 2X1 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.2x1.wirenum P.dc.2x1.time  79 0.5  79.5 500 0 500
+TH2F pdc2u2_wirenum_vs_tdc 'SHMS DC 2U2 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.2u2.wirenum P.dc.2u2.time 107 0.5 107.5 500 0 500
+TH2F pdc2u1_wirenum_vs_tdc 'SHMS DC 2U1 Wire Number vs. TDC; Wire Number; TDC Value (ns)' P.dc.2u1.wirenum P.dc.2u1.time 107 0.5 107.5 500 0 500
+
+TH2F pdc1u1_wirenum_vs_ddist 'PDC 1U1 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.1u1.wirenum P.dc.1u1.dist 107 0.5 107.5 300 -0.1 0.6
+TH2F pdc1u2_wirenum_vs_ddist 'PDC 1U2 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.1u2.wirenum P.dc.1u2.dist 107 0.5 107.5 300 -0.1 0.6
+TH2F pdc1x1_wirenum_vs_ddist 'PDC 1X1 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.1x1.wirenum P.dc.1x1.dist  79 0.5  79.5 300 -0.1 0.6
+TH2F pdc1x2_wirenum_vs_ddist 'PDC 1X2 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.1x2.wirenum P.dc.1x2.dist  79 0.5  79.5 300 -0.1 0.6
+TH2F pdc1v1_wirenum_vs_ddist 'PDC 1V1 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.1v1.wirenum P.dc.1v1.dist 107 0.5 107.5 300 -0.1 0.6
+TH2F pdc1v2_wirenum_vs_ddist 'PDC 1V2 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.1v2.wirenum P.dc.1v2.dist 107 0.5 107.5 300 -0.1 0.6
+
+TH2F pdc2u2_wirenum_vs_ddist 'PDC 2U2 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.2u2.wirenum P.dc.2u2.dist 107 0.5 107.5 300 -0.1 0.6
+TH2F pdc2u1_wirenum_vs_ddist 'PDC 2U1 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.2u1.wirenum P.dc.2u1.dist 107 0.5 107.5 300 -0.1 0.6
+TH2F pdc2x2_wirenum_vs_ddist 'PDC 2X2 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.2x2.wirenum P.dc.2x2.dist  79 0.5  79.5 300 -0.1 0.6
+TH2F pdc2x1_wirenum_vs_ddist 'PDC 2X1 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.2x1.wirenum P.dc.2x1.dist  79 0.5  79.5 300 -0.1 0.6
+TH2F pdc2v2_wirenum_vs_ddist 'PDC 2V2 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.2v2.wirenum P.dc.2v2.dist 107 0.5 107.5 300 -0.1 0.6
+TH2F pdc2v1_wirenum_vs_ddist 'PDC 2V1 Wiremap vs. Drift Distance; Wire Number; Drift Distance (cm)' P.dc.2v1.wirenum P.dc.2v1.dist 107 0.5 107.5 300 -0.1 0.6
+
+TH2F pdc1u1_wirenum_vs_resid 'SHMS 1U1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1u1.wirenum P.dc.residual[0] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1u2_wirenum_vs_resid 'SHMS 1U2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1u2.wirenum P.dc.residual[1] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1x1_wirenum_vs_resid 'SHMS 1X1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1x1.wirenum P.dc.residual[2] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc1x2_wirenum_vs_resid 'SHMS 1X2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1x2.wirenum P.dc.residual[3] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc1v1_wirenum_vs_resid 'SHMS 1V1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1v1.wirenum P.dc.residual[4] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1v2_wirenum_vs_resid 'SHMS 1V2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1v2.wirenum P.dc.residual[5] 107 0.5 107.5 200 -1.0 1.0
+
+TH2F pdc2v2_wirenum_vs_resid 'SHMS 2V2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2v2.wirenum P.dc.residual[6] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2v1_wirenum_vs_resid 'SHMS 2V1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2v1.wirenum P.dc.residual[7] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2x2_wirenum_vs_resid 'SHMS 2X2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2x2.wirenum P.dc.residual[8] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc2x1_wirenum_vs_resid 'SHMS 2X1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2x1.wirenum P.dc.residual[9] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc2u2_wirenum_vs_resid 'SHMS 2U2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2u2.wirenum P.dc.residual[10] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2u1_wirenum_vs_resid 'SHMS 2U1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2u1.wirenum P.dc.residual[11] 107 0.5 107.5 200 -1.0 1.0
+
+TH2F pdc_xfp_vs_yxp 'SHMS DC Xfp vs Yxp; Yfp (cm) / 1 mm; Xfp (cm) / 1 mm' P.dc.y P.dc.x 1000 -50 50 1000 -50 50
+TH2F pdc_xfpp_vs_yxpp 'SHMS DC Xfpp vs Yxpp; Yfpp; Xfpp' P.dc.yp P.dc.xp 100 -1 1 100 -1 1
 
 
 
diff --git a/DEF-files/SHMS/GEN/pstackana.def b/DEF-files/SHMS/GEN/pstackana.def
new file mode 100644
index 0000000000000000000000000000000000000000..c330a2c2239db81c4af38f909748557c2995e3d4
--- /dev/null
+++ b/DEF-files/SHMS/GEN/pstackana.def
@@ -0,0 +1,183 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block T.shms.*
+block P.ngcer.*
+block P.dc.*
+block P.tr.*
+block P.hod.*
+block P.hgcer.*
+block P.aero.*
+block P.cal.*
+#block P.gtr.*
+
+# Noble Gas Cherenkov
+TH1F pngcer_occu 'SHMS Noble Gas Cherenkov Occupancy; Counter Number; Number of Entries' P.ngcer.adcCounter 4 0.5 4.5
+TH2F pngcer_ped_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 1 ADC Unit' P.ngcer.adcCounter P.ngcer.adcPed 4 0.5 4.5 1000 0 1000
+TH2F pngcer_pi_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPulseInt 4 0.5 4.5 4000 0 40000
+TH2F pngcer_amp_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 1 ADC Unit' P.ngcer.adcCounter P.ngcer.adcPulseAmp 4 0.5 4.5 4100 0 4100
+
+# Drift Chambers
+TH1F pdc_ref1  'SHMS DC Reference Time Slot 6 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF1_tdcTime  200 12000 14000
+TH1F pdc_ref2  'SHMS DC Reference Time Slot 7 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF2_tdcTime  200 12000 14000
+TH1F pdc_ref3  'SHMS DC Reference Time Slot 8 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF3_tdcTime  200 12000 14000
+TH1F pdc_ref4  'SHMS DC Reference Time Slot 9 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF4_tdcTime  200 12000 14000
+TH1F pdc_ref5  'SHMS DC Reference Time Slot 10 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF5_tdcTime  200 12000 14000
+TH1F pdc_ref6  'SHMS DC Reference Time Slot 11 Channel 47; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF6_tdcTime  200 12000 14000
+TH1F pdc_ref7  'SHMS DC Reference Time Slot 12 Channel 47; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF7_tdcTime  200 12000 14000
+TH1F pdc_ref8  'SHMS DC Reference Time Slot 13 Channel 47; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF8_tdcTime  200 12000 14000
+TH1F pdc_ref9  'SHMS DC Reference Time Slot 14 Channel 15; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF9_tdcTime  200 12000 14000
+TH1F pdc_ref10 'SHMS DC Reference Time Slot 15 Channel 47; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF10_tdcTime 200 12000 14000
+
+TH1F pdc1u1_wirenum 'SHMS DC 1U1 Wiremap; Wire Number; Number of Entries' P.dc.1u1.wirenum 107 0.5 107.5
+TH1F pdc1u2_wirenum 'SHMS DC 1U2 Wiremap; Wire Number; Number of Entries' P.dc.1u2.wirenum 107 0.5 107.5
+TH1F pdc1x1_wirenum 'SHMS DC 1X1 Wiremap; Wire Number; Number of Entries' P.dc.1x1.wirenum  79 0.5  79.5
+TH1F pdc1x2_wirenum 'SHMS DC 1X2 Wiremap; Wire Number; Number of Entries' P.dc.1x2.wirenum  79 0.5  79.5
+TH1F pdc1v1_wirenum 'SHMS DC 1V1 Wiremap; Wire Number; Number of Entries' P.dc.1v1.wirenum 107 0.5 107.5
+TH1F pdc1v2_wirenum 'SHMS DC 1V2 Wiremap; Wire Number; Number of Entries' P.dc.1v2.wirenum 107 0.5 107.5
+
+TH1F pdc2v2_wirenum 'SHMS DC 2V2 Wiremap; Wire Number; Number of Entries' P.dc.2v2.wirenum 107 0.5 107.5
+TH1F pdc2v1_wirenum 'SHMS DC 2V1 Wiremap; Wire Number; Number of Entries' P.dc.2v1.wirenum 107 0.5 107.5
+TH1F pdc2x2_wirenum 'SHMS DC 2X2 Wiremap; Wire Number; Number of Entries' P.dc.2x2.wirenum  79 0.5  79.5
+TH1F pdc2x1_wirenum 'SHMS DC 2X1 Wiremap; Wire Number; Number of Entries' P.dc.2x1.wirenum  79 0.5  79.5
+TH1F pdc2u2_wirenum 'SHMS DC 2U2 Wiremap; Wire Number; Number of Entries' P.dc.2u2.wirenum 107 0.5 107.5
+TH1F pdc2u1_wirenum 'SHMS DC 2U1 Wiremap; Wire Number; Number of Entries' P.dc.2u1.wirenum 107 0.5 107.5
+
+TH2F pdc1u1_wirenum_vs_tdc 'SHMS DC 1U1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1u1.wirenum P.dc.1u1.time 107 0.5 107.5 600 -100 500
+TH2F pdc1u2_wirenum_vs_tdc 'SHMS DC 1U2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1u2.wirenum P.dc.1u2.time 107 0.5 107.5 600 -100 500
+TH2F pdc1x1_wirenum_vs_tdc 'SHMS DC 1X1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1x1.wirenum P.dc.1x1.time  79 0.5  79.5 600 -100 500
+TH2F pdc1x2_wirenum_vs_tdc 'SHMS DC 1X2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1x2.wirenum P.dc.1x2.time  79 0.5  79.5 600 -100 500
+TH2F pdc1v1_wirenum_vs_tdc 'SHMS DC 1V1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1v1.wirenum P.dc.1v1.time 107 0.5 107.5 600 -100 500
+TH2F pdc1v2_wirenum_vs_tdc 'SHMS DC 1V2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1v2.wirenum P.dc.1v2.time 107 0.5 107.5 600 -100 500
+
+TH2F pdc2v2_wirenum_vs_tdc 'SHMS DC 2V2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2v2.wirenum P.dc.2v2.time 107 0.5 107.5 600 -100 500
+TH2F pdc2v1_wirenum_vs_tdc 'SHMS DC 2V1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2v1.wirenum P.dc.2v1.time 107 0.5 107.5 600 -100 500
+TH2F pdc2x2_wirenum_vs_tdc 'SHMS DC 2X2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2x2.wirenum P.dc.2x2.time  79 0.5  79.5 600 -100 500
+TH2F pdc2x1_wirenum_vs_tdc 'SHMS DC 2X1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2x1.wirenum P.dc.2x1.time  79 0.5  79.5 600 -100 500
+TH2F pdc2u2_wirenum_vs_tdc 'SHMS DC 2U2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2u2.wirenum P.dc.2u2.time 107 0.5 107.5 600 -100 500
+TH2F pdc2u1_wirenum_vs_tdc 'SHMS DC 2U1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2u1.wirenum P.dc.2u1.time 107 0.5 107.5 600 -100 500
+
+TH2F pdc1u1_wirenum_vs_resid 'SHMS 1U1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1u1.wirenum P.dc.residual[0] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1u2_wirenum_vs_resid 'SHMS 1U2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1u2.wirenum P.dc.residual[1] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1x1_wirenum_vs_resid 'SHMS 1X1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1x1.wirenum P.dc.residual[2] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc1x2_wirenum_vs_resid 'SHMS 1X2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1x2.wirenum P.dc.residual[3] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc1v1_wirenum_vs_resid 'SHMS 1V1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1v1.wirenum P.dc.residual[4] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1v2_wirenum_vs_resid 'SHMS 1V2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1v2.wirenum P.dc.residual[5] 107 0.5 107.5 200 -1.0 1.0
+
+TH2F pdc2v2_wirenum_vs_resid 'SHMS 2V2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2v2.wirenum P.dc.residual[6] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2v1_wirenum_vs_resid 'SHMS 2V1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2v1.wirenum P.dc.residual[7] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2x2_wirenum_vs_resid 'SHMS 2X2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2x2.wirenum P.dc.residual[8] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc2x1_wirenum_vs_resid 'SHMS 2X1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2x1.wirenum P.dc.residual[9] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc2u2_wirenum_vs_resid 'SHMS 2U2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2u2.wirenum P.dc.residual[10] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2u1_wirenum_vs_resid 'SHMS 2U1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2u1.wirenum P.dc.residual[11] 107 0.5 107.5 200 -1.0 1.0
+
+TH2F pdc_xfp_vs_yxp 'SHMS DC Xfp vs Yxp; Yfp (cm) / 1 cm; Xfp (cm) / 1 cm' P.dc.y P.dc.x 100 -50 50 100 -50 50
+TH2F pdc_xfpp_vs_yxpp 'SHMS DC Xfpp vs Yxpp; Yfpp; Xfpp' P.dc.yp P.dc.xp 100 -1 1 100 -1 1
+
+# Hodoscopes (Positive/Left) 
+TH1F phodo_1x_pos_adc_occu 'SHMS Hodoscope 1X+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.1x.posAdcCounter 13 0.5 13.5
+TH1F phodo_1y_pos_adc_occu 'SHMS Hodoscope 1Y+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.1y.posAdcCounter 13 0.5 13.5 
+TH1F phodo_2x_pos_adc_occu 'SHMS Hodoscope 2X+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.2x.posAdcCounter 14 0.5 14.5
+TH1F phodo_2y_pos_adc_occu 'SHMS Hodoscope 2Y+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.2y.posAdcCounter 21 0.5 21.5
+TH1F phodo_1x_pos_tdc_occu 'SHMS Hodoscope 1X+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.1x.posTdcCounter 13 0.5 13.5
+TH1F phodo_1y_pos_tdc_occu 'SHMS Hodoscope 1Y+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.1y.posTdcCounter 13 0.5 13.5 
+TH1F phodo_2x_pos_tdc_occu 'SHMS Hodoscope 2X+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.2x.posTdcCounter 14 0.5 14.5
+TH1F phodo_2y_pos_tdc_occu 'SHMS Hodoscope 2Y+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.2y.posTdcCounter 21 0.5 21.5
+TH2F phodo_1x_pos_ped_vs_pad 'SHMS Hodoscope 1X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F phodo_1y_pos_ped_vs_pad 'SHMS Hodoscope 1Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F phodo_2x_pos_ped_vs_pad 'SHMS Hodoscope 2X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPed 14 0.5 14.5 1000 0 1000
+TH2F phodo_2y_pos_ped_vs_pad 'SHMS Hodoscope 2Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPed 21 0.5 21.5 1000 0 1000
+TH2F phodo_1x_pos_pi_vs_pad 'SHMS Hodoscope 1X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1x.GoodPaddle  P.hod.1x.GoodPosAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_1y_pos_pi_vs_pad 'SHMS Hodoscope 1Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1y.GoodPaddle  P.hod.1y.GoodPosAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_2x_pos_pi_vs_pad 'SHMS Hodoscope 2X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2x.GoodPaddle  P.hod.2x.GoodPosAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F phodo_2y_pos_pi_vs_pad 'SHMS Hodoscope 2Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2y.GoodPaddle  P.hod.2y.GoodPosAdcPulseInt 21 0.5 21.5 4000 0 40000
+TH2F phodo_1x_pos_pamp_vs_pad 'SHMS Hodoscope 1X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.1x.GoodPaddle  P.hod.1x.GoodPosAdcPulseAmp 13 0.5 13.5 4100 0 4100
+TH2F phodo_1y_pos_pamp_vs_pad 'SHMS Hodoscope 1Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.1y.GoodPaddle  P.hod.1y.GoodPosAdcPulseAmp 13 0.5 13.5 4100 0 4100
+TH2F phodo_2x_pos_pamp_vs_pad 'SHMS Hodoscope 2X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.2x.GoodPaddle  P.hod.2x.GoodPosAdcPulseAmp 14 0.5 14.5 4100 0 4100
+TH2F phodo_2y_pos_pamp_vs_pad 'SHMS Hodoscope 2Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.2y.GoodPaddle  P.hod.2y.GoodPosAdcPulseAmp 21 0.5 21.5 4100 0 4100
+TH2F phodo_1x_pos_tdc_time_vs_pad 'SHMS Hodoscope 1X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.1x.GoodPaddle  P.hod.1x.GoodPosTdcChan 13 0.5 13.5 3500 -500 3000
+TH2F phodo_1y_pos_tdc_time_vs_pad 'SHMS Hodoscope 1Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.1y.GoodPaddle  P.hod.1y.GoodPosTdcChan 13 0.5 13.5 3500 -500 3000
+TH2F phodo_2x_pos_tdc_time_vs_pad 'SHMS Hodoscope 2X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.2x.GoodPaddle  P.hod.2x.GoodPosTdcChan 14 0.5 14.5 3500 -500 3000
+TH2F phodo_2y_pos_tdc_time_vs_pad 'SHMS Hodoscope 2Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.2y.GoodPaddle  P.hod.2y.GoodPosTdcChan 21 0.5 21.5 3500 -500 3000
+
+# Hodoscopes (Negative/Right)
+TH1F phodo_1x_neg_adc_occu 'SHMS Hodoscope 1X- ADC Occupancy; Paddle Number; Number of Hits' P.hod.1x.negAdcCounter 13 0.5 13.5
+TH1F phodo_1y_neg_adc_occu 'SHMS Hodoscope 1Y- ADC Occupancy; Paddle Number; Number of Hits' P.hod.1y.negAdcCounter 13 0.5 13.5 
+TH1F phodo_2x_neg_adc_occu 'SHMS Hodoscope 2X- ADC Occupancy; Paddle Number; Number of Hits' P.hod.2x.negAdcCounter 14 0.5 14.5
+TH1F phodo_2y_neg_adc_occu 'SHMS Hodoscope 2Y- ADC Occupancy; Paddle Number; Number of Hits' P.hod.2y.negAdcCounter 21 0.5 21.5
+TH1F phodo_1x_neg_tdc_occu 'SHMS Hodoscope 1X- TDC Occupancy; Paddle Number; Number of Hits' P.hod.1x.negTdcCounter 13 0.5 13.5
+TH1F phodo_1y_neg_tdc_occu 'SHMS Hodoscope 1Y- TDC Occupancy; Paddle Number; Number of Hits' P.hod.1y.negTdcCounter 13 0.5 13.5 
+TH1F phodo_2x_neg_tdc_occu 'SHMS Hodoscope 2X- TDC Occupancy; Paddle Number; Number of Hits' P.hod.2x.negTdcCounter 14 0.5 14.5
+TH1F phodo_2y_neg_tdc_occu 'SHMS Hodoscope 2Y- TDC Occupancy; Paddle Number; Number of Hits' P.hod.2y.negTdcCounter 21 0.5 21.5
+TH2F phodo_1x_neg_ped_vs_pad 'SHMS Hodoscope 1X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPed 13 0.5 13.5 1000 0 1000
+TH2F phodo_1y_neg_ped_vs_pad 'SHMS Hodoscope 1Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPed 13 0.5 13.5 1000 0 1000
+TH2F phodo_2x_neg_ped_vs_pad 'SHMS Hodoscope 2X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPed 14 0.5 14.5 1000 0 1000
+TH2F phodo_2y_neg_ped_vs_pad 'SHMS Hodoscope 2Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPed 21 0.5 21.5 1000 0 1000
+TH2F phodo_1x_neg_pi_vs_pad 'SHMS Hodoscope 1X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1x.GoodPaddle  P.hod.1x.GoodNegAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_1y_neg_pi_vs_pad 'SHMS Hodoscope 1Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1y.GoodPaddle  P.hod.1y.GoodNegAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_2x_neg_pi_vs_pad 'SHMS Hodoscope 2X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2x.GoodPaddle  P.hod.2x.GoodNegAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F phodo_2y_neg_pi_vs_pad 'SHMS Hodoscope 2Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2y.GoodPaddle  P.hod.2y.GoodNegAdcPulseInt 21 0.5 21.5 4000 0 40000
+TH2F phodo_1x_neg_pamp_vs_pad 'SHMS Hodoscope 1X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.1x.GoodPaddle  P.hod.1x.GoodNegAdcPulseAmp 13 0.5 13.5 4100 0 4100
+TH2F phodo_1y_neg_pamp_vs_pad 'SHMS Hodoscope 1Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.1y.GoodPaddle  P.hod.1y.GoodNegAdcPulseAmp 13 0.5 13.5 4100 0 4100
+TH2F phodo_2x_neg_pamp_vs_pad 'SHMS Hodoscope 2X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.2x.GoodPaddle  P.hod.2x.GoodNegAdcPulseAmp 14 0.5 14.5 4100 0 4100
+TH2F phodo_2y_neg_pamp_vs_pad 'SHMS Hodoscope 2Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.2y.GoodPaddle  P.hod.2y.GoodNegAdcPulseAmp 21 0.5 21.5 4100 0 4100
+TH2F phodo_1x_neg_tdc_time_vs_pad 'SHMS Hodoscope 1X- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.1x.GoodPaddle  P.hod.1x.GoodNegTdcChan 13 0.5 13.5 3500 -500 3000
+TH2F phodo_1y_neg_tdc_time_vs_pad 'SHMS Hodoscope 1Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.1y.GoodPaddle  P.hod.1y.GoodNegTdcChan 13 0.5 13.5 3500 -500 3000
+TH2F phodo_2x_neg_tdc_time_vs_pad 'SHMS Hodoscope 2X- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.2x.GoodPaddle  P.hod.2x.GoodNegTdcChan 14 0.5 14.5 3500 -500 3000
+TH2F phodo_2y_neg_tdc_time_vs_pad 'SHMS Hodoscope 2Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.2y.GoodPaddle  P.hod.2y.GoodNegTdcChan 21 0.5 21.5 3500 -500 3000
+
+# Heavy Gas Cherenkov
+TH1F phgcer_occu 'SHMS Heavy Gas Cherenkov Occupancy; Counter Number; Number of Entries' P.hgcer.adcCounter 4 0.5 4.5
+TH2F phgcer_ped_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 1 ADC Unit' P.hgcer.adcCounter P.hgcer.adcPed 4 0.5 4.5 1000 0 10000
+TH2F phgcer_pi_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseInt 4 0.5 4.5 4000 0 40000
+TH2F phgcer_amp_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 1 ADC Unit' P.hgcer.adcCounter P.hgcer.adcPulseAmp 4 0.5 4.5 4100 0 4100
+
+# Aerogel
+TH1F paero_pos_occu 'SHMS Aero+ Occupancy; Counter Number; Number of Entries' P.aero.posAdcCounter 7 0.5 7.5
+TH2F paero_pos_ped_vs_cntr 'SHMS Aero+ Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 1 ADC Unit' P.aero.posAdcCounter P.aero.posAdcPed 7 0.5 7.5 1000 0 1000
+TH2F paero_pos_pi_vs_cntr 'SHMS Aero+ Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.aero.posAdcCounter P.aero.posAdcPulseInt 7 0.5 7.5 4000 0 40000
+TH2F paero_pos_amp_vs_cntr 'SHMS Aero+ Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 1 ADC Unit' P.aero.posAdcCounter P.aero.posAdcPulseAmp 7 0.5 7.5 4100 0 4100
+TH1F paero_neg_occu 'SHMS Aero- Occupancy; Counter Number; Number of Entries' P.aero.negAdcCounter 7 0.5 7.5
+TH2F paero_neg_ped_vs_cntr 'SHMS Aero- Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 1 ADC Unit' P.aero.negAdcCounter P.aero.negAdcPed 7 0.5 7.5 1000 0 1000
+TH2F paero_neg_pi_vs_cntr 'SHMS Aero- Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPulseInt 7 0.5 7.5 4000 0 40000
+TH2F paero_neg_amp_vs_cntr 'SHMS Aero- Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 1 ADC Unit' P.aero.negAdcCounter P.aero.negAdcPulseAmp 7 0.5 7.5 4100 0 4100
+
+# Pre-Shower Calorimeter
+TH1F pcal_prshwr_pos_occu 'SHMS Preshower+ Occupancy; Block Number; Number of Entries' P.cal.pr.posAdcCounter 14 0.5 14.5
+TH2F pcal_prshwr_pos_ped_blk 'SHMS Preshower+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Unit' P.cal.pr.posAdcCounter P.cal.pr.posAdcPed 14 0.5 14.5 1000 0 1000
+TH2F pcal_prshwr_pos_pi_blk 'SHMS Preshower+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F pcal_prshwr_pos_amp_blk 'SHMS Preshower+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Unit' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseAmp 14 0.5 14.5 4100 0 4100
+TH1F pcal_prshwr_neg_occu 'SHMS Preshower- Occupancy; Block Number; Number of Entries' P.cal.pr.negAdcCounter 14 0.5 14.5
+TH2F pcal_prshwr_neg_ped_blk 'SHMS Preshower- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Unit' P.cal.pr.negAdcCounter P.cal.pr.negAdcPed 14 0.5 14.5 1000 0 1000
+TH2F pcal_prshwr_neg_pi_blk 'SHMS Preshower- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F pcal_prshwr_neg_amp_blk 'SHMS Preshower- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Unit' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseAmp 14 0.5 14.5 4100 0 4100 
+
+# Shower Calorimeter
+TH1F pcal_shwr_occu 'SHMS Shower Occupancy; Block Number; Number of Entries' P.cal.fly.adcCounter 224 0.5 224.5
+TH2F pcal_shwr_ped_blk 'SHMS Shower Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Unit' P.cal.fly.adcCounter P.cal.fly.adcPed 224 0.5 224.5 1000 0 1000
+TH2F pcal_shwr_pi_blk 'SHMS Shower Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPulseInt 224 0.5 224.5 4000 0 40000
+TH2F pcal_shwr_amp_blk 'SHMS Shower Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Unit' P.cal.fly.adcCounter P.cal.fly.adcPulseAmp 224 0.5 224.5 4100 0 4100 
+
+# Trigger Apparatus
+TH1F ptrig_pngc_sum_pped 'SHMS Noble Gas Sum FADC Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Units' T.shms.pNGCSUM_adcPed 2000 0 2000
+TH1F ptrig_pngc_sum_pint 'SHMS Noble Gas Sum FADC Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.shms.pNGCSUM_adcPulseInt 4000 0 40000
+TH1F ptrig_pngc_sum_pamp 'SHMS Noble Gas Sum FADC Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Units' T.shms.pNGCSUM_adcPulseAmp 4100 0 4100
+TH1F ptrig_pngc_sum_ptime 'SHMS Noble Gas Sum FADC Pulse Time; Pulse Time; Number of Entries / 10 ADC Units' T.shms.pNGCSUM_adcPulseTimeRaw 1000 0 10000
+TH1F ptrig_pngc_sum_tdc 'SHMS Noble Gas Sum TDC Time; TDC Time; Number of Entries / 10 TDC Units' T.shms.pNGCSUM_tdcTime 700 -3500 3500
+
+TH1F ptrig_phgc_sum_pped 'SHMS Heavy Gas Sum FADC Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Units' T.shms.pHGCSUM_adcPed 2000 0 2000
+TH1F ptrig_phgc_sum_pint 'SHMS Heavy Gas Sum FADC Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.shms.pHGCSUM_adcPulseInt 4000 0 40000
+TH1F ptrig_phgc_sum_pamp 'SHMS Heavy Gas Sum FADC Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Units' T.shms.pHGCSUM_adcPulseAmp 4100 0 4100
+TH1F ptrig_phgc_sum_ptime 'SHMS Heavy Gas Sum FADC Pulse Time; Pulse Time; Number of Entries / 10 ADC Units' T.shms.pHGCSUM_adcPulseTimeRaw 1000 0 10000
+TH1F ptrig_phgc_sum_tdc 'SHMS Heavy Gas Sum TDC Time; TDC Time; Number of Entries / 10 TDC Units' T.shms.pHGCSUM_tdcTime 700 -3500 3500
+
+TH1F ptrig_p1x_tdc 'SHMS p1x TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1X_tdcTime 350 0 3500
+TH1F ptrig_p1y_tdc 'SHMS p1y TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1Y_tdcTime 350 0 3500
+TH1F ptrig_p2x_tdc 'SHMS p2x TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2X_tdcTime 350 0 3500
+TH1F ptrig_p2y_tdc 'SHMS p2y TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2Y_tdcTime 350 0 3500
+
+TH1F ptrig_p1T_tdc 'SHMS p1x/p1y Coincidence TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1T_tdcTime 350 0 3500
+TH1F ptrig_p2T_tdc 'SHMS p2x/p2y Coincidence TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2T_tdcTime 350 0 3500
+
+TH1F ptrig_pT1_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 20, Channel 15); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT1_tdcTime 350 0 3500
+TH1F ptrig_pT2_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 19, Channel 31); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT2_tdcTime 350 0 3500
+TH1F ptrig_pT3_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 19, Channel 38); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT3_tdcTime 350 0 3500
diff --git a/DEF-files/SHMS/GEN/pstackana_cuts.def b/DEF-files/SHMS/GEN/pstackana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/SHMS/GEN/pstackana_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/SHMS/GEN/pstackana_report.def b/DEF-files/SHMS/GEN/pstackana_report.def
new file mode 100644
index 0000000000000000000000000000000000000000..6d9be51d35ab5b1f8350f47f5727aa656d0403b2
--- /dev/null
+++ b/DEF-files/SHMS/GEN/pstackana_report.def
@@ -0,0 +1,183 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block T.shms.*
+block P.ngcer.*
+block P.dc.*
+block P.tr.*
+block P.hod.*
+block P.hgcer.*
+block P.aero.*
+block P.cal.*
+block P.gtr.*
+
+# Noble Gas Cherenkov
+TH1F pngcer_occu 'SHMS Noble Gas Cherenkov Occupancy; Counter Number; Number of Entries' P.ngcer.adcCounter 4 0.5 4.5
+TH2F pngcer_ped_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 1 ADC Unit' P.ngcer.adcCounter P.ngcer.adcPed 4 0.5 4.5 1000 0 1000
+TH2F pngcer_pi_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPulseInt 4 0.5 4.5 4000 0 40000
+TH2F pngcer_amp_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 1 ADC Unit' P.ngcer.adcCounter P.ngcer.adcPulseAmp 4 0.5 4.5 4100 0 4100
+
+# Drift Chambers
+TH1F pdc_ref1  'SHMS DC Reference Time Slot 6 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF1_tdcTime  200 12000 14000
+TH1F pdc_ref2  'SHMS DC Reference Time Slot 7 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF2_tdcTime  200 12000 14000
+TH1F pdc_ref3  'SHMS DC Reference Time Slot 8 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF3_tdcTime  200 12000 14000
+TH1F pdc_ref4  'SHMS DC Reference Time Slot 9 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF4_tdcTime  200 12000 14000
+TH1F pdc_ref5  'SHMS DC Reference Time Slot 10 Channel 79; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF5_tdcTime  200 12000 14000
+TH1F pdc_ref6  'SHMS DC Reference Time Slot 11 Channel 47; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF6_tdcTime  200 12000 14000
+TH1F pdc_ref7  'SHMS DC Reference Time Slot 12 Channel 47; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF7_tdcTime  200 12000 14000
+TH1F pdc_ref8  'SHMS DC Reference Time Slot 13 Channel 47; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF8_tdcTime  200 12000 14000
+TH1F pdc_ref9  'SHMS DC Reference Time Slot 14 Channel 15; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF9_tdcTime  200 12000 14000
+TH1F pdc_ref10 'SHMS DC Reference Time Slot 15 Channel 47; Raw TDC Time (TDC Clicks); Counts / 10 TDC Clicks;' T.shms.pDCREF10_tdcTime 200 12000 14000
+
+TH1F pdc1u1_wirenum 'SHMS DC 1U1 Wiremap; Wire Number; Number of Entries' P.dc.1u1.wirenum 107 0.5 107.5
+TH1F pdc1u2_wirenum 'SHMS DC 1U2 Wiremap; Wire Number; Number of Entries' P.dc.1u2.wirenum 107 0.5 107.5
+TH1F pdc1x1_wirenum 'SHMS DC 1X1 Wiremap; Wire Number; Number of Entries' P.dc.1x1.wirenum  79 0.5  79.5
+TH1F pdc1x2_wirenum 'SHMS DC 1X2 Wiremap; Wire Number; Number of Entries' P.dc.1x2.wirenum  79 0.5  79.5
+TH1F pdc1v1_wirenum 'SHMS DC 1V1 Wiremap; Wire Number; Number of Entries' P.dc.1v1.wirenum 107 0.5 107.5
+TH1F pdc1v2_wirenum 'SHMS DC 1V2 Wiremap; Wire Number; Number of Entries' P.dc.1v2.wirenum 107 0.5 107.5
+
+TH1F pdc2v2_wirenum 'SHMS DC 2V2 Wiremap; Wire Number; Number of Entries' P.dc.2v2.wirenum 107 0.5 107.5
+TH1F pdc2v1_wirenum 'SHMS DC 2V1 Wiremap; Wire Number; Number of Entries' P.dc.2v1.wirenum 107 0.5 107.5
+TH1F pdc2x2_wirenum 'SHMS DC 2X2 Wiremap; Wire Number; Number of Entries' P.dc.2x2.wirenum  79 0.5  79.5
+TH1F pdc2x1_wirenum 'SHMS DC 2X1 Wiremap; Wire Number; Number of Entries' P.dc.2x1.wirenum  79 0.5  79.5
+TH1F pdc2u2_wirenum 'SHMS DC 2U2 Wiremap; Wire Number; Number of Entries' P.dc.2u2.wirenum 107 0.5 107.5
+TH1F pdc2u1_wirenum 'SHMS DC 2U1 Wiremap; Wire Number; Number of Entries' P.dc.2u1.wirenum 107 0.5 107.5
+
+TH2F pdc1u1_wirenum_vs_tdc 'SHMS DC 1U1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1u1.wirenum P.dc.1u1.time 107 0.5 107.5 500 0 500
+TH2F pdc1u2_wirenum_vs_tdc 'SHMS DC 1U2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1u2.wirenum P.dc.1u2.time 107 0.5 107.5 500 0 500
+TH2F pdc1x1_wirenum_vs_tdc 'SHMS DC 1X1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1x1.wirenum P.dc.1x1.time  79 0.5  79.5 500 0 500
+TH2F pdc1x2_wirenum_vs_tdc 'SHMS DC 1X2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1x2.wirenum P.dc.1x2.time  79 0.5  79.5 500 0 500
+TH2F pdc1v1_wirenum_vs_tdc 'SHMS DC 1V1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1v1.wirenum P.dc.1v1.time 107 0.5 107.5 500 0 500
+TH2F pdc1v2_wirenum_vs_tdc 'SHMS DC 1V2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.1v2.wirenum P.dc.1v2.time 107 0.5 107.5 500 0 500
+
+TH2F pdc2v2_wirenum_vs_tdc 'SHMS DC 2V2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2v2.wirenum P.dc.2v2.time 107 0.5 107.5 500 0 500
+TH2F pdc2v1_wirenum_vs_tdc 'SHMS DC 2V1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2v1.wirenum P.dc.2v1.time 107 0.5 107.5 500 0 500
+TH2F pdc2x2_wirenum_vs_tdc 'SHMS DC 2X2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2x2.wirenum P.dc.2x2.time  79 0.5  79.5 500 0 500
+TH2F pdc2x1_wirenum_vs_tdc 'SHMS DC 2X1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2x1.wirenum P.dc.2x1.time  79 0.5  79.5 500 0 500
+TH2F pdc2u2_wirenum_vs_tdc 'SHMS DC 2U2 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2u2.wirenum P.dc.2u2.time 107 0.5 107.5 500 0 500
+TH2F pdc2u1_wirenum_vs_tdc 'SHMS DC 2U1 Wire Number vs. TDC; Wire Number; TDC Time (ns) / 1 ns' P.dc.2u1.wirenum P.dc.2u1.time 107 0.5 107.5 500 0 500
+
+TH2F pdc1u1_wirenum_vs_resid 'SHMS 1U1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1u1.wirenum P.dc.residual[0] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1u2_wirenum_vs_resid 'SHMS 1U2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1u2.wirenum P.dc.residual[1] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1x1_wirenum_vs_resid 'SHMS 1X1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1x1.wirenum P.dc.residual[2] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc1x2_wirenum_vs_resid 'SHMS 1X2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1x2.wirenum P.dc.residual[3] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc1v1_wirenum_vs_resid 'SHMS 1V1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1v1.wirenum P.dc.residual[4] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc1v2_wirenum_vs_resid 'SHMS 1V2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.1v2.wirenum P.dc.residual[5] 107 0.5 107.5 200 -1.0 1.0
+
+TH2F pdc2v2_wirenum_vs_resid 'SHMS 2V2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2v2.wirenum P.dc.residual[6] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2v1_wirenum_vs_resid 'SHMS 2V1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2v1.wirenum P.dc.residual[7] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2x2_wirenum_vs_resid 'SHMS 2X2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2x2.wirenum P.dc.residual[8] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc2x1_wirenum_vs_resid 'SHMS 2X1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2x1.wirenum P.dc.residual[9] 79 0.5  79.5 200 -1.0 1.0
+TH2F pdc2u2_wirenum_vs_resid 'SHMS 2U2 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2u2.wirenum P.dc.residual[10] 107 0.5 107.5 200 -1.0 1.0
+TH2F pdc2u1_wirenum_vs_resid 'SHMS 2U1 DC Wire Number vs. Residuals; Wire Number; Residuals (mm)' P.dc.2u1.wirenum P.dc.residual[11] 107 0.5 107.5 200 -1.0 1.0
+
+TH2F pdc_xfp_vs_yxp 'SHMS DC Xfp vs Yxp; Yfp (cm) / 1 cm; Xfp (cm) / 1 cm' P.dc.y P.dc.x 100 -50 50 100 -50 50
+TH2F pdc_xfpp_vs_yxpp 'SHMS DC Xfpp vs Yxpp; Yfpp; Xfpp' P.dc.yp P.dc.xp 100 -1 1 100 -1 1
+
+# Hodoscopes (Positive/Left) 
+TH1F phodo_1x_pos_adc_occu 'SHMS Hodoscope 1X+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.1x.posAdcCounter 13 0.5 13.5
+TH1F phodo_1y_pos_adc_occu 'SHMS Hodoscope 1Y+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.1y.posAdcCounter 13 0.5 13.5 
+TH1F phodo_2x_pos_adc_occu 'SHMS Hodoscope 2X+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.2x.posAdcCounter 14 0.5 14.5
+TH1F phodo_2y_pos_adc_occu 'SHMS Hodoscope 2Y+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.2y.posAdcCounter 21 0.5 21.5
+TH1F phodo_1x_pos_tdc_occu 'SHMS Hodoscope 1X+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.1x.posTdcCounter 13 0.5 13.5
+TH1F phodo_1y_pos_tdc_occu 'SHMS Hodoscope 1Y+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.1y.posTdcCounter 13 0.5 13.5 
+TH1F phodo_2x_pos_tdc_occu 'SHMS Hodoscope 2X+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.2x.posTdcCounter 14 0.5 14.5
+TH1F phodo_2y_pos_tdc_occu 'SHMS Hodoscope 2Y+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.2y.posTdcCounter 21 0.5 21.5
+TH2F phodo_1x_pos_ped_vs_pad 'SHMS Hodoscope 1X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F phodo_1y_pos_ped_vs_pad 'SHMS Hodoscope 1Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPed 13 0.5 13.5 1000 0 1000
+TH2F phodo_2x_pos_ped_vs_pad 'SHMS Hodoscope 2X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPed 14 0.5 14.5 1000 0 1000
+TH2F phodo_2y_pos_ped_vs_pad 'SHMS Hodoscope 2Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPed 21 0.5 21.5 1000 0 1000
+TH2F phodo_1x_pos_pi_vs_pad 'SHMS Hodoscope 1X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1x.GoodPaddle  P.hod.1x.GoodPosAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_1y_pos_pi_vs_pad 'SHMS Hodoscope 1Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1y.GoodPaddle  P.hod.1y.GoodPosAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_2x_pos_pi_vs_pad 'SHMS Hodoscope 2X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2x.GoodPaddle  P.hod.2x.GoodPosAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F phodo_2y_pos_pi_vs_pad 'SHMS Hodoscope 2Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2y.GoodPaddle  P.hod.2y.GoodPosAdcPulseInt 21 0.5 21.5 4000 0 40000
+TH2F phodo_1x_pos_pamp_vs_pad 'SHMS Hodoscope 1X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.1x.GoodPaddle  P.hod.1x.GoodPosAdcPulseAmp 13 0.5 13.5 4100 0 4100
+TH2F phodo_1y_pos_pamp_vs_pad 'SHMS Hodoscope 1Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.1y.GoodPaddle  P.hod.1y.GoodPosAdcPulseAmp 13 0.5 13.5 4100 0 4100
+TH2F phodo_2x_pos_pamp_vs_pad 'SHMS Hodoscope 2X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.2x.GoodPaddle  P.hod.2x.GoodPosAdcPulseAmp 14 0.5 14.5 4100 0 4100
+TH2F phodo_2y_pos_pamp_vs_pad 'SHMS Hodoscope 2Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.2y.GoodPaddle  P.hod.2y.GoodPosAdcPulseAmp 21 0.5 21.5 4100 0 4100
+TH2F phodo_1x_pos_tdc_time_vs_pad 'SHMS Hodoscope 1X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.1x.GoodPaddle  P.hod.1x.GoodPosTdcChan 13 0.5 13.5 3500 -500 3000
+TH2F phodo_1y_pos_tdc_time_vs_pad 'SHMS Hodoscope 1Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.1y.GoodPaddle  P.hod.1y.GoodPosTdcChan 13 0.5 13.5 3500 -500 3000
+TH2F phodo_2x_pos_tdc_time_vs_pad 'SHMS Hodoscope 2X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.2x.GoodPaddle  P.hod.2x.GoodPosTdcChan 14 0.5 14.5 3500 -500 3000
+TH2F phodo_2y_pos_tdc_time_vs_pad 'SHMS Hodoscope 2Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.2y.GoodPaddle  P.hod.2y.GoodPosTdcChan 21 0.5 21.5 3500 -500 3000
+
+# Hodoscopes (Negative/Right)
+TH1F phodo_1x_neg_adc_occu 'SHMS Hodoscope 1X- ADC Occupancy; Paddle Number; Number of Hits' P.hod.1x.negAdcCounter 13 0.5 13.5
+TH1F phodo_1y_neg_adc_occu 'SHMS Hodoscope 1Y- ADC Occupancy; Paddle Number; Number of Hits' P.hod.1y.negAdcCounter 13 0.5 13.5 
+TH1F phodo_2x_neg_adc_occu 'SHMS Hodoscope 2X- ADC Occupancy; Paddle Number; Number of Hits' P.hod.2x.negAdcCounter 14 0.5 14.5
+TH1F phodo_2y_neg_adc_occu 'SHMS Hodoscope 2Y- ADC Occupancy; Paddle Number; Number of Hits' P.hod.2y.negAdcCounter 21 0.5 21.5
+TH1F phodo_1x_neg_tdc_occu 'SHMS Hodoscope 1X- TDC Occupancy; Paddle Number; Number of Hits' P.hod.1x.negTdcCounter 13 0.5 13.5
+TH1F phodo_1y_neg_tdc_occu 'SHMS Hodoscope 1Y- TDC Occupancy; Paddle Number; Number of Hits' P.hod.1y.negTdcCounter 13 0.5 13.5 
+TH1F phodo_2x_neg_tdc_occu 'SHMS Hodoscope 2X- TDC Occupancy; Paddle Number; Number of Hits' P.hod.2x.negTdcCounter 14 0.5 14.5
+TH1F phodo_2y_neg_tdc_occu 'SHMS Hodoscope 2Y- TDC Occupancy; Paddle Number; Number of Hits' P.hod.2y.negTdcCounter 21 0.5 21.5
+TH2F phodo_1x_neg_ped_vs_pad 'SHMS Hodoscope 1X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPed 13 0.5 13.5 1000 0 1000
+TH2F phodo_1y_neg_ped_vs_pad 'SHMS Hodoscope 1Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPed 13 0.5 13.5 1000 0 1000
+TH2F phodo_2x_neg_ped_vs_pad 'SHMS Hodoscope 2X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPed 14 0.5 14.5 1000 0 1000
+TH2F phodo_2y_neg_ped_vs_pad 'SHMS Hodoscope 2Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 1 ADC Unit' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPed 21 0.5 21.5 1000 0 1000
+TH2F phodo_1x_neg_pi_vs_pad 'SHMS Hodoscope 1X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1x.GoodPaddle  P.hod.1x.GoodNegAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_1y_neg_pi_vs_pad 'SHMS Hodoscope 1Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1y.GoodPaddle  P.hod.1y.GoodNegAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_2x_neg_pi_vs_pad 'SHMS Hodoscope 2X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2x.GoodPaddle  P.hod.2x.GoodNegAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F phodo_2y_neg_pi_vs_pad 'SHMS Hodoscope 2Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2y.GoodPaddle  P.hod.2y.GoodNegAdcPulseInt 21 0.5 21.5 4000 0 40000
+TH2F phodo_1x_neg_pamp_vs_pad 'SHMS Hodoscope 1X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.1x.GoodPaddle  P.hod.1x.GoodNegAdcPulseAmp 13 0.5 13.5 4100 0 4100
+TH2F phodo_1y_neg_pamp_vs_pad 'SHMS Hodoscope 1Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.1y.GoodPaddle  P.hod.1y.GoodNegAdcPulseAmp 13 0.5 13.5 4100 0 4100
+TH2F phodo_2x_neg_pamp_vs_pad 'SHMS Hodoscope 2X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.2x.GoodPaddle  P.hod.2x.GoodNegAdcPulseAmp 14 0.5 14.5 4100 0 4100
+TH2F phodo_2y_neg_pamp_vs_pad 'SHMS Hodoscope 2Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 1 ADC Unit' P.hod.2y.GoodPaddle  P.hod.2y.GoodNegAdcPulseAmp 21 0.5 21.5 4100 0 4100
+TH2F phodo_1x_neg_tdc_time_vs_pad 'SHMS Hodoscope 1X- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.1x.GoodPaddle  P.hod.1x.GoodNegTdcChan 13 0.5 13.5 3500 -500 3000
+TH2F phodo_1y_neg_tdc_time_vs_pad 'SHMS Hodoscope 1Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.1y.GoodPaddle  P.hod.1y.GoodNegTdcChan 13 0.5 13.5 3500 -500 3000
+TH2F phodo_2x_neg_tdc_time_vs_pad 'SHMS Hodoscope 2X- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.2x.GoodPaddle  P.hod.2x.GoodNegTdcChan 14 0.5 14.5 3500 -500 3000
+TH2F phodo_2y_neg_tdc_time_vs_pad 'SHMS Hodoscope 2Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns) / 1 ns' P.hod.2y.GoodPaddle  P.hod.2y.GoodNegTdcChan 21 0.5 21.5 3500 -500 3000
+
+# Heavy Gas Cherenkov
+TH1F phgcer_occu 'SHMS Heavy Gas Cherenkov Occupancy; Counter Number; Number of Entries' P.hgcer.adcCounter 4 0.5 4.5
+TH2F phgcer_ped_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 1 ADC Unit' P.hgcer.adcCounter P.hgcer.adcPed 4 0.5 4.5 1000 0 10000
+TH2F phgcer_pi_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseInt 4 0.5 4.5 4000 0 40000
+TH2F phgcer_amp_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 1 ADC Unit' P.hgcer.adcCounter P.hgcer.adcPulseAmp 4 0.5 4.5 4100 0 4100
+
+# Aerogel
+TH1F paero_pos_occu 'SHMS Aero+ Occupancy; Counter Number; Number of Entries' P.aero.posAdcCounter 7 0.5 7.5
+TH2F paero_pos_ped_vs_cntr 'SHMS Aero+ Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 1 ADC Unit' P.aero.posAdcCounter P.aero.posAdcPed 7 0.5 7.5 1000 0 1000
+TH2F paero_pos_pi_vs_cntr 'SHMS Aero+ Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.aero.posAdcCounter P.aero.posAdcPulseInt 7 0.5 7.5 4000 0 40000
+TH2F paero_pos_amp_vs_cntr 'SHMS Aero+ Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 1 ADC Unit' P.aero.posAdcCounter P.aero.posAdcPulseAmp 7 0.5 7.5 4100 0 4100
+TH1F paero_neg_occu 'SHMS Aero- Occupancy; Counter Number; Number of Entries' P.aero.negAdcCounter 7 0.5 7.5
+TH2F paero_neg_ped_vs_cntr 'SHMS Aero- Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 1 ADC Unit' P.aero.negAdcCounter P.aero.negAdcPed 7 0.5 7.5 1000 0 1000
+TH2F paero_neg_pi_vs_cntr 'SHMS Aero- Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.aero.negAdcCounter P.aero.negAdcPulseInt 7 0.5 7.5 4000 0 40000
+TH2F paero_neg_amp_vs_cntr 'SHMS Aero- Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 1 ADC Unit' P.aero.negAdcCounter P.aero.negAdcPulseAmp 7 0.5 7.5 4100 0 4100
+
+# Pre-Shower Calorimeter
+TH1F pcal_prshwr_pos_occu 'SHMS Preshower+ Occupancy; Block Number; Number of Entries' P.cal.pr.posAdcCounter 14 0.5 14.5
+TH2F pcal_prshwr_pos_ped_blk 'SHMS Preshower+ Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Unit' P.cal.pr.posAdcCounter P.cal.pr.posAdcPed 14 0.5 14.5 1000 0 1000
+TH2F pcal_prshwr_pos_pi_blk 'SHMS Preshower+ Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F pcal_prshwr_pos_amp_blk 'SHMS Preshower+ Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Unit' P.cal.pr.posAdcCounter P.cal.pr.posAdcPulseAmp 14 0.5 14.5 4100 0 4100
+TH1F pcal_prshwr_neg_occu 'SHMS Preshower- Occupancy; Block Number; Number of Entries' P.cal.pr.negAdcCounter 14 0.5 14.5
+TH2F pcal_prshwr_neg_ped_blk 'SHMS Preshower- Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Unit' P.cal.pr.negAdcCounter P.cal.pr.negAdcPed 14 0.5 14.5 1000 0 1000
+TH2F pcal_prshwr_neg_pi_blk 'SHMS Preshower- Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F pcal_prshwr_neg_amp_blk 'SHMS Preshower- Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Unit' P.cal.pr.negAdcCounter P.cal.pr.negAdcPulseAmp 14 0.5 14.5 4100 0 4100 
+
+# Shower Calorimeter
+TH1F pcal_shwr_occu 'SHMS Shower Occupancy; Block Number; Number of Entries' P.cal.fly.adcCounter 224 0.5 224.5
+TH2F pcal_shwr_ped_blk 'SHMS Shower Pulse Pedestal vs. Block Number; Block Number; Pulse Pedestal / 1 ADC Unit' P.cal.fly.adcCounter P.cal.fly.adcPed 224 0.5 224.5 1000 0 1000
+TH2F pcal_shwr_pi_blk 'SHMS Shower Pulse Integral vs. Block Number; Block Number; Pulse Integral / 10 ADC Units' P.cal.fly.adcCounter P.cal.fly.adcPulseInt 224 0.5 224.5 4000 0 40000
+TH2F pcal_shwr_amp_blk 'SHMS Shower Pulse Amplitude vs. Block Number; Block Number; Pulse Amplitude / 1 ADC Unit' P.cal.fly.adcCounter P.cal.fly.adcPulseAmp 224 0.5 224.5 4100 0 4100 
+
+# Trigger Apparatus
+TH1F ptrig_pngc_sum_pped 'SHMS Noble Gas Sum FADC Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Units' T.shms.pNGCSUM_adcPed 2000 0 2000
+TH1F ptrig_pngc_sum_pint 'SHMS Noble Gas Sum FADC Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.shms.pNGCSUM_adcPulseInt 4000 0 40000
+TH1F ptrig_pngc_sum_pamp 'SHMS Noble Gas Sum FADC Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Units' T.shms.pNGCSUM_adcPulseAmp 4100 0 4100
+TH1F ptrig_pngc_sum_ptime 'SHMS Noble Gas Sum FADC Pulse Time; Pulse Time; Number of Entries / 10 ADC Units' T.shms.pNGCSUM_adcPulseTimeRaw 1000 0 10000
+TH1F ptrig_pngc_sum_tdc 'SHMS Noble Gas Sum TDC Time; TDC Time; Number of Entries / 10 TDC Units' T.shms.pNGCSUM_tdcTime 700 -3500 3500
+
+TH1F ptrig_phgc_sum_pped 'SHMS Heavy Gas Sum FADC Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Units' T.shms.pHGCSUM_adcPed 2000 0 2000
+TH1F ptrig_phgc_sum_pint 'SHMS Heavy Gas Sum FADC Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.shms.pHGCSUM_adcPulseInt 4000 0 40000
+TH1F ptrig_phgc_sum_pamp 'SHMS Heavy Gas Sum FADC Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Units' T.shms.pHGCSUM_adcPulseAmp 4100 0 4100
+TH1F ptrig_phgc_sum_ptime 'SHMS Heavy Gas Sum FADC Pulse Time; Pulse Time; Number of Entries / 10 ADC Units' T.shms.pHGCSUM_adcPulseTimeRaw 1000 0 10000
+TH1F ptrig_phgc_sum_tdc 'SHMS Heavy Gas Sum TDC Time; TDC Time; Number of Entries / 10 TDC Units' T.shms.pHGCSUM_tdcTime 700 -3500 3500
+
+TH1F ptrig_p1x_tdc 'SHMS p1x TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1X_tdcTime 350 0 3500
+TH1F ptrig_p1y_tdc 'SHMS p1y TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1Y_tdcTime 350 0 3500
+TH1F ptrig_p2x_tdc 'SHMS p2x TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2X_tdcTime 350 0 3500
+TH1F ptrig_p2y_tdc 'SHMS p2y TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2Y_tdcTime 350 0 3500
+
+TH1F ptrig_p1T_tdc 'SHMS p1x/p1y Coincidence TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1T_tdcTime 350 0 3500
+TH1F ptrig_p2T_tdc 'SHMS p2x/p2y Coincidence TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2T_tdcTime 350 0 3500
+
+TH1F ptrig_pT1_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 20, Channel 15); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT1_tdcTime 350 0 3500
+TH1F ptrig_pT2_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 19, Channel 31); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT2_tdcTime 350 0 3500
+TH1F ptrig_pT3_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 19, Channel 38); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT3_tdcTime 350 0 3500
\ No newline at end of file
diff --git a/DEF-files/SHMS/GEN/pstackana_report_cuts.def b/DEF-files/SHMS/GEN/pstackana_report_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..d012b948a85ac7cc1839689003162ea1810f1a9a
--- /dev/null
+++ b/DEF-files/SHMS/GEN/pstackana_report_cuts.def
@@ -0,0 +1,189 @@
+# Demo cuts for hodtest
+#
+
+Block: RawDecode
+
+Pedestal_event    g.evtyp==4
+scalar_event      g.evtyp==0
+HMS_event         g.evtyp==1
+SHMS_event         g.evtyp==1
+coin_event        g.evtyp==3
+misc_event        g.evtyp>=5
+hmscoin_event     g.evtyp==1||g.evtyp==3
+shmscoin_event     g.evtyp==2||g.evtyp==3
+all_event         g.evtyp==1||g.evtyp==2||g.evtyp==3
+RawDecode_master  1
+
+Block: Decode
+Decode_master     HMS_event
+
+Block: CoarseTracking
+CoarseTracking_master HMS_event
+
+all_trigs             g.evtyp==1 || g.evtyp==2 || g.evtyp==3
+hms_shms_trig          g.evtyp==1 || g.evtyp==2
+hms_coin_trig         g.evtyp==1 || g.evtyp==3
+
+
+shmsDC1Planes_large  (P.dc.1x1.nhit+P.dc.1u2.nhit+P.dc.1u1.nhit+P.dc.1v1.nhit+P.dc.1x2.nhit+P.dc.1v2.nhit) >20
+shmsDC2Planes_large  (P.dc.2x1.nhit+P.dc.2u2.nhit+P.dc.2u1.nhit+P.dc.2v1.nhit+P.dc.2x2.nhit+P.dc.2v2.nhit) >20
+
+shmsDC1_1hit_x1                P.dc.1x1.nhit == 1
+shmsDC1_1hit_u1                P.dc.1u1.nhit == 1
+shmsDC1_1hit_u2                P.dc.1u2.nhit == 1
+shmsDC1_1hit_v1                P.dc.1v1.nhit == 1
+shmsDC1_1hit_v2                P.dc.1v2.nhit == 1
+shmsDC1_1hit_x2                P.dc.1x2.nhit == 1
+
+shmsDC2_1hit_x1                P.dc.2x1.nhit == 1
+shmsDC2_1hit_u1                P.dc.2u1.nhit == 1
+shmsDC2_1hit_u2                P.dc.2u2.nhit == 1
+shmsDC2_1hit_v1                P.dc.2v1.nhit == 1
+shmsDC2_1hit_v2                P.dc.2v2.nhit == 1
+shmsDC2_1hit_x2                P.dc.2x2.nhit == 1
+
+h1hit1                P.dc.1x1.nhit >= 1
+h1hit2                P.dc.1u1.nhit >= 1
+h1hit3                P.dc.1u2.nhit >= 1
+h1hit4                P.dc.1v1.nhit >= 1
+h1hit5                P.dc.1v2.nhit >= 1
+h1hit6                P.dc.1x2.nhit >= 1
+
+h2hit1                P.dc.2x1.nhit >= 1
+h2hit2                P.dc.2u1.nhit >= 1
+h2hit3                P.dc.2u2.nhit >= 1
+h2hit4                P.dc.2v1.nhit >= 1
+h2hit5                P.dc.2v2.nhit >= 1
+h2hit6                P.dc.2x2.nhit >= 1
+
+shmsDC1Planes6hits shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_u2&&shmsDC1_1hit_x2&&shmsDC1_1hit_v1&&shmsDC1_1hit_v2
+shmsDC2Planes6hits shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_u2&&shmsDC2_1hit_x2&&shmsDC2_1hit_v1&&shmsDC2_1hit_v2
+shmsDC1_5hits_x1     shmsDC1_1hit_u1&&shmsDC1_1hit_u2&&shmsDC1_1hit_x2&&shmsDC1_1hit_v1&&shmsDC1_1hit_v2
+shmsDC1_6hits_x1     h1hit1&&shmsDC1_1hit_u1&&shmsDC1_1hit_u2&&shmsDC1_1hit_x2&&shmsDC1_1hit_v1&&shmsDC1_1hit_v2
+shmsDC1_5hits_u1     shmsDC1_1hit_x1&&shmsDC1_1hit_u2&&shmsDC1_1hit_x2&&shmsDC1_1hit_v1&&shmsDC1_1hit_v2
+shmsDC1_6hits_u1     h1hit2&&shmsDC1_1hit_x1&&shmsDC1_1hit_u2&&shmsDC1_1hit_x2&&shmsDC1_1hit_v1&&shmsDC1_1hit_v2
+shmsDC1_5hits_u2     shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_x2&&shmsDC1_1hit_v1&&shmsDC1_1hit_v2
+shmsDC1_6hits_u2     h1hit3&&shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_x2&&shmsDC1_1hit_v1&&shmsDC1_1hit_v2
+shmsDC1_5hits_v1     shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_x2&&shmsDC1_1hit_u2&&shmsDC1_1hit_v2
+shmsDC1_6hits_v1     h1hit4&&shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_x2&&shmsDC1_1hit_u2&&shmsDC1_1hit_v2
+shmsDC1_5hits_v2     shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_x2&&shmsDC1_1hit_u2&&shmsDC1_1hit_v1
+shmsDC1_6hits_v2     h1hit5&&shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_x2&&shmsDC1_1hit_u2&&shmsDC1_1hit_v1
+shmsDC1_5hits_x2     shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_v1&&shmsDC1_1hit_u2&&shmsDC1_1hit_v2
+shmsDC1_6hits_x2     h1hit6&&shmsDC1_1hit_x1&&shmsDC1_1hit_u1&&shmsDC1_1hit_v1&&shmsDC1_1hit_u2&&shmsDC1_1hit_v2
+
+shmsDC2_5hits_x1     shmsDC2_1hit_u1&&shmsDC2_1hit_u2&&shmsDC2_1hit_x2&&shmsDC2_1hit_v1&&shmsDC2_1hit_v2
+shmsDC2_6hits_x1     h2hit1&&shmsDC2_1hit_u1&&shmsDC2_1hit_u2&&shmsDC2_1hit_x2&&shmsDC2_1hit_v1&&shmsDC2_1hit_v2
+shmsDC2_5hits_u1     shmsDC2_1hit_x1&&shmsDC2_1hit_u2&&shmsDC2_1hit_x2&&shmsDC2_1hit_v1&&shmsDC2_1hit_v2
+shmsDC2_6hits_u1     h2hit2&&shmsDC2_1hit_x1&&shmsDC2_1hit_u2&&shmsDC2_1hit_x2&&shmsDC2_1hit_v1&&shmsDC2_1hit_v2
+shmsDC2_5hits_u2     shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_x2&&shmsDC2_1hit_v1&&shmsDC2_1hit_v2
+shmsDC2_6hits_u2     h2hit3&&shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_x2&&shmsDC2_1hit_v1&&shmsDC2_1hit_v2
+shmsDC2_5hits_v1     shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_x2&&shmsDC2_1hit_u2&&shmsDC2_1hit_v2
+shmsDC2_6hits_v1     h2hit4&&shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_x2&&shmsDC2_1hit_u2&&shmsDC2_1hit_v2
+shmsDC2_5hits_v2     shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_x2&&shmsDC2_1hit_u2&&shmsDC2_1hit_v1
+shmsDC2_6hits_v2     h2hit5&&shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_x2&&shmsDC2_1hit_u2&&shmsDC2_1hit_v1
+shmsDC2_5hits_x2     shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_v1&&shmsDC2_1hit_u2&&shmsDC2_1hit_v2
+shmsDC2_6hits_x2     h2hit6&&shmsDC2_1hit_x1&&shmsDC2_1hit_u1&&shmsDC2_1hit_v1&&shmsDC2_1hit_u2&&shmsDC2_1hit_v2
+
+
+
+
+
+shms1HitsLt            P.dc.Ch1.nhit <= P.dc.Ch1.maxhits && g.evtyp==1
+shms2HitsLt            P.dc.Ch2.nhit <= P.dc.Ch2.maxhits && g.evtyp==1
+shmsHitsLt             P.dc.Ch1.nhit <= P.dc.Ch1.maxhits && P.dc.Ch2.nhit <= P.dc.Ch2.maxhits && g.evtyp==1
+shmsDC1PlanesGT        (h1hit1 + h1hit2 + h1hit3 + h1hit4 + h1hit5 + h1hit6 )>=5
+shmsDC2PlanesGT        (h2hit1 + h2hit2 + h2hit3 + h2hit4 + h2hit5 + h2hit6 )>=5
+shmsPlanesGT           shmsDC1PlanesGT && shmsDC2PlanesGT
+shmsHitsPlanes         (P.dc.Ch1.nhit <= P.dc.Ch1.maxhits) && (P.dc.Ch2.nhit <= P.dc.Ch2.maxhits) && shmsPlanesGT
+hSpacePoints          P.dc.Ch1.spacepoints >= 1 && P.dc.Ch2.spacepoints >=1
+hSpacePointsStub      P.dc.stubtest==1 && P.dc.Ch1.spacepoints >=1 && P.dc.Ch2.spacepoints >=1
+hFoundTrack           P.dc.ntrack>0 
+hStubLT               P.dc.stubtest==1
+f1HSpacePoints        shms1HitsLt && shmsDC1PlanesGT && P.dc.Ch1.spacepoints==0 && g.evtyp==1
+f2HSpacePoints        shms2HitsLt && shmsDC2PlanesGT && P.dc.Ch2.spacepoints==0 && g.evtyp==1
+hTest1                shmsHitsPlanes && (!hSpacePoints)
+hTest2                hSpacePoints && (!hStubLT)
+
+
+
+
+
+
+Block: CoarseReconstruct
+CoarseReconstruct_master shms_event
+
+Block: Tracking
+Tracking_master  shms_event
+
+Block: Reconstruct
+Reconstruct_master shms_event
+
+shmsScinGood           P.hod.goodscinhit == 1
+
+shmsScinShould         shmsScinGood && P.cal.etotnorm > 0.7 && P.hgcer.npesum > 2.0
+shmsScinShoulde        shmsScinGood && P.hgcer.npesum > 2.0
+shmsScinShouldh        P.hod.goodscinhit == 1 && g.evtyp == 1
+
+shmsScinDid            shmsScinShould && P.dc.ntrack > 0
+shmsScinDide           shmsScinShoulde && P.dc.ntrack > 0
+shmsScinDidh           shmsScinShouldh && P.dc.ntrack > 0
+
+
+
+goodHDC1x1            P.dc.1x1.nhit > 0 && P.dc.1x1.nhit < 3
+goodHDC1u2            P.dc.1u2.nhit > 0 && P.dc.1u2.nhit < 3
+goodHDC1u1            P.dc.1u1.nhit > 0 && P.dc.1u1.nhit < 3
+goodHDC1v1            P.dc.1v1.nhit > 0 && P.dc.1v1.nhit < 3
+goodHDC1v2            P.dc.1v2.nhit > 0 && P.dc.1v2.nhit < 3
+goodHDC1x2            P.dc.1x2.nhit > 0 && P.dc.1x2.nhit < 3
+
+goodHDC2x1            P.dc.2x1.nhit > 0 && P.dc.2x1.nhit < 3
+goodHDC2u2            P.dc.2u2.nhit > 0 && P.dc.2u2.nhit < 3
+goodHDC2u1            P.dc.2u1.nhit > 0 && P.dc.2u1.nhit < 3
+goodHDC2v1            P.dc.2v1.nhit > 0 && P.dc.2v1.nhit < 3
+goodHDC2v2            P.dc.2v2.nhit > 0 && P.dc.2v2.nhit < 3
+goodHDC2x2            P.dc.2x2.nhit > 0 && P.dc.2x2.nhit < 3
+
+goodHDC1              goodHDC1x1  && goodHDC1u2 && goodHDC1u1 && goodHDC1v1 && goodHDC1v2 && goodHDC1x2 
+goodHDC2              goodHDC2x1  && goodHDC2u2 && goodHDC2u1 && goodHDC2v1 && goodHDC2v2 && goodHDC2x2 
+bothGood              goodHDC1 && goodHDC2
+
+realhdc1x1            goodHDC1x1 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc1u2            goodHDC1u2 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc1u1            goodHDC1u1 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc1v1            goodHDC1v1 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc1v2            goodHDC1v2 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc2x2            goodHDC1x2 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc2x1            goodHDC2x1 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc2u2            goodHDC2u2 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc2u1            goodHDC2u1 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc2v1            goodHDC2v1 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc2v2            goodHDC2v2 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+realhdc2x2            goodHDC2x2 && ((P.dc.Ch1.spacepoints+P.dc.Ch2.spacepoints)>0)
+
+hFound1Track          P.dc.ntrack == 1
+hFound2Track          P.dc.ntrack == 2
+hFound3Track          P.dc.ntrack == 3
+hFound4Track          P.dc.ntrack == 4
+
+hCleanTrack           P.gtr.index > -1
+1hCleanTrack          P.gtr.index == 0
+2hCleanTrack          P.gtr.index == 1
+3hCleanTrack          P.gtr.index == 2
+4hCleanTrack          P.gtr.index == 3
+
+anyhs1x               P.hod.1x.nhits > 0
+anyhs1y               P.hod.1y.nhits > 0
+anyhs2x               P.hod.2x.nhits > 0
+anyhs2y               P.hod.2y.nhits > 0
+
+goodhs1x              P.hod.1x.nhits > 0 && P.hod.1x.nhits < 3
+goodhs1y              P.hod.1y.nhits > 0 && P.hod.1y.nhits < 3
+goodhs1               goodhs1x && goodhs1y
+goodhs2x              P.hod.2x.nhits > 0 && P.hod.2x.nhits < 3
+goodhs2y              P.hod.2y.nhits > 0 && P.hod.2y.nhits < 3
+goodhs2               goodhs2x && goodhs2y
+goodhs1s2             goodhs1 && goodhs2
+
+Block: Physics
+Physics_master shms_event
diff --git a/DEF-files/SHMS/HGCER/phgcerana.def b/DEF-files/SHMS/HGCER/phgcerana.def
new file mode 100644
index 0000000000000000000000000000000000000000..f5ce4416714c83652d9cc1e03bad6dd2d535f2f6
--- /dev/null
+++ b/DEF-files/SHMS/HGCER/phgcerana.def
@@ -0,0 +1,25 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block P.hgcer.*
+block T.shms.*
+
+TH1F phgcer_occu 'SHMS Heavy Gas Cherenkov Occupancy; Counter Number; Number of Entries' P.hgcer.adcCounter 4 0.5 4.5
+TH1F phgcer_occu 'SHMS Heavy Gas Cherenkov Occupancy; Counter Number; Number of Entries' P.hgcer.adcCounter 4 0.5 4.5
+
+TH2F phgcer_rawped_vs_cntr 'SHMS Heavy Gas Cherenkov Raw Pulse Pedestal vs. Counter Number; Counter Number; Raw Pulse Pedestal / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPedRaw 4 0.5 4.5 1000 0 10000
+TH2F phgcer_rawpi_vs_cntr 'SHMS Heavy Gas Cherenkov Raw Pulse Integral vs. Counter Number; Counter Number; Raw Pulse Integral / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseIntRaw 4 0.5 4.5 4000 0 40000
+TH2F phgcer_rawamp_vs_cntr 'SHMS Heavy Gas Cherenkov Raw Pulse Amplitude vs. Counter Number; Counter Number; Raw Pulse Amplitude / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseAmpRaw 4 0.5 4.5 410 0 4100
+TH2F phgcer_rawptime_vs_cntr 'SHMS Heavy Gas Cherenkov Raw Pulse Time vs. Counter Number; Counter Number;  Raw Pulse Time / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseTimeRaw 4 0.5 4.5 1000 0 10000
+
+TH2F phgcer_rawped_vs_cntr 'SHMS Heavy Gas Cherenkov Raw Pulse Pedestal vs. Counter Number; Counter Number; Raw Pulse Pedestal / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPedRaw 4 0.5 4.5 1000 0 10000
+TH2F phgcer_rawpi_vs_cntr 'SHMS Heavy Gas Cherenkov Raw Pulse Integral vs. Counter Number; Counter Number; Raw Pulse Integral / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseIntRaw 4 0.5 4.5 4000 0 40000
+TH2F phgcer_rawamp_vs_cntr 'SHMS Heavy Gas Cherenkov Raw Pulse Amplitude vs. Counter Number; Counter Number; Raw Pulse Amplitude / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseAmpRaw 4 0.5 4.5 410 0 4100
+TH2F phgcer_rawptime_vs_cntr 'SHMS Heavy Gas Cherenkov Raw Pulse Time vs. Counter Number; Counter Number;  Raw Pulse Time / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseTimeRaw 4 0.5 4.5 1000 0 10000
+
+TH2F phgcer_ped_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPed 4 0.5 4.5 1000 0 10000
+TH2F phgcer_pi_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseInt 4 0.5 4.5 4000 0 40000
+TH2F phgcer_amp_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseAmp 4 0.5 4.5 410 0 4100
+
+TH2F phgcer_ped_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPed 4 0.5 4.5 1000 0 10000
+TH2F phgcer_pi_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseInt 4 0.5 4.5 4000 0 40000
+TH2F phgcer_amp_vs_cntr 'SHMS Heavy Gas Cherenkov Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 10 ADC Units' P.hgcer.adcCounter P.hgcer.adcPulseAmp 4 0.5 4.5 410 0 4100
diff --git a/DEF-files/SHMS/HGCER/phgcerana_cuts.def b/DEF-files/SHMS/HGCER/phgcerana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..5add84a3159e6f172fdc03285b01e56eac648310
--- /dev/null
+++ b/DEF-files/SHMS/HGCER/phgcerana_cuts.def
@@ -0,0 +1,14 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
+
diff --git a/DEF-files/SHMS/HODO/phodoana.def b/DEF-files/SHMS/HODO/phodoana.def
new file mode 100644
index 0000000000000000000000000000000000000000..78dd5219976636ff03a7e0156b29f4816a7bed0a
--- /dev/null
+++ b/DEF-files/SHMS/HODO/phodoana.def
@@ -0,0 +1,119 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block P.hod.*
+block T.shms.*
+
+TH1F phodo_1x_multi 'SHMS 1X Multiplicity; Number of Hits; Counts' P.hod.1x.nhits 13 0.5 13.5
+TH1F phodo_1y_multi 'SHMS 1Y Multiplicity; Number of Hits; Counts' P.hod.1y.nhits 13 0.5 13.5
+TH1F phodo_2x_multi 'SHMS 2X Multiplicity; Number of Hits; Counts' P.hod.2x.nhits 14 0.5 14.5
+TH1F phodo_2y_multi 'SHMS 2Y Multiplicity; Number of Hits; Counts' P.hod.2y.nhits 21 0.5 21.5
+
+TH1F phodo_1x_pos_adc_occu 'SHMS 1X+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.1x.posAdcCounter 13 0.5 13.5
+TH1F phodo_1y_pos_adc_occu 'SHMS 1Y+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.1y.posAdcCounter 13 0.5 13.5 
+TH1F phodo_2x_pos_adc_occu 'SHMS 2X+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.2x.posAdcCounter 14 0.5 14.5
+TH1F phodo_2y_pos_adc_occu 'SHMS 2Y+ ADC Occupancy; Paddle Number; Number of Hits' P.hod.2y.posAdcCounter 21 0.5 21.5
+
+TH1F phodo_1x_neg_adc_occu 'SHMS 1X- ADC Occupancy; Paddle Number; Number of Hits' P.hod.1x.negAdcCounter 13 0.5 13.5
+TH1F phodo_1y_neg_adc_occu 'SHMS 1Y- ADC Occupancy; Paddle Number; Number of Hits' P.hod.1y.negAdcCounter 13 0.5 13.5 
+TH1F phodo_2x_neg_adc_occu 'SHMS 2X- ADC Occupancy; Paddle Number; Number of Hits' P.hod.2x.negAdcCounter 14 0.5 14.5
+TH1F phodo_2y_neg_adc_occu 'SHMS 2Y- ADC Occupancy; Paddle Number; Number of Hits' P.hod.2y.negAdcCounter 21 0.5 21.5
+
+TH1F phodo_1x_pos_tdc_occu 'SHMS 1X+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.1x.posTdcCounter 13 0.5 13.5
+TH1F phodo_1y_pos_tdc_occu 'SHMS 1Y+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.1y.posTdcCounter 13 0.5 13.5 
+TH1F phodo_2x_pos_tdc_occu 'SHMS 2X+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.2x.posTdcCounter 14 0.5 14.5
+TH1F phodo_2y_pos_tdc_occu 'SHMS 2Y+ TDC Occupancy; Paddle Number; Number of Hits' P.hod.2y.posTdcCounter 21 0.5 21.5
+
+TH1F phodo_1x_neg_tdc_occu 'SHMS 1X- TDC Occupancy; Paddle Number; Number of Hits' P.hod.1x.negTdcCounter 13 0.5 13.5
+TH1F phodo_1y_neg_tdc_occu 'SHMS 1Y- TDC Occupancy; Paddle Number; Number of Hits' P.hod.1y.negTdcCounter 13 0.5 13.5 
+TH1F phodo_2x_neg_tdc_occu 'SHMS 2X- TDC Occupancy; Paddle Number; Number of Hits' P.hod.2x.negTdcCounter 14 0.5 14.5
+TH1F phodo_2y_neg_tdc_occu 'SHMS 2Y- TDC Occupancy; Paddle Number; Number of Hits' P.hod.2y.negTdcCounter 21 0.5 21.5
+
+TH2F phodo_1x_pos_rawped_vs_pad 'SHMS 1X+ Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F phodo_1y_pos_rawped_vs_pad 'SHMS 1Y+ Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F phodo_2x_pos_rawped_vs_pad 'SHMS 2X+ Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPedRaw 14 0.5 14.5 400 0 4000
+TH2F phodo_2y_pos_rawped_vs_pad 'SHMS 2Y+ Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPedRaw 21 0.5 21.5 400 0 4000
+
+TH2F phodo_1x_neg_rawped_vs_pad 'SHMS 1X- Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F phodo_1y_neg_rawped_vs_pad 'SHMS 1Y- Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPedRaw 13 0.5 13.5 400 0 4000
+TH2F phodo_2x_neg_rawped_vs_pad 'SHMS 2X- Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPedRaw 14 0.5 14.5 400 0 4000
+TH2F phodo_2y_neg_rawped_vs_pad 'SHMS 2Y- Raw Pulse Pedestal vs. Paddle Number; Paddle Number; Raw Pulse Pedestal / 10 ADC Units' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPedRaw 21 0.5 21.5 400 0 4000
+
+TH2F phodo_1x_pos_rawpi_vs_pad 'SHMS 1X+ Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F phodo_1y_pos_rawpi_vs_pad 'SHMS 1Y+ Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F phodo_2x_pos_rawpi_vs_pad 'SHMS 2X+ Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPulseIntRaw 14 0.5 14.5 4000 0 40000
+TH2F phodo_2y_pos_rawpi_vs_pad 'SHMS 2Y+ Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPulseIntRaw 21 0.5 21.5 4000 0 40000
+
+TH2F phodo_1x_neg_rawpi_vs_pad 'SHMS 1X- Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F phodo_1y_neg_rawpi_vs_pad 'SHMS 1Y- Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPulseIntRaw 13 0.5 13.5 4000 0 40000
+TH2F phodo_2x_neg_rawpi_vs_pad 'SHMS 2X- Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPulseIntRaw 14 0.5 14.5 4000 0 40000
+TH2F phodo_2y_neg_rawpi_vs_pad 'SHMS 2Y- Raw Pulse Integral vs. Paddle Number; Paddle Number; Raw Pulse Integral / 10 ADC Units' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPulseIntRaw 21 0.5 21.5 4000 0 40000
+
+TH2F phodo_1x_pos_rawpamp_vs_pad 'SHMS 1X+ Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F phodo_1y_pos_rawpamp_vs_pad 'SHMS 1Y+ Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F phodo_2x_pos_rawpamp_vs_pad 'SHMS 2X+ Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPulseAmpRaw 14 0.5 14.5 410 0 4100
+TH2F phodo_2y_pos_rawpamp_vs_pad 'SHMS 2Y+ Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPulseAmpRaw 21 0.5 21.5 410 0 4100
+
+TH2F phodo_1x_neg_rawpamp_vs_pad 'SHMS 1X- Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F phodo_1y_neg_rawpamp_vs_pad 'SHMS 1Y- Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPulseAmpRaw 13 0.5 13.5 410 0 4100
+TH2F phodo_2x_neg_rawpamp_vs_pad 'SHMS 2X- Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPulseAmpRaw 14 0.5 14.5 410 0 4100
+TH2F phodo_2y_neg_rawpamp_vs_pad 'SHMS 2Y- Raw Pulse Amplitude vs. Paddle Number; Paddle Number; Raw Pulse Amplitude / 10 ADC Units' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPulseAmpRaw 21 0.5 21.5 410 0 4100
+
+TH2F phodo_1x_pos_rawptime_vs_pad 'SHMS 1X+ Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPulseTimeRaw 13 0.5 13.5 410 0 4100
+TH2F phodo_1y_pos_rawptime_vs_pad 'SHMS 1Y+ Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPulseTimeRaw 13 0.5 13.5 410 0 4100
+TH2F phodo_2x_pos_rawptime_vs_pad 'SHMS 2X+ Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPulseTimeRaw 14 0.5 14.5 410 0 4100
+TH2F phodo_2y_pos_rawptime_vs_pad 'SHMS 2Y+ Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPulseTimeRaw 21 0.5 21.5 410 0 4100
+
+TH2F phodo_1x_neg_rawptime_vs_pad 'SHMS 1X- Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPulseTimeRaw 13 0.5 13.5 410 0 4100
+TH2F phodo_1y_neg_rawptime_vs_pad 'SHMS 1Y- Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPulseTimeRaw 13 0.5 13.5 410 0 4100
+TH2F phodo_2x_neg_rawptime_vs_pad 'SHMS 2X- Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPulseTimeRaw 14 0.5 14.5 410 0 4100
+TH2F phodo_2y_neg_rawptime_vs_pad 'SHMS 2Y- Raw Pulse Time vs. Paddle Number; Paddle Number; Raw Pulse Time / 10 ADC Units' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPulseTimeRaw 21 0.5 21.5 410 0 4100
+
+TH2F phodo_1x_pos_raw_tdc_time_vs_pad 'SHMS 1X+ Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' P.hod.1x.posTdcCounter  P.hod.1x.posTdcTimeRaw 13 0.5 13.5 200 0 2000
+TH2F phodo_1y_pos_raw_tdc_time_vs_pad 'SHMS 1Y+ Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' P.hod.1y.posTdcCounter  P.hod.1y.posTdcTimeRaw 13 0.5 13.5 200 0 2000
+TH2F phodo_2x_pos_raw_tdc_time_vs_pad 'SHMS 2X+ Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' P.hod.2x.posTdcCounter  P.hod.2x.posTdcTimeRaw 14 0.5 14.5 200 0 2000
+TH2F phodo_2y_pos_raw_tdc_time_vs_pad 'SHMS 2Y+ Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' P.hod.2y.posTdcCounter  P.hod.2y.posTdcTimeRaw 21 0.5 21.5 200 0 2000
+
+TH2F phodo_1x_neg_raw_tdc_time_vs_pad 'SHMS 1X- Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' P.hod.1x.negTdcCounter  P.hod.1x.negTdcTimeRaw 13 0.5 13.5 200 0 2000
+TH2F phodo_1y_neg_raw_tdc_time_vs_pad 'SHMS 1Y- Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' P.hod.1y.negTdcCounter  P.hod.1y.negTdcTimeRaw 13 0.5 13.5 200 0 2000
+TH2F phodo_2x_neg_raw_tdc_time_vs_pad 'SHMS 2X- Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' P.hod.2x.negTdcCounter  P.hod.2x.negTdcTimeRaw 14 0.5 14.5 200 0 2000
+TH2F phodo_2y_neg_raw_tdc_time_vs_pad 'SHMS 2Y- Raw TDC Time vs. Paddle Number; Paddle Number; Raw TDC Time / 10 ADC Units' P.hod.2y.negTdcCounter  P.hod.2y.negTdcTimeRaw 21 0.5 21.5 200 0 2000
+
+TH2F phodo_1x_pos_ped_vs_pad 'SHMS 1X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPed 13 0.5 13.5 400 0 4000
+TH2F phodo_1y_pos_ped_vs_pad 'SHMS 1Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPed 13 0.5 13.5 400 0 4000
+TH2F phodo_2x_pos_ped_vs_pad 'SHMS 2X+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPed 14 0.5 14.5 400 0 4000
+TH2F phodo_2y_pos_ped_vs_pad 'SHMS 2Y+ Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPed 21 0.5 21.5 400 0 4000
+
+TH2F phodo_1x_neg_ped_vs_pad 'SHMS 1X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPed 13 0.5 13.5 400 0 4000
+TH2F phodo_1y_neg_ped_vs_pad 'SHMS 1Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPed 13 0.5 13.5 400 0 4000
+TH2F phodo_2x_neg_ped_vs_pad 'SHMS 2X- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPed 14 0.5 14.5 400 0 4000
+TH2F phodo_2y_neg_ped_vs_pad 'SHMS 2Y- Pulse Pedestal vs. Paddle Number; Paddle Number; Pulse Pedestal / 10 ADC Units' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPed 21 0.5 21.5 400 0 4000
+
+TH2F phodo_1x_pos_pi_vs_pad 'SHMS 1X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_1y_pos_pi_vs_pad 'SHMS 1Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_2x_pos_pi_vs_pad 'SHMS 2X+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F phodo_2y_pos_pi_vs_pad 'SHMS 2Y+ Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPulseInt 21 0.5 21.5 4000 0 40000
+
+TH2F phodo_1x_neg_pi_vs_pad 'SHMS 1X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_1y_neg_pi_vs_pad 'SHMS 1Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPulseInt 13 0.5 13.5 4000 0 40000
+TH2F phodo_2x_neg_pi_vs_pad 'SHMS 2X- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPulseInt 14 0.5 14.5 4000 0 40000
+TH2F phodo_2y_neg_pi_vs_pad 'SHMS 2Y- Pulse Integral vs. Paddle Number; Paddle Number; Pulse Integral / 10 ADC Units' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPulseInt 21 0.5 21.5 4000 0 40000
+
+TH2F phodo_1x_pos_pamp_vs_pad 'SHMS 1X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' P.hod.1x.posAdcCounter  P.hod.1x.posAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F phodo_1y_pos_pamp_vs_pad 'SHMS 1Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' P.hod.1y.posAdcCounter  P.hod.1y.posAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F phodo_2x_pos_pamp_vs_pad 'SHMS 2X+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' P.hod.2x.posAdcCounter  P.hod.2x.posAdcPulseAmp 14 0.5 14.5 410 0 4100
+TH2F phodo_2y_pos_pamp_vs_pad 'SHMS 2Y+ Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' P.hod.2y.posAdcCounter  P.hod.2y.posAdcPulseAmp 21 0.5 21.5 410 0 4100
+
+TH2F phodo_1x_neg_pamp_vs_pad 'SHMS 1X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' P.hod.1x.negAdcCounter  P.hod.1x.negAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F phodo_1y_neg_pamp_vs_pad 'SHMS 1Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' P.hod.1y.negAdcCounter  P.hod.1y.negAdcPulseAmp 13 0.5 13.5 410 0 4100
+TH2F phodo_2x_neg_pamp_vs_pad 'SHMS 2X- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' P.hod.2x.negAdcCounter  P.hod.2x.negAdcPulseAmp 14 0.5 14.5 410 0 4100
+TH2F phodo_2y_neg_pamp_vs_pad 'SHMS 2Y- Pulse Amplitude vs. Paddle Number; Paddle Number; Pulse Amplitude / 10 ADC Units' P.hod.2y.negAdcCounter  P.hod.2y.negAdcPulseAmp 21 0.5 21.5 410 0 4100
+
+TH2F phodo_1x_pos_tdc_time_vs_pad 'SHMS 1X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' P.hod.1x.posTdcCounter  P.hod.1x.posTdcTime 13 0.5 13.5 200 -2000 0
+TH2F phodo_1y_pos_tdc_time_vs_pad 'SHMS 1Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' P.hod.1y.posTdcCounter  P.hod.1y.posTdcTime 13 0.5 13.5 200 -2000 0
+TH2F phodo_2x_pos_tdc_time_vs_pad 'SHMS 2X+ TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' P.hod.2x.posTdcCounter  P.hod.2x.posTdcTime 14 0.5 14.5 200 -2000 0
+TH2F phodo_2y_pos_tdc_time_vs_pad 'SHMS 2Y+ TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' P.hod.2y.posTdcCounter  P.hod.2y.posTdcTime 21 0.5 21.5 200 -2000 0
+
+TH2F phodo_1x_neg_tdc_time_vs_pad 'SHMS 1X- TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' P.hod.1x.negTdcCounter  P.hod.1x.negTdcTime 13 0.5 13.5 200 -2000 0
+TH2F phodo_1y_neg_tdc_time_vs_pad 'SHMS 1Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' P.hod.1y.negTdcCounter  P.hod.1y.negTdcTime 13 0.5 13.5 200 -2000 0
+TH2F phodo_2x_neg_tdc_time_vs_pad 'SHMS 2X- TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' P.hod.2x.negTdcCounter  P.hod.2x.negTdcTime 14 0.5 14.5 200 -2000 0
+TH2F phodo_2y_neg_tdc_time_vs_pad 'SHMS 2Y- TDC Time vs. Paddle Number; Paddle Number; TDC Time / 10 ADC Units' P.hod.2y.negTdcCounter  P.hod.2y.negTdcTime 21 0.5 21.5 200 -2000 0
\ No newline at end of file
diff --git a/DEF-files/SHMS/HODO/phodoana_cuts.def b/DEF-files/SHMS/HODO/phodoana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..5add84a3159e6f172fdc03285b01e56eac648310
--- /dev/null
+++ b/DEF-files/SHMS/HODO/phodoana_cuts.def
@@ -0,0 +1,14 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
+
diff --git a/DEF-files/SHMS/NGCER/pngcerana.def b/DEF-files/SHMS/NGCER/pngcerana.def
new file mode 100644
index 0000000000000000000000000000000000000000..d069b91ab6cad4eb6f57f9e2de10d1fadbd5c5a3
--- /dev/null
+++ b/DEF-files/SHMS/NGCER/pngcerana.def
@@ -0,0 +1,15 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block P.ngcer.*
+block T.shms.*
+
+TH1F pngcer_occu 'SHMS Noble Gas Cherenkov Occupancy; Counter Number; Number of Entries' P.ngcer.adcCounter 4 0.5 4.5
+
+TH2F pngcer_rawped_vs_cntr 'SHMS Noble Gas Cherenkov Raw Pulse Pedestal vs. Counter Number; Counter Number; Raw Pulse Pedestal / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPedRaw 4 0.5 4.5 1000 0 10000
+TH2F pngcer_rawpi_vs_cntr 'SHMS Noble Gas Cherenkov Raw Pulse Integral vs. Counter Number; Counter Number; Raw Pulse Integral / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPulseIntRaw 4 0.5 4.5 4000 0 40000
+TH2F pngcer_rawamp_vs_cntr 'SHMS Noble Gas Cherenkov Raw Pulse Amplitude vs. Counter Number; Counter Number; Raw Pulse Amplitude / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPulseAmpRaw 4 0.5 4.5 410 0 4100
+TH2F pngcer_rawptime_vs_cntr 'SHMS Noble Gas Cherenkov Raw Pulse Time vs. Counter Number; Counter Number;  Raw Pulse Time / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPulseTimeRaw 4 0.5 4.5 1000 0 10000
+
+TH2F pngcer_ped_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Pedestal vs. Counter Number; Counter Number;  Pulse Pedestal / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPed 4 0.5 4.5 1000 0 10000
+TH2F pngcer_pi_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Integral vs. Counter Number; Counter Number;  Pulse Integral / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPulseInt 4 0.5 4.5 4000 0 40000
+TH2F pngcer_amp_vs_cntr 'SHMS Noble Gas Cherenkov Pulse Amplitude vs. Counter Number; Counter Number;  Pulse Amplitude / 10 ADC Units' P.ngcer.adcCounter P.ngcer.adcPulseAmp 4 0.5 4.5 410 0 4100
\ No newline at end of file
diff --git a/DEF-files/SHMS/NGCER/pngcerana_cuts.def b/DEF-files/SHMS/NGCER/pngcerana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..5add84a3159e6f172fdc03285b01e56eac648310
--- /dev/null
+++ b/DEF-files/SHMS/NGCER/pngcerana_cuts.def
@@ -0,0 +1,14 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
+
diff --git a/DEF-files/SHMS/RASTER/shms_raster_simple.def b/DEF-files/SHMS/RASTER/shms_raster_simple.def
new file mode 100644
index 0000000000000000000000000000000000000000..c8d3aff7bdefb10303af6f773f460cd0331a9d43
--- /dev/null
+++ b/DEF-files/SHMS/RASTER/shms_raster_simple.def
@@ -0,0 +1,20 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block T.shms.*
+# Assume FADC range is set to 1V and the integration is 25 channels
+# Offset in the FADC is about 0.122V or 500 channels.
+formula FRXA_V T.shms.pFRXA_adcPulseIntRaw*(1./4096.)/25.
+formula FRXB_V T.shms.pFRXB_adcPulseIntRaw*(1./4096.)/25.
+formula FRYA_V T.shms.pFRYA_adcPulseIntRaw*(1./4096.)/25.
+formula FRYB_V T.shms.pFRYB_adcPulseIntRaw*(1./4096.)/25.
+TH1F pFRXA 'SHMS FRXA; FRXA RAW ADC (chan); Counts' T.shms.pFRXA_adcPulseIntRaw 1000 0 100000
+TH1F pFRXA_V 'SHMS FRXA; FRXA RAW ADC (Volts); Counts' FRXA_V 1000 0 1.0
+TH1F pFRXB 'SHMS FRXB; FRXB RAW ADC (chan); Counts' T.shms.pFRXB_adcPulseIntRaw 1000 0 100000
+TH1F pFRXB_V 'SHMS FRXB; FRXB RAW ADC (Volts); Counts' FRXB_V 1000 0 1.0
+TH1F pFRYA 'SHMS FRYA; FRYA RAW ADC (chan); Counts' T.shms.pFRYA_adcPulseIntRaw 1000 0 100000
+TH1F pFRYA_V 'SHMS FRYA; FRYA RAW ADC (Volts); Counts' FRYA_V 1000 0 1.0
+TH1F pFRYB 'SHMS FRYB; FRYB RAW ADC (chan); Counts' T.shms.pFRYB_adcPulseIntRaw 1000 0 100000
+TH1F pFRYB_V 'SHMS FRYB; FRYB RAW ADC (Volts); Counts' FRYB_V 1000 0 1.0
+TH2F pFRA_XvsY 'HMSFRA_XvsY ; FRXA RAW ADC (Volts); FRYA RAW ADC (Volts)' FRXA_V FRYA_V 1000 0 1.0 1000 0 1.0
+TH2F pFRB_XvsY 'HMSFRB_XvsY ; FRXB RAW ADC (Volts); FRYB RAW ADC (Volts)' FRXB_V FRYB_V 1000 0 1.0 1000 0 1.0
+
diff --git a/DEF-files/SHMS/RASTER/shms_raster_simple_cuts.def b/DEF-files/SHMS/RASTER/shms_raster_simple_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/SHMS/RASTER/shms_raster_simple_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/DEF-files/SHMS/TRIG/ptrigana.def b/DEF-files/SHMS/TRIG/ptrigana.def
new file mode 100644
index 0000000000000000000000000000000000000000..cfa66389536654b9f0ec1d9dac7bac3f2690c64a
--- /dev/null
+++ b/DEF-files/SHMS/TRIG/ptrigana.def
@@ -0,0 +1,38 @@
+# See $ANALYZER/examples/output_example.def for examples
+#
+block T.shms.*
+
+TH1F ptrig_p1x_tdc 'SHMS p1x TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1X_tdcTime 250 0 2500
+TH1F ptrig_p1y_tdc 'SHMS p1y TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1Y_tdcTime 250 0 2500
+TH1F ptrig_p2x_tdc 'SHMS p2x TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2X_tdcTime 250 0 2500
+TH1F ptrig_p2y_tdc 'SHMS p2y TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2Y_tdcTime 250 0 2500
+
+TH1F ptrig_p1T_tdc 'SHMS p1x/p1y Coincidence TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p1T_tdcTime 250 0 2500
+TH1F ptrig_p2T_tdc 'SHMS p2x/p2y Coincidence TDC Time; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.p2T_tdcTime 250 0 2500
+
+TH1F ptrig_pT1_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 20, Channel 15); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT1_tdcTime 250 0 2500
+TH1F ptrig_pT2_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 19, Channel 31); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT2_tdcTime 250 0 2500
+TH1F ptrig_pT3_tdc 'SHMS p1x/p1y/p2x/p2y Coincidence TDC Time (Slot 19, Channel 38); Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pT3_tdcTime 250 0 2500
+
+TH1F ptrig_hdc_ref1  'SHMS HDC Reference Time 1;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF1_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref2  'SHMS HDC Reference Time 2;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF2_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref3  'SHMS HDC Reference Time 3;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF3_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref4  'SHMS HDC Reference Time 4;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF4_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref5  'SHMS HDC Reference Time 5;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF5_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref6  'SHMS HDC Reference Time 6;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF6_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref7  'SHMS HDC Reference Time 7;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF7_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref8  'SHMS HDC Reference Time 8;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF8_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref9  'SHMS HDC Reference Time 9;  Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF9_tdcTime  1500 0 15000
+TH1F ptrig_hdc_ref10 'SHMS HDC Reference Time 10; Raw TDC Time (TDC Units); Counts / 10 TDC Units;' T.shms.pDCREF10_tdcTime 1500 0 15000
+
+TH1F ptrig_pngc_sum_pped 'SHMS Noble Gas Sum FADC Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Units' T.shms.pNGCSUM_adcPed 2000 0 2000
+TH1F ptrig_pngc_sum_pint 'SHMS Noble Gas Sum FADC Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.shms.pNGCSUM_adcPulseInt 4000 0 40000
+TH1F ptrig_pngc_sum_pamp 'SHMS Noble Gas Sum FADC Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Units' T.shms.pNGCSUM_adcPulseAmp 4100 0 4100
+TH1F ptrig_pngc_sum_ptime 'SHMS Noble Gas Sum FADC Pulse Time; Pulse Time; Number of Entries / 10 ADC Units' T.shms.pNGCSUM_adcPulseTimeRaw 1000 0 10000
+TH1F ptrig_pngc_sum_tdc 'SHMS Noble Gas Sum TDC Time; TDC Time; Number of Entries / 10 TDC Units' T.shms.pNGCSUM_tdcTime 700 -3500 3500
+
+TH1F ptrig_phgc_sum_pped 'SHMS Heavy Gas Sum FADC Pulse Pedestal; Pulse Pedestal; Number of Entries / 1 ADC Units' T.shms.pHGCSUM_adcPed 2000 0 2000
+TH1F ptrig_phgc_sum_pint 'SHMS Heavy Gas Sum FADC Pulse Integral; Pulse Integral; Number of Entries / 10 ADC Units' T.shms.pHGCSUM_adcPulseInt 4000 0 40000
+TH1F ptrig_phgc_sum_pamp 'SHMS Heavy Gas Sum FADC Pulse Amplitude; Pulse Amplitude; Number of Entries / 1 ADC Units' T.shms.pHGCSUM_adcPulseAmp 4100 0 4100
+TH1F ptrig_phgc_sum_ptime 'SHMS Heavy Gas Sum FADC Pulse Time; Pulse Time; Number of Entries / 10 ADC Units' T.shms.pHGCSUM_adcPulseTimeRaw 1000 0 10000
+TH1F ptrig_phgc_sum_tdc 'SHMS Heavy Gas Sum TDC Time; TDC Time; Number of Entries / 10 TDC Units' T.shms.pHGCSUM_tdcTime 700 -3500 3500
diff --git a/DEF-files/SHMS/TRIG/ptrigana_cuts.def b/DEF-files/SHMS/TRIG/ptrigana_cuts.def
new file mode 100644
index 0000000000000000000000000000000000000000..3af34a5e9835ac62bdbfcc30004dda336ed171d9
--- /dev/null
+++ b/DEF-files/SHMS/TRIG/ptrigana_cuts.def
@@ -0,0 +1,13 @@
+Block: RawDecode
+
+Pedestal_event 0
+RawDecode_master 1
+
+Block: Decode
+Decode_master 1
+
+Block: CoarseTracking
+CoarseTracking_master 1
+
+Block: CoarseReconstruct
+CourseReconstruct 0
diff --git a/MAPS/HMS/CRATE/db_crate1map.dat b/MAPS/HMS/CRATE/db_crate1map.dat
index 1716cb8036d7f703b460cd6abd0be46607e5571a..e7f21b55c893b663ca6d4b392643739b799d355d 100644
--- a/MAPS/HMS/CRATE/db_crate1map.dat
+++ b/MAPS/HMS/CRATE/db_crate1map.dat
@@ -16,4 +16,4 @@
   17     250     250
   18     250     250
   19     250     250
-  20     1190    1190
\ No newline at end of file
+  20     1190    1190
diff --git a/MAPS/HMS/DETEC/haero.map b/MAPS/HMS/DETEC/haero.map
index a31708860b2e0195d722ad0d9576b1080f2920f3..9c877a40a6126b11da9234c3dbd5e9cce217b33b 100644
--- a/MAPS/HMS/DETEC/haero.map
+++ b/MAPS/HMS/DETEC/haero.map
@@ -24,4 +24,4 @@ SLOT=17
      4,      1,      5,      0!   hAER05+
      5,      1,      6,      0!   hAER06+
      6,      1,      7,      0!   hAER07+
-     7,      1,      8,      0!   hAER08+
\ No newline at end of file
+     7,      1,      8,      0!   hAER08+
diff --git a/MAPS/HMS/DETEC/hcal.map b/MAPS/HMS/DETEC/hcal.map
index 33d9b104a2aaca60edcdb2d7f7715acb6a95c714..c79bed6a035d87096308f520044bdea9c1c2f245 100644
--- a/MAPS/HMS/DETEC/hcal.map
+++ b/MAPS/HMS/DETEC/hcal.map
@@ -36,7 +36,7 @@ SLOT=4
      8,      1,      12,     1!    hA12-
      9,      1,      13,     1!    hA13-
      10,     2,      1,      0!    hB01+
-     11,     2,      2,      0!    hB02+	
+     11,     2,      2,      0!    hB02+
      12,     2,      3,      0!    hB03+
      13,     2,      4,      0!    hB04+
      14,     2,      5,      0!    hB05+
@@ -78,7 +78,7 @@ SLOT=6
      14,     3,      11,     0!    hC11+
      15,     3,      12,     0!    hC12+
 SLOT=7
-! chan   plane    row      sig     
+! chan   plane    row      sig
      0,      3,      13,     0!    hC13+
      1,      4,      1,      0!    hD01+
      2,      4,      2,      0!    hD02+
@@ -92,4 +92,4 @@ SLOT=7
      10,     4,      10,     0!    hD10+
      11,     4,      11,     0!    hD11+
      12,     4,      12,     0!    hD12+
-     13,     4,      13,     0!    hD13+
\ No newline at end of file
+     13,     4,      13,     0!    hD13+
diff --git a/MAPS/HMS/DETEC/hcal_htrig.map b/MAPS/HMS/DETEC/hcal_htrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..3c34c7d201d67f67c9532c06b456b1f9d82369db
--- /dev/null
+++ b/MAPS/HMS/DETEC/hcal_htrig.map
@@ -0,0 +1,145 @@
+! THMS_ID=10       ::  ADC,TDC
+! HCAL_ID=15       ::  ADC,TDC
+
+
+DETECTOR=10
+
+ROC=1
+
+SLOT=17
+   8,   1,   1,   0  ! hASUM
+   9,   1,   2,   0  ! hBSUM
+  10,   1,   3,   0  ! hCSUM
+  11,   1,   4,   0  ! hDSUM
+  12,   1,   5,   0  ! hPSHWR
+  13,   1,   6,   0  ! hSHWR
+  14,   1,   7,   0  ! hAERSUM
+  15,   1,   8,   0  ! hCERSUM
+
+SLOT=2
+   0,   2,   1,   1  ! h1X
+   1,   2,   2,   1  ! h1Y
+   2,   2,   3,   1  ! h2X
+   3,   2,   4,   1  ! h2Y
+   4,   2,   5,   1  ! h1T
+   5,   2,   6,   1  ! h2T
+   6,   2,   7,   1  ! hT1
+   7,   2,   8,   1  ! hASUM
+   8,   2,   9,   1  ! hBSUM
+   9,   2,  10,   1  ! hCSUM
+  10,   2,  11,   1  ! hDSUM
+  11,   2,  12,   1  ! hPSHWRLO
+  12,   2,  13,   1  ! hPSHWRHI
+  13,   2,  14,   1  ! hSHWR
+  14,   2,  15,   1  ! hAERSUM
+  15,   2,  16,   1  ! hCERSUM
+
+SLOT=20
+ 127,   2,  17,   1  ! hT2
+
+ROC=3
+
+SLOT=5
+ 111,   2,  18,   1  ! hDCREF1
+
+SLOT=8
+ 127,   2,  19,   1  ! hDCREF2
+
+SLOT=10
+ 127,   2,  20,   1  ! hDCREF3
+
+SLOT=17
+ 127,   2,  21,   1  ! hDCREF4
+
+
+DETECTOR=15
+
+ROC=1
+
+SLOT=3
+   0,   1,   1,   0  ! hA01+
+   1,   1,   2,   0  ! hA02+
+   2,   1,   3,   0  ! hA03+
+   3,   1,   4,   0  ! hA04+
+   4,   1,   5,   0  ! hA05+
+   5,   1,   6,   0  ! hA06+
+   6,   1,   7,   0  ! hA07+
+   7,   1,   8,   0  ! hA08+
+   8,   1,   9,   0  ! hA09+
+   9,   1,  10,   0  ! hA10+
+  10,   1,  11,   0  ! hA11+
+  11,   1,  12,   0  ! hA12+
+  12,   1,  13,   0  ! hA13+
+  13,   1,   1,   1  ! hA01-
+  14,   1,   2,   1  ! hA02-
+  15,   1,   3,   1  ! hA03-
+
+SLOT=4
+   0,   1,   4,   1  ! hA04-
+   1,   1,   5,   1  ! hA05-
+   2,   1,   6,   1  ! hA06-
+   3,   1,   7,   1  ! hA07-
+   4,   1,   8,   1  ! hA08-
+   5,   1,   9,   1  ! hA09-
+   6,   1,  10,   1  ! hA10-
+   7,   1,  11,   1  ! hA11-
+   8,   1,  12,   1  ! hA12-
+   9,   1,  13,   1  ! hA13-
+  10,   2,   1,   0  ! hB01+
+  11,   2,   2,   0  ! hB02+
+  12,   2,   3,   0  ! hB03+
+  13,   2,   4,   0  ! hB04+
+  14,   2,   5,   0  ! hB05+
+  15,   2,   6,   0  ! hB06+
+
+SLOT=5
+   0,   2,   7,   0  ! hB07+
+   1,   2,   8,   0  ! hB08+
+   2,   2,   9,   0  ! hB09+
+   3,   2,  10,   0  ! hB10+
+   4,   2,  11,   0  ! hB11+
+   5,   2,  12,   0  ! hB12+
+   6,   2,  13,   0  ! hB13+
+   7,   2,   1,   1  ! hB01-
+   8,   2,   2,   1  ! hB02-
+   9,   2,   3,   1  ! hB03-
+  10,   2,   4,   1  ! hB04-
+  11,   2,   5,   1  ! hB05-
+  12,   2,   6,   1  ! hB06-
+  13,   2,   7,   1  ! hB07-
+  14,   2,   8,   1  ! hB08-
+  15,   2,   9,   1  ! hB09-
+
+SLOT=6
+   0,   2,  10,   1  ! hB10-
+   1,   2,  11,   1  ! hB11-
+   2,   2,  12,   1  ! hB12-
+   3,   2,  13,   1  ! hB13-
+   4,   3,   1,   0  ! hC01+
+   5,   3,   2,   0  ! hC02+
+   6,   3,   3,   0  ! hC03+
+   7,   3,   4,   0  ! hC04+
+   8,   3,   5,   0  ! hC05+
+   9,   3,   6,   0  ! hC06+
+  10,   3,   7,   0  ! hC07+
+  11,   3,   8,   0  ! hC08+
+  12,   3,   9,   0  ! hC09+
+  13,   3,  10,   0  ! hC10+
+  14,   3,  11,   0  ! hC11+
+  15,   3,  12,   0  ! hC12+
+
+SLOT=7
+   0,   3,  13,   0  ! hC13+
+   1,   4,   1,   0  ! hD01+
+   2,   4,   2,   0  ! hD02+
+   3,   4,   3,   0  ! hD03+
+   4,   4,   4,   0  ! hD04+
+   5,   4,   5,   0  ! hD05+
+   6,   4,   6,   0  ! hD06+
+   7,   4,   7,   0  ! hD07+
+   8,   4,   8,   0  ! hD08+
+   9,   4,   9,   0  ! hD09+
+  10,   4,  10,   0  ! hD10+
+  11,   4,  11,   0  ! hD11+
+  12,   4,  12,   0  ! hD12+
+  13,   4,  13,   0  ! hD13+
diff --git a/MAPS/HMS/DETEC/hcer.map b/MAPS/HMS/DETEC/hcer.map
new file mode 100644
index 0000000000000000000000000000000000000000..805bd36530b4163dceca8978de314a3412ad9143
--- /dev/null
+++ b/MAPS/HMS/DETEC/hcer.map
@@ -0,0 +1,12 @@
+!HMS:
+! HCER_ID= 14             (TDC),ADC
+
+ROC=1
+detector=14
+
+!F250 modules
+SLOT=7
+!  chan    plane   tube     sig
+    14,      1,      1,      0!    hCER01
+    15,      1,      2,      0!    hCER02
+
diff --git a/MAPS/HMS/DETEC/hcer_htrig.map b/MAPS/HMS/DETEC/hcer_htrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..f46b6ef66ff57c8484f9b34554f1fc40922e734a
--- /dev/null
+++ b/MAPS/HMS/DETEC/hcer_htrig.map
@@ -0,0 +1,61 @@
+! THMS_ID=10       ::  ADC,TDC
+! HCER_ID=14       ::  (TDC),ADC
+
+
+DETECTOR=10
+
+ROC=1
+
+SLOT=17
+   8,   1,   1,   0  ! hASUM
+   9,   1,   2,   0  ! hBSUM
+  10,   1,   3,   0  ! hCSUM
+  11,   1,   4,   0  ! hDSUM
+  12,   1,   5,   0  ! hPSHWR
+  13,   1,   6,   0  ! hSHWR
+  14,   1,   7,   0  ! hAERSUM
+  15,   1,   8,   0  ! hCERSUM
+
+SLOT=2
+   0,   2,   1,   1  ! h1X
+   1,   2,   2,   1  ! h1Y
+   2,   2,   3,   1  ! h2X
+   3,   2,   4,   1  ! h2Y
+   4,   2,   5,   1  ! h1T
+   5,   2,   6,   1  ! h2T
+   6,   2,   7,   1  ! hT1
+   7,   2,   8,   1  ! hASUM
+   8,   2,   9,   1  ! hBSUM
+   9,   2,  10,   1  ! hCSUM
+  10,   2,  11,   1  ! hDSUM
+  11,   2,  12,   1  ! hPSHWRLO
+  12,   2,  13,   1  ! hPSHWRHI
+  13,   2,  14,   1  ! hSHWR
+  14,   2,  15,   1  ! hAERSUM
+  15,   2,  16,   1  ! hCERSUM
+
+SLOT=20
+ 127,   2,  17,   1  ! hT2
+
+ROC=3
+
+SLOT=5
+ 111,   2,  18,   1  ! hDCREF1
+
+SLOT=8
+ 127,   2,  19,   1  ! hDCREF2
+
+SLOT=10
+ 127,   2,  20,   1  ! hDCREF3
+
+SLOT=17
+ 127,   2,  21,   1  ! hDCREF4
+
+
+DETECTOR=14
+
+ROC=1
+
+SLOT=7
+  14,   1,   1,   0  ! hCER01
+  15,   1,   2,   0  ! hCER02
diff --git a/MAPS/HMS/DETEC/hdc.map b/MAPS/HMS/DETEC/hdc.map
index 74b3017e8ec58ea522b46aa225b78490829fdf66..4311a238928221d2a0f10917ced912df7525d2fb 100644
--- a/MAPS/HMS/DETEC/hdc.map
+++ b/MAPS/HMS/DETEC/hdc.map
@@ -1,1141 +1,1159 @@
-!HMS:
-! HDC_ID= 11               TDC
+! HDC_ID=11        ::  TDC
+
+
+DETECTOR=11  ! HMS chambers
 
 ROC=3
-detector=11 ! HMS chambers 
 
-! Caen 1190 VME Modules >> DC1
 SLOT=5
-! channel,plane,wire
-96,3,1 ! Plane U, wire 1
-97,3,2 ! Plane U, wire 2
-98,3,3 ! Plane U, wire 3
-99,3,4 ! Plane U, wire 4
-100,3,5 ! Plane U, wire 5
-101,3,6 ! Plane U, wire 6
-102,3,7 ! Plane U, wire 7
-103,3,8 ! Plane U, wire 8
-104,3,9 ! Plane U, wire 9
-105,3,10 ! Plane U, wire 10
-106,3,11 ! Plane U, wire 11
-107,3,12 ! Plane U, wire 12
-108,3,13 ! Plane U, wire 13
-109,3,14 ! Plane U, wire 14
-110,1,113 ! Plane X, wire 113 
-80,3,15 ! Plane U, wire 15
-81,3,16 ! Plane U, wire 16
-82,3,17 ! Plane U, wire 17
-83,3,18 ! Plane U, wire 18
-84,3,19 ! Plane U, wire 19
-85,3,20 ! Plane U, wire 20
-86,3,21 ! Plane U, wire 21
-87,3,22 ! Plane U, wire 22
-88,3,23 ! Plane U, wire 23
-89,3,24 ! Plane U, wire 24
-90,3,25 ! Plane U, wire 25
-91,3,26 ! Plane U, wire 26
-92,3,27 ! Plane U, wire 27
-93,3,28 ! Plane U, wire 28
-94,3,29 ! Plane U, wire 29
-64,3,30 ! Plane U, wire 30
-65,3,31 ! Plane U, wire 31
-66,3,32 ! Plane U, wire 32
-67,3,33 ! Plane U, wire 33
-68,3,34 ! Plane U, wire 34
-69,3,35 ! Plane U, wire 35
-70,3,36 ! Plane U, wire 36
-71,3,37 ! Plane U, wire 37
-72,3,38 ! Plane U, wire 38
-73,3,39 ! Plane U, wire 39
-74,3,40 ! Plane U, wire 40
-75,3,41 ! Plane U, wire 41
-76,3,42 ! Plane U, wire 42
-77,3,43 ! Plane U, wire 43
-78,3,44 ! Plane U, wire 44
-79,3,45 ! Plane U, wire 45
-48,3,46 ! Plane U, wire 46
-49,3,47 ! Plane U, wire 47
-50,3,48 ! Plane U, wire 48
-51,3,49 ! Plane U, wire 49
-52,3,50 ! Plane U, wire 50
-53,3,51 ! Plane U, wire 51
-54,3,52 ! Plane U, wire 52
-55,3,53 ! Plane U, wire 53
-56,3,54 ! Plane U, wire 54
-57,3,55 ! Plane U, wire 55
-58,3,56 ! Plane U, wire 56
-59,3,57 ! Plane U, wire 57
-60,3,58 ! Plane U, wire 58
-61,3,59 ! Plane U, wire 59
-62,3,60 ! Plane U, wire 60
-32,3,61 ! Plane U, wire 61
-33,3,62 ! Plane U, wire 62
-34,3,63 ! Plane U, wire 63
-35,3,64 ! Plane U, wire 64
-36,3,65 ! Plane U, wire 65
-37,3,66 ! Plane U, wire 66
-38,3,67 ! Plane U, wire 67
-39,3,68 ! Plane U, wire 68
-40,3,69 ! Plane U, wire 69
-41,3,70 ! Plane U, wire 70
-42,3,71 ! Plane U, wire 71
-43,3,72 ! Plane U, wire 72
-44,3,73 ! Plane U, wire 73
-45,3,74 ! Plane U, wire 74
-46,3,75 ! Plane U, wire 75
-47,3,76 ! Plane U, wire 76
-16,3,77 ! Plane U, wire 77
-17,3,78 ! Plane U, wire 78
-18,3,79 ! Plane U, wire 79
-19,3,80 ! Plane U, wire 80
-20,3,81 ! Plane U, wire 81
-21,3,82 ! Plane U, wire 82
-22,3,83 ! Plane U, wire 83
-23,3,84 ! Plane U, wire 84
-24,3,85 ! Plane U, wire 85
-25,3,86 ! Plane U, wire 86
-26,3,87 ! Plane U, wire 87
-27,3,88 ! Plane U, wire 88
-28,3,89 ! Plane U, wire 89
-29,3,90 ! Plane U, wire 90
-30,3,91 ! Plane U, wire 91
-0,3,92 ! Plane U, wire 92
-1,3,93 ! Plane U, wire 93
-2,3,94 ! Plane U, wire 94
-3,3,95 ! Plane U, wire 95
-4,3,96 ! Plane U, wire 96
-5,3,97 ! Plane U, wire 97
-6,3,98 ! Plane U, wire 98
-7,3,99 ! Plane U, wire 99
-8,3,100 ! Plane U, wire 100
-9,3,101 ! Plane U, wire 101
-10,3,102 ! Plane U, wire 102
-11,3,103 ! Plane U, wire 103
-12,3,104 ! Plane U, wire 104
-13,3,105 ! Plane U, wire 105
-14,3,106 ! Plane U, wire 106
-15,3,107 ! Plane U, wire 107
+REFINDEX=0
+ 111,1000,   0,   0
+  96,   3,   1  ! Plane U, wire 1
+  97,   3,   2  ! Plane U, wire 2
+  98,   3,   3  ! Plane U, wire 3
+  99,   3,   4  ! Plane U, wire 4
+ 100,   3,   5  ! Plane U, wire 5
+ 101,   3,   6  ! Plane U, wire 6
+ 102,   3,   7  ! Plane U, wire 7
+ 103,   3,   8  ! Plane U, wire 8
+ 104,   3,   9  ! Plane U, wire 9
+ 105,   3,  10  ! Plane U, wire 10
+ 106,   3,  11  ! Plane U, wire 11
+ 107,   3,  12  ! Plane U, wire 12
+ 108,   3,  13  ! Plane U, wire 13
+ 109,   3,  14  ! Plane U, wire 14
+ 110,   1, 113  ! Plane X, wire 113
+  80,   3,  15  ! Plane U, wire 15
+  81,   3,  16  ! Plane U, wire 16
+  82,   3,  17  ! Plane U, wire 17
+  83,   3,  18  ! Plane U, wire 18
+  84,   3,  19  ! Plane U, wire 19
+  85,   3,  20  ! Plane U, wire 20
+  86,   3,  21  ! Plane U, wire 21
+  87,   3,  22  ! Plane U, wire 22
+  88,   3,  23  ! Plane U, wire 23
+  89,   3,  24  ! Plane U, wire 24
+  90,   3,  25  ! Plane U, wire 25
+  91,   3,  26  ! Plane U, wire 26
+  92,   3,  27  ! Plane U, wire 27
+  93,   3,  28  ! Plane U, wire 28
+  94,   3,  29  ! Plane U, wire 29
+  64,   3,  30  ! Plane U, wire 30
+  65,   3,  31  ! Plane U, wire 31
+  66,   3,  32  ! Plane U, wire 32
+  67,   3,  33  ! Plane U, wire 33
+  68,   3,  34  ! Plane U, wire 34
+  69,   3,  35  ! Plane U, wire 35
+  70,   3,  36  ! Plane U, wire 36
+  71,   3,  37  ! Plane U, wire 37
+  72,   3,  38  ! Plane U, wire 38
+  73,   3,  39  ! Plane U, wire 39
+  74,   3,  40  ! Plane U, wire 40
+  75,   3,  41  ! Plane U, wire 41
+  76,   3,  42  ! Plane U, wire 42
+  77,   3,  43  ! Plane U, wire 43
+  78,   3,  44  ! Plane U, wire 44
+  79,   3,  45  ! Plane U, wire 45
+  48,   3,  46  ! Plane U, wire 46
+  49,   3,  47  ! Plane U, wire 47
+  50,   3,  48  ! Plane U, wire 48
+  51,   3,  49  ! Plane U, wire 49
+  52,   3,  50  ! Plane U, wire 50
+  53,   3,  51  ! Plane U, wire 51
+  54,   3,  52  ! Plane U, wire 52
+  55,   3,  53  ! Plane U, wire 53
+  56,   3,  54  ! Plane U, wire 54
+  57,   3,  55  ! Plane U, wire 55
+  58,   3,  56  ! Plane U, wire 56
+  59,   3,  57  ! Plane U, wire 57
+  60,   3,  58  ! Plane U, wire 58
+  61,   3,  59  ! Plane U, wire 59
+  62,   3,  60  ! Plane U, wire 60
+  32,   3,  61  ! Plane U, wire 61
+  33,   3,  62  ! Plane U, wire 62
+  34,   3,  63  ! Plane U, wire 63
+  35,   3,  64  ! Plane U, wire 64
+  36,   3,  65  ! Plane U, wire 65
+  37,   3,  66  ! Plane U, wire 66
+  38,   3,  67  ! Plane U, wire 67
+  39,   3,  68  ! Plane U, wire 68
+  40,   3,  69  ! Plane U, wire 69
+  41,   3,  70  ! Plane U, wire 70
+  42,   3,  71  ! Plane U, wire 71
+  43,   3,  72  ! Plane U, wire 72
+  44,   3,  73  ! Plane U, wire 73
+  45,   3,  74  ! Plane U, wire 74
+  46,   3,  75  ! Plane U, wire 75
+  47,   3,  76  ! Plane U, wire 76
+  16,   3,  77  ! Plane U, wire 77
+  17,   3,  78  ! Plane U, wire 78
+  18,   3,  79  ! Plane U, wire 79
+  19,   3,  80  ! Plane U, wire 80
+  20,   3,  81  ! Plane U, wire 81
+  21,   3,  82  ! Plane U, wire 82
+  22,   3,  83  ! Plane U, wire 83
+  23,   3,  84  ! Plane U, wire 84
+  24,   3,  85  ! Plane U, wire 85
+  25,   3,  86  ! Plane U, wire 86
+  26,   3,  87  ! Plane U, wire 87
+  27,   3,  88  ! Plane U, wire 88
+  28,   3,  89  ! Plane U, wire 89
+  29,   3,  90  ! Plane U, wire 90
+  30,   3,  91  ! Plane U, wire 91
+   0,   3,  92  ! Plane U, wire 92
+   1,   3,  93  ! Plane U, wire 93
+   2,   3,  94  ! Plane U, wire 94
+   3,   3,  95  ! Plane U, wire 95
+   4,   3,  96  ! Plane U, wire 96
+   5,   3,  97  ! Plane U, wire 97
+   6,   3,  98  ! Plane U, wire 98
+   7,   3,  99  ! Plane U, wire 99
+   8,   3, 100  ! Plane U, wire 100
+   9,   3, 101  ! Plane U, wire 101
+  10,   3, 102  ! Plane U, wire 102
+  11,   3, 103  ! Plane U, wire 103
+  12,   3, 104  ! Plane U, wire 104
+  13,   3, 105  ! Plane U, wire 105
+  14,   3, 106  ! Plane U, wire 106
+  15,   3, 107  ! Plane U, wire 107
+
 SLOT=7
-! channel,plane,wire
-96,4,1 ! Plane V, wire 1
-97,4,2 ! Plane V, wire 2
-98,4,3 ! Plane V, wire 3
-99,4,4 ! Plane V, wire 4
-100,4,5 ! Plane V, wire 5
-101,4,6 ! Plane V, wire 6
-102,4,7 ! Plane V, wire 7
-103,4,8 ! Plane V, wire 8
-104,4,9 ! Plane V, wire 9
-105,4,10 ! Plane V, wire 10
-106,4,11 ! Plane V, wire 11
-107,4,12 ! Plane V, wire 12
-108,4,13 ! Plane V, wire 13
-109,4,14 ! Plane V, wire 14
-110,6,113 ! Plane X', wire 113
-112,4,15 ! Plane V, wire 15
-113,4,16 ! Plane V, wire 16
-114,4,17 ! Plane V, wire 17
-115,4,18 ! Plane V, wire 18
-116,4,19 ! Plane V, wire 19
-117,4,20 ! Plane V, wire 20
-118,4,21 ! Plane V, wire 21
-119,4,22 ! Plane V, wire 22
-120,4,23 ! Plane V, wire 23
-121,4,24 ! Plane V, wire 24
-122,4,25 ! Plane V, wire 25
-123,4,26 ! Plane V, wire 26
-124,4,27 ! Plane V, wire 27
-125,4,28 ! Plane V, wire 28
-126,4,29 ! Plane V, wire 29
+REFINDEX=0
+  96,   4,   1  ! Plane V, wire 1
+  97,   4,   2  ! Plane V, wire 2
+  98,   4,   3  ! Plane V, wire 3
+  99,   4,   4  ! Plane V, wire 4
+ 100,   4,   5  ! Plane V, wire 5
+ 101,   4,   6  ! Plane V, wire 6
+ 102,   4,   7  ! Plane V, wire 7
+ 103,   4,   8  ! Plane V, wire 8
+ 104,   4,   9  ! Plane V, wire 9
+ 105,   4,  10  ! Plane V, wire 10
+ 106,   4,  11  ! Plane V, wire 11
+ 107,   4,  12  ! Plane V, wire 12
+ 108,   4,  13  ! Plane V, wire 13
+ 109,   4,  14  ! Plane V, wire 14
+ 110,   6, 113  ! Plane X', wire 113
+ 112,   4,  15  ! Plane V, wire 15
+ 113,   4,  16  ! Plane V, wire 16
+ 114,   4,  17  ! Plane V, wire 17
+ 115,   4,  18  ! Plane V, wire 18
+ 116,   4,  19  ! Plane V, wire 19
+ 117,   4,  20  ! Plane V, wire 20
+ 118,   4,  21  ! Plane V, wire 21
+ 119,   4,  22  ! Plane V, wire 22
+ 120,   4,  23  ! Plane V, wire 23
+ 121,   4,  24  ! Plane V, wire 24
+ 122,   4,  25  ! Plane V, wire 25
+ 123,   4,  26  ! Plane V, wire 26
+ 124,   4,  27  ! Plane V, wire 27
+ 125,   4,  28  ! Plane V, wire 28
+ 126,   4,  29  ! Plane V, wire 29
+
 SLOT=8
-! channel,plane,wire
-0,4,30 ! Plane V, wire 30
-1,4,31 ! Plane V, wire 31
-2,4,32 ! Plane V, wire 32
-3,4,33 ! Plane V, wire 33
-4,4,34 ! Plane V, wire 34
-5,4,35 ! Plane V, wire 35
-6,4,36 ! Plane V, wire 36
-7,4,37 ! Plane V, wire 37
-8,4,38 ! Plane V, wire 38
-9,4,39 ! Plane V, wire 39
-10,4,40 ! Plane V, wire 40
-11,4,41 ! Plane V, wire 41
-12,4,42 ! Plane V, wire 42
-13,4,43 ! Plane V, wire 43
-14,4,44 ! Plane V, wire 44
-15,4,45 ! Plane V, wire 45
-16,4,46 ! Plane V, wire 46
-17,4,47 ! Plane V, wire 47
-18,4,48 ! Plane V, wire 48
-19,4,49 ! Plane V, wire 49
-20,4,50 ! Plane V, wire 50
-21,4,51 ! Plane V, wire 51
-22,4,52 ! Plane V, wire 52
-23,4,53 ! Plane V, wire 53
-24,4,54 ! Plane V, wire 54
-25,4,55 ! Plane V, wire 55
-26,4,56 ! Plane V, wire 56
-27,4,57 ! Plane V, wire 57
-28,4,58 ! Plane V, wire 58
-29,4,59 ! Plane V, wire 59
-30,4,60 ! Plane V, wire 60
-32,4,61 ! Plane V, wire 61
-33,4,62 ! Plane V, wire 62
-34,4,63 ! Plane V, wire 63
-35,4,64 ! Plane V, wire 64
-36,4,65 ! Plane V, wire 65
-37,4,66 ! Plane V, wire 66
-38,4,67 ! Plane V, wire 67
-39,4,68 ! Plane V, wire 68
-40,4,69 ! Plane V, wire 69
-41,4,70 ! Plane V, wire 70
-42,4,71 ! Plane V, wire 71
-43,4,72 ! Plane V, wire 72
-44,4,73 ! Plane V, wire 73
-45,4,74 ! Plane V, wire 74
-46,4,75 ! Plane V, wire 75
-47,4,76 ! Plane V, wire 76
-48,4,77 ! Plane V, wire 77
-49,4,78 ! Plane V, wire 78
-50,4,79 ! Plane V, wire 79
-51,4,80 ! Plane V, wire 80
-52,4,81 ! Plane V, wire 81
-53,4,82 ! Plane V, wire 82
-54,4,83 ! Plane V, wire 83
-55,4,84 ! Plane V, wire 84
-56,4,85 ! Plane V, wire 85
-57,4,86 ! Plane V, wire 86
-58,4,87 ! Plane V, wire 87
-59,4,88 ! Plane V, wire 88
-60,4,89 ! Plane V, wire 89
-61,4,90 ! Plane V, wire 90
-62,4,91 ! Plane V, wire 91
+REFINDEX=0
+ 127,1000,   0,   1
+   0,   4,  30  ! Plane V, wire 30
+   1,   4,  31  ! Plane V, wire 31
+   2,   4,  32  ! Plane V, wire 32
+   3,   4,  33  ! Plane V, wire 33
+   4,   4,  34  ! Plane V, wire 34
+   5,   4,  35  ! Plane V, wire 35
+   6,   4,  36  ! Plane V, wire 36
+   7,   4,  37  ! Plane V, wire 37
+   8,   4,  38  ! Plane V, wire 38
+   9,   4,  39  ! Plane V, wire 39
+  10,   4,  40  ! Plane V, wire 40
+  11,   4,  41  ! Plane V, wire 41
+  12,   4,  42  ! Plane V, wire 42
+  13,   4,  43  ! Plane V, wire 43
+  14,   4,  44  ! Plane V, wire 44
+  15,   4,  45  ! Plane V, wire 45
+  16,   4,  46  ! Plane V, wire 46
+  17,   4,  47  ! Plane V, wire 47
+  18,   4,  48  ! Plane V, wire 48
+  19,   4,  49  ! Plane V, wire 49
+  20,   4,  50  ! Plane V, wire 50
+  21,   4,  51  ! Plane V, wire 51
+  22,   4,  52  ! Plane V, wire 52
+  23,   4,  53  ! Plane V, wire 53
+  24,   4,  54  ! Plane V, wire 54
+  25,   4,  55  ! Plane V, wire 55
+  26,   4,  56  ! Plane V, wire 56
+  27,   4,  57  ! Plane V, wire 57
+  28,   4,  58  ! Plane V, wire 58
+  29,   4,  59  ! Plane V, wire 59
+  30,   4,  60  ! Plane V, wire 60
+  32,   4,  61  ! Plane V, wire 61
+  33,   4,  62  ! Plane V, wire 62
+  34,   4,  63  ! Plane V, wire 63
+  35,   4,  64  ! Plane V, wire 64
+  36,   4,  65  ! Plane V, wire 65
+  37,   4,  66  ! Plane V, wire 66
+  38,   4,  67  ! Plane V, wire 67
+  39,   4,  68  ! Plane V, wire 68
+  40,   4,  69  ! Plane V, wire 69
+  41,   4,  70  ! Plane V, wire 70
+  42,   4,  71  ! Plane V, wire 71
+  43,   4,  72  ! Plane V, wire 72
+  44,   4,  73  ! Plane V, wire 73
+  45,   4,  74  ! Plane V, wire 74
+  46,   4,  75  ! Plane V, wire 75
+  47,   4,  76  ! Plane V, wire 76
+  48,   4,  77  ! Plane V, wire 77
+  49,   4,  78  ! Plane V, wire 78
+  50,   4,  79  ! Plane V, wire 79
+  51,   4,  80  ! Plane V, wire 80
+  52,   4,  81  ! Plane V, wire 81
+  53,   4,  82  ! Plane V, wire 82
+  54,   4,  83  ! Plane V, wire 83
+  55,   4,  84  ! Plane V, wire 84
+  56,   4,  85  ! Plane V, wire 85
+  57,   4,  86  ! Plane V, wire 86
+  58,   4,  87  ! Plane V, wire 87
+  59,   4,  88  ! Plane V, wire 88
+  60,   4,  89  ! Plane V, wire 89
+  61,   4,  90  ! Plane V, wire 90
+  62,   4,  91  ! Plane V, wire 91
+
 SLOT=4
-! channel,plane,wire
-96,4,92 ! Plane V, wire 92
-97,4,93 ! Plane V, wire 93
-98,4,94 ! Plane V, wire 94
-99,4,95 ! Plane V, wire 95
-100,4,96 ! Plane V, wire 96
-101,4,97 ! Plane V, wire 97
-102,4,98 ! Plane V, wire 98
-103,4,99 ! Plane V, wire 99
-104,4,100 ! Plane V, wire 100
-105,4,101 ! Plane V, wire 101
-106,4,102 ! Plane V, wire 102
-107,4,103 ! Plane V, wire 103
-108,4,104 ! Plane V, wire 104
-109,4,105 ! Plane V, wire 105
-110,4,106 ! Plane V, wire 106
-111,4,107 ! Plane V, wire 107
-80,1,1 ! Plane X, wire 1
-81,1,2 ! Plane X, wire 2
-82,1,3 ! Plane X, wire 3
-83,1,4 ! Plane X, wire 4
-84,1,5 ! Plane X, wire 5
-85,1,6 ! Plane X, wire 6
-86,1,7 ! Plane X, wire 7
-87,1,8 ! Plane X, wire 8
-88,1,9 ! Plane X, wire 9
-89,1,10 ! Plane X, wire 10
-90,1,11 ! Plane X, wire 11
-91,1,12 ! Plane X, wire 12
-92,1,13 ! Plane X, wire 13
-93,1,14 ! Plane X, wire 14
-94,1,15 ! Plane X, wire 15
-95,1,16 ! Plane X, wire 16
-64,1,17 ! Plane X, wire 17
-65,1,18 ! Plane X, wire 18
-66,1,19 ! Plane X, wire 19
-67,1,20 ! Plane X, wire 20
-68,1,21 ! Plane X, wire 21
-69,1,22 ! Plane X, wire 22
-70,1,23 ! Plane X, wire 23
-71,1,24 ! Plane X, wire 24
-72,1,25 ! Plane X, wire 25
-73,1,26 ! Plane X, wire 26
-74,1,27 ! Plane X, wire 27
-75,1,28 ! Plane X, wire 28
-76,1,29 ! Plane X, wire 29
-77,1,30 ! Plane X, wire 30
-78,1,31 ! Plane X, wire 31
-79,1,32 ! Plane X, wire 32
-48,1,33 ! Plane X, wire 33
-49,1,34 ! Plane X, wire 34
-50,1,35 ! Plane X, wire 35
-51,1,36 ! Plane X, wire 36
-52,1,37 ! Plane X, wire 37
-53,1,38 ! Plane X, wire 38
-54,1,39 ! Plane X, wire 39
-55,1,40 ! Plane X, wire 40
-56,1,41 ! Plane X, wire 41
-57,1,42 ! Plane X, wire 42
-58,1,43 ! Plane X, wire 43
-59,1,44 ! Plane X, wire 44
-60,1,45 ! Plane X, wire 45
-61,1,46 ! Plane X, wire 46
-62,1,47 ! Plane X, wire 47
-63,1,48 ! Plane X, wire 48
-32,1,49 ! Plane X, wire 49
-33,1,50 ! Plane X, wire 50
-34,1,51 ! Plane X, wire 51
-35,1,52 ! Plane X, wire 52
-36,1,53 ! Plane X, wire 53
-37,1,54 ! Plane X, wire 54
-38,1,55 ! Plane X, wire 55
-39,1,56 ! Plane X, wire 56
-40,1,57 ! Plane X, wire 57
-41,1,58 ! Plane X, wire 58
-42,1,59 ! Plane X, wire 59
-43,1,60 ! Plane X, wire 60
-44,1,61 ! Plane X, wire 61
-45,1,62 ! Plane X, wire 62
-46,1,63 ! Plane X, wire 63
-47,1,64 ! Plane X, wire 64
-16,1,65 ! Plane X, wire 65
-17,1,66 ! Plane X, wire 66
-18,1,67 ! Plane X, wire 67
-19,1,68 ! Plane X, wire 68
-20,1,69 ! Plane X, wire 69
-21,1,70 ! Plane X, wire 70
-22,1,71 ! Plane X, wire 71
-23,1,72 ! Plane X, wire 72
-24,1,73 ! Plane X, wire 73
-25,1,74 ! Plane X, wire 74
-26,1,75 ! Plane X, wire 75
-27,1,76 ! Plane X, wire 76
-28,1,77 ! Plane X, wire 77
-29,1,78 ! Plane X, wire 78
-30,1,79 ! Plane X, wire 79
-31,1,80 ! Plane X, wire 80
-0,1,81 ! Plane X, wire 81
-1,1,82 ! Plane X, wire 82
-2,1,83 ! Plane X, wire 83
-3,1,84 ! Plane X, wire 84
-4,1,85 ! Plane X, wire 85
-5,1,86 ! Plane X, wire 86
-6,1,87 ! Plane X, wire 87
-7,1,88 ! Plane X, wire 88
-8,1,89 ! Plane X, wire 89
-9,1,90 ! Plane X, wire 90
-10,1,91 ! Plane X, wire 91
-11,1,92 ! Plane X, wire 92
-12,1,93 ! Plane X, wire 93
-13,1,94 ! Plane X, wire 94
-14,1,95 ! Plane X, wire 95
-15,1,96 ! Plane X, wire 96
+REFINDEX=0
+  96,   4,  92  ! Plane V, wire 92
+  97,   4,  93  ! Plane V, wire 93
+  98,   4,  94  ! Plane V, wire 94
+  99,   4,  95  ! Plane V, wire 95
+ 100,   4,  96  ! Plane V, wire 96
+ 101,   4,  97  ! Plane V, wire 97
+ 102,   4,  98  ! Plane V, wire 98
+ 103,   4,  99  ! Plane V, wire 99
+ 104,   4, 100  ! Plane V, wire 100
+ 105,   4, 101  ! Plane V, wire 101
+ 106,   4, 102  ! Plane V, wire 102
+ 107,   4, 103  ! Plane V, wire 103
+ 108,   4, 104  ! Plane V, wire 104
+ 109,   4, 105  ! Plane V, wire 105
+ 110,   4, 106  ! Plane V, wire 106
+ 111,   4, 107  ! Plane V, wire 107
+  80,   1,   1  ! Plane X, wire 1
+  81,   1,   2  ! Plane X, wire 2
+  82,   1,   3  ! Plane X, wire 3
+  83,   1,   4  ! Plane X, wire 4
+  84,   1,   5  ! Plane X, wire 5
+  85,   1,   6  ! Plane X, wire 6
+  86,   1,   7  ! Plane X, wire 7
+  87,   1,   8  ! Plane X, wire 8
+  88,   1,   9  ! Plane X, wire 9
+  89,   1,  10  ! Plane X, wire 10
+  90,   1,  11  ! Plane X, wire 11
+  91,   1,  12  ! Plane X, wire 12
+  92,   1,  13  ! Plane X, wire 13
+  93,   1,  14  ! Plane X, wire 14
+  94,   1,  15  ! Plane X, wire 15
+  95,   1,  16  ! Plane X, wire 16
+  64,   1,  17  ! Plane X, wire 17
+  65,   1,  18  ! Plane X, wire 18
+  66,   1,  19  ! Plane X, wire 19
+  67,   1,  20  ! Plane X, wire 20
+  68,   1,  21  ! Plane X, wire 21
+  69,   1,  22  ! Plane X, wire 22
+  70,   1,  23  ! Plane X, wire 23
+  71,   1,  24  ! Plane X, wire 24
+  72,   1,  25  ! Plane X, wire 25
+  73,   1,  26  ! Plane X, wire 26
+  74,   1,  27  ! Plane X, wire 27
+  75,   1,  28  ! Plane X, wire 28
+  76,   1,  29  ! Plane X, wire 29
+  77,   1,  30  ! Plane X, wire 30
+  78,   1,  31  ! Plane X, wire 31
+  79,   1,  32  ! Plane X, wire 32
+  48,   1,  33  ! Plane X, wire 33
+  49,   1,  34  ! Plane X, wire 34
+  50,   1,  35  ! Plane X, wire 35
+  51,   1,  36  ! Plane X, wire 36
+  52,   1,  37  ! Plane X, wire 37
+  53,   1,  38  ! Plane X, wire 38
+  54,   1,  39  ! Plane X, wire 39
+  55,   1,  40  ! Plane X, wire 40
+  56,   1,  41  ! Plane X, wire 41
+  57,   1,  42  ! Plane X, wire 42
+  58,   1,  43  ! Plane X, wire 43
+  59,   1,  44  ! Plane X, wire 44
+  60,   1,  45  ! Plane X, wire 45
+  61,   1,  46  ! Plane X, wire 46
+  62,   1,  47  ! Plane X, wire 47
+  63,   1,  48  ! Plane X, wire 48
+  32,   1,  49  ! Plane X, wire 49
+  33,   1,  50  ! Plane X, wire 50
+  34,   1,  51  ! Plane X, wire 51
+  35,   1,  52  ! Plane X, wire 52
+  36,   1,  53  ! Plane X, wire 53
+  37,   1,  54  ! Plane X, wire 54
+  38,   1,  55  ! Plane X, wire 55
+  39,   1,  56  ! Plane X, wire 56
+  40,   1,  57  ! Plane X, wire 57
+  41,   1,  58  ! Plane X, wire 58
+  42,   1,  59  ! Plane X, wire 59
+  43,   1,  60  ! Plane X, wire 60
+  44,   1,  61  ! Plane X, wire 61
+  45,   1,  62  ! Plane X, wire 62
+  46,   1,  63  ! Plane X, wire 63
+  47,   1,  64  ! Plane X, wire 64
+  16,   1,  65  ! Plane X, wire 65
+  17,   1,  66  ! Plane X, wire 66
+  18,   1,  67  ! Plane X, wire 67
+  19,   1,  68  ! Plane X, wire 68
+  20,   1,  69  ! Plane X, wire 69
+  21,   1,  70  ! Plane X, wire 70
+  22,   1,  71  ! Plane X, wire 71
+  23,   1,  72  ! Plane X, wire 72
+  24,   1,  73  ! Plane X, wire 73
+  25,   1,  74  ! Plane X, wire 74
+  26,   1,  75  ! Plane X, wire 75
+  27,   1,  76  ! Plane X, wire 76
+  28,   1,  77  ! Plane X, wire 77
+  29,   1,  78  ! Plane X, wire 78
+  30,   1,  79  ! Plane X, wire 79
+  31,   1,  80  ! Plane X, wire 80
+   0,   1,  81  ! Plane X, wire 81
+   1,   1,  82  ! Plane X, wire 82
+   2,   1,  83  ! Plane X, wire 83
+   3,   1,  84  ! Plane X, wire 84
+   4,   1,  85  ! Plane X, wire 85
+   5,   1,  86  ! Plane X, wire 86
+   6,   1,  87  ! Plane X, wire 87
+   7,   1,  88  ! Plane X, wire 88
+   8,   1,  89  ! Plane X, wire 89
+   9,   1,  90  ! Plane X, wire 90
+  10,   1,  91  ! Plane X, wire 91
+  11,   1,  92  ! Plane X, wire 92
+  12,   1,  93  ! Plane X, wire 93
+  13,   1,  94  ! Plane X, wire 94
+  14,   1,  95  ! Plane X, wire 95
+  15,   1,  96  ! Plane X, wire 96
+
 SLOT=7
-! channel,plane,wire
-80,1,97 ! Plane X, wire 97
-81,1,98 ! Plane X, wire 98
-82,1,99 ! Plane X, wire 99
-83,1,100 ! Plane X, wire 100
-84,1,101 ! Plane X, wire 101
-85,1,102 ! Plane X, wire 102
-86,1,103 ! Plane X, wire 103
-87,1,104 ! Plane X, wire 104
-88,1,105 ! Plane X, wire 105
-89,1,106 ! Plane X, wire 106
-90,1,107 ! Plane X, wire 107
-91,1,108 ! Plane X, wire 108
-92,1,109 ! Plane X, wire 109
-93,1,110 ! Plane X, wire 110
-94,1,111 ! Plane X, wire 111
-95,1,112 ! Plane X, wire 112
+REFINDEX=0
+  80,   1,  97  ! Plane X, wire 97
+  81,   1,  98  ! Plane X, wire 98
+  82,   1,  99  ! Plane X, wire 99
+  83,   1, 100  ! Plane X, wire 100
+  84,   1, 101  ! Plane X, wire 101
+  85,   1, 102  ! Plane X, wire 102
+  86,   1, 103  ! Plane X, wire 103
+  87,   1, 104  ! Plane X, wire 104
+  88,   1, 105  ! Plane X, wire 105
+  89,   1, 106  ! Plane X, wire 106
+  90,   1, 107  ! Plane X, wire 107
+  91,   1, 108  ! Plane X, wire 108
+  92,   1, 109  ! Plane X, wire 109
+  93,   1, 110  ! Plane X, wire 110
+  94,   1, 111  ! Plane X, wire 111
+  95,   1, 112  ! Plane X, wire 112
+
 SLOT=4
-! channel,plane,wire
-112,6,1 ! Plane X', wire 1
-113,6,2 ! Plane X', wire 2
-114,6,3 ! Plane X', wire 3
-115,6,4 ! Plane X', wire 4
-116,6,5 ! Plane X', wire 5
-117,6,6 ! Plane X', wire 6
-118,6,7 ! Plane X', wire 7
-119,6,8 ! Plane X', wire 8
-120,6,9 ! Plane X', wire 9
-121,6,10 ! Plane X', wire 10
-122,6,11 ! Plane X', wire 11
-123,6,12 ! Plane X', wire 12
-124,6,13 ! Plane X', wire 13
-125,6,14 ! Plane X', wire 14
-126,6,15 ! Plane X', wire 15
-127,6,16 ! Plane X', wire 16
+REFINDEX=0
+ 112,   6,   1  ! Plane X', wire 1
+ 113,   6,   2  ! Plane X', wire 2
+ 114,   6,   3  ! Plane X', wire 3
+ 115,   6,   4  ! Plane X', wire 4
+ 116,   6,   5  ! Plane X', wire 5
+ 117,   6,   6  ! Plane X', wire 6
+ 118,   6,   7  ! Plane X', wire 7
+ 119,   6,   8  ! Plane X', wire 8
+ 120,   6,   9  ! Plane X', wire 9
+ 121,   6,  10  ! Plane X', wire 10
+ 122,   6,  11  ! Plane X', wire 11
+ 123,   6,  12  ! Plane X', wire 12
+ 124,   6,  13  ! Plane X', wire 13
+ 125,   6,  14  ! Plane X', wire 14
+ 126,   6,  15  ! Plane X', wire 15
+ 127,   6,  16  ! Plane X', wire 16
+
 SLOT=5
-! channel,plane,wire
-112,6,17 ! Plane X', wire 17
-113,6,18 ! Plane X', wire 18
-114,6,19 ! Plane X', wire 19
-115,6,20 ! Plane X', wire 20
-116,6,21 ! Plane X', wire 21
-117,6,22 ! Plane X', wire 22
-118,6,23 ! Plane X', wire 23
-119,6,24 ! Plane X', wire 24
-120,6,25 ! Plane X', wire 25
-121,6,26 ! Plane X', wire 26
-122,6,27 ! Plane X', wire 27
-123,6,28 ! Plane X', wire 28
-124,6,29 ! Plane X', wire 29
-125,6,30 ! Plane X', wire 30
-126,6,31 ! Plane X', wire 31
-127,6,32 ! Plane X', wire 32
+REFINDEX=0
+ 112,   6,  17  ! Plane X', wire 17
+ 113,   6,  18  ! Plane X', wire 18
+ 114,   6,  19  ! Plane X', wire 19
+ 115,   6,  20  ! Plane X', wire 20
+ 116,   6,  21  ! Plane X', wire 21
+ 117,   6,  22  ! Plane X', wire 22
+ 118,   6,  23  ! Plane X', wire 23
+ 119,   6,  24  ! Plane X', wire 24
+ 120,   6,  25  ! Plane X', wire 25
+ 121,   6,  26  ! Plane X', wire 26
+ 122,   6,  27  ! Plane X', wire 27
+ 123,   6,  28  ! Plane X', wire 28
+ 124,   6,  29  ! Plane X', wire 29
+ 125,   6,  30  ! Plane X', wire 30
+ 126,   6,  31  ! Plane X', wire 31
+ 127,   6,  32  ! Plane X', wire 32
+
 SLOT=7
-! channel,plane,wire
-0,6,33 ! Plane X', wire 33
-1,6,34 ! Plane X', wire 34
-2,6,35 ! Plane X', wire 35
-3,6,36 ! Plane X', wire 36
-4,6,37 ! Plane X', wire 37
-5,6,38 ! Plane X', wire 38
-6,6,39 ! Plane X', wire 39
-7,6,40 ! Plane X', wire 40
-8,6,41 ! Plane X', wire 41
-9,6,42 ! Plane X', wire 42
-10,6,43 ! Plane X', wire 43
-11,6,44 ! Plane X', wire 44
-12,6,45 ! Plane X', wire 45
-13,6,46 ! Plane X', wire 46
-14,6,47 ! Plane X', wire 47
-15,6,48 ! Plane X', wire 48
-16,6,49 ! Plane X', wire 49
-17,6,50 ! Plane X', wire 50
-18,6,51 ! Plane X', wire 51
-19,6,52 ! Plane X', wire 52
-20,6,53 ! Plane X', wire 53
-21,6,54 ! Plane X', wire 54
-22,6,55 ! Plane X', wire 55
-23,6,56 ! Plane X', wire 56
-24,6,57 ! Plane X', wire 57
-25,6,58 ! Plane X', wire 58
-26,6,59 ! Plane X', wire 59
-27,6,60 ! Plane X', wire 60
-28,6,61 ! Plane X', wire 61
-29,6,62 ! Plane X', wire 62
-30,6,63 ! Plane X', wire 63
-31,6,64 ! Plane X', wire 64
-32,6,65 ! Plane X', wire 65
-33,6,66 ! Plane X', wire 66
-34,6,67 ! Plane X', wire 67
-35,6,68 ! Plane X', wire 68
-36,6,69 ! Plane X', wire 69
-37,6,70 ! Plane X', wire 70
-38,6,71 ! Plane X', wire 71
-39,6,72 ! Plane X', wire 72
-40,6,73 ! Plane X', wire 73
-41,6,74 ! Plane X', wire 74
-42,6,75 ! Plane X', wire 75
-43,6,76 ! Plane X', wire 76
-44,6,77 ! Plane X', wire 77
-45,6,78 ! Plane X', wire 78
-46,6,79 ! Plane X', wire 79
-47,6,80 ! Plane X', wire 80
-48,6,81 ! Plane X', wire 81
-49,6,82 ! Plane X', wire 82
-50,6,83 ! Plane X', wire 83
-51,6,84 ! Plane X', wire 84
-52,6,85 ! Plane X', wire 85
-53,6,86 ! Plane X', wire 86
-54,6,87 ! Plane X', wire 87
-55,6,88 ! Plane X', wire 88
-56,6,89 ! Plane X', wire 89
-57,6,90 ! Plane X', wire 90
-58,6,91 ! Plane X', wire 91
-59,6,92 ! Plane X', wire 92
-60,6,93 ! Plane X', wire 93
-61,6,94 ! Plane X', wire 94
-62,6,95 ! Plane X', wire 95
-63,6,96 ! Plane X', wire 96
-64,6,97 ! Plane X', wire 97
-65,6,98 ! Plane X', wire 98
-66,6,99 ! Plane X', wire 99
-67,6,100 ! Plane X', wire 100
-68,6,101 ! Plane X', wire 101
-69,6,102 ! Plane X', wire 102
-70,6,103 ! Plane X', wire 103
-71,6,104 ! Plane X', wire 104
-72,6,105 ! Plane X', wire 105
-73,6,106 ! Plane X', wire 106
-74,6,107 ! Plane X', wire 107
-75,6,108 ! Plane X', wire 108
-76,6,109 ! Plane X', wire 109
-77,6,110 ! Plane X', wire 110
-78,6,111 ! Plane X', wire 111
-79,6,112 ! Plane X', wire 112
+REFINDEX=0
+   0,   6,  33  ! Plane X', wire 33
+   1,   6,  34  ! Plane X', wire 34
+   2,   6,  35  ! Plane X', wire 35
+   3,   6,  36  ! Plane X', wire 36
+   4,   6,  37  ! Plane X', wire 37
+   5,   6,  38  ! Plane X', wire 38
+   6,   6,  39  ! Plane X', wire 39
+   7,   6,  40  ! Plane X', wire 40
+   8,   6,  41  ! Plane X', wire 41
+   9,   6,  42  ! Plane X', wire 42
+  10,   6,  43  ! Plane X', wire 43
+  11,   6,  44  ! Plane X', wire 44
+  12,   6,  45  ! Plane X', wire 45
+  13,   6,  46  ! Plane X', wire 46
+  14,   6,  47  ! Plane X', wire 47
+  15,   6,  48  ! Plane X', wire 48
+  16,   6,  49  ! Plane X', wire 49
+  17,   6,  50  ! Plane X', wire 50
+  18,   6,  51  ! Plane X', wire 51
+  19,   6,  52  ! Plane X', wire 52
+  20,   6,  53  ! Plane X', wire 53
+  21,   6,  54  ! Plane X', wire 54
+  22,   6,  55  ! Plane X', wire 55
+  23,   6,  56  ! Plane X', wire 56
+  24,   6,  57  ! Plane X', wire 57
+  25,   6,  58  ! Plane X', wire 58
+  26,   6,  59  ! Plane X', wire 59
+  27,   6,  60  ! Plane X', wire 60
+  28,   6,  61  ! Plane X', wire 61
+  29,   6,  62  ! Plane X', wire 62
+  30,   6,  63  ! Plane X', wire 63
+  31,   6,  64  ! Plane X', wire 64
+  32,   6,  65  ! Plane X', wire 65
+  33,   6,  66  ! Plane X', wire 66
+  34,   6,  67  ! Plane X', wire 67
+  35,   6,  68  ! Plane X', wire 68
+  36,   6,  69  ! Plane X', wire 69
+  37,   6,  70  ! Plane X', wire 70
+  38,   6,  71  ! Plane X', wire 71
+  39,   6,  72  ! Plane X', wire 72
+  40,   6,  73  ! Plane X', wire 73
+  41,   6,  74  ! Plane X', wire 74
+  42,   6,  75  ! Plane X', wire 75
+  43,   6,  76  ! Plane X', wire 76
+  44,   6,  77  ! Plane X', wire 77
+  45,   6,  78  ! Plane X', wire 78
+  46,   6,  79  ! Plane X', wire 79
+  47,   6,  80  ! Plane X', wire 80
+  48,   6,  81  ! Plane X', wire 81
+  49,   6,  82  ! Plane X', wire 82
+  50,   6,  83  ! Plane X', wire 83
+  51,   6,  84  ! Plane X', wire 84
+  52,   6,  85  ! Plane X', wire 85
+  53,   6,  86  ! Plane X', wire 86
+  54,   6,  87  ! Plane X', wire 87
+  55,   6,  88  ! Plane X', wire 88
+  56,   6,  89  ! Plane X', wire 89
+  57,   6,  90  ! Plane X', wire 90
+  58,   6,  91  ! Plane X', wire 91
+  59,   6,  92  ! Plane X', wire 92
+  60,   6,  93  ! Plane X', wire 93
+  61,   6,  94  ! Plane X', wire 94
+  62,   6,  95  ! Plane X', wire 95
+  63,   6,  96  ! Plane X', wire 96
+  64,   6,  97  ! Plane X', wire 97
+  65,   6,  98  ! Plane X', wire 98
+  66,   6,  99  ! Plane X', wire 99
+  67,   6, 100  ! Plane X', wire 100
+  68,   6, 101  ! Plane X', wire 101
+  69,   6, 102  ! Plane X', wire 102
+  70,   6, 103  ! Plane X', wire 103
+  71,   6, 104  ! Plane X', wire 104
+  72,   6, 105  ! Plane X', wire 105
+  73,   6, 106  ! Plane X', wire 106
+  74,   6, 107  ! Plane X', wire 107
+  75,   6, 108  ! Plane X', wire 108
+  76,   6, 109  ! Plane X', wire 109
+  77,   6, 110  ! Plane X', wire 110
+  78,   6, 111  ! Plane X', wire 111
+  79,   6, 112  ! Plane X', wire 112
+
 SLOT=8
-! channel,plane,wire
-64,2,1 ! Plane Y, wire 1
-65,2,2 ! Plane Y, wire 2
-66,2,3 ! Plane Y, wire 3
-67,2,4 ! Plane Y, wire 4
-68,2,5 ! Plane Y, wire 5
-69,2,6 ! Plane Y, wire 6
-70,2,7 ! Plane Y, wire 7
-71,2,8 ! Plane Y, wire 8
-72,2,9 ! Plane Y, wire 9
-73,2,10 ! Plane Y, wire 10
-74,2,11 ! Plane Y, wire 11
-75,2,12 ! Plane Y, wire 12
-76,2,13 ! Plane Y, wire 13
-80,2,14 ! Plane Y, wire 14
-81,2,15 ! Plane Y, wire 15
-82,2,16 ! Plane Y, wire 16
-83,2,17 ! Plane Y, wire 17
-84,2,18 ! Plane Y, wire 18
-85,2,19 ! Plane Y, wire 19
-86,2,20 ! Plane Y, wire 20
-87,2,21 ! Plane Y, wire 21
-88,2,22 ! Plane Y, wire 22
-89,2,23 ! Plane Y, wire 23
-90,2,24 ! Plane Y, wire 24
-91,2,25 ! Plane Y, wire 25
-92,2,26 ! Plane Y, wire 26
-96,2,27 ! Plane Y, wire 27
-97,2,28 ! Plane Y, wire 28
-98,2,29 ! Plane Y, wire 29
-99,2,30 ! Plane Y, wire 30
-100,2,31 ! Plane Y, wire 31
-101,2,32 ! Plane Y, wire 32
-102,2,33 ! Plane Y, wire 33
-103,2,34 ! Plane Y, wire 34
-104,2,35 ! Plane Y, wire 35
-105,2,36 ! Plane Y, wire 36
-106,2,37 ! Plane Y, wire 37
-107,2,38 ! Plane Y, wire 38
-108,2,39 ! Plane Y, wire 39
-112,2,40 ! Plane Y, wire 40
-113,2,41 ! Plane Y, wire 41
-114,2,42 ! Plane Y, wire 42
-115,2,43 ! Plane Y, wire 43
-116,2,44 ! Plane Y, wire 44
-117,2,45 ! Plane Y, wire 45
-118,2,46 ! Plane Y, wire 46
-119,2,47 ! Plane Y, wire 47
-120,2,48 ! Plane Y, wire 48
-121,2,49 ! Plane Y, wire 49
-122,2,50 ! Plane Y, wire 50
-123,2,51 ! Plane Y, wire 51
-124,2,52 ! Plane Y, wire 52
+REFINDEX=0
+  64,   2,   1  ! Plane Y, wire 1
+  65,   2,   2  ! Plane Y, wire 2
+  66,   2,   3  ! Plane Y, wire 3
+  67,   2,   4  ! Plane Y, wire 4
+  68,   2,   5  ! Plane Y, wire 5
+  69,   2,   6  ! Plane Y, wire 6
+  70,   2,   7  ! Plane Y, wire 7
+  71,   2,   8  ! Plane Y, wire 8
+  72,   2,   9  ! Plane Y, wire 9
+  73,   2,  10  ! Plane Y, wire 10
+  74,   2,  11  ! Plane Y, wire 11
+  75,   2,  12  ! Plane Y, wire 12
+  76,   2,  13  ! Plane Y, wire 13
+  80,   2,  14  ! Plane Y, wire 14
+  81,   2,  15  ! Plane Y, wire 15
+  82,   2,  16  ! Plane Y, wire 16
+  83,   2,  17  ! Plane Y, wire 17
+  84,   2,  18  ! Plane Y, wire 18
+  85,   2,  19  ! Plane Y, wire 19
+  86,   2,  20  ! Plane Y, wire 20
+  87,   2,  21  ! Plane Y, wire 21
+  88,   2,  22  ! Plane Y, wire 22
+  89,   2,  23  ! Plane Y, wire 23
+  90,   2,  24  ! Plane Y, wire 24
+  91,   2,  25  ! Plane Y, wire 25
+  92,   2,  26  ! Plane Y, wire 26
+  96,   2,  27  ! Plane Y, wire 27
+  97,   2,  28  ! Plane Y, wire 28
+  98,   2,  29  ! Plane Y, wire 29
+  99,   2,  30  ! Plane Y, wire 30
+ 100,   2,  31  ! Plane Y, wire 31
+ 101,   2,  32  ! Plane Y, wire 32
+ 102,   2,  33  ! Plane Y, wire 33
+ 103,   2,  34  ! Plane Y, wire 34
+ 104,   2,  35  ! Plane Y, wire 35
+ 105,   2,  36  ! Plane Y, wire 36
+ 106,   2,  37  ! Plane Y, wire 37
+ 107,   2,  38  ! Plane Y, wire 38
+ 108,   2,  39  ! Plane Y, wire 39
+ 112,   2,  40  ! Plane Y, wire 40
+ 113,   2,  41  ! Plane Y, wire 41
+ 114,   2,  42  ! Plane Y, wire 42
+ 115,   2,  43  ! Plane Y, wire 43
+ 116,   2,  44  ! Plane Y, wire 44
+ 117,   2,  45  ! Plane Y, wire 45
+ 118,   2,  46  ! Plane Y, wire 46
+ 119,   2,  47  ! Plane Y, wire 47
+ 120,   2,  48  ! Plane Y, wire 48
+ 121,   2,  49  ! Plane Y, wire 49
+ 122,   2,  50  ! Plane Y, wire 50
+ 123,   2,  51  ! Plane Y, wire 51
+ 124,   2,  52  ! Plane Y, wire 52
+
 SLOT=10
-! channel,plane,wire
-0,5,1 ! Plane Y', wire 1
-1,5,2 ! Plane Y', wire 2
-2,5,3 ! Plane Y', wire 3
-3,5,4 ! Plane Y', wire 4
-4,5,5 ! Plane Y', wire 5
-5,5,6 ! Plane Y', wire 6
-6,5,7 ! Plane Y', wire 7
-7,5,8 ! Plane Y', wire 8
-8,5,9 ! Plane Y', wire 9
-9,5,10 ! Plane Y', wire 10
-10,5,11 ! Plane Y', wire 11
-11,5,12 ! Plane Y', wire 12
-12,5,13 ! Plane Y', wire 13
-16,5,14 ! Plane Y', wire 14
-17,5,15 ! Plane Y', wire 15
-18,5,16 ! Plane Y', wire 16
-19,5,17 ! Plane Y', wire 17
-20,5,18 ! Plane Y', wire 18
-21,5,19 ! Plane Y', wire 19
-22,5,20 ! Plane Y', wire 20
-23,5,21 ! Plane Y', wire 21
-24,5,22 ! Plane Y', wire 22
-25,5,23 ! Plane Y', wire 23
-26,5,24 ! Plane Y', wire 24
-27,5,25 ! Plane Y', wire 25
-28,5,26 ! Plane Y', wire 26
-32,5,27 ! Plane Y', wire 27
-33,5,28 ! Plane Y', wire 28
-34,5,29 ! Plane Y', wire 29
-35,5,30 ! Plane Y', wire 30
-36,5,31 ! Plane Y', wire 31
-37,5,32 ! Plane Y', wire 32
-38,5,33 ! Plane Y', wire 33
-39,5,34 ! Plane Y', wire 34
-40,5,35 ! Plane Y', wire 35
-41,5,36 ! Plane Y', wire 36
-42,5,37 ! Plane Y', wire 37
-43,5,38 ! Plane Y', wire 38
-44,5,39 ! Plane Y', wire 39
-48,5,40 ! Plane Y', wire 40
-49,5,41 ! Plane Y', wire 41
-50,5,42 ! Plane Y', wire 42
-51,5,43 ! Plane Y', wire 43
-52,5,44 ! Plane Y', wire 44
-53,5,45 ! Plane Y', wire 45
-54,5,46 ! Plane Y', wire 46
-55,5,47 ! Plane Y', wire 47
-56,5,48 ! Plane Y', wire 48
-57,5,49 ! Plane Y', wire 49
-58,5,50 ! Plane Y', wire 50
-59,5,51 ! Plane Y', wire 51
-60,5,52 ! Plane Y', wire 52
+REFINDEX=0
+ 127,1000,   0,   2
+   0,   5,   1  ! Plane Y', wire 1
+   1,   5,   2  ! Plane Y', wire 2
+   2,   5,   3  ! Plane Y', wire 3
+   3,   5,   4  ! Plane Y', wire 4
+   4,   5,   5  ! Plane Y', wire 5
+   5,   5,   6  ! Plane Y', wire 6
+   6,   5,   7  ! Plane Y', wire 7
+   7,   5,   8  ! Plane Y', wire 8
+   8,   5,   9  ! Plane Y', wire 9
+   9,   5,  10  ! Plane Y', wire 10
+  10,   5,  11  ! Plane Y', wire 11
+  11,   5,  12  ! Plane Y', wire 12
+  12,   5,  13  ! Plane Y', wire 13
+  16,   5,  14  ! Plane Y', wire 14
+  17,   5,  15  ! Plane Y', wire 15
+  18,   5,  16  ! Plane Y', wire 16
+  19,   5,  17  ! Plane Y', wire 17
+  20,   5,  18  ! Plane Y', wire 18
+  21,   5,  19  ! Plane Y', wire 19
+  22,   5,  20  ! Plane Y', wire 20
+  23,   5,  21  ! Plane Y', wire 21
+  24,   5,  22  ! Plane Y', wire 22
+  25,   5,  23  ! Plane Y', wire 23
+  26,   5,  24  ! Plane Y', wire 24
+  27,   5,  25  ! Plane Y', wire 25
+  28,   5,  26  ! Plane Y', wire 26
+  32,   5,  27  ! Plane Y', wire 27
+  33,   5,  28  ! Plane Y', wire 28
+  34,   5,  29  ! Plane Y', wire 29
+  35,   5,  30  ! Plane Y', wire 30
+  36,   5,  31  ! Plane Y', wire 31
+  37,   5,  32  ! Plane Y', wire 32
+  38,   5,  33  ! Plane Y', wire 33
+  39,   5,  34  ! Plane Y', wire 34
+  40,   5,  35  ! Plane Y', wire 35
+  41,   5,  36  ! Plane Y', wire 36
+  42,   5,  37  ! Plane Y', wire 37
+  43,   5,  38  ! Plane Y', wire 38
+  44,   5,  39  ! Plane Y', wire 39
+  48,   5,  40  ! Plane Y', wire 40
+  49,   5,  41  ! Plane Y', wire 41
+  50,   5,  42  ! Plane Y', wire 42
+  51,   5,  43  ! Plane Y', wire 43
+  52,   5,  44  ! Plane Y', wire 44
+  53,   5,  45  ! Plane Y', wire 45
+  54,   5,  46  ! Plane Y', wire 46
+  55,   5,  47  ! Plane Y', wire 47
+  56,   5,  48  ! Plane Y', wire 48
+  57,   5,  49  ! Plane Y', wire 49
+  58,   5,  50  ! Plane Y', wire 50
+  59,   5,  51  ! Plane Y', wire 51
+  60,   5,  52  ! Plane Y', wire 52
 
-! Caen 1190 VME Modules >> DC2
 SLOT=16
-! channel,plane,wire
-96,9,1 ! Plane U, wire 1
-97,9,2 ! Plane U, wire 2
-98,9,3 ! Plane U, wire 3
-99,9,4 ! Plane U, wire 4
-100,9,5 ! Plane U, wire 5
-101,9,6 ! Plane U, wire 6
-102,9,7 ! Plane U, wire 7
-103,9,8 ! Plane U, wire 8
-104,9,9 ! Plane U, wire 9
-105,9,10 ! Plane U, wire 10
-106,9,11 ! Plane U, wire 11
-107,9,12 ! Plane U, wire 12
-108,9,13 ! Plane U, wire 13
-109,9,14 ! Plane U, wire 14
-110,7,113 ! Plane X, wire 113
-112,9,15 ! Plane U, wire 15
-113,9,16 ! Plane U, wire 16
-114,9,17 ! Plane U, wire 17
-115,9,18 ! Plane U, wire 18
-116,9,19 ! Plane U, wire 19
-117,9,20 ! Plane U, wire 20
-118,9,21 ! Plane U, wire 21
-119,9,22 ! Plane U, wire 22
-120,9,23 ! Plane U, wire 23
-121,9,24 ! Plane U, wire 24
-122,9,25 ! Plane U, wire 25
-123,9,26 ! Plane U, wire 26
-124,9,27 ! Plane U, wire 27
-125,9,28 ! Plane U, wire 28
-126,9,29 ! Plane U, wire 29
+REFINDEX=0
+  96,   9,   1  ! Plane U, wire 1
+  97,   9,   2  ! Plane U, wire 2
+  98,   9,   3  ! Plane U, wire 3
+  99,   9,   4  ! Plane U, wire 4
+ 100,   9,   5  ! Plane U, wire 5
+ 101,   9,   6  ! Plane U, wire 6
+ 102,   9,   7  ! Plane U, wire 7
+ 103,   9,   8  ! Plane U, wire 8
+ 104,   9,   9  ! Plane U, wire 9
+ 105,   9,  10  ! Plane U, wire 10
+ 106,   9,  11  ! Plane U, wire 11
+ 107,   9,  12  ! Plane U, wire 12
+ 108,   9,  13  ! Plane U, wire 13
+ 109,   9,  14  ! Plane U, wire 14
+ 110,   7, 113  ! Plane X, wire 113
+ 112,   9,  15  ! Plane U, wire 15
+ 113,   9,  16  ! Plane U, wire 16
+ 114,   9,  17  ! Plane U, wire 17
+ 115,   9,  18  ! Plane U, wire 18
+ 116,   9,  19  ! Plane U, wire 19
+ 117,   9,  20  ! Plane U, wire 20
+ 118,   9,  21  ! Plane U, wire 21
+ 119,   9,  22  ! Plane U, wire 22
+ 120,   9,  23  ! Plane U, wire 23
+ 121,   9,  24  ! Plane U, wire 24
+ 122,   9,  25  ! Plane U, wire 25
+ 123,   9,  26  ! Plane U, wire 26
+ 124,   9,  27  ! Plane U, wire 27
+ 125,   9,  28  ! Plane U, wire 28
+ 126,   9,  29  ! Plane U, wire 29
+
 SLOT=14
-! channel,plane,wire
-0,9,30 ! Plane U, wire 30
-1,9,31 ! Plane U, wire 31
-2,9,32 ! Plane U, wire 32
-3,9,33 ! Plane U, wire 33
-4,9,34 ! Plane U, wire 34
-5,9,35 ! Plane U, wire 35
-6,9,36 ! Plane U, wire 36
-7,9,37 ! Plane U, wire 37
-8,9,38 ! Plane U, wire 38
-9,9,39 ! Plane U, wire 39
-10,9,40 ! Plane U, wire 40
-11,9,41 ! Plane U, wire 41
-12,9,42 ! Plane U, wire 42
-13,9,43 ! Plane U, wire 43
-14,9,44 ! Plane U, wire 44
-15,9,45 ! Plane U, wire 45
-32,9,46 ! Plane U, wire 46
-33,9,47 ! Plane U, wire 47
-34,9,48 ! Plane U, wire 48
-35,9,49 ! Plane U, wire 49
-36,9,50 ! Plane U, wire 50
-37,9,51 ! Plane U, wire 51
-38,9,52 ! Plane U, wire 52
-39,9,53 ! Plane U, wire 53
-40,9,54 ! Plane U, wire 54
-41,9,55 ! Plane U, wire 55
-42,9,56 ! Plane U, wire 56
-43,9,57 ! Plane U, wire 57
-44,9,58 ! Plane U, wire 58
-45,9,59 ! Plane U, wire 59
-46,9,60 ! Plane U, wire 60
-48,9,61 ! Plane U, wire 61
-49,9,62 ! Plane U, wire 62
-50,9,63 ! Plane U, wire 63
-51,9,64 ! Plane U, wire 64
-52,9,65 ! Plane U, wire 65
-53,9,66 ! Plane U, wire 66
-54,9,67 ! Plane U, wire 67
-55,9,68 ! Plane U, wire 68
-56,9,69 ! Plane U, wire 69
-57,9,70 ! Plane U, wire 70
-58,9,71 ! Plane U, wire 71
-59,9,72 ! Plane U, wire 72
-60,9,73 ! Plane U, wire 73
-61,9,74 ! Plane U, wire 74
-62,9,75 ! Plane U, wire 75
-63,9,76 ! Plane U, wire 76
-64,9,77 ! Plane U, wire 77
-65,9,78 ! Plane U, wire 78
-66,9,79 ! Plane U, wire 79
-67,9,80 ! Plane U, wire 80
-68,9,81 ! Plane U, wire 81
-69,9,82 ! Plane U, wire 82
-70,9,83 ! Plane U, wire 83
-71,9,84 ! Plane U, wire 84
-72,9,85 ! Plane U, wire 85
-73,9,86 ! Plane U, wire 86
-74,9,87 ! Plane U, wire 87
-75,9,88 ! Plane U, wire 88
-76,9,89 ! Plane U, wire 89
-77,9,90 ! Plane U, wire 90
-78,9,91 ! Plane U, wire 91
-80,9,92 ! Plane U, wire 92
-81,9,93 ! Plane U, wire 93
-82,9,94 ! Plane U, wire 94
-83,9,95 ! Plane U, wire 95
-84,9,96 ! Plane U, wire 96
-85,9,97 ! Plane U, wire 97
-86,9,98 ! Plane U, wire 98
-87,9,99 ! Plane U, wire 99
-88,9,100 ! Plane U, wire 100
-89,9,101 ! Plane U, wire 101
-90,9,102 ! Plane U, wire 102
-91,9,103 ! Plane U, wire 103
-92,9,104 ! Plane U, wire 104
-93,9,105 ! Plane U, wire 105
-94,9,106 ! Plane U, wire 106
-95,9,107 ! Plane U, wire 107
+REFINDEX=0
+   0,   9,  30  ! Plane U, wire 30
+   1,   9,  31  ! Plane U, wire 31
+   2,   9,  32  ! Plane U, wire 32
+   3,   9,  33  ! Plane U, wire 33
+   4,   9,  34  ! Plane U, wire 34
+   5,   9,  35  ! Plane U, wire 35
+   6,   9,  36  ! Plane U, wire 36
+   7,   9,  37  ! Plane U, wire 37
+   8,   9,  38  ! Plane U, wire 38
+   9,   9,  39  ! Plane U, wire 39
+  10,   9,  40  ! Plane U, wire 40
+  11,   9,  41  ! Plane U, wire 41
+  12,   9,  42  ! Plane U, wire 42
+  13,   9,  43  ! Plane U, wire 43
+  14,   9,  44  ! Plane U, wire 44
+  15,   9,  45  ! Plane U, wire 45
+  32,   9,  46  ! Plane U, wire 46
+  33,   9,  47  ! Plane U, wire 47
+  34,   9,  48  ! Plane U, wire 48
+  35,   9,  49  ! Plane U, wire 49
+  36,   9,  50  ! Plane U, wire 50
+  37,   9,  51  ! Plane U, wire 51
+  38,   9,  52  ! Plane U, wire 52
+  39,   9,  53  ! Plane U, wire 53
+  40,   9,  54  ! Plane U, wire 54
+  41,   9,  55  ! Plane U, wire 55
+  42,   9,  56  ! Plane U, wire 56
+  43,   9,  57  ! Plane U, wire 57
+  44,   9,  58  ! Plane U, wire 58
+  45,   9,  59  ! Plane U, wire 59
+  46,   9,  60  ! Plane U, wire 60
+  48,   9,  61  ! Plane U, wire 61
+  49,   9,  62  ! Plane U, wire 62
+  50,   9,  63  ! Plane U, wire 63
+  51,   9,  64  ! Plane U, wire 64
+  52,   9,  65  ! Plane U, wire 65
+  53,   9,  66  ! Plane U, wire 66
+  54,   9,  67  ! Plane U, wire 67
+  55,   9,  68  ! Plane U, wire 68
+  56,   9,  69  ! Plane U, wire 69
+  57,   9,  70  ! Plane U, wire 70
+  58,   9,  71  ! Plane U, wire 71
+  59,   9,  72  ! Plane U, wire 72
+  60,   9,  73  ! Plane U, wire 73
+  61,   9,  74  ! Plane U, wire 74
+  62,   9,  75  ! Plane U, wire 75
+  63,   9,  76  ! Plane U, wire 76
+  64,   9,  77  ! Plane U, wire 77
+  65,   9,  78  ! Plane U, wire 78
+  66,   9,  79  ! Plane U, wire 79
+  67,   9,  80  ! Plane U, wire 80
+  68,   9,  81  ! Plane U, wire 81
+  69,   9,  82  ! Plane U, wire 82
+  70,   9,  83  ! Plane U, wire 83
+  71,   9,  84  ! Plane U, wire 84
+  72,   9,  85  ! Plane U, wire 85
+  73,   9,  86  ! Plane U, wire 86
+  74,   9,  87  ! Plane U, wire 87
+  75,   9,  88  ! Plane U, wire 88
+  76,   9,  89  ! Plane U, wire 89
+  77,   9,  90  ! Plane U, wire 90
+  78,   9,  91  ! Plane U, wire 91
+  80,   9,  92  ! Plane U, wire 92
+  81,   9,  93  ! Plane U, wire 93
+  82,   9,  94  ! Plane U, wire 94
+  83,   9,  95  ! Plane U, wire 95
+  84,   9,  96  ! Plane U, wire 96
+  85,   9,  97  ! Plane U, wire 97
+  86,   9,  98  ! Plane U, wire 98
+  87,   9,  99  ! Plane U, wire 99
+  88,   9, 100  ! Plane U, wire 100
+  89,   9, 101  ! Plane U, wire 101
+  90,   9, 102  ! Plane U, wire 102
+  91,   9, 103  ! Plane U, wire 103
+  92,   9, 104  ! Plane U, wire 104
+  93,   9, 105  ! Plane U, wire 105
+  94,   9, 106  ! Plane U, wire 106
+  95,   9, 107  ! Plane U, wire 107
+
 SLOT=16
-! channel,plane,wire
-80,10,1 ! Plane V, wire 1
-81,10,2 ! Plane V, wire 2
-82,10,3 ! Plane V, wire 3
-83,10,4 ! Plane V, wire 4
-84,10,5 ! Plane V, wire 5
-85,10,6 ! Plane V, wire 6
-86,10,7 ! Plane V, wire 7
-87,10,8 ! Plane V, wire 8
-88,10,9 ! Plane V, wire 9
-89,10,10 ! Plane V, wire 10
-90,10,11 ! Plane V, wire 11
-91,10,12 ! Plane V, wire 12
-92,10,13 ! Plane V, wire 13
-93,10,14 ! Plane V, wire 14
-94,12,113 ! Plane X', wire 113
+REFINDEX=0
+  80,  10,   1  ! Plane V, wire 1
+  81,  10,   2  ! Plane V, wire 2
+  82,  10,   3  ! Plane V, wire 3
+  83,  10,   4  ! Plane V, wire 4
+  84,  10,   5  ! Plane V, wire 5
+  85,  10,   6  ! Plane V, wire 6
+  86,  10,   7  ! Plane V, wire 7
+  87,  10,   8  ! Plane V, wire 8
+  88,  10,   9  ! Plane V, wire 9
+  89,  10,  10  ! Plane V, wire 10
+  90,  10,  11  ! Plane V, wire 11
+  91,  10,  12  ! Plane V, wire 12
+  92,  10,  13  ! Plane V, wire 13
+  93,  10,  14  ! Plane V, wire 14
+  94,  12, 113  ! Plane X', wire 113
+
 SLOT=14
-! channel,plane,wire
-96,10,15 ! Plane V, wire 15
-97,10,16 ! Plane V, wire 16
-98,10,17 ! Plane V, wire 17
-99,10,18 ! Plane V, wire 18
-100,10,19 ! Plane V, wire 19
-101,10,20 ! Plane V, wire 20
-102,10,21 ! Plane V, wire 21
-103,10,22 ! Plane V, wire 22
-104,10,23 ! Plane V, wire 23
-105,10,24 ! Plane V, wire 24
-106,10,25 ! Plane V, wire 25
-107,10,26 ! Plane V, wire 26
-108,10,27 ! Plane V, wire 27
-109,10,28 ! Plane V, wire 28
-110,10,29 ! Plane V, wire 29
-112,10,30 ! Plane V, wire 30
-113,10,31 ! Plane V, wire 31
-114,10,32 ! Plane V, wire 32
-115,10,33 ! Plane V, wire 33
-116,10,34 ! Plane V, wire 34
-117,10,35 ! Plane V, wire 35
-118,10,36 ! Plane V, wire 36
-119,10,37 ! Plane V, wire 37
-120,10,38 ! Plane V, wire 38
-121,10,39 ! Plane V, wire 39
-122,10,40 ! Plane V, wire 40
-123,10,41 ! Plane V, wire 41
-124,10,42 ! Plane V, wire 42
-125,10,43 ! Plane V, wire 43
-126,10,44 ! Plane V, wire 44
-127,10,45 ! Plane V, wire 45
+REFINDEX=0
+  96,  10,  15  ! Plane V, wire 15
+  97,  10,  16  ! Plane V, wire 16
+  98,  10,  17  ! Plane V, wire 17
+  99,  10,  18  ! Plane V, wire 18
+ 100,  10,  19  ! Plane V, wire 19
+ 101,  10,  20  ! Plane V, wire 20
+ 102,  10,  21  ! Plane V, wire 21
+ 103,  10,  22  ! Plane V, wire 22
+ 104,  10,  23  ! Plane V, wire 23
+ 105,  10,  24  ! Plane V, wire 24
+ 106,  10,  25  ! Plane V, wire 25
+ 107,  10,  26  ! Plane V, wire 26
+ 108,  10,  27  ! Plane V, wire 27
+ 109,  10,  28  ! Plane V, wire 28
+ 110,  10,  29  ! Plane V, wire 29
+ 112,  10,  30  ! Plane V, wire 30
+ 113,  10,  31  ! Plane V, wire 31
+ 114,  10,  32  ! Plane V, wire 32
+ 115,  10,  33  ! Plane V, wire 33
+ 116,  10,  34  ! Plane V, wire 34
+ 117,  10,  35  ! Plane V, wire 35
+ 118,  10,  36  ! Plane V, wire 36
+ 119,  10,  37  ! Plane V, wire 37
+ 120,  10,  38  ! Plane V, wire 38
+ 121,  10,  39  ! Plane V, wire 39
+ 122,  10,  40  ! Plane V, wire 40
+ 123,  10,  41  ! Plane V, wire 41
+ 124,  10,  42  ! Plane V, wire 42
+ 125,  10,  43  ! Plane V, wire 43
+ 126,  10,  44  ! Plane V, wire 44
+ 127,  10,  45  ! Plane V, wire 45
+
 SLOT=17
-! channel,plane,wire
-0,10,46 ! Plane V, wire 46
-1,10,47 ! Plane V, wire 47
-2,10,48 ! Plane V, wire 48
-3,10,49 ! Plane V, wire 49
-4,10,50 ! Plane V, wire 50
-5,10,51 ! Plane V, wire 51
-6,10,52 ! Plane V, wire 52
-7,10,53 ! Plane V, wire 53
-8,10,54 ! Plane V, wire 54
-9,10,55 ! Plane V, wire 55
-10,10,56 ! Plane V, wire 56
-11,10,57 ! Plane V, wire 57
-12,10,58 ! Plane V, wire 58
-13,10,59 ! Plane V, wire 59
-14,10,60 ! Plane V, wire 60
-16,10,61 ! Plane V, wire 61
-17,10,62 ! Plane V, wire 62
-18,10,63 ! Plane V, wire 63
-19,10,64 ! Plane V, wire 64
-20,10,65 ! Plane V, wire 65
-21,10,66 ! Plane V, wire 66
-22,10,67 ! Plane V, wire 67
-23,10,68 ! Plane V, wire 68
-24,10,69 ! Plane V, wire 69
-25,10,70 ! Plane V, wire 70
-26,10,71 ! Plane V, wire 71
-27,10,72 ! Plane V, wire 72
-28,10,73 ! Plane V, wire 73
-29,10,74 ! Plane V, wire 74
-30,10,75 ! Plane V, wire 75
-31,10,76 ! Plane V, wire 76
-32,10,77 ! Plane V, wire 77
-33,10,78 ! Plane V, wire 78
-34,10,79 ! Plane V, wire 79
-35,10,80 ! Plane V, wire 80
-36,10,81 ! Plane V, wire 81
-37,10,82 ! Plane V, wire 82
-38,10,83 ! Plane V, wire 83
-39,10,84 ! Plane V, wire 84
-40,10,85 ! Plane V, wire 85
-41,10,86 ! Plane V, wire 86
-42,10,87 ! Plane V, wire 87
-43,10,88 ! Plane V, wire 88
-44,10,89 ! Plane V, wire 89
-45,10,90 ! Plane V, wire 90
-46,10,91 ! Plane V, wire 91
-48,10,92 ! Plane V, wire 92
-49,10,93 ! Plane V, wire 93
-50,10,94 ! Plane V, wire 94
-51,10,95 ! Plane V, wire 95
-52,10,96 ! Plane V, wire 96
-53,10,97 ! Plane V, wire 97
-54,10,98 ! Plane V, wire 98
-55,10,99 ! Plane V, wire 99
-56,10,100 ! Plane V, wire 100
-57,10,101 ! Plane V, wire 101
-58,10,102 ! Plane V, wire 102
-59,10,103 ! Plane V, wire 103
-60,10,104 ! Plane V, wire 104
-61,10,105 ! Plane V, wire 105
-62,10,106 ! Plane V, wire 106
-63,10,107 ! Plane V, wire 107
+REFINDEX=0
+ 127,1000,   0,   3
+   0,  10,  46  ! Plane V, wire 46
+   1,  10,  47  ! Plane V, wire 47
+   2,  10,  48  ! Plane V, wire 48
+   3,  10,  49  ! Plane V, wire 49
+   4,  10,  50  ! Plane V, wire 50
+   5,  10,  51  ! Plane V, wire 51
+   6,  10,  52  ! Plane V, wire 52
+   7,  10,  53  ! Plane V, wire 53
+   8,  10,  54  ! Plane V, wire 54
+   9,  10,  55  ! Plane V, wire 55
+  10,  10,  56  ! Plane V, wire 56
+  11,  10,  57  ! Plane V, wire 57
+  12,  10,  58  ! Plane V, wire 58
+  13,  10,  59  ! Plane V, wire 59
+  14,  10,  60  ! Plane V, wire 60
+  16,  10,  61  ! Plane V, wire 61
+  17,  10,  62  ! Plane V, wire 62
+  18,  10,  63  ! Plane V, wire 63
+  19,  10,  64  ! Plane V, wire 64
+  20,  10,  65  ! Plane V, wire 65
+  21,  10,  66  ! Plane V, wire 66
+  22,  10,  67  ! Plane V, wire 67
+  23,  10,  68  ! Plane V, wire 68
+  24,  10,  69  ! Plane V, wire 69
+  25,  10,  70  ! Plane V, wire 70
+  26,  10,  71  ! Plane V, wire 71
+  27,  10,  72  ! Plane V, wire 72
+  28,  10,  73  ! Plane V, wire 73
+  29,  10,  74  ! Plane V, wire 74
+  30,  10,  75  ! Plane V, wire 75
+  31,  10,  76  ! Plane V, wire 76
+  32,  10,  77  ! Plane V, wire 77
+  33,  10,  78  ! Plane V, wire 78
+  34,  10,  79  ! Plane V, wire 79
+  35,  10,  80  ! Plane V, wire 80
+  36,  10,  81  ! Plane V, wire 81
+  37,  10,  82  ! Plane V, wire 82
+  38,  10,  83  ! Plane V, wire 83
+  39,  10,  84  ! Plane V, wire 84
+  40,  10,  85  ! Plane V, wire 85
+  41,  10,  86  ! Plane V, wire 86
+  42,  10,  87  ! Plane V, wire 87
+  43,  10,  88  ! Plane V, wire 88
+  44,  10,  89  ! Plane V, wire 89
+  45,  10,  90  ! Plane V, wire 90
+  46,  10,  91  ! Plane V, wire 91
+  48,  10,  92  ! Plane V, wire 92
+  49,  10,  93  ! Plane V, wire 93
+  50,  10,  94  ! Plane V, wire 94
+  51,  10,  95  ! Plane V, wire 95
+  52,  10,  96  ! Plane V, wire 96
+  53,  10,  97  ! Plane V, wire 97
+  54,  10,  98  ! Plane V, wire 98
+  55,  10,  99  ! Plane V, wire 99
+  56,  10, 100  ! Plane V, wire 100
+  57,  10, 101  ! Plane V, wire 101
+  58,  10, 102  ! Plane V, wire 102
+  59,  10, 103  ! Plane V, wire 103
+  60,  10, 104  ! Plane V, wire 104
+  61,  10, 105  ! Plane V, wire 105
+  62,  10, 106  ! Plane V, wire 106
+  63,  10, 107  ! Plane V, wire 107
+
 SLOT=13
-! channel,plane,wire
-0,7,1 ! Plane X, wire 1
-1,7,2 ! Plane X, wire 2
-2,7,3 ! Plane X, wire 3
-3,7,4 ! Plane X, wire 4
-4,7,5 ! Plane X, wire 5
-5,7,6 ! Plane X, wire 6
-6,7,7 ! Plane X, wire 7
-7,7,8 ! Plane X, wire 8
-8,7,9 ! Plane X, wire 9
-9,7,10 ! Plane X, wire 10
-10,7,11 ! Plane X, wire 11
-11,7,12 ! Plane X, wire 12
-12,7,13 ! Plane X, wire 13
-13,7,14 ! Plane X, wire 14
-14,7,15 ! Plane X, wire 15
-15,7,16 ! Plane X, wire 16
-16,7,17 ! Plane X, wire 17
-17,7,18 ! Plane X, wire 18
-18,7,19 ! Plane X, wire 19
-19,7,20 ! Plane X, wire 20
-20,7,21 ! Plane X, wire 21
-21,7,22 ! Plane X, wire 22
-22,7,23 ! Plane X, wire 23
-23,7,24 ! Plane X, wire 24
-24,7,25 ! Plane X, wire 25
-25,7,26 ! Plane X, wire 26
-26,7,27 ! Plane X, wire 27
-27,7,28 ! Plane X, wire 28
-28,7,29 ! Plane X, wire 29
-29,7,30 ! Plane X, wire 30
-30,7,31 ! Plane X, wire 31
-31,7,32 ! Plane X, wire 32
-32,7,33 ! Plane X, wire 33
-33,7,34 ! Plane X, wire 34
-34,7,35 ! Plane X, wire 35
-35,7,36 ! Plane X, wire 36
-36,7,37 ! Plane X, wire 37
-37,7,38 ! Plane X, wire 38
-38,7,39 ! Plane X, wire 39
-39,7,40 ! Plane X, wire 40
-40,7,41 ! Plane X, wire 41
-41,7,42 ! Plane X, wire 42
-42,7,43 ! Plane X, wire 43
-43,7,44 ! Plane X, wire 44
-44,7,45 ! Plane X, wire 45
-45,7,46 ! Plane X, wire 46
-46,7,47 ! Plane X, wire 47
-47,7,48 ! Plane X, wire 48
-48,7,49 ! Plane X, wire 49
-49,7,50 ! Plane X, wire 50
-50,7,51 ! Plane X, wire 51
-51,7,52 ! Plane X, wire 52
-52,7,53 ! Plane X, wire 53
-53,7,54 ! Plane X, wire 54
-54,7,55 ! Plane X, wire 55
-55,7,56 ! Plane X, wire 56
-56,7,57 ! Plane X, wire 57
-57,7,58 ! Plane X, wire 58
-58,7,59 ! Plane X, wire 59
-59,7,60 ! Plane X, wire 60
-60,7,61 ! Plane X, wire 61
-61,7,62 ! Plane X, wire 62
-62,7,63 ! Plane X, wire 63
-63,7,64 ! Plane X, wire 64
-64,7,65 ! Plane X, wire 65
-65,7,66 ! Plane X, wire 66
-66,7,67 ! Plane X, wire 67
-67,7,68 ! Plane X, wire 68
-68,7,69 ! Plane X, wire 69
-69,7,70 ! Plane X, wire 70
-70,7,71 ! Plane X, wire 71
-71,7,72 ! Plane X, wire 72
-72,7,73 ! Plane X, wire 73
-73,7,74 ! Plane X, wire 74
-74,7,75 ! Plane X, wire 75
-75,7,76 ! Plane X, wire 76
-76,7,77 ! Plane X, wire 77
-77,7,78 ! Plane X, wire 78
-78,7,79 ! Plane X, wire 79
-79,7,80 ! Plane X, wire 80
-80,7,81 ! Plane X, wire 81
-81,7,82 ! Plane X, wire 82
-82,7,83 ! Plane X, wire 83
-83,7,84 ! Plane X, wire 84
-84,7,85 ! Plane X, wire 85
-85,7,86 ! Plane X, wire 86
-86,7,87 ! Plane X, wire 87
-87,7,88 ! Plane X, wire 88
-88,7,89 ! Plane X, wire 89
-89,7,90 ! Plane X, wire 90
-90,7,91 ! Plane X, wire 91
-91,7,92 ! Plane X, wire 92
-92,7,93 ! Plane X, wire 93
-93,7,94 ! Plane X, wire 94
-94,7,95 ! Plane X, wire 95
-95,7,96 ! Plane X, wire 96
-96,7,97 ! Plane X, wire 97
-97,7,98 ! Plane X, wire 98
-98,7,99 ! Plane X, wire 99
-99,7,100 ! Plane X, wire 100
-100,7,101 ! Plane X, wire 101
-101,7,102 ! Plane X, wire 102
-102,7,103 ! Plane X, wire 103
-103,7,104 ! Plane X, wire 104
-104,7,105 ! Plane X, wire 105
-105,7,106 ! Plane X, wire 106
-106,7,107 ! Plane X, wire 107
-107,7,108 ! Plane X, wire 108
-108,7,109 ! Plane X, wire 109
-109,7,110 ! Plane X, wire 110
-110,7,111 ! Plane X, wire 111
-111,7,112 ! Plane X, wire 112
-112,12,1 ! Plane X', wire 1
-113,12,2 ! Plane X', wire 2
-114,12,3 ! Plane X', wire 3
-115,12,4 ! Plane X', wire 4
-116,12,5 ! Plane X', wire 5
-117,12,6 ! Plane X', wire 6
-118,12,7 ! Plane X', wire 7
-119,12,8 ! Plane X', wire 8
-120,12,9 ! Plane X', wire 9
-121,12,10 ! Plane X', wire 10
-122,12,11 ! Plane X', wire 11
-123,12,12 ! Plane X', wire 12
-124,12,13 ! Plane X', wire 13
-125,12,14 ! Plane X', wire 14
-126,12,15 ! Plane X', wire 15
-127,12,16 ! Plane X', wire 16
-SLOT=14
-! channel,plane,wire
-16,12,17 ! Plane X', wire 17
-17,12,18 ! Plane X', wire 18
-18,12,19 ! Plane X', wire 19
-19,12,20 ! Plane X', wire 20
-20,12,21 ! Plane X', wire 21
-21,12,22 ! Plane X', wire 22
-22,12,23 ! Plane X', wire 23
-23,12,24 ! Plane X', wire 24
-24,12,25 ! Plane X', wire 25
-25,12,26 ! Plane X', wire 26
-26,12,27 ! Plane X', wire 27
-27,12,28 ! Plane X', wire 28
-28,12,29 ! Plane X', wire 29
-29,12,30 ! Plane X', wire 30
-30,12,31 ! Plane X', wire 31
-31,12,32 ! Plane X', wire 32
-SLOT=16
-! channel,plane,wire
-0,12,33 ! Plane X', wire 33
-1,12,34 ! Plane X', wire 34
-2,12,35 ! Plane X', wire 35
-3,12,36 ! Plane X', wire 36
-4,12,37 ! Plane X', wire 37
-5,12,38 ! Plane X', wire 38
-6,12,39 ! Plane X', wire 39
-7,12,40 ! Plane X', wire 40
-8,12,41 ! Plane X', wire 41
-9,12,42 ! Plane X', wire 42
-10,12,43 ! Plane X', wire 43
-11,12,44 ! Plane X', wire 44
-12,12,45 ! Plane X', wire 45
-13,12,46 ! Plane X', wire 46
-14,12,47 ! Plane X', wire 47
-15,12,48 ! Plane X', wire 48
-16,12,49 ! Plane X', wire 49
-17,12,50 ! Plane X', wire 50
-18,12,51 ! Plane X', wire 51
-19,12,52 ! Plane X', wire 52
-20,12,53 ! Plane X', wire 53
-21,12,54 ! Plane X', wire 54
-22,12,55 ! Plane X', wire 55
-23,12,56 ! Plane X', wire 56
-24,12,57 ! Plane X', wire 57
-25,12,58 ! Plane X', wire 58
-26,12,59 ! Plane X', wire 59
-27,12,60 ! Plane X', wire 60
-28,12,61 ! Plane X', wire 61
-29,12,62 ! Plane X', wire 62
-30,12,63 ! Plane X', wire 63
-31,12,64 ! Plane X', wire 64
-32,12,65 ! Plane X', wire 65
-33,12,66 ! Plane X', wire 66
-34,12,67 ! Plane X', wire 67
-35,12,68 ! Plane X', wire 68
-36,12,69 ! Plane X', wire 69
-37,12,70 ! Plane X', wire 70
-38,12,71 ! Plane X', wire 71
-39,12,72 ! Plane X', wire 72
-40,12,73 ! Plane X', wire 73
-41,12,74 ! Plane X', wire 74
-42,12,75 ! Plane X', wire 75
-43,12,76 ! Plane X', wire 76
-44,12,77 ! Plane X', wire 77
-45,12,78 ! Plane X', wire 78
-46,12,79 ! Plane X', wire 79
-47,12,80 ! Plane X', wire 80
-48,12,81 ! Plane X', wire 81
-49,12,82 ! Plane X', wire 82
-50,12,83 ! Plane X', wire 83
-51,12,84 ! Plane X', wire 84
-52,12,85 ! Plane X', wire 85
-53,12,86 ! Plane X', wire 86
-54,12,87 ! Plane X', wire 87
-55,12,88 ! Plane X', wire 88
-56,12,89 ! Plane X', wire 89
-57,12,90 ! Plane X', wire 90
-58,12,91 ! Plane X', wire 91
-59,12,92 ! Plane X', wire 92
-60,12,93 ! Plane X', wire 93
-61,12,94 ! Plane X', wire 94
-62,12,95 ! Plane X', wire 95
-63,12,96 ! Plane X', wire 96
-64,12,97 ! Plane X', wire 97
-65,12,98 ! Plane X', wire 98
-66,12,99 ! Plane X', wire 99
-67,12,100 ! Plane X', wire 100
-68,12,101 ! Plane X', wire 101
-69,12,102 ! Plane X', wire 102
-70,12,103 ! Plane X', wire 103
-71,12,104 ! Plane X', wire 104
-72,12,105 ! Plane X', wire 105
-73,12,106 ! Plane X', wire 106
-74,12,107 ! Plane X', wire 107
-75,12,108 ! Plane X', wire 108
-76,12,109 ! Plane X', wire 109
-77,12,110 ! Plane X', wire 110
-78,12,111 ! Plane X', wire 111
-79,12,112 ! Plane X', wire 112
-SLOT=17
-! channel,plane,wire
-64,8,1 ! Plane Y, wire 1
-65,8,2 ! Plane Y, wire 2
-66,8,3 ! Plane Y, wire 3
-67,8,4 ! Plane Y, wire 4
-68,8,5 ! Plane Y, wire 5
-69,8,6 ! Plane Y, wire 6
-70,8,7 ! Plane Y, wire 7
-71,8,8 ! Plane Y, wire 8
-72,8,9 ! Plane Y, wire 9
-73,8,10 ! Plane Y, wire 10
-74,8,11 ! Plane Y, wire 11
-75,8,12 ! Plane Y, wire 12
-76,8,13 ! Plane Y, wire 13
-80,8,14 ! Plane Y, wire 14
-81,8,15 ! Plane Y, wire 15
-82,8,16 ! Plane Y, wire 16
-83,8,17 ! Plane Y, wire 17
-84,8,18 ! Plane Y, wire 18
-85,8,19 ! Plane Y, wire 19
-86,8,20 ! Plane Y, wire 20
-87,8,21 ! Plane Y, wire 21
-88,8,22 ! Plane Y, wire 22
-89,8,23 ! Plane Y, wire 23
-90,8,24 ! Plane Y, wire 24
-91,8,25 ! Plane Y, wire 25
-92,8,26 ! Plane Y, wire 26
-96,8,27 ! Plane Y, wire 27
-97,8,28 ! Plane Y, wire 28
-98,8,29 ! Plane Y, wire 29
-99,8,30 ! Plane Y, wire 30
-100,8,31 ! Plane Y, wire 31
-101,8,32 ! Plane Y, wire 32
-102,8,33 ! Plane Y, wire 33
-103,8,34 ! Plane Y, wire 34
-104,8,35 ! Plane Y, wire 35
-105,8,36 ! Plane Y, wire 36
-106,8,37 ! Plane Y, wire 37
-107,8,38 ! Plane Y, wire 38
-108,8,39 ! Plane Y, wire 39
-112,8,40 ! Plane Y, wire 40
-113,8,41 ! Plane Y, wire 41
-114,8,42 ! Plane Y, wire 42
-115,8,43 ! Plane Y, wire 43
-116,8,44 ! Plane Y, wire 44
-117,8,45 ! Plane Y, wire 45
-118,8,46 ! Plane Y, wire 46
-119,8,47 ! Plane Y, wire 47
-120,8,48 ! Plane Y, wire 48
-121,8,49 ! Plane Y, wire 49
-122,8,50 ! Plane Y, wire 50
-123,8,51 ! Plane Y, wire 51
-124,8,52 ! Plane Y, wire 52
-SLOT=10
-! channel,plane,wire
-64,11,1 ! Plane Y', wire 1
-65,11,2 ! Plane Y', wire 2
-66,11,3 ! Plane Y', wire 3
-67,11,4 ! Plane Y', wire 4
-68,11,5 ! Plane Y', wire 5
-69,11,6 ! Plane Y', wire 6
-70,11,7 ! Plane Y', wire 7
-71,11,8 ! Plane Y', wire 8
-72,11,9 ! Plane Y', wire 9
-73,11,10 ! Plane Y', wire 10
-74,11,11 ! Plane Y', wire 11
-75,11,12 ! Plane Y', wire 12
-76,11,13 ! Plane Y', wire 13
-80,11,14 ! Plane Y', wire 14
-81,11,15 ! Plane Y', wire 15
-82,11,16 ! Plane Y', wire 16
-83,11,17 ! Plane Y', wire 17
-84,11,18 ! Plane Y', wire 18
-85,11,19 ! Plane Y', wire 19
-86,11,20 ! Plane Y', wire 20
-87,11,21 ! Plane Y', wire 21
-88,11,22 ! Plane Y', wire 22
-89,11,23 ! Plane Y', wire 23
-90,11,24 ! Plane Y', wire 24
-91,11,25 ! Plane Y', wire 25
-92,11,26 ! Plane Y', wire 26
-96,11,27 ! Plane Y', wire 27
-97,11,28 ! Plane Y', wire 28
-98,11,29 ! Plane Y', wire 29
-99,11,30 ! Plane Y', wire 30
-100,11,31 ! Plane Y', wire 31
-101,11,32 ! Plane Y', wire 32
-102,11,33 ! Plane Y', wire 33
-103,11,34 ! Plane Y', wire 34
-104,11,35 ! Plane Y', wire 35
-105,11,36 ! Plane Y', wire 36
-106,11,37 ! Plane Y', wire 37
-107,11,38 ! Plane Y', wire 38
-108,11,39 ! Plane Y', wire 39
-112,11,40 ! Plane Y', wire 40
-113,11,41 ! Plane Y', wire 41
-114,11,42 ! Plane Y', wire 42
-115,11,43 ! Plane Y', wire 43
-116,11,44 ! Plane Y', wire 44
-117,11,45 ! Plane Y', wire 45
-118,11,46 ! Plane Y', wire 46
-119,11,47 ! Plane Y', wire 47
-120,11,48 ! Plane Y', wire 48
-121,11,49 ! Plane Y', wire 49
-122,11,50 ! Plane Y', wire 50
-123,11,51 ! Plane Y', wire 51
-124,11,52 ! Plane Y', wire 52
+REFINDEX=0
+   0,   7,   1  ! Plane X, wire 1
+   1,   7,   2  ! Plane X, wire 2
+   2,   7,   3  ! Plane X, wire 3
+   3,   7,   4  ! Plane X, wire 4
+   4,   7,   5  ! Plane X, wire 5
+   5,   7,   6  ! Plane X, wire 6
+   6,   7,   7  ! Plane X, wire 7
+   7,   7,   8  ! Plane X, wire 8
+   8,   7,   9  ! Plane X, wire 9
+   9,   7,  10  ! Plane X, wire 10
+  10,   7,  11  ! Plane X, wire 11
+  11,   7,  12  ! Plane X, wire 12
+  12,   7,  13  ! Plane X, wire 13
+  13,   7,  14  ! Plane X, wire 14
+  14,   7,  15  ! Plane X, wire 15
+  15,   7,  16  ! Plane X, wire 16
+  16,   7,  17  ! Plane X, wire 17
+  17,   7,  18  ! Plane X, wire 18
+  18,   7,  19  ! Plane X, wire 19
+  19,   7,  20  ! Plane X, wire 20
+  20,   7,  21  ! Plane X, wire 21
+  21,   7,  22  ! Plane X, wire 22
+  22,   7,  23  ! Plane X, wire 23
+  23,   7,  24  ! Plane X, wire 24
+  24,   7,  25  ! Plane X, wire 25
+  25,   7,  26  ! Plane X, wire 26
+  26,   7,  27  ! Plane X, wire 27
+  27,   7,  28  ! Plane X, wire 28
+  28,   7,  29  ! Plane X, wire 29
+  29,   7,  30  ! Plane X, wire 30
+  30,   7,  31  ! Plane X, wire 31
+  31,   7,  32  ! Plane X, wire 32
+  32,   7,  33  ! Plane X, wire 33
+  33,   7,  34  ! Plane X, wire 34
+  34,   7,  35  ! Plane X, wire 35
+  35,   7,  36  ! Plane X, wire 36
+  36,   7,  37  ! Plane X, wire 37
+  37,   7,  38  ! Plane X, wire 38
+  38,   7,  39  ! Plane X, wire 39
+  39,   7,  40  ! Plane X, wire 40
+  40,   7,  41  ! Plane X, wire 41
+  41,   7,  42  ! Plane X, wire 42
+  42,   7,  43  ! Plane X, wire 43
+  43,   7,  44  ! Plane X, wire 44
+  44,   7,  45  ! Plane X, wire 45
+  45,   7,  46  ! Plane X, wire 46
+  46,   7,  47  ! Plane X, wire 47
+  47,   7,  48  ! Plane X, wire 48
+  48,   7,  49  ! Plane X, wire 49
+  49,   7,  50  ! Plane X, wire 50
+  50,   7,  51  ! Plane X, wire 51
+  51,   7,  52  ! Plane X, wire 52
+  52,   7,  53  ! Plane X, wire 53
+  53,   7,  54  ! Plane X, wire 54
+  54,   7,  55  ! Plane X, wire 55
+  55,   7,  56  ! Plane X, wire 56
+  56,   7,  57  ! Plane X, wire 57
+  57,   7,  58  ! Plane X, wire 58
+  58,   7,  59  ! Plane X, wire 59
+  59,   7,  60  ! Plane X, wire 60
+  60,   7,  61  ! Plane X, wire 61
+  61,   7,  62  ! Plane X, wire 62
+  62,   7,  63  ! Plane X, wire 63
+  63,   7,  64  ! Plane X, wire 64
+  64,   7,  65  ! Plane X, wire 65
+  65,   7,  66  ! Plane X, wire 66
+  66,   7,  67  ! Plane X, wire 67
+  67,   7,  68  ! Plane X, wire 68
+  68,   7,  69  ! Plane X, wire 69
+  69,   7,  70  ! Plane X, wire 70
+  70,   7,  71  ! Plane X, wire 71
+  71,   7,  72  ! Plane X, wire 72
+  72,   7,  73  ! Plane X, wire 73
+  73,   7,  74  ! Plane X, wire 74
+  74,   7,  75  ! Plane X, wire 75
+  75,   7,  76  ! Plane X, wire 76
+  76,   7,  77  ! Plane X, wire 77
+  77,   7,  78  ! Plane X, wire 78
+  78,   7,  79  ! Plane X, wire 79
+  79,   7,  80  ! Plane X, wire 80
+  80,   7,  81  ! Plane X, wire 81
+  81,   7,  82  ! Plane X, wire 82
+  82,   7,  83  ! Plane X, wire 83
+  83,   7,  84  ! Plane X, wire 84
+  84,   7,  85  ! Plane X, wire 85
+  85,   7,  86  ! Plane X, wire 86
+  86,   7,  87  ! Plane X, wire 87
+  87,   7,  88  ! Plane X, wire 88
+  88,   7,  89  ! Plane X, wire 89
+  89,   7,  90  ! Plane X, wire 90
+  90,   7,  91  ! Plane X, wire 91
+  91,   7,  92  ! Plane X, wire 92
+  92,   7,  93  ! Plane X, wire 93
+  93,   7,  94  ! Plane X, wire 94
+  94,   7,  95  ! Plane X, wire 95
+  95,   7,  96  ! Plane X, wire 96
+  96,   7,  97  ! Plane X, wire 97
+  97,   7,  98  ! Plane X, wire 98
+  98,   7,  99  ! Plane X, wire 99
+  99,   7, 100  ! Plane X, wire 100
+ 100,   7, 101  ! Plane X, wire 101
+ 101,   7, 102  ! Plane X, wire 102
+ 102,   7, 103  ! Plane X, wire 103
+ 103,   7, 104  ! Plane X, wire 104
+ 104,   7, 105  ! Plane X, wire 105
+ 105,   7, 106  ! Plane X, wire 106
+ 106,   7, 107  ! Plane X, wire 107
+ 107,   7, 108  ! Plane X, wire 108
+ 108,   7, 109  ! Plane X, wire 109
+ 109,   7, 110  ! Plane X, wire 110
+ 110,   7, 111  ! Plane X, wire 111
+ 111,   7, 112  ! Plane X, wire 112
+ 112,  12,   1  ! Plane X', wire 1
+ 113,  12,   2  ! Plane X', wire 2
+ 114,  12,   3  ! Plane X', wire 3
+ 115,  12,   4  ! Plane X', wire 4
+ 116,  12,   5  ! Plane X', wire 5
+ 117,  12,   6  ! Plane X', wire 6
+ 118,  12,   7  ! Plane X', wire 7
+ 119,  12,   8  ! Plane X', wire 8
+ 120,  12,   9  ! Plane X', wire 9
+ 121,  12,  10  ! Plane X', wire 10
+ 122,  12,  11  ! Plane X', wire 11
+ 123,  12,  12  ! Plane X', wire 12
+ 124,  12,  13  ! Plane X', wire 13
+ 125,  12,  14  ! Plane X', wire 14
+ 126,  12,  15  ! Plane X', wire 15
+ 127,  12,  16  ! Plane X', wire 16
 
+SLOT=14
+REFINDEX=0
+  16,  12,  17  ! Plane X', wire 17
+  17,  12,  18  ! Plane X', wire 18
+  18,  12,  19  ! Plane X', wire 19
+  19,  12,  20  ! Plane X', wire 20
+  20,  12,  21  ! Plane X', wire 21
+  21,  12,  22  ! Plane X', wire 22
+  22,  12,  23  ! Plane X', wire 23
+  23,  12,  24  ! Plane X', wire 24
+  24,  12,  25  ! Plane X', wire 25
+  25,  12,  26  ! Plane X', wire 26
+  26,  12,  27  ! Plane X', wire 27
+  27,  12,  28  ! Plane X', wire 28
+  28,  12,  29  ! Plane X', wire 29
+  29,  12,  30  ! Plane X', wire 30
+  30,  12,  31  ! Plane X', wire 31
+  31,  12,  32  ! Plane X', wire 32
 
+SLOT=16
+REFINDEX=0
+   0,  12,  33  ! Plane X', wire 33
+   1,  12,  34  ! Plane X', wire 34
+   2,  12,  35  ! Plane X', wire 35
+   3,  12,  36  ! Plane X', wire 36
+   4,  12,  37  ! Plane X', wire 37
+   5,  12,  38  ! Plane X', wire 38
+   6,  12,  39  ! Plane X', wire 39
+   7,  12,  40  ! Plane X', wire 40
+   8,  12,  41  ! Plane X', wire 41
+   9,  12,  42  ! Plane X', wire 42
+  10,  12,  43  ! Plane X', wire 43
+  11,  12,  44  ! Plane X', wire 44
+  12,  12,  45  ! Plane X', wire 45
+  13,  12,  46  ! Plane X', wire 46
+  14,  12,  47  ! Plane X', wire 47
+  15,  12,  48  ! Plane X', wire 48
+  16,  12,  49  ! Plane X', wire 49
+  17,  12,  50  ! Plane X', wire 50
+  18,  12,  51  ! Plane X', wire 51
+  19,  12,  52  ! Plane X', wire 52
+  20,  12,  53  ! Plane X', wire 53
+  21,  12,  54  ! Plane X', wire 54
+  22,  12,  55  ! Plane X', wire 55
+  23,  12,  56  ! Plane X', wire 56
+  24,  12,  57  ! Plane X', wire 57
+  25,  12,  58  ! Plane X', wire 58
+  26,  12,  59  ! Plane X', wire 59
+  27,  12,  60  ! Plane X', wire 60
+  28,  12,  61  ! Plane X', wire 61
+  29,  12,  62  ! Plane X', wire 62
+  30,  12,  63  ! Plane X', wire 63
+  31,  12,  64  ! Plane X', wire 64
+  32,  12,  65  ! Plane X', wire 65
+  33,  12,  66  ! Plane X', wire 66
+  34,  12,  67  ! Plane X', wire 67
+  35,  12,  68  ! Plane X', wire 68
+  36,  12,  69  ! Plane X', wire 69
+  37,  12,  70  ! Plane X', wire 70
+  38,  12,  71  ! Plane X', wire 71
+  39,  12,  72  ! Plane X', wire 72
+  40,  12,  73  ! Plane X', wire 73
+  41,  12,  74  ! Plane X', wire 74
+  42,  12,  75  ! Plane X', wire 75
+  43,  12,  76  ! Plane X', wire 76
+  44,  12,  77  ! Plane X', wire 77
+  45,  12,  78  ! Plane X', wire 78
+  46,  12,  79  ! Plane X', wire 79
+  47,  12,  80  ! Plane X', wire 80
+  48,  12,  81  ! Plane X', wire 81
+  49,  12,  82  ! Plane X', wire 82
+  50,  12,  83  ! Plane X', wire 83
+  51,  12,  84  ! Plane X', wire 84
+  52,  12,  85  ! Plane X', wire 85
+  53,  12,  86  ! Plane X', wire 86
+  54,  12,  87  ! Plane X', wire 87
+  55,  12,  88  ! Plane X', wire 88
+  56,  12,  89  ! Plane X', wire 89
+  57,  12,  90  ! Plane X', wire 90
+  58,  12,  91  ! Plane X', wire 91
+  59,  12,  92  ! Plane X', wire 92
+  60,  12,  93  ! Plane X', wire 93
+  61,  12,  94  ! Plane X', wire 94
+  62,  12,  95  ! Plane X', wire 95
+  63,  12,  96  ! Plane X', wire 96
+  64,  12,  97  ! Plane X', wire 97
+  65,  12,  98  ! Plane X', wire 98
+  66,  12,  99  ! Plane X', wire 99
+  67,  12, 100  ! Plane X', wire 100
+  68,  12, 101  ! Plane X', wire 101
+  69,  12, 102  ! Plane X', wire 102
+  70,  12, 103  ! Plane X', wire 103
+  71,  12, 104  ! Plane X', wire 104
+  72,  12, 105  ! Plane X', wire 105
+  73,  12, 106  ! Plane X', wire 106
+  74,  12, 107  ! Plane X', wire 107
+  75,  12, 108  ! Plane X', wire 108
+  76,  12, 109  ! Plane X', wire 109
+  77,  12, 110  ! Plane X', wire 110
+  78,  12, 111  ! Plane X', wire 111
+  79,  12, 112  ! Plane X', wire 112
 
+SLOT=17
+REFINDEX=0
+  64,   8,   1  ! Plane Y, wire 1
+  65,   8,   2  ! Plane Y, wire 2
+  66,   8,   3  ! Plane Y, wire 3
+  67,   8,   4  ! Plane Y, wire 4
+  68,   8,   5  ! Plane Y, wire 5
+  69,   8,   6  ! Plane Y, wire 6
+  70,   8,   7  ! Plane Y, wire 7
+  71,   8,   8  ! Plane Y, wire 8
+  72,   8,   9  ! Plane Y, wire 9
+  73,   8,  10  ! Plane Y, wire 10
+  74,   8,  11  ! Plane Y, wire 11
+  75,   8,  12  ! Plane Y, wire 12
+  76,   8,  13  ! Plane Y, wire 13
+  80,   8,  14  ! Plane Y, wire 14
+  81,   8,  15  ! Plane Y, wire 15
+  82,   8,  16  ! Plane Y, wire 16
+  83,   8,  17  ! Plane Y, wire 17
+  84,   8,  18  ! Plane Y, wire 18
+  85,   8,  19  ! Plane Y, wire 19
+  86,   8,  20  ! Plane Y, wire 20
+  87,   8,  21  ! Plane Y, wire 21
+  88,   8,  22  ! Plane Y, wire 22
+  89,   8,  23  ! Plane Y, wire 23
+  90,   8,  24  ! Plane Y, wire 24
+  91,   8,  25  ! Plane Y, wire 25
+  92,   8,  26  ! Plane Y, wire 26
+  96,   8,  27  ! Plane Y, wire 27
+  97,   8,  28  ! Plane Y, wire 28
+  98,   8,  29  ! Plane Y, wire 29
+  99,   8,  30  ! Plane Y, wire 30
+ 100,   8,  31  ! Plane Y, wire 31
+ 101,   8,  32  ! Plane Y, wire 32
+ 102,   8,  33  ! Plane Y, wire 33
+ 103,   8,  34  ! Plane Y, wire 34
+ 104,   8,  35  ! Plane Y, wire 35
+ 105,   8,  36  ! Plane Y, wire 36
+ 106,   8,  37  ! Plane Y, wire 37
+ 107,   8,  38  ! Plane Y, wire 38
+ 108,   8,  39  ! Plane Y, wire 39
+ 112,   8,  40  ! Plane Y, wire 40
+ 113,   8,  41  ! Plane Y, wire 41
+ 114,   8,  42  ! Plane Y, wire 42
+ 115,   8,  43  ! Plane Y, wire 43
+ 116,   8,  44  ! Plane Y, wire 44
+ 117,   8,  45  ! Plane Y, wire 45
+ 118,   8,  46  ! Plane Y, wire 46
+ 119,   8,  47  ! Plane Y, wire 47
+ 120,   8,  48  ! Plane Y, wire 48
+ 121,   8,  49  ! Plane Y, wire 49
+ 122,   8,  50  ! Plane Y, wire 50
+ 123,   8,  51  ! Plane Y, wire 51
+ 124,   8,  52  ! Plane Y, wire 52
 
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   1
+  64,  11,   1  ! Plane Y', wire 1
+  65,  11,   2  ! Plane Y', wire 2
+  66,  11,   3  ! Plane Y', wire 3
+  67,  11,   4  ! Plane Y', wire 4
+  68,  11,   5  ! Plane Y', wire 5
+  69,  11,   6  ! Plane Y', wire 6
+  70,  11,   7  ! Plane Y', wire 7
+  71,  11,   8  ! Plane Y', wire 8
+  72,  11,   9  ! Plane Y', wire 9
+  73,  11,  10  ! Plane Y', wire 10
+  74,  11,  11  ! Plane Y', wire 11
+  75,  11,  12  ! Plane Y', wire 12
+  76,  11,  13  ! Plane Y', wire 13
+  80,  11,  14  ! Plane Y', wire 14
+  81,  11,  15  ! Plane Y', wire 15
+  82,  11,  16  ! Plane Y', wire 16
+  83,  11,  17  ! Plane Y', wire 17
+  84,  11,  18  ! Plane Y', wire 18
+  85,  11,  19  ! Plane Y', wire 19
+  86,  11,  20  ! Plane Y', wire 20
+  87,  11,  21  ! Plane Y', wire 21
+  88,  11,  22  ! Plane Y', wire 22
+  89,  11,  23  ! Plane Y', wire 23
+  90,  11,  24  ! Plane Y', wire 24
+  91,  11,  25  ! Plane Y', wire 25
+  92,  11,  26  ! Plane Y', wire 26
+  96,  11,  27  ! Plane Y', wire 27
+  97,  11,  28  ! Plane Y', wire 28
+  98,  11,  29  ! Plane Y', wire 29
+  99,  11,  30  ! Plane Y', wire 30
+ 100,  11,  31  ! Plane Y', wire 31
+ 101,  11,  32  ! Plane Y', wire 32
+ 102,  11,  33  ! Plane Y', wire 33
+ 103,  11,  34  ! Plane Y', wire 34
+ 104,  11,  35  ! Plane Y', wire 35
+ 105,  11,  36  ! Plane Y', wire 36
+ 106,  11,  37  ! Plane Y', wire 37
+ 107,  11,  38  ! Plane Y', wire 38
+ 108,  11,  39  ! Plane Y', wire 39
+ 112,  11,  40  ! Plane Y', wire 40
+ 113,  11,  41  ! Plane Y', wire 41
+ 114,  11,  42  ! Plane Y', wire 42
+ 115,  11,  43  ! Plane Y', wire 43
+ 116,  11,  44  ! Plane Y', wire 44
+ 117,  11,  45  ! Plane Y', wire 45
+ 118,  11,  46  ! Plane Y', wire 46
+ 119,  11,  47  ! Plane Y', wire 47
+ 120,  11,  48  ! Plane Y', wire 48
+ 121,  11,  49  ! Plane Y', wire 49
+ 122,  11,  50  ! Plane Y', wire 50
+ 123,  11,  51  ! Plane Y', wire 51
+ 124,  11,  52  ! Plane Y', wire 52
diff --git a/MAPS/HMS/DETEC/hdc_hhodo_htrig.map b/MAPS/HMS/DETEC/hdc_hhodo_htrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..a9a7753709ad17a126e87b3fd2356a932025d3b0
--- /dev/null
+++ b/MAPS/HMS/DETEC/hdc_hhodo_htrig.map
@@ -0,0 +1,1442 @@
+! THMS_ID=10       ::  ADC,TDC
+! HDC_ID=11        ::  ADC,TDC
+! HSCIN_ID=13      ::  ADC,TDC
+
+
+DETECTOR=10
+
+ROC=1
+
+SLOT=17
+   8,   1,   1,   0  ! hASUM
+   9,   1,   2,   0  ! hBSUM
+  10,   1,   3,   0  ! hCSUM
+  11,   1,   4,   0  ! hDSUM
+  12,   1,   5,   0  ! hPSHWR
+  13,   1,   6,   0  ! hSHWR
+  14,   1,   7,   0  ! hAERSUM
+  15,   1,   8,   0  ! hCERSUM
+
+SLOT=2
+   0,   2,   1,   1  ! h1X
+   1,   2,   2,   1  ! h1Y
+   2,   2,   3,   1  ! h2X
+   3,   2,   4,   1  ! h2Y
+   4,   2,   5,   1  ! h1T
+   5,   2,   6,   1  ! h2T
+   6,   2,   7,   1  ! hT1
+   7,   2,   8,   1  ! hASUM
+   8,   2,   9,   1  ! hBSUM
+   9,   2,  10,   1  ! hCSUM
+  10,   2,  11,   1  ! hDSUM
+  11,   2,  12,   1  ! hPSHWRLO
+  12,   2,  13,   1  ! hPSHWRHI
+  13,   2,  14,   1  ! hSHWR
+  14,   2,  15,   1  ! hAERSUM
+  15,   2,  16,   1  ! hCERSUM
+
+SLOT=20
+ 127,   2,  17,   1  ! hT2
+
+ROC=3
+
+SLOT=5
+ 111,   2,  18,   1  ! hDCREF1
+
+SLOT=8
+ 127,   2,  19,   1  ! hDCREF2
+
+SLOT=10
+ 127,   2,  20,   1  ! hDCREF3
+
+SLOT=17
+ 127,   2,  21,   1  ! hDCREF4
+
+
+DETECTOR=11  ! HMS chambers
+
+ROC=3
+
+SLOT=5
+REFINDEX=0
+ 111,1000,   0,   0
+  96,   3,   1  ! Plane U, wire 1
+  97,   3,   2  ! Plane U, wire 2
+  98,   3,   3  ! Plane U, wire 3
+  99,   3,   4  ! Plane U, wire 4
+ 100,   3,   5  ! Plane U, wire 5
+ 101,   3,   6  ! Plane U, wire 6
+ 102,   3,   7  ! Plane U, wire 7
+ 103,   3,   8  ! Plane U, wire 8
+ 104,   3,   9  ! Plane U, wire 9
+ 105,   3,  10  ! Plane U, wire 10
+ 106,   3,  11  ! Plane U, wire 11
+ 107,   3,  12  ! Plane U, wire 12
+ 108,   3,  13  ! Plane U, wire 13
+ 109,   3,  14  ! Plane U, wire 14
+ 110,   1, 113  ! Plane X, wire 113
+  80,   3,  15  ! Plane U, wire 15
+  81,   3,  16  ! Plane U, wire 16
+  82,   3,  17  ! Plane U, wire 17
+  83,   3,  18  ! Plane U, wire 18
+  84,   3,  19  ! Plane U, wire 19
+  85,   3,  20  ! Plane U, wire 20
+  86,   3,  21  ! Plane U, wire 21
+  87,   3,  22  ! Plane U, wire 22
+  88,   3,  23  ! Plane U, wire 23
+  89,   3,  24  ! Plane U, wire 24
+  90,   3,  25  ! Plane U, wire 25
+  91,   3,  26  ! Plane U, wire 26
+  92,   3,  27  ! Plane U, wire 27
+  93,   3,  28  ! Plane U, wire 28
+  94,   3,  29  ! Plane U, wire 29
+  64,   3,  30  ! Plane U, wire 30
+  65,   3,  31  ! Plane U, wire 31
+  66,   3,  32  ! Plane U, wire 32
+  67,   3,  33  ! Plane U, wire 33
+  68,   3,  34  ! Plane U, wire 34
+  69,   3,  35  ! Plane U, wire 35
+  70,   3,  36  ! Plane U, wire 36
+  71,   3,  37  ! Plane U, wire 37
+  72,   3,  38  ! Plane U, wire 38
+  73,   3,  39  ! Plane U, wire 39
+  74,   3,  40  ! Plane U, wire 40
+  75,   3,  41  ! Plane U, wire 41
+  76,   3,  42  ! Plane U, wire 42
+  77,   3,  43  ! Plane U, wire 43
+  78,   3,  44  ! Plane U, wire 44
+  79,   3,  45  ! Plane U, wire 45
+  48,   3,  46  ! Plane U, wire 46
+  49,   3,  47  ! Plane U, wire 47
+  50,   3,  48  ! Plane U, wire 48
+  51,   3,  49  ! Plane U, wire 49
+  52,   3,  50  ! Plane U, wire 50
+  53,   3,  51  ! Plane U, wire 51
+  54,   3,  52  ! Plane U, wire 52
+  55,   3,  53  ! Plane U, wire 53
+  56,   3,  54  ! Plane U, wire 54
+  57,   3,  55  ! Plane U, wire 55
+  58,   3,  56  ! Plane U, wire 56
+  59,   3,  57  ! Plane U, wire 57
+  60,   3,  58  ! Plane U, wire 58
+  61,   3,  59  ! Plane U, wire 59
+  62,   3,  60  ! Plane U, wire 60
+  32,   3,  61  ! Plane U, wire 61
+  33,   3,  62  ! Plane U, wire 62
+  34,   3,  63  ! Plane U, wire 63
+  35,   3,  64  ! Plane U, wire 64
+  36,   3,  65  ! Plane U, wire 65
+  37,   3,  66  ! Plane U, wire 66
+  38,   3,  67  ! Plane U, wire 67
+  39,   3,  68  ! Plane U, wire 68
+  40,   3,  69  ! Plane U, wire 69
+  41,   3,  70  ! Plane U, wire 70
+  42,   3,  71  ! Plane U, wire 71
+  43,   3,  72  ! Plane U, wire 72
+  44,   3,  73  ! Plane U, wire 73
+  45,   3,  74  ! Plane U, wire 74
+  46,   3,  75  ! Plane U, wire 75
+  47,   3,  76  ! Plane U, wire 76
+  16,   3,  77  ! Plane U, wire 77
+  17,   3,  78  ! Plane U, wire 78
+  18,   3,  79  ! Plane U, wire 79
+  19,   3,  80  ! Plane U, wire 80
+  20,   3,  81  ! Plane U, wire 81
+  21,   3,  82  ! Plane U, wire 82
+  22,   3,  83  ! Plane U, wire 83
+  23,   3,  84  ! Plane U, wire 84
+  24,   3,  85  ! Plane U, wire 85
+  25,   3,  86  ! Plane U, wire 86
+  26,   3,  87  ! Plane U, wire 87
+  27,   3,  88  ! Plane U, wire 88
+  28,   3,  89  ! Plane U, wire 89
+  29,   3,  90  ! Plane U, wire 90
+  30,   3,  91  ! Plane U, wire 91
+   0,   3,  92  ! Plane U, wire 92
+   1,   3,  93  ! Plane U, wire 93
+   2,   3,  94  ! Plane U, wire 94
+   3,   3,  95  ! Plane U, wire 95
+   4,   3,  96  ! Plane U, wire 96
+   5,   3,  97  ! Plane U, wire 97
+   6,   3,  98  ! Plane U, wire 98
+   7,   3,  99  ! Plane U, wire 99
+   8,   3, 100  ! Plane U, wire 100
+   9,   3, 101  ! Plane U, wire 101
+  10,   3, 102  ! Plane U, wire 102
+  11,   3, 103  ! Plane U, wire 103
+  12,   3, 104  ! Plane U, wire 104
+  13,   3, 105  ! Plane U, wire 105
+  14,   3, 106  ! Plane U, wire 106
+  15,   3, 107  ! Plane U, wire 107
+
+SLOT=7
+REFINDEX=0
+  96,   4,   1  ! Plane V, wire 1
+  97,   4,   2  ! Plane V, wire 2
+  98,   4,   3  ! Plane V, wire 3
+  99,   4,   4  ! Plane V, wire 4
+ 100,   4,   5  ! Plane V, wire 5
+ 101,   4,   6  ! Plane V, wire 6
+ 102,   4,   7  ! Plane V, wire 7
+ 103,   4,   8  ! Plane V, wire 8
+ 104,   4,   9  ! Plane V, wire 9
+ 105,   4,  10  ! Plane V, wire 10
+ 106,   4,  11  ! Plane V, wire 11
+ 107,   4,  12  ! Plane V, wire 12
+ 108,   4,  13  ! Plane V, wire 13
+ 109,   4,  14  ! Plane V, wire 14
+ 110,   6, 113  ! Plane X', wire 113
+ 112,   4,  15  ! Plane V, wire 15
+ 113,   4,  16  ! Plane V, wire 16
+ 114,   4,  17  ! Plane V, wire 17
+ 115,   4,  18  ! Plane V, wire 18
+ 116,   4,  19  ! Plane V, wire 19
+ 117,   4,  20  ! Plane V, wire 20
+ 118,   4,  21  ! Plane V, wire 21
+ 119,   4,  22  ! Plane V, wire 22
+ 120,   4,  23  ! Plane V, wire 23
+ 121,   4,  24  ! Plane V, wire 24
+ 122,   4,  25  ! Plane V, wire 25
+ 123,   4,  26  ! Plane V, wire 26
+ 124,   4,  27  ! Plane V, wire 27
+ 125,   4,  28  ! Plane V, wire 28
+ 126,   4,  29  ! Plane V, wire 29
+
+SLOT=8
+REFINDEX=0
+ 127,1000,   0,   1
+   0,   4,  30  ! Plane V, wire 30
+   1,   4,  31  ! Plane V, wire 31
+   2,   4,  32  ! Plane V, wire 32
+   3,   4,  33  ! Plane V, wire 33
+   4,   4,  34  ! Plane V, wire 34
+   5,   4,  35  ! Plane V, wire 35
+   6,   4,  36  ! Plane V, wire 36
+   7,   4,  37  ! Plane V, wire 37
+   8,   4,  38  ! Plane V, wire 38
+   9,   4,  39  ! Plane V, wire 39
+  10,   4,  40  ! Plane V, wire 40
+  11,   4,  41  ! Plane V, wire 41
+  12,   4,  42  ! Plane V, wire 42
+  13,   4,  43  ! Plane V, wire 43
+  14,   4,  44  ! Plane V, wire 44
+  15,   4,  45  ! Plane V, wire 45
+  16,   4,  46  ! Plane V, wire 46
+  17,   4,  47  ! Plane V, wire 47
+  18,   4,  48  ! Plane V, wire 48
+  19,   4,  49  ! Plane V, wire 49
+  20,   4,  50  ! Plane V, wire 50
+  21,   4,  51  ! Plane V, wire 51
+  22,   4,  52  ! Plane V, wire 52
+  23,   4,  53  ! Plane V, wire 53
+  24,   4,  54  ! Plane V, wire 54
+  25,   4,  55  ! Plane V, wire 55
+  26,   4,  56  ! Plane V, wire 56
+  27,   4,  57  ! Plane V, wire 57
+  28,   4,  58  ! Plane V, wire 58
+  29,   4,  59  ! Plane V, wire 59
+  30,   4,  60  ! Plane V, wire 60
+  32,   4,  61  ! Plane V, wire 61
+  33,   4,  62  ! Plane V, wire 62
+  34,   4,  63  ! Plane V, wire 63
+  35,   4,  64  ! Plane V, wire 64
+  36,   4,  65  ! Plane V, wire 65
+  37,   4,  66  ! Plane V, wire 66
+  38,   4,  67  ! Plane V, wire 67
+  39,   4,  68  ! Plane V, wire 68
+  40,   4,  69  ! Plane V, wire 69
+  41,   4,  70  ! Plane V, wire 70
+  42,   4,  71  ! Plane V, wire 71
+  43,   4,  72  ! Plane V, wire 72
+  44,   4,  73  ! Plane V, wire 73
+  45,   4,  74  ! Plane V, wire 74
+  46,   4,  75  ! Plane V, wire 75
+  47,   4,  76  ! Plane V, wire 76
+  48,   4,  77  ! Plane V, wire 77
+  49,   4,  78  ! Plane V, wire 78
+  50,   4,  79  ! Plane V, wire 79
+  51,   4,  80  ! Plane V, wire 80
+  52,   4,  81  ! Plane V, wire 81
+  53,   4,  82  ! Plane V, wire 82
+  54,   4,  83  ! Plane V, wire 83
+  55,   4,  84  ! Plane V, wire 84
+  56,   4,  85  ! Plane V, wire 85
+  57,   4,  86  ! Plane V, wire 86
+  58,   4,  87  ! Plane V, wire 87
+  59,   4,  88  ! Plane V, wire 88
+  60,   4,  89  ! Plane V, wire 89
+  61,   4,  90  ! Plane V, wire 90
+  62,   4,  91  ! Plane V, wire 91
+
+SLOT=4
+REFINDEX=0
+  96,   4,  92  ! Plane V, wire 92
+  97,   4,  93  ! Plane V, wire 93
+  98,   4,  94  ! Plane V, wire 94
+  99,   4,  95  ! Plane V, wire 95
+ 100,   4,  96  ! Plane V, wire 96
+ 101,   4,  97  ! Plane V, wire 97
+ 102,   4,  98  ! Plane V, wire 98
+ 103,   4,  99  ! Plane V, wire 99
+ 104,   4, 100  ! Plane V, wire 100
+ 105,   4, 101  ! Plane V, wire 101
+ 106,   4, 102  ! Plane V, wire 102
+ 107,   4, 103  ! Plane V, wire 103
+ 108,   4, 104  ! Plane V, wire 104
+ 109,   4, 105  ! Plane V, wire 105
+ 110,   4, 106  ! Plane V, wire 106
+ 111,   4, 107  ! Plane V, wire 107
+  80,   1,   1  ! Plane X, wire 1
+  81,   1,   2  ! Plane X, wire 2
+  82,   1,   3  ! Plane X, wire 3
+  83,   1,   4  ! Plane X, wire 4
+  84,   1,   5  ! Plane X, wire 5
+  85,   1,   6  ! Plane X, wire 6
+  86,   1,   7  ! Plane X, wire 7
+  87,   1,   8  ! Plane X, wire 8
+  88,   1,   9  ! Plane X, wire 9
+  89,   1,  10  ! Plane X, wire 10
+  90,   1,  11  ! Plane X, wire 11
+  91,   1,  12  ! Plane X, wire 12
+  92,   1,  13  ! Plane X, wire 13
+  93,   1,  14  ! Plane X, wire 14
+  94,   1,  15  ! Plane X, wire 15
+  95,   1,  16  ! Plane X, wire 16
+  64,   1,  17  ! Plane X, wire 17
+  65,   1,  18  ! Plane X, wire 18
+  66,   1,  19  ! Plane X, wire 19
+  67,   1,  20  ! Plane X, wire 20
+  68,   1,  21  ! Plane X, wire 21
+  69,   1,  22  ! Plane X, wire 22
+  70,   1,  23  ! Plane X, wire 23
+  71,   1,  24  ! Plane X, wire 24
+  72,   1,  25  ! Plane X, wire 25
+  73,   1,  26  ! Plane X, wire 26
+  74,   1,  27  ! Plane X, wire 27
+  75,   1,  28  ! Plane X, wire 28
+  76,   1,  29  ! Plane X, wire 29
+  77,   1,  30  ! Plane X, wire 30
+  78,   1,  31  ! Plane X, wire 31
+  79,   1,  32  ! Plane X, wire 32
+  48,   1,  33  ! Plane X, wire 33
+  49,   1,  34  ! Plane X, wire 34
+  50,   1,  35  ! Plane X, wire 35
+  51,   1,  36  ! Plane X, wire 36
+  52,   1,  37  ! Plane X, wire 37
+  53,   1,  38  ! Plane X, wire 38
+  54,   1,  39  ! Plane X, wire 39
+  55,   1,  40  ! Plane X, wire 40
+  56,   1,  41  ! Plane X, wire 41
+  57,   1,  42  ! Plane X, wire 42
+  58,   1,  43  ! Plane X, wire 43
+  59,   1,  44  ! Plane X, wire 44
+  60,   1,  45  ! Plane X, wire 45
+  61,   1,  46  ! Plane X, wire 46
+  62,   1,  47  ! Plane X, wire 47
+  63,   1,  48  ! Plane X, wire 48
+  32,   1,  49  ! Plane X, wire 49
+  33,   1,  50  ! Plane X, wire 50
+  34,   1,  51  ! Plane X, wire 51
+  35,   1,  52  ! Plane X, wire 52
+  36,   1,  53  ! Plane X, wire 53
+  37,   1,  54  ! Plane X, wire 54
+  38,   1,  55  ! Plane X, wire 55
+  39,   1,  56  ! Plane X, wire 56
+  40,   1,  57  ! Plane X, wire 57
+  41,   1,  58  ! Plane X, wire 58
+  42,   1,  59  ! Plane X, wire 59
+  43,   1,  60  ! Plane X, wire 60
+  44,   1,  61  ! Plane X, wire 61
+  45,   1,  62  ! Plane X, wire 62
+  46,   1,  63  ! Plane X, wire 63
+  47,   1,  64  ! Plane X, wire 64
+  16,   1,  65  ! Plane X, wire 65
+  17,   1,  66  ! Plane X, wire 66
+  18,   1,  67  ! Plane X, wire 67
+  19,   1,  68  ! Plane X, wire 68
+  20,   1,  69  ! Plane X, wire 69
+  21,   1,  70  ! Plane X, wire 70
+  22,   1,  71  ! Plane X, wire 71
+  23,   1,  72  ! Plane X, wire 72
+  24,   1,  73  ! Plane X, wire 73
+  25,   1,  74  ! Plane X, wire 74
+  26,   1,  75  ! Plane X, wire 75
+  27,   1,  76  ! Plane X, wire 76
+  28,   1,  77  ! Plane X, wire 77
+  29,   1,  78  ! Plane X, wire 78
+  30,   1,  79  ! Plane X, wire 79
+  31,   1,  80  ! Plane X, wire 80
+   0,   1,  81  ! Plane X, wire 81
+   1,   1,  82  ! Plane X, wire 82
+   2,   1,  83  ! Plane X, wire 83
+   3,   1,  84  ! Plane X, wire 84
+   4,   1,  85  ! Plane X, wire 85
+   5,   1,  86  ! Plane X, wire 86
+   6,   1,  87  ! Plane X, wire 87
+   7,   1,  88  ! Plane X, wire 88
+   8,   1,  89  ! Plane X, wire 89
+   9,   1,  90  ! Plane X, wire 90
+  10,   1,  91  ! Plane X, wire 91
+  11,   1,  92  ! Plane X, wire 92
+  12,   1,  93  ! Plane X, wire 93
+  13,   1,  94  ! Plane X, wire 94
+  14,   1,  95  ! Plane X, wire 95
+  15,   1,  96  ! Plane X, wire 96
+
+SLOT=7
+REFINDEX=0
+  80,   1,  97  ! Plane X, wire 97
+  81,   1,  98  ! Plane X, wire 98
+  82,   1,  99  ! Plane X, wire 99
+  83,   1, 100  ! Plane X, wire 100
+  84,   1, 101  ! Plane X, wire 101
+  85,   1, 102  ! Plane X, wire 102
+  86,   1, 103  ! Plane X, wire 103
+  87,   1, 104  ! Plane X, wire 104
+  88,   1, 105  ! Plane X, wire 105
+  89,   1, 106  ! Plane X, wire 106
+  90,   1, 107  ! Plane X, wire 107
+  91,   1, 108  ! Plane X, wire 108
+  92,   1, 109  ! Plane X, wire 109
+  93,   1, 110  ! Plane X, wire 110
+  94,   1, 111  ! Plane X, wire 111
+  95,   1, 112  ! Plane X, wire 112
+
+SLOT=4
+REFINDEX=0
+ 112,   6,   1  ! Plane X', wire 1
+ 113,   6,   2  ! Plane X', wire 2
+ 114,   6,   3  ! Plane X', wire 3
+ 115,   6,   4  ! Plane X', wire 4
+ 116,   6,   5  ! Plane X', wire 5
+ 117,   6,   6  ! Plane X', wire 6
+ 118,   6,   7  ! Plane X', wire 7
+ 119,   6,   8  ! Plane X', wire 8
+ 120,   6,   9  ! Plane X', wire 9
+ 121,   6,  10  ! Plane X', wire 10
+ 122,   6,  11  ! Plane X', wire 11
+ 123,   6,  12  ! Plane X', wire 12
+ 124,   6,  13  ! Plane X', wire 13
+ 125,   6,  14  ! Plane X', wire 14
+ 126,   6,  15  ! Plane X', wire 15
+ 127,   6,  16  ! Plane X', wire 16
+
+SLOT=5
+REFINDEX=0
+ 112,   6,  17  ! Plane X', wire 17
+ 113,   6,  18  ! Plane X', wire 18
+ 114,   6,  19  ! Plane X', wire 19
+ 115,   6,  20  ! Plane X', wire 20
+ 116,   6,  21  ! Plane X', wire 21
+ 117,   6,  22  ! Plane X', wire 22
+ 118,   6,  23  ! Plane X', wire 23
+ 119,   6,  24  ! Plane X', wire 24
+ 120,   6,  25  ! Plane X', wire 25
+ 121,   6,  26  ! Plane X', wire 26
+ 122,   6,  27  ! Plane X', wire 27
+ 123,   6,  28  ! Plane X', wire 28
+ 124,   6,  29  ! Plane X', wire 29
+ 125,   6,  30  ! Plane X', wire 30
+ 126,   6,  31  ! Plane X', wire 31
+ 127,   6,  32  ! Plane X', wire 32
+
+SLOT=7
+REFINDEX=0
+   0,   6,  33  ! Plane X', wire 33
+   1,   6,  34  ! Plane X', wire 34
+   2,   6,  35  ! Plane X', wire 35
+   3,   6,  36  ! Plane X', wire 36
+   4,   6,  37  ! Plane X', wire 37
+   5,   6,  38  ! Plane X', wire 38
+   6,   6,  39  ! Plane X', wire 39
+   7,   6,  40  ! Plane X', wire 40
+   8,   6,  41  ! Plane X', wire 41
+   9,   6,  42  ! Plane X', wire 42
+  10,   6,  43  ! Plane X', wire 43
+  11,   6,  44  ! Plane X', wire 44
+  12,   6,  45  ! Plane X', wire 45
+  13,   6,  46  ! Plane X', wire 46
+  14,   6,  47  ! Plane X', wire 47
+  15,   6,  48  ! Plane X', wire 48
+  16,   6,  49  ! Plane X', wire 49
+  17,   6,  50  ! Plane X', wire 50
+  18,   6,  51  ! Plane X', wire 51
+  19,   6,  52  ! Plane X', wire 52
+  20,   6,  53  ! Plane X', wire 53
+  21,   6,  54  ! Plane X', wire 54
+  22,   6,  55  ! Plane X', wire 55
+  23,   6,  56  ! Plane X', wire 56
+  24,   6,  57  ! Plane X', wire 57
+  25,   6,  58  ! Plane X', wire 58
+  26,   6,  59  ! Plane X', wire 59
+  27,   6,  60  ! Plane X', wire 60
+  28,   6,  61  ! Plane X', wire 61
+  29,   6,  62  ! Plane X', wire 62
+  30,   6,  63  ! Plane X', wire 63
+  31,   6,  64  ! Plane X', wire 64
+  32,   6,  65  ! Plane X', wire 65
+  33,   6,  66  ! Plane X', wire 66
+  34,   6,  67  ! Plane X', wire 67
+  35,   6,  68  ! Plane X', wire 68
+  36,   6,  69  ! Plane X', wire 69
+  37,   6,  70  ! Plane X', wire 70
+  38,   6,  71  ! Plane X', wire 71
+  39,   6,  72  ! Plane X', wire 72
+  40,   6,  73  ! Plane X', wire 73
+  41,   6,  74  ! Plane X', wire 74
+  42,   6,  75  ! Plane X', wire 75
+  43,   6,  76  ! Plane X', wire 76
+  44,   6,  77  ! Plane X', wire 77
+  45,   6,  78  ! Plane X', wire 78
+  46,   6,  79  ! Plane X', wire 79
+  47,   6,  80  ! Plane X', wire 80
+  48,   6,  81  ! Plane X', wire 81
+  49,   6,  82  ! Plane X', wire 82
+  50,   6,  83  ! Plane X', wire 83
+  51,   6,  84  ! Plane X', wire 84
+  52,   6,  85  ! Plane X', wire 85
+  53,   6,  86  ! Plane X', wire 86
+  54,   6,  87  ! Plane X', wire 87
+  55,   6,  88  ! Plane X', wire 88
+  56,   6,  89  ! Plane X', wire 89
+  57,   6,  90  ! Plane X', wire 90
+  58,   6,  91  ! Plane X', wire 91
+  59,   6,  92  ! Plane X', wire 92
+  60,   6,  93  ! Plane X', wire 93
+  61,   6,  94  ! Plane X', wire 94
+  62,   6,  95  ! Plane X', wire 95
+  63,   6,  96  ! Plane X', wire 96
+  64,   6,  97  ! Plane X', wire 97
+  65,   6,  98  ! Plane X', wire 98
+  66,   6,  99  ! Plane X', wire 99
+  67,   6, 100  ! Plane X', wire 100
+  68,   6, 101  ! Plane X', wire 101
+  69,   6, 102  ! Plane X', wire 102
+  70,   6, 103  ! Plane X', wire 103
+  71,   6, 104  ! Plane X', wire 104
+  72,   6, 105  ! Plane X', wire 105
+  73,   6, 106  ! Plane X', wire 106
+  74,   6, 107  ! Plane X', wire 107
+  75,   6, 108  ! Plane X', wire 108
+  76,   6, 109  ! Plane X', wire 109
+  77,   6, 110  ! Plane X', wire 110
+  78,   6, 111  ! Plane X', wire 111
+  79,   6, 112  ! Plane X', wire 112
+
+SLOT=8
+REFINDEX=0
+  64,   2,   1  ! Plane Y, wire 1
+  65,   2,   2  ! Plane Y, wire 2
+  66,   2,   3  ! Plane Y, wire 3
+  67,   2,   4  ! Plane Y, wire 4
+  68,   2,   5  ! Plane Y, wire 5
+  69,   2,   6  ! Plane Y, wire 6
+  70,   2,   7  ! Plane Y, wire 7
+  71,   2,   8  ! Plane Y, wire 8
+  72,   2,   9  ! Plane Y, wire 9
+  73,   2,  10  ! Plane Y, wire 10
+  74,   2,  11  ! Plane Y, wire 11
+  75,   2,  12  ! Plane Y, wire 12
+  76,   2,  13  ! Plane Y, wire 13
+  80,   2,  14  ! Plane Y, wire 14
+  81,   2,  15  ! Plane Y, wire 15
+  82,   2,  16  ! Plane Y, wire 16
+  83,   2,  17  ! Plane Y, wire 17
+  84,   2,  18  ! Plane Y, wire 18
+  85,   2,  19  ! Plane Y, wire 19
+  86,   2,  20  ! Plane Y, wire 20
+  87,   2,  21  ! Plane Y, wire 21
+  88,   2,  22  ! Plane Y, wire 22
+  89,   2,  23  ! Plane Y, wire 23
+  90,   2,  24  ! Plane Y, wire 24
+  91,   2,  25  ! Plane Y, wire 25
+  92,   2,  26  ! Plane Y, wire 26
+  96,   2,  27  ! Plane Y, wire 27
+  97,   2,  28  ! Plane Y, wire 28
+  98,   2,  29  ! Plane Y, wire 29
+  99,   2,  30  ! Plane Y, wire 30
+ 100,   2,  31  ! Plane Y, wire 31
+ 101,   2,  32  ! Plane Y, wire 32
+ 102,   2,  33  ! Plane Y, wire 33
+ 103,   2,  34  ! Plane Y, wire 34
+ 104,   2,  35  ! Plane Y, wire 35
+ 105,   2,  36  ! Plane Y, wire 36
+ 106,   2,  37  ! Plane Y, wire 37
+ 107,   2,  38  ! Plane Y, wire 38
+ 108,   2,  39  ! Plane Y, wire 39
+ 112,   2,  40  ! Plane Y, wire 40
+ 113,   2,  41  ! Plane Y, wire 41
+ 114,   2,  42  ! Plane Y, wire 42
+ 115,   2,  43  ! Plane Y, wire 43
+ 116,   2,  44  ! Plane Y, wire 44
+ 117,   2,  45  ! Plane Y, wire 45
+ 118,   2,  46  ! Plane Y, wire 46
+ 119,   2,  47  ! Plane Y, wire 47
+ 120,   2,  48  ! Plane Y, wire 48
+ 121,   2,  49  ! Plane Y, wire 49
+ 122,   2,  50  ! Plane Y, wire 50
+ 123,   2,  51  ! Plane Y, wire 51
+ 124,   2,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   2
+   0,   5,   1  ! Plane Y', wire 1
+   1,   5,   2  ! Plane Y', wire 2
+   2,   5,   3  ! Plane Y', wire 3
+   3,   5,   4  ! Plane Y', wire 4
+   4,   5,   5  ! Plane Y', wire 5
+   5,   5,   6  ! Plane Y', wire 6
+   6,   5,   7  ! Plane Y', wire 7
+   7,   5,   8  ! Plane Y', wire 8
+   8,   5,   9  ! Plane Y', wire 9
+   9,   5,  10  ! Plane Y', wire 10
+  10,   5,  11  ! Plane Y', wire 11
+  11,   5,  12  ! Plane Y', wire 12
+  12,   5,  13  ! Plane Y', wire 13
+  16,   5,  14  ! Plane Y', wire 14
+  17,   5,  15  ! Plane Y', wire 15
+  18,   5,  16  ! Plane Y', wire 16
+  19,   5,  17  ! Plane Y', wire 17
+  20,   5,  18  ! Plane Y', wire 18
+  21,   5,  19  ! Plane Y', wire 19
+  22,   5,  20  ! Plane Y', wire 20
+  23,   5,  21  ! Plane Y', wire 21
+  24,   5,  22  ! Plane Y', wire 22
+  25,   5,  23  ! Plane Y', wire 23
+  26,   5,  24  ! Plane Y', wire 24
+  27,   5,  25  ! Plane Y', wire 25
+  28,   5,  26  ! Plane Y', wire 26
+  32,   5,  27  ! Plane Y', wire 27
+  33,   5,  28  ! Plane Y', wire 28
+  34,   5,  29  ! Plane Y', wire 29
+  35,   5,  30  ! Plane Y', wire 30
+  36,   5,  31  ! Plane Y', wire 31
+  37,   5,  32  ! Plane Y', wire 32
+  38,   5,  33  ! Plane Y', wire 33
+  39,   5,  34  ! Plane Y', wire 34
+  40,   5,  35  ! Plane Y', wire 35
+  41,   5,  36  ! Plane Y', wire 36
+  42,   5,  37  ! Plane Y', wire 37
+  43,   5,  38  ! Plane Y', wire 38
+  44,   5,  39  ! Plane Y', wire 39
+  48,   5,  40  ! Plane Y', wire 40
+  49,   5,  41  ! Plane Y', wire 41
+  50,   5,  42  ! Plane Y', wire 42
+  51,   5,  43  ! Plane Y', wire 43
+  52,   5,  44  ! Plane Y', wire 44
+  53,   5,  45  ! Plane Y', wire 45
+  54,   5,  46  ! Plane Y', wire 46
+  55,   5,  47  ! Plane Y', wire 47
+  56,   5,  48  ! Plane Y', wire 48
+  57,   5,  49  ! Plane Y', wire 49
+  58,   5,  50  ! Plane Y', wire 50
+  59,   5,  51  ! Plane Y', wire 51
+  60,   5,  52  ! Plane Y', wire 52
+
+SLOT=16
+REFINDEX=0
+  96,   9,   1  ! Plane U, wire 1
+  97,   9,   2  ! Plane U, wire 2
+  98,   9,   3  ! Plane U, wire 3
+  99,   9,   4  ! Plane U, wire 4
+ 100,   9,   5  ! Plane U, wire 5
+ 101,   9,   6  ! Plane U, wire 6
+ 102,   9,   7  ! Plane U, wire 7
+ 103,   9,   8  ! Plane U, wire 8
+ 104,   9,   9  ! Plane U, wire 9
+ 105,   9,  10  ! Plane U, wire 10
+ 106,   9,  11  ! Plane U, wire 11
+ 107,   9,  12  ! Plane U, wire 12
+ 108,   9,  13  ! Plane U, wire 13
+ 109,   9,  14  ! Plane U, wire 14
+ 110,   7, 113  ! Plane X, wire 113
+ 112,   9,  15  ! Plane U, wire 15
+ 113,   9,  16  ! Plane U, wire 16
+ 114,   9,  17  ! Plane U, wire 17
+ 115,   9,  18  ! Plane U, wire 18
+ 116,   9,  19  ! Plane U, wire 19
+ 117,   9,  20  ! Plane U, wire 20
+ 118,   9,  21  ! Plane U, wire 21
+ 119,   9,  22  ! Plane U, wire 22
+ 120,   9,  23  ! Plane U, wire 23
+ 121,   9,  24  ! Plane U, wire 24
+ 122,   9,  25  ! Plane U, wire 25
+ 123,   9,  26  ! Plane U, wire 26
+ 124,   9,  27  ! Plane U, wire 27
+ 125,   9,  28  ! Plane U, wire 28
+ 126,   9,  29  ! Plane U, wire 29
+
+SLOT=14
+REFINDEX=0
+   0,   9,  30  ! Plane U, wire 30
+   1,   9,  31  ! Plane U, wire 31
+   2,   9,  32  ! Plane U, wire 32
+   3,   9,  33  ! Plane U, wire 33
+   4,   9,  34  ! Plane U, wire 34
+   5,   9,  35  ! Plane U, wire 35
+   6,   9,  36  ! Plane U, wire 36
+   7,   9,  37  ! Plane U, wire 37
+   8,   9,  38  ! Plane U, wire 38
+   9,   9,  39  ! Plane U, wire 39
+  10,   9,  40  ! Plane U, wire 40
+  11,   9,  41  ! Plane U, wire 41
+  12,   9,  42  ! Plane U, wire 42
+  13,   9,  43  ! Plane U, wire 43
+  14,   9,  44  ! Plane U, wire 44
+  15,   9,  45  ! Plane U, wire 45
+  32,   9,  46  ! Plane U, wire 46
+  33,   9,  47  ! Plane U, wire 47
+  34,   9,  48  ! Plane U, wire 48
+  35,   9,  49  ! Plane U, wire 49
+  36,   9,  50  ! Plane U, wire 50
+  37,   9,  51  ! Plane U, wire 51
+  38,   9,  52  ! Plane U, wire 52
+  39,   9,  53  ! Plane U, wire 53
+  40,   9,  54  ! Plane U, wire 54
+  41,   9,  55  ! Plane U, wire 55
+  42,   9,  56  ! Plane U, wire 56
+  43,   9,  57  ! Plane U, wire 57
+  44,   9,  58  ! Plane U, wire 58
+  45,   9,  59  ! Plane U, wire 59
+  46,   9,  60  ! Plane U, wire 60
+  48,   9,  61  ! Plane U, wire 61
+  49,   9,  62  ! Plane U, wire 62
+  50,   9,  63  ! Plane U, wire 63
+  51,   9,  64  ! Plane U, wire 64
+  52,   9,  65  ! Plane U, wire 65
+  53,   9,  66  ! Plane U, wire 66
+  54,   9,  67  ! Plane U, wire 67
+  55,   9,  68  ! Plane U, wire 68
+  56,   9,  69  ! Plane U, wire 69
+  57,   9,  70  ! Plane U, wire 70
+  58,   9,  71  ! Plane U, wire 71
+  59,   9,  72  ! Plane U, wire 72
+  60,   9,  73  ! Plane U, wire 73
+  61,   9,  74  ! Plane U, wire 74
+  62,   9,  75  ! Plane U, wire 75
+  63,   9,  76  ! Plane U, wire 76
+  64,   9,  77  ! Plane U, wire 77
+  65,   9,  78  ! Plane U, wire 78
+  66,   9,  79  ! Plane U, wire 79
+  67,   9,  80  ! Plane U, wire 80
+  68,   9,  81  ! Plane U, wire 81
+  69,   9,  82  ! Plane U, wire 82
+  70,   9,  83  ! Plane U, wire 83
+  71,   9,  84  ! Plane U, wire 84
+  72,   9,  85  ! Plane U, wire 85
+  73,   9,  86  ! Plane U, wire 86
+  74,   9,  87  ! Plane U, wire 87
+  75,   9,  88  ! Plane U, wire 88
+  76,   9,  89  ! Plane U, wire 89
+  77,   9,  90  ! Plane U, wire 90
+  78,   9,  91  ! Plane U, wire 91
+  80,   9,  92  ! Plane U, wire 92
+  81,   9,  93  ! Plane U, wire 93
+  82,   9,  94  ! Plane U, wire 94
+  83,   9,  95  ! Plane U, wire 95
+  84,   9,  96  ! Plane U, wire 96
+  85,   9,  97  ! Plane U, wire 97
+  86,   9,  98  ! Plane U, wire 98
+  87,   9,  99  ! Plane U, wire 99
+  88,   9, 100  ! Plane U, wire 100
+  89,   9, 101  ! Plane U, wire 101
+  90,   9, 102  ! Plane U, wire 102
+  91,   9, 103  ! Plane U, wire 103
+  92,   9, 104  ! Plane U, wire 104
+  93,   9, 105  ! Plane U, wire 105
+  94,   9, 106  ! Plane U, wire 106
+  95,   9, 107  ! Plane U, wire 107
+
+SLOT=16
+REFINDEX=0
+  80,  10,   1  ! Plane V, wire 1
+  81,  10,   2  ! Plane V, wire 2
+  82,  10,   3  ! Plane V, wire 3
+  83,  10,   4  ! Plane V, wire 4
+  84,  10,   5  ! Plane V, wire 5
+  85,  10,   6  ! Plane V, wire 6
+  86,  10,   7  ! Plane V, wire 7
+  87,  10,   8  ! Plane V, wire 8
+  88,  10,   9  ! Plane V, wire 9
+  89,  10,  10  ! Plane V, wire 10
+  90,  10,  11  ! Plane V, wire 11
+  91,  10,  12  ! Plane V, wire 12
+  92,  10,  13  ! Plane V, wire 13
+  93,  10,  14  ! Plane V, wire 14
+  94,  12, 113  ! Plane X', wire 113
+
+SLOT=14
+REFINDEX=0
+  96,  10,  15  ! Plane V, wire 15
+  97,  10,  16  ! Plane V, wire 16
+  98,  10,  17  ! Plane V, wire 17
+  99,  10,  18  ! Plane V, wire 18
+ 100,  10,  19  ! Plane V, wire 19
+ 101,  10,  20  ! Plane V, wire 20
+ 102,  10,  21  ! Plane V, wire 21
+ 103,  10,  22  ! Plane V, wire 22
+ 104,  10,  23  ! Plane V, wire 23
+ 105,  10,  24  ! Plane V, wire 24
+ 106,  10,  25  ! Plane V, wire 25
+ 107,  10,  26  ! Plane V, wire 26
+ 108,  10,  27  ! Plane V, wire 27
+ 109,  10,  28  ! Plane V, wire 28
+ 110,  10,  29  ! Plane V, wire 29
+ 112,  10,  30  ! Plane V, wire 30
+ 113,  10,  31  ! Plane V, wire 31
+ 114,  10,  32  ! Plane V, wire 32
+ 115,  10,  33  ! Plane V, wire 33
+ 116,  10,  34  ! Plane V, wire 34
+ 117,  10,  35  ! Plane V, wire 35
+ 118,  10,  36  ! Plane V, wire 36
+ 119,  10,  37  ! Plane V, wire 37
+ 120,  10,  38  ! Plane V, wire 38
+ 121,  10,  39  ! Plane V, wire 39
+ 122,  10,  40  ! Plane V, wire 40
+ 123,  10,  41  ! Plane V, wire 41
+ 124,  10,  42  ! Plane V, wire 42
+ 125,  10,  43  ! Plane V, wire 43
+ 126,  10,  44  ! Plane V, wire 44
+ 127,  10,  45  ! Plane V, wire 45
+
+SLOT=17
+REFINDEX=0
+ 127,1000,   0,   3
+   0,  10,  46  ! Plane V, wire 46
+   1,  10,  47  ! Plane V, wire 47
+   2,  10,  48  ! Plane V, wire 48
+   3,  10,  49  ! Plane V, wire 49
+   4,  10,  50  ! Plane V, wire 50
+   5,  10,  51  ! Plane V, wire 51
+   6,  10,  52  ! Plane V, wire 52
+   7,  10,  53  ! Plane V, wire 53
+   8,  10,  54  ! Plane V, wire 54
+   9,  10,  55  ! Plane V, wire 55
+  10,  10,  56  ! Plane V, wire 56
+  11,  10,  57  ! Plane V, wire 57
+  12,  10,  58  ! Plane V, wire 58
+  13,  10,  59  ! Plane V, wire 59
+  14,  10,  60  ! Plane V, wire 60
+  16,  10,  61  ! Plane V, wire 61
+  17,  10,  62  ! Plane V, wire 62
+  18,  10,  63  ! Plane V, wire 63
+  19,  10,  64  ! Plane V, wire 64
+  20,  10,  65  ! Plane V, wire 65
+  21,  10,  66  ! Plane V, wire 66
+  22,  10,  67  ! Plane V, wire 67
+  23,  10,  68  ! Plane V, wire 68
+  24,  10,  69  ! Plane V, wire 69
+  25,  10,  70  ! Plane V, wire 70
+  26,  10,  71  ! Plane V, wire 71
+  27,  10,  72  ! Plane V, wire 72
+  28,  10,  73  ! Plane V, wire 73
+  29,  10,  74  ! Plane V, wire 74
+  30,  10,  75  ! Plane V, wire 75
+  31,  10,  76  ! Plane V, wire 76
+  32,  10,  77  ! Plane V, wire 77
+  33,  10,  78  ! Plane V, wire 78
+  34,  10,  79  ! Plane V, wire 79
+  35,  10,  80  ! Plane V, wire 80
+  36,  10,  81  ! Plane V, wire 81
+  37,  10,  82  ! Plane V, wire 82
+  38,  10,  83  ! Plane V, wire 83
+  39,  10,  84  ! Plane V, wire 84
+  40,  10,  85  ! Plane V, wire 85
+  41,  10,  86  ! Plane V, wire 86
+  42,  10,  87  ! Plane V, wire 87
+  43,  10,  88  ! Plane V, wire 88
+  44,  10,  89  ! Plane V, wire 89
+  45,  10,  90  ! Plane V, wire 90
+  46,  10,  91  ! Plane V, wire 91
+  48,  10,  92  ! Plane V, wire 92
+  49,  10,  93  ! Plane V, wire 93
+  50,  10,  94  ! Plane V, wire 94
+  51,  10,  95  ! Plane V, wire 95
+  52,  10,  96  ! Plane V, wire 96
+  53,  10,  97  ! Plane V, wire 97
+  54,  10,  98  ! Plane V, wire 98
+  55,  10,  99  ! Plane V, wire 99
+  56,  10, 100  ! Plane V, wire 100
+  57,  10, 101  ! Plane V, wire 101
+  58,  10, 102  ! Plane V, wire 102
+  59,  10, 103  ! Plane V, wire 103
+  60,  10, 104  ! Plane V, wire 104
+  61,  10, 105  ! Plane V, wire 105
+  62,  10, 106  ! Plane V, wire 106
+  63,  10, 107  ! Plane V, wire 107
+
+SLOT=13
+REFINDEX=0
+   0,   7,   1  ! Plane X, wire 1
+   1,   7,   2  ! Plane X, wire 2
+   2,   7,   3  ! Plane X, wire 3
+   3,   7,   4  ! Plane X, wire 4
+   4,   7,   5  ! Plane X, wire 5
+   5,   7,   6  ! Plane X, wire 6
+   6,   7,   7  ! Plane X, wire 7
+   7,   7,   8  ! Plane X, wire 8
+   8,   7,   9  ! Plane X, wire 9
+   9,   7,  10  ! Plane X, wire 10
+  10,   7,  11  ! Plane X, wire 11
+  11,   7,  12  ! Plane X, wire 12
+  12,   7,  13  ! Plane X, wire 13
+  13,   7,  14  ! Plane X, wire 14
+  14,   7,  15  ! Plane X, wire 15
+  15,   7,  16  ! Plane X, wire 16
+  16,   7,  17  ! Plane X, wire 17
+  17,   7,  18  ! Plane X, wire 18
+  18,   7,  19  ! Plane X, wire 19
+  19,   7,  20  ! Plane X, wire 20
+  20,   7,  21  ! Plane X, wire 21
+  21,   7,  22  ! Plane X, wire 22
+  22,   7,  23  ! Plane X, wire 23
+  23,   7,  24  ! Plane X, wire 24
+  24,   7,  25  ! Plane X, wire 25
+  25,   7,  26  ! Plane X, wire 26
+  26,   7,  27  ! Plane X, wire 27
+  27,   7,  28  ! Plane X, wire 28
+  28,   7,  29  ! Plane X, wire 29
+  29,   7,  30  ! Plane X, wire 30
+  30,   7,  31  ! Plane X, wire 31
+  31,   7,  32  ! Plane X, wire 32
+  32,   7,  33  ! Plane X, wire 33
+  33,   7,  34  ! Plane X, wire 34
+  34,   7,  35  ! Plane X, wire 35
+  35,   7,  36  ! Plane X, wire 36
+  36,   7,  37  ! Plane X, wire 37
+  37,   7,  38  ! Plane X, wire 38
+  38,   7,  39  ! Plane X, wire 39
+  39,   7,  40  ! Plane X, wire 40
+  40,   7,  41  ! Plane X, wire 41
+  41,   7,  42  ! Plane X, wire 42
+  42,   7,  43  ! Plane X, wire 43
+  43,   7,  44  ! Plane X, wire 44
+  44,   7,  45  ! Plane X, wire 45
+  45,   7,  46  ! Plane X, wire 46
+  46,   7,  47  ! Plane X, wire 47
+  47,   7,  48  ! Plane X, wire 48
+  48,   7,  49  ! Plane X, wire 49
+  49,   7,  50  ! Plane X, wire 50
+  50,   7,  51  ! Plane X, wire 51
+  51,   7,  52  ! Plane X, wire 52
+  52,   7,  53  ! Plane X, wire 53
+  53,   7,  54  ! Plane X, wire 54
+  54,   7,  55  ! Plane X, wire 55
+  55,   7,  56  ! Plane X, wire 56
+  56,   7,  57  ! Plane X, wire 57
+  57,   7,  58  ! Plane X, wire 58
+  58,   7,  59  ! Plane X, wire 59
+  59,   7,  60  ! Plane X, wire 60
+  60,   7,  61  ! Plane X, wire 61
+  61,   7,  62  ! Plane X, wire 62
+  62,   7,  63  ! Plane X, wire 63
+  63,   7,  64  ! Plane X, wire 64
+  64,   7,  65  ! Plane X, wire 65
+  65,   7,  66  ! Plane X, wire 66
+  66,   7,  67  ! Plane X, wire 67
+  67,   7,  68  ! Plane X, wire 68
+  68,   7,  69  ! Plane X, wire 69
+  69,   7,  70  ! Plane X, wire 70
+  70,   7,  71  ! Plane X, wire 71
+  71,   7,  72  ! Plane X, wire 72
+  72,   7,  73  ! Plane X, wire 73
+  73,   7,  74  ! Plane X, wire 74
+  74,   7,  75  ! Plane X, wire 75
+  75,   7,  76  ! Plane X, wire 76
+  76,   7,  77  ! Plane X, wire 77
+  77,   7,  78  ! Plane X, wire 78
+  78,   7,  79  ! Plane X, wire 79
+  79,   7,  80  ! Plane X, wire 80
+  80,   7,  81  ! Plane X, wire 81
+  81,   7,  82  ! Plane X, wire 82
+  82,   7,  83  ! Plane X, wire 83
+  83,   7,  84  ! Plane X, wire 84
+  84,   7,  85  ! Plane X, wire 85
+  85,   7,  86  ! Plane X, wire 86
+  86,   7,  87  ! Plane X, wire 87
+  87,   7,  88  ! Plane X, wire 88
+  88,   7,  89  ! Plane X, wire 89
+  89,   7,  90  ! Plane X, wire 90
+  90,   7,  91  ! Plane X, wire 91
+  91,   7,  92  ! Plane X, wire 92
+  92,   7,  93  ! Plane X, wire 93
+  93,   7,  94  ! Plane X, wire 94
+  94,   7,  95  ! Plane X, wire 95
+  95,   7,  96  ! Plane X, wire 96
+  96,   7,  97  ! Plane X, wire 97
+  97,   7,  98  ! Plane X, wire 98
+  98,   7,  99  ! Plane X, wire 99
+  99,   7, 100  ! Plane X, wire 100
+ 100,   7, 101  ! Plane X, wire 101
+ 101,   7, 102  ! Plane X, wire 102
+ 102,   7, 103  ! Plane X, wire 103
+ 103,   7, 104  ! Plane X, wire 104
+ 104,   7, 105  ! Plane X, wire 105
+ 105,   7, 106  ! Plane X, wire 106
+ 106,   7, 107  ! Plane X, wire 107
+ 107,   7, 108  ! Plane X, wire 108
+ 108,   7, 109  ! Plane X, wire 109
+ 109,   7, 110  ! Plane X, wire 110
+ 110,   7, 111  ! Plane X, wire 111
+ 111,   7, 112  ! Plane X, wire 112
+ 112,  12,   1  ! Plane X', wire 1
+ 113,  12,   2  ! Plane X', wire 2
+ 114,  12,   3  ! Plane X', wire 3
+ 115,  12,   4  ! Plane X', wire 4
+ 116,  12,   5  ! Plane X', wire 5
+ 117,  12,   6  ! Plane X', wire 6
+ 118,  12,   7  ! Plane X', wire 7
+ 119,  12,   8  ! Plane X', wire 8
+ 120,  12,   9  ! Plane X', wire 9
+ 121,  12,  10  ! Plane X', wire 10
+ 122,  12,  11  ! Plane X', wire 11
+ 123,  12,  12  ! Plane X', wire 12
+ 124,  12,  13  ! Plane X', wire 13
+ 125,  12,  14  ! Plane X', wire 14
+ 126,  12,  15  ! Plane X', wire 15
+ 127,  12,  16  ! Plane X', wire 16
+
+SLOT=14
+REFINDEX=0
+  16,  12,  17  ! Plane X', wire 17
+  17,  12,  18  ! Plane X', wire 18
+  18,  12,  19  ! Plane X', wire 19
+  19,  12,  20  ! Plane X', wire 20
+  20,  12,  21  ! Plane X', wire 21
+  21,  12,  22  ! Plane X', wire 22
+  22,  12,  23  ! Plane X', wire 23
+  23,  12,  24  ! Plane X', wire 24
+  24,  12,  25  ! Plane X', wire 25
+  25,  12,  26  ! Plane X', wire 26
+  26,  12,  27  ! Plane X', wire 27
+  27,  12,  28  ! Plane X', wire 28
+  28,  12,  29  ! Plane X', wire 29
+  29,  12,  30  ! Plane X', wire 30
+  30,  12,  31  ! Plane X', wire 31
+  31,  12,  32  ! Plane X', wire 32
+
+SLOT=16
+REFINDEX=0
+   0,  12,  33  ! Plane X', wire 33
+   1,  12,  34  ! Plane X', wire 34
+   2,  12,  35  ! Plane X', wire 35
+   3,  12,  36  ! Plane X', wire 36
+   4,  12,  37  ! Plane X', wire 37
+   5,  12,  38  ! Plane X', wire 38
+   6,  12,  39  ! Plane X', wire 39
+   7,  12,  40  ! Plane X', wire 40
+   8,  12,  41  ! Plane X', wire 41
+   9,  12,  42  ! Plane X', wire 42
+  10,  12,  43  ! Plane X', wire 43
+  11,  12,  44  ! Plane X', wire 44
+  12,  12,  45  ! Plane X', wire 45
+  13,  12,  46  ! Plane X', wire 46
+  14,  12,  47  ! Plane X', wire 47
+  15,  12,  48  ! Plane X', wire 48
+  16,  12,  49  ! Plane X', wire 49
+  17,  12,  50  ! Plane X', wire 50
+  18,  12,  51  ! Plane X', wire 51
+  19,  12,  52  ! Plane X', wire 52
+  20,  12,  53  ! Plane X', wire 53
+  21,  12,  54  ! Plane X', wire 54
+  22,  12,  55  ! Plane X', wire 55
+  23,  12,  56  ! Plane X', wire 56
+  24,  12,  57  ! Plane X', wire 57
+  25,  12,  58  ! Plane X', wire 58
+  26,  12,  59  ! Plane X', wire 59
+  27,  12,  60  ! Plane X', wire 60
+  28,  12,  61  ! Plane X', wire 61
+  29,  12,  62  ! Plane X', wire 62
+  30,  12,  63  ! Plane X', wire 63
+  31,  12,  64  ! Plane X', wire 64
+  32,  12,  65  ! Plane X', wire 65
+  33,  12,  66  ! Plane X', wire 66
+  34,  12,  67  ! Plane X', wire 67
+  35,  12,  68  ! Plane X', wire 68
+  36,  12,  69  ! Plane X', wire 69
+  37,  12,  70  ! Plane X', wire 70
+  38,  12,  71  ! Plane X', wire 71
+  39,  12,  72  ! Plane X', wire 72
+  40,  12,  73  ! Plane X', wire 73
+  41,  12,  74  ! Plane X', wire 74
+  42,  12,  75  ! Plane X', wire 75
+  43,  12,  76  ! Plane X', wire 76
+  44,  12,  77  ! Plane X', wire 77
+  45,  12,  78  ! Plane X', wire 78
+  46,  12,  79  ! Plane X', wire 79
+  47,  12,  80  ! Plane X', wire 80
+  48,  12,  81  ! Plane X', wire 81
+  49,  12,  82  ! Plane X', wire 82
+  50,  12,  83  ! Plane X', wire 83
+  51,  12,  84  ! Plane X', wire 84
+  52,  12,  85  ! Plane X', wire 85
+  53,  12,  86  ! Plane X', wire 86
+  54,  12,  87  ! Plane X', wire 87
+  55,  12,  88  ! Plane X', wire 88
+  56,  12,  89  ! Plane X', wire 89
+  57,  12,  90  ! Plane X', wire 90
+  58,  12,  91  ! Plane X', wire 91
+  59,  12,  92  ! Plane X', wire 92
+  60,  12,  93  ! Plane X', wire 93
+  61,  12,  94  ! Plane X', wire 94
+  62,  12,  95  ! Plane X', wire 95
+  63,  12,  96  ! Plane X', wire 96
+  64,  12,  97  ! Plane X', wire 97
+  65,  12,  98  ! Plane X', wire 98
+  66,  12,  99  ! Plane X', wire 99
+  67,  12, 100  ! Plane X', wire 100
+  68,  12, 101  ! Plane X', wire 101
+  69,  12, 102  ! Plane X', wire 102
+  70,  12, 103  ! Plane X', wire 103
+  71,  12, 104  ! Plane X', wire 104
+  72,  12, 105  ! Plane X', wire 105
+  73,  12, 106  ! Plane X', wire 106
+  74,  12, 107  ! Plane X', wire 107
+  75,  12, 108  ! Plane X', wire 108
+  76,  12, 109  ! Plane X', wire 109
+  77,  12, 110  ! Plane X', wire 110
+  78,  12, 111  ! Plane X', wire 111
+  79,  12, 112  ! Plane X', wire 112
+
+SLOT=17
+REFINDEX=0
+  64,   8,   1  ! Plane Y, wire 1
+  65,   8,   2  ! Plane Y, wire 2
+  66,   8,   3  ! Plane Y, wire 3
+  67,   8,   4  ! Plane Y, wire 4
+  68,   8,   5  ! Plane Y, wire 5
+  69,   8,   6  ! Plane Y, wire 6
+  70,   8,   7  ! Plane Y, wire 7
+  71,   8,   8  ! Plane Y, wire 8
+  72,   8,   9  ! Plane Y, wire 9
+  73,   8,  10  ! Plane Y, wire 10
+  74,   8,  11  ! Plane Y, wire 11
+  75,   8,  12  ! Plane Y, wire 12
+  76,   8,  13  ! Plane Y, wire 13
+  80,   8,  14  ! Plane Y, wire 14
+  81,   8,  15  ! Plane Y, wire 15
+  82,   8,  16  ! Plane Y, wire 16
+  83,   8,  17  ! Plane Y, wire 17
+  84,   8,  18  ! Plane Y, wire 18
+  85,   8,  19  ! Plane Y, wire 19
+  86,   8,  20  ! Plane Y, wire 20
+  87,   8,  21  ! Plane Y, wire 21
+  88,   8,  22  ! Plane Y, wire 22
+  89,   8,  23  ! Plane Y, wire 23
+  90,   8,  24  ! Plane Y, wire 24
+  91,   8,  25  ! Plane Y, wire 25
+  92,   8,  26  ! Plane Y, wire 26
+  96,   8,  27  ! Plane Y, wire 27
+  97,   8,  28  ! Plane Y, wire 28
+  98,   8,  29  ! Plane Y, wire 29
+  99,   8,  30  ! Plane Y, wire 30
+ 100,   8,  31  ! Plane Y, wire 31
+ 101,   8,  32  ! Plane Y, wire 32
+ 102,   8,  33  ! Plane Y, wire 33
+ 103,   8,  34  ! Plane Y, wire 34
+ 104,   8,  35  ! Plane Y, wire 35
+ 105,   8,  36  ! Plane Y, wire 36
+ 106,   8,  37  ! Plane Y, wire 37
+ 107,   8,  38  ! Plane Y, wire 38
+ 108,   8,  39  ! Plane Y, wire 39
+ 112,   8,  40  ! Plane Y, wire 40
+ 113,   8,  41  ! Plane Y, wire 41
+ 114,   8,  42  ! Plane Y, wire 42
+ 115,   8,  43  ! Plane Y, wire 43
+ 116,   8,  44  ! Plane Y, wire 44
+ 117,   8,  45  ! Plane Y, wire 45
+ 118,   8,  46  ! Plane Y, wire 46
+ 119,   8,  47  ! Plane Y, wire 47
+ 120,   8,  48  ! Plane Y, wire 48
+ 121,   8,  49  ! Plane Y, wire 49
+ 122,   8,  50  ! Plane Y, wire 50
+ 123,   8,  51  ! Plane Y, wire 51
+ 124,   8,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   1
+  64,  11,   1  ! Plane Y', wire 1
+  65,  11,   2  ! Plane Y', wire 2
+  66,  11,   3  ! Plane Y', wire 3
+  67,  11,   4  ! Plane Y', wire 4
+  68,  11,   5  ! Plane Y', wire 5
+  69,  11,   6  ! Plane Y', wire 6
+  70,  11,   7  ! Plane Y', wire 7
+  71,  11,   8  ! Plane Y', wire 8
+  72,  11,   9  ! Plane Y', wire 9
+  73,  11,  10  ! Plane Y', wire 10
+  74,  11,  11  ! Plane Y', wire 11
+  75,  11,  12  ! Plane Y', wire 12
+  76,  11,  13  ! Plane Y', wire 13
+  80,  11,  14  ! Plane Y', wire 14
+  81,  11,  15  ! Plane Y', wire 15
+  82,  11,  16  ! Plane Y', wire 16
+  83,  11,  17  ! Plane Y', wire 17
+  84,  11,  18  ! Plane Y', wire 18
+  85,  11,  19  ! Plane Y', wire 19
+  86,  11,  20  ! Plane Y', wire 20
+  87,  11,  21  ! Plane Y', wire 21
+  88,  11,  22  ! Plane Y', wire 22
+  89,  11,  23  ! Plane Y', wire 23
+  90,  11,  24  ! Plane Y', wire 24
+  91,  11,  25  ! Plane Y', wire 25
+  92,  11,  26  ! Plane Y', wire 26
+  96,  11,  27  ! Plane Y', wire 27
+  97,  11,  28  ! Plane Y', wire 28
+  98,  11,  29  ! Plane Y', wire 29
+  99,  11,  30  ! Plane Y', wire 30
+ 100,  11,  31  ! Plane Y', wire 31
+ 101,  11,  32  ! Plane Y', wire 32
+ 102,  11,  33  ! Plane Y', wire 33
+ 103,  11,  34  ! Plane Y', wire 34
+ 104,  11,  35  ! Plane Y', wire 35
+ 105,  11,  36  ! Plane Y', wire 36
+ 106,  11,  37  ! Plane Y', wire 37
+ 107,  11,  38  ! Plane Y', wire 38
+ 108,  11,  39  ! Plane Y', wire 39
+ 112,  11,  40  ! Plane Y', wire 40
+ 113,  11,  41  ! Plane Y', wire 41
+ 114,  11,  42  ! Plane Y', wire 42
+ 115,  11,  43  ! Plane Y', wire 43
+ 116,  11,  44  ! Plane Y', wire 44
+ 117,  11,  45  ! Plane Y', wire 45
+ 118,  11,  46  ! Plane Y', wire 46
+ 119,  11,  47  ! Plane Y', wire 47
+ 120,  11,  48  ! Plane Y', wire 48
+ 121,  11,  49  ! Plane Y', wire 49
+ 122,  11,  50  ! Plane Y', wire 50
+ 123,  11,  51  ! Plane Y', wire 51
+ 124,  11,  52  ! Plane Y', wire 52
+
+
+DETECTOR=13
+
+ROC=1
+
+SLOT=8
+   0,   1,   1,   0  ! h1x01A+
+   1,   1,   2,   0  ! h1x02A+
+   2,   1,   3,   0  ! h1x03A+
+   3,   1,   4,   0  ! h1x04A+
+   4,   1,   5,   0  ! h1x05A+
+   5,   1,   6,   0  ! h1x06A+
+   6,   1,   7,   0  ! h1x07A+
+   7,   1,   8,   0  ! h1x08A+
+   8,   1,   9,   0  ! h1x09A+
+   9,   1,  10,   0  ! h1x10A+
+  10,   1,  11,   0  ! h1x11A+
+  11,   1,  12,   0  ! h1x12A+
+  12,   1,  13,   0  ! h1x13A+
+  13,   1,  14,   0  ! h1x14A+
+  14,   1,  15,   0  ! h1x15A+
+  15,   1,  16,   0  ! h1x16A+
+
+SLOT=9
+   0,   1,   1,   1  ! h1x01A-
+   1,   1,   2,   1  ! h1x02A-
+   2,   1,   3,   1  ! h1x03A-
+   3,   1,   4,   1  ! h1x04A-
+   4,   1,   5,   1  ! h1x05A-
+   5,   1,   6,   1  ! h1x06A-
+   6,   1,   7,   1  ! h1x07A-
+   7,   1,   8,   1  ! h1x08A-
+   8,   1,   9,   1  ! h1x09A-
+   9,   1,  10,   1  ! h1x10A-
+  10,   1,  11,   1  ! h1x11A-
+  11,   1,  12,   1  ! h1x12A-
+  12,   1,  13,   1  ! h1x13A-
+  13,   1,  14,   1  ! h1x14A-
+  14,   1,  15,   1  ! h1x15A-
+  15,   1,  16,   1  ! h1x16A-
+
+SLOT=10
+   0,   2,   1,   0  ! h1y01A+
+   1,   2,   2,   0  ! h1y02A+
+   2,   2,   3,   0  ! h1y03A+
+   3,   2,   4,   0  ! h1y04A+
+   4,   2,   5,   0  ! h1y05A+
+   5,   2,   6,   0  ! h1y06A+
+   6,   2,   7,   0  ! h1y07A+
+   7,   2,   8,   0  ! h1y08A+
+   8,   2,   9,   0  ! h1y09A+
+   9,   2,  10,   0  ! h1y10A+
+  10,   2,   1,   1  ! h1y01A-
+  11,   2,   2,   1  ! h1y02A-
+  12,   2,   3,   1  ! h1y03A-
+  13,   2,   4,   1  ! h1y04A-
+  14,   2,   5,   1  ! h1y05A-
+  15,   2,   6,   1  ! h1y06A-
+
+SLOT=13
+   0,   2,   7,   1  ! h1y07A-
+   1,   2,   8,   1  ! h1y08A-
+   2,   2,   9,   1  ! h1y09A-
+   3,   2,  10,   1  ! h1y10A-
+   4,   3,   1,   0  ! h2x01A+
+   5,   3,   2,   0  ! h2x02A+
+   6,   3,   3,   0  ! h2x03A+
+   7,   3,   4,   0  ! h2x04A+
+   8,   3,   5,   0  ! h2x05A+
+   9,   3,   6,   0  ! h2x06A+
+  10,   3,   7,   0  ! h2x07A+
+  11,   3,   8,   0  ! h2x08A+
+  12,   3,   9,   0  ! h2x09A+
+  13,   3,  10,   0  ! h2x10A+
+  14,   3,  11,   0  ! h2x11A+
+  15,   3,  12,   0  ! h2x12A+
+
+SLOT=14
+   0,   3,  13,   0  ! h2x13A+
+   1,   3,  14,   0  ! h2x14A+
+   2,   3,  15,   0  ! h2x15A+
+   3,   3,  16,   0  ! h2x16A+
+   4,   3,   1,   1  ! h2x01A-
+   5,   3,   2,   1  ! h2x02A-
+   6,   3,   3,   1  ! h2x03A-
+   7,   3,   4,   1  ! h2x04A-
+   8,   3,   5,   1  ! h2x05A-
+   9,   3,   6,   1  ! h2x06A-
+  10,   3,   7,   1  ! h2x07A-
+  11,   3,   8,   1  ! h2x08A-
+  12,   3,   9,   1  ! h2x09A-
+  13,   3,  10,   1  ! h2x10A-
+  14,   3,  11,   1  ! h2x11A-
+  15,   3,  12,   1  ! h2x12A-
+
+SLOT=15
+   0,   3,  13,   1  ! h2x13A-
+   1,   3,  14,   1  ! h2x14A-
+   2,   3,  15,   1  ! h2x15A-
+   3,   3,  16,   1  ! h2x16A-
+   4,   4,   1,   0  ! h2y01A+
+   5,   4,   2,   0  ! h2y02A+
+   6,   4,   3,   0  ! h2y03A+
+   7,   4,   4,   0  ! h2y04A+
+   8,   4,   5,   0  ! h2y05A+
+   9,   4,   6,   0  ! h2y06A+
+  10,   4,   7,   0  ! h2y07A+
+  11,   4,   8,   0  ! h2y08A+
+  12,   4,   9,   0  ! h2y09A+
+  13,   4,  10,   0  ! h2y10A+
+  14,   4,   1,   1  ! h2y01A-
+  15,   4,   2,   1  ! h2y02A-
+
+SLOT=16
+   0,   4,   3,   1  ! h2y03A-
+   1,   4,   4,   1  ! h2y04A-
+   2,   4,   5,   1  ! h2y05A-
+   3,   4,   6,   1  ! h2y06A-
+   4,   4,   7,   1  ! h2y07A-
+   5,   4,   8,   1  ! h2y08A-
+   6,   4,   9,   1  ! h2y09A-
+   7,   4,  10,   1  ! h2y10A-
+
+SLOT=20
+REFINDEX=0
+ 127,1000,   0,   0
+   0,   1,   1,   2  ! h1x01T+
+   1,   1,   3,   2  ! h1x03T+
+   2,   1,   5,   2  ! h1x05T+
+   3,   1,   7,   2  ! h1x07T+
+   4,   1,   2,   2  ! h1x02T+
+   5,   1,   4,   2  ! h1x04T+
+   6,   1,   6,   2  ! h1x06T+
+   7,   1,   8,   2  ! h1x08T+
+   8,   1,   9,   2  ! h1x09T+
+   9,   1,  11,   2  ! h1x11T+
+  10,   1,  13,   2  ! h1x13T+
+  11,   1,  15,   2  ! h1x15T+
+  12,   1,  10,   2  ! h1x10T+
+  13,   1,  12,   2  ! h1x12T+
+  14,   1,  14,   2  ! h1x14T+
+  15,   1,  16,   2  ! h1x16T+
+  16,   1,   1,   3  ! h1x01T-
+  17,   1,   3,   3  ! h1x03T-
+  18,   1,   5,   3  ! h1x05T-
+  19,   1,   7,   3  ! h1x07T-
+  20,   1,   2,   3  ! h1x02T-
+  21,   1,   4,   3  ! h1x04T-
+  22,   1,   6,   3  ! h1x06T-
+  23,   1,   8,   3  ! h1x08T-
+  24,   1,   9,   3  ! h1x09T-
+  25,   1,  11,   3  ! h1x11T-
+  26,   1,  13,   3  ! h1x13T-
+  27,   1,  15,   3  ! h1x15T-
+  28,   1,  10,   3  ! h1x10T-
+  29,   1,  12,   3  ! h1x12T-
+  30,   1,  14,   3  ! h1x14T-
+  31,   1,  16,   3  ! h1x16T-
+  32,   2,   1,   2  ! h1y01T+
+  33,   2,   3,   2  ! h1y03T+
+  34,   2,   5,   2  ! h1y05T+
+  35,   2,   7,   2  ! h1y07T+
+  36,   2,   2,   2  ! h1y02T+
+  37,   2,   4,   2  ! h1y04T+
+  38,   2,   6,   2  ! h1y06T+
+  39,   2,   8,   2  ! h1y08T+
+  40,   2,   9,   2  ! h1y09T+
+  44,   2,  10,   2  ! h1y10T+
+  48,   2,   1,   3  ! h1y01T-
+  49,   2,   3,   3  ! h1y03T-
+  50,   2,   5,   3  ! h1y05T-
+  51,   2,   7,   3  ! h1y07T-
+  52,   2,   2,   3  ! h1y02T-
+  53,   2,   4,   3  ! h1y04T-
+  54,   2,   6,   3  ! h1y06T-
+  55,   2,   8,   3  ! h1y08T-
+  56,   2,   9,   3  ! h1y09T-
+  60,   2,  10,   3  ! h1y10T-
+  64,   3,   1,   2  ! h2x01T+
+  65,   3,   3,   2  ! h2x03T+
+  66,   3,   5,   2  ! h2x05T+
+  67,   3,   7,   2  ! h2x07T+
+  68,   3,   2,   2  ! h2x02T+
+  69,   3,   4,   2  ! h2x04T+
+  70,   3,   6,   2  ! h2x06T+
+  71,   3,   8,   2  ! h2x08T+
+  72,   3,   9,   2  ! h2x09T+
+  73,   3,  11,   2  ! h2x11T+
+  74,   3,  13,   2  ! h2x13T+
+  75,   3,  15,   2  ! h2x15T+
+  76,   3,  10,   2  ! h2x10T+
+  77,   3,  12,   2  ! h2x12T+
+  78,   3,  14,   2  ! h2x14T+
+  79,   3,  16,   2  ! h2x16T+
+  80,   3,   1,   3  ! h2x01T-
+  81,   3,   3,   3  ! h2x03T-
+  82,   3,   5,   3  ! h2x05T-
+  83,   3,   7,   3  ! h2x07T-
+  84,   3,   2,   3  ! h2x02T-
+  85,   3,   4,   3  ! h2x04T-
+  86,   3,   6,   3  ! h2x06T-
+  87,   3,   8,   3  ! h2x08T-
+  88,   3,   9,   3  ! h2x09T-
+  89,   3,  11,   3  ! h2x11T-
+  90,   3,  13,   3  ! h2x13T-
+  91,   3,  15,   3  ! h2x15T-
+  92,   3,  10,   3  ! h2x10T-
+  93,   3,  12,   3  ! h2x12T-
+  94,   3,  14,   3  ! h2x14T-
+  95,   3,  16,   3  ! h2x16T-
+  96,   4,   1,   2  ! h2y01T+
+  97,   4,   3,   2  ! h2y03T+
+  98,   4,   5,   2  ! h2y05T+
+  99,   4,   7,   2  ! h2y07T+
+ 100,   4,   2,   2  ! h2y02T+
+ 101,   4,   4,   2  ! h2y04T+
+ 102,   4,   6,   2  ! h2y06T+
+ 103,   4,   8,   2  ! h2y08T+
+ 104,   4,   9,   2  ! h2y09T+
+ 108,   4,  10,   2  ! h2y10T+
+ 112,   4,   1,   3  ! h2y01T-
+ 113,   4,   3,   3  ! h2y03T-
+ 114,   4,   5,   3  ! h2y05T-
+ 115,   4,   7,   3  ! h2y07T-
+ 116,   4,   2,   3  ! h2y02T-
+ 117,   4,   4,   3  ! h2y04T-
+ 118,   4,   6,   3  ! h2y06T-
+ 119,   4,   8,   3  ! h2y08T-
+ 120,   4,   9,   3  ! h2y09T-
+ 124,   4,  10,   3  ! h2y10T-
diff --git a/MAPS/HMS/DETEC/hdc_htrig.map b/MAPS/HMS/DETEC/hdc_htrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..b3e0097eda365accb4b940cbc151d64fad924c1c
--- /dev/null
+++ b/MAPS/HMS/DETEC/hdc_htrig.map
@@ -0,0 +1,1210 @@
+! THMS_ID=10       ::  ADC,TDC
+! HDC_ID=11        ::  ADC,TDC
+
+
+DETECTOR=10
+
+ROC=1
+
+SLOT=17
+   8,   1,   1,   0  ! hASUM
+   9,   1,   2,   0  ! hBSUM
+  10,   1,   3,   0  ! hCSUM
+  11,   1,   4,   0  ! hDSUM
+  12,   1,   5,   0  ! hPSHWR
+  13,   1,   6,   0  ! hSHWR
+  14,   1,   7,   0  ! hAERSUM
+  15,   1,   8,   0  ! hCERSUM
+
+SLOT=2
+   0,   2,   1,   1  ! h1X
+   1,   2,   2,   1  ! h1Y
+   2,   2,   3,   1  ! h2X
+   3,   2,   4,   1  ! h2Y
+   4,   2,   5,   1  ! h1T
+   5,   2,   6,   1  ! h2T
+   6,   2,   7,   1  ! hT1
+   7,   2,   8,   1  ! hASUM
+   8,   2,   9,   1  ! hBSUM
+   9,   2,  10,   1  ! hCSUM
+  10,   2,  11,   1  ! hDSUM
+  11,   2,  12,   1  ! hPSHWRLO
+  12,   2,  13,   1  ! hPSHWRHI
+  13,   2,  14,   1  ! hSHWR
+  14,   2,  15,   1  ! hAERSUM
+  15,   2,  16,   1  ! hCERSUM
+
+SLOT=20
+ 127,   2,  17,   1  ! hT2
+
+ROC=3
+
+SLOT=5
+ 111,   2,  18,   1  ! hDCREF1
+
+SLOT=8
+ 127,   2,  19,   1  ! hDCREF2
+
+SLOT=10
+ 127,   2,  20,   1  ! hDCREF3
+
+SLOT=17
+ 127,   2,  21,   1  ! hDCREF4
+
+
+DETECTOR=11  ! HMS chambers
+
+ROC=3
+
+SLOT=5
+REFINDEX=0
+ 111,1000,   0,   0
+  96,   3,   1  ! Plane U, wire 1
+  97,   3,   2  ! Plane U, wire 2
+  98,   3,   3  ! Plane U, wire 3
+  99,   3,   4  ! Plane U, wire 4
+ 100,   3,   5  ! Plane U, wire 5
+ 101,   3,   6  ! Plane U, wire 6
+ 102,   3,   7  ! Plane U, wire 7
+ 103,   3,   8  ! Plane U, wire 8
+ 104,   3,   9  ! Plane U, wire 9
+ 105,   3,  10  ! Plane U, wire 10
+ 106,   3,  11  ! Plane U, wire 11
+ 107,   3,  12  ! Plane U, wire 12
+ 108,   3,  13  ! Plane U, wire 13
+ 109,   3,  14  ! Plane U, wire 14
+ 110,   1, 113  ! Plane X, wire 113
+  80,   3,  15  ! Plane U, wire 15
+  81,   3,  16  ! Plane U, wire 16
+  82,   3,  17  ! Plane U, wire 17
+  83,   3,  18  ! Plane U, wire 18
+  84,   3,  19  ! Plane U, wire 19
+  85,   3,  20  ! Plane U, wire 20
+  86,   3,  21  ! Plane U, wire 21
+  87,   3,  22  ! Plane U, wire 22
+  88,   3,  23  ! Plane U, wire 23
+  89,   3,  24  ! Plane U, wire 24
+  90,   3,  25  ! Plane U, wire 25
+  91,   3,  26  ! Plane U, wire 26
+  92,   3,  27  ! Plane U, wire 27
+  93,   3,  28  ! Plane U, wire 28
+  94,   3,  29  ! Plane U, wire 29
+  64,   3,  30  ! Plane U, wire 30
+  65,   3,  31  ! Plane U, wire 31
+  66,   3,  32  ! Plane U, wire 32
+  67,   3,  33  ! Plane U, wire 33
+  68,   3,  34  ! Plane U, wire 34
+  69,   3,  35  ! Plane U, wire 35
+  70,   3,  36  ! Plane U, wire 36
+  71,   3,  37  ! Plane U, wire 37
+  72,   3,  38  ! Plane U, wire 38
+  73,   3,  39  ! Plane U, wire 39
+  74,   3,  40  ! Plane U, wire 40
+  75,   3,  41  ! Plane U, wire 41
+  76,   3,  42  ! Plane U, wire 42
+  77,   3,  43  ! Plane U, wire 43
+  78,   3,  44  ! Plane U, wire 44
+  79,   3,  45  ! Plane U, wire 45
+  48,   3,  46  ! Plane U, wire 46
+  49,   3,  47  ! Plane U, wire 47
+  50,   3,  48  ! Plane U, wire 48
+  51,   3,  49  ! Plane U, wire 49
+  52,   3,  50  ! Plane U, wire 50
+  53,   3,  51  ! Plane U, wire 51
+  54,   3,  52  ! Plane U, wire 52
+  55,   3,  53  ! Plane U, wire 53
+  56,   3,  54  ! Plane U, wire 54
+  57,   3,  55  ! Plane U, wire 55
+  58,   3,  56  ! Plane U, wire 56
+  59,   3,  57  ! Plane U, wire 57
+  60,   3,  58  ! Plane U, wire 58
+  61,   3,  59  ! Plane U, wire 59
+  62,   3,  60  ! Plane U, wire 60
+  32,   3,  61  ! Plane U, wire 61
+  33,   3,  62  ! Plane U, wire 62
+  34,   3,  63  ! Plane U, wire 63
+  35,   3,  64  ! Plane U, wire 64
+  36,   3,  65  ! Plane U, wire 65
+  37,   3,  66  ! Plane U, wire 66
+  38,   3,  67  ! Plane U, wire 67
+  39,   3,  68  ! Plane U, wire 68
+  40,   3,  69  ! Plane U, wire 69
+  41,   3,  70  ! Plane U, wire 70
+  42,   3,  71  ! Plane U, wire 71
+  43,   3,  72  ! Plane U, wire 72
+  44,   3,  73  ! Plane U, wire 73
+  45,   3,  74  ! Plane U, wire 74
+  46,   3,  75  ! Plane U, wire 75
+  47,   3,  76  ! Plane U, wire 76
+  16,   3,  77  ! Plane U, wire 77
+  17,   3,  78  ! Plane U, wire 78
+  18,   3,  79  ! Plane U, wire 79
+  19,   3,  80  ! Plane U, wire 80
+  20,   3,  81  ! Plane U, wire 81
+  21,   3,  82  ! Plane U, wire 82
+  22,   3,  83  ! Plane U, wire 83
+  23,   3,  84  ! Plane U, wire 84
+  24,   3,  85  ! Plane U, wire 85
+  25,   3,  86  ! Plane U, wire 86
+  26,   3,  87  ! Plane U, wire 87
+  27,   3,  88  ! Plane U, wire 88
+  28,   3,  89  ! Plane U, wire 89
+  29,   3,  90  ! Plane U, wire 90
+  30,   3,  91  ! Plane U, wire 91
+   0,   3,  92  ! Plane U, wire 92
+   1,   3,  93  ! Plane U, wire 93
+   2,   3,  94  ! Plane U, wire 94
+   3,   3,  95  ! Plane U, wire 95
+   4,   3,  96  ! Plane U, wire 96
+   5,   3,  97  ! Plane U, wire 97
+   6,   3,  98  ! Plane U, wire 98
+   7,   3,  99  ! Plane U, wire 99
+   8,   3, 100  ! Plane U, wire 100
+   9,   3, 101  ! Plane U, wire 101
+  10,   3, 102  ! Plane U, wire 102
+  11,   3, 103  ! Plane U, wire 103
+  12,   3, 104  ! Plane U, wire 104
+  13,   3, 105  ! Plane U, wire 105
+  14,   3, 106  ! Plane U, wire 106
+  15,   3, 107  ! Plane U, wire 107
+
+SLOT=7
+REFINDEX=0
+  96,   4,   1  ! Plane V, wire 1
+  97,   4,   2  ! Plane V, wire 2
+  98,   4,   3  ! Plane V, wire 3
+  99,   4,   4  ! Plane V, wire 4
+ 100,   4,   5  ! Plane V, wire 5
+ 101,   4,   6  ! Plane V, wire 6
+ 102,   4,   7  ! Plane V, wire 7
+ 103,   4,   8  ! Plane V, wire 8
+ 104,   4,   9  ! Plane V, wire 9
+ 105,   4,  10  ! Plane V, wire 10
+ 106,   4,  11  ! Plane V, wire 11
+ 107,   4,  12  ! Plane V, wire 12
+ 108,   4,  13  ! Plane V, wire 13
+ 109,   4,  14  ! Plane V, wire 14
+ 110,   6, 113  ! Plane X', wire 113
+ 112,   4,  15  ! Plane V, wire 15
+ 113,   4,  16  ! Plane V, wire 16
+ 114,   4,  17  ! Plane V, wire 17
+ 115,   4,  18  ! Plane V, wire 18
+ 116,   4,  19  ! Plane V, wire 19
+ 117,   4,  20  ! Plane V, wire 20
+ 118,   4,  21  ! Plane V, wire 21
+ 119,   4,  22  ! Plane V, wire 22
+ 120,   4,  23  ! Plane V, wire 23
+ 121,   4,  24  ! Plane V, wire 24
+ 122,   4,  25  ! Plane V, wire 25
+ 123,   4,  26  ! Plane V, wire 26
+ 124,   4,  27  ! Plane V, wire 27
+ 125,   4,  28  ! Plane V, wire 28
+ 126,   4,  29  ! Plane V, wire 29
+
+SLOT=8
+REFINDEX=0
+ 127,1000,   0,   1
+   0,   4,  30  ! Plane V, wire 30
+   1,   4,  31  ! Plane V, wire 31
+   2,   4,  32  ! Plane V, wire 32
+   3,   4,  33  ! Plane V, wire 33
+   4,   4,  34  ! Plane V, wire 34
+   5,   4,  35  ! Plane V, wire 35
+   6,   4,  36  ! Plane V, wire 36
+   7,   4,  37  ! Plane V, wire 37
+   8,   4,  38  ! Plane V, wire 38
+   9,   4,  39  ! Plane V, wire 39
+  10,   4,  40  ! Plane V, wire 40
+  11,   4,  41  ! Plane V, wire 41
+  12,   4,  42  ! Plane V, wire 42
+  13,   4,  43  ! Plane V, wire 43
+  14,   4,  44  ! Plane V, wire 44
+  15,   4,  45  ! Plane V, wire 45
+  16,   4,  46  ! Plane V, wire 46
+  17,   4,  47  ! Plane V, wire 47
+  18,   4,  48  ! Plane V, wire 48
+  19,   4,  49  ! Plane V, wire 49
+  20,   4,  50  ! Plane V, wire 50
+  21,   4,  51  ! Plane V, wire 51
+  22,   4,  52  ! Plane V, wire 52
+  23,   4,  53  ! Plane V, wire 53
+  24,   4,  54  ! Plane V, wire 54
+  25,   4,  55  ! Plane V, wire 55
+  26,   4,  56  ! Plane V, wire 56
+  27,   4,  57  ! Plane V, wire 57
+  28,   4,  58  ! Plane V, wire 58
+  29,   4,  59  ! Plane V, wire 59
+  30,   4,  60  ! Plane V, wire 60
+  32,   4,  61  ! Plane V, wire 61
+  33,   4,  62  ! Plane V, wire 62
+  34,   4,  63  ! Plane V, wire 63
+  35,   4,  64  ! Plane V, wire 64
+  36,   4,  65  ! Plane V, wire 65
+  37,   4,  66  ! Plane V, wire 66
+  38,   4,  67  ! Plane V, wire 67
+  39,   4,  68  ! Plane V, wire 68
+  40,   4,  69  ! Plane V, wire 69
+  41,   4,  70  ! Plane V, wire 70
+  42,   4,  71  ! Plane V, wire 71
+  43,   4,  72  ! Plane V, wire 72
+  44,   4,  73  ! Plane V, wire 73
+  45,   4,  74  ! Plane V, wire 74
+  46,   4,  75  ! Plane V, wire 75
+  47,   4,  76  ! Plane V, wire 76
+  48,   4,  77  ! Plane V, wire 77
+  49,   4,  78  ! Plane V, wire 78
+  50,   4,  79  ! Plane V, wire 79
+  51,   4,  80  ! Plane V, wire 80
+  52,   4,  81  ! Plane V, wire 81
+  53,   4,  82  ! Plane V, wire 82
+  54,   4,  83  ! Plane V, wire 83
+  55,   4,  84  ! Plane V, wire 84
+  56,   4,  85  ! Plane V, wire 85
+  57,   4,  86  ! Plane V, wire 86
+  58,   4,  87  ! Plane V, wire 87
+  59,   4,  88  ! Plane V, wire 88
+  60,   4,  89  ! Plane V, wire 89
+  61,   4,  90  ! Plane V, wire 90
+  62,   4,  91  ! Plane V, wire 91
+
+SLOT=4
+REFINDEX=0
+  96,   4,  92  ! Plane V, wire 92
+  97,   4,  93  ! Plane V, wire 93
+  98,   4,  94  ! Plane V, wire 94
+  99,   4,  95  ! Plane V, wire 95
+ 100,   4,  96  ! Plane V, wire 96
+ 101,   4,  97  ! Plane V, wire 97
+ 102,   4,  98  ! Plane V, wire 98
+ 103,   4,  99  ! Plane V, wire 99
+ 104,   4, 100  ! Plane V, wire 100
+ 105,   4, 101  ! Plane V, wire 101
+ 106,   4, 102  ! Plane V, wire 102
+ 107,   4, 103  ! Plane V, wire 103
+ 108,   4, 104  ! Plane V, wire 104
+ 109,   4, 105  ! Plane V, wire 105
+ 110,   4, 106  ! Plane V, wire 106
+ 111,   4, 107  ! Plane V, wire 107
+  80,   1,   1  ! Plane X, wire 1
+  81,   1,   2  ! Plane X, wire 2
+  82,   1,   3  ! Plane X, wire 3
+  83,   1,   4  ! Plane X, wire 4
+  84,   1,   5  ! Plane X, wire 5
+  85,   1,   6  ! Plane X, wire 6
+  86,   1,   7  ! Plane X, wire 7
+  87,   1,   8  ! Plane X, wire 8
+  88,   1,   9  ! Plane X, wire 9
+  89,   1,  10  ! Plane X, wire 10
+  90,   1,  11  ! Plane X, wire 11
+  91,   1,  12  ! Plane X, wire 12
+  92,   1,  13  ! Plane X, wire 13
+  93,   1,  14  ! Plane X, wire 14
+  94,   1,  15  ! Plane X, wire 15
+  95,   1,  16  ! Plane X, wire 16
+  64,   1,  17  ! Plane X, wire 17
+  65,   1,  18  ! Plane X, wire 18
+  66,   1,  19  ! Plane X, wire 19
+  67,   1,  20  ! Plane X, wire 20
+  68,   1,  21  ! Plane X, wire 21
+  69,   1,  22  ! Plane X, wire 22
+  70,   1,  23  ! Plane X, wire 23
+  71,   1,  24  ! Plane X, wire 24
+  72,   1,  25  ! Plane X, wire 25
+  73,   1,  26  ! Plane X, wire 26
+  74,   1,  27  ! Plane X, wire 27
+  75,   1,  28  ! Plane X, wire 28
+  76,   1,  29  ! Plane X, wire 29
+  77,   1,  30  ! Plane X, wire 30
+  78,   1,  31  ! Plane X, wire 31
+  79,   1,  32  ! Plane X, wire 32
+  48,   1,  33  ! Plane X, wire 33
+  49,   1,  34  ! Plane X, wire 34
+  50,   1,  35  ! Plane X, wire 35
+  51,   1,  36  ! Plane X, wire 36
+  52,   1,  37  ! Plane X, wire 37
+  53,   1,  38  ! Plane X, wire 38
+  54,   1,  39  ! Plane X, wire 39
+  55,   1,  40  ! Plane X, wire 40
+  56,   1,  41  ! Plane X, wire 41
+  57,   1,  42  ! Plane X, wire 42
+  58,   1,  43  ! Plane X, wire 43
+  59,   1,  44  ! Plane X, wire 44
+  60,   1,  45  ! Plane X, wire 45
+  61,   1,  46  ! Plane X, wire 46
+  62,   1,  47  ! Plane X, wire 47
+  63,   1,  48  ! Plane X, wire 48
+  32,   1,  49  ! Plane X, wire 49
+  33,   1,  50  ! Plane X, wire 50
+  34,   1,  51  ! Plane X, wire 51
+  35,   1,  52  ! Plane X, wire 52
+  36,   1,  53  ! Plane X, wire 53
+  37,   1,  54  ! Plane X, wire 54
+  38,   1,  55  ! Plane X, wire 55
+  39,   1,  56  ! Plane X, wire 56
+  40,   1,  57  ! Plane X, wire 57
+  41,   1,  58  ! Plane X, wire 58
+  42,   1,  59  ! Plane X, wire 59
+  43,   1,  60  ! Plane X, wire 60
+  44,   1,  61  ! Plane X, wire 61
+  45,   1,  62  ! Plane X, wire 62
+  46,   1,  63  ! Plane X, wire 63
+  47,   1,  64  ! Plane X, wire 64
+  16,   1,  65  ! Plane X, wire 65
+  17,   1,  66  ! Plane X, wire 66
+  18,   1,  67  ! Plane X, wire 67
+  19,   1,  68  ! Plane X, wire 68
+  20,   1,  69  ! Plane X, wire 69
+  21,   1,  70  ! Plane X, wire 70
+  22,   1,  71  ! Plane X, wire 71
+  23,   1,  72  ! Plane X, wire 72
+  24,   1,  73  ! Plane X, wire 73
+  25,   1,  74  ! Plane X, wire 74
+  26,   1,  75  ! Plane X, wire 75
+  27,   1,  76  ! Plane X, wire 76
+  28,   1,  77  ! Plane X, wire 77
+  29,   1,  78  ! Plane X, wire 78
+  30,   1,  79  ! Plane X, wire 79
+  31,   1,  80  ! Plane X, wire 80
+   0,   1,  81  ! Plane X, wire 81
+   1,   1,  82  ! Plane X, wire 82
+   2,   1,  83  ! Plane X, wire 83
+   3,   1,  84  ! Plane X, wire 84
+   4,   1,  85  ! Plane X, wire 85
+   5,   1,  86  ! Plane X, wire 86
+   6,   1,  87  ! Plane X, wire 87
+   7,   1,  88  ! Plane X, wire 88
+   8,   1,  89  ! Plane X, wire 89
+   9,   1,  90  ! Plane X, wire 90
+  10,   1,  91  ! Plane X, wire 91
+  11,   1,  92  ! Plane X, wire 92
+  12,   1,  93  ! Plane X, wire 93
+  13,   1,  94  ! Plane X, wire 94
+  14,   1,  95  ! Plane X, wire 95
+  15,   1,  96  ! Plane X, wire 96
+
+SLOT=7
+REFINDEX=0
+  80,   1,  97  ! Plane X, wire 97
+  81,   1,  98  ! Plane X, wire 98
+  82,   1,  99  ! Plane X, wire 99
+  83,   1, 100  ! Plane X, wire 100
+  84,   1, 101  ! Plane X, wire 101
+  85,   1, 102  ! Plane X, wire 102
+  86,   1, 103  ! Plane X, wire 103
+  87,   1, 104  ! Plane X, wire 104
+  88,   1, 105  ! Plane X, wire 105
+  89,   1, 106  ! Plane X, wire 106
+  90,   1, 107  ! Plane X, wire 107
+  91,   1, 108  ! Plane X, wire 108
+  92,   1, 109  ! Plane X, wire 109
+  93,   1, 110  ! Plane X, wire 110
+  94,   1, 111  ! Plane X, wire 111
+  95,   1, 112  ! Plane X, wire 112
+
+SLOT=4
+REFINDEX=0
+ 112,   6,   1  ! Plane X', wire 1
+ 113,   6,   2  ! Plane X', wire 2
+ 114,   6,   3  ! Plane X', wire 3
+ 115,   6,   4  ! Plane X', wire 4
+ 116,   6,   5  ! Plane X', wire 5
+ 117,   6,   6  ! Plane X', wire 6
+ 118,   6,   7  ! Plane X', wire 7
+ 119,   6,   8  ! Plane X', wire 8
+ 120,   6,   9  ! Plane X', wire 9
+ 121,   6,  10  ! Plane X', wire 10
+ 122,   6,  11  ! Plane X', wire 11
+ 123,   6,  12  ! Plane X', wire 12
+ 124,   6,  13  ! Plane X', wire 13
+ 125,   6,  14  ! Plane X', wire 14
+ 126,   6,  15  ! Plane X', wire 15
+ 127,   6,  16  ! Plane X', wire 16
+
+SLOT=5
+REFINDEX=0
+ 112,   6,  17  ! Plane X', wire 17
+ 113,   6,  18  ! Plane X', wire 18
+ 114,   6,  19  ! Plane X', wire 19
+ 115,   6,  20  ! Plane X', wire 20
+ 116,   6,  21  ! Plane X', wire 21
+ 117,   6,  22  ! Plane X', wire 22
+ 118,   6,  23  ! Plane X', wire 23
+ 119,   6,  24  ! Plane X', wire 24
+ 120,   6,  25  ! Plane X', wire 25
+ 121,   6,  26  ! Plane X', wire 26
+ 122,   6,  27  ! Plane X', wire 27
+ 123,   6,  28  ! Plane X', wire 28
+ 124,   6,  29  ! Plane X', wire 29
+ 125,   6,  30  ! Plane X', wire 30
+ 126,   6,  31  ! Plane X', wire 31
+ 127,   6,  32  ! Plane X', wire 32
+
+SLOT=7
+REFINDEX=0
+   0,   6,  33  ! Plane X', wire 33
+   1,   6,  34  ! Plane X', wire 34
+   2,   6,  35  ! Plane X', wire 35
+   3,   6,  36  ! Plane X', wire 36
+   4,   6,  37  ! Plane X', wire 37
+   5,   6,  38  ! Plane X', wire 38
+   6,   6,  39  ! Plane X', wire 39
+   7,   6,  40  ! Plane X', wire 40
+   8,   6,  41  ! Plane X', wire 41
+   9,   6,  42  ! Plane X', wire 42
+  10,   6,  43  ! Plane X', wire 43
+  11,   6,  44  ! Plane X', wire 44
+  12,   6,  45  ! Plane X', wire 45
+  13,   6,  46  ! Plane X', wire 46
+  14,   6,  47  ! Plane X', wire 47
+  15,   6,  48  ! Plane X', wire 48
+  16,   6,  49  ! Plane X', wire 49
+  17,   6,  50  ! Plane X', wire 50
+  18,   6,  51  ! Plane X', wire 51
+  19,   6,  52  ! Plane X', wire 52
+  20,   6,  53  ! Plane X', wire 53
+  21,   6,  54  ! Plane X', wire 54
+  22,   6,  55  ! Plane X', wire 55
+  23,   6,  56  ! Plane X', wire 56
+  24,   6,  57  ! Plane X', wire 57
+  25,   6,  58  ! Plane X', wire 58
+  26,   6,  59  ! Plane X', wire 59
+  27,   6,  60  ! Plane X', wire 60
+  28,   6,  61  ! Plane X', wire 61
+  29,   6,  62  ! Plane X', wire 62
+  30,   6,  63  ! Plane X', wire 63
+  31,   6,  64  ! Plane X', wire 64
+  32,   6,  65  ! Plane X', wire 65
+  33,   6,  66  ! Plane X', wire 66
+  34,   6,  67  ! Plane X', wire 67
+  35,   6,  68  ! Plane X', wire 68
+  36,   6,  69  ! Plane X', wire 69
+  37,   6,  70  ! Plane X', wire 70
+  38,   6,  71  ! Plane X', wire 71
+  39,   6,  72  ! Plane X', wire 72
+  40,   6,  73  ! Plane X', wire 73
+  41,   6,  74  ! Plane X', wire 74
+  42,   6,  75  ! Plane X', wire 75
+  43,   6,  76  ! Plane X', wire 76
+  44,   6,  77  ! Plane X', wire 77
+  45,   6,  78  ! Plane X', wire 78
+  46,   6,  79  ! Plane X', wire 79
+  47,   6,  80  ! Plane X', wire 80
+  48,   6,  81  ! Plane X', wire 81
+  49,   6,  82  ! Plane X', wire 82
+  50,   6,  83  ! Plane X', wire 83
+  51,   6,  84  ! Plane X', wire 84
+  52,   6,  85  ! Plane X', wire 85
+  53,   6,  86  ! Plane X', wire 86
+  54,   6,  87  ! Plane X', wire 87
+  55,   6,  88  ! Plane X', wire 88
+  56,   6,  89  ! Plane X', wire 89
+  57,   6,  90  ! Plane X', wire 90
+  58,   6,  91  ! Plane X', wire 91
+  59,   6,  92  ! Plane X', wire 92
+  60,   6,  93  ! Plane X', wire 93
+  61,   6,  94  ! Plane X', wire 94
+  62,   6,  95  ! Plane X', wire 95
+  63,   6,  96  ! Plane X', wire 96
+  64,   6,  97  ! Plane X', wire 97
+  65,   6,  98  ! Plane X', wire 98
+  66,   6,  99  ! Plane X', wire 99
+  67,   6, 100  ! Plane X', wire 100
+  68,   6, 101  ! Plane X', wire 101
+  69,   6, 102  ! Plane X', wire 102
+  70,   6, 103  ! Plane X', wire 103
+  71,   6, 104  ! Plane X', wire 104
+  72,   6, 105  ! Plane X', wire 105
+  73,   6, 106  ! Plane X', wire 106
+  74,   6, 107  ! Plane X', wire 107
+  75,   6, 108  ! Plane X', wire 108
+  76,   6, 109  ! Plane X', wire 109
+  77,   6, 110  ! Plane X', wire 110
+  78,   6, 111  ! Plane X', wire 111
+  79,   6, 112  ! Plane X', wire 112
+
+SLOT=8
+REFINDEX=0
+  64,   2,   1  ! Plane Y, wire 1
+  65,   2,   2  ! Plane Y, wire 2
+  66,   2,   3  ! Plane Y, wire 3
+  67,   2,   4  ! Plane Y, wire 4
+  68,   2,   5  ! Plane Y, wire 5
+  69,   2,   6  ! Plane Y, wire 6
+  70,   2,   7  ! Plane Y, wire 7
+  71,   2,   8  ! Plane Y, wire 8
+  72,   2,   9  ! Plane Y, wire 9
+  73,   2,  10  ! Plane Y, wire 10
+  74,   2,  11  ! Plane Y, wire 11
+  75,   2,  12  ! Plane Y, wire 12
+  76,   2,  13  ! Plane Y, wire 13
+  80,   2,  14  ! Plane Y, wire 14
+  81,   2,  15  ! Plane Y, wire 15
+  82,   2,  16  ! Plane Y, wire 16
+  83,   2,  17  ! Plane Y, wire 17
+  84,   2,  18  ! Plane Y, wire 18
+  85,   2,  19  ! Plane Y, wire 19
+  86,   2,  20  ! Plane Y, wire 20
+  87,   2,  21  ! Plane Y, wire 21
+  88,   2,  22  ! Plane Y, wire 22
+  89,   2,  23  ! Plane Y, wire 23
+  90,   2,  24  ! Plane Y, wire 24
+  91,   2,  25  ! Plane Y, wire 25
+  92,   2,  26  ! Plane Y, wire 26
+  96,   2,  27  ! Plane Y, wire 27
+  97,   2,  28  ! Plane Y, wire 28
+  98,   2,  29  ! Plane Y, wire 29
+  99,   2,  30  ! Plane Y, wire 30
+ 100,   2,  31  ! Plane Y, wire 31
+ 101,   2,  32  ! Plane Y, wire 32
+ 102,   2,  33  ! Plane Y, wire 33
+ 103,   2,  34  ! Plane Y, wire 34
+ 104,   2,  35  ! Plane Y, wire 35
+ 105,   2,  36  ! Plane Y, wire 36
+ 106,   2,  37  ! Plane Y, wire 37
+ 107,   2,  38  ! Plane Y, wire 38
+ 108,   2,  39  ! Plane Y, wire 39
+ 112,   2,  40  ! Plane Y, wire 40
+ 113,   2,  41  ! Plane Y, wire 41
+ 114,   2,  42  ! Plane Y, wire 42
+ 115,   2,  43  ! Plane Y, wire 43
+ 116,   2,  44  ! Plane Y, wire 44
+ 117,   2,  45  ! Plane Y, wire 45
+ 118,   2,  46  ! Plane Y, wire 46
+ 119,   2,  47  ! Plane Y, wire 47
+ 120,   2,  48  ! Plane Y, wire 48
+ 121,   2,  49  ! Plane Y, wire 49
+ 122,   2,  50  ! Plane Y, wire 50
+ 123,   2,  51  ! Plane Y, wire 51
+ 124,   2,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   2
+   0,   5,   1  ! Plane Y', wire 1
+   1,   5,   2  ! Plane Y', wire 2
+   2,   5,   3  ! Plane Y', wire 3
+   3,   5,   4  ! Plane Y', wire 4
+   4,   5,   5  ! Plane Y', wire 5
+   5,   5,   6  ! Plane Y', wire 6
+   6,   5,   7  ! Plane Y', wire 7
+   7,   5,   8  ! Plane Y', wire 8
+   8,   5,   9  ! Plane Y', wire 9
+   9,   5,  10  ! Plane Y', wire 10
+  10,   5,  11  ! Plane Y', wire 11
+  11,   5,  12  ! Plane Y', wire 12
+  12,   5,  13  ! Plane Y', wire 13
+  16,   5,  14  ! Plane Y', wire 14
+  17,   5,  15  ! Plane Y', wire 15
+  18,   5,  16  ! Plane Y', wire 16
+  19,   5,  17  ! Plane Y', wire 17
+  20,   5,  18  ! Plane Y', wire 18
+  21,   5,  19  ! Plane Y', wire 19
+  22,   5,  20  ! Plane Y', wire 20
+  23,   5,  21  ! Plane Y', wire 21
+  24,   5,  22  ! Plane Y', wire 22
+  25,   5,  23  ! Plane Y', wire 23
+  26,   5,  24  ! Plane Y', wire 24
+  27,   5,  25  ! Plane Y', wire 25
+  28,   5,  26  ! Plane Y', wire 26
+  32,   5,  27  ! Plane Y', wire 27
+  33,   5,  28  ! Plane Y', wire 28
+  34,   5,  29  ! Plane Y', wire 29
+  35,   5,  30  ! Plane Y', wire 30
+  36,   5,  31  ! Plane Y', wire 31
+  37,   5,  32  ! Plane Y', wire 32
+  38,   5,  33  ! Plane Y', wire 33
+  39,   5,  34  ! Plane Y', wire 34
+  40,   5,  35  ! Plane Y', wire 35
+  41,   5,  36  ! Plane Y', wire 36
+  42,   5,  37  ! Plane Y', wire 37
+  43,   5,  38  ! Plane Y', wire 38
+  44,   5,  39  ! Plane Y', wire 39
+  48,   5,  40  ! Plane Y', wire 40
+  49,   5,  41  ! Plane Y', wire 41
+  50,   5,  42  ! Plane Y', wire 42
+  51,   5,  43  ! Plane Y', wire 43
+  52,   5,  44  ! Plane Y', wire 44
+  53,   5,  45  ! Plane Y', wire 45
+  54,   5,  46  ! Plane Y', wire 46
+  55,   5,  47  ! Plane Y', wire 47
+  56,   5,  48  ! Plane Y', wire 48
+  57,   5,  49  ! Plane Y', wire 49
+  58,   5,  50  ! Plane Y', wire 50
+  59,   5,  51  ! Plane Y', wire 51
+  60,   5,  52  ! Plane Y', wire 52
+
+SLOT=16
+REFINDEX=0
+  96,   9,   1  ! Plane U, wire 1
+  97,   9,   2  ! Plane U, wire 2
+  98,   9,   3  ! Plane U, wire 3
+  99,   9,   4  ! Plane U, wire 4
+ 100,   9,   5  ! Plane U, wire 5
+ 101,   9,   6  ! Plane U, wire 6
+ 102,   9,   7  ! Plane U, wire 7
+ 103,   9,   8  ! Plane U, wire 8
+ 104,   9,   9  ! Plane U, wire 9
+ 105,   9,  10  ! Plane U, wire 10
+ 106,   9,  11  ! Plane U, wire 11
+ 107,   9,  12  ! Plane U, wire 12
+ 108,   9,  13  ! Plane U, wire 13
+ 109,   9,  14  ! Plane U, wire 14
+ 110,   7, 113  ! Plane X, wire 113
+ 112,   9,  15  ! Plane U, wire 15
+ 113,   9,  16  ! Plane U, wire 16
+ 114,   9,  17  ! Plane U, wire 17
+ 115,   9,  18  ! Plane U, wire 18
+ 116,   9,  19  ! Plane U, wire 19
+ 117,   9,  20  ! Plane U, wire 20
+ 118,   9,  21  ! Plane U, wire 21
+ 119,   9,  22  ! Plane U, wire 22
+ 120,   9,  23  ! Plane U, wire 23
+ 121,   9,  24  ! Plane U, wire 24
+ 122,   9,  25  ! Plane U, wire 25
+ 123,   9,  26  ! Plane U, wire 26
+ 124,   9,  27  ! Plane U, wire 27
+ 125,   9,  28  ! Plane U, wire 28
+ 126,   9,  29  ! Plane U, wire 29
+
+SLOT=14
+REFINDEX=0
+   0,   9,  30  ! Plane U, wire 30
+   1,   9,  31  ! Plane U, wire 31
+   2,   9,  32  ! Plane U, wire 32
+   3,   9,  33  ! Plane U, wire 33
+   4,   9,  34  ! Plane U, wire 34
+   5,   9,  35  ! Plane U, wire 35
+   6,   9,  36  ! Plane U, wire 36
+   7,   9,  37  ! Plane U, wire 37
+   8,   9,  38  ! Plane U, wire 38
+   9,   9,  39  ! Plane U, wire 39
+  10,   9,  40  ! Plane U, wire 40
+  11,   9,  41  ! Plane U, wire 41
+  12,   9,  42  ! Plane U, wire 42
+  13,   9,  43  ! Plane U, wire 43
+  14,   9,  44  ! Plane U, wire 44
+  15,   9,  45  ! Plane U, wire 45
+  32,   9,  46  ! Plane U, wire 46
+  33,   9,  47  ! Plane U, wire 47
+  34,   9,  48  ! Plane U, wire 48
+  35,   9,  49  ! Plane U, wire 49
+  36,   9,  50  ! Plane U, wire 50
+  37,   9,  51  ! Plane U, wire 51
+  38,   9,  52  ! Plane U, wire 52
+  39,   9,  53  ! Plane U, wire 53
+  40,   9,  54  ! Plane U, wire 54
+  41,   9,  55  ! Plane U, wire 55
+  42,   9,  56  ! Plane U, wire 56
+  43,   9,  57  ! Plane U, wire 57
+  44,   9,  58  ! Plane U, wire 58
+  45,   9,  59  ! Plane U, wire 59
+  46,   9,  60  ! Plane U, wire 60
+  48,   9,  61  ! Plane U, wire 61
+  49,   9,  62  ! Plane U, wire 62
+  50,   9,  63  ! Plane U, wire 63
+  51,   9,  64  ! Plane U, wire 64
+  52,   9,  65  ! Plane U, wire 65
+  53,   9,  66  ! Plane U, wire 66
+  54,   9,  67  ! Plane U, wire 67
+  55,   9,  68  ! Plane U, wire 68
+  56,   9,  69  ! Plane U, wire 69
+  57,   9,  70  ! Plane U, wire 70
+  58,   9,  71  ! Plane U, wire 71
+  59,   9,  72  ! Plane U, wire 72
+  60,   9,  73  ! Plane U, wire 73
+  61,   9,  74  ! Plane U, wire 74
+  62,   9,  75  ! Plane U, wire 75
+  63,   9,  76  ! Plane U, wire 76
+  64,   9,  77  ! Plane U, wire 77
+  65,   9,  78  ! Plane U, wire 78
+  66,   9,  79  ! Plane U, wire 79
+  67,   9,  80  ! Plane U, wire 80
+  68,   9,  81  ! Plane U, wire 81
+  69,   9,  82  ! Plane U, wire 82
+  70,   9,  83  ! Plane U, wire 83
+  71,   9,  84  ! Plane U, wire 84
+  72,   9,  85  ! Plane U, wire 85
+  73,   9,  86  ! Plane U, wire 86
+  74,   9,  87  ! Plane U, wire 87
+  75,   9,  88  ! Plane U, wire 88
+  76,   9,  89  ! Plane U, wire 89
+  77,   9,  90  ! Plane U, wire 90
+  78,   9,  91  ! Plane U, wire 91
+  80,   9,  92  ! Plane U, wire 92
+  81,   9,  93  ! Plane U, wire 93
+  82,   9,  94  ! Plane U, wire 94
+  83,   9,  95  ! Plane U, wire 95
+  84,   9,  96  ! Plane U, wire 96
+  85,   9,  97  ! Plane U, wire 97
+  86,   9,  98  ! Plane U, wire 98
+  87,   9,  99  ! Plane U, wire 99
+  88,   9, 100  ! Plane U, wire 100
+  89,   9, 101  ! Plane U, wire 101
+  90,   9, 102  ! Plane U, wire 102
+  91,   9, 103  ! Plane U, wire 103
+  92,   9, 104  ! Plane U, wire 104
+  93,   9, 105  ! Plane U, wire 105
+  94,   9, 106  ! Plane U, wire 106
+  95,   9, 107  ! Plane U, wire 107
+
+SLOT=16
+REFINDEX=0
+  80,  10,   1  ! Plane V, wire 1
+  81,  10,   2  ! Plane V, wire 2
+  82,  10,   3  ! Plane V, wire 3
+  83,  10,   4  ! Plane V, wire 4
+  84,  10,   5  ! Plane V, wire 5
+  85,  10,   6  ! Plane V, wire 6
+  86,  10,   7  ! Plane V, wire 7
+  87,  10,   8  ! Plane V, wire 8
+  88,  10,   9  ! Plane V, wire 9
+  89,  10,  10  ! Plane V, wire 10
+  90,  10,  11  ! Plane V, wire 11
+  91,  10,  12  ! Plane V, wire 12
+  92,  10,  13  ! Plane V, wire 13
+  93,  10,  14  ! Plane V, wire 14
+  94,  12, 113  ! Plane X', wire 113
+
+SLOT=14
+REFINDEX=0
+  96,  10,  15  ! Plane V, wire 15
+  97,  10,  16  ! Plane V, wire 16
+  98,  10,  17  ! Plane V, wire 17
+  99,  10,  18  ! Plane V, wire 18
+ 100,  10,  19  ! Plane V, wire 19
+ 101,  10,  20  ! Plane V, wire 20
+ 102,  10,  21  ! Plane V, wire 21
+ 103,  10,  22  ! Plane V, wire 22
+ 104,  10,  23  ! Plane V, wire 23
+ 105,  10,  24  ! Plane V, wire 24
+ 106,  10,  25  ! Plane V, wire 25
+ 107,  10,  26  ! Plane V, wire 26
+ 108,  10,  27  ! Plane V, wire 27
+ 109,  10,  28  ! Plane V, wire 28
+ 110,  10,  29  ! Plane V, wire 29
+ 112,  10,  30  ! Plane V, wire 30
+ 113,  10,  31  ! Plane V, wire 31
+ 114,  10,  32  ! Plane V, wire 32
+ 115,  10,  33  ! Plane V, wire 33
+ 116,  10,  34  ! Plane V, wire 34
+ 117,  10,  35  ! Plane V, wire 35
+ 118,  10,  36  ! Plane V, wire 36
+ 119,  10,  37  ! Plane V, wire 37
+ 120,  10,  38  ! Plane V, wire 38
+ 121,  10,  39  ! Plane V, wire 39
+ 122,  10,  40  ! Plane V, wire 40
+ 123,  10,  41  ! Plane V, wire 41
+ 124,  10,  42  ! Plane V, wire 42
+ 125,  10,  43  ! Plane V, wire 43
+ 126,  10,  44  ! Plane V, wire 44
+ 127,  10,  45  ! Plane V, wire 45
+
+SLOT=17
+REFINDEX=0
+ 127,1000,   0,   3
+   0,  10,  46  ! Plane V, wire 46
+   1,  10,  47  ! Plane V, wire 47
+   2,  10,  48  ! Plane V, wire 48
+   3,  10,  49  ! Plane V, wire 49
+   4,  10,  50  ! Plane V, wire 50
+   5,  10,  51  ! Plane V, wire 51
+   6,  10,  52  ! Plane V, wire 52
+   7,  10,  53  ! Plane V, wire 53
+   8,  10,  54  ! Plane V, wire 54
+   9,  10,  55  ! Plane V, wire 55
+  10,  10,  56  ! Plane V, wire 56
+  11,  10,  57  ! Plane V, wire 57
+  12,  10,  58  ! Plane V, wire 58
+  13,  10,  59  ! Plane V, wire 59
+  14,  10,  60  ! Plane V, wire 60
+  16,  10,  61  ! Plane V, wire 61
+  17,  10,  62  ! Plane V, wire 62
+  18,  10,  63  ! Plane V, wire 63
+  19,  10,  64  ! Plane V, wire 64
+  20,  10,  65  ! Plane V, wire 65
+  21,  10,  66  ! Plane V, wire 66
+  22,  10,  67  ! Plane V, wire 67
+  23,  10,  68  ! Plane V, wire 68
+  24,  10,  69  ! Plane V, wire 69
+  25,  10,  70  ! Plane V, wire 70
+  26,  10,  71  ! Plane V, wire 71
+  27,  10,  72  ! Plane V, wire 72
+  28,  10,  73  ! Plane V, wire 73
+  29,  10,  74  ! Plane V, wire 74
+  30,  10,  75  ! Plane V, wire 75
+  31,  10,  76  ! Plane V, wire 76
+  32,  10,  77  ! Plane V, wire 77
+  33,  10,  78  ! Plane V, wire 78
+  34,  10,  79  ! Plane V, wire 79
+  35,  10,  80  ! Plane V, wire 80
+  36,  10,  81  ! Plane V, wire 81
+  37,  10,  82  ! Plane V, wire 82
+  38,  10,  83  ! Plane V, wire 83
+  39,  10,  84  ! Plane V, wire 84
+  40,  10,  85  ! Plane V, wire 85
+  41,  10,  86  ! Plane V, wire 86
+  42,  10,  87  ! Plane V, wire 87
+  43,  10,  88  ! Plane V, wire 88
+  44,  10,  89  ! Plane V, wire 89
+  45,  10,  90  ! Plane V, wire 90
+  46,  10,  91  ! Plane V, wire 91
+  48,  10,  92  ! Plane V, wire 92
+  49,  10,  93  ! Plane V, wire 93
+  50,  10,  94  ! Plane V, wire 94
+  51,  10,  95  ! Plane V, wire 95
+  52,  10,  96  ! Plane V, wire 96
+  53,  10,  97  ! Plane V, wire 97
+  54,  10,  98  ! Plane V, wire 98
+  55,  10,  99  ! Plane V, wire 99
+  56,  10, 100  ! Plane V, wire 100
+  57,  10, 101  ! Plane V, wire 101
+  58,  10, 102  ! Plane V, wire 102
+  59,  10, 103  ! Plane V, wire 103
+  60,  10, 104  ! Plane V, wire 104
+  61,  10, 105  ! Plane V, wire 105
+  62,  10, 106  ! Plane V, wire 106
+  63,  10, 107  ! Plane V, wire 107
+
+SLOT=13
+REFINDEX=0
+   0,   7,   1  ! Plane X, wire 1
+   1,   7,   2  ! Plane X, wire 2
+   2,   7,   3  ! Plane X, wire 3
+   3,   7,   4  ! Plane X, wire 4
+   4,   7,   5  ! Plane X, wire 5
+   5,   7,   6  ! Plane X, wire 6
+   6,   7,   7  ! Plane X, wire 7
+   7,   7,   8  ! Plane X, wire 8
+   8,   7,   9  ! Plane X, wire 9
+   9,   7,  10  ! Plane X, wire 10
+  10,   7,  11  ! Plane X, wire 11
+  11,   7,  12  ! Plane X, wire 12
+  12,   7,  13  ! Plane X, wire 13
+  13,   7,  14  ! Plane X, wire 14
+  14,   7,  15  ! Plane X, wire 15
+  15,   7,  16  ! Plane X, wire 16
+  16,   7,  17  ! Plane X, wire 17
+  17,   7,  18  ! Plane X, wire 18
+  18,   7,  19  ! Plane X, wire 19
+  19,   7,  20  ! Plane X, wire 20
+  20,   7,  21  ! Plane X, wire 21
+  21,   7,  22  ! Plane X, wire 22
+  22,   7,  23  ! Plane X, wire 23
+  23,   7,  24  ! Plane X, wire 24
+  24,   7,  25  ! Plane X, wire 25
+  25,   7,  26  ! Plane X, wire 26
+  26,   7,  27  ! Plane X, wire 27
+  27,   7,  28  ! Plane X, wire 28
+  28,   7,  29  ! Plane X, wire 29
+  29,   7,  30  ! Plane X, wire 30
+  30,   7,  31  ! Plane X, wire 31
+  31,   7,  32  ! Plane X, wire 32
+  32,   7,  33  ! Plane X, wire 33
+  33,   7,  34  ! Plane X, wire 34
+  34,   7,  35  ! Plane X, wire 35
+  35,   7,  36  ! Plane X, wire 36
+  36,   7,  37  ! Plane X, wire 37
+  37,   7,  38  ! Plane X, wire 38
+  38,   7,  39  ! Plane X, wire 39
+  39,   7,  40  ! Plane X, wire 40
+  40,   7,  41  ! Plane X, wire 41
+  41,   7,  42  ! Plane X, wire 42
+  42,   7,  43  ! Plane X, wire 43
+  43,   7,  44  ! Plane X, wire 44
+  44,   7,  45  ! Plane X, wire 45
+  45,   7,  46  ! Plane X, wire 46
+  46,   7,  47  ! Plane X, wire 47
+  47,   7,  48  ! Plane X, wire 48
+  48,   7,  49  ! Plane X, wire 49
+  49,   7,  50  ! Plane X, wire 50
+  50,   7,  51  ! Plane X, wire 51
+  51,   7,  52  ! Plane X, wire 52
+  52,   7,  53  ! Plane X, wire 53
+  53,   7,  54  ! Plane X, wire 54
+  54,   7,  55  ! Plane X, wire 55
+  55,   7,  56  ! Plane X, wire 56
+  56,   7,  57  ! Plane X, wire 57
+  57,   7,  58  ! Plane X, wire 58
+  58,   7,  59  ! Plane X, wire 59
+  59,   7,  60  ! Plane X, wire 60
+  60,   7,  61  ! Plane X, wire 61
+  61,   7,  62  ! Plane X, wire 62
+  62,   7,  63  ! Plane X, wire 63
+  63,   7,  64  ! Plane X, wire 64
+  64,   7,  65  ! Plane X, wire 65
+  65,   7,  66  ! Plane X, wire 66
+  66,   7,  67  ! Plane X, wire 67
+  67,   7,  68  ! Plane X, wire 68
+  68,   7,  69  ! Plane X, wire 69
+  69,   7,  70  ! Plane X, wire 70
+  70,   7,  71  ! Plane X, wire 71
+  71,   7,  72  ! Plane X, wire 72
+  72,   7,  73  ! Plane X, wire 73
+  73,   7,  74  ! Plane X, wire 74
+  74,   7,  75  ! Plane X, wire 75
+  75,   7,  76  ! Plane X, wire 76
+  76,   7,  77  ! Plane X, wire 77
+  77,   7,  78  ! Plane X, wire 78
+  78,   7,  79  ! Plane X, wire 79
+  79,   7,  80  ! Plane X, wire 80
+  80,   7,  81  ! Plane X, wire 81
+  81,   7,  82  ! Plane X, wire 82
+  82,   7,  83  ! Plane X, wire 83
+  83,   7,  84  ! Plane X, wire 84
+  84,   7,  85  ! Plane X, wire 85
+  85,   7,  86  ! Plane X, wire 86
+  86,   7,  87  ! Plane X, wire 87
+  87,   7,  88  ! Plane X, wire 88
+  88,   7,  89  ! Plane X, wire 89
+  89,   7,  90  ! Plane X, wire 90
+  90,   7,  91  ! Plane X, wire 91
+  91,   7,  92  ! Plane X, wire 92
+  92,   7,  93  ! Plane X, wire 93
+  93,   7,  94  ! Plane X, wire 94
+  94,   7,  95  ! Plane X, wire 95
+  95,   7,  96  ! Plane X, wire 96
+  96,   7,  97  ! Plane X, wire 97
+  97,   7,  98  ! Plane X, wire 98
+  98,   7,  99  ! Plane X, wire 99
+  99,   7, 100  ! Plane X, wire 100
+ 100,   7, 101  ! Plane X, wire 101
+ 101,   7, 102  ! Plane X, wire 102
+ 102,   7, 103  ! Plane X, wire 103
+ 103,   7, 104  ! Plane X, wire 104
+ 104,   7, 105  ! Plane X, wire 105
+ 105,   7, 106  ! Plane X, wire 106
+ 106,   7, 107  ! Plane X, wire 107
+ 107,   7, 108  ! Plane X, wire 108
+ 108,   7, 109  ! Plane X, wire 109
+ 109,   7, 110  ! Plane X, wire 110
+ 110,   7, 111  ! Plane X, wire 111
+ 111,   7, 112  ! Plane X, wire 112
+ 112,  12,   1  ! Plane X', wire 1
+ 113,  12,   2  ! Plane X', wire 2
+ 114,  12,   3  ! Plane X', wire 3
+ 115,  12,   4  ! Plane X', wire 4
+ 116,  12,   5  ! Plane X', wire 5
+ 117,  12,   6  ! Plane X', wire 6
+ 118,  12,   7  ! Plane X', wire 7
+ 119,  12,   8  ! Plane X', wire 8
+ 120,  12,   9  ! Plane X', wire 9
+ 121,  12,  10  ! Plane X', wire 10
+ 122,  12,  11  ! Plane X', wire 11
+ 123,  12,  12  ! Plane X', wire 12
+ 124,  12,  13  ! Plane X', wire 13
+ 125,  12,  14  ! Plane X', wire 14
+ 126,  12,  15  ! Plane X', wire 15
+ 127,  12,  16  ! Plane X', wire 16
+
+SLOT=14
+REFINDEX=0
+  16,  12,  17  ! Plane X', wire 17
+  17,  12,  18  ! Plane X', wire 18
+  18,  12,  19  ! Plane X', wire 19
+  19,  12,  20  ! Plane X', wire 20
+  20,  12,  21  ! Plane X', wire 21
+  21,  12,  22  ! Plane X', wire 22
+  22,  12,  23  ! Plane X', wire 23
+  23,  12,  24  ! Plane X', wire 24
+  24,  12,  25  ! Plane X', wire 25
+  25,  12,  26  ! Plane X', wire 26
+  26,  12,  27  ! Plane X', wire 27
+  27,  12,  28  ! Plane X', wire 28
+  28,  12,  29  ! Plane X', wire 29
+  29,  12,  30  ! Plane X', wire 30
+  30,  12,  31  ! Plane X', wire 31
+  31,  12,  32  ! Plane X', wire 32
+
+SLOT=16
+REFINDEX=0
+   0,  12,  33  ! Plane X', wire 33
+   1,  12,  34  ! Plane X', wire 34
+   2,  12,  35  ! Plane X', wire 35
+   3,  12,  36  ! Plane X', wire 36
+   4,  12,  37  ! Plane X', wire 37
+   5,  12,  38  ! Plane X', wire 38
+   6,  12,  39  ! Plane X', wire 39
+   7,  12,  40  ! Plane X', wire 40
+   8,  12,  41  ! Plane X', wire 41
+   9,  12,  42  ! Plane X', wire 42
+  10,  12,  43  ! Plane X', wire 43
+  11,  12,  44  ! Plane X', wire 44
+  12,  12,  45  ! Plane X', wire 45
+  13,  12,  46  ! Plane X', wire 46
+  14,  12,  47  ! Plane X', wire 47
+  15,  12,  48  ! Plane X', wire 48
+  16,  12,  49  ! Plane X', wire 49
+  17,  12,  50  ! Plane X', wire 50
+  18,  12,  51  ! Plane X', wire 51
+  19,  12,  52  ! Plane X', wire 52
+  20,  12,  53  ! Plane X', wire 53
+  21,  12,  54  ! Plane X', wire 54
+  22,  12,  55  ! Plane X', wire 55
+  23,  12,  56  ! Plane X', wire 56
+  24,  12,  57  ! Plane X', wire 57
+  25,  12,  58  ! Plane X', wire 58
+  26,  12,  59  ! Plane X', wire 59
+  27,  12,  60  ! Plane X', wire 60
+  28,  12,  61  ! Plane X', wire 61
+  29,  12,  62  ! Plane X', wire 62
+  30,  12,  63  ! Plane X', wire 63
+  31,  12,  64  ! Plane X', wire 64
+  32,  12,  65  ! Plane X', wire 65
+  33,  12,  66  ! Plane X', wire 66
+  34,  12,  67  ! Plane X', wire 67
+  35,  12,  68  ! Plane X', wire 68
+  36,  12,  69  ! Plane X', wire 69
+  37,  12,  70  ! Plane X', wire 70
+  38,  12,  71  ! Plane X', wire 71
+  39,  12,  72  ! Plane X', wire 72
+  40,  12,  73  ! Plane X', wire 73
+  41,  12,  74  ! Plane X', wire 74
+  42,  12,  75  ! Plane X', wire 75
+  43,  12,  76  ! Plane X', wire 76
+  44,  12,  77  ! Plane X', wire 77
+  45,  12,  78  ! Plane X', wire 78
+  46,  12,  79  ! Plane X', wire 79
+  47,  12,  80  ! Plane X', wire 80
+  48,  12,  81  ! Plane X', wire 81
+  49,  12,  82  ! Plane X', wire 82
+  50,  12,  83  ! Plane X', wire 83
+  51,  12,  84  ! Plane X', wire 84
+  52,  12,  85  ! Plane X', wire 85
+  53,  12,  86  ! Plane X', wire 86
+  54,  12,  87  ! Plane X', wire 87
+  55,  12,  88  ! Plane X', wire 88
+  56,  12,  89  ! Plane X', wire 89
+  57,  12,  90  ! Plane X', wire 90
+  58,  12,  91  ! Plane X', wire 91
+  59,  12,  92  ! Plane X', wire 92
+  60,  12,  93  ! Plane X', wire 93
+  61,  12,  94  ! Plane X', wire 94
+  62,  12,  95  ! Plane X', wire 95
+  63,  12,  96  ! Plane X', wire 96
+  64,  12,  97  ! Plane X', wire 97
+  65,  12,  98  ! Plane X', wire 98
+  66,  12,  99  ! Plane X', wire 99
+  67,  12, 100  ! Plane X', wire 100
+  68,  12, 101  ! Plane X', wire 101
+  69,  12, 102  ! Plane X', wire 102
+  70,  12, 103  ! Plane X', wire 103
+  71,  12, 104  ! Plane X', wire 104
+  72,  12, 105  ! Plane X', wire 105
+  73,  12, 106  ! Plane X', wire 106
+  74,  12, 107  ! Plane X', wire 107
+  75,  12, 108  ! Plane X', wire 108
+  76,  12, 109  ! Plane X', wire 109
+  77,  12, 110  ! Plane X', wire 110
+  78,  12, 111  ! Plane X', wire 111
+  79,  12, 112  ! Plane X', wire 112
+
+SLOT=17
+REFINDEX=0
+  64,   8,   1  ! Plane Y, wire 1
+  65,   8,   2  ! Plane Y, wire 2
+  66,   8,   3  ! Plane Y, wire 3
+  67,   8,   4  ! Plane Y, wire 4
+  68,   8,   5  ! Plane Y, wire 5
+  69,   8,   6  ! Plane Y, wire 6
+  70,   8,   7  ! Plane Y, wire 7
+  71,   8,   8  ! Plane Y, wire 8
+  72,   8,   9  ! Plane Y, wire 9
+  73,   8,  10  ! Plane Y, wire 10
+  74,   8,  11  ! Plane Y, wire 11
+  75,   8,  12  ! Plane Y, wire 12
+  76,   8,  13  ! Plane Y, wire 13
+  80,   8,  14  ! Plane Y, wire 14
+  81,   8,  15  ! Plane Y, wire 15
+  82,   8,  16  ! Plane Y, wire 16
+  83,   8,  17  ! Plane Y, wire 17
+  84,   8,  18  ! Plane Y, wire 18
+  85,   8,  19  ! Plane Y, wire 19
+  86,   8,  20  ! Plane Y, wire 20
+  87,   8,  21  ! Plane Y, wire 21
+  88,   8,  22  ! Plane Y, wire 22
+  89,   8,  23  ! Plane Y, wire 23
+  90,   8,  24  ! Plane Y, wire 24
+  91,   8,  25  ! Plane Y, wire 25
+  92,   8,  26  ! Plane Y, wire 26
+  96,   8,  27  ! Plane Y, wire 27
+  97,   8,  28  ! Plane Y, wire 28
+  98,   8,  29  ! Plane Y, wire 29
+  99,   8,  30  ! Plane Y, wire 30
+ 100,   8,  31  ! Plane Y, wire 31
+ 101,   8,  32  ! Plane Y, wire 32
+ 102,   8,  33  ! Plane Y, wire 33
+ 103,   8,  34  ! Plane Y, wire 34
+ 104,   8,  35  ! Plane Y, wire 35
+ 105,   8,  36  ! Plane Y, wire 36
+ 106,   8,  37  ! Plane Y, wire 37
+ 107,   8,  38  ! Plane Y, wire 38
+ 108,   8,  39  ! Plane Y, wire 39
+ 112,   8,  40  ! Plane Y, wire 40
+ 113,   8,  41  ! Plane Y, wire 41
+ 114,   8,  42  ! Plane Y, wire 42
+ 115,   8,  43  ! Plane Y, wire 43
+ 116,   8,  44  ! Plane Y, wire 44
+ 117,   8,  45  ! Plane Y, wire 45
+ 118,   8,  46  ! Plane Y, wire 46
+ 119,   8,  47  ! Plane Y, wire 47
+ 120,   8,  48  ! Plane Y, wire 48
+ 121,   8,  49  ! Plane Y, wire 49
+ 122,   8,  50  ! Plane Y, wire 50
+ 123,   8,  51  ! Plane Y, wire 51
+ 124,   8,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   1
+  64,  11,   1  ! Plane Y', wire 1
+  65,  11,   2  ! Plane Y', wire 2
+  66,  11,   3  ! Plane Y', wire 3
+  67,  11,   4  ! Plane Y', wire 4
+  68,  11,   5  ! Plane Y', wire 5
+  69,  11,   6  ! Plane Y', wire 6
+  70,  11,   7  ! Plane Y', wire 7
+  71,  11,   8  ! Plane Y', wire 8
+  72,  11,   9  ! Plane Y', wire 9
+  73,  11,  10  ! Plane Y', wire 10
+  74,  11,  11  ! Plane Y', wire 11
+  75,  11,  12  ! Plane Y', wire 12
+  76,  11,  13  ! Plane Y', wire 13
+  80,  11,  14  ! Plane Y', wire 14
+  81,  11,  15  ! Plane Y', wire 15
+  82,  11,  16  ! Plane Y', wire 16
+  83,  11,  17  ! Plane Y', wire 17
+  84,  11,  18  ! Plane Y', wire 18
+  85,  11,  19  ! Plane Y', wire 19
+  86,  11,  20  ! Plane Y', wire 20
+  87,  11,  21  ! Plane Y', wire 21
+  88,  11,  22  ! Plane Y', wire 22
+  89,  11,  23  ! Plane Y', wire 23
+  90,  11,  24  ! Plane Y', wire 24
+  91,  11,  25  ! Plane Y', wire 25
+  92,  11,  26  ! Plane Y', wire 26
+  96,  11,  27  ! Plane Y', wire 27
+  97,  11,  28  ! Plane Y', wire 28
+  98,  11,  29  ! Plane Y', wire 29
+  99,  11,  30  ! Plane Y', wire 30
+ 100,  11,  31  ! Plane Y', wire 31
+ 101,  11,  32  ! Plane Y', wire 32
+ 102,  11,  33  ! Plane Y', wire 33
+ 103,  11,  34  ! Plane Y', wire 34
+ 104,  11,  35  ! Plane Y', wire 35
+ 105,  11,  36  ! Plane Y', wire 36
+ 106,  11,  37  ! Plane Y', wire 37
+ 107,  11,  38  ! Plane Y', wire 38
+ 108,  11,  39  ! Plane Y', wire 39
+ 112,  11,  40  ! Plane Y', wire 40
+ 113,  11,  41  ! Plane Y', wire 41
+ 114,  11,  42  ! Plane Y', wire 42
+ 115,  11,  43  ! Plane Y', wire 43
+ 116,  11,  44  ! Plane Y', wire 44
+ 117,  11,  45  ! Plane Y', wire 45
+ 118,  11,  46  ! Plane Y', wire 46
+ 119,  11,  47  ! Plane Y', wire 47
+ 120,  11,  48  ! Plane Y', wire 48
+ 121,  11,  49  ! Plane Y', wire 49
+ 122,  11,  50  ! Plane Y', wire 50
+ 123,  11,  51  ! Plane Y', wire 51
+ 124,  11,  52  ! Plane Y', wire 52
diff --git a/MAPS/HMS/DETEC/hhodo.map b/MAPS/HMS/DETEC/hhodo.map
index 2a99b3eba24318925084483b6eafc12647ab77b2..698489c2c8da58580038b37d27d9ef1ebfcdc642 100644
--- a/MAPS/HMS/DETEC/hhodo.map
+++ b/MAPS/HMS/DETEC/hhodo.map
@@ -115,17 +115,19 @@ SLOT=15
     15,      4,      2,      1!    h2y02A-
 SLOT=16
 ! chan   plane     bar     sig
-     0,      4,     10,      1!    h2y10A-
-     1,      4,      9,      1!    h2y09A-
-     2,      4,      8,      1!    h2y08A-
-     3,      4,      7,      1!    h2y07A-
-     4,      4,      6,      1!    h2y06A-
-     5,      4,      5,      1!    h2y05A-
-     6,      4,      4,      1!    h2y04A-
-     7,      4,      3,      1!    h2y03A-
+     0,      4,      3,      1!    h2y03A-
+     1,      4,      4,      1!    h2y04A-
+     2,      4,      5,      1!    h2y05A-
+     3,      4,      6,      1!    h2y06A-
+     4,      4,      7,      1!    h2y07A-
+     5,      4,      8,      1!    h2y08A-
+     6,      4,      9,      1!    h2y09A-
+     7,      4,     10,      1!    h2y10A-
 
 ! Caen 1190 module
 SLOT=20
+REFINDEX=0
+  127,1000,   0,   0
 ! A0
 ! chan   plane     bar     sig
      0,      1,      1,      2!    h1x01T+
diff --git a/MAPS/HMS/DETEC/hhodo_htrig.map b/MAPS/HMS/DETEC/hhodo_htrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..9d28bae5b459fe75c5a60dadd806137d668eb555
--- /dev/null
+++ b/MAPS/HMS/DETEC/hhodo_htrig.map
@@ -0,0 +1,283 @@
+! THMS_ID=10       ::  ADC,TDC
+! HSCIN_ID=13      ::  ADC,TDC
+
+
+DETECTOR=10
+
+ROC=1
+
+SLOT=17
+   8,   1,   1,   0  ! hASUM
+   9,   1,   2,   0  ! hBSUM
+  10,   1,   3,   0  ! hCSUM
+  11,   1,   4,   0  ! hDSUM
+  12,   1,   5,   0  ! hPSHWR
+  13,   1,   6,   0  ! hSHWR
+  14,   1,   7,   0  ! hAERSUM
+  15,   1,   8,   0  ! hCERSUM
+
+SLOT=2
+   0,   2,   1,   1  ! h1X
+   1,   2,   2,   1  ! h1Y
+   2,   2,   3,   1  ! h2X
+   3,   2,   4,   1  ! h2Y
+   4,   2,   5,   1  ! h1T
+   5,   2,   6,   1  ! h2T
+   6,   2,   7,   1  ! hT1
+   7,   2,   8,   1  ! hASUM
+   8,   2,   9,   1  ! hBSUM
+   9,   2,  10,   1  ! hCSUM
+  10,   2,  11,   1  ! hDSUM
+  11,   2,  12,   1  ! hPSHWRLO
+  12,   2,  13,   1  ! hPSHWRHI
+  13,   2,  14,   1  ! hSHWR
+  14,   2,  15,   1  ! hAERSUM
+  15,   2,  16,   1  ! hCERSUM
+
+SLOT=20
+ 127,   2,  17,   1  ! hT2
+
+ROC=3
+
+SLOT=5
+ 111,   2,  18,   1  ! hDCREF1
+
+SLOT=8
+ 127,   2,  19,   1  ! hDCREF2
+
+SLOT=10
+ 127,   2,  20,   1  ! hDCREF3
+
+SLOT=17
+ 127,   2,  21,   1  ! hDCREF4
+
+
+DETECTOR=13
+
+ROC=1
+
+SLOT=8
+   0,   1,   1,   0  ! h1x01A+
+   1,   1,   2,   0  ! h1x02A+
+   2,   1,   3,   0  ! h1x03A+
+   3,   1,   4,   0  ! h1x04A+
+   4,   1,   5,   0  ! h1x05A+
+   5,   1,   6,   0  ! h1x06A+
+   6,   1,   7,   0  ! h1x07A+
+   7,   1,   8,   0  ! h1x08A+
+   8,   1,   9,   0  ! h1x09A+
+   9,   1,  10,   0  ! h1x10A+
+  10,   1,  11,   0  ! h1x11A+
+  11,   1,  12,   0  ! h1x12A+
+  12,   1,  13,   0  ! h1x13A+
+  13,   1,  14,   0  ! h1x14A+
+  14,   1,  15,   0  ! h1x15A+
+  15,   1,  16,   0  ! h1x16A+
+
+SLOT=9
+   0,   1,   1,   1  ! h1x01A-
+   1,   1,   2,   1  ! h1x02A-
+   2,   1,   3,   1  ! h1x03A-
+   3,   1,   4,   1  ! h1x04A-
+   4,   1,   5,   1  ! h1x05A-
+   5,   1,   6,   1  ! h1x06A-
+   6,   1,   7,   1  ! h1x07A-
+   7,   1,   8,   1  ! h1x08A-
+   8,   1,   9,   1  ! h1x09A-
+   9,   1,  10,   1  ! h1x10A-
+  10,   1,  11,   1  ! h1x11A-
+  11,   1,  12,   1  ! h1x12A-
+  12,   1,  13,   1  ! h1x13A-
+  13,   1,  14,   1  ! h1x14A-
+  14,   1,  15,   1  ! h1x15A-
+  15,   1,  16,   1  ! h1x16A-
+
+SLOT=10
+   0,   2,   1,   0  ! h1y01A+
+   1,   2,   2,   0  ! h1y02A+
+   2,   2,   3,   0  ! h1y03A+
+   3,   2,   4,   0  ! h1y04A+
+   4,   2,   5,   0  ! h1y05A+
+   5,   2,   6,   0  ! h1y06A+
+   6,   2,   7,   0  ! h1y07A+
+   7,   2,   8,   0  ! h1y08A+
+   8,   2,   9,   0  ! h1y09A+
+   9,   2,  10,   0  ! h1y10A+
+  10,   2,   1,   1  ! h1y01A-
+  11,   2,   2,   1  ! h1y02A-
+  12,   2,   3,   1  ! h1y03A-
+  13,   2,   4,   1  ! h1y04A-
+  14,   2,   5,   1  ! h1y05A-
+  15,   2,   6,   1  ! h1y06A-
+
+SLOT=13
+   0,   2,   7,   1  ! h1y07A-
+   1,   2,   8,   1  ! h1y08A-
+   2,   2,   9,   1  ! h1y09A-
+   3,   2,  10,   1  ! h1y10A-
+   4,   3,   1,   0  ! h2x01A+
+   5,   3,   2,   0  ! h2x02A+
+   6,   3,   3,   0  ! h2x03A+
+   7,   3,   4,   0  ! h2x04A+
+   8,   3,   5,   0  ! h2x05A+
+   9,   3,   6,   0  ! h2x06A+
+  10,   3,   7,   0  ! h2x07A+
+  11,   3,   8,   0  ! h2x08A+
+  12,   3,   9,   0  ! h2x09A+
+  13,   3,  10,   0  ! h2x10A+
+  14,   3,  11,   0  ! h2x11A+
+  15,   3,  12,   0  ! h2x12A+
+
+SLOT=14
+   0,   3,  13,   0  ! h2x13A+
+   1,   3,  14,   0  ! h2x14A+
+   2,   3,  15,   0  ! h2x15A+
+   3,   3,  16,   0  ! h2x16A+
+   4,   3,   1,   1  ! h2x01A-
+   5,   3,   2,   1  ! h2x02A-
+   6,   3,   3,   1  ! h2x03A-
+   7,   3,   4,   1  ! h2x04A-
+   8,   3,   5,   1  ! h2x05A-
+   9,   3,   6,   1  ! h2x06A-
+  10,   3,   7,   1  ! h2x07A-
+  11,   3,   8,   1  ! h2x08A-
+  12,   3,   9,   1  ! h2x09A-
+  13,   3,  10,   1  ! h2x10A-
+  14,   3,  11,   1  ! h2x11A-
+  15,   3,  12,   1  ! h2x12A-
+
+SLOT=15
+   0,   3,  13,   1  ! h2x13A-
+   1,   3,  14,   1  ! h2x14A-
+   2,   3,  15,   1  ! h2x15A-
+   3,   3,  16,   1  ! h2x16A-
+   4,   4,   1,   0  ! h2y01A+
+   5,   4,   2,   0  ! h2y02A+
+   6,   4,   3,   0  ! h2y03A+
+   7,   4,   4,   0  ! h2y04A+
+   8,   4,   5,   0  ! h2y05A+
+   9,   4,   6,   0  ! h2y06A+
+  10,   4,   7,   0  ! h2y07A+
+  11,   4,   8,   0  ! h2y08A+
+  12,   4,   9,   0  ! h2y09A+
+  13,   4,  10,   0  ! h2y10A+
+  14,   4,   1,   1  ! h2y01A-
+  15,   4,   2,   1  ! h2y02A-
+
+SLOT=16
+   0,   4,   3,   1  ! h2y03A-
+   1,   4,   4,   1  ! h2y04A-
+   2,   4,   5,   1  ! h2y05A-
+   3,   4,   6,   1  ! h2y06A-
+   4,   4,   7,   1  ! h2y07A-
+   5,   4,   8,   1  ! h2y08A-
+   6,   4,   9,   1  ! h2y09A-
+   7,   4,  10,   1  ! h2y10A-
+
+SLOT=20
+REFINDEX=0
+ 127,1000,   0,   0
+   0,   1,   1,   2  ! h1x01T+
+   1,   1,   3,   2  ! h1x03T+
+   2,   1,   5,   2  ! h1x05T+
+   3,   1,   7,   2  ! h1x07T+
+   4,   1,   2,   2  ! h1x02T+
+   5,   1,   4,   2  ! h1x04T+
+   6,   1,   6,   2  ! h1x06T+
+   7,   1,   8,   2  ! h1x08T+
+   8,   1,   9,   2  ! h1x09T+
+   9,   1,  11,   2  ! h1x11T+
+  10,   1,  13,   2  ! h1x13T+
+  11,   1,  15,   2  ! h1x15T+
+  12,   1,  10,   2  ! h1x10T+
+  13,   1,  12,   2  ! h1x12T+
+  14,   1,  14,   2  ! h1x14T+
+  15,   1,  16,   2  ! h1x16T+
+  16,   1,   1,   3  ! h1x01T-
+  17,   1,   3,   3  ! h1x03T-
+  18,   1,   5,   3  ! h1x05T-
+  19,   1,   7,   3  ! h1x07T-
+  20,   1,   2,   3  ! h1x02T-
+  21,   1,   4,   3  ! h1x04T-
+  22,   1,   6,   3  ! h1x06T-
+  23,   1,   8,   3  ! h1x08T-
+  24,   1,   9,   3  ! h1x09T-
+  25,   1,  11,   3  ! h1x11T-
+  26,   1,  13,   3  ! h1x13T-
+  27,   1,  15,   3  ! h1x15T-
+  28,   1,  10,   3  ! h1x10T-
+  29,   1,  12,   3  ! h1x12T-
+  30,   1,  14,   3  ! h1x14T-
+  31,   1,  16,   3  ! h1x16T-
+  32,   2,   1,   2  ! h1y01T+
+  33,   2,   3,   2  ! h1y03T+
+  34,   2,   5,   2  ! h1y05T+
+  35,   2,   7,   2  ! h1y07T+
+  36,   2,   2,   2  ! h1y02T+
+  37,   2,   4,   2  ! h1y04T+
+  38,   2,   6,   2  ! h1y06T+
+  39,   2,   8,   2  ! h1y08T+
+  40,   2,   9,   2  ! h1y09T+
+  44,   2,  10,   2  ! h1y10T+
+  48,   2,   1,   3  ! h1y01T-
+  49,   2,   3,   3  ! h1y03T-
+  50,   2,   5,   3  ! h1y05T-
+  51,   2,   7,   3  ! h1y07T-
+  52,   2,   2,   3  ! h1y02T-
+  53,   2,   4,   3  ! h1y04T-
+  54,   2,   6,   3  ! h1y06T-
+  55,   2,   8,   3  ! h1y08T-
+  56,   2,   9,   3  ! h1y09T-
+  60,   2,  10,   3  ! h1y10T-
+  64,   3,   1,   2  ! h2x01T+
+  65,   3,   3,   2  ! h2x03T+
+  66,   3,   5,   2  ! h2x05T+
+  67,   3,   7,   2  ! h2x07T+
+  68,   3,   2,   2  ! h2x02T+
+  69,   3,   4,   2  ! h2x04T+
+  70,   3,   6,   2  ! h2x06T+
+  71,   3,   8,   2  ! h2x08T+
+  72,   3,   9,   2  ! h2x09T+
+  73,   3,  11,   2  ! h2x11T+
+  74,   3,  13,   2  ! h2x13T+
+  75,   3,  15,   2  ! h2x15T+
+  76,   3,  10,   2  ! h2x10T+
+  77,   3,  12,   2  ! h2x12T+
+  78,   3,  14,   2  ! h2x14T+
+  79,   3,  16,   2  ! h2x16T+
+  80,   3,   1,   3  ! h2x01T-
+  81,   3,   3,   3  ! h2x03T-
+  82,   3,   5,   3  ! h2x05T-
+  83,   3,   7,   3  ! h2x07T-
+  84,   3,   2,   3  ! h2x02T-
+  85,   3,   4,   3  ! h2x04T-
+  86,   3,   6,   3  ! h2x06T-
+  87,   3,   8,   3  ! h2x08T-
+  88,   3,   9,   3  ! h2x09T-
+  89,   3,  11,   3  ! h2x11T-
+  90,   3,  13,   3  ! h2x13T-
+  91,   3,  15,   3  ! h2x15T-
+  92,   3,  10,   3  ! h2x10T-
+  93,   3,  12,   3  ! h2x12T-
+  94,   3,  14,   3  ! h2x14T-
+  95,   3,  16,   3  ! h2x16T-
+  96,   4,   1,   2  ! h2y01T+
+  97,   4,   3,   2  ! h2y03T+
+  98,   4,   5,   2  ! h2y05T+
+  99,   4,   7,   2  ! h2y07T+
+ 100,   4,   2,   2  ! h2y02T+
+ 101,   4,   4,   2  ! h2y04T+
+ 102,   4,   6,   2  ! h2y06T+
+ 103,   4,   8,   2  ! h2y08T+
+ 104,   4,   9,   2  ! h2y09T+
+ 108,   4,  10,   2  ! h2y10T+
+ 112,   4,   1,   3  ! h2y01T-
+ 113,   4,   3,   3  ! h2y03T-
+ 114,   4,   5,   3  ! h2y05T-
+ 115,   4,   7,   3  ! h2y07T-
+ 116,   4,   2,   3  ! h2y02T-
+ 117,   4,   4,   3  ! h2y04T-
+ 118,   4,   6,   3  ! h2y06T-
+ 119,   4,   8,   3  ! h2y08T-
+ 120,   4,   9,   3  ! h2y09T-
+ 124,   4,  10,   3  ! h2y10T-
diff --git a/MAPS/HMS/DETEC/hms_stack.map b/MAPS/HMS/DETEC/hms_stack.map
new file mode 100644
index 0000000000000000000000000000000000000000..1547c7c6a4d979ef94fdd9f27df1f9e71cb51f48
--- /dev/null
+++ b/MAPS/HMS/DETEC/hms_stack.map
@@ -0,0 +1,1546 @@
+! THMS_ID=10       ::  ADC,TDC
+! HDC_ID=11        ::  TDC
+! HSCIN_ID=13      ::  ADC+,ADC-,TDC+,TDC-
+! HCER_ID=14       ::  (TDC),ADC
+! HCAL_ID=15       ::  ADC
+
+
+DETECTOR=10
+
+ROC=1
+
+SLOT=17
+   8,   1,   1,   0  ! hASUM
+   9,   1,   2,   0  ! hBSUM
+  10,   1,   3,   0  ! hCSUM
+  11,   1,   4,   0  ! hDSUM
+  12,   1,   5,   0  ! hPSHWR
+  13,   1,   6,   0  ! hSHWR
+  14,   1,   7,   0  ! hAERSUM
+  15,   1,   8,   0  ! hCERSUM
+
+SLOT=2
+   0,   2,   1,   1  ! h1X
+   1,   2,   2,   1  ! h1Y
+   2,   2,   3,   1  ! h2X
+   3,   2,   4,   1  ! h2Y
+   4,   2,   5,   1  ! h1T
+   5,   2,   6,   1  ! h2T
+   6,   2,   7,   1  ! hT1
+   7,   2,   8,   1  ! hASUM
+   8,   2,   9,   1  ! hBSUM
+   9,   2,  10,   1  ! hCSUM
+  10,   2,  11,   1  ! hDSUM
+  11,   2,  12,   1  ! hPSHWRLO
+  12,   2,  13,   1  ! hPSHWRHI
+  13,   2,  14,   1  ! hSHWR
+  14,   2,  15,   1  ! hAERSUM
+  15,   2,  16,   1  ! hCERSUM
+
+SLOT=20
+ 127,   2,  17,   1  ! hT2
+
+ROC=3
+
+SLOT=5
+ 111,   2,  18,   1  ! hDCREF1
+
+SLOT=8
+ 127,   2,  19,   1  ! hDCREF2
+
+SLOT=10
+ 127,   2,  20,   1  ! hDCREF3
+
+SLOT=17
+ 127,   2,  21,   1  ! hDCREF4
+
+
+DETECTOR=11  ! HMS chambers
+
+ROC=3
+
+SLOT=5
+REFINDEX=0
+ 111,1000,   0,   0
+  96,   3,   1  ! Plane U, wire 1
+  97,   3,   2  ! Plane U, wire 2
+  98,   3,   3  ! Plane U, wire 3
+  99,   3,   4  ! Plane U, wire 4
+ 100,   3,   5  ! Plane U, wire 5
+ 101,   3,   6  ! Plane U, wire 6
+ 102,   3,   7  ! Plane U, wire 7
+ 103,   3,   8  ! Plane U, wire 8
+ 104,   3,   9  ! Plane U, wire 9
+ 105,   3,  10  ! Plane U, wire 10
+ 106,   3,  11  ! Plane U, wire 11
+ 107,   3,  12  ! Plane U, wire 12
+ 108,   3,  13  ! Plane U, wire 13
+ 109,   3,  14  ! Plane U, wire 14
+ 110,   1, 113  ! Plane X, wire 113
+  80,   3,  15  ! Plane U, wire 15
+  81,   3,  16  ! Plane U, wire 16
+  82,   3,  17  ! Plane U, wire 17
+  83,   3,  18  ! Plane U, wire 18
+  84,   3,  19  ! Plane U, wire 19
+  85,   3,  20  ! Plane U, wire 20
+  86,   3,  21  ! Plane U, wire 21
+  87,   3,  22  ! Plane U, wire 22
+  88,   3,  23  ! Plane U, wire 23
+  89,   3,  24  ! Plane U, wire 24
+  90,   3,  25  ! Plane U, wire 25
+  91,   3,  26  ! Plane U, wire 26
+  92,   3,  27  ! Plane U, wire 27
+  93,   3,  28  ! Plane U, wire 28
+  94,   3,  29  ! Plane U, wire 29
+  64,   3,  30  ! Plane U, wire 30
+  65,   3,  31  ! Plane U, wire 31
+  66,   3,  32  ! Plane U, wire 32
+  67,   3,  33  ! Plane U, wire 33
+  68,   3,  34  ! Plane U, wire 34
+  69,   3,  35  ! Plane U, wire 35
+  70,   3,  36  ! Plane U, wire 36
+  71,   3,  37  ! Plane U, wire 37
+  72,   3,  38  ! Plane U, wire 38
+  73,   3,  39  ! Plane U, wire 39
+  74,   3,  40  ! Plane U, wire 40
+  75,   3,  41  ! Plane U, wire 41
+  76,   3,  42  ! Plane U, wire 42
+  77,   3,  43  ! Plane U, wire 43
+  78,   3,  44  ! Plane U, wire 44
+  79,   3,  45  ! Plane U, wire 45
+  48,   3,  46  ! Plane U, wire 46
+  49,   3,  47  ! Plane U, wire 47
+  50,   3,  48  ! Plane U, wire 48
+  51,   3,  49  ! Plane U, wire 49
+  52,   3,  50  ! Plane U, wire 50
+  53,   3,  51  ! Plane U, wire 51
+  54,   3,  52  ! Plane U, wire 52
+  55,   3,  53  ! Plane U, wire 53
+  56,   3,  54  ! Plane U, wire 54
+  57,   3,  55  ! Plane U, wire 55
+  58,   3,  56  ! Plane U, wire 56
+  59,   3,  57  ! Plane U, wire 57
+  60,   3,  58  ! Plane U, wire 58
+  61,   3,  59  ! Plane U, wire 59
+  62,   3,  60  ! Plane U, wire 60
+  32,   3,  61  ! Plane U, wire 61
+  33,   3,  62  ! Plane U, wire 62
+  34,   3,  63  ! Plane U, wire 63
+  35,   3,  64  ! Plane U, wire 64
+  36,   3,  65  ! Plane U, wire 65
+  37,   3,  66  ! Plane U, wire 66
+  38,   3,  67  ! Plane U, wire 67
+  39,   3,  68  ! Plane U, wire 68
+  40,   3,  69  ! Plane U, wire 69
+  41,   3,  70  ! Plane U, wire 70
+  42,   3,  71  ! Plane U, wire 71
+  43,   3,  72  ! Plane U, wire 72
+  44,   3,  73  ! Plane U, wire 73
+  45,   3,  74  ! Plane U, wire 74
+  46,   3,  75  ! Plane U, wire 75
+  47,   3,  76  ! Plane U, wire 76
+  16,   3,  77  ! Plane U, wire 77
+  17,   3,  78  ! Plane U, wire 78
+  18,   3,  79  ! Plane U, wire 79
+  19,   3,  80  ! Plane U, wire 80
+  20,   3,  81  ! Plane U, wire 81
+  21,   3,  82  ! Plane U, wire 82
+  22,   3,  83  ! Plane U, wire 83
+  23,   3,  84  ! Plane U, wire 84
+  24,   3,  85  ! Plane U, wire 85
+  25,   3,  86  ! Plane U, wire 86
+  26,   3,  87  ! Plane U, wire 87
+  27,   3,  88  ! Plane U, wire 88
+  28,   3,  89  ! Plane U, wire 89
+  29,   3,  90  ! Plane U, wire 90
+  30,   3,  91  ! Plane U, wire 91
+   0,   3,  92  ! Plane U, wire 92
+   1,   3,  93  ! Plane U, wire 93
+   2,   3,  94  ! Plane U, wire 94
+   3,   3,  95  ! Plane U, wire 95
+   4,   3,  96  ! Plane U, wire 96
+   5,   3,  97  ! Plane U, wire 97
+   6,   3,  98  ! Plane U, wire 98
+   7,   3,  99  ! Plane U, wire 99
+   8,   3, 100  ! Plane U, wire 100
+   9,   3, 101  ! Plane U, wire 101
+  10,   3, 102  ! Plane U, wire 102
+  11,   3, 103  ! Plane U, wire 103
+  12,   3, 104  ! Plane U, wire 104
+  13,   3, 105  ! Plane U, wire 105
+  14,   3, 106  ! Plane U, wire 106
+  15,   3, 107  ! Plane U, wire 107
+
+SLOT=7
+REFINDEX=0
+  96,   4,   1  ! Plane V, wire 1
+  97,   4,   2  ! Plane V, wire 2
+  98,   4,   3  ! Plane V, wire 3
+  99,   4,   4  ! Plane V, wire 4
+ 100,   4,   5  ! Plane V, wire 5
+ 101,   4,   6  ! Plane V, wire 6
+ 102,   4,   7  ! Plane V, wire 7
+ 103,   4,   8  ! Plane V, wire 8
+ 104,   4,   9  ! Plane V, wire 9
+ 105,   4,  10  ! Plane V, wire 10
+ 106,   4,  11  ! Plane V, wire 11
+ 107,   4,  12  ! Plane V, wire 12
+ 108,   4,  13  ! Plane V, wire 13
+ 109,   4,  14  ! Plane V, wire 14
+ 110,   6, 113  ! Plane X', wire 113
+ 112,   4,  15  ! Plane V, wire 15
+ 113,   4,  16  ! Plane V, wire 16
+ 114,   4,  17  ! Plane V, wire 17
+ 115,   4,  18  ! Plane V, wire 18
+ 116,   4,  19  ! Plane V, wire 19
+ 117,   4,  20  ! Plane V, wire 20
+ 118,   4,  21  ! Plane V, wire 21
+ 119,   4,  22  ! Plane V, wire 22
+ 120,   4,  23  ! Plane V, wire 23
+ 121,   4,  24  ! Plane V, wire 24
+ 122,   4,  25  ! Plane V, wire 25
+ 123,   4,  26  ! Plane V, wire 26
+ 124,   4,  27  ! Plane V, wire 27
+ 125,   4,  28  ! Plane V, wire 28
+ 126,   4,  29  ! Plane V, wire 29
+
+SLOT=8
+REFINDEX=0
+ 127,1000,   0,   1
+   0,   4,  30  ! Plane V, wire 30
+   1,   4,  31  ! Plane V, wire 31
+   2,   4,  32  ! Plane V, wire 32
+   3,   4,  33  ! Plane V, wire 33
+   4,   4,  34  ! Plane V, wire 34
+   5,   4,  35  ! Plane V, wire 35
+   6,   4,  36  ! Plane V, wire 36
+   7,   4,  37  ! Plane V, wire 37
+   8,   4,  38  ! Plane V, wire 38
+   9,   4,  39  ! Plane V, wire 39
+  10,   4,  40  ! Plane V, wire 40
+  11,   4,  41  ! Plane V, wire 41
+  12,   4,  42  ! Plane V, wire 42
+  13,   4,  43  ! Plane V, wire 43
+  14,   4,  44  ! Plane V, wire 44
+  15,   4,  45  ! Plane V, wire 45
+  16,   4,  46  ! Plane V, wire 46
+  17,   4,  47  ! Plane V, wire 47
+  18,   4,  48  ! Plane V, wire 48
+  19,   4,  49  ! Plane V, wire 49
+  20,   4,  50  ! Plane V, wire 50
+  21,   4,  51  ! Plane V, wire 51
+  22,   4,  52  ! Plane V, wire 52
+  23,   4,  53  ! Plane V, wire 53
+  24,   4,  54  ! Plane V, wire 54
+  25,   4,  55  ! Plane V, wire 55
+  26,   4,  56  ! Plane V, wire 56
+  27,   4,  57  ! Plane V, wire 57
+  28,   4,  58  ! Plane V, wire 58
+  29,   4,  59  ! Plane V, wire 59
+  30,   4,  60  ! Plane V, wire 60
+  32,   4,  61  ! Plane V, wire 61
+  33,   4,  62  ! Plane V, wire 62
+  34,   4,  63  ! Plane V, wire 63
+  35,   4,  64  ! Plane V, wire 64
+  36,   4,  65  ! Plane V, wire 65
+  37,   4,  66  ! Plane V, wire 66
+  38,   4,  67  ! Plane V, wire 67
+  39,   4,  68  ! Plane V, wire 68
+  40,   4,  69  ! Plane V, wire 69
+  41,   4,  70  ! Plane V, wire 70
+  42,   4,  71  ! Plane V, wire 71
+  43,   4,  72  ! Plane V, wire 72
+  44,   4,  73  ! Plane V, wire 73
+  45,   4,  74  ! Plane V, wire 74
+  46,   4,  75  ! Plane V, wire 75
+  47,   4,  76  ! Plane V, wire 76
+  48,   4,  77  ! Plane V, wire 77
+  49,   4,  78  ! Plane V, wire 78
+  50,   4,  79  ! Plane V, wire 79
+  51,   4,  80  ! Plane V, wire 80
+  52,   4,  81  ! Plane V, wire 81
+  53,   4,  82  ! Plane V, wire 82
+  54,   4,  83  ! Plane V, wire 83
+  55,   4,  84  ! Plane V, wire 84
+  56,   4,  85  ! Plane V, wire 85
+  57,   4,  86  ! Plane V, wire 86
+  58,   4,  87  ! Plane V, wire 87
+  59,   4,  88  ! Plane V, wire 88
+  60,   4,  89  ! Plane V, wire 89
+  61,   4,  90  ! Plane V, wire 90
+  62,   4,  91  ! Plane V, wire 91
+
+SLOT=4
+REFINDEX=0
+  96,   4,  92  ! Plane V, wire 92
+  97,   4,  93  ! Plane V, wire 93
+  98,   4,  94  ! Plane V, wire 94
+  99,   4,  95  ! Plane V, wire 95
+ 100,   4,  96  ! Plane V, wire 96
+ 101,   4,  97  ! Plane V, wire 97
+ 102,   4,  98  ! Plane V, wire 98
+ 103,   4,  99  ! Plane V, wire 99
+ 104,   4, 100  ! Plane V, wire 100
+ 105,   4, 101  ! Plane V, wire 101
+ 106,   4, 102  ! Plane V, wire 102
+ 107,   4, 103  ! Plane V, wire 103
+ 108,   4, 104  ! Plane V, wire 104
+ 109,   4, 105  ! Plane V, wire 105
+ 110,   4, 106  ! Plane V, wire 106
+ 111,   4, 107  ! Plane V, wire 107
+  80,   1,   1  ! Plane X, wire 1
+  81,   1,   2  ! Plane X, wire 2
+  82,   1,   3  ! Plane X, wire 3
+  83,   1,   4  ! Plane X, wire 4
+  84,   1,   5  ! Plane X, wire 5
+  85,   1,   6  ! Plane X, wire 6
+  86,   1,   7  ! Plane X, wire 7
+  87,   1,   8  ! Plane X, wire 8
+  88,   1,   9  ! Plane X, wire 9
+  89,   1,  10  ! Plane X, wire 10
+  90,   1,  11  ! Plane X, wire 11
+  91,   1,  12  ! Plane X, wire 12
+  92,   1,  13  ! Plane X, wire 13
+  93,   1,  14  ! Plane X, wire 14
+  94,   1,  15  ! Plane X, wire 15
+  95,   1,  16  ! Plane X, wire 16
+  64,   1,  17  ! Plane X, wire 17
+  65,   1,  18  ! Plane X, wire 18
+  66,   1,  19  ! Plane X, wire 19
+  67,   1,  20  ! Plane X, wire 20
+  68,   1,  21  ! Plane X, wire 21
+  69,   1,  22  ! Plane X, wire 22
+  70,   1,  23  ! Plane X, wire 23
+  71,   1,  24  ! Plane X, wire 24
+  72,   1,  25  ! Plane X, wire 25
+  73,   1,  26  ! Plane X, wire 26
+  74,   1,  27  ! Plane X, wire 27
+  75,   1,  28  ! Plane X, wire 28
+  76,   1,  29  ! Plane X, wire 29
+  77,   1,  30  ! Plane X, wire 30
+  78,   1,  31  ! Plane X, wire 31
+  79,   1,  32  ! Plane X, wire 32
+  48,   1,  33  ! Plane X, wire 33
+  49,   1,  34  ! Plane X, wire 34
+  50,   1,  35  ! Plane X, wire 35
+  51,   1,  36  ! Plane X, wire 36
+  52,   1,  37  ! Plane X, wire 37
+  53,   1,  38  ! Plane X, wire 38
+  54,   1,  39  ! Plane X, wire 39
+  55,   1,  40  ! Plane X, wire 40
+  56,   1,  41  ! Plane X, wire 41
+  57,   1,  42  ! Plane X, wire 42
+  58,   1,  43  ! Plane X, wire 43
+  59,   1,  44  ! Plane X, wire 44
+  60,   1,  45  ! Plane X, wire 45
+  61,   1,  46  ! Plane X, wire 46
+  62,   1,  47  ! Plane X, wire 47
+  63,   1,  48  ! Plane X, wire 48
+  32,   1,  49  ! Plane X, wire 49
+  33,   1,  50  ! Plane X, wire 50
+  34,   1,  51  ! Plane X, wire 51
+  35,   1,  52  ! Plane X, wire 52
+  36,   1,  53  ! Plane X, wire 53
+  37,   1,  54  ! Plane X, wire 54
+  38,   1,  55  ! Plane X, wire 55
+  39,   1,  56  ! Plane X, wire 56
+  40,   1,  57  ! Plane X, wire 57
+  41,   1,  58  ! Plane X, wire 58
+  42,   1,  59  ! Plane X, wire 59
+  43,   1,  60  ! Plane X, wire 60
+  44,   1,  61  ! Plane X, wire 61
+  45,   1,  62  ! Plane X, wire 62
+  46,   1,  63  ! Plane X, wire 63
+  47,   1,  64  ! Plane X, wire 64
+  16,   1,  65  ! Plane X, wire 65
+  17,   1,  66  ! Plane X, wire 66
+  18,   1,  67  ! Plane X, wire 67
+  19,   1,  68  ! Plane X, wire 68
+  20,   1,  69  ! Plane X, wire 69
+  21,   1,  70  ! Plane X, wire 70
+  22,   1,  71  ! Plane X, wire 71
+  23,   1,  72  ! Plane X, wire 72
+  24,   1,  73  ! Plane X, wire 73
+  25,   1,  74  ! Plane X, wire 74
+  26,   1,  75  ! Plane X, wire 75
+  27,   1,  76  ! Plane X, wire 76
+  28,   1,  77  ! Plane X, wire 77
+  29,   1,  78  ! Plane X, wire 78
+  30,   1,  79  ! Plane X, wire 79
+  31,   1,  80  ! Plane X, wire 80
+   0,   1,  81  ! Plane X, wire 81
+   1,   1,  82  ! Plane X, wire 82
+   2,   1,  83  ! Plane X, wire 83
+   3,   1,  84  ! Plane X, wire 84
+   4,   1,  85  ! Plane X, wire 85
+   5,   1,  86  ! Plane X, wire 86
+   6,   1,  87  ! Plane X, wire 87
+   7,   1,  88  ! Plane X, wire 88
+   8,   1,  89  ! Plane X, wire 89
+   9,   1,  90  ! Plane X, wire 90
+  10,   1,  91  ! Plane X, wire 91
+  11,   1,  92  ! Plane X, wire 92
+  12,   1,  93  ! Plane X, wire 93
+  13,   1,  94  ! Plane X, wire 94
+  14,   1,  95  ! Plane X, wire 95
+  15,   1,  96  ! Plane X, wire 96
+
+SLOT=7
+REFINDEX=0
+  80,   1,  97  ! Plane X, wire 97
+  81,   1,  98  ! Plane X, wire 98
+  82,   1,  99  ! Plane X, wire 99
+  83,   1, 100  ! Plane X, wire 100
+  84,   1, 101  ! Plane X, wire 101
+  85,   1, 102  ! Plane X, wire 102
+  86,   1, 103  ! Plane X, wire 103
+  87,   1, 104  ! Plane X, wire 104
+  88,   1, 105  ! Plane X, wire 105
+  89,   1, 106  ! Plane X, wire 106
+  90,   1, 107  ! Plane X, wire 107
+  91,   1, 108  ! Plane X, wire 108
+  92,   1, 109  ! Plane X, wire 109
+  93,   1, 110  ! Plane X, wire 110
+  94,   1, 111  ! Plane X, wire 111
+  95,   1, 112  ! Plane X, wire 112
+
+SLOT=4
+REFINDEX=0
+ 112,   6,   1  ! Plane X', wire 1
+ 113,   6,   2  ! Plane X', wire 2
+ 114,   6,   3  ! Plane X', wire 3
+ 115,   6,   4  ! Plane X', wire 4
+ 116,   6,   5  ! Plane X', wire 5
+ 117,   6,   6  ! Plane X', wire 6
+ 118,   6,   7  ! Plane X', wire 7
+ 119,   6,   8  ! Plane X', wire 8
+ 120,   6,   9  ! Plane X', wire 9
+ 121,   6,  10  ! Plane X', wire 10
+ 122,   6,  11  ! Plane X', wire 11
+ 123,   6,  12  ! Plane X', wire 12
+ 124,   6,  13  ! Plane X', wire 13
+ 125,   6,  14  ! Plane X', wire 14
+ 126,   6,  15  ! Plane X', wire 15
+ 127,   6,  16  ! Plane X', wire 16
+
+SLOT=5
+REFINDEX=0
+ 112,   6,  17  ! Plane X', wire 17
+ 113,   6,  18  ! Plane X', wire 18
+ 114,   6,  19  ! Plane X', wire 19
+ 115,   6,  20  ! Plane X', wire 20
+ 116,   6,  21  ! Plane X', wire 21
+ 117,   6,  22  ! Plane X', wire 22
+ 118,   6,  23  ! Plane X', wire 23
+ 119,   6,  24  ! Plane X', wire 24
+ 120,   6,  25  ! Plane X', wire 25
+ 121,   6,  26  ! Plane X', wire 26
+ 122,   6,  27  ! Plane X', wire 27
+ 123,   6,  28  ! Plane X', wire 28
+ 124,   6,  29  ! Plane X', wire 29
+ 125,   6,  30  ! Plane X', wire 30
+ 126,   6,  31  ! Plane X', wire 31
+ 127,   6,  32  ! Plane X', wire 32
+
+SLOT=7
+REFINDEX=0
+   0,   6,  33  ! Plane X', wire 33
+   1,   6,  34  ! Plane X', wire 34
+   2,   6,  35  ! Plane X', wire 35
+   3,   6,  36  ! Plane X', wire 36
+   4,   6,  37  ! Plane X', wire 37
+   5,   6,  38  ! Plane X', wire 38
+   6,   6,  39  ! Plane X', wire 39
+   7,   6,  40  ! Plane X', wire 40
+   8,   6,  41  ! Plane X', wire 41
+   9,   6,  42  ! Plane X', wire 42
+  10,   6,  43  ! Plane X', wire 43
+  11,   6,  44  ! Plane X', wire 44
+  12,   6,  45  ! Plane X', wire 45
+  13,   6,  46  ! Plane X', wire 46
+  14,   6,  47  ! Plane X', wire 47
+  15,   6,  48  ! Plane X', wire 48
+  16,   6,  49  ! Plane X', wire 49
+  17,   6,  50  ! Plane X', wire 50
+  18,   6,  51  ! Plane X', wire 51
+  19,   6,  52  ! Plane X', wire 52
+  20,   6,  53  ! Plane X', wire 53
+  21,   6,  54  ! Plane X', wire 54
+  22,   6,  55  ! Plane X', wire 55
+  23,   6,  56  ! Plane X', wire 56
+  24,   6,  57  ! Plane X', wire 57
+  25,   6,  58  ! Plane X', wire 58
+  26,   6,  59  ! Plane X', wire 59
+  27,   6,  60  ! Plane X', wire 60
+  28,   6,  61  ! Plane X', wire 61
+  29,   6,  62  ! Plane X', wire 62
+  30,   6,  63  ! Plane X', wire 63
+  31,   6,  64  ! Plane X', wire 64
+  32,   6,  65  ! Plane X', wire 65
+  33,   6,  66  ! Plane X', wire 66
+  34,   6,  67  ! Plane X', wire 67
+  35,   6,  68  ! Plane X', wire 68
+  36,   6,  69  ! Plane X', wire 69
+  37,   6,  70  ! Plane X', wire 70
+  38,   6,  71  ! Plane X', wire 71
+  39,   6,  72  ! Plane X', wire 72
+  40,   6,  73  ! Plane X', wire 73
+  41,   6,  74  ! Plane X', wire 74
+  42,   6,  75  ! Plane X', wire 75
+  43,   6,  76  ! Plane X', wire 76
+  44,   6,  77  ! Plane X', wire 77
+  45,   6,  78  ! Plane X', wire 78
+  46,   6,  79  ! Plane X', wire 79
+  47,   6,  80  ! Plane X', wire 80
+  48,   6,  81  ! Plane X', wire 81
+  49,   6,  82  ! Plane X', wire 82
+  50,   6,  83  ! Plane X', wire 83
+  51,   6,  84  ! Plane X', wire 84
+  52,   6,  85  ! Plane X', wire 85
+  53,   6,  86  ! Plane X', wire 86
+  54,   6,  87  ! Plane X', wire 87
+  55,   6,  88  ! Plane X', wire 88
+  56,   6,  89  ! Plane X', wire 89
+  57,   6,  90  ! Plane X', wire 90
+  58,   6,  91  ! Plane X', wire 91
+  59,   6,  92  ! Plane X', wire 92
+  60,   6,  93  ! Plane X', wire 93
+  61,   6,  94  ! Plane X', wire 94
+  62,   6,  95  ! Plane X', wire 95
+  63,   6,  96  ! Plane X', wire 96
+  64,   6,  97  ! Plane X', wire 97
+  65,   6,  98  ! Plane X', wire 98
+  66,   6,  99  ! Plane X', wire 99
+  67,   6, 100  ! Plane X', wire 100
+  68,   6, 101  ! Plane X', wire 101
+  69,   6, 102  ! Plane X', wire 102
+  70,   6, 103  ! Plane X', wire 103
+  71,   6, 104  ! Plane X', wire 104
+  72,   6, 105  ! Plane X', wire 105
+  73,   6, 106  ! Plane X', wire 106
+  74,   6, 107  ! Plane X', wire 107
+  75,   6, 108  ! Plane X', wire 108
+  76,   6, 109  ! Plane X', wire 109
+  77,   6, 110  ! Plane X', wire 110
+  78,   6, 111  ! Plane X', wire 111
+  79,   6, 112  ! Plane X', wire 112
+
+SLOT=8
+REFINDEX=0
+  64,   2,   1  ! Plane Y, wire 1
+  65,   2,   2  ! Plane Y, wire 2
+  66,   2,   3  ! Plane Y, wire 3
+  67,   2,   4  ! Plane Y, wire 4
+  68,   2,   5  ! Plane Y, wire 5
+  69,   2,   6  ! Plane Y, wire 6
+  70,   2,   7  ! Plane Y, wire 7
+  71,   2,   8  ! Plane Y, wire 8
+  72,   2,   9  ! Plane Y, wire 9
+  73,   2,  10  ! Plane Y, wire 10
+  74,   2,  11  ! Plane Y, wire 11
+  75,   2,  12  ! Plane Y, wire 12
+  76,   2,  13  ! Plane Y, wire 13
+  80,   2,  14  ! Plane Y, wire 14
+  81,   2,  15  ! Plane Y, wire 15
+  82,   2,  16  ! Plane Y, wire 16
+  83,   2,  17  ! Plane Y, wire 17
+  84,   2,  18  ! Plane Y, wire 18
+  85,   2,  19  ! Plane Y, wire 19
+  86,   2,  20  ! Plane Y, wire 20
+  87,   2,  21  ! Plane Y, wire 21
+  88,   2,  22  ! Plane Y, wire 22
+  89,   2,  23  ! Plane Y, wire 23
+  90,   2,  24  ! Plane Y, wire 24
+  91,   2,  25  ! Plane Y, wire 25
+  92,   2,  26  ! Plane Y, wire 26
+  96,   2,  27  ! Plane Y, wire 27
+  97,   2,  28  ! Plane Y, wire 28
+  98,   2,  29  ! Plane Y, wire 29
+  99,   2,  30  ! Plane Y, wire 30
+ 100,   2,  31  ! Plane Y, wire 31
+ 101,   2,  32  ! Plane Y, wire 32
+ 102,   2,  33  ! Plane Y, wire 33
+ 103,   2,  34  ! Plane Y, wire 34
+ 104,   2,  35  ! Plane Y, wire 35
+ 105,   2,  36  ! Plane Y, wire 36
+ 106,   2,  37  ! Plane Y, wire 37
+ 107,   2,  38  ! Plane Y, wire 38
+ 108,   2,  39  ! Plane Y, wire 39
+ 112,   2,  40  ! Plane Y, wire 40
+ 113,   2,  41  ! Plane Y, wire 41
+ 114,   2,  42  ! Plane Y, wire 42
+ 115,   2,  43  ! Plane Y, wire 43
+ 116,   2,  44  ! Plane Y, wire 44
+ 117,   2,  45  ! Plane Y, wire 45
+ 118,   2,  46  ! Plane Y, wire 46
+ 119,   2,  47  ! Plane Y, wire 47
+ 120,   2,  48  ! Plane Y, wire 48
+ 121,   2,  49  ! Plane Y, wire 49
+ 122,   2,  50  ! Plane Y, wire 50
+ 123,   2,  51  ! Plane Y, wire 51
+ 124,   2,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   2
+   0,   5,   1  ! Plane Y', wire 1
+   1,   5,   2  ! Plane Y', wire 2
+   2,   5,   3  ! Plane Y', wire 3
+   3,   5,   4  ! Plane Y', wire 4
+   4,   5,   5  ! Plane Y', wire 5
+   5,   5,   6  ! Plane Y', wire 6
+   6,   5,   7  ! Plane Y', wire 7
+   7,   5,   8  ! Plane Y', wire 8
+   8,   5,   9  ! Plane Y', wire 9
+   9,   5,  10  ! Plane Y', wire 10
+  10,   5,  11  ! Plane Y', wire 11
+  11,   5,  12  ! Plane Y', wire 12
+  12,   5,  13  ! Plane Y', wire 13
+  16,   5,  14  ! Plane Y', wire 14
+  17,   5,  15  ! Plane Y', wire 15
+  18,   5,  16  ! Plane Y', wire 16
+  19,   5,  17  ! Plane Y', wire 17
+  20,   5,  18  ! Plane Y', wire 18
+  21,   5,  19  ! Plane Y', wire 19
+  22,   5,  20  ! Plane Y', wire 20
+  23,   5,  21  ! Plane Y', wire 21
+  24,   5,  22  ! Plane Y', wire 22
+  25,   5,  23  ! Plane Y', wire 23
+  26,   5,  24  ! Plane Y', wire 24
+  27,   5,  25  ! Plane Y', wire 25
+  28,   5,  26  ! Plane Y', wire 26
+  32,   5,  27  ! Plane Y', wire 27
+  33,   5,  28  ! Plane Y', wire 28
+  34,   5,  29  ! Plane Y', wire 29
+  35,   5,  30  ! Plane Y', wire 30
+  36,   5,  31  ! Plane Y', wire 31
+  37,   5,  32  ! Plane Y', wire 32
+  38,   5,  33  ! Plane Y', wire 33
+  39,   5,  34  ! Plane Y', wire 34
+  40,   5,  35  ! Plane Y', wire 35
+  41,   5,  36  ! Plane Y', wire 36
+  42,   5,  37  ! Plane Y', wire 37
+  43,   5,  38  ! Plane Y', wire 38
+  44,   5,  39  ! Plane Y', wire 39
+  48,   5,  40  ! Plane Y', wire 40
+  49,   5,  41  ! Plane Y', wire 41
+  50,   5,  42  ! Plane Y', wire 42
+  51,   5,  43  ! Plane Y', wire 43
+  52,   5,  44  ! Plane Y', wire 44
+  53,   5,  45  ! Plane Y', wire 45
+  54,   5,  46  ! Plane Y', wire 46
+  55,   5,  47  ! Plane Y', wire 47
+  56,   5,  48  ! Plane Y', wire 48
+  57,   5,  49  ! Plane Y', wire 49
+  58,   5,  50  ! Plane Y', wire 50
+  59,   5,  51  ! Plane Y', wire 51
+  60,   5,  52  ! Plane Y', wire 52
+
+SLOT=16
+REFINDEX=0
+  96,   9,   1  ! Plane U, wire 1
+  97,   9,   2  ! Plane U, wire 2
+  98,   9,   3  ! Plane U, wire 3
+  99,   9,   4  ! Plane U, wire 4
+ 100,   9,   5  ! Plane U, wire 5
+ 101,   9,   6  ! Plane U, wire 6
+ 102,   9,   7  ! Plane U, wire 7
+ 103,   9,   8  ! Plane U, wire 8
+ 104,   9,   9  ! Plane U, wire 9
+ 105,   9,  10  ! Plane U, wire 10
+ 106,   9,  11  ! Plane U, wire 11
+ 107,   9,  12  ! Plane U, wire 12
+ 108,   9,  13  ! Plane U, wire 13
+ 109,   9,  14  ! Plane U, wire 14
+ 110,   7, 113  ! Plane X, wire 113
+ 112,   9,  15  ! Plane U, wire 15
+ 113,   9,  16  ! Plane U, wire 16
+ 114,   9,  17  ! Plane U, wire 17
+ 115,   9,  18  ! Plane U, wire 18
+ 116,   9,  19  ! Plane U, wire 19
+ 117,   9,  20  ! Plane U, wire 20
+ 118,   9,  21  ! Plane U, wire 21
+ 119,   9,  22  ! Plane U, wire 22
+ 120,   9,  23  ! Plane U, wire 23
+ 121,   9,  24  ! Plane U, wire 24
+ 122,   9,  25  ! Plane U, wire 25
+ 123,   9,  26  ! Plane U, wire 26
+ 124,   9,  27  ! Plane U, wire 27
+ 125,   9,  28  ! Plane U, wire 28
+ 126,   9,  29  ! Plane U, wire 29
+
+SLOT=14
+REFINDEX=0
+   0,   9,  30  ! Plane U, wire 30
+   1,   9,  31  ! Plane U, wire 31
+   2,   9,  32  ! Plane U, wire 32
+   3,   9,  33  ! Plane U, wire 33
+   4,   9,  34  ! Plane U, wire 34
+   5,   9,  35  ! Plane U, wire 35
+   6,   9,  36  ! Plane U, wire 36
+   7,   9,  37  ! Plane U, wire 37
+   8,   9,  38  ! Plane U, wire 38
+   9,   9,  39  ! Plane U, wire 39
+  10,   9,  40  ! Plane U, wire 40
+  11,   9,  41  ! Plane U, wire 41
+  12,   9,  42  ! Plane U, wire 42
+  13,   9,  43  ! Plane U, wire 43
+  14,   9,  44  ! Plane U, wire 44
+  15,   9,  45  ! Plane U, wire 45
+  32,   9,  46  ! Plane U, wire 46
+  33,   9,  47  ! Plane U, wire 47
+  34,   9,  48  ! Plane U, wire 48
+  35,   9,  49  ! Plane U, wire 49
+  36,   9,  50  ! Plane U, wire 50
+  37,   9,  51  ! Plane U, wire 51
+  38,   9,  52  ! Plane U, wire 52
+  39,   9,  53  ! Plane U, wire 53
+  40,   9,  54  ! Plane U, wire 54
+  41,   9,  55  ! Plane U, wire 55
+  42,   9,  56  ! Plane U, wire 56
+  43,   9,  57  ! Plane U, wire 57
+  44,   9,  58  ! Plane U, wire 58
+  45,   9,  59  ! Plane U, wire 59
+  46,   9,  60  ! Plane U, wire 60
+  48,   9,  61  ! Plane U, wire 61
+  49,   9,  62  ! Plane U, wire 62
+  50,   9,  63  ! Plane U, wire 63
+  51,   9,  64  ! Plane U, wire 64
+  52,   9,  65  ! Plane U, wire 65
+  53,   9,  66  ! Plane U, wire 66
+  54,   9,  67  ! Plane U, wire 67
+  55,   9,  68  ! Plane U, wire 68
+  56,   9,  69  ! Plane U, wire 69
+  57,   9,  70  ! Plane U, wire 70
+  58,   9,  71  ! Plane U, wire 71
+  59,   9,  72  ! Plane U, wire 72
+  60,   9,  73  ! Plane U, wire 73
+  61,   9,  74  ! Plane U, wire 74
+  62,   9,  75  ! Plane U, wire 75
+  63,   9,  76  ! Plane U, wire 76
+  64,   9,  77  ! Plane U, wire 77
+  65,   9,  78  ! Plane U, wire 78
+  66,   9,  79  ! Plane U, wire 79
+  67,   9,  80  ! Plane U, wire 80
+  68,   9,  81  ! Plane U, wire 81
+  69,   9,  82  ! Plane U, wire 82
+  70,   9,  83  ! Plane U, wire 83
+  71,   9,  84  ! Plane U, wire 84
+  72,   9,  85  ! Plane U, wire 85
+  73,   9,  86  ! Plane U, wire 86
+  74,   9,  87  ! Plane U, wire 87
+  75,   9,  88  ! Plane U, wire 88
+  76,   9,  89  ! Plane U, wire 89
+  77,   9,  90  ! Plane U, wire 90
+  78,   9,  91  ! Plane U, wire 91
+  80,   9,  92  ! Plane U, wire 92
+  81,   9,  93  ! Plane U, wire 93
+  82,   9,  94  ! Plane U, wire 94
+  83,   9,  95  ! Plane U, wire 95
+  84,   9,  96  ! Plane U, wire 96
+  85,   9,  97  ! Plane U, wire 97
+  86,   9,  98  ! Plane U, wire 98
+  87,   9,  99  ! Plane U, wire 99
+  88,   9, 100  ! Plane U, wire 100
+  89,   9, 101  ! Plane U, wire 101
+  90,   9, 102  ! Plane U, wire 102
+  91,   9, 103  ! Plane U, wire 103
+  92,   9, 104  ! Plane U, wire 104
+  93,   9, 105  ! Plane U, wire 105
+  94,   9, 106  ! Plane U, wire 106
+  95,   9, 107  ! Plane U, wire 107
+
+SLOT=16
+REFINDEX=0
+  80,  10,   1  ! Plane V, wire 1
+  81,  10,   2  ! Plane V, wire 2
+  82,  10,   3  ! Plane V, wire 3
+  83,  10,   4  ! Plane V, wire 4
+  84,  10,   5  ! Plane V, wire 5
+  85,  10,   6  ! Plane V, wire 6
+  86,  10,   7  ! Plane V, wire 7
+  87,  10,   8  ! Plane V, wire 8
+  88,  10,   9  ! Plane V, wire 9
+  89,  10,  10  ! Plane V, wire 10
+  90,  10,  11  ! Plane V, wire 11
+  91,  10,  12  ! Plane V, wire 12
+  92,  10,  13  ! Plane V, wire 13
+  93,  10,  14  ! Plane V, wire 14
+  94,  12, 113  ! Plane X', wire 113
+
+SLOT=14
+REFINDEX=0
+  96,  10,  15  ! Plane V, wire 15
+  97,  10,  16  ! Plane V, wire 16
+  98,  10,  17  ! Plane V, wire 17
+  99,  10,  18  ! Plane V, wire 18
+ 100,  10,  19  ! Plane V, wire 19
+ 101,  10,  20  ! Plane V, wire 20
+ 102,  10,  21  ! Plane V, wire 21
+ 103,  10,  22  ! Plane V, wire 22
+ 104,  10,  23  ! Plane V, wire 23
+ 105,  10,  24  ! Plane V, wire 24
+ 106,  10,  25  ! Plane V, wire 25
+ 107,  10,  26  ! Plane V, wire 26
+ 108,  10,  27  ! Plane V, wire 27
+ 109,  10,  28  ! Plane V, wire 28
+ 110,  10,  29  ! Plane V, wire 29
+ 112,  10,  30  ! Plane V, wire 30
+ 113,  10,  31  ! Plane V, wire 31
+ 114,  10,  32  ! Plane V, wire 32
+ 115,  10,  33  ! Plane V, wire 33
+ 116,  10,  34  ! Plane V, wire 34
+ 117,  10,  35  ! Plane V, wire 35
+ 118,  10,  36  ! Plane V, wire 36
+ 119,  10,  37  ! Plane V, wire 37
+ 120,  10,  38  ! Plane V, wire 38
+ 121,  10,  39  ! Plane V, wire 39
+ 122,  10,  40  ! Plane V, wire 40
+ 123,  10,  41  ! Plane V, wire 41
+ 124,  10,  42  ! Plane V, wire 42
+ 125,  10,  43  ! Plane V, wire 43
+ 126,  10,  44  ! Plane V, wire 44
+ 127,  10,  45  ! Plane V, wire 45
+
+SLOT=17
+REFINDEX=0
+ 127,1000,   0,   3
+   0,  10,  46  ! Plane V, wire 46
+   1,  10,  47  ! Plane V, wire 47
+   2,  10,  48  ! Plane V, wire 48
+   3,  10,  49  ! Plane V, wire 49
+   4,  10,  50  ! Plane V, wire 50
+   5,  10,  51  ! Plane V, wire 51
+   6,  10,  52  ! Plane V, wire 52
+   7,  10,  53  ! Plane V, wire 53
+   8,  10,  54  ! Plane V, wire 54
+   9,  10,  55  ! Plane V, wire 55
+  10,  10,  56  ! Plane V, wire 56
+  11,  10,  57  ! Plane V, wire 57
+  12,  10,  58  ! Plane V, wire 58
+  13,  10,  59  ! Plane V, wire 59
+  14,  10,  60  ! Plane V, wire 60
+  16,  10,  61  ! Plane V, wire 61
+  17,  10,  62  ! Plane V, wire 62
+  18,  10,  63  ! Plane V, wire 63
+  19,  10,  64  ! Plane V, wire 64
+  20,  10,  65  ! Plane V, wire 65
+  21,  10,  66  ! Plane V, wire 66
+  22,  10,  67  ! Plane V, wire 67
+  23,  10,  68  ! Plane V, wire 68
+  24,  10,  69  ! Plane V, wire 69
+  25,  10,  70  ! Plane V, wire 70
+  26,  10,  71  ! Plane V, wire 71
+  27,  10,  72  ! Plane V, wire 72
+  28,  10,  73  ! Plane V, wire 73
+  29,  10,  74  ! Plane V, wire 74
+  30,  10,  75  ! Plane V, wire 75
+  31,  10,  76  ! Plane V, wire 76
+  32,  10,  77  ! Plane V, wire 77
+  33,  10,  78  ! Plane V, wire 78
+  34,  10,  79  ! Plane V, wire 79
+  35,  10,  80  ! Plane V, wire 80
+  36,  10,  81  ! Plane V, wire 81
+  37,  10,  82  ! Plane V, wire 82
+  38,  10,  83  ! Plane V, wire 83
+  39,  10,  84  ! Plane V, wire 84
+  40,  10,  85  ! Plane V, wire 85
+  41,  10,  86  ! Plane V, wire 86
+  42,  10,  87  ! Plane V, wire 87
+  43,  10,  88  ! Plane V, wire 88
+  44,  10,  89  ! Plane V, wire 89
+  45,  10,  90  ! Plane V, wire 90
+  46,  10,  91  ! Plane V, wire 91
+  48,  10,  92  ! Plane V, wire 92
+  49,  10,  93  ! Plane V, wire 93
+  50,  10,  94  ! Plane V, wire 94
+  51,  10,  95  ! Plane V, wire 95
+  52,  10,  96  ! Plane V, wire 96
+  53,  10,  97  ! Plane V, wire 97
+  54,  10,  98  ! Plane V, wire 98
+  55,  10,  99  ! Plane V, wire 99
+  56,  10, 100  ! Plane V, wire 100
+  57,  10, 101  ! Plane V, wire 101
+  58,  10, 102  ! Plane V, wire 102
+  59,  10, 103  ! Plane V, wire 103
+  60,  10, 104  ! Plane V, wire 104
+  61,  10, 105  ! Plane V, wire 105
+  62,  10, 106  ! Plane V, wire 106
+  63,  10, 107  ! Plane V, wire 107
+
+SLOT=13
+REFINDEX=0
+   0,   7,   1  ! Plane X, wire 1
+   1,   7,   2  ! Plane X, wire 2
+   2,   7,   3  ! Plane X, wire 3
+   3,   7,   4  ! Plane X, wire 4
+   4,   7,   5  ! Plane X, wire 5
+   5,   7,   6  ! Plane X, wire 6
+   6,   7,   7  ! Plane X, wire 7
+   7,   7,   8  ! Plane X, wire 8
+   8,   7,   9  ! Plane X, wire 9
+   9,   7,  10  ! Plane X, wire 10
+  10,   7,  11  ! Plane X, wire 11
+  11,   7,  12  ! Plane X, wire 12
+  12,   7,  13  ! Plane X, wire 13
+  13,   7,  14  ! Plane X, wire 14
+  14,   7,  15  ! Plane X, wire 15
+  15,   7,  16  ! Plane X, wire 16
+  16,   7,  17  ! Plane X, wire 17
+  17,   7,  18  ! Plane X, wire 18
+  18,   7,  19  ! Plane X, wire 19
+  19,   7,  20  ! Plane X, wire 20
+  20,   7,  21  ! Plane X, wire 21
+  21,   7,  22  ! Plane X, wire 22
+  22,   7,  23  ! Plane X, wire 23
+  23,   7,  24  ! Plane X, wire 24
+  24,   7,  25  ! Plane X, wire 25
+  25,   7,  26  ! Plane X, wire 26
+  26,   7,  27  ! Plane X, wire 27
+  27,   7,  28  ! Plane X, wire 28
+  28,   7,  29  ! Plane X, wire 29
+  29,   7,  30  ! Plane X, wire 30
+  30,   7,  31  ! Plane X, wire 31
+  31,   7,  32  ! Plane X, wire 32
+  32,   7,  33  ! Plane X, wire 33
+  33,   7,  34  ! Plane X, wire 34
+  34,   7,  35  ! Plane X, wire 35
+  35,   7,  36  ! Plane X, wire 36
+  36,   7,  37  ! Plane X, wire 37
+  37,   7,  38  ! Plane X, wire 38
+  38,   7,  39  ! Plane X, wire 39
+  39,   7,  40  ! Plane X, wire 40
+  40,   7,  41  ! Plane X, wire 41
+  41,   7,  42  ! Plane X, wire 42
+  42,   7,  43  ! Plane X, wire 43
+  43,   7,  44  ! Plane X, wire 44
+  44,   7,  45  ! Plane X, wire 45
+  45,   7,  46  ! Plane X, wire 46
+  46,   7,  47  ! Plane X, wire 47
+  47,   7,  48  ! Plane X, wire 48
+  48,   7,  49  ! Plane X, wire 49
+  49,   7,  50  ! Plane X, wire 50
+  50,   7,  51  ! Plane X, wire 51
+  51,   7,  52  ! Plane X, wire 52
+  52,   7,  53  ! Plane X, wire 53
+  53,   7,  54  ! Plane X, wire 54
+  54,   7,  55  ! Plane X, wire 55
+  55,   7,  56  ! Plane X, wire 56
+  56,   7,  57  ! Plane X, wire 57
+  57,   7,  58  ! Plane X, wire 58
+  58,   7,  59  ! Plane X, wire 59
+  59,   7,  60  ! Plane X, wire 60
+  60,   7,  61  ! Plane X, wire 61
+  61,   7,  62  ! Plane X, wire 62
+  62,   7,  63  ! Plane X, wire 63
+  63,   7,  64  ! Plane X, wire 64
+  64,   7,  65  ! Plane X, wire 65
+  65,   7,  66  ! Plane X, wire 66
+  66,   7,  67  ! Plane X, wire 67
+  67,   7,  68  ! Plane X, wire 68
+  68,   7,  69  ! Plane X, wire 69
+  69,   7,  70  ! Plane X, wire 70
+  70,   7,  71  ! Plane X, wire 71
+  71,   7,  72  ! Plane X, wire 72
+  72,   7,  73  ! Plane X, wire 73
+  73,   7,  74  ! Plane X, wire 74
+  74,   7,  75  ! Plane X, wire 75
+  75,   7,  76  ! Plane X, wire 76
+  76,   7,  77  ! Plane X, wire 77
+  77,   7,  78  ! Plane X, wire 78
+  78,   7,  79  ! Plane X, wire 79
+  79,   7,  80  ! Plane X, wire 80
+  80,   7,  81  ! Plane X, wire 81
+  81,   7,  82  ! Plane X, wire 82
+  82,   7,  83  ! Plane X, wire 83
+  83,   7,  84  ! Plane X, wire 84
+  84,   7,  85  ! Plane X, wire 85
+  85,   7,  86  ! Plane X, wire 86
+  86,   7,  87  ! Plane X, wire 87
+  87,   7,  88  ! Plane X, wire 88
+  88,   7,  89  ! Plane X, wire 89
+  89,   7,  90  ! Plane X, wire 90
+  90,   7,  91  ! Plane X, wire 91
+  91,   7,  92  ! Plane X, wire 92
+  92,   7,  93  ! Plane X, wire 93
+  93,   7,  94  ! Plane X, wire 94
+  94,   7,  95  ! Plane X, wire 95
+  95,   7,  96  ! Plane X, wire 96
+  96,   7,  97  ! Plane X, wire 97
+  97,   7,  98  ! Plane X, wire 98
+  98,   7,  99  ! Plane X, wire 99
+  99,   7, 100  ! Plane X, wire 100
+ 100,   7, 101  ! Plane X, wire 101
+ 101,   7, 102  ! Plane X, wire 102
+ 102,   7, 103  ! Plane X, wire 103
+ 103,   7, 104  ! Plane X, wire 104
+ 104,   7, 105  ! Plane X, wire 105
+ 105,   7, 106  ! Plane X, wire 106
+ 106,   7, 107  ! Plane X, wire 107
+ 107,   7, 108  ! Plane X, wire 108
+ 108,   7, 109  ! Plane X, wire 109
+ 109,   7, 110  ! Plane X, wire 110
+ 110,   7, 111  ! Plane X, wire 111
+ 111,   7, 112  ! Plane X, wire 112
+ 112,  12,   1  ! Plane X', wire 1
+ 113,  12,   2  ! Plane X', wire 2
+ 114,  12,   3  ! Plane X', wire 3
+ 115,  12,   4  ! Plane X', wire 4
+ 116,  12,   5  ! Plane X', wire 5
+ 117,  12,   6  ! Plane X', wire 6
+ 118,  12,   7  ! Plane X', wire 7
+ 119,  12,   8  ! Plane X', wire 8
+ 120,  12,   9  ! Plane X', wire 9
+ 121,  12,  10  ! Plane X', wire 10
+ 122,  12,  11  ! Plane X', wire 11
+ 123,  12,  12  ! Plane X', wire 12
+ 124,  12,  13  ! Plane X', wire 13
+ 125,  12,  14  ! Plane X', wire 14
+ 126,  12,  15  ! Plane X', wire 15
+ 127,  12,  16  ! Plane X', wire 16
+
+SLOT=14
+REFINDEX=0
+  16,  12,  17  ! Plane X', wire 17
+  17,  12,  18  ! Plane X', wire 18
+  18,  12,  19  ! Plane X', wire 19
+  19,  12,  20  ! Plane X', wire 20
+  20,  12,  21  ! Plane X', wire 21
+  21,  12,  22  ! Plane X', wire 22
+  22,  12,  23  ! Plane X', wire 23
+  23,  12,  24  ! Plane X', wire 24
+  24,  12,  25  ! Plane X', wire 25
+  25,  12,  26  ! Plane X', wire 26
+  26,  12,  27  ! Plane X', wire 27
+  27,  12,  28  ! Plane X', wire 28
+  28,  12,  29  ! Plane X', wire 29
+  29,  12,  30  ! Plane X', wire 30
+  30,  12,  31  ! Plane X', wire 31
+  31,  12,  32  ! Plane X', wire 32
+
+SLOT=16
+REFINDEX=0
+   0,  12,  33  ! Plane X', wire 33
+   1,  12,  34  ! Plane X', wire 34
+   2,  12,  35  ! Plane X', wire 35
+   3,  12,  36  ! Plane X', wire 36
+   4,  12,  37  ! Plane X', wire 37
+   5,  12,  38  ! Plane X', wire 38
+   6,  12,  39  ! Plane X', wire 39
+   7,  12,  40  ! Plane X', wire 40
+   8,  12,  41  ! Plane X', wire 41
+   9,  12,  42  ! Plane X', wire 42
+  10,  12,  43  ! Plane X', wire 43
+  11,  12,  44  ! Plane X', wire 44
+  12,  12,  45  ! Plane X', wire 45
+  13,  12,  46  ! Plane X', wire 46
+  14,  12,  47  ! Plane X', wire 47
+  15,  12,  48  ! Plane X', wire 48
+  16,  12,  49  ! Plane X', wire 49
+  17,  12,  50  ! Plane X', wire 50
+  18,  12,  51  ! Plane X', wire 51
+  19,  12,  52  ! Plane X', wire 52
+  20,  12,  53  ! Plane X', wire 53
+  21,  12,  54  ! Plane X', wire 54
+  22,  12,  55  ! Plane X', wire 55
+  23,  12,  56  ! Plane X', wire 56
+  24,  12,  57  ! Plane X', wire 57
+  25,  12,  58  ! Plane X', wire 58
+  26,  12,  59  ! Plane X', wire 59
+  27,  12,  60  ! Plane X', wire 60
+  28,  12,  61  ! Plane X', wire 61
+  29,  12,  62  ! Plane X', wire 62
+  30,  12,  63  ! Plane X', wire 63
+  31,  12,  64  ! Plane X', wire 64
+  32,  12,  65  ! Plane X', wire 65
+  33,  12,  66  ! Plane X', wire 66
+  34,  12,  67  ! Plane X', wire 67
+  35,  12,  68  ! Plane X', wire 68
+  36,  12,  69  ! Plane X', wire 69
+  37,  12,  70  ! Plane X', wire 70
+  38,  12,  71  ! Plane X', wire 71
+  39,  12,  72  ! Plane X', wire 72
+  40,  12,  73  ! Plane X', wire 73
+  41,  12,  74  ! Plane X', wire 74
+  42,  12,  75  ! Plane X', wire 75
+  43,  12,  76  ! Plane X', wire 76
+  44,  12,  77  ! Plane X', wire 77
+  45,  12,  78  ! Plane X', wire 78
+  46,  12,  79  ! Plane X', wire 79
+  47,  12,  80  ! Plane X', wire 80
+  48,  12,  81  ! Plane X', wire 81
+  49,  12,  82  ! Plane X', wire 82
+  50,  12,  83  ! Plane X', wire 83
+  51,  12,  84  ! Plane X', wire 84
+  52,  12,  85  ! Plane X', wire 85
+  53,  12,  86  ! Plane X', wire 86
+  54,  12,  87  ! Plane X', wire 87
+  55,  12,  88  ! Plane X', wire 88
+  56,  12,  89  ! Plane X', wire 89
+  57,  12,  90  ! Plane X', wire 90
+  58,  12,  91  ! Plane X', wire 91
+  59,  12,  92  ! Plane X', wire 92
+  60,  12,  93  ! Plane X', wire 93
+  61,  12,  94  ! Plane X', wire 94
+  62,  12,  95  ! Plane X', wire 95
+  63,  12,  96  ! Plane X', wire 96
+  64,  12,  97  ! Plane X', wire 97
+  65,  12,  98  ! Plane X', wire 98
+  66,  12,  99  ! Plane X', wire 99
+  67,  12, 100  ! Plane X', wire 100
+  68,  12, 101  ! Plane X', wire 101
+  69,  12, 102  ! Plane X', wire 102
+  70,  12, 103  ! Plane X', wire 103
+  71,  12, 104  ! Plane X', wire 104
+  72,  12, 105  ! Plane X', wire 105
+  73,  12, 106  ! Plane X', wire 106
+  74,  12, 107  ! Plane X', wire 107
+  75,  12, 108  ! Plane X', wire 108
+  76,  12, 109  ! Plane X', wire 109
+  77,  12, 110  ! Plane X', wire 110
+  78,  12, 111  ! Plane X', wire 111
+  79,  12, 112  ! Plane X', wire 112
+
+SLOT=17
+REFINDEX=0
+  64,   8,   1  ! Plane Y, wire 1
+  65,   8,   2  ! Plane Y, wire 2
+  66,   8,   3  ! Plane Y, wire 3
+  67,   8,   4  ! Plane Y, wire 4
+  68,   8,   5  ! Plane Y, wire 5
+  69,   8,   6  ! Plane Y, wire 6
+  70,   8,   7  ! Plane Y, wire 7
+  71,   8,   8  ! Plane Y, wire 8
+  72,   8,   9  ! Plane Y, wire 9
+  73,   8,  10  ! Plane Y, wire 10
+  74,   8,  11  ! Plane Y, wire 11
+  75,   8,  12  ! Plane Y, wire 12
+  76,   8,  13  ! Plane Y, wire 13
+  80,   8,  14  ! Plane Y, wire 14
+  81,   8,  15  ! Plane Y, wire 15
+  82,   8,  16  ! Plane Y, wire 16
+  83,   8,  17  ! Plane Y, wire 17
+  84,   8,  18  ! Plane Y, wire 18
+  85,   8,  19  ! Plane Y, wire 19
+  86,   8,  20  ! Plane Y, wire 20
+  87,   8,  21  ! Plane Y, wire 21
+  88,   8,  22  ! Plane Y, wire 22
+  89,   8,  23  ! Plane Y, wire 23
+  90,   8,  24  ! Plane Y, wire 24
+  91,   8,  25  ! Plane Y, wire 25
+  92,   8,  26  ! Plane Y, wire 26
+  96,   8,  27  ! Plane Y, wire 27
+  97,   8,  28  ! Plane Y, wire 28
+  98,   8,  29  ! Plane Y, wire 29
+  99,   8,  30  ! Plane Y, wire 30
+ 100,   8,  31  ! Plane Y, wire 31
+ 101,   8,  32  ! Plane Y, wire 32
+ 102,   8,  33  ! Plane Y, wire 33
+ 103,   8,  34  ! Plane Y, wire 34
+ 104,   8,  35  ! Plane Y, wire 35
+ 105,   8,  36  ! Plane Y, wire 36
+ 106,   8,  37  ! Plane Y, wire 37
+ 107,   8,  38  ! Plane Y, wire 38
+ 108,   8,  39  ! Plane Y, wire 39
+ 112,   8,  40  ! Plane Y, wire 40
+ 113,   8,  41  ! Plane Y, wire 41
+ 114,   8,  42  ! Plane Y, wire 42
+ 115,   8,  43  ! Plane Y, wire 43
+ 116,   8,  44  ! Plane Y, wire 44
+ 117,   8,  45  ! Plane Y, wire 45
+ 118,   8,  46  ! Plane Y, wire 46
+ 119,   8,  47  ! Plane Y, wire 47
+ 120,   8,  48  ! Plane Y, wire 48
+ 121,   8,  49  ! Plane Y, wire 49
+ 122,   8,  50  ! Plane Y, wire 50
+ 123,   8,  51  ! Plane Y, wire 51
+ 124,   8,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   1
+  64,  11,   1  ! Plane Y', wire 1
+  65,  11,   2  ! Plane Y', wire 2
+  66,  11,   3  ! Plane Y', wire 3
+  67,  11,   4  ! Plane Y', wire 4
+  68,  11,   5  ! Plane Y', wire 5
+  69,  11,   6  ! Plane Y', wire 6
+  70,  11,   7  ! Plane Y', wire 7
+  71,  11,   8  ! Plane Y', wire 8
+  72,  11,   9  ! Plane Y', wire 9
+  73,  11,  10  ! Plane Y', wire 10
+  74,  11,  11  ! Plane Y', wire 11
+  75,  11,  12  ! Plane Y', wire 12
+  76,  11,  13  ! Plane Y', wire 13
+  80,  11,  14  ! Plane Y', wire 14
+  81,  11,  15  ! Plane Y', wire 15
+  82,  11,  16  ! Plane Y', wire 16
+  83,  11,  17  ! Plane Y', wire 17
+  84,  11,  18  ! Plane Y', wire 18
+  85,  11,  19  ! Plane Y', wire 19
+  86,  11,  20  ! Plane Y', wire 20
+  87,  11,  21  ! Plane Y', wire 21
+  88,  11,  22  ! Plane Y', wire 22
+  89,  11,  23  ! Plane Y', wire 23
+  90,  11,  24  ! Plane Y', wire 24
+  91,  11,  25  ! Plane Y', wire 25
+  92,  11,  26  ! Plane Y', wire 26
+  96,  11,  27  ! Plane Y', wire 27
+  97,  11,  28  ! Plane Y', wire 28
+  98,  11,  29  ! Plane Y', wire 29
+  99,  11,  30  ! Plane Y', wire 30
+ 100,  11,  31  ! Plane Y', wire 31
+ 101,  11,  32  ! Plane Y', wire 32
+ 102,  11,  33  ! Plane Y', wire 33
+ 103,  11,  34  ! Plane Y', wire 34
+ 104,  11,  35  ! Plane Y', wire 35
+ 105,  11,  36  ! Plane Y', wire 36
+ 106,  11,  37  ! Plane Y', wire 37
+ 107,  11,  38  ! Plane Y', wire 38
+ 108,  11,  39  ! Plane Y', wire 39
+ 112,  11,  40  ! Plane Y', wire 40
+ 113,  11,  41  ! Plane Y', wire 41
+ 114,  11,  42  ! Plane Y', wire 42
+ 115,  11,  43  ! Plane Y', wire 43
+ 116,  11,  44  ! Plane Y', wire 44
+ 117,  11,  45  ! Plane Y', wire 45
+ 118,  11,  46  ! Plane Y', wire 46
+ 119,  11,  47  ! Plane Y', wire 47
+ 120,  11,  48  ! Plane Y', wire 48
+ 121,  11,  49  ! Plane Y', wire 49
+ 122,  11,  50  ! Plane Y', wire 50
+ 123,  11,  51  ! Plane Y', wire 51
+ 124,  11,  52  ! Plane Y', wire 52
+
+
+DETECTOR=13
+
+ROC=1
+
+SLOT=8
+   0,   1,   1,   0  ! h1x01A+
+   1,   1,   2,   0  ! h1x02A+
+   2,   1,   3,   0  ! h1x03A+
+   3,   1,   4,   0  ! h1x04A+
+   4,   1,   5,   0  ! h1x05A+
+   5,   1,   6,   0  ! h1x06A+
+   6,   1,   7,   0  ! h1x07A+
+   7,   1,   8,   0  ! h1x08A+
+   8,   1,   9,   0  ! h1x09A+
+   9,   1,  10,   0  ! h1x10A+
+  10,   1,  11,   0  ! h1x11A+
+  11,   1,  12,   0  ! h1x12A+
+  12,   1,  13,   0  ! h1x13A+
+  13,   1,  14,   0  ! h1x14A+
+  14,   1,  15,   0  ! h1x15A+
+  15,   1,  16,   0  ! h1x16A+
+
+SLOT=9
+   0,   1,   1,   1  ! h1x01A-
+   1,   1,   2,   1  ! h1x02A-
+   2,   1,   3,   1  ! h1x03A-
+   3,   1,   4,   1  ! h1x04A-
+   4,   1,   5,   1  ! h1x05A-
+   5,   1,   6,   1  ! h1x06A-
+   6,   1,   7,   1  ! h1x07A-
+   7,   1,   8,   1  ! h1x08A-
+   8,   1,   9,   1  ! h1x09A-
+   9,   1,  10,   1  ! h1x10A-
+  10,   1,  11,   1  ! h1x11A-
+  11,   1,  12,   1  ! h1x12A-
+  12,   1,  13,   1  ! h1x13A-
+  13,   1,  14,   1  ! h1x14A-
+  14,   1,  15,   1  ! h1x15A-
+  15,   1,  16,   1  ! h1x16A-
+
+SLOT=10
+   0,   2,   1,   0  ! h1y01A+
+   1,   2,   2,   0  ! h1y02A+
+   2,   2,   3,   0  ! h1y03A+
+   3,   2,   4,   0  ! h1y04A+
+   4,   2,   5,   0  ! h1y05A+
+   5,   2,   6,   0  ! h1y06A+
+   6,   2,   7,   0  ! h1y07A+
+   7,   2,   8,   0  ! h1y08A+
+   8,   2,   9,   0  ! h1y09A+
+   9,   2,  10,   0  ! h1y10A+
+  10,   2,   1,   1  ! h1y01A-
+  11,   2,   2,   1  ! h1y02A-
+  12,   2,   3,   1  ! h1y03A-
+  13,   2,   4,   1  ! h1y04A-
+  14,   2,   5,   1  ! h1y05A-
+  15,   2,   6,   1  ! h1y06A-
+
+SLOT=13
+   0,   2,   7,   1  ! h1y07A-
+   1,   2,   8,   1  ! h1y08A-
+   2,   2,   9,   1  ! h1y09A-
+   3,   2,  10,   1  ! h1y10A-
+   4,   3,   1,   0  ! h2x01A+
+   5,   3,   2,   0  ! h2x02A+
+   6,   3,   3,   0  ! h2x03A+
+   7,   3,   4,   0  ! h2x04A+
+   8,   3,   5,   0  ! h2x05A+
+   9,   3,   6,   0  ! h2x06A+
+  10,   3,   7,   0  ! h2x07A+
+  11,   3,   8,   0  ! h2x08A+
+  12,   3,   9,   0  ! h2x09A+
+  13,   3,  10,   0  ! h2x10A+
+  14,   3,  11,   0  ! h2x11A+
+  15,   3,  12,   0  ! h2x12A+
+
+SLOT=14
+   0,   3,  13,   0  ! h2x13A+
+   1,   3,  14,   0  ! h2x14A+
+   2,   3,  15,   0  ! h2x15A+
+   3,   3,  16,   0  ! h2x16A+
+   4,   3,   1,   1  ! h2x01A-
+   5,   3,   2,   1  ! h2x02A-
+   6,   3,   3,   1  ! h2x03A-
+   7,   3,   4,   1  ! h2x04A-
+   8,   3,   5,   1  ! h2x05A-
+   9,   3,   6,   1  ! h2x06A-
+  10,   3,   7,   1  ! h2x07A-
+  11,   3,   8,   1  ! h2x08A-
+  12,   3,   9,   1  ! h2x09A-
+  13,   3,  10,   1  ! h2x10A-
+  14,   3,  11,   1  ! h2x11A-
+  15,   3,  12,   1  ! h2x12A-
+
+SLOT=15
+   0,   3,  13,   1  ! h2x13A-
+   1,   3,  14,   1  ! h2x14A-
+   2,   3,  15,   1  ! h2x15A-
+   3,   3,  16,   1  ! h2x16A-
+   4,   4,   1,   0  ! h2y01A+
+   5,   4,   2,   0  ! h2y02A+
+   6,   4,   3,   0  ! h2y03A+
+   7,   4,   4,   0  ! h2y04A+
+   8,   4,   5,   0  ! h2y05A+
+   9,   4,   6,   0  ! h2y06A+
+  10,   4,   7,   0  ! h2y07A+
+  11,   4,   8,   0  ! h2y08A+
+  12,   4,   9,   0  ! h2y09A+
+  13,   4,  10,   0  ! h2y10A+
+  14,   4,   1,   1  ! h2y01A-
+  15,   4,   2,   1  ! h2y02A-
+
+SLOT=16
+   0,   4,   3,   1  ! h2y03A-
+   1,   4,   4,   1  ! h2y04A-
+   2,   4,   5,   1  ! h2y05A-
+   3,   4,   6,   1  ! h2y06A-
+   4,   4,   7,   1  ! h2y07A-
+   5,   4,   8,   1  ! h2y08A-
+   6,   4,   9,   1  ! h2y09A-
+   7,   4,  10,   1  ! h2y10A-
+
+SLOT=20
+REFINDEX=0
+ 127,1000,   0,   0
+   0,   1,   1,   2  ! h1x01T+
+   1,   1,   3,   2  ! h1x03T+
+   2,   1,   5,   2  ! h1x05T+
+   3,   1,   7,   2  ! h1x07T+
+   4,   1,   2,   2  ! h1x02T+
+   5,   1,   4,   2  ! h1x04T+
+   6,   1,   6,   2  ! h1x06T+
+   7,   1,   8,   2  ! h1x08T+
+   8,   1,   9,   2  ! h1x09T+
+   9,   1,  11,   2  ! h1x11T+
+  10,   1,  13,   2  ! h1x13T+
+  11,   1,  15,   2  ! h1x15T+
+  12,   1,  10,   2  ! h1x10T+
+  13,   1,  12,   2  ! h1x12T+
+  14,   1,  14,   2  ! h1x14T+
+  15,   1,  16,   2  ! h1x16T+
+  16,   1,   1,   3  ! h1x01T-
+  17,   1,   3,   3  ! h1x03T-
+  18,   1,   5,   3  ! h1x05T-
+  19,   1,   7,   3  ! h1x07T-
+  20,   1,   2,   3  ! h1x02T-
+  21,   1,   4,   3  ! h1x04T-
+  22,   1,   6,   3  ! h1x06T-
+  23,   1,   8,   3  ! h1x08T-
+  24,   1,   9,   3  ! h1x09T-
+  25,   1,  11,   3  ! h1x11T-
+  26,   1,  13,   3  ! h1x13T-
+  27,   1,  15,   3  ! h1x15T-
+  28,   1,  10,   3  ! h1x10T-
+  29,   1,  12,   3  ! h1x12T-
+  30,   1,  14,   3  ! h1x14T-
+  31,   1,  16,   3  ! h1x16T-
+  32,   2,   1,   2  ! h1y01T+
+  33,   2,   3,   2  ! h1y03T+
+  34,   2,   5,   2  ! h1y05T+
+  35,   2,   7,   2  ! h1y07T+
+  36,   2,   2,   2  ! h1y02T+
+  37,   2,   4,   2  ! h1y04T+
+  38,   2,   6,   2  ! h1y06T+
+  39,   2,   8,   2  ! h1y08T+
+  40,   2,   9,   2  ! h1y09T+
+  44,   2,  10,   2  ! h1y10T+
+  48,   2,   1,   3  ! h1y01T-
+  49,   2,   3,   3  ! h1y03T-
+  50,   2,   5,   3  ! h1y05T-
+  51,   2,   7,   3  ! h1y07T-
+  52,   2,   2,   3  ! h1y02T-
+  53,   2,   4,   3  ! h1y04T-
+  54,   2,   6,   3  ! h1y06T-
+  55,   2,   8,   3  ! h1y08T-
+  56,   2,   9,   3  ! h1y09T-
+  60,   2,  10,   3  ! h1y10T-
+  64,   3,   1,   2  ! h2x01T+
+  65,   3,   3,   2  ! h2x03T+
+  66,   3,   5,   2  ! h2x05T+
+  67,   3,   7,   2  ! h2x07T+
+  68,   3,   2,   2  ! h2x02T+
+  69,   3,   4,   2  ! h2x04T+
+  70,   3,   6,   2  ! h2x06T+
+  71,   3,   8,   2  ! h2x08T+
+  72,   3,   9,   2  ! h2x09T+
+  73,   3,  11,   2  ! h2x11T+
+  74,   3,  13,   2  ! h2x13T+
+  75,   3,  15,   2  ! h2x15T+
+  76,   3,  10,   2  ! h2x10T+
+  77,   3,  12,   2  ! h2x12T+
+  78,   3,  14,   2  ! h2x14T+
+  79,   3,  16,   2  ! h2x16T+
+  80,   3,   1,   3  ! h2x01T-
+  81,   3,   3,   3  ! h2x03T-
+  82,   3,   5,   3  ! h2x05T-
+  83,   3,   7,   3  ! h2x07T-
+  84,   3,   2,   3  ! h2x02T-
+  85,   3,   4,   3  ! h2x04T-
+  86,   3,   6,   3  ! h2x06T-
+  87,   3,   8,   3  ! h2x08T-
+  88,   3,   9,   3  ! h2x09T-
+  89,   3,  11,   3  ! h2x11T-
+  90,   3,  13,   3  ! h2x13T-
+  91,   3,  15,   3  ! h2x15T-
+  92,   3,  10,   3  ! h2x10T-
+  93,   3,  12,   3  ! h2x12T-
+  94,   3,  14,   3  ! h2x14T-
+  95,   3,  16,   3  ! h2x16T-
+  96,   4,   1,   2  ! h2y01T+
+  97,   4,   3,   2  ! h2y03T+
+  98,   4,   5,   2  ! h2y05T+
+  99,   4,   7,   2  ! h2y07T+
+ 100,   4,   2,   2  ! h2y02T+
+ 101,   4,   4,   2  ! h2y04T+
+ 102,   4,   6,   2  ! h2y06T+
+ 103,   4,   8,   2  ! h2y08T+
+ 104,   4,   9,   2  ! h2y09T+
+ 108,   4,  10,   2  ! h2y10T+
+ 112,   4,   1,   3  ! h2y01T-
+ 113,   4,   3,   3  ! h2y03T-
+ 114,   4,   5,   3  ! h2y05T-
+ 115,   4,   7,   3  ! h2y07T-
+ 116,   4,   2,   3  ! h2y02T-
+ 117,   4,   4,   3  ! h2y04T-
+ 118,   4,   6,   3  ! h2y06T-
+ 119,   4,   8,   3  ! h2y08T-
+ 120,   4,   9,   3  ! h2y09T-
+ 124,   4,  10,   3  ! h2y10T-
+
+
+DETECTOR=14
+
+ROC=1
+
+SLOT=7
+  14,   1,   1,   0  ! hCER01
+  15,   1,   2,   0  ! hCER02
+
+
+DETECTOR=15
+
+ROC=1
+
+SLOT=3
+   0,   1,   1,   0  ! hA01+
+   1,   1,   2,   0  ! hA02+
+   2,   1,   3,   0  ! hA03+
+   3,   1,   4,   0  ! hA04+
+   4,   1,   5,   0  ! hA05+
+   5,   1,   6,   0  ! hA06+
+   6,   1,   7,   0  ! hA07+
+   7,   1,   8,   0  ! hA08+
+   8,   1,   9,   0  ! hA09+
+   9,   1,  10,   0  ! hA10+
+  10,   1,  11,   0  ! hA11+
+  11,   1,  12,   0  ! hA12+
+  12,   1,  13,   0  ! hA13+
+  13,   1,   1,   1  ! hA01-
+  14,   1,   2,   1  ! hA02-
+  15,   1,   3,   1  ! hA03-
+
+SLOT=4
+   0,   1,   4,   1  ! hA04-
+   1,   1,   5,   1  ! hA05-
+   2,   1,   6,   1  ! hA06-
+   3,   1,   7,   1  ! hA07-
+   4,   1,   8,   1  ! hA08-
+   5,   1,   9,   1  ! hA09-
+   6,   1,  10,   1  ! hA10-
+   7,   1,  11,   1  ! hA11-
+   8,   1,  12,   1  ! hA12-
+   9,   1,  13,   1  ! hA13-
+  10,   2,   1,   0  ! hB01+
+  11,   2,   2,   0  ! hB02+
+  12,   2,   3,   0  ! hB03+
+  13,   2,   4,   0  ! hB04+
+  14,   2,   5,   0  ! hB05+
+  15,   2,   6,   0  ! hB06+
+
+SLOT=5
+   0,   2,   7,   0  ! hB07+
+   1,   2,   8,   0  ! hB08+
+   2,   2,   9,   0  ! hB09+
+   3,   2,  10,   0  ! hB10+
+   4,   2,  11,   0  ! hB11+
+   5,   2,  12,   0  ! hB12+
+   6,   2,  13,   0  ! hB13+
+   7,   2,   1,   1  ! hB01-
+   8,   2,   2,   1  ! hB02-
+   9,   2,   3,   1  ! hB03-
+  10,   2,   4,   1  ! hB04-
+  11,   2,   5,   1  ! hB05-
+  12,   2,   6,   1  ! hB06-
+  13,   2,   7,   1  ! hB07-
+  14,   2,   8,   1  ! hB08-
+  15,   2,   9,   1  ! hB09-
+
+SLOT=6
+   0,   2,  10,   1  ! hB10-
+   1,   2,  11,   1  ! hB11-
+   2,   2,  12,   1  ! hB12-
+   3,   2,  13,   1  ! hB13-
+   4,   3,   1,   0  ! hC01+
+   5,   3,   2,   0  ! hC02+
+   6,   3,   3,   0  ! hC03+
+   7,   3,   4,   0  ! hC04+
+   8,   3,   5,   0  ! hC05+
+   9,   3,   6,   0  ! hC06+
+  10,   3,   7,   0  ! hC07+
+  11,   3,   8,   0  ! hC08+
+  12,   3,   9,   0  ! hC09+
+  13,   3,  10,   0  ! hC10+
+  14,   3,  11,   0  ! hC11+
+  15,   3,  12,   0  ! hC12+
+
+SLOT=7
+   0,   3,  13,   0  ! hC13+
+   1,   4,   1,   0  ! hD01+
+   2,   4,   2,   0  ! hD02+
+   3,   4,   3,   0  ! hD03+
+   4,   4,   4,   0  ! hD04+
+   5,   4,   5,   0  ! hD05+
+   6,   4,   6,   0  ! hD06+
+   7,   4,   7,   0  ! hD07+
+   8,   4,   8,   0  ! hD08+
+   9,   4,   9,   0  ! hD09+
+  10,   4,  10,   0  ! hD10+
+  11,   4,  11,   0  ! hD11+
+  12,   4,  12,   0  ! hD12+
+  13,   4,  13,   0  ! hD13+
diff --git a/MAPS/HMS/DETEC/hms_stack_spring17_current_run.map b/MAPS/HMS/DETEC/hms_stack_spring17_current_run.map
new file mode 100644
index 0000000000000000000000000000000000000000..93cbf3517dec2da77ff96cae878deec04cf43656
--- /dev/null
+++ b/MAPS/HMS/DETEC/hms_stack_spring17_current_run.map
@@ -0,0 +1,1544 @@
+! THMS_ID=10       ::  ADC,TDC
+! HDC_ID=11        ::  TDC
+! HSCIN_ID=13      ::  ADC+,ADC-,TDC+,TDC-
+! HCER_ID=14       ::  (TDC),ADC
+! HCAL_ID=15       ::  ADC
+
+
+DETECTOR=10
+
+ROC=1
+
+SLOT=17
+   8,   1,   1,   0  ! hASUM
+   9,   1,   2,   0  ! hBSUM
+  10,   1,   3,   0  ! hCSUM
+  11,   1,   4,   0  ! hDSUM
+  12,   1,   5,   0  ! hPSHWR
+  13,   1,   6,   0  ! hSHWR
+  14,   1,   7,   0  ! hAERSUM
+  15,   1,   8,   0  ! hCERSUM
+
+SLOT=2
+   0,   2,   1,   1  ! h1X
+   1,   2,   2,   1  ! h1Y
+   2,   2,   3,   1  ! h2X
+   3,   2,   4,   1  ! h2Y
+   4,   2,   5,   1  ! h1T
+   5,   2,   6,   1  ! h2T
+   6,   2,   7,   1  ! hT1
+   7,   2,   8,   1  ! hASUM
+   8,   2,   9,   1  ! hBSUM
+   9,   2,  10,   1  ! hCSUM
+  10,   2,  11,   1  ! hDSUM
+  11,   2,  12,   1  ! hPSHWRLO
+  12,   2,  13,   1  ! hPSHWRHI
+  13,   2,  14,   1  ! hSHWR
+  14,   2,  15,   1  ! hAERSUM
+  15,   2,  16,   1  ! hCERSUM
+
+SLOT=20
+ 127,   2,  17,   1  ! hT2
+
+ROC=3
+
+SLOT=5
+ 111,   2,  18,   1  ! hDCREF1
+
+SLOT=8
+ 127,   2,  19,   1  ! hDCREF2
+
+SLOT=10
+ 127,   2,  20,   1  ! hDCREF3
+
+SLOT=17
+ 127,   2,  21,   1  ! hDCREF4
+
+
+DETECTOR=11  ! HMS chambers
+
+ROC=3
+
+SLOT=5
+REFINDEX=0
+ 111,1000,   0,   0
+  96,   3,   1  ! Plane U, wire 1
+  97,   3,   2  ! Plane U, wire 2
+  98,   3,   3  ! Plane U, wire 3
+  99,   3,   4  ! Plane U, wire 4
+ 100,   3,   5  ! Plane U, wire 5
+ 101,   3,   6  ! Plane U, wire 6
+ 102,   3,   7  ! Plane U, wire 7
+ 103,   3,   8  ! Plane U, wire 8
+ 104,   3,   9  ! Plane U, wire 9
+ 105,   3,  10  ! Plane U, wire 10
+ 106,   3,  11  ! Plane U, wire 11
+ 107,   3,  12  ! Plane U, wire 12
+ 108,   3,  13  ! Plane U, wire 13
+ 109,   3,  14  ! Plane U, wire 14
+ 110,   1, 113  ! Plane X, wire 113
+  80,   3,  15  ! Plane U, wire 15
+  81,   3,  16  ! Plane U, wire 16
+  82,   3,  17  ! Plane U, wire 17
+  83,   3,  18  ! Plane U, wire 18
+  84,   3,  19  ! Plane U, wire 19
+  85,   3,  20  ! Plane U, wire 20
+  86,   3,  21  ! Plane U, wire 21
+  87,   3,  22  ! Plane U, wire 22
+  88,   3,  23  ! Plane U, wire 23
+  89,   3,  24  ! Plane U, wire 24
+  90,   3,  25  ! Plane U, wire 25
+  91,   3,  26  ! Plane U, wire 26
+  92,   3,  27  ! Plane U, wire 27
+  93,   3,  28  ! Plane U, wire 28
+  94,   3,  29  ! Plane U, wire 29
+  64,   3,  30  ! Plane U, wire 30
+  65,   3,  31  ! Plane U, wire 31
+  66,   3,  32  ! Plane U, wire 32
+  67,   3,  33  ! Plane U, wire 33
+  68,   3,  34  ! Plane U, wire 34
+  69,   3,  35  ! Plane U, wire 35
+  70,   3,  36  ! Plane U, wire 36
+  71,   3,  37  ! Plane U, wire 37
+  72,   3,  38  ! Plane U, wire 38
+  73,   3,  39  ! Plane U, wire 39
+  74,   3,  40  ! Plane U, wire 40
+  75,   3,  41  ! Plane U, wire 41
+  76,   3,  42  ! Plane U, wire 42
+  77,   3,  43  ! Plane U, wire 43
+  78,   3,  44  ! Plane U, wire 44
+  79,   3,  45  ! Plane U, wire 45
+  48,   3,  46  ! Plane U, wire 46
+  49,   3,  47  ! Plane U, wire 47
+  50,   3,  48  ! Plane U, wire 48
+  51,   3,  49  ! Plane U, wire 49
+  52,   3,  50  ! Plane U, wire 50
+  53,   3,  51  ! Plane U, wire 51
+  54,   3,  52  ! Plane U, wire 52
+  55,   3,  53  ! Plane U, wire 53
+  56,   3,  54  ! Plane U, wire 54
+  57,   3,  55  ! Plane U, wire 55
+  58,   3,  56  ! Plane U, wire 56
+  59,   3,  57  ! Plane U, wire 57
+  60,   3,  58  ! Plane U, wire 58
+  61,   3,  59  ! Plane U, wire 59
+  62,   3,  60  ! Plane U, wire 60
+  32,   3,  61  ! Plane U, wire 61
+  33,   3,  62  ! Plane U, wire 62
+  34,   3,  63  ! Plane U, wire 63
+  35,   3,  64  ! Plane U, wire 64
+  36,   3,  65  ! Plane U, wire 65
+  37,   3,  66  ! Plane U, wire 66
+  38,   3,  67  ! Plane U, wire 67
+  39,   3,  68  ! Plane U, wire 68
+  40,   3,  69  ! Plane U, wire 69
+  41,   3,  70  ! Plane U, wire 70
+  42,   3,  71  ! Plane U, wire 71
+  43,   3,  72  ! Plane U, wire 72
+  44,   3,  73  ! Plane U, wire 73
+  45,   3,  74  ! Plane U, wire 74
+  46,   3,  75  ! Plane U, wire 75
+  47,   3,  76  ! Plane U, wire 76
+  16,   3,  77  ! Plane U, wire 77
+  17,   3,  78  ! Plane U, wire 78
+  18,   3,  79  ! Plane U, wire 79
+  19,   3,  80  ! Plane U, wire 80
+  20,   3,  81  ! Plane U, wire 81
+  21,   3,  82  ! Plane U, wire 82
+  22,   3,  83  ! Plane U, wire 83
+  23,   3,  84  ! Plane U, wire 84
+  24,   3,  85  ! Plane U, wire 85
+  25,   3,  86  ! Plane U, wire 86
+  26,   3,  87  ! Plane U, wire 87
+  27,   3,  88  ! Plane U, wire 88
+  28,   3,  89  ! Plane U, wire 89
+  29,   3,  90  ! Plane U, wire 90
+  30,   3,  91  ! Plane U, wire 91
+   0,   3,  92  ! Plane U, wire 92
+   1,   3,  93  ! Plane U, wire 93
+   2,   3,  94  ! Plane U, wire 94
+   3,   3,  95  ! Plane U, wire 95
+   4,   3,  96  ! Plane U, wire 96
+   5,   3,  97  ! Plane U, wire 97
+   6,   3,  98  ! Plane U, wire 98
+   7,   3,  99  ! Plane U, wire 99
+   8,   3, 100  ! Plane U, wire 100
+   9,   3, 101  ! Plane U, wire 101
+  10,   3, 102  ! Plane U, wire 102
+  11,   3, 103  ! Plane U, wire 103
+  12,   3, 104  ! Plane U, wire 104
+  13,   3, 105  ! Plane U, wire 105
+  14,   3, 106  ! Plane U, wire 106
+  15,   3, 107  ! Plane U, wire 107
+
+SLOT=7
+REFINDEX=0
+  96,   4,   1  ! Plane V, wire 1
+  97,   4,   2  ! Plane V, wire 2
+  98,   4,   3  ! Plane V, wire 3
+  99,   4,   4  ! Plane V, wire 4
+ 100,   4,   5  ! Plane V, wire 5
+ 101,   4,   6  ! Plane V, wire 6
+ 102,   4,   7  ! Plane V, wire 7
+ 103,   4,   8  ! Plane V, wire 8
+ 104,   4,   9  ! Plane V, wire 9
+ 105,   4,  10  ! Plane V, wire 10
+ 106,   4,  11  ! Plane V, wire 11
+ 107,   4,  12  ! Plane V, wire 12
+ 108,   4,  13  ! Plane V, wire 13
+ 109,   4,  14  ! Plane V, wire 14
+ 110,   6, 113  ! Plane X', wire 113
+ 112,   4,  15  ! Plane V, wire 15
+ 113,   4,  16  ! Plane V, wire 16
+ 114,   4,  17  ! Plane V, wire 17
+ 115,   4,  18  ! Plane V, wire 18
+ 116,   4,  19  ! Plane V, wire 19
+ 117,   4,  20  ! Plane V, wire 20
+ 118,   4,  21  ! Plane V, wire 21
+ 119,   4,  22  ! Plane V, wire 22
+ 120,   4,  23  ! Plane V, wire 23
+ 121,   4,  24  ! Plane V, wire 24
+ 122,   4,  25  ! Plane V, wire 25
+ 123,   4,  26  ! Plane V, wire 26
+ 124,   4,  27  ! Plane V, wire 27
+ 125,   4,  28  ! Plane V, wire 28
+ 126,   4,  29  ! Plane V, wire 29
+
+SLOT=8
+REFINDEX=0
+ 127,1000,   0,   1
+   0,   4,  30  ! Plane V, wire 30
+   1,   4,  31  ! Plane V, wire 31
+   2,   4,  32  ! Plane V, wire 32
+   3,   4,  33  ! Plane V, wire 33
+   4,   4,  34  ! Plane V, wire 34
+   5,   4,  35  ! Plane V, wire 35
+   6,   4,  36  ! Plane V, wire 36
+   7,   4,  37  ! Plane V, wire 37
+   8,   4,  38  ! Plane V, wire 38
+   9,   4,  39  ! Plane V, wire 39
+  10,   4,  40  ! Plane V, wire 40
+  11,   4,  41  ! Plane V, wire 41
+  12,   4,  42  ! Plane V, wire 42
+  13,   4,  43  ! Plane V, wire 43
+  14,   4,  44  ! Plane V, wire 44
+  15,   4,  45  ! Plane V, wire 45
+  16,   4,  46  ! Plane V, wire 46
+  17,   4,  47  ! Plane V, wire 47
+  18,   4,  48  ! Plane V, wire 48
+  19,   4,  49  ! Plane V, wire 49
+  20,   4,  50  ! Plane V, wire 50
+  21,   4,  51  ! Plane V, wire 51
+  22,   4,  52  ! Plane V, wire 52
+  23,   4,  53  ! Plane V, wire 53
+  24,   4,  54  ! Plane V, wire 54
+  25,   4,  55  ! Plane V, wire 55
+  26,   4,  56  ! Plane V, wire 56
+  27,   4,  57  ! Plane V, wire 57
+  28,   4,  58  ! Plane V, wire 58
+  29,   4,  59  ! Plane V, wire 59
+  30,   4,  60  ! Plane V, wire 60
+  32,   4,  61  ! Plane V, wire 61
+  33,   4,  62  ! Plane V, wire 62
+  34,   4,  63  ! Plane V, wire 63
+  35,   4,  64  ! Plane V, wire 64
+  36,   4,  65  ! Plane V, wire 65
+  37,   4,  66  ! Plane V, wire 66
+  38,   4,  67  ! Plane V, wire 67
+  39,   4,  68  ! Plane V, wire 68
+  40,   4,  69  ! Plane V, wire 69
+  41,   4,  70  ! Plane V, wire 70
+  42,   4,  71  ! Plane V, wire 71
+  43,   4,  72  ! Plane V, wire 72
+  44,   4,  73  ! Plane V, wire 73
+  45,   4,  74  ! Plane V, wire 74
+  46,   4,  75  ! Plane V, wire 75
+  47,   4,  76  ! Plane V, wire 76
+  48,   4,  77  ! Plane V, wire 77
+  49,   4,  78  ! Plane V, wire 78
+  50,   4,  79  ! Plane V, wire 79
+  51,   4,  80  ! Plane V, wire 80
+  52,   4,  81  ! Plane V, wire 81
+  53,   4,  82  ! Plane V, wire 82
+  54,   4,  83  ! Plane V, wire 83
+  55,   4,  84  ! Plane V, wire 84
+  56,   4,  85  ! Plane V, wire 85
+  57,   4,  86  ! Plane V, wire 86
+  58,   4,  87  ! Plane V, wire 87
+  59,   4,  88  ! Plane V, wire 88
+  60,   4,  89  ! Plane V, wire 89
+  61,   4,  90  ! Plane V, wire 90
+  62,   4,  91  ! Plane V, wire 91
+
+SLOT=4
+REFINDEX=0
+  96,   4,  92  ! Plane V, wire 92
+  97,   4,  93  ! Plane V, wire 93
+  98,   4,  94  ! Plane V, wire 94
+  99,   4,  95  ! Plane V, wire 95
+ 100,   4,  96  ! Plane V, wire 96
+ 101,   4,  97  ! Plane V, wire 97
+ 102,   4,  98  ! Plane V, wire 98
+ 103,   4,  99  ! Plane V, wire 99
+ 104,   4, 100  ! Plane V, wire 100
+ 105,   4, 101  ! Plane V, wire 101
+ 106,   4, 102  ! Plane V, wire 102
+ 107,   4, 103  ! Plane V, wire 103
+ 108,   4, 104  ! Plane V, wire 104
+ 109,   4, 105  ! Plane V, wire 105
+ 110,   4, 106  ! Plane V, wire 106
+ 111,   4, 107  ! Plane V, wire 107
+  80,   1,   1  ! Plane X, wire 1
+  81,   1,   2  ! Plane X, wire 2
+  82,   1,   3  ! Plane X, wire 3
+  83,   1,   4  ! Plane X, wire 4
+  84,   1,   5  ! Plane X, wire 5
+  85,   1,   6  ! Plane X, wire 6
+  86,   1,   7  ! Plane X, wire 7
+  87,   1,   8  ! Plane X, wire 8
+  88,   1,   9  ! Plane X, wire 9
+  89,   1,  10  ! Plane X, wire 10
+  90,   1,  11  ! Plane X, wire 11
+  91,   1,  12  ! Plane X, wire 12
+  92,   1,  13  ! Plane X, wire 13
+  93,   1,  14  ! Plane X, wire 14
+  94,   1,  15  ! Plane X, wire 15
+  95,   1,  16  ! Plane X, wire 16
+  64,   1,  17  ! Plane X, wire 17
+  65,   1,  18  ! Plane X, wire 18
+  66,   1,  19  ! Plane X, wire 19
+  67,   1,  20  ! Plane X, wire 20
+  68,   1,  21  ! Plane X, wire 21
+  69,   1,  22  ! Plane X, wire 22
+  70,   1,  23  ! Plane X, wire 23
+  71,   1,  24  ! Plane X, wire 24
+  72,   1,  25  ! Plane X, wire 25
+  73,   1,  26  ! Plane X, wire 26
+  74,   1,  27  ! Plane X, wire 27
+  75,   1,  28  ! Plane X, wire 28
+  76,   1,  29  ! Plane X, wire 29
+  77,   1,  30  ! Plane X, wire 30
+  78,   1,  31  ! Plane X, wire 31
+  79,   1,  32  ! Plane X, wire 32
+  48,   1,  33  ! Plane X, wire 33
+  49,   1,  34  ! Plane X, wire 34
+  50,   1,  35  ! Plane X, wire 35
+  51,   1,  36  ! Plane X, wire 36
+  52,   1,  37  ! Plane X, wire 37
+  53,   1,  38  ! Plane X, wire 38
+  54,   1,  39  ! Plane X, wire 39
+  55,   1,  40  ! Plane X, wire 40
+  56,   1,  41  ! Plane X, wire 41
+  57,   1,  42  ! Plane X, wire 42
+  58,   1,  43  ! Plane X, wire 43
+  59,   1,  44  ! Plane X, wire 44
+  60,   1,  45  ! Plane X, wire 45
+  61,   1,  46  ! Plane X, wire 46
+  62,   1,  47  ! Plane X, wire 47
+  63,   1,  48  ! Plane X, wire 48
+  32,   1,  49  ! Plane X, wire 49
+  33,   1,  50  ! Plane X, wire 50
+  34,   1,  51  ! Plane X, wire 51
+  35,   1,  52  ! Plane X, wire 52
+  36,   1,  53  ! Plane X, wire 53
+  37,   1,  54  ! Plane X, wire 54
+  38,   1,  55  ! Plane X, wire 55
+  39,   1,  56  ! Plane X, wire 56
+  40,   1,  57  ! Plane X, wire 57
+  41,   1,  58  ! Plane X, wire 58
+  42,   1,  59  ! Plane X, wire 59
+  43,   1,  60  ! Plane X, wire 60
+  44,   1,  61  ! Plane X, wire 61
+  45,   1,  62  ! Plane X, wire 62
+  46,   1,  63  ! Plane X, wire 63
+  47,   1,  64  ! Plane X, wire 64
+  16,   1,  65  ! Plane X, wire 65
+  17,   1,  66  ! Plane X, wire 66
+  18,   1,  67  ! Plane X, wire 67
+  19,   1,  68  ! Plane X, wire 68
+  20,   1,  69  ! Plane X, wire 69
+  21,   1,  70  ! Plane X, wire 70
+  22,   1,  71  ! Plane X, wire 71
+  23,   1,  72  ! Plane X, wire 72
+  24,   1,  73  ! Plane X, wire 73
+  25,   1,  74  ! Plane X, wire 74
+  26,   1,  75  ! Plane X, wire 75
+  27,   1,  76  ! Plane X, wire 76
+  28,   1,  77  ! Plane X, wire 77
+  29,   1,  78  ! Plane X, wire 78
+  30,   1,  79  ! Plane X, wire 79
+  31,   1,  80  ! Plane X, wire 80
+   0,   1,  81  ! Plane X, wire 81
+   1,   1,  82  ! Plane X, wire 82
+   2,   1,  83  ! Plane X, wire 83
+   3,   1,  84  ! Plane X, wire 84
+   4,   1,  85  ! Plane X, wire 85
+   5,   1,  86  ! Plane X, wire 86
+   6,   1,  87  ! Plane X, wire 87
+   7,   1,  88  ! Plane X, wire 88
+   8,   1,  89  ! Plane X, wire 89
+   9,   1,  90  ! Plane X, wire 90
+  10,   1,  91  ! Plane X, wire 91
+  11,   1,  92  ! Plane X, wire 92
+  12,   1,  93  ! Plane X, wire 93
+  13,   1,  94  ! Plane X, wire 94
+  14,   1,  95  ! Plane X, wire 95
+  15,   1,  96  ! Plane X, wire 96
+
+SLOT=7
+REFINDEX=0
+  80,   1,  97  ! Plane X, wire 97
+  81,   1,  98  ! Plane X, wire 98
+  82,   1,  99  ! Plane X, wire 99
+  83,   1, 100  ! Plane X, wire 100
+  84,   1, 101  ! Plane X, wire 101
+  85,   1, 102  ! Plane X, wire 102
+  86,   1, 103  ! Plane X, wire 103
+  87,   1, 104  ! Plane X, wire 104
+  88,   1, 105  ! Plane X, wire 105
+  89,   1, 106  ! Plane X, wire 106
+  90,   1, 107  ! Plane X, wire 107
+  91,   1, 108  ! Plane X, wire 108
+  92,   1, 109  ! Plane X, wire 109
+  93,   1, 110  ! Plane X, wire 110
+  94,   1, 111  ! Plane X, wire 111
+  95,   1, 112  ! Plane X, wire 112
+
+SLOT=4
+REFINDEX=0
+ 112,   6,   1  ! Plane X', wire 1
+ 113,   6,   2  ! Plane X', wire 2
+ 114,   6,   3  ! Plane X', wire 3
+ 115,   6,   4  ! Plane X', wire 4
+ 116,   6,   5  ! Plane X', wire 5
+ 117,   6,   6  ! Plane X', wire 6
+ 118,   6,   7  ! Plane X', wire 7
+ 119,   6,   8  ! Plane X', wire 8
+ 120,   6,   9  ! Plane X', wire 9
+ 121,   6,  10  ! Plane X', wire 10
+ 122,   6,  11  ! Plane X', wire 11
+ 123,   6,  12  ! Plane X', wire 12
+ 124,   6,  13  ! Plane X', wire 13
+ 125,   6,  14  ! Plane X', wire 14
+ 126,   6,  15  ! Plane X', wire 15
+ 127,   6,  16  ! Plane X', wire 16
+
+SLOT=5
+REFINDEX=0
+ 112,   6,  17  ! Plane X', wire 17
+ 113,   6,  18  ! Plane X', wire 18
+ 114,   6,  19  ! Plane X', wire 19
+ 115,   6,  20  ! Plane X', wire 20
+ 116,   6,  21  ! Plane X', wire 21
+ 117,   6,  22  ! Plane X', wire 22
+ 118,   6,  23  ! Plane X', wire 23
+ 119,   6,  24  ! Plane X', wire 24
+ 120,   6,  25  ! Plane X', wire 25
+ 121,   6,  26  ! Plane X', wire 26
+ 122,   6,  27  ! Plane X', wire 27
+ 123,   6,  28  ! Plane X', wire 28
+ 124,   6,  29  ! Plane X', wire 29
+ 125,   6,  30  ! Plane X', wire 30
+ 126,   6,  31  ! Plane X', wire 31
+ 127,   6,  32  ! Plane X', wire 32
+
+SLOT=7
+REFINDEX=0
+   0,   6,  33  ! Plane X', wire 33
+   1,   6,  34  ! Plane X', wire 34
+   2,   6,  35  ! Plane X', wire 35
+   3,   6,  36  ! Plane X', wire 36
+   4,   6,  37  ! Plane X', wire 37
+   5,   6,  38  ! Plane X', wire 38
+   6,   6,  39  ! Plane X', wire 39
+   7,   6,  40  ! Plane X', wire 40
+   8,   6,  41  ! Plane X', wire 41
+   9,   6,  42  ! Plane X', wire 42
+  10,   6,  43  ! Plane X', wire 43
+  11,   6,  44  ! Plane X', wire 44
+  12,   6,  45  ! Plane X', wire 45
+  13,   6,  46  ! Plane X', wire 46
+  14,   6,  47  ! Plane X', wire 47
+  15,   6,  48  ! Plane X', wire 48
+  16,   6,  49  ! Plane X', wire 49
+  17,   6,  50  ! Plane X', wire 50
+  18,   6,  51  ! Plane X', wire 51
+  19,   6,  52  ! Plane X', wire 52
+  20,   6,  53  ! Plane X', wire 53
+  21,   6,  54  ! Plane X', wire 54
+  22,   6,  55  ! Plane X', wire 55
+  23,   6,  56  ! Plane X', wire 56
+  24,   6,  57  ! Plane X', wire 57
+  25,   6,  58  ! Plane X', wire 58
+  26,   6,  59  ! Plane X', wire 59
+  27,   6,  60  ! Plane X', wire 60
+  28,   6,  61  ! Plane X', wire 61
+  29,   6,  62  ! Plane X', wire 62
+  30,   6,  63  ! Plane X', wire 63
+  31,   6,  64  ! Plane X', wire 64
+  32,   6,  65  ! Plane X', wire 65
+  33,   6,  66  ! Plane X', wire 66
+  34,   6,  67  ! Plane X', wire 67
+  35,   6,  68  ! Plane X', wire 68
+  36,   6,  69  ! Plane X', wire 69
+  37,   6,  70  ! Plane X', wire 70
+  38,   6,  71  ! Plane X', wire 71
+  39,   6,  72  ! Plane X', wire 72
+  40,   6,  73  ! Plane X', wire 73
+  41,   6,  74  ! Plane X', wire 74
+  42,   6,  75  ! Plane X', wire 75
+  43,   6,  76  ! Plane X', wire 76
+  44,   6,  77  ! Plane X', wire 77
+  45,   6,  78  ! Plane X', wire 78
+  46,   6,  79  ! Plane X', wire 79
+  47,   6,  80  ! Plane X', wire 80
+  48,   6,  81  ! Plane X', wire 81
+  49,   6,  82  ! Plane X', wire 82
+  50,   6,  83  ! Plane X', wire 83
+  51,   6,  84  ! Plane X', wire 84
+  52,   6,  85  ! Plane X', wire 85
+  53,   6,  86  ! Plane X', wire 86
+  54,   6,  87  ! Plane X', wire 87
+  55,   6,  88  ! Plane X', wire 88
+  56,   6,  89  ! Plane X', wire 89
+  57,   6,  90  ! Plane X', wire 90
+  58,   6,  91  ! Plane X', wire 91
+  59,   6,  92  ! Plane X', wire 92
+  60,   6,  93  ! Plane X', wire 93
+  61,   6,  94  ! Plane X', wire 94
+  62,   6,  95  ! Plane X', wire 95
+  63,   6,  96  ! Plane X', wire 96
+  64,   6,  97  ! Plane X', wire 97
+  65,   6,  98  ! Plane X', wire 98
+  66,   6,  99  ! Plane X', wire 99
+  67,   6, 100  ! Plane X', wire 100
+  68,   6, 101  ! Plane X', wire 101
+  69,   6, 102  ! Plane X', wire 102
+  70,   6, 103  ! Plane X', wire 103
+  71,   6, 104  ! Plane X', wire 104
+  72,   6, 105  ! Plane X', wire 105
+  73,   6, 106  ! Plane X', wire 106
+  74,   6, 107  ! Plane X', wire 107
+  75,   6, 108  ! Plane X', wire 108
+  76,   6, 109  ! Plane X', wire 109
+  77,   6, 110  ! Plane X', wire 110
+  78,   6, 111  ! Plane X', wire 111
+  79,   6, 112  ! Plane X', wire 112
+
+SLOT=8
+REFINDEX=0
+  64,   2,   1  ! Plane Y, wire 1
+  65,   2,   2  ! Plane Y, wire 2
+  66,   2,   3  ! Plane Y, wire 3
+  67,   2,   4  ! Plane Y, wire 4
+  68,   2,   5  ! Plane Y, wire 5
+  69,   2,   6  ! Plane Y, wire 6
+  70,   2,   7  ! Plane Y, wire 7
+  71,   2,   8  ! Plane Y, wire 8
+  72,   2,   9  ! Plane Y, wire 9
+  73,   2,  10  ! Plane Y, wire 10
+  74,   2,  11  ! Plane Y, wire 11
+  75,   2,  12  ! Plane Y, wire 12
+  76,   2,  13  ! Plane Y, wire 13
+  80,   2,  14  ! Plane Y, wire 14
+  81,   2,  15  ! Plane Y, wire 15
+  82,   2,  16  ! Plane Y, wire 16
+  83,   2,  17  ! Plane Y, wire 17
+  84,   2,  18  ! Plane Y, wire 18
+  85,   2,  19  ! Plane Y, wire 19
+  86,   2,  20  ! Plane Y, wire 20
+  87,   2,  21  ! Plane Y, wire 21
+  88,   2,  22  ! Plane Y, wire 22
+  89,   2,  23  ! Plane Y, wire 23
+  90,   2,  24  ! Plane Y, wire 24
+  91,   2,  25  ! Plane Y, wire 25
+  92,   2,  26  ! Plane Y, wire 26
+  96,   2,  27  ! Plane Y, wire 27
+  97,   2,  28  ! Plane Y, wire 28
+  98,   2,  29  ! Plane Y, wire 29
+  99,   2,  30  ! Plane Y, wire 30
+ 100,   2,  31  ! Plane Y, wire 31
+ 101,   2,  32  ! Plane Y, wire 32
+ 102,   2,  33  ! Plane Y, wire 33
+ 103,   2,  34  ! Plane Y, wire 34
+ 104,   2,  35  ! Plane Y, wire 35
+ 105,   2,  36  ! Plane Y, wire 36
+ 106,   2,  37  ! Plane Y, wire 37
+ 107,   2,  38  ! Plane Y, wire 38
+ 108,   2,  39  ! Plane Y, wire 39
+ 112,   2,  40  ! Plane Y, wire 40
+ 113,   2,  41  ! Plane Y, wire 41
+ 114,   2,  42  ! Plane Y, wire 42
+ 115,   2,  43  ! Plane Y, wire 43
+ 116,   2,  44  ! Plane Y, wire 44
+ 117,   2,  45  ! Plane Y, wire 45
+ 118,   2,  46  ! Plane Y, wire 46
+ 119,   2,  47  ! Plane Y, wire 47
+ 120,   2,  48  ! Plane Y, wire 48
+ 121,   2,  49  ! Plane Y, wire 49
+ 122,   2,  50  ! Plane Y, wire 50
+ 123,   2,  51  ! Plane Y, wire 51
+ 124,   2,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   2
+   0,   5,   1  ! Plane Y', wire 1
+   1,   5,   2  ! Plane Y', wire 2
+   2,   5,   3  ! Plane Y', wire 3
+   3,   5,   4  ! Plane Y', wire 4
+   4,   5,   5  ! Plane Y', wire 5
+   5,   5,   6  ! Plane Y', wire 6
+   6,   5,   7  ! Plane Y', wire 7
+   7,   5,   8  ! Plane Y', wire 8
+   8,   5,   9  ! Plane Y', wire 9
+   9,   5,  10  ! Plane Y', wire 10
+  10,   5,  11  ! Plane Y', wire 11
+  11,   5,  12  ! Plane Y', wire 12
+  12,   5,  13  ! Plane Y', wire 13
+  16,   5,  14  ! Plane Y', wire 14
+  17,   5,  15  ! Plane Y', wire 15
+  18,   5,  16  ! Plane Y', wire 16
+  19,   5,  17  ! Plane Y', wire 17
+  20,   5,  18  ! Plane Y', wire 18
+  21,   5,  19  ! Plane Y', wire 19
+  22,   5,  20  ! Plane Y', wire 20
+  23,   5,  21  ! Plane Y', wire 21
+  24,   5,  22  ! Plane Y', wire 22
+  25,   5,  23  ! Plane Y', wire 23
+  26,   5,  24  ! Plane Y', wire 24
+  27,   5,  25  ! Plane Y', wire 25
+  28,   5,  26  ! Plane Y', wire 26
+  32,   5,  27  ! Plane Y', wire 27
+  33,   5,  28  ! Plane Y', wire 28
+  34,   5,  29  ! Plane Y', wire 29
+  35,   5,  30  ! Plane Y', wire 30
+  36,   5,  31  ! Plane Y', wire 31
+  37,   5,  32  ! Plane Y', wire 32
+  38,   5,  33  ! Plane Y', wire 33
+  39,   5,  34  ! Plane Y', wire 34
+  40,   5,  35  ! Plane Y', wire 35
+  41,   5,  36  ! Plane Y', wire 36
+  42,   5,  37  ! Plane Y', wire 37
+  43,   5,  38  ! Plane Y', wire 38
+  44,   5,  39  ! Plane Y', wire 39
+  48,   5,  40  ! Plane Y', wire 40
+  49,   5,  41  ! Plane Y', wire 41
+  50,   5,  42  ! Plane Y', wire 42
+  51,   5,  43  ! Plane Y', wire 43
+  52,   5,  44  ! Plane Y', wire 44
+  53,   5,  45  ! Plane Y', wire 45
+  54,   5,  46  ! Plane Y', wire 46
+  55,   5,  47  ! Plane Y', wire 47
+  56,   5,  48  ! Plane Y', wire 48
+  57,   5,  49  ! Plane Y', wire 49
+  58,   5,  50  ! Plane Y', wire 50
+  59,   5,  51  ! Plane Y', wire 51
+  60,   5,  52  ! Plane Y', wire 52
+
+SLOT=16
+REFINDEX=0
+  96,   9,   1  ! Plane U, wire 1
+  97,   9,   2  ! Plane U, wire 2
+  98,   9,   3  ! Plane U, wire 3
+  99,   9,   4  ! Plane U, wire 4
+ 100,   9,   5  ! Plane U, wire 5
+ 101,   9,   6  ! Plane U, wire 6
+ 102,   9,   7  ! Plane U, wire 7
+ 103,   9,   8  ! Plane U, wire 8
+ 104,   9,   9  ! Plane U, wire 9
+ 105,   9,  10  ! Plane U, wire 10
+ 106,   9,  11  ! Plane U, wire 11
+ 107,   9,  12  ! Plane U, wire 12
+ 108,   9,  13  ! Plane U, wire 13
+ 109,   9,  14  ! Plane U, wire 14
+ 110,   7, 113  ! Plane X, wire 113
+ 112,   9,  15  ! Plane U, wire 15
+ 113,   9,  16  ! Plane U, wire 16
+ 114,   9,  17  ! Plane U, wire 17
+ 115,   9,  18  ! Plane U, wire 18
+ 116,   9,  19  ! Plane U, wire 19
+ 117,   9,  20  ! Plane U, wire 20
+ 118,   9,  21  ! Plane U, wire 21
+ 119,   9,  22  ! Plane U, wire 22
+ 120,   9,  23  ! Plane U, wire 23
+ 121,   9,  24  ! Plane U, wire 24
+ 122,   9,  25  ! Plane U, wire 25
+ 123,   9,  26  ! Plane U, wire 26
+ 124,   9,  27  ! Plane U, wire 27
+ 125,   9,  28  ! Plane U, wire 28
+ 126,   9,  29  ! Plane U, wire 29
+
+SLOT=14
+REFINDEX=0
+   0,   9,  30  ! Plane U, wire 30
+   1,   9,  31  ! Plane U, wire 31
+   2,   9,  32  ! Plane U, wire 32
+   3,   9,  33  ! Plane U, wire 33
+   4,   9,  34  ! Plane U, wire 34
+   5,   9,  35  ! Plane U, wire 35
+   6,   9,  36  ! Plane U, wire 36
+   7,   9,  37  ! Plane U, wire 37
+   8,   9,  38  ! Plane U, wire 38
+   9,   9,  39  ! Plane U, wire 39
+  10,   9,  40  ! Plane U, wire 40
+  11,   9,  41  ! Plane U, wire 41
+  12,   9,  42  ! Plane U, wire 42
+  13,   9,  43  ! Plane U, wire 43
+  14,   9,  44  ! Plane U, wire 44
+  15,   9,  45  ! Plane U, wire 45
+  32,   9,  46  ! Plane U, wire 46
+  33,   9,  47  ! Plane U, wire 47
+  34,   9,  48  ! Plane U, wire 48
+  35,   9,  49  ! Plane U, wire 49
+  36,   9,  50  ! Plane U, wire 50
+  37,   9,  51  ! Plane U, wire 51
+  38,   9,  52  ! Plane U, wire 52
+  39,   9,  53  ! Plane U, wire 53
+  40,   9,  54  ! Plane U, wire 54
+  41,   9,  55  ! Plane U, wire 55
+  42,   9,  56  ! Plane U, wire 56
+  43,   9,  57  ! Plane U, wire 57
+  44,   9,  58  ! Plane U, wire 58
+  45,   9,  59  ! Plane U, wire 59
+  46,   9,  60  ! Plane U, wire 60
+  48,   9,  61  ! Plane U, wire 61
+  49,   9,  62  ! Plane U, wire 62
+  50,   9,  63  ! Plane U, wire 63
+  51,   9,  64  ! Plane U, wire 64
+  52,   9,  65  ! Plane U, wire 65
+  53,   9,  66  ! Plane U, wire 66
+  54,   9,  67  ! Plane U, wire 67
+  55,   9,  68  ! Plane U, wire 68
+  56,   9,  69  ! Plane U, wire 69
+  57,   9,  70  ! Plane U, wire 70
+  58,   9,  71  ! Plane U, wire 71
+  59,   9,  72  ! Plane U, wire 72
+  60,   9,  73  ! Plane U, wire 73
+  61,   9,  74  ! Plane U, wire 74
+  62,   9,  75  ! Plane U, wire 75
+  63,   9,  76  ! Plane U, wire 76
+  64,   9,  77  ! Plane U, wire 77
+  65,   9,  78  ! Plane U, wire 78
+  66,   9,  79  ! Plane U, wire 79
+  67,   9,  80  ! Plane U, wire 80
+  68,   9,  81  ! Plane U, wire 81
+  69,   9,  82  ! Plane U, wire 82
+  70,   9,  83  ! Plane U, wire 83
+  71,   9,  84  ! Plane U, wire 84
+  72,   9,  85  ! Plane U, wire 85
+  73,   9,  86  ! Plane U, wire 86
+  74,   9,  87  ! Plane U, wire 87
+  75,   9,  88  ! Plane U, wire 88
+  76,   9,  89  ! Plane U, wire 89
+  77,   9,  90  ! Plane U, wire 90
+  78,   9,  91  ! Plane U, wire 91
+  80,   9,  92  ! Plane U, wire 92
+  81,   9,  93  ! Plane U, wire 93
+  82,   9,  94  ! Plane U, wire 94
+  83,   9,  95  ! Plane U, wire 95
+  84,   9,  96  ! Plane U, wire 96
+  85,   9,  97  ! Plane U, wire 97
+  86,   9,  98  ! Plane U, wire 98
+  87,   9,  99  ! Plane U, wire 99
+  88,   9, 100  ! Plane U, wire 100
+  89,   9, 101  ! Plane U, wire 101
+  90,   9, 102  ! Plane U, wire 102
+  91,   9, 103  ! Plane U, wire 103
+  92,   9, 104  ! Plane U, wire 104
+  93,   9, 105  ! Plane U, wire 105
+  94,   9, 106  ! Plane U, wire 106
+  95,   9, 107  ! Plane U, wire 107
+
+SLOT=16
+REFINDEX=0
+  80,  10,   1  ! Plane V, wire 1
+  81,  10,   2  ! Plane V, wire 2
+  82,  10,   3  ! Plane V, wire 3
+  83,  10,   4  ! Plane V, wire 4
+  84,  10,   5  ! Plane V, wire 5
+  85,  10,   6  ! Plane V, wire 6
+  86,  10,   7  ! Plane V, wire 7
+  87,  10,   8  ! Plane V, wire 8
+  88,  10,   9  ! Plane V, wire 9
+  89,  10,  10  ! Plane V, wire 10
+  90,  10,  11  ! Plane V, wire 11
+  91,  10,  12  ! Plane V, wire 12
+  92,  10,  13  ! Plane V, wire 13
+  93,  10,  14  ! Plane V, wire 14
+  94,  12, 113  ! Plane X', wire 113
+
+SLOT=14
+REFINDEX=0
+  96,  10,  15  ! Plane V, wire 15
+  97,  10,  16  ! Plane V, wire 16
+  98,  10,  17  ! Plane V, wire 17
+  99,  10,  18  ! Plane V, wire 18
+ 100,  10,  19  ! Plane V, wire 19
+ 101,  10,  20  ! Plane V, wire 20
+ 102,  10,  21  ! Plane V, wire 21
+ 103,  10,  22  ! Plane V, wire 22
+ 104,  10,  23  ! Plane V, wire 23
+ 105,  10,  24  ! Plane V, wire 24
+ 106,  10,  25  ! Plane V, wire 25
+ 107,  10,  26  ! Plane V, wire 26
+ 108,  10,  27  ! Plane V, wire 27
+ 109,  10,  28  ! Plane V, wire 28
+ 110,  10,  29  ! Plane V, wire 29
+ 112,  10,  30  ! Plane V, wire 30
+ 113,  10,  31  ! Plane V, wire 31
+ 114,  10,  32  ! Plane V, wire 32
+ 115,  10,  33  ! Plane V, wire 33
+ 116,  10,  34  ! Plane V, wire 34
+ 117,  10,  35  ! Plane V, wire 35
+ 118,  10,  36  ! Plane V, wire 36
+ 119,  10,  37  ! Plane V, wire 37
+ 120,  10,  38  ! Plane V, wire 38
+ 121,  10,  39  ! Plane V, wire 39
+ 122,  10,  40  ! Plane V, wire 40
+ 123,  10,  41  ! Plane V, wire 41
+ 124,  10,  42  ! Plane V, wire 42
+ 125,  10,  43  ! Plane V, wire 43
+ 126,  10,  44  ! Plane V, wire 44
+ 127,  10,  45  ! Plane V, wire 45
+
+SLOT=17
+REFINDEX=0
+ 127,1000,   0,   3
+   0,  10,  46  ! Plane V, wire 46
+   1,  10,  47  ! Plane V, wire 47
+   2,  10,  48  ! Plane V, wire 48
+   3,  10,  49  ! Plane V, wire 49
+   4,  10,  50  ! Plane V, wire 50
+   5,  10,  51  ! Plane V, wire 51
+   6,  10,  52  ! Plane V, wire 52
+   7,  10,  53  ! Plane V, wire 53
+   8,  10,  54  ! Plane V, wire 54
+   9,  10,  55  ! Plane V, wire 55
+  10,  10,  56  ! Plane V, wire 56
+  11,  10,  57  ! Plane V, wire 57
+  12,  10,  58  ! Plane V, wire 58
+  13,  10,  59  ! Plane V, wire 59
+  14,  10,  60  ! Plane V, wire 60
+  16,  10,  61  ! Plane V, wire 61
+  17,  10,  62  ! Plane V, wire 62
+  18,  10,  63  ! Plane V, wire 63
+  19,  10,  64  ! Plane V, wire 64
+  20,  10,  65  ! Plane V, wire 65
+  21,  10,  66  ! Plane V, wire 66
+  22,  10,  67  ! Plane V, wire 67
+  23,  10,  68  ! Plane V, wire 68
+  24,  10,  69  ! Plane V, wire 69
+  25,  10,  70  ! Plane V, wire 70
+  26,  10,  71  ! Plane V, wire 71
+  27,  10,  72  ! Plane V, wire 72
+  28,  10,  73  ! Plane V, wire 73
+  29,  10,  74  ! Plane V, wire 74
+  30,  10,  75  ! Plane V, wire 75
+  31,  10,  76  ! Plane V, wire 76
+  32,  10,  77  ! Plane V, wire 77
+  33,  10,  78  ! Plane V, wire 78
+  34,  10,  79  ! Plane V, wire 79
+  35,  10,  80  ! Plane V, wire 80
+  36,  10,  81  ! Plane V, wire 81
+  37,  10,  82  ! Plane V, wire 82
+  38,  10,  83  ! Plane V, wire 83
+  39,  10,  84  ! Plane V, wire 84
+  40,  10,  85  ! Plane V, wire 85
+  41,  10,  86  ! Plane V, wire 86
+  42,  10,  87  ! Plane V, wire 87
+  43,  10,  88  ! Plane V, wire 88
+  44,  10,  89  ! Plane V, wire 89
+  45,  10,  90  ! Plane V, wire 90
+  46,  10,  91  ! Plane V, wire 91
+  48,  10,  92  ! Plane V, wire 92
+  49,  10,  93  ! Plane V, wire 93
+  50,  10,  94  ! Plane V, wire 94
+  51,  10,  95  ! Plane V, wire 95
+  52,  10,  96  ! Plane V, wire 96
+  53,  10,  97  ! Plane V, wire 97
+  54,  10,  98  ! Plane V, wire 98
+  55,  10,  99  ! Plane V, wire 99
+  56,  10, 100  ! Plane V, wire 100
+  57,  10, 101  ! Plane V, wire 101
+  58,  10, 102  ! Plane V, wire 102
+  59,  10, 103  ! Plane V, wire 103
+  60,  10, 104  ! Plane V, wire 104
+  61,  10, 105  ! Plane V, wire 105
+  62,  10, 106  ! Plane V, wire 106
+  63,  10, 107  ! Plane V, wire 107
+
+SLOT=13
+REFINDEX=0
+   0,   7,   1  ! Plane X, wire 1
+   1,   7,   2  ! Plane X, wire 2
+   2,   7,   3  ! Plane X, wire 3
+   3,   7,   4  ! Plane X, wire 4
+   4,   7,   5  ! Plane X, wire 5
+   5,   7,   6  ! Plane X, wire 6
+   6,   7,   7  ! Plane X, wire 7
+   7,   7,   8  ! Plane X, wire 8
+   8,   7,   9  ! Plane X, wire 9
+   9,   7,  10  ! Plane X, wire 10
+  10,   7,  11  ! Plane X, wire 11
+  11,   7,  12  ! Plane X, wire 12
+  12,   7,  13  ! Plane X, wire 13
+  13,   7,  14  ! Plane X, wire 14
+  14,   7,  15  ! Plane X, wire 15
+  15,   7,  16  ! Plane X, wire 16
+  16,   7,  17  ! Plane X, wire 17
+  17,   7,  18  ! Plane X, wire 18
+  18,   7,  19  ! Plane X, wire 19
+  19,   7,  20  ! Plane X, wire 20
+  20,   7,  21  ! Plane X, wire 21
+  21,   7,  22  ! Plane X, wire 22
+  22,   7,  23  ! Plane X, wire 23
+  23,   7,  24  ! Plane X, wire 24
+  24,   7,  25  ! Plane X, wire 25
+  25,   7,  26  ! Plane X, wire 26
+  26,   7,  27  ! Plane X, wire 27
+  27,   7,  28  ! Plane X, wire 28
+  28,   7,  29  ! Plane X, wire 29
+  29,   7,  30  ! Plane X, wire 30
+  30,   7,  31  ! Plane X, wire 31
+  31,   7,  32  ! Plane X, wire 32
+  32,   7,  33  ! Plane X, wire 33
+  33,   7,  34  ! Plane X, wire 34
+  34,   7,  35  ! Plane X, wire 35
+  35,   7,  36  ! Plane X, wire 36
+  36,   7,  37  ! Plane X, wire 37
+  37,   7,  38  ! Plane X, wire 38
+  38,   7,  39  ! Plane X, wire 39
+  39,   7,  40  ! Plane X, wire 40
+  40,   7,  41  ! Plane X, wire 41
+  41,   7,  42  ! Plane X, wire 42
+  42,   7,  43  ! Plane X, wire 43
+  43,   7,  44  ! Plane X, wire 44
+  44,   7,  45  ! Plane X, wire 45
+  45,   7,  46  ! Plane X, wire 46
+  46,   7,  47  ! Plane X, wire 47
+  47,   7,  48  ! Plane X, wire 48
+  48,   7,  49  ! Plane X, wire 49
+  49,   7,  50  ! Plane X, wire 50
+  50,   7,  51  ! Plane X, wire 51
+  51,   7,  52  ! Plane X, wire 52
+  52,   7,  53  ! Plane X, wire 53
+  53,   7,  54  ! Plane X, wire 54
+  54,   7,  55  ! Plane X, wire 55
+  55,   7,  56  ! Plane X, wire 56
+  56,   7,  57  ! Plane X, wire 57
+  57,   7,  58  ! Plane X, wire 58
+  58,   7,  59  ! Plane X, wire 59
+  59,   7,  60  ! Plane X, wire 60
+  60,   7,  61  ! Plane X, wire 61
+  61,   7,  62  ! Plane X, wire 62
+  62,   7,  63  ! Plane X, wire 63
+  63,   7,  64  ! Plane X, wire 64
+  64,   7,  65  ! Plane X, wire 65
+  65,   7,  66  ! Plane X, wire 66
+  66,   7,  67  ! Plane X, wire 67
+  67,   7,  68  ! Plane X, wire 68
+  68,   7,  69  ! Plane X, wire 69
+  69,   7,  70  ! Plane X, wire 70
+  70,   7,  71  ! Plane X, wire 71
+  71,   7,  72  ! Plane X, wire 72
+  72,   7,  73  ! Plane X, wire 73
+  73,   7,  74  ! Plane X, wire 74
+  74,   7,  75  ! Plane X, wire 75
+  75,   7,  76  ! Plane X, wire 76
+  76,   7,  77  ! Plane X, wire 77
+  77,   7,  78  ! Plane X, wire 78
+  78,   7,  79  ! Plane X, wire 79
+  79,   7,  80  ! Plane X, wire 80
+  80,   7,  81  ! Plane X, wire 81
+  81,   7,  82  ! Plane X, wire 82
+  82,   7,  83  ! Plane X, wire 83
+  83,   7,  84  ! Plane X, wire 84
+  84,   7,  85  ! Plane X, wire 85
+  85,   7,  86  ! Plane X, wire 86
+  86,   7,  87  ! Plane X, wire 87
+  87,   7,  88  ! Plane X, wire 88
+  88,   7,  89  ! Plane X, wire 89
+  89,   7,  90  ! Plane X, wire 90
+  90,   7,  91  ! Plane X, wire 91
+  91,   7,  92  ! Plane X, wire 92
+  92,   7,  93  ! Plane X, wire 93
+  93,   7,  94  ! Plane X, wire 94
+  94,   7,  95  ! Plane X, wire 95
+  95,   7,  96  ! Plane X, wire 96
+  96,   7,  97  ! Plane X, wire 97
+  97,   7,  98  ! Plane X, wire 98
+  98,   7,  99  ! Plane X, wire 99
+  99,   7, 100  ! Plane X, wire 100
+ 100,   7, 101  ! Plane X, wire 101
+ 101,   7, 102  ! Plane X, wire 102
+ 102,   7, 103  ! Plane X, wire 103
+ 103,   7, 104  ! Plane X, wire 104
+ 104,   7, 105  ! Plane X, wire 105
+ 105,   7, 106  ! Plane X, wire 106
+ 106,   7, 107  ! Plane X, wire 107
+ 107,   7, 108  ! Plane X, wire 108
+ 108,   7, 109  ! Plane X, wire 109
+ 109,   7, 110  ! Plane X, wire 110
+ 110,   7, 111  ! Plane X, wire 111
+ 111,   7, 112  ! Plane X, wire 112
+ 112,  12,   1  ! Plane X', wire 1
+ 113,  12,   2  ! Plane X', wire 2
+ 114,  12,   3  ! Plane X', wire 3
+ 115,  12,   4  ! Plane X', wire 4
+ 116,  12,   5  ! Plane X', wire 5
+ 117,  12,   6  ! Plane X', wire 6
+ 118,  12,   7  ! Plane X', wire 7
+ 119,  12,   8  ! Plane X', wire 8
+ 120,  12,   9  ! Plane X', wire 9
+ 121,  12,  10  ! Plane X', wire 10
+ 122,  12,  11  ! Plane X', wire 11
+ 123,  12,  12  ! Plane X', wire 12
+ 124,  12,  13  ! Plane X', wire 13
+ 125,  12,  14  ! Plane X', wire 14
+ 126,  12,  15  ! Plane X', wire 15
+ 127,  12,  16  ! Plane X', wire 16
+
+SLOT=14
+REFINDEX=0
+  16,  12,  17  ! Plane X', wire 17
+  17,  12,  18  ! Plane X', wire 18
+  18,  12,  19  ! Plane X', wire 19
+  19,  12,  20  ! Plane X', wire 20
+  20,  12,  21  ! Plane X', wire 21
+  21,  12,  22  ! Plane X', wire 22
+  22,  12,  23  ! Plane X', wire 23
+  23,  12,  24  ! Plane X', wire 24
+  24,  12,  25  ! Plane X', wire 25
+  25,  12,  26  ! Plane X', wire 26
+  26,  12,  27  ! Plane X', wire 27
+  27,  12,  28  ! Plane X', wire 28
+  28,  12,  29  ! Plane X', wire 29
+  29,  12,  30  ! Plane X', wire 30
+  30,  12,  31  ! Plane X', wire 31
+  31,  12,  32  ! Plane X', wire 32
+
+SLOT=16
+REFINDEX=0
+   0,  12,  33  ! Plane X', wire 33
+   1,  12,  34  ! Plane X', wire 34
+   2,  12,  35  ! Plane X', wire 35
+   3,  12,  36  ! Plane X', wire 36
+   4,  12,  37  ! Plane X', wire 37
+   5,  12,  38  ! Plane X', wire 38
+   6,  12,  39  ! Plane X', wire 39
+   7,  12,  40  ! Plane X', wire 40
+   8,  12,  41  ! Plane X', wire 41
+   9,  12,  42  ! Plane X', wire 42
+  10,  12,  43  ! Plane X', wire 43
+  11,  12,  44  ! Plane X', wire 44
+  12,  12,  45  ! Plane X', wire 45
+  13,  12,  46  ! Plane X', wire 46
+  14,  12,  47  ! Plane X', wire 47
+  15,  12,  48  ! Plane X', wire 48
+  16,  12,  49  ! Plane X', wire 49
+  17,  12,  50  ! Plane X', wire 50
+  18,  12,  51  ! Plane X', wire 51
+  19,  12,  52  ! Plane X', wire 52
+  20,  12,  53  ! Plane X', wire 53
+  21,  12,  54  ! Plane X', wire 54
+  22,  12,  55  ! Plane X', wire 55
+  23,  12,  56  ! Plane X', wire 56
+  24,  12,  57  ! Plane X', wire 57
+  25,  12,  58  ! Plane X', wire 58
+  26,  12,  59  ! Plane X', wire 59
+  27,  12,  60  ! Plane X', wire 60
+  28,  12,  61  ! Plane X', wire 61
+  29,  12,  62  ! Plane X', wire 62
+  30,  12,  63  ! Plane X', wire 63
+  31,  12,  64  ! Plane X', wire 64
+  32,  12,  65  ! Plane X', wire 65
+  33,  12,  66  ! Plane X', wire 66
+  34,  12,  67  ! Plane X', wire 67
+  35,  12,  68  ! Plane X', wire 68
+  36,  12,  69  ! Plane X', wire 69
+  37,  12,  70  ! Plane X', wire 70
+  38,  12,  71  ! Plane X', wire 71
+  39,  12,  72  ! Plane X', wire 72
+  40,  12,  73  ! Plane X', wire 73
+  41,  12,  74  ! Plane X', wire 74
+  42,  12,  75  ! Plane X', wire 75
+  43,  12,  76  ! Plane X', wire 76
+  44,  12,  77  ! Plane X', wire 77
+  45,  12,  78  ! Plane X', wire 78
+  46,  12,  79  ! Plane X', wire 79
+  47,  12,  80  ! Plane X', wire 80
+  48,  12,  81  ! Plane X', wire 81
+  49,  12,  82  ! Plane X', wire 82
+  50,  12,  83  ! Plane X', wire 83
+  51,  12,  84  ! Plane X', wire 84
+  52,  12,  85  ! Plane X', wire 85
+  53,  12,  86  ! Plane X', wire 86
+  54,  12,  87  ! Plane X', wire 87
+  55,  12,  88  ! Plane X', wire 88
+  56,  12,  89  ! Plane X', wire 89
+  57,  12,  90  ! Plane X', wire 90
+  58,  12,  91  ! Plane X', wire 91
+  59,  12,  92  ! Plane X', wire 92
+  60,  12,  93  ! Plane X', wire 93
+  61,  12,  94  ! Plane X', wire 94
+  62,  12,  95  ! Plane X', wire 95
+  63,  12,  96  ! Plane X', wire 96
+  64,  12,  97  ! Plane X', wire 97
+  65,  12,  98  ! Plane X', wire 98
+  66,  12,  99  ! Plane X', wire 99
+  67,  12, 100  ! Plane X', wire 100
+  68,  12, 101  ! Plane X', wire 101
+  69,  12, 102  ! Plane X', wire 102
+  70,  12, 103  ! Plane X', wire 103
+  71,  12, 104  ! Plane X', wire 104
+  72,  12, 105  ! Plane X', wire 105
+  73,  12, 106  ! Plane X', wire 106
+  74,  12, 107  ! Plane X', wire 107
+  75,  12, 108  ! Plane X', wire 108
+  76,  12, 109  ! Plane X', wire 109
+  77,  12, 110  ! Plane X', wire 110
+  78,  12, 111  ! Plane X', wire 111
+  79,  12, 112  ! Plane X', wire 112
+
+SLOT=17
+REFINDEX=0
+  64,   8,   1  ! Plane Y, wire 1
+  65,   8,   2  ! Plane Y, wire 2
+  66,   8,   3  ! Plane Y, wire 3
+  67,   8,   4  ! Plane Y, wire 4
+  68,   8,   5  ! Plane Y, wire 5
+  69,   8,   6  ! Plane Y, wire 6
+  70,   8,   7  ! Plane Y, wire 7
+  71,   8,   8  ! Plane Y, wire 8
+  72,   8,   9  ! Plane Y, wire 9
+  73,   8,  10  ! Plane Y, wire 10
+  74,   8,  11  ! Plane Y, wire 11
+  75,   8,  12  ! Plane Y, wire 12
+  76,   8,  13  ! Plane Y, wire 13
+  80,   8,  14  ! Plane Y, wire 14
+  81,   8,  15  ! Plane Y, wire 15
+  82,   8,  16  ! Plane Y, wire 16
+  83,   8,  17  ! Plane Y, wire 17
+  84,   8,  18  ! Plane Y, wire 18
+  85,   8,  19  ! Plane Y, wire 19
+  86,   8,  20  ! Plane Y, wire 20
+  87,   8,  21  ! Plane Y, wire 21
+  88,   8,  22  ! Plane Y, wire 22
+  89,   8,  23  ! Plane Y, wire 23
+  90,   8,  24  ! Plane Y, wire 24
+  91,   8,  25  ! Plane Y, wire 25
+  92,   8,  26  ! Plane Y, wire 26
+  96,   8,  27  ! Plane Y, wire 27
+  97,   8,  28  ! Plane Y, wire 28
+  98,   8,  29  ! Plane Y, wire 29
+  99,   8,  30  ! Plane Y, wire 30
+ 100,   8,  31  ! Plane Y, wire 31
+ 101,   8,  32  ! Plane Y, wire 32
+ 102,   8,  33  ! Plane Y, wire 33
+ 103,   8,  34  ! Plane Y, wire 34
+ 104,   8,  35  ! Plane Y, wire 35
+ 105,   8,  36  ! Plane Y, wire 36
+ 106,   8,  37  ! Plane Y, wire 37
+ 107,   8,  38  ! Plane Y, wire 38
+ 108,   8,  39  ! Plane Y, wire 39
+ 112,   8,  40  ! Plane Y, wire 40
+ 113,   8,  41  ! Plane Y, wire 41
+ 114,   8,  42  ! Plane Y, wire 42
+ 115,   8,  43  ! Plane Y, wire 43
+ 116,   8,  44  ! Plane Y, wire 44
+ 117,   8,  45  ! Plane Y, wire 45
+ 118,   8,  46  ! Plane Y, wire 46
+ 119,   8,  47  ! Plane Y, wire 47
+ 120,   8,  48  ! Plane Y, wire 48
+ 121,   8,  49  ! Plane Y, wire 49
+ 122,   8,  50  ! Plane Y, wire 50
+ 123,   8,  51  ! Plane Y, wire 51
+ 124,   8,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   1
+  64,  11,   1  ! Plane Y', wire 1
+  65,  11,   2  ! Plane Y', wire 2
+  66,  11,   3  ! Plane Y', wire 3
+  67,  11,   4  ! Plane Y', wire 4
+  68,  11,   5  ! Plane Y', wire 5
+  69,  11,   6  ! Plane Y', wire 6
+  70,  11,   7  ! Plane Y', wire 7
+  71,  11,   8  ! Plane Y', wire 8
+  72,  11,   9  ! Plane Y', wire 9
+  73,  11,  10  ! Plane Y', wire 10
+  74,  11,  11  ! Plane Y', wire 11
+  75,  11,  12  ! Plane Y', wire 12
+  76,  11,  13  ! Plane Y', wire 13
+  80,  11,  14  ! Plane Y', wire 14
+  81,  11,  15  ! Plane Y', wire 15
+  82,  11,  16  ! Plane Y', wire 16
+  83,  11,  17  ! Plane Y', wire 17
+  84,  11,  18  ! Plane Y', wire 18
+  85,  11,  19  ! Plane Y', wire 19
+  86,  11,  20  ! Plane Y', wire 20
+  87,  11,  21  ! Plane Y', wire 21
+  88,  11,  22  ! Plane Y', wire 22
+  89,  11,  23  ! Plane Y', wire 23
+  90,  11,  24  ! Plane Y', wire 24
+  91,  11,  25  ! Plane Y', wire 25
+  92,  11,  26  ! Plane Y', wire 26
+  96,  11,  27  ! Plane Y', wire 27
+  97,  11,  28  ! Plane Y', wire 28
+  98,  11,  29  ! Plane Y', wire 29
+  99,  11,  30  ! Plane Y', wire 30
+ 100,  11,  31  ! Plane Y', wire 31
+ 101,  11,  32  ! Plane Y', wire 32
+ 102,  11,  33  ! Plane Y', wire 33
+ 103,  11,  34  ! Plane Y', wire 34
+ 104,  11,  35  ! Plane Y', wire 35
+ 105,  11,  36  ! Plane Y', wire 36
+ 106,  11,  37  ! Plane Y', wire 37
+ 107,  11,  38  ! Plane Y', wire 38
+ 108,  11,  39  ! Plane Y', wire 39
+ 112,  11,  40  ! Plane Y', wire 40
+ 113,  11,  41  ! Plane Y', wire 41
+ 114,  11,  42  ! Plane Y', wire 42
+ 115,  11,  43  ! Plane Y', wire 43
+ 116,  11,  44  ! Plane Y', wire 44
+ 117,  11,  45  ! Plane Y', wire 45
+ 118,  11,  46  ! Plane Y', wire 46
+ 119,  11,  47  ! Plane Y', wire 47
+ 120,  11,  48  ! Plane Y', wire 48
+ 121,  11,  49  ! Plane Y', wire 49
+ 122,  11,  50  ! Plane Y', wire 50
+ 123,  11,  51  ! Plane Y', wire 51
+ 124,  11,  52  ! Plane Y', wire 52
+
+
+DETECTOR=13
+
+ROC=1
+
+SLOT=8
+   0,   1,   1,   0  ! h1x01A+
+   1,   1,   2,   0  ! h1x02A+
+   2,   1,   3,   0  ! h1x03A+
+   3,   1,   4,   0  ! h1x04A+
+   4,   1,   5,   0  ! h1x05A+
+   5,   1,   6,   0  ! h1x06A+
+   6,   1,   7,   0  ! h1x07A+
+   7,   1,   8,   0  ! h1x08A+
+   8,   1,   9,   0  ! h1x09A+
+   9,   1,  10,   0  ! h1x10A+
+  10,   1,  11,   0  ! h1x11A+
+  11,   1,  12,   0  ! h1x12A+
+  12,   1,  13,   0  ! h1x13A+
+  13,   1,  14,   0  ! h1x14A+
+  14,   1,  15,   0  ! h1x15A+
+  15,   1,  16,   0  ! h1x16A+
+
+SLOT=9
+   0,   1,   1,   1  ! h1x01A-
+   1,   1,   2,   1  ! h1x02A-
+   2,   1,   3,   1  ! h1x03A-
+   3,   1,   4,   1  ! h1x04A-
+   4,   1,   5,   1  ! h1x05A-
+   5,   1,   6,   1  ! h1x06A-
+   6,   1,   7,   1  ! h1x07A-
+   7,   1,   8,   1  ! h1x08A-
+   8,   1,   9,   1  ! h1x09A-
+   9,   1,  10,   1  ! h1x10A-
+  10,   1,  11,   1  ! h1x11A-
+  11,   1,  12,   1  ! h1x12A-
+  12,   1,  13,   1  ! h1x13A-
+  13,   1,  14,   1  ! h1x14A-
+  14,   1,  15,   1  ! h1x15A-
+  15,   1,  16,   1  ! h1x16A-
+
+SLOT=10
+   0,   2,   1,   0  ! h1y01A+
+   1,   2,   2,   0  ! h1y02A+
+   2,   2,   3,   0  ! h1y03A+
+   3,   2,   4,   0  ! h1y04A+
+   4,   2,   5,   0  ! h1y05A+
+   5,   2,   6,   0  ! h1y06A+
+   6,   2,   7,   0  ! h1y07A+
+   7,   2,   8,   0  ! h1y08A+
+   8,   2,   9,   0  ! h1y09A+
+   9,   2,  10,   0  ! h1y10A+
+  10,   2,   1,   1  ! h1y01A-
+  11,   2,   2,   1  ! h1y02A-
+  12,   2,   3,   1  ! h1y03A-
+  13,   2,   4,   1  ! h1y04A-
+  14,   2,   5,   1  ! h1y05A-
+  15,   2,   6,   1  ! h1y06A-
+
+SLOT=13
+   0,   2,   7,   1  ! h1y07A-
+   1,   2,   8,   1  ! h1y08A-
+   2,   2,   9,   1  ! h1y09A-
+   3,   2,  10,   1  ! h1y10A-
+   4,   3,   1,   0  ! h2x01A+
+   5,   3,   2,   0  ! h2x02A+
+   6,   3,   3,   0  ! h2x03A+
+   7,   3,   4,   0  ! h2x04A+
+   8,   3,   5,   0  ! h2x05A+
+   9,   3,   6,   0  ! h2x06A+
+  10,   3,   7,   0  ! h2x07A+
+  11,   3,   8,   0  ! h2x08A+
+  12,   3,   9,   0  ! h2x09A+
+  13,   3,  10,   0  ! h2x10A+
+  14,   3,  11,   0  ! h2x11A+
+  15,   3,  12,   0  ! h2x12A+
+
+SLOT=14
+   0,   3,  13,   0  ! h2x13A+
+   1,   3,  14,   0  ! h2x14A+
+   2,   3,  15,   0  ! h2x15A+
+   3,   3,  16,   0  ! h2x16A+
+   4,   3,   1,   1  ! h2x01A-
+   5,   3,   2,   1  ! h2x02A-
+   6,   3,   3,   1  ! h2x03A-
+   7,   3,   4,   1  ! h2x04A-
+   8,   3,   5,   1  ! h2x05A-
+   9,   3,   6,   1  ! h2x06A-
+  10,   3,   7,   1  ! h2x07A-
+  11,   3,   8,   1  ! h2x08A-
+  12,   3,   9,   1  ! h2x09A-
+  13,   3,  10,   1  ! h2x10A-
+  14,   3,  11,   1  ! h2x11A-
+  15,   3,  12,   1  ! h2x12A-
+
+SLOT=15
+   0,   3,  13,   1  ! h2x13A-
+   1,   3,  14,   1  ! h2x14A-
+   2,   3,  15,   1  ! h2x15A-
+   3,   3,  16,   1  ! h2x16A-
+   4,   4,   1,   0  ! h2y01A+
+   5,   4,   2,   0  ! h2y02A+
+   6,   4,   3,   0  ! h2y03A+
+   7,   4,   4,   0  ! h2y04A+
+   8,   4,   5,   0  ! h2y05A+
+   9,   4,   6,   0  ! h2y06A+
+  10,   4,   7,   0  ! h2y07A+
+  11,   4,   8,   0  ! h2y08A+
+  12,   4,   9,   0  ! h2y09A+
+  13,   4,  10,   0  ! h2y10A+
+  14,   4,   1,   1  ! h2y01A-
+  15,   4,   2,   1  ! h2y02A-
+
+SLOT=16
+   0,   4,   3,   1  ! h2y03A-
+   1,   4,   4,   1  ! h2y04A-
+   2,   4,   5,   1  ! h2y05A-
+   3,   4,   6,   1  ! h2y06A-
+   4,   4,   7,   1  ! h2y07A-
+   5,   4,   8,   1  ! h2y08A-
+   6,   4,   9,   1  ! h2y09A-
+   7,   4,  10,   1  ! h2y10A-
+
+SLOT=20
+REFINDEX=0
+ 127,1000,   0,   0
+   0,   1,   1,   2  ! h1x01T+
+   1,   1,   3,   2  ! h1x03T+
+   2,   1,   5,   2  ! h1x05T+
+   3,   1,   7,   2  ! h1x07T+
+   4,   1,   2,   2  ! h1x02T+
+   5,   1,   4,   2  ! h1x04T+
+   6,   1,   6,   2  ! h1x06T+
+   7,   1,   8,   2  ! h1x08T+
+   8,   1,   9,   2  ! h1x09T+
+   9,   1,  11,   2  ! h1x11T+
+  10,   1,  13,   2  ! h1x13T+
+  11,   1,  15,   2  ! h1x15T+
+  12,   1,  10,   2  ! h1x10T+
+  13,   1,  12,   2  ! h1x12T+
+  14,   1,  14,   2  ! h1x14T+
+  15,   1,  16,   2  ! h1x16T+
+  16,   1,   1,   3  ! h1x01T-
+  17,   1,   3,   3  ! h1x03T-
+  18,   1,   5,   3  ! h1x05T-
+  19,   1,   7,   3  ! h1x07T-
+  20,   1,   2,   3  ! h1x02T-
+  21,   1,   4,   3  ! h1x04T-
+  22,   1,   6,   3  ! h1x06T-
+  23,   1,   8,   3  ! h1x08T-
+  24,   1,   9,   3  ! h1x09T-
+  25,   1,  11,   3  ! h1x11T-
+  26,   1,  13,   3  ! h1x13T-
+  27,   1,  15,   3  ! h1x15T-
+  28,   1,  10,   3  ! h1x10T-
+  29,   1,  12,   3  ! h1x12T-
+  30,   1,  14,   3  ! h1x14T-
+  31,   1,  16,   3  ! h1x16T-
+  32,   2,   1,   2  ! h1y01T+
+  33,   2,   3,   2  ! h1y03T+
+  34,   2,   5,   2  ! h1y05T+
+  35,   2,   7,   2  ! h1y07T+
+  36,   2,   2,   2  ! h1y02T+
+  37,   2,   4,   2  ! h1y04T+
+  38,   2,   6,   2  ! h1y06T+
+  39,   2,   8,   2  ! h1y08T+
+  40,   2,   9,   2  ! h1y09T+
+  44,   2,  10,   2  ! h1y10T+
+  48,   2,   1,   3  ! h1y01T-
+  49,   2,   3,   3  ! h1y03T-
+  50,   2,   5,   3  ! h1y05T-
+  51,   2,   7,   3  ! h1y07T-
+  52,   2,   2,   3  ! h1y02T-
+  53,   2,   4,   3  ! h1y04T-
+  54,   2,   6,   3  ! h1y06T-
+  55,   2,   8,   3  ! h1y08T-
+  56,   2,   9,   3  ! h1y09T-
+  60,   2,  10,   3  ! h1y10T-
+  64,   3,   1,   2  ! h2x01T+
+  65,   3,   3,   2  ! h2x03T+
+  66,   3,   5,   2  ! h2x05T+
+  67,   3,   7,   2  ! h2x07T+
+  68,   3,   2,   2  ! h2x02T+
+  69,   3,   4,   2  ! h2x04T+
+  70,   3,   6,   2  ! h2x06T+
+  71,   3,   8,   2  ! h2x08T+
+  72,   3,   9,   2  ! h2x09T+
+  73,   3,  11,   2  ! h2x11T+
+  74,   3,  13,   2  ! h2x13T+
+  75,   3,  15,   2  ! h2x15T+
+  76,   3,  10,   2  ! h2x10T+
+  77,   3,  12,   2  ! h2x12T+
+  78,   3,  14,   2  ! h2x14T+
+  79,   3,  16,   2  ! h2x16T+
+  80,   3,   1,   3  ! h2x01T-
+  81,   3,   3,   3  ! h2x03T-
+  82,   3,   5,   3  ! h2x05T-
+  83,   3,   7,   3  ! h2x07T-
+  84,   3,   2,   3  ! h2x02T-
+  85,   3,   4,   3  ! h2x04T-
+  86,   3,   6,   3  ! h2x06T-
+  87,   3,   8,   3  ! h2x08T-
+  88,   3,   9,   3  ! h2x09T-
+  89,   3,  11,   3  ! h2x11T-
+  90,   3,  13,   3  ! h2x13T-
+  91,   3,  15,   3  ! h2x15T-
+  92,   3,  10,   3  ! h2x10T-
+  93,   3,  12,   3  ! h2x12T-
+  94,   3,  14,   3  ! h2x14T-
+  95,   3,  16,   3  ! h2x16T-
+  96,   4,   1,   2  ! h2y01T+
+  97,   4,   3,   2  ! h2y03T+
+  98,   4,   5,   2  ! h2y05T+
+  99,   4,   7,   2  ! h2y07T+
+ 100,   4,   2,   2  ! h2y02T+
+ 101,   4,   4,   2  ! h2y04T+
+ 102,   4,   6,   2  ! h2y06T+
+ 103,   4,   8,   2  ! h2y08T+
+ 104,   4,   9,   2  ! h2y09T+
+ 108,   4,  10,   2  ! h2y10T+
+ 112,   4,   1,   3  ! h2y01T-
+ 113,   4,   3,   3  ! h2y03T-
+ 114,   4,   5,   3  ! h2y05T-
+ 115,   4,   7,   3  ! h2y07T-
+ 116,   4,   2,   3  ! h2y02T-
+ 117,   4,   4,   3  ! h2y04T-
+ 118,   4,   6,   3  ! h2y06T-
+ 119,   4,   8,   3  ! h2y08T-
+ 120,   4,   9,   3  ! h2y09T-
+ 124,   4,  10,   3  ! h2y10T-
+DETECTOR=14
+
+ROC=1
+
+SLOT=7
+  14,   1,   1,   0  ! hCER01
+  15,   1,   2,   0  ! hCER02
+
+
+DETECTOR=15
+
+ROC=1
+
+SLOT=3
+   0,   1,   1,   0  ! hA01+
+   1,   1,   2,   0  ! hA02+
+   2,   1,   3,   0  ! hA03+
+   3,   1,   4,   0  ! hA04+
+   4,   1,   5,   0  ! hA05+
+   5,   1,   6,   0  ! hA06+
+   6,   1,   7,   0  ! hA07+
+   7,   1,   8,   0  ! hA08+
+   8,   1,   9,   0  ! hA09+
+   9,   1,  10,   0  ! hA10+
+  10,   1,  11,   0  ! hA11+
+  11,   1,  12,   0  ! hA12+
+  12,   1,  13,   0  ! hA13+
+  13,   1,   1,   1  ! hA01-
+  14,   1,   2,   1  ! hA02-
+  15,   1,   3,   1  ! hA03-
+
+SLOT=4
+   0,   1,   4,   1  ! hA04-
+   1,   1,   5,   1  ! hA05-
+   2,   1,   6,   1  ! hA06-
+   3,   1,   7,   1  ! hA07-
+   4,   1,   8,   1  ! hA08-
+   5,   1,   9,   1  ! hA09-
+   6,   1,  10,   1  ! hA10-
+   7,   1,  11,   1  ! hA11-
+   8,   1,  12,   1  ! hA12-
+   9,   1,  13,   1  ! hA13-
+  10,   2,   1,   0  ! hB01+
+  11,   2,   2,   0  ! hB02+
+  12,   2,   3,   0  ! hB03+
+  13,   2,   4,   0  ! hB04+
+  14,   2,   5,   0  ! hB05+
+  15,   2,   6,   0  ! hB06+
+
+SLOT=5
+   0,   2,   7,   0  ! hB07+
+   1,   2,   8,   0  ! hB08+
+   2,   2,   9,   0  ! hB09+
+   3,   2,  10,   0  ! hB10+
+   4,   2,  11,   0  ! hB11+
+   5,   2,  12,   0  ! hB12+
+   6,   2,  13,   0  ! hB13+
+   7,   2,   1,   1  ! hB01-
+   8,   2,   2,   1  ! hB02-
+   9,   2,   3,   1  ! hB03-
+  10,   2,   4,   1  ! hB04-
+  11,   2,   5,   1  ! hB05-
+  12,   2,   6,   1  ! hB06-
+  13,   2,   7,   1  ! hB07-
+  14,   2,   8,   1  ! hB08-
+  15,   2,   9,   1  ! hB09-
+
+SLOT=6
+   0,   2,  10,   1  ! hB10-
+   1,   2,  11,   1  ! hB11-
+   2,   2,  12,   1  ! hB12-
+   3,   2,  13,   1  ! hB13-
+   4,   3,   1,   0  ! hC01+
+   5,   3,   2,   0  ! hC02+
+   6,   3,   3,   0  ! hC03+
+   7,   3,   4,   0  ! hC04+
+   8,   3,   5,   0  ! hC05+
+   9,   3,   6,   0  ! hC06+
+  10,   3,   7,   0  ! hC07+
+  11,   3,   8,   0  ! hC08+
+  12,   3,   9,   0  ! hC09+
+  13,   3,  10,   0  ! hC10+
+  14,   3,  11,   0  ! hC11+
+  15,   3,  12,   0  ! hC12+
+
+SLOT=7
+   0,   3,  13,   0  ! hC13+
+   1,   4,   1,   0  ! hD01+
+   2,   4,   2,   0  ! hD02+
+   3,   4,   3,   0  ! hD03+
+   4,   4,   4,   0  ! hD04+
+   5,   4,   5,   0  ! hD05+
+   6,   4,   6,   0  ! hD06+
+   7,   4,   7,   0  ! hD07+
+   8,   4,   8,   0  ! hD08+
+   9,   4,   9,   0  ! hD09+
+  10,   4,  10,   0  ! hD10+
+  11,   4,  11,   0  ! hD11+
+  12,   4,  12,   0  ! hD12+
+  13,   4,  13,   0  ! hD13+
diff --git a/MAPS/HMS/DETEC/hms_stack_spring17_run_00001_00243.map b/MAPS/HMS/DETEC/hms_stack_spring17_run_00001_00243.map
new file mode 100644
index 0000000000000000000000000000000000000000..4f7ef43008e15a205c8ebe7eef965b3b403c7b3e
--- /dev/null
+++ b/MAPS/HMS/DETEC/hms_stack_spring17_run_00001_00243.map
@@ -0,0 +1,1544 @@
+! THMS_ID=10       ::  ADC,TDC
+! HDC_ID=11        ::  TDC
+! HSCIN_ID=13      ::  ADC+,ADC-,TDC+,TDC-
+! HCER_ID=14       ::  (TDC),ADC
+! HCAL_ID=15       ::  ADC
+
+
+DETECTOR=10
+
+ROC=11
+
+SLOT=17
+   8,   1,   1,   0  ! hASUM
+   9,   1,   2,   0  ! hBSUM
+  10,   1,   3,   0  ! hCSUM
+  11,   1,   4,   0  ! hDSUM
+  12,   1,   5,   0  ! hPSHWR
+  13,   1,   6,   0  ! hSHWR
+  14,   1,   7,   0  ! hAERSUM
+  15,   1,   8,   0  ! hCERSUM
+
+SLOT=2
+   0,   2,   1,   1  ! h1X
+   1,   2,   2,   1  ! h1Y
+   2,   2,   3,   1  ! h2X
+   3,   2,   4,   1  ! h2Y
+   4,   2,   5,   1  ! h1T
+   5,   2,   6,   1  ! h2T
+   6,   2,   7,   1  ! hT1
+   7,   2,   8,   1  ! hASUM
+   8,   2,   9,   1  ! hBSUM
+   9,   2,  10,   1  ! hCSUM
+  10,   2,  11,   1  ! hDSUM
+  11,   2,  12,   1  ! hPSHWRLO
+  12,   2,  13,   1  ! hPSHWRHI
+  13,   2,  14,   1  ! hSHWR
+  14,   2,  15,   1  ! hAERSUM
+  15,   2,  16,   1  ! hCERSUM
+
+SLOT=20
+ 127,   2,  17,   1  ! hT2
+
+ROC=3
+
+SLOT=5
+ 111,   2,  18,   1  ! hDCREF1
+
+SLOT=8
+ 127,   2,  19,   1  ! hDCREF2
+
+SLOT=10
+ 127,   2,  20,   1  ! hDCREF3
+
+SLOT=17
+ 127,   2,  21,   1  ! hDCREF4
+
+
+DETECTOR=11  ! HMS chambers
+
+ROC=3
+
+SLOT=5
+REFINDEX=0
+ 111,1000,   0,   0
+  96,   3,   1  ! Plane U, wire 1
+  97,   3,   2  ! Plane U, wire 2
+  98,   3,   3  ! Plane U, wire 3
+  99,   3,   4  ! Plane U, wire 4
+ 100,   3,   5  ! Plane U, wire 5
+ 101,   3,   6  ! Plane U, wire 6
+ 102,   3,   7  ! Plane U, wire 7
+ 103,   3,   8  ! Plane U, wire 8
+ 104,   3,   9  ! Plane U, wire 9
+ 105,   3,  10  ! Plane U, wire 10
+ 106,   3,  11  ! Plane U, wire 11
+ 107,   3,  12  ! Plane U, wire 12
+ 108,   3,  13  ! Plane U, wire 13
+ 109,   3,  14  ! Plane U, wire 14
+ 110,   1, 113  ! Plane X, wire 113
+  80,   3,  15  ! Plane U, wire 15
+  81,   3,  16  ! Plane U, wire 16
+  82,   3,  17  ! Plane U, wire 17
+  83,   3,  18  ! Plane U, wire 18
+  84,   3,  19  ! Plane U, wire 19
+  85,   3,  20  ! Plane U, wire 20
+  86,   3,  21  ! Plane U, wire 21
+  87,   3,  22  ! Plane U, wire 22
+  88,   3,  23  ! Plane U, wire 23
+  89,   3,  24  ! Plane U, wire 24
+  90,   3,  25  ! Plane U, wire 25
+  91,   3,  26  ! Plane U, wire 26
+  92,   3,  27  ! Plane U, wire 27
+  93,   3,  28  ! Plane U, wire 28
+  94,   3,  29  ! Plane U, wire 29
+  64,   3,  30  ! Plane U, wire 30
+  65,   3,  31  ! Plane U, wire 31
+  66,   3,  32  ! Plane U, wire 32
+  67,   3,  33  ! Plane U, wire 33
+  68,   3,  34  ! Plane U, wire 34
+  69,   3,  35  ! Plane U, wire 35
+  70,   3,  36  ! Plane U, wire 36
+  71,   3,  37  ! Plane U, wire 37
+  72,   3,  38  ! Plane U, wire 38
+  73,   3,  39  ! Plane U, wire 39
+  74,   3,  40  ! Plane U, wire 40
+  75,   3,  41  ! Plane U, wire 41
+  76,   3,  42  ! Plane U, wire 42
+  77,   3,  43  ! Plane U, wire 43
+  78,   3,  44  ! Plane U, wire 44
+  79,   3,  45  ! Plane U, wire 45
+  48,   3,  46  ! Plane U, wire 46
+  49,   3,  47  ! Plane U, wire 47
+  50,   3,  48  ! Plane U, wire 48
+  51,   3,  49  ! Plane U, wire 49
+  52,   3,  50  ! Plane U, wire 50
+  53,   3,  51  ! Plane U, wire 51
+  54,   3,  52  ! Plane U, wire 52
+  55,   3,  53  ! Plane U, wire 53
+  56,   3,  54  ! Plane U, wire 54
+  57,   3,  55  ! Plane U, wire 55
+  58,   3,  56  ! Plane U, wire 56
+  59,   3,  57  ! Plane U, wire 57
+  60,   3,  58  ! Plane U, wire 58
+  61,   3,  59  ! Plane U, wire 59
+  62,   3,  60  ! Plane U, wire 60
+  32,   3,  61  ! Plane U, wire 61
+  33,   3,  62  ! Plane U, wire 62
+  34,   3,  63  ! Plane U, wire 63
+  35,   3,  64  ! Plane U, wire 64
+  36,   3,  65  ! Plane U, wire 65
+  37,   3,  66  ! Plane U, wire 66
+  38,   3,  67  ! Plane U, wire 67
+  39,   3,  68  ! Plane U, wire 68
+  40,   3,  69  ! Plane U, wire 69
+  41,   3,  70  ! Plane U, wire 70
+  42,   3,  71  ! Plane U, wire 71
+  43,   3,  72  ! Plane U, wire 72
+  44,   3,  73  ! Plane U, wire 73
+  45,   3,  74  ! Plane U, wire 74
+  46,   3,  75  ! Plane U, wire 75
+  47,   3,  76  ! Plane U, wire 76
+  16,   3,  77  ! Plane U, wire 77
+  17,   3,  78  ! Plane U, wire 78
+  18,   3,  79  ! Plane U, wire 79
+  19,   3,  80  ! Plane U, wire 80
+  20,   3,  81  ! Plane U, wire 81
+  21,   3,  82  ! Plane U, wire 82
+  22,   3,  83  ! Plane U, wire 83
+  23,   3,  84  ! Plane U, wire 84
+  24,   3,  85  ! Plane U, wire 85
+  25,   3,  86  ! Plane U, wire 86
+  26,   3,  87  ! Plane U, wire 87
+  27,   3,  88  ! Plane U, wire 88
+  28,   3,  89  ! Plane U, wire 89
+  29,   3,  90  ! Plane U, wire 90
+  30,   3,  91  ! Plane U, wire 91
+   0,   3,  92  ! Plane U, wire 92
+   1,   3,  93  ! Plane U, wire 93
+   2,   3,  94  ! Plane U, wire 94
+   3,   3,  95  ! Plane U, wire 95
+   4,   3,  96  ! Plane U, wire 96
+   5,   3,  97  ! Plane U, wire 97
+   6,   3,  98  ! Plane U, wire 98
+   7,   3,  99  ! Plane U, wire 99
+   8,   3, 100  ! Plane U, wire 100
+   9,   3, 101  ! Plane U, wire 101
+  10,   3, 102  ! Plane U, wire 102
+  11,   3, 103  ! Plane U, wire 103
+  12,   3, 104  ! Plane U, wire 104
+  13,   3, 105  ! Plane U, wire 105
+  14,   3, 106  ! Plane U, wire 106
+  15,   3, 107  ! Plane U, wire 107
+
+SLOT=7
+REFINDEX=0
+  96,   4,   1  ! Plane V, wire 1
+  97,   4,   2  ! Plane V, wire 2
+  98,   4,   3  ! Plane V, wire 3
+  99,   4,   4  ! Plane V, wire 4
+ 100,   4,   5  ! Plane V, wire 5
+ 101,   4,   6  ! Plane V, wire 6
+ 102,   4,   7  ! Plane V, wire 7
+ 103,   4,   8  ! Plane V, wire 8
+ 104,   4,   9  ! Plane V, wire 9
+ 105,   4,  10  ! Plane V, wire 10
+ 106,   4,  11  ! Plane V, wire 11
+ 107,   4,  12  ! Plane V, wire 12
+ 108,   4,  13  ! Plane V, wire 13
+ 109,   4,  14  ! Plane V, wire 14
+ 110,   6, 113  ! Plane X', wire 113
+ 112,   4,  15  ! Plane V, wire 15
+ 113,   4,  16  ! Plane V, wire 16
+ 114,   4,  17  ! Plane V, wire 17
+ 115,   4,  18  ! Plane V, wire 18
+ 116,   4,  19  ! Plane V, wire 19
+ 117,   4,  20  ! Plane V, wire 20
+ 118,   4,  21  ! Plane V, wire 21
+ 119,   4,  22  ! Plane V, wire 22
+ 120,   4,  23  ! Plane V, wire 23
+ 121,   4,  24  ! Plane V, wire 24
+ 122,   4,  25  ! Plane V, wire 25
+ 123,   4,  26  ! Plane V, wire 26
+ 124,   4,  27  ! Plane V, wire 27
+ 125,   4,  28  ! Plane V, wire 28
+ 126,   4,  29  ! Plane V, wire 29
+
+SLOT=8
+REFINDEX=0
+ 127,1000,   0,   1
+   0,   4,  30  ! Plane V, wire 30
+   1,   4,  31  ! Plane V, wire 31
+   2,   4,  32  ! Plane V, wire 32
+   3,   4,  33  ! Plane V, wire 33
+   4,   4,  34  ! Plane V, wire 34
+   5,   4,  35  ! Plane V, wire 35
+   6,   4,  36  ! Plane V, wire 36
+   7,   4,  37  ! Plane V, wire 37
+   8,   4,  38  ! Plane V, wire 38
+   9,   4,  39  ! Plane V, wire 39
+  10,   4,  40  ! Plane V, wire 40
+  11,   4,  41  ! Plane V, wire 41
+  12,   4,  42  ! Plane V, wire 42
+  13,   4,  43  ! Plane V, wire 43
+  14,   4,  44  ! Plane V, wire 44
+  15,   4,  45  ! Plane V, wire 45
+  16,   4,  46  ! Plane V, wire 46
+  17,   4,  47  ! Plane V, wire 47
+  18,   4,  48  ! Plane V, wire 48
+  19,   4,  49  ! Plane V, wire 49
+  20,   4,  50  ! Plane V, wire 50
+  21,   4,  51  ! Plane V, wire 51
+  22,   4,  52  ! Plane V, wire 52
+  23,   4,  53  ! Plane V, wire 53
+  24,   4,  54  ! Plane V, wire 54
+  25,   4,  55  ! Plane V, wire 55
+  26,   4,  56  ! Plane V, wire 56
+  27,   4,  57  ! Plane V, wire 57
+  28,   4,  58  ! Plane V, wire 58
+  29,   4,  59  ! Plane V, wire 59
+  30,   4,  60  ! Plane V, wire 60
+  32,   4,  61  ! Plane V, wire 61
+  33,   4,  62  ! Plane V, wire 62
+  34,   4,  63  ! Plane V, wire 63
+  35,   4,  64  ! Plane V, wire 64
+  36,   4,  65  ! Plane V, wire 65
+  37,   4,  66  ! Plane V, wire 66
+  38,   4,  67  ! Plane V, wire 67
+  39,   4,  68  ! Plane V, wire 68
+  40,   4,  69  ! Plane V, wire 69
+  41,   4,  70  ! Plane V, wire 70
+  42,   4,  71  ! Plane V, wire 71
+  43,   4,  72  ! Plane V, wire 72
+  44,   4,  73  ! Plane V, wire 73
+  45,   4,  74  ! Plane V, wire 74
+  46,   4,  75  ! Plane V, wire 75
+  47,   4,  76  ! Plane V, wire 76
+  48,   4,  77  ! Plane V, wire 77
+  49,   4,  78  ! Plane V, wire 78
+  50,   4,  79  ! Plane V, wire 79
+  51,   4,  80  ! Plane V, wire 80
+  52,   4,  81  ! Plane V, wire 81
+  53,   4,  82  ! Plane V, wire 82
+  54,   4,  83  ! Plane V, wire 83
+  55,   4,  84  ! Plane V, wire 84
+  56,   4,  85  ! Plane V, wire 85
+  57,   4,  86  ! Plane V, wire 86
+  58,   4,  87  ! Plane V, wire 87
+  59,   4,  88  ! Plane V, wire 88
+  60,   4,  89  ! Plane V, wire 89
+  61,   4,  90  ! Plane V, wire 90
+  62,   4,  91  ! Plane V, wire 91
+
+SLOT=4
+REFINDEX=0
+  96,   4,  92  ! Plane V, wire 92
+  97,   4,  93  ! Plane V, wire 93
+  98,   4,  94  ! Plane V, wire 94
+  99,   4,  95  ! Plane V, wire 95
+ 100,   4,  96  ! Plane V, wire 96
+ 101,   4,  97  ! Plane V, wire 97
+ 102,   4,  98  ! Plane V, wire 98
+ 103,   4,  99  ! Plane V, wire 99
+ 104,   4, 100  ! Plane V, wire 100
+ 105,   4, 101  ! Plane V, wire 101
+ 106,   4, 102  ! Plane V, wire 102
+ 107,   4, 103  ! Plane V, wire 103
+ 108,   4, 104  ! Plane V, wire 104
+ 109,   4, 105  ! Plane V, wire 105
+ 110,   4, 106  ! Plane V, wire 106
+ 111,   4, 107  ! Plane V, wire 107
+  80,   1,   1  ! Plane X, wire 1
+  81,   1,   2  ! Plane X, wire 2
+  82,   1,   3  ! Plane X, wire 3
+  83,   1,   4  ! Plane X, wire 4
+  84,   1,   5  ! Plane X, wire 5
+  85,   1,   6  ! Plane X, wire 6
+  86,   1,   7  ! Plane X, wire 7
+  87,   1,   8  ! Plane X, wire 8
+  88,   1,   9  ! Plane X, wire 9
+  89,   1,  10  ! Plane X, wire 10
+  90,   1,  11  ! Plane X, wire 11
+  91,   1,  12  ! Plane X, wire 12
+  92,   1,  13  ! Plane X, wire 13
+  93,   1,  14  ! Plane X, wire 14
+  94,   1,  15  ! Plane X, wire 15
+  95,   1,  16  ! Plane X, wire 16
+  64,   1,  17  ! Plane X, wire 17
+  65,   1,  18  ! Plane X, wire 18
+  66,   1,  19  ! Plane X, wire 19
+  67,   1,  20  ! Plane X, wire 20
+  68,   1,  21  ! Plane X, wire 21
+  69,   1,  22  ! Plane X, wire 22
+  70,   1,  23  ! Plane X, wire 23
+  71,   1,  24  ! Plane X, wire 24
+  72,   1,  25  ! Plane X, wire 25
+  73,   1,  26  ! Plane X, wire 26
+  74,   1,  27  ! Plane X, wire 27
+  75,   1,  28  ! Plane X, wire 28
+  76,   1,  29  ! Plane X, wire 29
+  77,   1,  30  ! Plane X, wire 30
+  78,   1,  31  ! Plane X, wire 31
+  79,   1,  32  ! Plane X, wire 32
+  48,   1,  33  ! Plane X, wire 33
+  49,   1,  34  ! Plane X, wire 34
+  50,   1,  35  ! Plane X, wire 35
+  51,   1,  36  ! Plane X, wire 36
+  52,   1,  37  ! Plane X, wire 37
+  53,   1,  38  ! Plane X, wire 38
+  54,   1,  39  ! Plane X, wire 39
+  55,   1,  40  ! Plane X, wire 40
+  56,   1,  41  ! Plane X, wire 41
+  57,   1,  42  ! Plane X, wire 42
+  58,   1,  43  ! Plane X, wire 43
+  59,   1,  44  ! Plane X, wire 44
+  60,   1,  45  ! Plane X, wire 45
+  61,   1,  46  ! Plane X, wire 46
+  62,   1,  47  ! Plane X, wire 47
+  63,   1,  48  ! Plane X, wire 48
+  32,   1,  49  ! Plane X, wire 49
+  33,   1,  50  ! Plane X, wire 50
+  34,   1,  51  ! Plane X, wire 51
+  35,   1,  52  ! Plane X, wire 52
+  36,   1,  53  ! Plane X, wire 53
+  37,   1,  54  ! Plane X, wire 54
+  38,   1,  55  ! Plane X, wire 55
+  39,   1,  56  ! Plane X, wire 56
+  40,   1,  57  ! Plane X, wire 57
+  41,   1,  58  ! Plane X, wire 58
+  42,   1,  59  ! Plane X, wire 59
+  43,   1,  60  ! Plane X, wire 60
+  44,   1,  61  ! Plane X, wire 61
+  45,   1,  62  ! Plane X, wire 62
+  46,   1,  63  ! Plane X, wire 63
+  47,   1,  64  ! Plane X, wire 64
+  16,   1,  65  ! Plane X, wire 65
+  17,   1,  66  ! Plane X, wire 66
+  18,   1,  67  ! Plane X, wire 67
+  19,   1,  68  ! Plane X, wire 68
+  20,   1,  69  ! Plane X, wire 69
+  21,   1,  70  ! Plane X, wire 70
+  22,   1,  71  ! Plane X, wire 71
+  23,   1,  72  ! Plane X, wire 72
+  24,   1,  73  ! Plane X, wire 73
+  25,   1,  74  ! Plane X, wire 74
+  26,   1,  75  ! Plane X, wire 75
+  27,   1,  76  ! Plane X, wire 76
+  28,   1,  77  ! Plane X, wire 77
+  29,   1,  78  ! Plane X, wire 78
+  30,   1,  79  ! Plane X, wire 79
+  31,   1,  80  ! Plane X, wire 80
+   0,   1,  81  ! Plane X, wire 81
+   1,   1,  82  ! Plane X, wire 82
+   2,   1,  83  ! Plane X, wire 83
+   3,   1,  84  ! Plane X, wire 84
+   4,   1,  85  ! Plane X, wire 85
+   5,   1,  86  ! Plane X, wire 86
+   6,   1,  87  ! Plane X, wire 87
+   7,   1,  88  ! Plane X, wire 88
+   8,   1,  89  ! Plane X, wire 89
+   9,   1,  90  ! Plane X, wire 90
+  10,   1,  91  ! Plane X, wire 91
+  11,   1,  92  ! Plane X, wire 92
+  12,   1,  93  ! Plane X, wire 93
+  13,   1,  94  ! Plane X, wire 94
+  14,   1,  95  ! Plane X, wire 95
+  15,   1,  96  ! Plane X, wire 96
+
+SLOT=7
+REFINDEX=0
+  80,   1,  97  ! Plane X, wire 97
+  81,   1,  98  ! Plane X, wire 98
+  82,   1,  99  ! Plane X, wire 99
+  83,   1, 100  ! Plane X, wire 100
+  84,   1, 101  ! Plane X, wire 101
+  85,   1, 102  ! Plane X, wire 102
+  86,   1, 103  ! Plane X, wire 103
+  87,   1, 104  ! Plane X, wire 104
+  88,   1, 105  ! Plane X, wire 105
+  89,   1, 106  ! Plane X, wire 106
+  90,   1, 107  ! Plane X, wire 107
+  91,   1, 108  ! Plane X, wire 108
+  92,   1, 109  ! Plane X, wire 109
+  93,   1, 110  ! Plane X, wire 110
+  94,   1, 111  ! Plane X, wire 111
+  95,   1, 112  ! Plane X, wire 112
+
+SLOT=4
+REFINDEX=0
+ 112,   6,   1  ! Plane X', wire 1
+ 113,   6,   2  ! Plane X', wire 2
+ 114,   6,   3  ! Plane X', wire 3
+ 115,   6,   4  ! Plane X', wire 4
+ 116,   6,   5  ! Plane X', wire 5
+ 117,   6,   6  ! Plane X', wire 6
+ 118,   6,   7  ! Plane X', wire 7
+ 119,   6,   8  ! Plane X', wire 8
+ 120,   6,   9  ! Plane X', wire 9
+ 121,   6,  10  ! Plane X', wire 10
+ 122,   6,  11  ! Plane X', wire 11
+ 123,   6,  12  ! Plane X', wire 12
+ 124,   6,  13  ! Plane X', wire 13
+ 125,   6,  14  ! Plane X', wire 14
+ 126,   6,  15  ! Plane X', wire 15
+ 127,   6,  16  ! Plane X', wire 16
+
+SLOT=5
+REFINDEX=0
+ 112,   6,  17  ! Plane X', wire 17
+ 113,   6,  18  ! Plane X', wire 18
+ 114,   6,  19  ! Plane X', wire 19
+ 115,   6,  20  ! Plane X', wire 20
+ 116,   6,  21  ! Plane X', wire 21
+ 117,   6,  22  ! Plane X', wire 22
+ 118,   6,  23  ! Plane X', wire 23
+ 119,   6,  24  ! Plane X', wire 24
+ 120,   6,  25  ! Plane X', wire 25
+ 121,   6,  26  ! Plane X', wire 26
+ 122,   6,  27  ! Plane X', wire 27
+ 123,   6,  28  ! Plane X', wire 28
+ 124,   6,  29  ! Plane X', wire 29
+ 125,   6,  30  ! Plane X', wire 30
+ 126,   6,  31  ! Plane X', wire 31
+ 127,   6,  32  ! Plane X', wire 32
+
+SLOT=7
+REFINDEX=0
+   0,   6,  33  ! Plane X', wire 33
+   1,   6,  34  ! Plane X', wire 34
+   2,   6,  35  ! Plane X', wire 35
+   3,   6,  36  ! Plane X', wire 36
+   4,   6,  37  ! Plane X', wire 37
+   5,   6,  38  ! Plane X', wire 38
+   6,   6,  39  ! Plane X', wire 39
+   7,   6,  40  ! Plane X', wire 40
+   8,   6,  41  ! Plane X', wire 41
+   9,   6,  42  ! Plane X', wire 42
+  10,   6,  43  ! Plane X', wire 43
+  11,   6,  44  ! Plane X', wire 44
+  12,   6,  45  ! Plane X', wire 45
+  13,   6,  46  ! Plane X', wire 46
+  14,   6,  47  ! Plane X', wire 47
+  15,   6,  48  ! Plane X', wire 48
+  16,   6,  49  ! Plane X', wire 49
+  17,   6,  50  ! Plane X', wire 50
+  18,   6,  51  ! Plane X', wire 51
+  19,   6,  52  ! Plane X', wire 52
+  20,   6,  53  ! Plane X', wire 53
+  21,   6,  54  ! Plane X', wire 54
+  22,   6,  55  ! Plane X', wire 55
+  23,   6,  56  ! Plane X', wire 56
+  24,   6,  57  ! Plane X', wire 57
+  25,   6,  58  ! Plane X', wire 58
+  26,   6,  59  ! Plane X', wire 59
+  27,   6,  60  ! Plane X', wire 60
+  28,   6,  61  ! Plane X', wire 61
+  29,   6,  62  ! Plane X', wire 62
+  30,   6,  63  ! Plane X', wire 63
+  31,   6,  64  ! Plane X', wire 64
+  32,   6,  65  ! Plane X', wire 65
+  33,   6,  66  ! Plane X', wire 66
+  34,   6,  67  ! Plane X', wire 67
+  35,   6,  68  ! Plane X', wire 68
+  36,   6,  69  ! Plane X', wire 69
+  37,   6,  70  ! Plane X', wire 70
+  38,   6,  71  ! Plane X', wire 71
+  39,   6,  72  ! Plane X', wire 72
+  40,   6,  73  ! Plane X', wire 73
+  41,   6,  74  ! Plane X', wire 74
+  42,   6,  75  ! Plane X', wire 75
+  43,   6,  76  ! Plane X', wire 76
+  44,   6,  77  ! Plane X', wire 77
+  45,   6,  78  ! Plane X', wire 78
+  46,   6,  79  ! Plane X', wire 79
+  47,   6,  80  ! Plane X', wire 80
+  48,   6,  81  ! Plane X', wire 81
+  49,   6,  82  ! Plane X', wire 82
+  50,   6,  83  ! Plane X', wire 83
+  51,   6,  84  ! Plane X', wire 84
+  52,   6,  85  ! Plane X', wire 85
+  53,   6,  86  ! Plane X', wire 86
+  54,   6,  87  ! Plane X', wire 87
+  55,   6,  88  ! Plane X', wire 88
+  56,   6,  89  ! Plane X', wire 89
+  57,   6,  90  ! Plane X', wire 90
+  58,   6,  91  ! Plane X', wire 91
+  59,   6,  92  ! Plane X', wire 92
+  60,   6,  93  ! Plane X', wire 93
+  61,   6,  94  ! Plane X', wire 94
+  62,   6,  95  ! Plane X', wire 95
+  63,   6,  96  ! Plane X', wire 96
+  64,   6,  97  ! Plane X', wire 97
+  65,   6,  98  ! Plane X', wire 98
+  66,   6,  99  ! Plane X', wire 99
+  67,   6, 100  ! Plane X', wire 100
+  68,   6, 101  ! Plane X', wire 101
+  69,   6, 102  ! Plane X', wire 102
+  70,   6, 103  ! Plane X', wire 103
+  71,   6, 104  ! Plane X', wire 104
+  72,   6, 105  ! Plane X', wire 105
+  73,   6, 106  ! Plane X', wire 106
+  74,   6, 107  ! Plane X', wire 107
+  75,   6, 108  ! Plane X', wire 108
+  76,   6, 109  ! Plane X', wire 109
+  77,   6, 110  ! Plane X', wire 110
+  78,   6, 111  ! Plane X', wire 111
+  79,   6, 112  ! Plane X', wire 112
+
+SLOT=8
+REFINDEX=0
+  64,   2,   1  ! Plane Y, wire 1
+  65,   2,   2  ! Plane Y, wire 2
+  66,   2,   3  ! Plane Y, wire 3
+  67,   2,   4  ! Plane Y, wire 4
+  68,   2,   5  ! Plane Y, wire 5
+  69,   2,   6  ! Plane Y, wire 6
+  70,   2,   7  ! Plane Y, wire 7
+  71,   2,   8  ! Plane Y, wire 8
+  72,   2,   9  ! Plane Y, wire 9
+  73,   2,  10  ! Plane Y, wire 10
+  74,   2,  11  ! Plane Y, wire 11
+  75,   2,  12  ! Plane Y, wire 12
+  76,   2,  13  ! Plane Y, wire 13
+  80,   2,  14  ! Plane Y, wire 14
+  81,   2,  15  ! Plane Y, wire 15
+  82,   2,  16  ! Plane Y, wire 16
+  83,   2,  17  ! Plane Y, wire 17
+  84,   2,  18  ! Plane Y, wire 18
+  85,   2,  19  ! Plane Y, wire 19
+  86,   2,  20  ! Plane Y, wire 20
+  87,   2,  21  ! Plane Y, wire 21
+  88,   2,  22  ! Plane Y, wire 22
+  89,   2,  23  ! Plane Y, wire 23
+  90,   2,  24  ! Plane Y, wire 24
+  91,   2,  25  ! Plane Y, wire 25
+  92,   2,  26  ! Plane Y, wire 26
+  96,   2,  27  ! Plane Y, wire 27
+  97,   2,  28  ! Plane Y, wire 28
+  98,   2,  29  ! Plane Y, wire 29
+  99,   2,  30  ! Plane Y, wire 30
+ 100,   2,  31  ! Plane Y, wire 31
+ 101,   2,  32  ! Plane Y, wire 32
+ 102,   2,  33  ! Plane Y, wire 33
+ 103,   2,  34  ! Plane Y, wire 34
+ 104,   2,  35  ! Plane Y, wire 35
+ 105,   2,  36  ! Plane Y, wire 36
+ 106,   2,  37  ! Plane Y, wire 37
+ 107,   2,  38  ! Plane Y, wire 38
+ 108,   2,  39  ! Plane Y, wire 39
+ 112,   2,  40  ! Plane Y, wire 40
+ 113,   2,  41  ! Plane Y, wire 41
+ 114,   2,  42  ! Plane Y, wire 42
+ 115,   2,  43  ! Plane Y, wire 43
+ 116,   2,  44  ! Plane Y, wire 44
+ 117,   2,  45  ! Plane Y, wire 45
+ 118,   2,  46  ! Plane Y, wire 46
+ 119,   2,  47  ! Plane Y, wire 47
+ 120,   2,  48  ! Plane Y, wire 48
+ 121,   2,  49  ! Plane Y, wire 49
+ 122,   2,  50  ! Plane Y, wire 50
+ 123,   2,  51  ! Plane Y, wire 51
+ 124,   2,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   2
+   0,   5,   1  ! Plane Y', wire 1
+   1,   5,   2  ! Plane Y', wire 2
+   2,   5,   3  ! Plane Y', wire 3
+   3,   5,   4  ! Plane Y', wire 4
+   4,   5,   5  ! Plane Y', wire 5
+   5,   5,   6  ! Plane Y', wire 6
+   6,   5,   7  ! Plane Y', wire 7
+   7,   5,   8  ! Plane Y', wire 8
+   8,   5,   9  ! Plane Y', wire 9
+   9,   5,  10  ! Plane Y', wire 10
+  10,   5,  11  ! Plane Y', wire 11
+  11,   5,  12  ! Plane Y', wire 12
+  12,   5,  13  ! Plane Y', wire 13
+  16,   5,  14  ! Plane Y', wire 14
+  17,   5,  15  ! Plane Y', wire 15
+  18,   5,  16  ! Plane Y', wire 16
+  19,   5,  17  ! Plane Y', wire 17
+  20,   5,  18  ! Plane Y', wire 18
+  21,   5,  19  ! Plane Y', wire 19
+  22,   5,  20  ! Plane Y', wire 20
+  23,   5,  21  ! Plane Y', wire 21
+  24,   5,  22  ! Plane Y', wire 22
+  25,   5,  23  ! Plane Y', wire 23
+  26,   5,  24  ! Plane Y', wire 24
+  27,   5,  25  ! Plane Y', wire 25
+  28,   5,  26  ! Plane Y', wire 26
+  32,   5,  27  ! Plane Y', wire 27
+  33,   5,  28  ! Plane Y', wire 28
+  34,   5,  29  ! Plane Y', wire 29
+  35,   5,  30  ! Plane Y', wire 30
+  36,   5,  31  ! Plane Y', wire 31
+  37,   5,  32  ! Plane Y', wire 32
+  38,   5,  33  ! Plane Y', wire 33
+  39,   5,  34  ! Plane Y', wire 34
+  40,   5,  35  ! Plane Y', wire 35
+  41,   5,  36  ! Plane Y', wire 36
+  42,   5,  37  ! Plane Y', wire 37
+  43,   5,  38  ! Plane Y', wire 38
+  44,   5,  39  ! Plane Y', wire 39
+  48,   5,  40  ! Plane Y', wire 40
+  49,   5,  41  ! Plane Y', wire 41
+  50,   5,  42  ! Plane Y', wire 42
+  51,   5,  43  ! Plane Y', wire 43
+  52,   5,  44  ! Plane Y', wire 44
+  53,   5,  45  ! Plane Y', wire 45
+  54,   5,  46  ! Plane Y', wire 46
+  55,   5,  47  ! Plane Y', wire 47
+  56,   5,  48  ! Plane Y', wire 48
+  57,   5,  49  ! Plane Y', wire 49
+  58,   5,  50  ! Plane Y', wire 50
+  59,   5,  51  ! Plane Y', wire 51
+  60,   5,  52  ! Plane Y', wire 52
+
+SLOT=16
+REFINDEX=0
+  96,   9,   1  ! Plane U, wire 1
+  97,   9,   2  ! Plane U, wire 2
+  98,   9,   3  ! Plane U, wire 3
+  99,   9,   4  ! Plane U, wire 4
+ 100,   9,   5  ! Plane U, wire 5
+ 101,   9,   6  ! Plane U, wire 6
+ 102,   9,   7  ! Plane U, wire 7
+ 103,   9,   8  ! Plane U, wire 8
+ 104,   9,   9  ! Plane U, wire 9
+ 105,   9,  10  ! Plane U, wire 10
+ 106,   9,  11  ! Plane U, wire 11
+ 107,   9,  12  ! Plane U, wire 12
+ 108,   9,  13  ! Plane U, wire 13
+ 109,   9,  14  ! Plane U, wire 14
+ 110,   7, 113  ! Plane X, wire 113
+ 112,   9,  15  ! Plane U, wire 15
+ 113,   9,  16  ! Plane U, wire 16
+ 114,   9,  17  ! Plane U, wire 17
+ 115,   9,  18  ! Plane U, wire 18
+ 116,   9,  19  ! Plane U, wire 19
+ 117,   9,  20  ! Plane U, wire 20
+ 118,   9,  21  ! Plane U, wire 21
+ 119,   9,  22  ! Plane U, wire 22
+ 120,   9,  23  ! Plane U, wire 23
+ 121,   9,  24  ! Plane U, wire 24
+ 122,   9,  25  ! Plane U, wire 25
+ 123,   9,  26  ! Plane U, wire 26
+ 124,   9,  27  ! Plane U, wire 27
+ 125,   9,  28  ! Plane U, wire 28
+ 126,   9,  29  ! Plane U, wire 29
+
+SLOT=14
+REFINDEX=0
+   0,   9,  30  ! Plane U, wire 30
+   1,   9,  31  ! Plane U, wire 31
+   2,   9,  32  ! Plane U, wire 32
+   3,   9,  33  ! Plane U, wire 33
+   4,   9,  34  ! Plane U, wire 34
+   5,   9,  35  ! Plane U, wire 35
+   6,   9,  36  ! Plane U, wire 36
+   7,   9,  37  ! Plane U, wire 37
+   8,   9,  38  ! Plane U, wire 38
+   9,   9,  39  ! Plane U, wire 39
+  10,   9,  40  ! Plane U, wire 40
+  11,   9,  41  ! Plane U, wire 41
+  12,   9,  42  ! Plane U, wire 42
+  13,   9,  43  ! Plane U, wire 43
+  14,   9,  44  ! Plane U, wire 44
+  15,   9,  45  ! Plane U, wire 45
+  32,   9,  46  ! Plane U, wire 46
+  33,   9,  47  ! Plane U, wire 47
+  34,   9,  48  ! Plane U, wire 48
+  35,   9,  49  ! Plane U, wire 49
+  36,   9,  50  ! Plane U, wire 50
+  37,   9,  51  ! Plane U, wire 51
+  38,   9,  52  ! Plane U, wire 52
+  39,   9,  53  ! Plane U, wire 53
+  40,   9,  54  ! Plane U, wire 54
+  41,   9,  55  ! Plane U, wire 55
+  42,   9,  56  ! Plane U, wire 56
+  43,   9,  57  ! Plane U, wire 57
+  44,   9,  58  ! Plane U, wire 58
+  45,   9,  59  ! Plane U, wire 59
+  46,   9,  60  ! Plane U, wire 60
+  48,   9,  61  ! Plane U, wire 61
+  49,   9,  62  ! Plane U, wire 62
+  50,   9,  63  ! Plane U, wire 63
+  51,   9,  64  ! Plane U, wire 64
+  52,   9,  65  ! Plane U, wire 65
+  53,   9,  66  ! Plane U, wire 66
+  54,   9,  67  ! Plane U, wire 67
+  55,   9,  68  ! Plane U, wire 68
+  56,   9,  69  ! Plane U, wire 69
+  57,   9,  70  ! Plane U, wire 70
+  58,   9,  71  ! Plane U, wire 71
+  59,   9,  72  ! Plane U, wire 72
+  60,   9,  73  ! Plane U, wire 73
+  61,   9,  74  ! Plane U, wire 74
+  62,   9,  75  ! Plane U, wire 75
+  63,   9,  76  ! Plane U, wire 76
+  64,   9,  77  ! Plane U, wire 77
+  65,   9,  78  ! Plane U, wire 78
+  66,   9,  79  ! Plane U, wire 79
+  67,   9,  80  ! Plane U, wire 80
+  68,   9,  81  ! Plane U, wire 81
+  69,   9,  82  ! Plane U, wire 82
+  70,   9,  83  ! Plane U, wire 83
+  71,   9,  84  ! Plane U, wire 84
+  72,   9,  85  ! Plane U, wire 85
+  73,   9,  86  ! Plane U, wire 86
+  74,   9,  87  ! Plane U, wire 87
+  75,   9,  88  ! Plane U, wire 88
+  76,   9,  89  ! Plane U, wire 89
+  77,   9,  90  ! Plane U, wire 90
+  78,   9,  91  ! Plane U, wire 91
+  80,   9,  92  ! Plane U, wire 92
+  81,   9,  93  ! Plane U, wire 93
+  82,   9,  94  ! Plane U, wire 94
+  83,   9,  95  ! Plane U, wire 95
+  84,   9,  96  ! Plane U, wire 96
+  85,   9,  97  ! Plane U, wire 97
+  86,   9,  98  ! Plane U, wire 98
+  87,   9,  99  ! Plane U, wire 99
+  88,   9, 100  ! Plane U, wire 100
+  89,   9, 101  ! Plane U, wire 101
+  90,   9, 102  ! Plane U, wire 102
+  91,   9, 103  ! Plane U, wire 103
+  92,   9, 104  ! Plane U, wire 104
+  93,   9, 105  ! Plane U, wire 105
+  94,   9, 106  ! Plane U, wire 106
+  95,   9, 107  ! Plane U, wire 107
+
+SLOT=16
+REFINDEX=0
+  80,  10,   1  ! Plane V, wire 1
+  81,  10,   2  ! Plane V, wire 2
+  82,  10,   3  ! Plane V, wire 3
+  83,  10,   4  ! Plane V, wire 4
+  84,  10,   5  ! Plane V, wire 5
+  85,  10,   6  ! Plane V, wire 6
+  86,  10,   7  ! Plane V, wire 7
+  87,  10,   8  ! Plane V, wire 8
+  88,  10,   9  ! Plane V, wire 9
+  89,  10,  10  ! Plane V, wire 10
+  90,  10,  11  ! Plane V, wire 11
+  91,  10,  12  ! Plane V, wire 12
+  92,  10,  13  ! Plane V, wire 13
+  93,  10,  14  ! Plane V, wire 14
+  94,  12, 113  ! Plane X', wire 113
+
+SLOT=14
+REFINDEX=0
+  96,  10,  15  ! Plane V, wire 15
+  97,  10,  16  ! Plane V, wire 16
+  98,  10,  17  ! Plane V, wire 17
+  99,  10,  18  ! Plane V, wire 18
+ 100,  10,  19  ! Plane V, wire 19
+ 101,  10,  20  ! Plane V, wire 20
+ 102,  10,  21  ! Plane V, wire 21
+ 103,  10,  22  ! Plane V, wire 22
+ 104,  10,  23  ! Plane V, wire 23
+ 105,  10,  24  ! Plane V, wire 24
+ 106,  10,  25  ! Plane V, wire 25
+ 107,  10,  26  ! Plane V, wire 26
+ 108,  10,  27  ! Plane V, wire 27
+ 109,  10,  28  ! Plane V, wire 28
+ 110,  10,  29  ! Plane V, wire 29
+ 112,  10,  30  ! Plane V, wire 30
+ 113,  10,  31  ! Plane V, wire 31
+ 114,  10,  32  ! Plane V, wire 32
+ 115,  10,  33  ! Plane V, wire 33
+ 116,  10,  34  ! Plane V, wire 34
+ 117,  10,  35  ! Plane V, wire 35
+ 118,  10,  36  ! Plane V, wire 36
+ 119,  10,  37  ! Plane V, wire 37
+ 120,  10,  38  ! Plane V, wire 38
+ 121,  10,  39  ! Plane V, wire 39
+ 122,  10,  40  ! Plane V, wire 40
+ 123,  10,  41  ! Plane V, wire 41
+ 124,  10,  42  ! Plane V, wire 42
+ 125,  10,  43  ! Plane V, wire 43
+ 126,  10,  44  ! Plane V, wire 44
+ 127,  10,  45  ! Plane V, wire 45
+
+SLOT=17
+REFINDEX=0
+ 127,1000,   0,   3
+   0,  10,  46  ! Plane V, wire 46
+   1,  10,  47  ! Plane V, wire 47
+   2,  10,  48  ! Plane V, wire 48
+   3,  10,  49  ! Plane V, wire 49
+   4,  10,  50  ! Plane V, wire 50
+   5,  10,  51  ! Plane V, wire 51
+   6,  10,  52  ! Plane V, wire 52
+   7,  10,  53  ! Plane V, wire 53
+   8,  10,  54  ! Plane V, wire 54
+   9,  10,  55  ! Plane V, wire 55
+  10,  10,  56  ! Plane V, wire 56
+  11,  10,  57  ! Plane V, wire 57
+  12,  10,  58  ! Plane V, wire 58
+  13,  10,  59  ! Plane V, wire 59
+  14,  10,  60  ! Plane V, wire 60
+  16,  10,  61  ! Plane V, wire 61
+  17,  10,  62  ! Plane V, wire 62
+  18,  10,  63  ! Plane V, wire 63
+  19,  10,  64  ! Plane V, wire 64
+  20,  10,  65  ! Plane V, wire 65
+  21,  10,  66  ! Plane V, wire 66
+  22,  10,  67  ! Plane V, wire 67
+  23,  10,  68  ! Plane V, wire 68
+  24,  10,  69  ! Plane V, wire 69
+  25,  10,  70  ! Plane V, wire 70
+  26,  10,  71  ! Plane V, wire 71
+  27,  10,  72  ! Plane V, wire 72
+  28,  10,  73  ! Plane V, wire 73
+  29,  10,  74  ! Plane V, wire 74
+  30,  10,  75  ! Plane V, wire 75
+  31,  10,  76  ! Plane V, wire 76
+  32,  10,  77  ! Plane V, wire 77
+  33,  10,  78  ! Plane V, wire 78
+  34,  10,  79  ! Plane V, wire 79
+  35,  10,  80  ! Plane V, wire 80
+  36,  10,  81  ! Plane V, wire 81
+  37,  10,  82  ! Plane V, wire 82
+  38,  10,  83  ! Plane V, wire 83
+  39,  10,  84  ! Plane V, wire 84
+  40,  10,  85  ! Plane V, wire 85
+  41,  10,  86  ! Plane V, wire 86
+  42,  10,  87  ! Plane V, wire 87
+  43,  10,  88  ! Plane V, wire 88
+  44,  10,  89  ! Plane V, wire 89
+  45,  10,  90  ! Plane V, wire 90
+  46,  10,  91  ! Plane V, wire 91
+  48,  10,  92  ! Plane V, wire 92
+  49,  10,  93  ! Plane V, wire 93
+  50,  10,  94  ! Plane V, wire 94
+  51,  10,  95  ! Plane V, wire 95
+  52,  10,  96  ! Plane V, wire 96
+  53,  10,  97  ! Plane V, wire 97
+  54,  10,  98  ! Plane V, wire 98
+  55,  10,  99  ! Plane V, wire 99
+  56,  10, 100  ! Plane V, wire 100
+  57,  10, 101  ! Plane V, wire 101
+  58,  10, 102  ! Plane V, wire 102
+  59,  10, 103  ! Plane V, wire 103
+  60,  10, 104  ! Plane V, wire 104
+  61,  10, 105  ! Plane V, wire 105
+  62,  10, 106  ! Plane V, wire 106
+  63,  10, 107  ! Plane V, wire 107
+
+SLOT=13
+REFINDEX=0
+   0,   7,   1  ! Plane X, wire 1
+   1,   7,   2  ! Plane X, wire 2
+   2,   7,   3  ! Plane X, wire 3
+   3,   7,   4  ! Plane X, wire 4
+   4,   7,   5  ! Plane X, wire 5
+   5,   7,   6  ! Plane X, wire 6
+   6,   7,   7  ! Plane X, wire 7
+   7,   7,   8  ! Plane X, wire 8
+   8,   7,   9  ! Plane X, wire 9
+   9,   7,  10  ! Plane X, wire 10
+  10,   7,  11  ! Plane X, wire 11
+  11,   7,  12  ! Plane X, wire 12
+  12,   7,  13  ! Plane X, wire 13
+  13,   7,  14  ! Plane X, wire 14
+  14,   7,  15  ! Plane X, wire 15
+  15,   7,  16  ! Plane X, wire 16
+  16,   7,  17  ! Plane X, wire 17
+  17,   7,  18  ! Plane X, wire 18
+  18,   7,  19  ! Plane X, wire 19
+  19,   7,  20  ! Plane X, wire 20
+  20,   7,  21  ! Plane X, wire 21
+  21,   7,  22  ! Plane X, wire 22
+  22,   7,  23  ! Plane X, wire 23
+  23,   7,  24  ! Plane X, wire 24
+  24,   7,  25  ! Plane X, wire 25
+  25,   7,  26  ! Plane X, wire 26
+  26,   7,  27  ! Plane X, wire 27
+  27,   7,  28  ! Plane X, wire 28
+  28,   7,  29  ! Plane X, wire 29
+  29,   7,  30  ! Plane X, wire 30
+  30,   7,  31  ! Plane X, wire 31
+  31,   7,  32  ! Plane X, wire 32
+  32,   7,  33  ! Plane X, wire 33
+  33,   7,  34  ! Plane X, wire 34
+  34,   7,  35  ! Plane X, wire 35
+  35,   7,  36  ! Plane X, wire 36
+  36,   7,  37  ! Plane X, wire 37
+  37,   7,  38  ! Plane X, wire 38
+  38,   7,  39  ! Plane X, wire 39
+  39,   7,  40  ! Plane X, wire 40
+  40,   7,  41  ! Plane X, wire 41
+  41,   7,  42  ! Plane X, wire 42
+  42,   7,  43  ! Plane X, wire 43
+  43,   7,  44  ! Plane X, wire 44
+  44,   7,  45  ! Plane X, wire 45
+  45,   7,  46  ! Plane X, wire 46
+  46,   7,  47  ! Plane X, wire 47
+  47,   7,  48  ! Plane X, wire 48
+  48,   7,  49  ! Plane X, wire 49
+  49,   7,  50  ! Plane X, wire 50
+  50,   7,  51  ! Plane X, wire 51
+  51,   7,  52  ! Plane X, wire 52
+  52,   7,  53  ! Plane X, wire 53
+  53,   7,  54  ! Plane X, wire 54
+  54,   7,  55  ! Plane X, wire 55
+  55,   7,  56  ! Plane X, wire 56
+  56,   7,  57  ! Plane X, wire 57
+  57,   7,  58  ! Plane X, wire 58
+  58,   7,  59  ! Plane X, wire 59
+  59,   7,  60  ! Plane X, wire 60
+  60,   7,  61  ! Plane X, wire 61
+  61,   7,  62  ! Plane X, wire 62
+  62,   7,  63  ! Plane X, wire 63
+  63,   7,  64  ! Plane X, wire 64
+  64,   7,  65  ! Plane X, wire 65
+  65,   7,  66  ! Plane X, wire 66
+  66,   7,  67  ! Plane X, wire 67
+  67,   7,  68  ! Plane X, wire 68
+  68,   7,  69  ! Plane X, wire 69
+  69,   7,  70  ! Plane X, wire 70
+  70,   7,  71  ! Plane X, wire 71
+  71,   7,  72  ! Plane X, wire 72
+  72,   7,  73  ! Plane X, wire 73
+  73,   7,  74  ! Plane X, wire 74
+  74,   7,  75  ! Plane X, wire 75
+  75,   7,  76  ! Plane X, wire 76
+  76,   7,  77  ! Plane X, wire 77
+  77,   7,  78  ! Plane X, wire 78
+  78,   7,  79  ! Plane X, wire 79
+  79,   7,  80  ! Plane X, wire 80
+  80,   7,  81  ! Plane X, wire 81
+  81,   7,  82  ! Plane X, wire 82
+  82,   7,  83  ! Plane X, wire 83
+  83,   7,  84  ! Plane X, wire 84
+  84,   7,  85  ! Plane X, wire 85
+  85,   7,  86  ! Plane X, wire 86
+  86,   7,  87  ! Plane X, wire 87
+  87,   7,  88  ! Plane X, wire 88
+  88,   7,  89  ! Plane X, wire 89
+  89,   7,  90  ! Plane X, wire 90
+  90,   7,  91  ! Plane X, wire 91
+  91,   7,  92  ! Plane X, wire 92
+  92,   7,  93  ! Plane X, wire 93
+  93,   7,  94  ! Plane X, wire 94
+  94,   7,  95  ! Plane X, wire 95
+  95,   7,  96  ! Plane X, wire 96
+  96,   7,  97  ! Plane X, wire 97
+  97,   7,  98  ! Plane X, wire 98
+  98,   7,  99  ! Plane X, wire 99
+  99,   7, 100  ! Plane X, wire 100
+ 100,   7, 101  ! Plane X, wire 101
+ 101,   7, 102  ! Plane X, wire 102
+ 102,   7, 103  ! Plane X, wire 103
+ 103,   7, 104  ! Plane X, wire 104
+ 104,   7, 105  ! Plane X, wire 105
+ 105,   7, 106  ! Plane X, wire 106
+ 106,   7, 107  ! Plane X, wire 107
+ 107,   7, 108  ! Plane X, wire 108
+ 108,   7, 109  ! Plane X, wire 109
+ 109,   7, 110  ! Plane X, wire 110
+ 110,   7, 111  ! Plane X, wire 111
+ 111,   7, 112  ! Plane X, wire 112
+ 112,  12,   1  ! Plane X', wire 1
+ 113,  12,   2  ! Plane X', wire 2
+ 114,  12,   3  ! Plane X', wire 3
+ 115,  12,   4  ! Plane X', wire 4
+ 116,  12,   5  ! Plane X', wire 5
+ 117,  12,   6  ! Plane X', wire 6
+ 118,  12,   7  ! Plane X', wire 7
+ 119,  12,   8  ! Plane X', wire 8
+ 120,  12,   9  ! Plane X', wire 9
+ 121,  12,  10  ! Plane X', wire 10
+ 122,  12,  11  ! Plane X', wire 11
+ 123,  12,  12  ! Plane X', wire 12
+ 124,  12,  13  ! Plane X', wire 13
+ 125,  12,  14  ! Plane X', wire 14
+ 126,  12,  15  ! Plane X', wire 15
+ 127,  12,  16  ! Plane X', wire 16
+
+SLOT=14
+REFINDEX=0
+  16,  12,  17  ! Plane X', wire 17
+  17,  12,  18  ! Plane X', wire 18
+  18,  12,  19  ! Plane X', wire 19
+  19,  12,  20  ! Plane X', wire 20
+  20,  12,  21  ! Plane X', wire 21
+  21,  12,  22  ! Plane X', wire 22
+  22,  12,  23  ! Plane X', wire 23
+  23,  12,  24  ! Plane X', wire 24
+  24,  12,  25  ! Plane X', wire 25
+  25,  12,  26  ! Plane X', wire 26
+  26,  12,  27  ! Plane X', wire 27
+  27,  12,  28  ! Plane X', wire 28
+  28,  12,  29  ! Plane X', wire 29
+  29,  12,  30  ! Plane X', wire 30
+  30,  12,  31  ! Plane X', wire 31
+  31,  12,  32  ! Plane X', wire 32
+
+SLOT=16
+REFINDEX=0
+   0,  12,  33  ! Plane X', wire 33
+   1,  12,  34  ! Plane X', wire 34
+   2,  12,  35  ! Plane X', wire 35
+   3,  12,  36  ! Plane X', wire 36
+   4,  12,  37  ! Plane X', wire 37
+   5,  12,  38  ! Plane X', wire 38
+   6,  12,  39  ! Plane X', wire 39
+   7,  12,  40  ! Plane X', wire 40
+   8,  12,  41  ! Plane X', wire 41
+   9,  12,  42  ! Plane X', wire 42
+  10,  12,  43  ! Plane X', wire 43
+  11,  12,  44  ! Plane X', wire 44
+  12,  12,  45  ! Plane X', wire 45
+  13,  12,  46  ! Plane X', wire 46
+  14,  12,  47  ! Plane X', wire 47
+  15,  12,  48  ! Plane X', wire 48
+  16,  12,  49  ! Plane X', wire 49
+  17,  12,  50  ! Plane X', wire 50
+  18,  12,  51  ! Plane X', wire 51
+  19,  12,  52  ! Plane X', wire 52
+  20,  12,  53  ! Plane X', wire 53
+  21,  12,  54  ! Plane X', wire 54
+  22,  12,  55  ! Plane X', wire 55
+  23,  12,  56  ! Plane X', wire 56
+  24,  12,  57  ! Plane X', wire 57
+  25,  12,  58  ! Plane X', wire 58
+  26,  12,  59  ! Plane X', wire 59
+  27,  12,  60  ! Plane X', wire 60
+  28,  12,  61  ! Plane X', wire 61
+  29,  12,  62  ! Plane X', wire 62
+  30,  12,  63  ! Plane X', wire 63
+  31,  12,  64  ! Plane X', wire 64
+  32,  12,  65  ! Plane X', wire 65
+  33,  12,  66  ! Plane X', wire 66
+  34,  12,  67  ! Plane X', wire 67
+  35,  12,  68  ! Plane X', wire 68
+  36,  12,  69  ! Plane X', wire 69
+  37,  12,  70  ! Plane X', wire 70
+  38,  12,  71  ! Plane X', wire 71
+  39,  12,  72  ! Plane X', wire 72
+  40,  12,  73  ! Plane X', wire 73
+  41,  12,  74  ! Plane X', wire 74
+  42,  12,  75  ! Plane X', wire 75
+  43,  12,  76  ! Plane X', wire 76
+  44,  12,  77  ! Plane X', wire 77
+  45,  12,  78  ! Plane X', wire 78
+  46,  12,  79  ! Plane X', wire 79
+  47,  12,  80  ! Plane X', wire 80
+  48,  12,  81  ! Plane X', wire 81
+  49,  12,  82  ! Plane X', wire 82
+  50,  12,  83  ! Plane X', wire 83
+  51,  12,  84  ! Plane X', wire 84
+  52,  12,  85  ! Plane X', wire 85
+  53,  12,  86  ! Plane X', wire 86
+  54,  12,  87  ! Plane X', wire 87
+  55,  12,  88  ! Plane X', wire 88
+  56,  12,  89  ! Plane X', wire 89
+  57,  12,  90  ! Plane X', wire 90
+  58,  12,  91  ! Plane X', wire 91
+  59,  12,  92  ! Plane X', wire 92
+  60,  12,  93  ! Plane X', wire 93
+  61,  12,  94  ! Plane X', wire 94
+  62,  12,  95  ! Plane X', wire 95
+  63,  12,  96  ! Plane X', wire 96
+  64,  12,  97  ! Plane X', wire 97
+  65,  12,  98  ! Plane X', wire 98
+  66,  12,  99  ! Plane X', wire 99
+  67,  12, 100  ! Plane X', wire 100
+  68,  12, 101  ! Plane X', wire 101
+  69,  12, 102  ! Plane X', wire 102
+  70,  12, 103  ! Plane X', wire 103
+  71,  12, 104  ! Plane X', wire 104
+  72,  12, 105  ! Plane X', wire 105
+  73,  12, 106  ! Plane X', wire 106
+  74,  12, 107  ! Plane X', wire 107
+  75,  12, 108  ! Plane X', wire 108
+  76,  12, 109  ! Plane X', wire 109
+  77,  12, 110  ! Plane X', wire 110
+  78,  12, 111  ! Plane X', wire 111
+  79,  12, 112  ! Plane X', wire 112
+
+SLOT=17
+REFINDEX=0
+  64,   8,   1  ! Plane Y, wire 1
+  65,   8,   2  ! Plane Y, wire 2
+  66,   8,   3  ! Plane Y, wire 3
+  67,   8,   4  ! Plane Y, wire 4
+  68,   8,   5  ! Plane Y, wire 5
+  69,   8,   6  ! Plane Y, wire 6
+  70,   8,   7  ! Plane Y, wire 7
+  71,   8,   8  ! Plane Y, wire 8
+  72,   8,   9  ! Plane Y, wire 9
+  73,   8,  10  ! Plane Y, wire 10
+  74,   8,  11  ! Plane Y, wire 11
+  75,   8,  12  ! Plane Y, wire 12
+  76,   8,  13  ! Plane Y, wire 13
+  80,   8,  14  ! Plane Y, wire 14
+  81,   8,  15  ! Plane Y, wire 15
+  82,   8,  16  ! Plane Y, wire 16
+  83,   8,  17  ! Plane Y, wire 17
+  84,   8,  18  ! Plane Y, wire 18
+  85,   8,  19  ! Plane Y, wire 19
+  86,   8,  20  ! Plane Y, wire 20
+  87,   8,  21  ! Plane Y, wire 21
+  88,   8,  22  ! Plane Y, wire 22
+  89,   8,  23  ! Plane Y, wire 23
+  90,   8,  24  ! Plane Y, wire 24
+  91,   8,  25  ! Plane Y, wire 25
+  92,   8,  26  ! Plane Y, wire 26
+  96,   8,  27  ! Plane Y, wire 27
+  97,   8,  28  ! Plane Y, wire 28
+  98,   8,  29  ! Plane Y, wire 29
+  99,   8,  30  ! Plane Y, wire 30
+ 100,   8,  31  ! Plane Y, wire 31
+ 101,   8,  32  ! Plane Y, wire 32
+ 102,   8,  33  ! Plane Y, wire 33
+ 103,   8,  34  ! Plane Y, wire 34
+ 104,   8,  35  ! Plane Y, wire 35
+ 105,   8,  36  ! Plane Y, wire 36
+ 106,   8,  37  ! Plane Y, wire 37
+ 107,   8,  38  ! Plane Y, wire 38
+ 108,   8,  39  ! Plane Y, wire 39
+ 112,   8,  40  ! Plane Y, wire 40
+ 113,   8,  41  ! Plane Y, wire 41
+ 114,   8,  42  ! Plane Y, wire 42
+ 115,   8,  43  ! Plane Y, wire 43
+ 116,   8,  44  ! Plane Y, wire 44
+ 117,   8,  45  ! Plane Y, wire 45
+ 118,   8,  46  ! Plane Y, wire 46
+ 119,   8,  47  ! Plane Y, wire 47
+ 120,   8,  48  ! Plane Y, wire 48
+ 121,   8,  49  ! Plane Y, wire 49
+ 122,   8,  50  ! Plane Y, wire 50
+ 123,   8,  51  ! Plane Y, wire 51
+ 124,   8,  52  ! Plane Y, wire 52
+
+SLOT=10
+REFINDEX=0
+ 127,1000,   0,   1
+  64,  11,   1  ! Plane Y', wire 1
+  65,  11,   2  ! Plane Y', wire 2
+  66,  11,   3  ! Plane Y', wire 3
+  67,  11,   4  ! Plane Y', wire 4
+  68,  11,   5  ! Plane Y', wire 5
+  69,  11,   6  ! Plane Y', wire 6
+  70,  11,   7  ! Plane Y', wire 7
+  71,  11,   8  ! Plane Y', wire 8
+  72,  11,   9  ! Plane Y', wire 9
+  73,  11,  10  ! Plane Y', wire 10
+  74,  11,  11  ! Plane Y', wire 11
+  75,  11,  12  ! Plane Y', wire 12
+  76,  11,  13  ! Plane Y', wire 13
+  80,  11,  14  ! Plane Y', wire 14
+  81,  11,  15  ! Plane Y', wire 15
+  82,  11,  16  ! Plane Y', wire 16
+  83,  11,  17  ! Plane Y', wire 17
+  84,  11,  18  ! Plane Y', wire 18
+  85,  11,  19  ! Plane Y', wire 19
+  86,  11,  20  ! Plane Y', wire 20
+  87,  11,  21  ! Plane Y', wire 21
+  88,  11,  22  ! Plane Y', wire 22
+  89,  11,  23  ! Plane Y', wire 23
+  90,  11,  24  ! Plane Y', wire 24
+  91,  11,  25  ! Plane Y', wire 25
+  92,  11,  26  ! Plane Y', wire 26
+  96,  11,  27  ! Plane Y', wire 27
+  97,  11,  28  ! Plane Y', wire 28
+  98,  11,  29  ! Plane Y', wire 29
+  99,  11,  30  ! Plane Y', wire 30
+ 100,  11,  31  ! Plane Y', wire 31
+ 101,  11,  32  ! Plane Y', wire 32
+ 102,  11,  33  ! Plane Y', wire 33
+ 103,  11,  34  ! Plane Y', wire 34
+ 104,  11,  35  ! Plane Y', wire 35
+ 105,  11,  36  ! Plane Y', wire 36
+ 106,  11,  37  ! Plane Y', wire 37
+ 107,  11,  38  ! Plane Y', wire 38
+ 108,  11,  39  ! Plane Y', wire 39
+ 112,  11,  40  ! Plane Y', wire 40
+ 113,  11,  41  ! Plane Y', wire 41
+ 114,  11,  42  ! Plane Y', wire 42
+ 115,  11,  43  ! Plane Y', wire 43
+ 116,  11,  44  ! Plane Y', wire 44
+ 117,  11,  45  ! Plane Y', wire 45
+ 118,  11,  46  ! Plane Y', wire 46
+ 119,  11,  47  ! Plane Y', wire 47
+ 120,  11,  48  ! Plane Y', wire 48
+ 121,  11,  49  ! Plane Y', wire 49
+ 122,  11,  50  ! Plane Y', wire 50
+ 123,  11,  51  ! Plane Y', wire 51
+ 124,  11,  52  ! Plane Y', wire 52
+
+
+DETECTOR=13
+
+ROC=11
+
+SLOT=8
+   0,   1,   1,   0  ! h1x01A+
+   1,   1,   2,   0  ! h1x02A+
+   2,   1,   3,   0  ! h1x03A+
+   3,   1,   4,   0  ! h1x04A+
+   4,   1,   5,   0  ! h1x05A+
+   5,   1,   6,   0  ! h1x06A+
+   6,   1,   7,   0  ! h1x07A+
+   7,   1,   8,   0  ! h1x08A+
+   8,   1,   9,   0  ! h1x09A+
+   9,   1,  10,   0  ! h1x10A+
+  10,   1,  11,   0  ! h1x11A+
+  11,   1,  12,   0  ! h1x12A+
+  12,   1,  13,   0  ! h1x13A+
+  13,   1,  14,   0  ! h1x14A+
+  14,   1,  15,   0  ! h1x15A+
+  15,   1,  16,   0  ! h1x16A+
+
+SLOT=9
+   0,   1,   1,   1  ! h1x01A-
+   1,   1,   2,   1  ! h1x02A-
+   2,   1,   3,   1  ! h1x03A-
+   3,   1,   4,   1  ! h1x04A-
+   4,   1,   5,   1  ! h1x05A-
+   5,   1,   6,   1  ! h1x06A-
+   6,   1,   7,   1  ! h1x07A-
+   7,   1,   8,   1  ! h1x08A-
+   8,   1,   9,   1  ! h1x09A-
+   9,   1,  10,   1  ! h1x10A-
+  10,   1,  11,   1  ! h1x11A-
+  11,   1,  12,   1  ! h1x12A-
+  12,   1,  13,   1  ! h1x13A-
+  13,   1,  14,   1  ! h1x14A-
+  14,   1,  15,   1  ! h1x15A-
+  15,   1,  16,   1  ! h1x16A-
+
+SLOT=10
+   0,   2,   1,   0  ! h1y01A+
+   1,   2,   2,   0  ! h1y02A+
+   2,   2,   3,   0  ! h1y03A+
+   3,   2,   4,   0  ! h1y04A+
+   4,   2,   5,   0  ! h1y05A+
+   5,   2,   6,   0  ! h1y06A+
+   6,   2,   7,   0  ! h1y07A+
+   7,   2,   8,   0  ! h1y08A+
+   8,   2,   9,   0  ! h1y09A+
+   9,   2,  10,   0  ! h1y10A+
+  10,   2,   1,   1  ! h1y01A-
+  11,   2,   2,   1  ! h1y02A-
+  12,   2,   3,   1  ! h1y03A-
+  13,   2,   4,   1  ! h1y04A-
+  14,   2,   5,   1  ! h1y05A-
+  15,   2,   6,   1  ! h1y06A-
+
+SLOT=13
+   0,   2,   7,   1  ! h1y07A-
+   1,   2,   8,   1  ! h1y08A-
+   2,   2,   9,   1  ! h1y09A-
+   3,   2,  10,   1  ! h1y10A-
+   4,   3,   1,   0  ! h2x01A+
+   5,   3,   2,   0  ! h2x02A+
+   6,   3,   3,   0  ! h2x03A+
+   7,   3,   4,   0  ! h2x04A+
+   8,   3,   5,   0  ! h2x05A+
+   9,   3,   6,   0  ! h2x06A+
+  10,   3,   7,   0  ! h2x07A+
+  11,   3,   8,   0  ! h2x08A+
+  12,   3,   9,   0  ! h2x09A+
+  13,   3,  10,   0  ! h2x10A+
+  14,   3,  11,   0  ! h2x11A+
+  15,   3,  12,   0  ! h2x12A+
+
+SLOT=14
+   0,   3,  13,   0  ! h2x13A+
+   1,   3,  14,   0  ! h2x14A+
+   2,   3,  15,   0  ! h2x15A+
+   3,   3,  16,   0  ! h2x16A+
+   4,   3,   1,   1  ! h2x01A-
+   5,   3,   2,   1  ! h2x02A-
+   6,   3,   3,   1  ! h2x03A-
+   7,   3,   4,   1  ! h2x04A-
+   8,   3,   5,   1  ! h2x05A-
+   9,   3,   6,   1  ! h2x06A-
+  10,   3,   7,   1  ! h2x07A-
+  11,   3,   8,   1  ! h2x08A-
+  12,   3,   9,   1  ! h2x09A-
+  13,   3,  10,   1  ! h2x10A-
+  14,   3,  11,   1  ! h2x11A-
+  15,   3,  12,   1  ! h2x12A-
+
+SLOT=15
+   0,   3,  13,   1  ! h2x13A-
+   1,   3,  14,   1  ! h2x14A-
+   2,   3,  15,   1  ! h2x15A-
+   3,   3,  16,   1  ! h2x16A-
+   4,   4,   1,   0  ! h2y01A+
+   5,   4,   2,   0  ! h2y02A+
+   6,   4,   3,   0  ! h2y03A+
+   7,   4,   4,   0  ! h2y04A+
+   8,   4,   5,   0  ! h2y05A+
+   9,   4,   6,   0  ! h2y06A+
+  10,   4,   7,   0  ! h2y07A+
+  11,   4,   8,   0  ! h2y08A+
+  12,   4,   9,   0  ! h2y09A+
+  13,   4,  10,   0  ! h2y10A+
+  14,   4,   1,   1  ! h2y01A-
+  15,   4,   2,   1  ! h2y02A-
+
+SLOT=16
+   0,   4,   3,   1  ! h2y03A-
+   1,   4,   4,   1  ! h2y04A-
+   2,   4,   5,   1  ! h2y05A-
+   3,   4,   6,   1  ! h2y06A-
+   4,   4,   7,   1  ! h2y07A-
+   5,   4,   8,   1  ! h2y08A-
+   6,   4,   9,   1  ! h2y09A-
+   7,   4,  10,   1  ! h2y10A-
+
+SLOT=20
+REFINDEX=0
+ 127,1000,   0,   0
+   0,   1,   1,   2  ! h1x01T+
+   1,   1,   3,   2  ! h1x03T+
+   2,   1,   5,   2  ! h1x05T+
+   3,   1,   7,   2  ! h1x07T+
+   4,   1,   2,   2  ! h1x02T+
+   5,   1,   4,   2  ! h1x04T+
+   6,   1,   6,   2  ! h1x06T+
+   7,   1,   8,   2  ! h1x08T+
+   8,   1,   9,   2  ! h1x09T+
+   9,   1,  11,   2  ! h1x11T+
+  10,   1,  13,   2  ! h1x13T+
+  11,   1,  15,   2  ! h1x15T+
+  12,   1,  10,   2  ! h1x10T+
+  13,   1,  12,   2  ! h1x12T+
+  14,   1,  14,   2  ! h1x14T+
+  15,   1,  16,   2  ! h1x16T+
+  16,   1,   1,   3  ! h1x01T-
+  17,   1,   3,   3  ! h1x03T-
+  18,   1,   5,   3  ! h1x05T-
+  19,   1,   7,   3  ! h1x07T-
+  20,   1,   2,   3  ! h1x02T-
+  21,   1,   4,   3  ! h1x04T-
+  22,   1,   6,   3  ! h1x06T-
+  23,   1,   8,   3  ! h1x08T-
+  24,   1,   9,   3  ! h1x09T-
+  25,   1,  11,   3  ! h1x11T-
+  26,   1,  13,   3  ! h1x13T-
+  27,   1,  15,   3  ! h1x15T-
+  28,   1,  10,   3  ! h1x10T-
+  29,   1,  12,   3  ! h1x12T-
+  30,   1,  14,   3  ! h1x14T-
+  31,   1,  16,   3  ! h1x16T-
+  32,   2,   1,   2  ! h1y01T+
+  33,   2,   3,   2  ! h1y03T+
+  34,   2,   5,   2  ! h1y05T+
+  35,   2,   7,   2  ! h1y07T+
+  36,   2,   2,   2  ! h1y02T+
+  37,   2,   4,   2  ! h1y04T+
+  38,   2,   6,   2  ! h1y06T+
+  39,   2,   8,   2  ! h1y08T+
+  40,   2,   9,   2  ! h1y09T+
+  44,   2,  10,   2  ! h1y10T+
+  48,   2,   1,   3  ! h1y01T-
+  49,   2,   3,   3  ! h1y03T-
+  50,   2,   5,   3  ! h1y05T-
+  51,   2,   7,   3  ! h1y07T-
+  52,   2,   2,   3  ! h1y02T-
+  53,   2,   4,   3  ! h1y04T-
+  54,   2,   6,   3  ! h1y06T-
+  55,   2,   8,   3  ! h1y08T-
+  56,   2,   9,   3  ! h1y09T-
+  60,   2,  10,   3  ! h1y10T-
+  64,   3,   1,   2  ! h2x01T+
+  65,   3,   3,   2  ! h2x03T+
+  66,   3,   5,   2  ! h2x05T+
+  67,   3,   7,   2  ! h2x07T+
+  68,   3,   2,   2  ! h2x02T+
+  69,   3,   4,   2  ! h2x04T+
+  70,   3,   6,   2  ! h2x06T+
+  71,   3,   8,   2  ! h2x08T+
+  72,   3,   9,   2  ! h2x09T+
+  73,   3,  11,   2  ! h2x11T+
+  74,   3,  13,   2  ! h2x13T+
+  75,   3,  15,   2  ! h2x15T+
+  76,   3,  10,   2  ! h2x10T+
+  77,   3,  12,   2  ! h2x12T+
+  78,   3,  14,   2  ! h2x14T+
+  79,   3,  16,   2  ! h2x16T+
+  80,   3,   1,   3  ! h2x01T-
+  81,   3,   3,   3  ! h2x03T-
+  82,   3,   5,   3  ! h2x05T-
+  83,   3,   7,   3  ! h2x07T-
+  84,   3,   2,   3  ! h2x02T-
+  85,   3,   4,   3  ! h2x04T-
+  86,   3,   6,   3  ! h2x06T-
+  87,   3,   8,   3  ! h2x08T-
+  88,   3,   9,   3  ! h2x09T-
+  89,   3,  11,   3  ! h2x11T-
+  90,   3,  13,   3  ! h2x13T-
+  91,   3,  15,   3  ! h2x15T-
+  92,   3,  10,   3  ! h2x10T-
+  93,   3,  12,   3  ! h2x12T-
+  94,   3,  14,   3  ! h2x14T-
+  95,   3,  16,   3  ! h2x16T-
+  96,   4,   1,   2  ! h2y01T+
+  97,   4,   3,   2  ! h2y03T+
+  98,   4,   5,   2  ! h2y05T+
+  99,   4,   7,   2  ! h2y07T+
+ 100,   4,   2,   2  ! h2y02T+
+ 101,   4,   4,   2  ! h2y04T+
+ 102,   4,   6,   2  ! h2y06T+
+ 103,   4,   8,   2  ! h2y08T+
+ 104,   4,   9,   2  ! h2y09T+
+ 108,   4,  10,   2  ! h2y10T+
+ 112,   4,   1,   3  ! h2y01T-
+ 113,   4,   3,   3  ! h2y03T-
+ 114,   4,   5,   3  ! h2y05T-
+ 115,   4,   7,   3  ! h2y07T-
+ 116,   4,   2,   3  ! h2y02T-
+ 117,   4,   4,   3  ! h2y04T-
+ 118,   4,   6,   3  ! h2y06T-
+ 119,   4,   8,   3  ! h2y08T-
+ 120,   4,   9,   3  ! h2y09T-
+ 124,   4,  10,   3  ! h2y10T-
+DETECTOR=14
+
+ROC=11
+
+SLOT=7
+  14,   1,   1,   0  ! hCER01
+  15,   1,   2,   0  ! hCER02
+
+
+DETECTOR=15
+
+ROC=11
+
+SLOT=3
+   0,   1,   1,   0  ! hA01+
+   1,   1,   2,   0  ! hA02+
+   2,   1,   3,   0  ! hA03+
+   3,   1,   4,   0  ! hA04+
+   4,   1,   5,   0  ! hA05+
+   5,   1,   6,   0  ! hA06+
+   6,   1,   7,   0  ! hA07+
+   7,   1,   8,   0  ! hA08+
+   8,   1,   9,   0  ! hA09+
+   9,   1,  10,   0  ! hA10+
+  10,   1,  11,   0  ! hA11+
+  11,   1,  12,   0  ! hA12+
+  12,   1,  13,   0  ! hA13+
+  13,   1,   1,   1  ! hA01-
+  14,   1,   2,   1  ! hA02-
+  15,   1,   3,   1  ! hA03-
+
+SLOT=4
+   0,   1,   4,   1  ! hA04-
+   1,   1,   5,   1  ! hA05-
+   2,   1,   6,   1  ! hA06-
+   3,   1,   7,   1  ! hA07-
+   4,   1,   8,   1  ! hA08-
+   5,   1,   9,   1  ! hA09-
+   6,   1,  10,   1  ! hA10-
+   7,   1,  11,   1  ! hA11-
+   8,   1,  12,   1  ! hA12-
+   9,   1,  13,   1  ! hA13-
+  10,   2,   1,   0  ! hB01+
+  11,   2,   2,   0  ! hB02+
+  12,   2,   3,   0  ! hB03+
+  13,   2,   4,   0  ! hB04+
+  14,   2,   5,   0  ! hB05+
+  15,   2,   6,   0  ! hB06+
+
+SLOT=5
+   0,   2,   7,   0  ! hB07+
+   1,   2,   8,   0  ! hB08+
+   2,   2,   9,   0  ! hB09+
+   3,   2,  10,   0  ! hB10+
+   4,   2,  11,   0  ! hB11+
+   5,   2,  12,   0  ! hB12+
+   6,   2,  13,   0  ! hB13+
+   7,   2,   1,   1  ! hB01-
+   8,   2,   2,   1  ! hB02-
+   9,   2,   3,   1  ! hB03-
+  10,   2,   4,   1  ! hB04-
+  11,   2,   5,   1  ! hB05-
+  12,   2,   6,   1  ! hB06-
+  13,   2,   7,   1  ! hB07-
+  14,   2,   8,   1  ! hB08-
+  15,   2,   9,   1  ! hB09-
+
+SLOT=6
+   0,   2,  10,   1  ! hB10-
+   1,   2,  11,   1  ! hB11-
+   2,   2,  12,   1  ! hB12-
+   3,   2,  13,   1  ! hB13-
+   4,   3,   1,   0  ! hC01+
+   5,   3,   2,   0  ! hC02+
+   6,   3,   3,   0  ! hC03+
+   7,   3,   4,   0  ! hC04+
+   8,   3,   5,   0  ! hC05+
+   9,   3,   6,   0  ! hC06+
+  10,   3,   7,   0  ! hC07+
+  11,   3,   8,   0  ! hC08+
+  12,   3,   9,   0  ! hC09+
+  13,   3,  10,   0  ! hC10+
+  14,   3,  11,   0  ! hC11+
+  15,   3,  12,   0  ! hC12+
+
+SLOT=7
+   0,   3,  13,   0  ! hC13+
+   1,   4,   1,   0  ! hD01+
+   2,   4,   2,   0  ! hD02+
+   3,   4,   3,   0  ! hD03+
+   4,   4,   4,   0  ! hD04+
+   5,   4,   5,   0  ! hD05+
+   6,   4,   6,   0  ! hD06+
+   7,   4,   7,   0  ! hD07+
+   8,   4,   8,   0  ! hD08+
+   9,   4,   9,   0  ! hD09+
+  10,   4,  10,   0  ! hD10+
+  11,   4,  11,   0  ! hD11+
+  12,   4,  12,   0  ! hD12+
+  13,   4,  13,   0  ! hD13+
diff --git a/MAPS/HMS/DETEC/hraster_simple.map b/MAPS/HMS/DETEC/hraster_simple.map
new file mode 100644
index 0000000000000000000000000000000000000000..5f27fa719488421e2d661e81b9e8cb0a14a34aab
--- /dev/null
+++ b/MAPS/HMS/DETEC/hraster_simple.map
@@ -0,0 +1,18 @@
+!HMS:
+! THMS_ID=10    ADC,TDC
+
+! Plane = 1 >> ADC Only
+! Plane = 2 >> TDC Only
+
+detector=10
+
+ROC=1
+
+!F250 module
+SLOT=18
+! chan    plane     bar    sig
+     12,      1,      1,     0!  FR-XA
+     13,      1,      2,     0!  FR-XB
+     14,      1,      3,     0!  FR-YA
+     15,      1,      4,     0!  FR-YB
+
diff --git a/MAPS/HMS/DETEC/htrig.map b/MAPS/HMS/DETEC/htrig.map
index 215b7804d4453f23212ea60324271945a9475dd4..679c33f761d052f496c60630ef2a7a3db1ac93fd 100644
--- a/MAPS/HMS/DETEC/htrig.map
+++ b/MAPS/HMS/DETEC/htrig.map
@@ -4,8 +4,7 @@
 ! Plane = 1 >> ADC Only
 ! Plane = 2 >> TDC Only
 
-
-detector=5
+detector=10
 
 ROC=1
 
@@ -45,4 +44,20 @@ SLOT=2
 SLOT=20
 ! D1
 ! chan    plane     bar    sig
-     127,     2,     17      1!  hT2
+     127,     2,     17,      1!  hT2
+
+ROC=3
+
+!CAEN1190 module
+SLOT=5
+! chan    plane     bar    sig
+     111,     2,     18,      1!  hDCREF1
+SLOT=8
+! chan    plane     bar    sig
+     127,     2,     19,      1!  hDCREF2
+SLOT=10
+! chan    plane     bar    sig
+     127,     2,     20,      1!  hDCREF3
+SLOT=17
+! chan    plane     bar    sig
+     127,     2,     21,      1!  hDCREF4
\ No newline at end of file
diff --git a/MAPS/SHMS/DETEC/paero.map b/MAPS/SHMS/DETEC/paero.map
new file mode 100644
index 0000000000000000000000000000000000000000..86e3d37eab424423e462ade9845f085b60b7c6b1
--- /dev/null
+++ b/MAPS/SHMS/DETEC/paero.map
@@ -0,0 +1,24 @@
+! PAERO_ID=25      ::  ::,ADC+,ADC-
+
+
+DETECTOR=25
+
+ROC=2
+
+SLOT=10
+  10,   1,   1,   0  ! pAER01+
+  11,   1,   2,   0  ! pAER02+
+  12,   1,   3,   0  ! pAER03+
+  13,   1,   4,   0  ! pAER04+
+  14,   1,   5,   0  ! pAER05+
+  15,   1,   6,   0  ! pAER06+
+
+SLOT=13
+   0,   1,   7,   0  ! pAER07+
+   1,   1,   1,   1  ! pAER01-
+   2,   1,   2,   1  ! pAER02-
+   3,   1,   3,   1  ! pAER03-
+   4,   1,   4,   1  ! pAER04-
+   5,   1,   5,   1  ! pAER05-
+   6,   1,   6,   1  ! pAER06-
+   7,   1,   7,   1  ! pAER07-
diff --git a/MAPS/SHMS/DETEC/paero_ptrig.map b/MAPS/SHMS/DETEC/paero_ptrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..4371a2f39bec818b16aea1bc046cfd605df0a42c
--- /dev/null
+++ b/MAPS/SHMS/DETEC/paero_ptrig.map
@@ -0,0 +1,83 @@
+! TSHMS_ID=20      ::  ::,ADC,TDC
+! PAERO_ID=25      ::  ::,ADC,TDC
+
+
+DETECTOR=20
+
+ROC=2
+
+SLOT=14
+   0,   1,   1,   0  ! pAERSUM
+   1,   1,   2,   0  ! pHGCSUM
+   2,   1,   3,   0  ! pNGCSUM
+
+SLOT=20
+  15,   2,   1,   1  ! pT1
+
+SLOT=19
+  31,   2,   2,   1  ! pT2
+  32,   2,   3,   1  ! p1X
+  33,   2,   4,   1  ! p1Y
+  34,   2,   5,   1  ! p2X
+  35,   2,   6,   1  ! p2Y
+  36,   2,   7,   1  ! p1T
+  37,   2,   8,   1  ! p2T
+  38,   2,   9,   1  ! pT3
+  39,   2,  10,   1  ! pAERSUM
+  40,   2,  11,   1  ! pHGCSUM
+  41,   2,  12,   1  ! pNGCSUM
+
+ROC=6
+
+SLOT=6
+  79,   2,  13,   1  ! pDCREF1
+
+SLOT=7
+  79,   2,  14,   1  ! pDCREF2
+
+SLOT=8
+  79,   2,  15,   1  ! pDCREF3
+
+SLOT=9
+  79,   2,  16,   1  ! pDCREF4
+
+SLOT=10
+  79,   2,  17,   1  ! pDCREF5
+
+SLOT=11
+  47,   2,  18,   1  ! pDCREF6
+
+SLOT=12
+  47,   2,  19,   1  ! pDCREF7
+
+SLOT=13
+  47,   2,  20,   1  ! pDCREF8
+
+SLOT=14
+  15,   2,  21,   1  ! pDCREF9
+
+SLOT=15
+  47,   2,  22,   1  ! pDCREF10
+
+
+DETECTOR=25
+
+ROC=2
+
+SLOT=10
+  10,   1,   1,   0  ! pAER01+
+  11,   1,   2,   0  ! pAER02+
+  12,   1,   3,   0  ! pAER03+
+  13,   1,   4,   0  ! pAER04+
+  14,   1,   5,   0  ! pAER05+
+  15,   1,   6,   0  ! pAER06+
+
+SLOT=13
+   0,   1,   7,   0  ! pAER07+
+   1,   1,   1,   1  ! pAER01-
+   2,   1,   2,   1  ! pAER02-
+   3,   1,   3,   1  ! pAER03-
+   4,   1,   4,   1  ! pAER04-
+   5,   1,   5,   1  ! pAER05-
+   6,   1,   6,   1  ! pAER06-
+   7,   1,   7,   1  ! pAER07-
diff --git a/MAPS/SHMS/DETEC/pcal.map b/MAPS/SHMS/DETEC/pcal.map
index e833bfbaf21766fe6214d536c59de7d6ae451bfc..96f05754586a8acbf93af81acb2fe57ac87324f5 100644
--- a/MAPS/SHMS/DETEC/pcal.map
+++ b/MAPS/SHMS/DETEC/pcal.map
@@ -1,291 +1,290 @@
-!SHMS
-! SCAL_ID=26              ADC
+! PCAL_ID=26       ::  ADC
+
+
+DETECTOR=26
 
 ROC=4
-detector=26
 
-!F250 modules
 SLOT=3
-! chan   plane    row      sig
-0, 1, 1, 0
-1, 1, 2, 0
-2, 1, 3, 0
-3, 1, 4, 0
-4, 1, 5, 0
-5, 1, 6, 0
-6, 1, 7, 0
-7, 1, 8, 0
-8, 1, 9, 0
-9, 1, 10, 0
-10, 1, 11, 0
-11, 1, 12, 0
-12, 1, 13, 0
-13, 1, 14, 0
+   0,   1,   1,   0  ! pPRSH1+
+   1,   1,   2,   0  ! pPRSH2+
+   2,   1,   3,   0  ! pPRSH3+
+   3,   1,   4,   0  ! pPRSH4+
+   4,   1,   5,   0  ! pPRSH5+
+   5,   1,   6,   0  ! pPRSH6+
+   6,   1,   7,   0  ! pPRSH7+
+   7,   1,   8,   0  ! pPRSH8+
+   8,   1,   9,   0  ! pPRSH9+
+   9,   1,  10,   0  ! pPRSH10+
+  10,   1,  11,   0  ! pPRSH11+
+  11,   1,  12,   0  ! pPRSH12+
+  12,   1,  13,   0  ! pPRSH13+
+  13,   1,  14,   0  ! pPRSH14+
+
 SLOT=4
-! chan   plane    row      sig
-0, 1, 1, 1
-1, 1, 2, 1
-2, 1, 3, 1
-3, 1, 4, 1
-4, 1, 5, 1
-5, 1, 6, 1
-6, 1, 7, 1
-7, 1, 8, 1
-8, 1, 9, 1
-9, 1, 10, 1
-10, 1, 11, 1
-11, 1, 12, 1
-12, 1, 13, 1
-13, 1, 14, 1
+   0,   1,   1,   1  ! pPRSH1-
+   1,   1,   2,   1  ! pPRSH2-
+   2,   1,   3,   1  ! pPRSH3-
+   3,   1,   4,   1  ! pPRSH4-
+   4,   1,   5,   1  ! pPRSH5-
+   5,   1,   6,   1  ! pPRSH6-
+   6,   1,   7,   1  ! pPRSH7-
+   7,   1,   8,   1  ! pPRSH8-
+   8,   1,   9,   1  ! pPRSH9-
+   9,   1,  10,   1  ! pPRSH10-
+  10,   1,  11,   1  ! pPRSH11-
+  11,   1,  12,   1  ! pPRSH12-
+  12,   1,  13,   1  ! pPRSH13-
+  13,   1,  14,   1  ! pPRSH14-
+
 SLOT=5
-! chan   plane    row      sig
-0, 2, 1, 0 ! Row 1, Column 1
-1, 2, 2, 0 ! Row 2, Column 1
-2, 2, 3, 0 ! Row 3, Column 1
-3, 2, 4, 0 ! Row 4, Column 1
-4, 2, 5, 0 ! Row 5, Column 1
-5, 2, 6, 0 ! Row 6, Column 1
-6, 2, 7, 0 ! Row 7, Column 1
-7, 2, 8, 0 ! Row 8, Column 1
-8, 2, 9, 0 ! Row 9, Column 1
-9, 2, 10, 0 ! Row 10, Column 1
-10, 2, 11, 0 ! Row 11, Column 1
-11, 2, 12, 0 ! Row 12, Column 1
-12, 2, 13, 0 ! Row 13, Column 1
-13, 2, 14, 0 ! Row 14, Column 1
-14, 2, 15, 0 ! Row 15, Column 1
-15, 2, 16, 0 ! Row 16, Column 1
+   0,   2,   1,   0  ! Row 1, Column 1
+   1,   2,   2,   0  ! Row 2, Column 1
+   2,   2,   3,   0  ! Row 3, Column 1
+   3,   2,   4,   0  ! Row 4, Column 1
+   4,   2,   5,   0  ! Row 5, Column 1
+   5,   2,   6,   0  ! Row 6, Column 1
+   6,   2,   7,   0  ! Row 7, Column 1
+   7,   2,   8,   0  ! Row 8, Column 1
+   8,   2,   9,   0  ! Row 9, Column 1
+   9,   2,  10,   0  ! Row 10, Column 1
+  10,   2,  11,   0  ! Row 11, Column 1
+  11,   2,  12,   0  ! Row 12, Column 1
+  12,   2,  13,   0  ! Row 13, Column 1
+  13,   2,  14,   0  ! Row 14, Column 1
+  14,   2,  15,   0  ! Row 15, Column 1
+  15,   2,  16,   0  ! Row 16, Column 1
+
 SLOT=6
-! chan   plane    row      sig
-0, 2, 17, 0 ! Row 1, Column 2
-1, 2, 18, 0 ! Row 2, Column 2
-2, 2, 19, 0 ! Row 3, Column 2
-3, 2, 20, 0 ! Row 4, Column 2
-4, 2, 21, 0 ! Row 5, Column 2
-5, 2, 22, 0 ! Row 6, Column 2
-6, 2, 23, 0 ! Row 7, Column 2
-7, 2, 24, 0 ! Row 8, Column 2
-8, 2, 25, 0 ! Row 9, Column 2
-9, 2, 26, 0 ! Row 10, Column 2
-10, 2, 27, 0 ! Row 11, Column 2
-11, 2, 28, 0 ! Row 12, Column 2
-12, 2, 29, 0 ! Row 13, Column 2
-13, 2, 30, 0 ! Row 14, Column 2
-14, 2, 31, 0 ! Row 15, Column 2
-15, 2, 32, 0 ! Row 16, Column 2
+   0,   2,  17,   0  ! Row 1, Column 2
+   1,   2,  18,   0  ! Row 2, Column 2
+   2,   2,  19,   0  ! Row 3, Column 2
+   3,   2,  20,   0  ! Row 4, Column 2
+   4,   2,  21,   0  ! Row 5, Column 2
+   5,   2,  22,   0  ! Row 6, Column 2
+   6,   2,  23,   0  ! Row 7, Column 2
+   7,   2,  24,   0  ! Row 8, Column 2
+   8,   2,  25,   0  ! Row 9, Column 2
+   9,   2,  26,   0  ! Row 10, Column 2
+  10,   2,  27,   0  ! Row 11, Column 2
+  11,   2,  28,   0  ! Row 12, Column 2
+  12,   2,  29,   0  ! Row 13, Column 2
+  13,   2,  30,   0  ! Row 14, Column 2
+  14,   2,  31,   0  ! Row 15, Column 2
+  15,   2,  32,   0  ! Row 16, Column 2
+
 SLOT=7
-! chan   plane    row      sig
-0, 2, 33, 0 ! Row 1, Column 3
-1, 2, 34, 0 ! Row 2, Column 3
-2, 2, 35, 0 ! Row 3, Column 3
-3, 2, 36, 0 ! Row 4, Column 3
-4, 2, 37, 0 ! Row 5, Column 3
-5, 2, 38, 0 ! Row 6, Column 3
-6, 2, 39, 0 ! Row 7, Column 3
-7, 2, 40, 0 ! Row 8, Column 3
-8, 2, 41, 0 ! Row 9, Column 3
-9, 2, 42, 0 ! Row 10, Column 3
-10, 2, 43, 0 ! Row 11, Column 3
-11, 2, 44, 0 ! Row 12, Column 3
-12, 2, 45, 0 ! Row 13, Column 3
-13, 2, 46, 0 ! Row 14, Column 3
-14, 2, 47, 0 ! Row 15, Column 3
-15, 2, 48, 0 ! Row 16, Column 3
+   0,   2,  33,   0  ! Row 1, Column 3
+   1,   2,  34,   0  ! Row 2, Column 3
+   2,   2,  35,   0  ! Row 3, Column 3
+   3,   2,  36,   0  ! Row 4, Column 3
+   4,   2,  37,   0  ! Row 5, Column 3
+   5,   2,  38,   0  ! Row 6, Column 3
+   6,   2,  39,   0  ! Row 7, Column 3
+   7,   2,  40,   0  ! Row 8, Column 3
+   8,   2,  41,   0  ! Row 9, Column 3
+   9,   2,  42,   0  ! Row 10, Column 3
+  10,   2,  43,   0  ! Row 11, Column 3
+  11,   2,  44,   0  ! Row 12, Column 3
+  12,   2,  45,   0  ! Row 13, Column 3
+  13,   2,  46,   0  ! Row 14, Column 3
+  14,   2,  47,   0  ! Row 15, Column 3
+  15,   2,  48,   0  ! Row 16, Column 3
+
 SLOT=8
-! chan   plane    row      sig
-0, 2, 49, 0 ! Row 1, Column 4
-1, 2, 50, 0 ! Row 2, Column 4
-2, 2, 51, 0 ! Row 3, Column 4
-3, 2, 52, 0 ! Row 4, Column 4
-4, 2, 53, 0 ! Row 5, Column 4
-5, 2, 54, 0 ! Row 6, Column 4
-6, 2, 55, 0 ! Row 7, Column 4
-7, 2, 56, 0 ! Row 8, Column 4
-8, 2, 57, 0 ! Row 9, Column 4
-9, 2, 58, 0 ! Row 10, Column 4
-10, 2, 59, 0 ! Row 11, Column 4
-11, 2, 60, 0 ! Row 12, Column 4
-12, 2, 61, 0 ! Row 13, Column 4
-13, 2, 62, 0 ! Row 14, Column 4
-14, 2, 63, 0 ! Row 15, Column 4
-15, 2, 64, 0 ! Row 16, Column 4
+   0,   2,  49,   0  ! Row 1, Column 4
+   1,   2,  50,   0  ! Row 2, Column 4
+   2,   2,  51,   0  ! Row 3, Column 4
+   3,   2,  52,   0  ! Row 4, Column 4
+   4,   2,  53,   0  ! Row 5, Column 4
+   5,   2,  54,   0  ! Row 6, Column 4
+   6,   2,  55,   0  ! Row 7, Column 4
+   7,   2,  56,   0  ! Row 8, Column 4
+   8,   2,  57,   0  ! Row 9, Column 4
+   9,   2,  58,   0  ! Row 10, Column 4
+  10,   2,  59,   0  ! Row 11, Column 4
+  11,   2,  60,   0  ! Row 12, Column 4
+  12,   2,  61,   0  ! Row 13, Column 4
+  13,   2,  62,   0  ! Row 14, Column 4
+  14,   2,  63,   0  ! Row 15, Column 4
+  15,   2,  64,   0  ! Row 16, Column 4
+
 SLOT=9
-! chan   plane    row      sig
-0, 2, 65, 0 ! Row 1, Column 5
-1, 2, 66, 0 ! Row 2, Column 5
-2, 2, 67, 0 ! Row 3, Column 5
-3, 2, 68, 0 ! Row 4, Column 5
-4, 2, 69, 0 ! Row 5, Column 5
-5, 2, 70, 0 ! Row 6, Column 5
-6, 2, 71, 0 ! Row 7, Column 5
-7, 2, 72, 0 ! Row 8, Column 5
-8, 2, 73, 0 ! Row 9, Column 5
-9, 2, 74, 0 ! Row 10, Column 5
-10, 2, 75, 0 ! Row 11, Column 5
-11, 2, 76, 0 ! Row 12, Column 5
-12, 2, 77, 0 ! Row 13, Column 5
-13, 2, 78, 0 ! Row 14, Column 5
-14, 2, 79, 0 ! Row 15, Column 5
-15, 2, 80, 0 ! Row 16, Column 5
+   0,   2,  65,   0  ! Row 1, Column 5
+   1,   2,  66,   0  ! Row 2, Column 5
+   2,   2,  67,   0  ! Row 3, Column 5
+   3,   2,  68,   0  ! Row 4, Column 5
+   4,   2,  69,   0  ! Row 5, Column 5
+   5,   2,  70,   0  ! Row 6, Column 5
+   6,   2,  71,   0  ! Row 7, Column 5
+   7,   2,  72,   0  ! Row 8, Column 5
+   8,   2,  73,   0  ! Row 9, Column 5
+   9,   2,  74,   0  ! Row 10, Column 5
+  10,   2,  75,   0  ! Row 11, Column 5
+  11,   2,  76,   0  ! Row 12, Column 5
+  12,   2,  77,   0  ! Row 13, Column 5
+  13,   2,  78,   0  ! Row 14, Column 5
+  14,   2,  79,   0  ! Row 15, Column 5
+  15,   2,  80,   0  ! Row 16, Column 5
+
 SLOT=10
-! chan   plane    row      sig
-0, 2, 81, 0 ! Row 1, Column 6
-1, 2, 82, 0 ! Row 2, Column 6
-2, 2, 83, 0 ! Row 3, Column 6
-3, 2, 84, 0 ! Row 4, Column 6
-4, 2, 85, 0 ! Row 5, Column 6
-5, 2, 86, 0 ! Row 6, Column 6
-6, 2, 87, 0 ! Row 7, Column 6
-7, 2, 88, 0 ! Row 8, Column 6
-8, 2, 89, 0 ! Row 9, Column 6
-9, 2, 90, 0 ! Row 10, Column 6
-10, 2, 91, 0 ! Row 11, Column 6
-11, 2, 92, 0 ! Row 12, Column 6
-12, 2, 93, 0 ! Row 13, Column 6
-13, 2, 94, 0 ! Row 14, Column 6
-14, 2, 95, 0 ! Row 15, Column 6
-15, 2, 96, 0 ! Row 16, Column 6
+   0,   2,  81,   0  ! Row 1, Column 6
+   1,   2,  82,   0  ! Row 2, Column 6
+   2,   2,  83,   0  ! Row 3, Column 6
+   3,   2,  84,   0  ! Row 4, Column 6
+   4,   2,  85,   0  ! Row 5, Column 6
+   5,   2,  86,   0  ! Row 6, Column 6
+   6,   2,  87,   0  ! Row 7, Column 6
+   7,   2,  88,   0  ! Row 8, Column 6
+   8,   2,  89,   0  ! Row 9, Column 6
+   9,   2,  90,   0  ! Row 10, Column 6
+  10,   2,  91,   0  ! Row 11, Column 6
+  11,   2,  92,   0  ! Row 12, Column 6
+  12,   2,  93,   0  ! Row 13, Column 6
+  13,   2,  94,   0  ! Row 14, Column 6
+  14,   2,  95,   0  ! Row 15, Column 6
+  15,   2,  96,   0  ! Row 16, Column 6
+
 SLOT=13
-! chan   plane    row      sig
-0, 2, 97, 0 ! Row 1, Column 7
-1, 2, 98, 0 ! Row 2, Column 7
-2, 2, 99, 0 ! Row 3, Column 7
-3, 2, 100, 0 ! Row 4, Column 7
-4, 2, 101, 0 ! Row 5, Column 7
-5, 2, 102, 0 ! Row 6, Column 7
-6, 2, 103, 0 ! Row 7, Column 7
-7, 2, 104, 0 ! Row 8, Column 7
-8, 2, 105, 0 ! Row 9, Column 7
-9, 2, 106, 0 ! Row 10, Column 7
-10, 2, 107, 0 ! Row 11, Column 7
-11, 2, 108, 0 ! Row 12, Column 7
-12, 2, 109, 0 ! Row 13, Column 7
-13, 2, 110, 0 ! Row 14, Column 7
-14, 2, 111, 0 ! Row 15, Column 7
-15, 2, 112, 0 ! Row 16, Column 7
+   0,   2,  97,   0  ! Row 1, Column 7
+   1,   2,  98,   0  ! Row 2, Column 7
+   2,   2,  99,   0  ! Row 3, Column 7
+   3,   2, 100,   0  ! Row 4, Column 7
+   4,   2, 101,   0  ! Row 5, Column 7
+   5,   2, 102,   0  ! Row 6, Column 7
+   6,   2, 103,   0  ! Row 7, Column 7
+   7,   2, 104,   0  ! Row 8, Column 7
+   8,   2, 105,   0  ! Row 9, Column 7
+   9,   2, 106,   0  ! Row 10, Column 7
+  10,   2, 107,   0  ! Row 11, Column 7
+  11,   2, 108,   0  ! Row 12, Column 7
+  12,   2, 109,   0  ! Row 13, Column 7
+  13,   2, 110,   0  ! Row 14, Column 7
+  14,   2, 111,   0  ! Row 15, Column 7
+  15,   2, 112,   0  ! Row 16, Column 7
+
 SLOT=14
-! chan   plane    row      sig
-0, 2, 113, 0 ! Row 1, Column 8
-1, 2, 114, 0 ! Row 2, Column 8
-2, 2, 115, 0 ! Row 3, Column 8
-3, 2, 116, 0 ! Row 4, Column 8
-4, 2, 117, 0 ! Row 5, Column 8
-5, 2, 118, 0 ! Row 6, Column 8
-6, 2, 119, 0 ! Row 7, Column 8
-7, 2, 120, 0 ! Row 8, Column 8
-8, 2, 121, 0 ! Row 9, Column 8
-9, 2, 122, 0 ! Row 10, Column 8
-10, 2, 123, 0 ! Row 11, Column 8
-11, 2, 124, 0 ! Row 12, Column 8
-12, 2, 125, 0 ! Row 13, Column 8
-13, 2, 126, 0 ! Row 14, Column 8
-14, 2, 127, 0 ! Row 15, Column 8
-15, 2, 128, 0 ! Row 16, Column 8
+   0,   2, 113,   0  ! Row 1, Column 8
+   1,   2, 114,   0  ! Row 2, Column 8
+   2,   2, 115,   0  ! Row 3, Column 8
+   3,   2, 116,   0  ! Row 4, Column 8
+   4,   2, 117,   0  ! Row 5, Column 8
+   5,   2, 118,   0  ! Row 6, Column 8
+   6,   2, 119,   0  ! Row 7, Column 8
+   7,   2, 120,   0  ! Row 8, Column 8
+   8,   2, 121,   0  ! Row 9, Column 8
+   9,   2, 122,   0  ! Row 10, Column 8
+  10,   2, 123,   0  ! Row 11, Column 8
+  11,   2, 124,   0  ! Row 12, Column 8
+  12,   2, 125,   0  ! Row 13, Column 8
+  13,   2, 126,   0  ! Row 14, Column 8
+  14,   2, 127,   0  ! Row 15, Column 8
+  15,   2, 128,   0  ! Row 16, Column 8
+
 SLOT=15
-! chan   plane    row      sig
-0, 2, 129, 0 ! Row 1, Column 9
-1, 2, 130, 0 ! Row 2, Column 9
-2, 2, 131, 0 ! Row 3, Column 9
-3, 2, 132, 0 ! Row 4, Column 9
-4, 2, 133, 0 ! Row 5, Column 9
-5, 2, 134, 0 ! Row 6, Column 9
-6, 2, 135, 0 ! Row 7, Column 9
-7, 2, 136, 0 ! Row 8, Column 9
-8, 2, 137, 0 ! Row 9, Column 9
-9, 2, 138, 0 ! Row 10, Column 9
-10, 2, 139, 0 ! Row 11, Column 9
-11, 2, 140, 0 ! Row 12, Column 9
-12, 2, 141, 0 ! Row 13, Column 9
-13, 2, 142, 0 ! Row 14, Column 9
-14, 2, 143, 0 ! Row 15, Column 9
-15, 2, 144, 0 ! Row 16, Column 9
+   0,   2, 129,   0  ! Row 1, Column 9
+   1,   2, 130,   0  ! Row 2, Column 9
+   2,   2, 131,   0  ! Row 3, Column 9
+   3,   2, 132,   0  ! Row 4, Column 9
+   4,   2, 133,   0  ! Row 5, Column 9
+   5,   2, 134,   0  ! Row 6, Column 9
+   6,   2, 135,   0  ! Row 7, Column 9
+   7,   2, 136,   0  ! Row 8, Column 9
+   8,   2, 137,   0  ! Row 9, Column 9
+   9,   2, 138,   0  ! Row 10, Column 9
+  10,   2, 139,   0  ! Row 11, Column 9
+  11,   2, 140,   0  ! Row 12, Column 9
+  12,   2, 141,   0  ! Row 13, Column 9
+  13,   2, 142,   0  ! Row 14, Column 9
+  14,   2, 143,   0  ! Row 15, Column 9
+  15,   2, 144,   0  ! Row 16, Column 9
+
 SLOT=16
-! chan   plane    row      sig
-0, 2, 145, 0 ! Row 1, Column 10
-1, 2, 146, 0 ! Row 2, Column 10
-2, 2, 147, 0 ! Row 3, Column 10
-3, 2, 148, 0 ! Row 4, Column 10
-4, 2, 149, 0 ! Row 5, Column 10
-5, 2, 150, 0 ! Row 6, Column 10
-6, 2, 151, 0 ! Row 7, Column 10
-7, 2, 152, 0 ! Row 8, Column 10
-8, 2, 153, 0 ! Row 9, Column 10
-9, 2, 154, 0 ! Row 10, Column 10
-10, 2, 155, 0 ! Row 11, Column 10
-11, 2, 156, 0 ! Row 12, Column 10
-12, 2, 157, 0 ! Row 13, Column 10
-13, 2, 158, 0 ! Row 14, Column 10
-14, 2, 159, 0 ! Row 15, Column 10
-15, 2, 160, 0 ! Row 16, Column 10
+   0,   2, 145,   0  ! Row 1, Column 10
+   1,   2, 146,   0  ! Row 2, Column 10
+   2,   2, 147,   0  ! Row 3, Column 10
+   3,   2, 148,   0  ! Row 4, Column 10
+   4,   2, 149,   0  ! Row 5, Column 10
+   5,   2, 150,   0  ! Row 6, Column 10
+   6,   2, 151,   0  ! Row 7, Column 10
+   7,   2, 152,   0  ! Row 8, Column 10
+   8,   2, 153,   0  ! Row 9, Column 10
+   9,   2, 154,   0  ! Row 10, Column 10
+  10,   2, 155,   0  ! Row 11, Column 10
+  11,   2, 156,   0  ! Row 12, Column 10
+  12,   2, 157,   0  ! Row 13, Column 10
+  13,   2, 158,   0  ! Row 14, Column 10
+  14,   2, 159,   0  ! Row 15, Column 10
+  15,   2, 160,   0  ! Row 16, Column 10
+
 SLOT=17
-! chan   plane    row      sig
-0, 2, 161, 0 ! Row 1, Column 11
-1, 2, 162, 0 ! Row 2, Column 11
-2, 2, 163, 0 ! Row 3, Column 11
-3, 2, 164, 0 ! Row 4, Column 11
-4, 2, 165, 0 ! Row 5, Column 11
-5, 2, 166, 0 ! Row 6, Column 11
-6, 2, 167, 0 ! Row 7, Column 11
-7, 2, 168, 0 ! Row 8, Column 11
-8, 2, 169, 0 ! Row 9, Column 11
-9, 2, 170, 0 ! Row 10, Column 11
-10, 2, 171, 0 ! Row 11, Column 11
-11, 2, 172, 0 ! Row 12, Column 11
-12, 2, 173, 0 ! Row 13, Column 11
-13, 2, 174, 0 ! Row 14, Column 11
-14, 2, 175, 0 ! Row 15, Column 11
-15, 2, 176, 0 ! Row 16, Column 11
+   0,   2, 161,   0  ! Row 1, Column 11
+   1,   2, 162,   0  ! Row 2, Column 11
+   2,   2, 163,   0  ! Row 3, Column 11
+   3,   2, 164,   0  ! Row 4, Column 11
+   4,   2, 165,   0  ! Row 5, Column 11
+   5,   2, 166,   0  ! Row 6, Column 11
+   6,   2, 167,   0  ! Row 7, Column 11
+   7,   2, 168,   0  ! Row 8, Column 11
+   8,   2, 169,   0  ! Row 9, Column 11
+   9,   2, 170,   0  ! Row 10, Column 11
+  10,   2, 171,   0  ! Row 11, Column 11
+  11,   2, 172,   0  ! Row 12, Column 11
+  12,   2, 173,   0  ! Row 13, Column 11
+  13,   2, 174,   0  ! Row 14, Column 11
+  14,   2, 175,   0  ! Row 15, Column 11
+  15,   2, 176,   0  ! Row 16, Column 11
+
 SLOT=18
-! chan   plane    row      sig
-0, 2, 177, 0 ! Row 1, Column 12
-1, 2, 178, 0 ! Row 2, Column 12
-2, 2, 179, 0 ! Row 3, Column 12
-3, 2, 180, 0 ! Row 4, Column 12
-4, 2, 181, 0 ! Row 5, Column 12
-5, 2, 182, 0 ! Row 6, Column 12
-6, 2, 183, 0 ! Row 7, Column 12
-7, 2, 184, 0 ! Row 8, Column 12
-8, 2, 185, 0 ! Row 9, Column 12
-9, 2, 186, 0 ! Row 10, Column 12
-10, 2, 187, 0 ! Row 11, Column 12
-11, 2, 188, 0 ! Row 12, Column 12
-12, 2, 189, 0 ! Row 13, Column 12
-13, 2, 190, 0 ! Row 14, Column 12
-14, 2, 191, 0 ! Row 15, Column 12
-15, 2, 192, 0 ! Row 16, Column 12
+   0,   2, 177,   0  ! Row 1, Column 12
+   1,   2, 178,   0  ! Row 2, Column 12
+   2,   2, 179,   0  ! Row 3, Column 12
+   3,   2, 180,   0  ! Row 4, Column 12
+   4,   2, 181,   0  ! Row 5, Column 12
+   5,   2, 182,   0  ! Row 6, Column 12
+   6,   2, 183,   0  ! Row 7, Column 12
+   7,   2, 184,   0  ! Row 8, Column 12
+   8,   2, 185,   0  ! Row 9, Column 12
+   9,   2, 186,   0  ! Row 10, Column 12
+  10,   2, 187,   0  ! Row 11, Column 12
+  11,   2, 188,   0  ! Row 12, Column 12
+  12,   2, 189,   0  ! Row 13, Column 12
+  13,   2, 190,   0  ! Row 14, Column 12
+  14,   2, 191,   0  ! Row 15, Column 12
+  15,   2, 192,   0  ! Row 16, Column 12
+
 SLOT=19
-! chan   plane    row      sig
-0, 2, 193, 0 ! Row 1, Column 13
-1, 2, 194, 0 ! Row 2, Column 13
-2, 2, 195, 0 ! Row 3, Column 13
-3, 2, 196, 0 ! Row 4, Column 13
-4, 2, 197, 0 ! Row 5, Column 13
-5, 2, 198, 0 ! Row 6, Column 13
-6, 2, 199, 0 ! Row 7, Column 13
-7, 2, 200, 0 ! Row 8, Column 13
-8, 2, 201, 0 ! Row 9, Column 13
-9, 2, 202, 0 ! Row 10, Column 13
-10, 2, 203, 0 ! Row 11, Column 13
-11, 2, 204, 0 ! Row 12, Column 13
-12, 2, 205, 0 ! Row 13, Column 13
-13, 2, 206, 0 ! Row 14, Column 13
-14, 2, 207, 0 ! Row 15, Column 13
-15, 2, 208, 0 ! Row 16, Column 13
+   0,   2, 193,   0  ! Row 1, Column 13
+   1,   2, 194,   0  ! Row 2, Column 13
+   2,   2, 195,   0  ! Row 3, Column 13
+   3,   2, 196,   0  ! Row 4, Column 13
+   4,   2, 197,   0  ! Row 5, Column 13
+   5,   2, 198,   0  ! Row 6, Column 13
+   6,   2, 199,   0  ! Row 7, Column 13
+   7,   2, 200,   0  ! Row 8, Column 13
+   8,   2, 201,   0  ! Row 9, Column 13
+   9,   2, 202,   0  ! Row 10, Column 13
+  10,   2, 203,   0  ! Row 11, Column 13
+  11,   2, 204,   0  ! Row 12, Column 13
+  12,   2, 205,   0  ! Row 13, Column 13
+  13,   2, 206,   0  ! Row 14, Column 13
+  14,   2, 207,   0  ! Row 15, Column 13
+  15,   2, 208,   0  ! Row 16, Column 13
+
 SLOT=20
-! chan   plane    row      sig
-0, 2, 209, 0 ! Row 1, Column 14
-1, 2, 210, 0 ! Row 2, Column 14
-2, 2, 211, 0 ! Row 3, Column 14
-3, 2, 212, 0 ! Row 4, Column 14
-4, 2, 213, 0 ! Row 5, Column 14
-5, 2, 214, 0 ! Row 6, Column 14
-6, 2, 215, 0 ! Row 7, Column 14
-7, 2, 216, 0 ! Row 8, Column 14
-8, 2, 217, 0 ! Row 9, Column 14
-9, 2, 218, 0 ! Row 10, Column 14
-10, 2, 219, 0 ! Row 11, Column 14
-11, 2, 220, 0 ! Row 12, Column 14
-12, 2, 221, 0 ! Row 13, Column 14
-13, 2, 222, 0 ! Row 14, Column 14
-14, 2, 223, 0 ! Row 15, Column 14
-15, 2, 224, 0 ! Row 16, Column 14
\ No newline at end of file
+   0,   2, 209,   0  ! Row 1, Column 14
+   1,   2, 210,   0  ! Row 2, Column 14
+   2,   2, 211,   0  ! Row 3, Column 14
+   3,   2, 212,   0  ! Row 4, Column 14
+   4,   2, 213,   0  ! Row 5, Column 14
+   5,   2, 214,   0  ! Row 6, Column 14
+   6,   2, 215,   0  ! Row 7, Column 14
+   7,   2, 216,   0  ! Row 8, Column 14
+   8,   2, 217,   0  ! Row 9, Column 14
+   9,   2, 218,   0  ! Row 10, Column 14
+  10,   2, 219,   0  ! Row 11, Column 14
+  11,   2, 220,   0  ! Row 12, Column 14
+  12,   2, 221,   0  ! Row 13, Column 14
+  13,   2, 222,   0  ! Row 14, Column 14
+  14,   2, 223,   0  ! Row 15, Column 14
+  15,   2, 224,   0  ! Row 16, Column 14
diff --git a/MAPS/SHMS/DETEC/pdc.map b/MAPS/SHMS/DETEC/pdc.map
index 1125f423bedc9e5db44d9f5953b0a8e05400c570..fec250e4939a3b5b4d1e27612b25a066c1f33b28 100644
--- a/MAPS/SHMS/DETEC/pdc.map
+++ b/MAPS/SHMS/DETEC/pdc.map
@@ -1,1232 +1,1337 @@
-!SHMS:
-! PDC_ID=21               TDC
+! PDC_ID=22        ::  TDC
+
+
+DETECTOR=22  ! SHMS chambers
 
 ROC=6
-detector=21 ! SHMS chambers
 
-! Caen 1190 VME Modules >> DC1
 SLOT=9
-77,1,1 ! Plane U, wire 1
-76,1,2 ! Plane U, wire 2
-75,1,3 ! Plane U, wire 3
-74,1,4 ! Plane U, wire 4
-73,1,5 ! Plane U, wire 5
-72,1,6 ! Plane U, wire 6
-71,1,7 ! Plane U, wire 7
-70,1,8 ! Plane U, wire 8
-69,1,9 ! Plane U, wire 9
-68,1,10 ! Plane U, wire 10
-67,1,11 ! Plane U, wire 11
-66,1,12 ! Plane U, wire 12
-65,1,13 ! Plane U, wire 13
-64,1,14 ! Plane U, wire 14
+REFCHAN=79
+  78,   1,   1  ! DC1, Plane U, wire 1
+  77,   1,   2  ! DC1, Plane U, wire 2
+  76,   1,   3  ! DC1, Plane U, wire 3
+  75,   1,   4  ! DC1, Plane U, wire 4
+  74,   1,   5  ! DC1, Plane U, wire 5
+  73,   1,   6  ! DC1, Plane U, wire 6
+  72,   1,   7  ! DC1, Plane U, wire 7
+  71,   1,   8  ! DC1, Plane U, wire 8
+  70,   1,   9  ! DC1, Plane U, wire 9
+  69,   1,  10  ! DC1, Plane U, wire 10
+  68,   1,  11  ! DC1, Plane U, wire 11
+  67,   1,  12  ! DC1, Plane U, wire 12
+  66,   1,  13  ! DC1, Plane U, wire 13
+  65,   1,  14  ! DC1, Plane U, wire 14
+  64,   1,  15  ! DC1, Plane U, wire 15
+
 SLOT=7
-31,1,15 ! Plane U, wire 15
-30,1,16 ! Plane U, wire 16
-29,1,17 ! Plane U, wire 17
-28,1,18 ! Plane U, wire 18
-27,1,19 ! Plane U, wire 19
-26,1,20 ! Plane U, wire 20
-25,1,21 ! Plane U, wire 21
-24,1,22 ! Plane U, wire 22
-23,1,23 ! Plane U, wire 23
-22,1,24 ! Plane U, wire 24
-21,1,25 ! Plane U, wire 25
-20,1,26 ! Plane U, wire 26
-19,1,27 ! Plane U, wire 27
-18,1,28 ! Plane U, wire 28
-17,1,29 ! Plane U, wire 29
-16,1,30 ! Plane U, wire 30
+REFCHAN=79
+  31,   1,  16  ! DC1, Plane U, wire 16
+  30,   1,  17  ! DC1, Plane U, wire 17
+  29,   1,  18  ! DC1, Plane U, wire 18
+  28,   1,  19  ! DC1, Plane U, wire 19
+  27,   1,  20  ! DC1, Plane U, wire 20
+  26,   1,  21  ! DC1, Plane U, wire 21
+  25,   1,  22  ! DC1, Plane U, wire 22
+  24,   1,  23  ! DC1, Plane U, wire 23
+  23,   1,  24  ! DC1, Plane U, wire 24
+  22,   1,  25  ! DC1, Plane U, wire 25
+  21,   1,  26  ! DC1, Plane U, wire 26
+  20,   1,  27  ! DC1, Plane U, wire 27
+  19,   1,  28  ! DC1, Plane U, wire 28
+  18,   1,  29  ! DC1, Plane U, wire 29
+  17,   1,  30  ! DC1, Plane U, wire 30
+  16,   1,  31  ! DC1, Plane U, wire 31
+
 SLOT=6
-95,1,31 ! Plane U, wire 31
-94,1,32 ! Plane U, wire 32
-93,1,33 ! Plane U, wire 33
-92,1,34 ! Plane U, wire 34
-91,1,35 ! Plane U, wire 35
-90,1,36 ! Plane U, wire 36
-89,1,37 ! Plane U, wire 37
-88,1,38 ! Plane U, wire 38
-87,1,39 ! Plane U, wire 39
-86,1,40 ! Plane U, wire 40
-85,1,41 ! Plane U, wire 41
-84,1,42 ! Plane U, wire 42
-83,1,43 ! Plane U, wire 43
-82,1,44 ! Plane U, wire 44
-81,1,45 ! Plane U, wire 45
-80,1,46 ! Plane U, wire 46
-31,1,47 ! Plane U, wire 47
-30,1,48 ! Plane U, wire 48
-29,1,49 ! Plane U, wire 49
-28,1,50 ! Plane U, wire 50
-27,1,51 ! Plane U, wire 51
-26,1,52 ! Plane U, wire 52
-25,1,53 ! Plane U, wire 53
-24,1,54 ! Plane U, wire 54
-23,1,55 ! Plane U, wire 55
-22,1,56 ! Plane U, wire 56
-21,1,57 ! Plane U, wire 57
-20,1,58 ! Plane U, wire 58
-19,1,59 ! Plane U, wire 59
-18,1,60 ! Plane U, wire 60
-17,1,61 ! Plane U, wire 61
-16,1,62 ! Plane U, wire 62
+REFCHAN=79
+  95,   1,  32  ! DC1, Plane U, wire 32
+  94,   1,  33  ! DC1, Plane U, wire 33
+  93,   1,  34  ! DC1, Plane U, wire 34
+  92,   1,  35  ! DC1, Plane U, wire 35
+  91,   1,  36  ! DC1, Plane U, wire 36
+  90,   1,  37  ! DC1, Plane U, wire 37
+  89,   1,  38  ! DC1, Plane U, wire 38
+  88,   1,  39  ! DC1, Plane U, wire 39
+  87,   1,  40  ! DC1, Plane U, wire 40
+  86,   1,  41  ! DC1, Plane U, wire 41
+  85,   1,  42  ! DC1, Plane U, wire 42
+  84,   1,  43  ! DC1, Plane U, wire 43
+  83,   1,  44  ! DC1, Plane U, wire 44
+  82,   1,  45  ! DC1, Plane U, wire 45
+  81,   1,  46  ! DC1, Plane U, wire 46
+  80,   1,  47  ! DC1, Plane U, wire 47
+  31,   1,  48  ! DC1, Plane U, wire 48
+  30,   1,  49  ! DC1, Plane U, wire 49
+  29,   1,  50  ! DC1, Plane U, wire 50
+  28,   1,  51  ! DC1, Plane U, wire 51
+  27,   1,  52  ! DC1, Plane U, wire 52
+  26,   1,  53  ! DC1, Plane U, wire 53
+  25,   1,  54  ! DC1, Plane U, wire 54
+  24,   1,  55  ! DC1, Plane U, wire 55
+  23,   1,  56  ! DC1, Plane U, wire 56
+  22,   1,  57  ! DC1, Plane U, wire 57
+  21,   1,  58  ! DC1, Plane U, wire 58
+  20,   1,  59  ! DC1, Plane U, wire 59
+  19,   1,  60  ! DC1, Plane U, wire 60
+  18,   1,  61  ! DC1, Plane U, wire 61
+  17,   1,  62  ! DC1, Plane U, wire 62
+  16,   1,  63  ! DC1, Plane U, wire 63
+
 SLOT=8
-112,1,63 ! Plane U, wire 63
-113,1,64 ! Plane U, wire 64
-114,1,65 ! Plane U, wire 65
-115,1,66 ! Plane U, wire 66
-116,1,67 ! Plane U, wire 67
-117,1,68 ! Plane U, wire 68
-118,1,69 ! Plane U, wire 69
-119,1,70 ! Plane U, wire 70
-120,1,71 ! Plane U, wire 71
-121,1,72 ! Plane U, wire 72
-122,1,73 ! Plane U, wire 73
-123,1,74 ! Plane U, wire 74
-124,1,75 ! Plane U, wire 75
-125,1,76 ! Plane U, wire 76
-126,1,77 ! Plane U, wire 77
-127,1,78 ! Plane U, wire 78
-48,1,79 ! Plane U, wire 79
-49,1,80 ! Plane U, wire 80
-50,1,81 ! Plane U, wire 81
-51,1,82 ! Plane U, wire 82
-52,1,83 ! Plane U, wire 83
-53,1,84 ! Plane U, wire 84
-54,1,85 ! Plane U, wire 85
-55,1,86 ! Plane U, wire 86
-56,1,87 ! Plane U, wire 87
-57,1,88 ! Plane U, wire 88
-58,1,89 ! Plane U, wire 89
-59,1,90 ! Plane U, wire 90
-60,1,91 ! Plane U, wire 91
-61,1,92 ! Plane U, wire 92
-62,1,93 ! Plane U, wire 93
+REFCHAN=79
+ 112,   1,  64  ! DC1, Plane U, wire 64
+ 113,   1,  65  ! DC1, Plane U, wire 65
+ 114,   1,  66  ! DC1, Plane U, wire 66
+ 115,   1,  67  ! DC1, Plane U, wire 67
+ 116,   1,  68  ! DC1, Plane U, wire 68
+ 117,   1,  69  ! DC1, Plane U, wire 69
+ 118,   1,  70  ! DC1, Plane U, wire 70
+ 119,   1,  71  ! DC1, Plane U, wire 71
+ 120,   1,  72  ! DC1, Plane U, wire 72
+ 121,   1,  73  ! DC1, Plane U, wire 73
+ 122,   1,  74  ! DC1, Plane U, wire 74
+ 123,   1,  75  ! DC1, Plane U, wire 75
+ 124,   1,  76  ! DC1, Plane U, wire 76
+ 125,   1,  77  ! DC1, Plane U, wire 77
+ 126,   1,  78  ! DC1, Plane U, wire 78
+ 127,   1,  79  ! DC1, Plane U, wire 79
+  48,   1,  80  ! DC1, Plane U, wire 80
+  49,   1,  81  ! DC1, Plane U, wire 81
+  50,   1,  82  ! DC1, Plane U, wire 82
+  51,   1,  83  ! DC1, Plane U, wire 83
+  52,   1,  84  ! DC1, Plane U, wire 84
+  53,   1,  85  ! DC1, Plane U, wire 85
+  54,   1,  86  ! DC1, Plane U, wire 86
+  55,   1,  87  ! DC1, Plane U, wire 87
+  56,   1,  88  ! DC1, Plane U, wire 88
+  57,   1,  89  ! DC1, Plane U, wire 89
+  58,   1,  90  ! DC1, Plane U, wire 90
+  59,   1,  91  ! DC1, Plane U, wire 91
+  60,   1,  92  ! DC1, Plane U, wire 92
+  61,   1,  93  ! DC1, Plane U, wire 93
+  62,   1,  94  ! DC1, Plane U, wire 94
+  63,   1,  95  ! DC1, Plane U, wire 95
+
 SLOT=9
-78,1,94 ! Plane U, wire 94
-112,1,95 ! Plane U, wire 95
-113,1,96 ! Plane U, wire 96
-114,1,97 ! Plane U, wire 97
-115,1,98 ! Plane U, wire 98
-116,1,99 ! Plane U, wire 99
-117,1,100 ! Plane U, wire 100
-118,1,101 ! Plane U, wire 101
-119,1,102 ! Plane U, wire 102
-120,1,103 ! Plane U, wire 103
-121,1,104 ! Plane U, wire 104
-122,1,105 ! Plane U, wire 105
-123,1,106 ! Plane U, wire 106
+REFCHAN=79
+ 112,   1,  96  ! DC1, Plane U, wire 96
+ 113,   1,  97  ! DC1, Plane U, wire 97
+ 114,   1,  98  ! DC1, Plane U, wire 98
+ 115,   1,  99  ! DC1, Plane U, wire 99
+ 116,   1, 100  ! DC1, Plane U, wire 100
+ 117,   1, 101  ! DC1, Plane U, wire 101
+ 118,   1, 102  ! DC1, Plane U, wire 102
+ 119,   1, 103  ! DC1, Plane U, wire 103
+ 120,   1, 104  ! DC1, Plane U, wire 104
+ 121,   1, 105  ! DC1, Plane U, wire 105
+ 122,   1, 106  ! DC1, Plane U, wire 106
+ 123,   1, 107  ! DC1, Plane U, wire 107
+
 SLOT=8
-74,2,1 ! Plane U', wire 1
-73,2,2 ! Plane U', wire 2
-72,2,3 ! Plane U', wire 3
-71,2,4 ! Plane U', wire 4
-70,2,5 ! Plane U', wire 5
-69,2,6 ! Plane U', wire 6
-68,2,7 ! Plane U', wire 7
-67,2,8 ! Plane U', wire 8
-66,2,9 ! Plane U', wire 9
-65,2,10 ! Plane U', wire 10
-64,2,11 ! Plane U', wire 11
+REFCHAN=79
+  75,   2,   1  ! DC1, Plane U', wire 1
+  74,   2,   2  ! DC1, Plane U', wire 2
+  73,   2,   3  ! DC1, Plane U', wire 3
+  72,   2,   4  ! DC1, Plane U', wire 4
+  71,   2,   5  ! DC1, Plane U', wire 5
+  70,   2,   6  ! DC1, Plane U', wire 6
+  69,   2,   7  ! DC1, Plane U', wire 7
+  68,   2,   8  ! DC1, Plane U', wire 8
+  67,   2,   9  ! DC1, Plane U', wire 9
+  66,   2,  10  ! DC1, Plane U', wire 10
+  65,   2,  11  ! DC1, Plane U', wire 11
+  64,   2,  12  ! DC1, Plane U', wire 12
+
 SLOT=6
-127,2,12 ! Plane U', wire 12
-126,2,13 ! Plane U', wire 13
-125,2,14 ! Plane U', wire 14
-124,2,15 ! Plane U', wire 15
-123,2,16 ! Plane U', wire 16
-122,2,17 ! Plane U', wire 17
-121,2,18 ! Plane U', wire 18
-120,2,19 ! Plane U', wire 19
-119,2,20 ! Plane U', wire 20
-118,2,21 ! Plane U', wire 21
-117,2,22 ! Plane U', wire 22
-116,2,23 ! Plane U', wire 23
-115,2,24 ! Plane U', wire 24
-114,2,25 ! Plane U', wire 25
-113,2,26 ! Plane U', wire 26
-112,2,27 ! Plane U', wire 27
-47,2,28 ! Plane U', wire 28
-46,2,29 ! Plane U', wire 29
-45,2,30 ! Plane U', wire 30
-44,2,31 ! Plane U', wire 31
-43,2,32 ! Plane U', wire 32
-42,2,33 ! Plane U', wire 33
-41,2,34 ! Plane U', wire 34
-40,2,35 ! Plane U', wire 35
-39,2,36 ! Plane U', wire 36
-38,2,37 ! Plane U', wire 37
-37,2,38 ! Plane U', wire 38
-36,2,39 ! Plane U', wire 39
-35,2,40 ! Plane U', wire 40
-34,2,41 ! Plane U', wire 41
-33,2,42 ! Plane U', wire 42
-SLOT=8
-75,2,43 ! Plane U', wire 43
+REFCHAN=79
+ 127,   2,  13  ! DC1, Plane U', wire 13
+ 126,   2,  14  ! DC1, Plane U', wire 14
+ 125,   2,  15  ! DC1, Plane U', wire 15
+ 124,   2,  16  ! DC1, Plane U', wire 16
+ 123,   2,  17  ! DC1, Plane U', wire 17
+ 122,   2,  18  ! DC1, Plane U', wire 18
+ 121,   2,  19  ! DC1, Plane U', wire 19
+ 120,   2,  20  ! DC1, Plane U', wire 20
+ 119,   2,  21  ! DC1, Plane U', wire 21
+ 118,   2,  22  ! DC1, Plane U', wire 22
+ 117,   2,  23  ! DC1, Plane U', wire 23
+ 116,   2,  24  ! DC1, Plane U', wire 24
+ 115,   2,  25  ! DC1, Plane U', wire 25
+ 114,   2,  26  ! DC1, Plane U', wire 26
+ 113,   2,  27  ! DC1, Plane U', wire 27
+ 112,   2,  28  ! DC1, Plane U', wire 28
+  47,   2,  29  ! DC1, Plane U', wire 29
+  46,   2,  30  ! DC1, Plane U', wire 30
+  45,   2,  31  ! DC1, Plane U', wire 31
+  44,   2,  32  ! DC1, Plane U', wire 32
+  43,   2,  33  ! DC1, Plane U', wire 33
+  42,   2,  34  ! DC1, Plane U', wire 34
+  41,   2,  35  ! DC1, Plane U', wire 35
+  40,   2,  36  ! DC1, Plane U', wire 36
+  39,   2,  37  ! DC1, Plane U', wire 37
+  38,   2,  38  ! DC1, Plane U', wire 38
+  37,   2,  39  ! DC1, Plane U', wire 39
+  36,   2,  40  ! DC1, Plane U', wire 40
+  35,   2,  41  ! DC1, Plane U', wire 41
+  34,   2,  42  ! DC1, Plane U', wire 42
+  33,   2,  43  ! DC1, Plane U', wire 43
+  32,   2,  44  ! DC1, Plane U', wire 44
+
 SLOT=9
-0,2,44 ! Plane U', wire 44
-1,2,45 ! Plane U', wire 45
-2,2,46 ! Plane U', wire 46
-3,2,47 ! Plane U', wire 47
-4,2,48 ! Plane U', wire 48
-5,2,49 ! Plane U', wire 49
-6,2,50 ! Plane U', wire 50
-7,2,51 ! Plane U', wire 51
-8,2,52 ! Plane U', wire 52
-9,2,53 ! Plane U', wire 53
-10,2,54 ! Plane U', wire 54
-11,2,55 ! Plane U', wire 55
-12,2,56 ! Plane U', wire 56
-13,2,57 ! Plane U', wire 57
-14,2,58 ! Plane U', wire 58
-15,2,59 ! Plane U', wire 59
+REFCHAN=79
+   0,   2,  45  ! DC1, Plane U', wire 45
+   1,   2,  46  ! DC1, Plane U', wire 46
+   2,   2,  47  ! DC1, Plane U', wire 47
+   3,   2,  48  ! DC1, Plane U', wire 48
+   4,   2,  49  ! DC1, Plane U', wire 49
+   5,   2,  50  ! DC1, Plane U', wire 50
+   6,   2,  51  ! DC1, Plane U', wire 51
+   7,   2,  52  ! DC1, Plane U', wire 52
+   8,   2,  53  ! DC1, Plane U', wire 53
+   9,   2,  54  ! DC1, Plane U', wire 54
+  10,   2,  55  ! DC1, Plane U', wire 55
+  11,   2,  56  ! DC1, Plane U', wire 56
+  12,   2,  57  ! DC1, Plane U', wire 57
+  13,   2,  58  ! DC1, Plane U', wire 58
+  14,   2,  59  ! DC1, Plane U', wire 59
+  15,   2,  60  ! DC1, Plane U', wire 60
+
 SLOT=8
-96,2,60 ! Plane U', wire 60
-97,2,61 ! Plane U', wire 61
-98,2,62 ! Plane U', wire 62
-99,2,63 ! Plane U', wire 63
-100,2,64 ! Plane U', wire 64
-101,2,65 ! Plane U', wire 65
-102,2,66 ! Plane U', wire 66
-103,2,67 ! Plane U', wire 67
-104,2,68 ! Plane U', wire 68
-105,2,69 ! Plane U', wire 69
-106,2,70 ! Plane U', wire 70
-107,2,71 ! Plane U', wire 71
-108,2,72 ! Plane U', wire 72
-109,2,73 ! Plane U', wire 73
-110,2,74 ! Plane U', wire 74
-111,2,75 ! Plane U', wire 75
+REFCHAN=79
+  96,   2,  61  ! DC1, Plane U', wire 61
+  97,   2,  62  ! DC1, Plane U', wire 62
+  98,   2,  63  ! DC1, Plane U', wire 63
+  99,   2,  64  ! DC1, Plane U', wire 64
+ 100,   2,  65  ! DC1, Plane U', wire 65
+ 101,   2,  66  ! DC1, Plane U', wire 66
+ 102,   2,  67  ! DC1, Plane U', wire 67
+ 103,   2,  68  ! DC1, Plane U', wire 68
+ 104,   2,  69  ! DC1, Plane U', wire 69
+ 105,   2,  70  ! DC1, Plane U', wire 70
+ 106,   2,  71  ! DC1, Plane U', wire 71
+ 107,   2,  72  ! DC1, Plane U', wire 72
+ 108,   2,  73  ! DC1, Plane U', wire 73
+ 109,   2,  74  ! DC1, Plane U', wire 74
+ 110,   2,  75  ! DC1, Plane U', wire 75
+ 111,   2,  76  ! DC1, Plane U', wire 76
+
 SLOT=10
-80,2,76 ! Plane U', wire 76
-81,2,77 ! Plane U', wire 77
-82,2,78 ! Plane U', wire 78
-83,2,79 ! Plane U', wire 79
-84,2,80 ! Plane U', wire 80
-85,2,81 ! Plane U', wire 81
-86,2,82 ! Plane U', wire 82
-87,2,83 ! Plane U', wire 83
-88,2,84 ! Plane U', wire 84
-89,2,85 ! Plane U', wire 85
-90,2,86 ! Plane U', wire 86
-91,2,87 ! Plane U', wire 87
-92,2,88 ! Plane U', wire 88
-93,2,89 ! Plane U', wire 89
-94,2,90 ! Plane U', wire 90
-95,2,91 ! Plane U', wire 91
-16,2,92 ! Plane U', wire 92
-17,2,93 ! Plane U', wire 93
-18,2,94 ! Plane U', wire 94
-19,2,95 ! Plane U', wire 95
-20,2,96 ! Plane U', wire 96
-21,2,97 ! Plane U', wire 97
-22,2,98 ! Plane U', wire 98
-23,2,99 ! Plane U', wire 99
-24,2,100 ! Plane U', wire 100
-25,2,101 ! Plane U', wire 101
-26,2,102 ! Plane U', wire 102
-27,2,103 ! Plane U', wire 103
-28,2,104 ! Plane U', wire 104
-29,2,105 ! Plane U', wire 105
-30,2,106 ! Plane U', wire 106
+REFCHAN=79
+  80,   2,  77  ! DC1, Plane U', wire 77
+  81,   2,  78  ! DC1, Plane U', wire 78
+  82,   2,  79  ! DC1, Plane U', wire 79
+  83,   2,  80  ! DC1, Plane U', wire 80
+  84,   2,  81  ! DC1, Plane U', wire 81
+  85,   2,  82  ! DC1, Plane U', wire 82
+  86,   2,  83  ! DC1, Plane U', wire 83
+  87,   2,  84  ! DC1, Plane U', wire 84
+  88,   2,  85  ! DC1, Plane U', wire 85
+  89,   2,  86  ! DC1, Plane U', wire 86
+  90,   2,  87  ! DC1, Plane U', wire 87
+  91,   2,  88  ! DC1, Plane U', wire 88
+  92,   2,  89  ! DC1, Plane U', wire 89
+  93,   2,  90  ! DC1, Plane U', wire 90
+  94,   2,  91  ! DC1, Plane U', wire 91
+  95,   2,  92  ! DC1, Plane U', wire 92
+  16,   2,  93  ! DC1, Plane U', wire 93
+  17,   2,  94  ! DC1, Plane U', wire 94
+  18,   2,  95  ! DC1, Plane U', wire 95
+  19,   2,  96  ! DC1, Plane U', wire 96
+  20,   2,  97  ! DC1, Plane U', wire 97
+  21,   2,  98  ! DC1, Plane U', wire 98
+  22,   2,  99  ! DC1, Plane U', wire 99
+  23,   2, 100  ! DC1, Plane U', wire 100
+  24,   2, 101  ! DC1, Plane U', wire 101
+  25,   2, 102  ! DC1, Plane U', wire 102
+  26,   2, 103  ! DC1, Plane U', wire 103
+  27,   2, 104  ! DC1, Plane U', wire 104
+  28,   2, 105  ! DC1, Plane U', wire 105
+  29,   2, 106  ! DC1, Plane U', wire 106
+  30,   2, 107  ! DC1, Plane U', wire 107
+
 SLOT=9
-45,5,1 ! Plane V, wire 1
-44,5,2 ! Plane V, wire 2
-43,5,3 ! Plane V, wire 3
-42,5,4 ! Plane V, wire 4
-41,5,5 ! Plane V, wire 5
-40,5,6 ! Plane V, wire 6
-39,5,7 ! Plane V, wire 7
-38,5,8 ! Plane V, wire 8
-37,5,9 ! Plane V, wire 9
-36,5,10 ! Plane V, wire 10
-35,5,11 ! Plane V, wire 11
-34,5,12 ! Plane V, wire 12
-33,5,13 ! Plane V, wire 13
-32,5,14 ! Plane V, wire 14
+REFCHAN=79
+  46,   5,   1  ! DC1, Plane V, wire 1
+  45,   5,   2  ! DC1, Plane V, wire 2
+  44,   5,   3  ! DC1, Plane V, wire 3
+  43,   5,   4  ! DC1, Plane V, wire 4
+  42,   5,   5  ! DC1, Plane V, wire 5
+  41,   5,   6  ! DC1, Plane V, wire 6
+  40,   5,   7  ! DC1, Plane V, wire 7
+  39,   5,   8  ! DC1, Plane V, wire 8
+  38,   5,   9  ! DC1, Plane V, wire 9
+  37,   5,  10  ! DC1, Plane V, wire 10
+  36,   5,  11  ! DC1, Plane V, wire 11
+  35,   5,  12  ! DC1, Plane V, wire 12
+  34,   5,  13  ! DC1, Plane V, wire 13
+  33,   5,  14  ! DC1, Plane V, wire 14
+  32,   5,  15  ! DC1, Plane V, wire 15
+
 SLOT=8
-31,5,15 ! Plane V, wire 15
-30,5,16 ! Plane V, wire 16
-29,5,17 ! Plane V, wire 17
-28,5,18 ! Plane V, wire 18
-27,5,19 ! Plane V, wire 19
-26,5,20 ! Plane V, wire 20
-25,5,21 ! Plane V, wire 21
-24,5,22 ! Plane V, wire 22
-23,5,23 ! Plane V, wire 23
-22,5,24 ! Plane V, wire 24
-21,5,25 ! Plane V, wire 25
-20,5,26 ! Plane V, wire 26
-19,5,27 ! Plane V, wire 27
-18,5,28 ! Plane V, wire 28
-17,5,29 ! Plane V, wire 29
-16,5,30 ! Plane V, wire 30
+REFCHAN=79
+  31,   5,  16  ! DC1, Plane V, wire 16
+  30,   5,  17  ! DC1, Plane V, wire 17
+  29,   5,  18  ! DC1, Plane V, wire 18
+  28,   5,  19  ! DC1, Plane V, wire 19
+  27,   5,  20  ! DC1, Plane V, wire 20
+  26,   5,  21  ! DC1, Plane V, wire 21
+  25,   5,  22  ! DC1, Plane V, wire 22
+  24,   5,  23  ! DC1, Plane V, wire 23
+  23,   5,  24  ! DC1, Plane V, wire 24
+  22,   5,  25  ! DC1, Plane V, wire 25
+  21,   5,  26  ! DC1, Plane V, wire 26
+  20,   5,  27  ! DC1, Plane V, wire 27
+  19,   5,  28  ! DC1, Plane V, wire 28
+  18,   5,  29  ! DC1, Plane V, wire 29
+  17,   5,  30  ! DC1, Plane V, wire 30
+  16,   5,  31  ! DC1, Plane V, wire 31
+
 SLOT=10
-15,5,31 ! Plane V, wire 31
-14,5,32 ! Plane V, wire 32
-13,5,33 ! Plane V, wire 33
-12,5,34 ! Plane V, wire 34
-11,5,35 ! Plane V, wire 35
-10,5,36 ! Plane V, wire 36
-9,5,37 ! Plane V, wire 37
-8,5,38 ! Plane V, wire 38
-7,5,39 ! Plane V, wire 39
-6,5,40 ! Plane V, wire 40
-5,5,41 ! Plane V, wire 41
-4,5,42 ! Plane V, wire 42
-3,5,43 ! Plane V, wire 43
-2,5,44 ! Plane V, wire 44
-1,5,45 ! Plane V, wire 45
-0,5,46 ! Plane V, wire 46
+REFCHAN=79
+  15,   5,  32  ! DC1, Plane V, wire 32
+  14,   5,  33  ! DC1, Plane V, wire 33
+  13,   5,  34  ! DC1, Plane V, wire 34
+  12,   5,  35  ! DC1, Plane V, wire 35
+  11,   5,  36  ! DC1, Plane V, wire 36
+  10,   5,  37  ! DC1, Plane V, wire 37
+   9,   5,  38  ! DC1, Plane V, wire 38
+   8,   5,  39  ! DC1, Plane V, wire 39
+   7,   5,  40  ! DC1, Plane V, wire 40
+   6,   5,  41  ! DC1, Plane V, wire 41
+   5,   5,  42  ! DC1, Plane V, wire 42
+   4,   5,  43  ! DC1, Plane V, wire 43
+   3,   5,  44  ! DC1, Plane V, wire 44
+   2,   5,  45  ! DC1, Plane V, wire 45
+   1,   5,  46  ! DC1, Plane V, wire 46
+   0,   5,  47  ! DC1, Plane V, wire 47
+
 SLOT=9
-63,5,47 ! Plane V, wire 47
-62,5,48 ! Plane V, wire 48
-61,5,49 ! Plane V, wire 49
-60,5,50 ! Plane V, wire 50
-59,5,51 ! Plane V, wire 51
-58,5,52 ! Plane V, wire 52
-57,5,53 ! Plane V, wire 53
-56,5,54 ! Plane V, wire 54
-55,5,55 ! Plane V, wire 55
-54,5,56 ! Plane V, wire 56
-53,5,57 ! Plane V, wire 57
-52,5,58 ! Plane V, wire 58
-51,5,59 ! Plane V, wire 59
-50,5,60 ! Plane V, wire 60
-49,5,61 ! Plane V, wire 61
-48,5,62 ! Plane V, wire 62
+REFCHAN=79
+  63,   5,  48  ! DC1, Plane V, wire 48
+  62,   5,  49  ! DC1, Plane V, wire 49
+  61,   5,  50  ! DC1, Plane V, wire 50
+  60,   5,  51  ! DC1, Plane V, wire 51
+  59,   5,  52  ! DC1, Plane V, wire 52
+  58,   5,  53  ! DC1, Plane V, wire 53
+  57,   5,  54  ! DC1, Plane V, wire 54
+  56,   5,  55  ! DC1, Plane V, wire 55
+  55,   5,  56  ! DC1, Plane V, wire 56
+  54,   5,  57  ! DC1, Plane V, wire 57
+  53,   5,  58  ! DC1, Plane V, wire 58
+  52,   5,  59  ! DC1, Plane V, wire 59
+  51,   5,  60  ! DC1, Plane V, wire 60
+  50,   5,  61  ! DC1, Plane V, wire 61
+  49,   5,  62  ! DC1, Plane V, wire 62
+  48,   5,  63  ! DC1, Plane V, wire 63
+
 SLOT=7
-32,5,63 ! Plane V, wire 63
-33,5,64 ! Plane V, wire 64
-34,5,65 ! Plane V, wire 65
-35,5,66 ! Plane V, wire 66
-36,5,67 ! Plane V, wire 67
-37,5,68 ! Plane V, wire 68
-38,5,69 ! Plane V, wire 69
-39,5,70 ! Plane V, wire 70
-40,5,71 ! Plane V, wire 71
-41,5,72 ! Plane V, wire 72
-42,5,73 ! Plane V, wire 73
-43,5,74 ! Plane V, wire 74
-44,5,75 ! Plane V, wire 75
-45,5,76 ! Plane V, wire 76
-46,5,77 ! Plane V, wire 77
-47,5,78 ! Plane V, wire 78
-96,5,79 ! Plane V, wire 79
-97,5,80 ! Plane V, wire 80
-98,5,81 ! Plane V, wire 81
-99,5,82 ! Plane V, wire 82
-100,5,83 ! Plane V, wire 83
-101,5,84 ! Plane V, wire 84
-102,5,85 ! Plane V, wire 85
-103,5,86 ! Plane V, wire 86
-104,5,87 ! Plane V, wire 87
-105,5,88 ! Plane V, wire 88
-106,5,89 ! Plane V, wire 89
-107,5,90 ! Plane V, wire 90
-108,5,91 ! Plane V, wire 91
-109,5,92 ! Plane V, wire 92
-110,5,93 ! Plane V, wire 93
-111,5,94 ! Plane V, wire 94
-64,5,95 ! Plane V, wire 95
-65,5,96 ! Plane V, wire 96
-66,5,97 ! Plane V, wire 97
-67,5,98 ! Plane V, wire 98
-68,5,99 ! Plane V, wire 99
-69,5,100 ! Plane V, wire 100
-70,5,101 ! Plane V, wire 101
-71,5,102 ! Plane V, wire 102
-72,5,103 ! Plane V, wire 103
-73,5,104 ! Plane V, wire 104
-74,5,105 ! Plane V, wire 105
-SLOT=9
-46,5,106 ! Plane V, wire 106
+REFCHAN=79
+  32,   5,  64  ! DC1, Plane V, wire 64
+  33,   5,  65  ! DC1, Plane V, wire 65
+  34,   5,  66  ! DC1, Plane V, wire 66
+  35,   5,  67  ! DC1, Plane V, wire 67
+  36,   5,  68  ! DC1, Plane V, wire 68
+  37,   5,  69  ! DC1, Plane V, wire 69
+  38,   5,  70  ! DC1, Plane V, wire 70
+  39,   5,  71  ! DC1, Plane V, wire 71
+  40,   5,  72  ! DC1, Plane V, wire 72
+  41,   5,  73  ! DC1, Plane V, wire 73
+  42,   5,  74  ! DC1, Plane V, wire 74
+  43,   5,  75  ! DC1, Plane V, wire 75
+  44,   5,  76  ! DC1, Plane V, wire 76
+  45,   5,  77  ! DC1, Plane V, wire 77
+  46,   5,  78  ! DC1, Plane V, wire 78
+  47,   5,  79  ! DC1, Plane V, wire 79
+  96,   5,  80  ! DC1, Plane V, wire 80
+  97,   5,  81  ! DC1, Plane V, wire 81
+  98,   5,  82  ! DC1, Plane V, wire 82
+  99,   5,  83  ! DC1, Plane V, wire 83
+ 100,   5,  84  ! DC1, Plane V, wire 84
+ 101,   5,  85  ! DC1, Plane V, wire 85
+ 102,   5,  86  ! DC1, Plane V, wire 86
+ 103,   5,  87  ! DC1, Plane V, wire 87
+ 104,   5,  88  ! DC1, Plane V, wire 88
+ 105,   5,  89  ! DC1, Plane V, wire 89
+ 106,   5,  90  ! DC1, Plane V, wire 90
+ 107,   5,  91  ! DC1, Plane V, wire 91
+ 108,   5,  92  ! DC1, Plane V, wire 92
+ 109,   5,  93  ! DC1, Plane V, wire 93
+ 110,   5,  94  ! DC1, Plane V, wire 94
+ 111,   5,  95  ! DC1, Plane V, wire 95
+  64,   5,  96  ! DC1, Plane V, wire 96
+  65,   5,  97  ! DC1, Plane V, wire 97
+  66,   5,  98  ! DC1, Plane V, wire 98
+  67,   5,  99  ! DC1, Plane V, wire 99
+  68,   5, 100  ! DC1, Plane V, wire 100
+  69,   5, 101  ! DC1, Plane V, wire 101
+  70,   5, 102  ! DC1, Plane V, wire 102
+  71,   5, 103  ! DC1, Plane V, wire 103
+  72,   5, 104  ! DC1, Plane V, wire 104
+  73,   5, 105  ! DC1, Plane V, wire 105
+  74,   5, 106  ! DC1, Plane V, wire 106
+  75,   5, 107  ! DC1, Plane V, wire 107
+
 SLOT=10
-74,6,1 ! Plane V', wire 1
-73,6,2 ! Plane V', wire 2
-72,6,3 ! Plane V', wire 3
-71,6,4 ! Plane V', wire 4
-70,6,5 ! Plane V', wire 5
-69,6,6 ! Plane V', wire 6
-68,6,7 ! Plane V', wire 7
-67,6,8 ! Plane V', wire 8
-66,6,9 ! Plane V', wire 9
-65,6,10 ! Plane V', wire 10
-64,6,11 ! Plane V', wire 11
-47,6,12 ! Plane V', wire 12
-46,6,13 ! Plane V', wire 13
-45,6,14 ! Plane V', wire 14
-44,6,15 ! Plane V', wire 15
-43,6,16 ! Plane V', wire 16
-42,6,17 ! Plane V', wire 17
-41,6,18 ! Plane V', wire 18
-40,6,19 ! Plane V', wire 19
-39,6,20 ! Plane V', wire 20
-38,6,21 ! Plane V', wire 21
-37,6,22 ! Plane V', wire 22
-36,6,23 ! Plane V', wire 23
-35,6,24 ! Plane V', wire 24
-34,6,25 ! Plane V', wire 25
-33,6,26 ! Plane V', wire 26
-32,6,27 ! Plane V', wire 27
+REFCHAN=79
+  75,   6,   1  ! DC1, Plane V', wire 1
+  74,   6,   2  ! DC1, Plane V', wire 2
+  73,   6,   3  ! DC1, Plane V', wire 3
+  72,   6,   4  ! DC1, Plane V', wire 4
+  71,   6,   5  ! DC1, Plane V', wire 5
+  70,   6,   6  ! DC1, Plane V', wire 6
+  69,   6,   7  ! DC1, Plane V', wire 7
+  68,   6,   8  ! DC1, Plane V', wire 8
+  67,   6,   9  ! DC1, Plane V', wire 9
+  66,   6,  10  ! DC1, Plane V', wire 10
+  65,   6,  11  ! DC1, Plane V', wire 11
+  64,   6,  12  ! DC1, Plane V', wire 12
+  47,   6,  13  ! DC1, Plane V', wire 13
+  46,   6,  14  ! DC1, Plane V', wire 14
+  45,   6,  15  ! DC1, Plane V', wire 15
+  44,   6,  16  ! DC1, Plane V', wire 16
+  43,   6,  17  ! DC1, Plane V', wire 17
+  42,   6,  18  ! DC1, Plane V', wire 18
+  41,   6,  19  ! DC1, Plane V', wire 19
+  40,   6,  20  ! DC1, Plane V', wire 20
+  39,   6,  21  ! DC1, Plane V', wire 21
+  38,   6,  22  ! DC1, Plane V', wire 22
+  37,   6,  23  ! DC1, Plane V', wire 23
+  36,   6,  24  ! DC1, Plane V', wire 24
+  35,   6,  25  ! DC1, Plane V', wire 25
+  34,   6,  26  ! DC1, Plane V', wire 26
+  33,   6,  27  ! DC1, Plane V', wire 27
+  32,   6,  28  ! DC1, Plane V', wire 28
+
 SLOT=9
-111,6,28 ! Plane V', wire 28
-110,6,29 ! Plane V', wire 29
-109,6,30 ! Plane V', wire 30
-108,6,31 ! Plane V', wire 31
-107,6,32 ! Plane V', wire 32
-106,6,33 ! Plane V', wire 33
-105,6,34 ! Plane V', wire 34
-104,6,35 ! Plane V', wire 35
-103,6,36 ! Plane V', wire 36
-102,6,37 ! Plane V', wire 37
-101,6,38 ! Plane V', wire 38
-100,6,39 ! Plane V', wire 39
-99,6,40 ! Plane V', wire 40
-98,6,41 ! Plane V', wire 41
-97,6,42 ! Plane V', wire 42
-96,6,43 ! Plane V', wire 43
+REFCHAN=79
+ 111,   6,  29  ! DC1, Plane V', wire 29
+ 110,   6,  30  ! DC1, Plane V', wire 30
+ 109,   6,  31  ! DC1, Plane V', wire 31
+ 108,   6,  32  ! DC1, Plane V', wire 32
+ 107,   6,  33  ! DC1, Plane V', wire 33
+ 106,   6,  34  ! DC1, Plane V', wire 34
+ 105,   6,  35  ! DC1, Plane V', wire 35
+ 104,   6,  36  ! DC1, Plane V', wire 36
+ 103,   6,  37  ! DC1, Plane V', wire 37
+ 102,   6,  38  ! DC1, Plane V', wire 38
+ 101,   6,  39  ! DC1, Plane V', wire 39
+ 100,   6,  40  ! DC1, Plane V', wire 40
+  99,   6,  41  ! DC1, Plane V', wire 41
+  98,   6,  42  ! DC1, Plane V', wire 42
+  97,   6,  43  ! DC1, Plane V', wire 43
+  96,   6,  44  ! DC1, Plane V', wire 44
+
 SLOT=8
-80,6,44 ! Plane V', wire 44
-81,6,45 ! Plane V', wire 45
-82,6,46 ! Plane V', wire 46
-83,6,47 ! Plane V', wire 47
-84,6,48 ! Plane V', wire 48
-85,6,49 ! Plane V', wire 49
-86,6,50 ! Plane V', wire 50
-87,6,51 ! Plane V', wire 51
-88,6,52 ! Plane V', wire 52
-89,6,53 ! Plane V', wire 53
-90,6,54 ! Plane V', wire 54
-91,6,55 ! Plane V', wire 55
-92,6,56 ! Plane V', wire 56
-93,6,57 ! Plane V', wire 57
-94,6,58 ! Plane V', wire 58
-95,6,59 ! Plane V', wire 59
+REFCHAN=79
+  80,   6,  45  ! DC1, Plane V', wire 45
+  81,   6,  46  ! DC1, Plane V', wire 46
+  82,   6,  47  ! DC1, Plane V', wire 47
+  83,   6,  48  ! DC1, Plane V', wire 48
+  84,   6,  49  ! DC1, Plane V', wire 49
+  85,   6,  50  ! DC1, Plane V', wire 50
+  86,   6,  51  ! DC1, Plane V', wire 51
+  87,   6,  52  ! DC1, Plane V', wire 52
+  88,   6,  53  ! DC1, Plane V', wire 53
+  89,   6,  54  ! DC1, Plane V', wire 54
+  90,   6,  55  ! DC1, Plane V', wire 55
+  91,   6,  56  ! DC1, Plane V', wire 56
+  92,   6,  57  ! DC1, Plane V', wire 57
+  93,   6,  58  ! DC1, Plane V', wire 58
+  94,   6,  59  ! DC1, Plane V', wire 59
+  95,   6,  60  ! DC1, Plane V', wire 60
+
 SLOT=7
-112,6,60 ! Plane V', wire 60
-113,6,61 ! Plane V', wire 61
-114,6,62 ! Plane V', wire 62
-115,6,63 ! Plane V', wire 63
-116,6,64 ! Plane V', wire 64
-117,6,65 ! Plane V', wire 65
-118,6,66 ! Plane V', wire 66
-119,6,67 ! Plane V', wire 67
-120,6,68 ! Plane V', wire 68
-121,6,69 ! Plane V', wire 69
-122,6,70 ! Plane V', wire 70
-123,6,71 ! Plane V', wire 71
-124,6,72 ! Plane V', wire 72
-125,6,73 ! Plane V', wire 73
-126,6,74 ! Plane V', wire 74
-127,6,75 ! Plane V', wire 75
-80,6,76 ! Plane V', wire 76
-81,6,77 ! Plane V', wire 77
-82,6,78 ! Plane V', wire 78
-83,6,79 ! Plane V', wire 79
-84,6,80 ! Plane V', wire 80
-85,6,81 ! Plane V', wire 81
-86,6,82 ! Plane V', wire 82
-87,6,83 ! Plane V', wire 83
-88,6,84 ! Plane V', wire 84
-89,6,85 ! Plane V', wire 85
-90,6,86 ! Plane V', wire 86
-91,6,87 ! Plane V', wire 87
-92,6,88 ! Plane V', wire 88
-93,6,89 ! Plane V', wire 89
-94,6,90 ! Plane V', wire 90
-95,6,91 ! Plane V', wire 91
+REFCHAN=79
+ 112,   6,  61  ! DC1, Plane V', wire 61
+ 113,   6,  62  ! DC1, Plane V', wire 62
+ 114,   6,  63  ! DC1, Plane V', wire 63
+ 115,   6,  64  ! DC1, Plane V', wire 64
+ 116,   6,  65  ! DC1, Plane V', wire 65
+ 117,   6,  66  ! DC1, Plane V', wire 66
+ 118,   6,  67  ! DC1, Plane V', wire 67
+ 119,   6,  68  ! DC1, Plane V', wire 68
+ 120,   6,  69  ! DC1, Plane V', wire 69
+ 121,   6,  70  ! DC1, Plane V', wire 70
+ 122,   6,  71  ! DC1, Plane V', wire 71
+ 123,   6,  72  ! DC1, Plane V', wire 72
+ 124,   6,  73  ! DC1, Plane V', wire 73
+ 125,   6,  74  ! DC1, Plane V', wire 74
+ 126,   6,  75  ! DC1, Plane V', wire 75
+ 127,   6,  76  ! DC1, Plane V', wire 76
+  80,   6,  77  ! DC1, Plane V', wire 77
+  81,   6,  78  ! DC1, Plane V', wire 78
+  82,   6,  79  ! DC1, Plane V', wire 79
+  83,   6,  80  ! DC1, Plane V', wire 80
+  84,   6,  81  ! DC1, Plane V', wire 81
+  85,   6,  82  ! DC1, Plane V', wire 82
+  86,   6,  83  ! DC1, Plane V', wire 83
+  87,   6,  84  ! DC1, Plane V', wire 84
+  88,   6,  85  ! DC1, Plane V', wire 85
+  89,   6,  86  ! DC1, Plane V', wire 86
+  90,   6,  87  ! DC1, Plane V', wire 87
+  91,   6,  88  ! DC1, Plane V', wire 88
+  92,   6,  89  ! DC1, Plane V', wire 89
+  93,   6,  90  ! DC1, Plane V', wire 90
+  94,   6,  91  ! DC1, Plane V', wire 91
+  95,   6,  92  ! DC1, Plane V', wire 92
+
 SLOT=6
-64,6,92 ! Plane V', wire 92
-65,6,93 ! Plane V', wire 93
-66,6,94 ! Plane V', wire 94
-67,6,95 ! Plane V', wire 95
-68,6,96 ! Plane V', wire 96
-69,6,97 ! Plane V', wire 97
-70,6,98 ! Plane V', wire 98
-71,6,99 ! Plane V', wire 99
-72,6,100 ! Plane V', wire 100
-73,6,101 ! Plane V', wire 101
-74,6,102 ! Plane V', wire 102
-75,6,103 ! Plane V', wire 103
-76,6,104 ! Plane V', wire 104
-77,6,105 ! Plane V', wire 105
-SLOT=10
-75,6,106 ! Plane V', wire 106
+REFCHAN=79
+  64,   6,  93  ! DC1, Plane V', wire 93
+  65,   6,  94  ! DC1, Plane V', wire 94
+  66,   6,  95  ! DC1, Plane V', wire 95
+  67,   6,  96  ! DC1, Plane V', wire 96
+  68,   6,  97  ! DC1, Plane V', wire 97
+  69,   6,  98  ! DC1, Plane V', wire 98
+  70,   6,  99  ! DC1, Plane V', wire 99
+  71,   6, 100  ! DC1, Plane V', wire 100
+  72,   6, 101  ! DC1, Plane V', wire 101
+  73,   6, 102  ! DC1, Plane V', wire 102
+  74,   6, 103  ! DC1, Plane V', wire 103
+  75,   6, 104  ! DC1, Plane V', wire 104
+  76,   6, 105  ! DC1, Plane V', wire 105
+  77,   6, 106  ! DC1, Plane V', wire 106
+  78,   6, 107  ! DC1, Plane V', wire 107
+
 SLOT=8
-14,3,1 ! Plane X, wire 1
-13,3,2 ! Plane X, wire 2
-12,3,3 ! Plane X, wire 3
-11,3,4 ! Plane X, wire 4
-10,3,5 ! Plane X, wire 5
-9,3,6 ! Plane X, wire 6
-8,3,7 ! Plane X, wire 7
-7,3,8 ! Plane X, wire 8
-6,3,9 ! Plane X, wire 9
-5,3,10 ! Plane X, wire 10
-4,3,11 ! Plane X, wire 11
-3,3,12 ! Plane X, wire 12
-2,3,13 ! Plane X, wire 13
-1,3,14 ! Plane X, wire 14
-0,3,15 ! Plane X, wire 15
+REFCHAN=79
+  15,   3,   1  ! DC1, Plane X, wire 1
+  14,   3,   2  ! DC1, Plane X, wire 2
+  13,   3,   3  ! DC1, Plane X, wire 3
+  12,   3,   4  ! DC1, Plane X, wire 4
+  11,   3,   5  ! DC1, Plane X, wire 5
+  10,   3,   6  ! DC1, Plane X, wire 6
+   9,   3,   7  ! DC1, Plane X, wire 7
+   8,   3,   8  ! DC1, Plane X, wire 8
+   7,   3,   9  ! DC1, Plane X, wire 9
+   6,   3,  10  ! DC1, Plane X, wire 10
+   5,   3,  11  ! DC1, Plane X, wire 11
+   4,   3,  12  ! DC1, Plane X, wire 12
+   3,   3,  13  ! DC1, Plane X, wire 13
+   2,   3,  14  ! DC1, Plane X, wire 14
+   1,   3,  15  ! DC1, Plane X, wire 15
+   0,   3,  16  ! DC1, Plane X, wire 16
+
 SLOT=7
-63,3,16 ! Plane X, wire 16
-62,3,17 ! Plane X, wire 17
-61,3,18 ! Plane X, wire 18
-60,3,19 ! Plane X, wire 19
-59,3,20 ! Plane X, wire 20
-58,3,21 ! Plane X, wire 21
-57,3,22 ! Plane X, wire 22
-56,3,23 ! Plane X, wire 23
-55,3,24 ! Plane X, wire 24
-54,3,25 ! Plane X, wire 25
-53,3,26 ! Plane X, wire 26
-52,3,27 ! Plane X, wire 27
-51,3,28 ! Plane X, wire 28
-50,3,29 ! Plane X, wire 29
-49,3,30 ! Plane X, wire 30
-48,3,31 ! Plane X, wire 31
+REFCHAN=79
+  63,   3,  17  ! DC1, Plane X, wire 17
+  62,   3,  18  ! DC1, Plane X, wire 18
+  61,   3,  19  ! DC1, Plane X, wire 19
+  60,   3,  20  ! DC1, Plane X, wire 20
+  59,   3,  21  ! DC1, Plane X, wire 21
+  58,   3,  22  ! DC1, Plane X, wire 22
+  57,   3,  23  ! DC1, Plane X, wire 23
+  56,   3,  24  ! DC1, Plane X, wire 24
+  55,   3,  25  ! DC1, Plane X, wire 25
+  54,   3,  26  ! DC1, Plane X, wire 26
+  53,   3,  27  ! DC1, Plane X, wire 27
+  52,   3,  28  ! DC1, Plane X, wire 28
+  51,   3,  29  ! DC1, Plane X, wire 29
+  50,   3,  30  ! DC1, Plane X, wire 30
+  49,   3,  31  ! DC1, Plane X, wire 31
+  48,   3,  32  ! DC1, Plane X, wire 32
+
 SLOT=6
-63,3,32 ! Plane X, wire 32
-62,3,33 ! Plane X, wire 33
-61,3,34 ! Plane X, wire 34
-60,3,35 ! Plane X, wire 35
-59,3,36 ! Plane X, wire 36
-58,3,37 ! Plane X, wire 37
-57,3,38 ! Plane X, wire 38
-56,3,39 ! Plane X, wire 39
-55,3,40 ! Plane X, wire 40
-54,3,41 ! Plane X, wire 41
-53,3,42 ! Plane X, wire 42
-52,3,43 ! Plane X, wire 43
-51,3,44 ! Plane X, wire 44
-50,3,45 ! Plane X, wire 45
-49,3,46 ! Plane X, wire 46
-SLOT=8
-15,3,47 ! Plane X, wire 47
+REFCHAN=79
+  63,   3,  33  ! DC1, Plane X, wire 33
+  62,   3,  34  ! DC1, Plane X, wire 34
+  61,   3,  35  ! DC1, Plane X, wire 35
+  60,   3,  36  ! DC1, Plane X, wire 36
+  59,   3,  37  ! DC1, Plane X, wire 37
+  58,   3,  38  ! DC1, Plane X, wire 38
+  57,   3,  39  ! DC1, Plane X, wire 39
+  56,   3,  40  ! DC1, Plane X, wire 40
+  55,   3,  41  ! DC1, Plane X, wire 41
+  54,   3,  42  ! DC1, Plane X, wire 42
+  53,   3,  43  ! DC1, Plane X, wire 43
+  52,   3,  44  ! DC1, Plane X, wire 44
+  51,   3,  45  ! DC1, Plane X, wire 45
+  50,   3,  46  ! DC1, Plane X, wire 46
+  49,   3,  47  ! DC1, Plane X, wire 47
+  48,   3,  48  ! DC1, Plane X, wire 48
+
 SLOT=10
-48,3,48 ! Plane X, wire 48
-49,3,49 ! Plane X, wire 49
-50,3,50 ! Plane X, wire 50
-51,3,51 ! Plane X, wire 51
-52,3,52 ! Plane X, wire 52
-53,3,53 ! Plane X, wire 53
-54,3,54 ! Plane X, wire 54
-55,3,55 ! Plane X, wire 55
-56,3,56 ! Plane X, wire 56
-57,3,57 ! Plane X, wire 57
-58,3,58 ! Plane X, wire 58
-59,3,59 ! Plane X, wire 59
-60,3,60 ! Plane X, wire 60
-61,3,61 ! Plane X, wire 61
-62,3,62 ! Plane X, wire 62
-63,3,63 ! Plane X, wire 63
+REFCHAN=79
+  48,   3,  49  ! DC1, Plane X, wire 49
+  49,   3,  50  ! DC1, Plane X, wire 50
+  50,   3,  51  ! DC1, Plane X, wire 51
+  51,   3,  52  ! DC1, Plane X, wire 52
+  52,   3,  53  ! DC1, Plane X, wire 53
+  53,   3,  54  ! DC1, Plane X, wire 54
+  54,   3,  55  ! DC1, Plane X, wire 55
+  55,   3,  56  ! DC1, Plane X, wire 56
+  56,   3,  57  ! DC1, Plane X, wire 57
+  57,   3,  58  ! DC1, Plane X, wire 58
+  58,   3,  59  ! DC1, Plane X, wire 59
+  59,   3,  60  ! DC1, Plane X, wire 60
+  60,   3,  61  ! DC1, Plane X, wire 61
+  61,   3,  62  ! DC1, Plane X, wire 62
+  62,   3,  63  ! DC1, Plane X, wire 63
+  63,   3,  64  ! DC1, Plane X, wire 64
+
 SLOT=9
-80,3,64 ! Plane X, wire 64
-81,3,65 ! Plane X, wire 65
-82,3,66 ! Plane X, wire 66
-83,3,67 ! Plane X, wire 67
-84,3,68 ! Plane X, wire 68
-85,3,69 ! Plane X, wire 69
-86,3,70 ! Plane X, wire 70
-87,3,71 ! Plane X, wire 71
-88,3,72 ! Plane X, wire 72
-89,3,73 ! Plane X, wire 73
-90,3,74 ! Plane X, wire 74
-91,3,75 ! Plane X, wire 75
-92,3,76 ! Plane X, wire 76
-93,3,77 ! Plane X, wire 77
-94,3,78 ! Plane X, wire 78
-29,4,1 ! Plane X', wire 1
-28,4,2 ! Plane X', wire 2
-27,4,3 ! Plane X', wire 3
-26,4,4 ! Plane X', wire 4
-25,4,5 ! Plane X', wire 5
-24,4,6 ! Plane X', wire 6
-23,4,7 ! Plane X', wire 7
-22,4,8 ! Plane X', wire 8
-21,4,9 ! Plane X', wire 9
-20,4,10 ! Plane X', wire 10
-19,4,11 ! Plane X', wire 11
-18,4,12 ! Plane X', wire 12
-17,4,13 ! Plane X', wire 13
-16,4,14 ! Plane X', wire 14
+REFCHAN=79
+  80,   3,  65  ! DC1, Plane X, wire 65
+  81,   3,  66  ! DC1, Plane X, wire 66
+  82,   3,  67  ! DC1, Plane X, wire 67
+  83,   3,  68  ! DC1, Plane X, wire 68
+  84,   3,  69  ! DC1, Plane X, wire 69
+  85,   3,  70  ! DC1, Plane X, wire 70
+  86,   3,  71  ! DC1, Plane X, wire 71
+  87,   3,  72  ! DC1, Plane X, wire 72
+  88,   3,  73  ! DC1, Plane X, wire 73
+  89,   3,  74  ! DC1, Plane X, wire 74
+  90,   3,  75  ! DC1, Plane X, wire 75
+  91,   3,  76  ! DC1, Plane X, wire 76
+  92,   3,  77  ! DC1, Plane X, wire 77
+  93,   3,  78  ! DC1, Plane X, wire 78
+  94,   3,  79  ! DC1, Plane X, wire 79
+  30,   4,   1  ! DC1, Plane X', wire 1
+  29,   4,   2  ! DC1, Plane X', wire 2
+  28,   4,   3  ! DC1, Plane X', wire 3
+  27,   4,   4  ! DC1, Plane X', wire 4
+  26,   4,   5  ! DC1, Plane X', wire 5
+  25,   4,   6  ! DC1, Plane X', wire 6
+  24,   4,   7  ! DC1, Plane X', wire 7
+  23,   4,   8  ! DC1, Plane X', wire 8
+  22,   4,   9  ! DC1, Plane X', wire 9
+  21,   4,  10  ! DC1, Plane X', wire 10
+  20,   4,  11  ! DC1, Plane X', wire 11
+  19,   4,  12  ! DC1, Plane X', wire 12
+  18,   4,  13  ! DC1, Plane X', wire 13
+  17,   4,  14  ! DC1, Plane X', wire 14
+  16,   4,  15  ! DC1, Plane X', wire 15
+
 SLOT=8
-47,4,15 ! Plane X', wire 15
-46,4,16 ! Plane X', wire 16
-45,4,17 ! Plane X', wire 17
-44,4,18 ! Plane X', wire 18
-43,4,19 ! Plane X', wire 19
-42,4,20 ! Plane X', wire 20
-41,4,21 ! Plane X', wire 21
-40,4,22 ! Plane X', wire 22
-39,4,23 ! Plane X', wire 23
-38,4,24 ! Plane X', wire 24
-37,4,25 ! Plane X', wire 25
-36,4,26 ! Plane X', wire 26
-35,4,27 ! Plane X', wire 27
-34,4,28 ! Plane X', wire 28
-33,4,29 ! Plane X', wire 29
-32,4,30 ! Plane X', wire 30
+REFCHAN=79
+  47,   4,  16  ! DC1, Plane X', wire 16
+  46,   4,  17  ! DC1, Plane X', wire 17
+  45,   4,  18  ! DC1, Plane X', wire 18
+  44,   4,  19  ! DC1, Plane X', wire 19
+  43,   4,  20  ! DC1, Plane X', wire 20
+  42,   4,  21  ! DC1, Plane X', wire 21
+  41,   4,  22  ! DC1, Plane X', wire 22
+  40,   4,  23  ! DC1, Plane X', wire 23
+  39,   4,  24  ! DC1, Plane X', wire 24
+  38,   4,  25  ! DC1, Plane X', wire 25
+  37,   4,  26  ! DC1, Plane X', wire 26
+  36,   4,  27  ! DC1, Plane X', wire 27
+  35,   4,  28  ! DC1, Plane X', wire 28
+  34,   4,  29  ! DC1, Plane X', wire 29
+  33,   4,  30  ! DC1, Plane X', wire 30
+  32,   4,  31  ! DC1, Plane X', wire 31
+
 SLOT=7
-0,4,31 ! Plane X', wire 31
-1,4,32 ! Plane X', wire 32
-2,4,33 ! Plane X', wire 33
-3,4,34 ! Plane X', wire 34
-4,4,35 ! Plane X', wire 35
-5,4,36 ! Plane X', wire 36
-6,4,37 ! Plane X', wire 37
-7,4,38 ! Plane X', wire 38
-8,4,39 ! Plane X', wire 39
-9,4,40 ! Plane X', wire 40
-10,4,41 ! Plane X', wire 41
-11,4,42 ! Plane X', wire 42
-12,4,43 ! Plane X', wire 43
-13,4,44 ! Plane X', wire 44
-14,4,45 ! Plane X', wire 45
-15,4,46 ! Plane X', wire 46
-SLOT=6
-96,4,47 ! Plane X', wire 47
-97,4,48 ! Plane X', wire 48
-98,4,49 ! Plane X', wire 49
-99,4,50 ! Plane X', wire 50
-100,4,51 ! Plane X', wire 51
-101,4,52 ! Plane X', wire 52
-102,4,53 ! Plane X', wire 53
-103,4,54 ! Plane X', wire 54
-104,4,55 ! Plane X', wire 55
-105,4,56 ! Plane X', wire 56
-106,4,57 ! Plane X', wire 57
-107,4,58 ! Plane X', wire 58
-108,4,59 ! Plane X', wire 59
-109,4,60 ! Plane X', wire 60
-110,4,61 ! Plane X', wire 61
-111,4,62 ! Plane X', wire 62
-0,4,63 ! Plane X', wire 63
-1,4,64 ! Plane X', wire 64
-2,4,65 ! Plane X', wire 65
-3,4,66 ! Plane X', wire 66
-4,4,67 ! Plane X', wire 67
-5,4,68 ! Plane X', wire 68
-6,4,69 ! Plane X', wire 69
-7,4,70 ! Plane X', wire 70
-8,4,71 ! Plane X', wire 71
-9,4,72 ! Plane X', wire 72
-10,4,73 ! Plane X', wire 73
-11,4,74 ! Plane X', wire 74
-12,4,75 ! Plane X', wire 75
-13,4,76 ! Plane X', wire 76
-14,4,77 ! Plane X', wire 77
-SLOT=9
-30,4,78 ! Plane X', wire 78
+REFCHAN=79
+   0,   4,  32  ! DC1, Plane X', wire 32
+   1,   4,  33  ! DC1, Plane X', wire 33
+   2,   4,  34  ! DC1, Plane X', wire 34
+   3,   4,  35  ! DC1, Plane X', wire 35
+   4,   4,  36  ! DC1, Plane X', wire 36
+   5,   4,  37  ! DC1, Plane X', wire 37
+   6,   4,  38  ! DC1, Plane X', wire 38
+   7,   4,  39  ! DC1, Plane X', wire 39
+   8,   4,  40  ! DC1, Plane X', wire 40
+   9,   4,  41  ! DC1, Plane X', wire 41
+  10,   4,  42  ! DC1, Plane X', wire 42
+  11,   4,  43  ! DC1, Plane X', wire 43
+  12,   4,  44  ! DC1, Plane X', wire 44
+  13,   4,  45  ! DC1, Plane X', wire 45
+  14,   4,  46  ! DC1, Plane X', wire 46
+  15,   4,  47  ! DC1, Plane X', wire 47
 
+SLOT=6
+REFCHAN=79
+  96,   4,  48  ! DC1, Plane X', wire 48
+  97,   4,  49  ! DC1, Plane X', wire 49
+  98,   4,  50  ! DC1, Plane X', wire 50
+  99,   4,  51  ! DC1, Plane X', wire 51
+ 100,   4,  52  ! DC1, Plane X', wire 52
+ 101,   4,  53  ! DC1, Plane X', wire 53
+ 102,   4,  54  ! DC1, Plane X', wire 54
+ 103,   4,  55  ! DC1, Plane X', wire 55
+ 104,   4,  56  ! DC1, Plane X', wire 56
+ 105,   4,  57  ! DC1, Plane X', wire 57
+ 106,   4,  58  ! DC1, Plane X', wire 58
+ 107,   4,  59  ! DC1, Plane X', wire 59
+ 108,   4,  60  ! DC1, Plane X', wire 60
+ 109,   4,  61  ! DC1, Plane X', wire 61
+ 110,   4,  62  ! DC1, Plane X', wire 62
+ 111,   4,  63  ! DC1, Plane X', wire 63
+   0,   4,  64  ! DC1, Plane X', wire 64
+   1,   4,  65  ! DC1, Plane X', wire 65
+   2,   4,  66  ! DC1, Plane X', wire 66
+   3,   4,  67  ! DC1, Plane X', wire 67
+   4,   4,  68  ! DC1, Plane X', wire 68
+   5,   4,  69  ! DC1, Plane X', wire 69
+   6,   4,  70  ! DC1, Plane X', wire 70
+   7,   4,  71  ! DC1, Plane X', wire 71
+   8,   4,  72  ! DC1, Plane X', wire 72
+   9,   4,  73  ! DC1, Plane X', wire 73
+  10,   4,  74  ! DC1, Plane X', wire 74
+  11,   4,  75  ! DC1, Plane X', wire 75
+  12,   4,  76  ! DC1, Plane X', wire 76
+  13,   4,  77  ! DC1, Plane X', wire 77
+  14,   4,  78  ! DC1, Plane X', wire 78
+  15,   4,  79  ! DC1, Plane X', wire 79
 
-! Caen 1190 VME Modules >> DC2
 SLOT=14
-45,12,1 ! Plane U, wire 1
-44,12,2 ! Plane U, wire 2
-43,12,3 ! Plane U, wire 3
-42,12,4 ! Plane U, wire 4
-41,12,5 ! Plane U, wire 5
-40,12,6 ! Plane U, wire 6
-39,12,7 ! Plane U, wire 7
-38,12,8 ! Plane U, wire 8
-37,12,9 ! Plane U, wire 9
-36,12,10 ! Plane U, wire 10
-35,12,11 ! Plane U, wire 11
-34,12,12 ! Plane U, wire 12
-33,12,13 ! Plane U, wire 13
-32,12,14 ! Plane U, wire 14
+REFCHAN=15
+  46,  12,   1  ! DC2, Plane U, wire 1
+  45,  12,   2  ! DC2, Plane U, wire 2
+  44,  12,   3  ! DC2, Plane U, wire 3
+  43,  12,   4  ! DC2, Plane U, wire 4
+  42,  12,   5  ! DC2, Plane U, wire 5
+  41,  12,   6  ! DC2, Plane U, wire 6
+  40,  12,   7  ! DC2, Plane U, wire 7
+  39,  12,   8  ! DC2, Plane U, wire 8
+  38,  12,   9  ! DC2, Plane U, wire 9
+  37,  12,  10  ! DC2, Plane U, wire 10
+  36,  12,  11  ! DC2, Plane U, wire 11
+  35,  12,  12  ! DC2, Plane U, wire 12
+  34,  12,  13  ! DC2, Plane U, wire 13
+  33,  12,  14  ! DC2, Plane U, wire 14
+  32,  12,  15  ! DC2, Plane U, wire 15
+
 SLOT=11
-127,12,15 ! Plane U, wire 15
-126,12,16 ! Plane U, wire 16
-125,12,17 ! Plane U, wire 17
-124,12,18 ! Plane U, wire 18
-123,12,19 ! Plane U, wire 19
-122,12,20 ! Plane U, wire 20
-121,12,21 ! Plane U, wire 21
-120,12,22 ! Plane U, wire 22
-119,12,23 ! Plane U, wire 23
-118,12,24 ! Plane U, wire 24
-117,12,25 ! Plane U, wire 25
-116,12,26 ! Plane U, wire 26
-115,12,27 ! Plane U, wire 27
-114,12,28 ! Plane U, wire 28
-113,12,29 ! Plane U, wire 29
-112,12,30 ! Plane U, wire 30
-63,12,31 ! Plane U, wire 31
-62,12,32 ! Plane U, wire 32
-61,12,33 ! Plane U, wire 33
-60,12,34 ! Plane U, wire 34
-59,12,35 ! Plane U, wire 35
-58,12,36 ! Plane U, wire 36
-57,12,37 ! Plane U, wire 37
-56,12,38 ! Plane U, wire 38
-55,12,39 ! Plane U, wire 39
-54,12,40 ! Plane U, wire 40
-53,12,41 ! Plane U, wire 41
-52,12,42 ! Plane U, wire 42
-51,12,43 ! Plane U, wire 43
-50,12,44 ! Plane U, wire 44
-49,12,45 ! Plane U, wire 45
-48,12,46 ! Plane U, wire 46
+REFCHAN=47
+ 127,  12,  16  ! DC2, Plane U, wire 16
+ 126,  12,  17  ! DC2, Plane U, wire 17
+ 125,  12,  18  ! DC2, Plane U, wire 18
+ 124,  12,  19  ! DC2, Plane U, wire 19
+ 123,  12,  20  ! DC2, Plane U, wire 20
+ 122,  12,  21  ! DC2, Plane U, wire 21
+ 121,  12,  22  ! DC2, Plane U, wire 22
+ 120,  12,  23  ! DC2, Plane U, wire 23
+ 119,  12,  24  ! DC2, Plane U, wire 24
+ 118,  12,  25  ! DC2, Plane U, wire 25
+ 117,  12,  26  ! DC2, Plane U, wire 26
+ 116,  12,  27  ! DC2, Plane U, wire 27
+ 115,  12,  28  ! DC2, Plane U, wire 28
+ 114,  12,  29  ! DC2, Plane U, wire 29
+ 113,  12,  30  ! DC2, Plane U, wire 30
+ 112,  12,  31  ! DC2, Plane U, wire 31
+  63,  12,  32  ! DC2, Plane U, wire 32
+  62,  12,  33  ! DC2, Plane U, wire 33
+  61,  12,  34  ! DC2, Plane U, wire 34
+  60,  12,  35  ! DC2, Plane U, wire 35
+  59,  12,  36  ! DC2, Plane U, wire 36
+  58,  12,  37  ! DC2, Plane U, wire 37
+  57,  12,  38  ! DC2, Plane U, wire 38
+  56,  12,  39  ! DC2, Plane U, wire 39
+  55,  12,  40  ! DC2, Plane U, wire 40
+  54,  12,  41  ! DC2, Plane U, wire 41
+  53,  12,  42  ! DC2, Plane U, wire 42
+  52,  12,  43  ! DC2, Plane U, wire 43
+  51,  12,  44  ! DC2, Plane U, wire 44
+  50,  12,  45  ! DC2, Plane U, wire 45
+  49,  12,  46  ! DC2, Plane U, wire 46
+  48,  12,  47  ! DC2, Plane U, wire 47
+
 SLOT=10
-127,12,47 ! Plane U, wire 47
-126,12,48 ! Plane U, wire 48
-125,12,49 ! Plane U, wire 49
-124,12,50 ! Plane U, wire 50
-123,12,51 ! Plane U, wire 51
-122,12,52 ! Plane U, wire 52
-121,12,53 ! Plane U, wire 53
-120,12,54 ! Plane U, wire 54
-119,12,55 ! Plane U, wire 55
-118,12,56 ! Plane U, wire 56
-117,12,57 ! Plane U, wire 57
-116,12,58 ! Plane U, wire 58
-115,12,59 ! Plane U, wire 59
-114,12,60 ! Plane U, wire 60
-113,12,61 ! Plane U, wire 61
-112,12,62 ! Plane U, wire 62
+REFCHAN=79
+ 127,  12,  48  ! DC2, Plane U, wire 48
+ 126,  12,  49  ! DC2, Plane U, wire 49
+ 125,  12,  50  ! DC2, Plane U, wire 50
+ 124,  12,  51  ! DC2, Plane U, wire 51
+ 123,  12,  52  ! DC2, Plane U, wire 52
+ 122,  12,  53  ! DC2, Plane U, wire 53
+ 121,  12,  54  ! DC2, Plane U, wire 54
+ 120,  12,  55  ! DC2, Plane U, wire 55
+ 119,  12,  56  ! DC2, Plane U, wire 56
+ 118,  12,  57  ! DC2, Plane U, wire 57
+ 117,  12,  58  ! DC2, Plane U, wire 58
+ 116,  12,  59  ! DC2, Plane U, wire 59
+ 115,  12,  60  ! DC2, Plane U, wire 60
+ 114,  12,  61  ! DC2, Plane U, wire 61
+ 113,  12,  62  ! DC2, Plane U, wire 62
+ 112,  12,  63  ! DC2, Plane U, wire 63
+
 SLOT=13
-80,12,63 ! Plane U, wire 63
-81,12,64 ! Plane U, wire 64
-82,12,65 ! Plane U, wire 65
-83,12,66 ! Plane U, wire 66
-84,12,67 ! Plane U, wire 67
-85,12,68 ! Plane U, wire 68
-86,12,69 ! Plane U, wire 69
-87,12,70 ! Plane U, wire 70
-88,12,71 ! Plane U, wire 71
-89,12,72 ! Plane U, wire 72
-90,12,73 ! Plane U, wire 73
-91,12,74 ! Plane U, wire 74
-92,12,75 ! Plane U, wire 75
-93,12,76 ! Plane U, wire 76
-94,12,77 ! Plane U, wire 77
-95,12,78 ! Plane U, wire 78
-16,12,79 ! Plane U, wire 79
-17,12,80 ! Plane U, wire 80
-18,12,81 ! Plane U, wire 81
-19,12,82 ! Plane U, wire 82
-20,12,83 ! Plane U, wire 83
-21,12,84 ! Plane U, wire 84
-22,12,85 ! Plane U, wire 85
-23,12,86 ! Plane U, wire 86
-24,12,87 ! Plane U, wire 87
-25,12,88 ! Plane U, wire 88
-26,12,89 ! Plane U, wire 89
-27,12,90 ! Plane U, wire 90
-28,12,91 ! Plane U, wire 91
-29,12,92 ! Plane U, wire 92
-30,12,93 ! Plane U, wire 93
+REFCHAN=47
+  80,  12,  64  ! DC2, Plane U, wire 64
+  81,  12,  65  ! DC2, Plane U, wire 65
+  82,  12,  66  ! DC2, Plane U, wire 66
+  83,  12,  67  ! DC2, Plane U, wire 67
+  84,  12,  68  ! DC2, Plane U, wire 68
+  85,  12,  69  ! DC2, Plane U, wire 69
+  86,  12,  70  ! DC2, Plane U, wire 70
+  87,  12,  71  ! DC2, Plane U, wire 71
+  88,  12,  72  ! DC2, Plane U, wire 72
+  89,  12,  73  ! DC2, Plane U, wire 73
+  90,  12,  74  ! DC2, Plane U, wire 74
+  91,  12,  75  ! DC2, Plane U, wire 75
+  92,  12,  76  ! DC2, Plane U, wire 76
+  93,  12,  77  ! DC2, Plane U, wire 77
+  94,  12,  78  ! DC2, Plane U, wire 78
+  95,  12,  79  ! DC2, Plane U, wire 79
+  16,  12,  80  ! DC2, Plane U, wire 80
+  17,  12,  81  ! DC2, Plane U, wire 81
+  18,  12,  82  ! DC2, Plane U, wire 82
+  19,  12,  83  ! DC2, Plane U, wire 83
+  20,  12,  84  ! DC2, Plane U, wire 84
+  21,  12,  85  ! DC2, Plane U, wire 85
+  22,  12,  86  ! DC2, Plane U, wire 86
+  23,  12,  87  ! DC2, Plane U, wire 87
+  24,  12,  88  ! DC2, Plane U, wire 88
+  25,  12,  89  ! DC2, Plane U, wire 89
+  26,  12,  90  ! DC2, Plane U, wire 90
+  27,  12,  91  ! DC2, Plane U, wire 91
+  28,  12,  92  ! DC2, Plane U, wire 92
+  29,  12,  93  ! DC2, Plane U, wire 93
+  30,  12,  94  ! DC2, Plane U, wire 94
+  31,  12,  95  ! DC2, Plane U, wire 95
+
 SLOT=14
-46,12,94 ! Plane U, wire 94
-80,12,95 ! Plane U, wire 95
-81,12,96 ! Plane U, wire 96
-82,12,97 ! Plane U, wire 97
-83,12,98 ! Plane U, wire 98
-84,12,99 ! Plane U, wire 99
-85,12,100 ! Plane U, wire 100
-86,12,101 ! Plane U, wire 101
-87,12,102 ! Plane U, wire 102
-88,12,103 ! Plane U, wire 103
-89,12,104 ! Plane U, wire 104
-90,12,105 ! Plane U, wire 105
-91,12,106 ! Plane U, wire 106
+REFCHAN=15
+  80,  12,  96  ! DC2, Plane U, wire 96
+  81,  12,  97  ! DC2, Plane U, wire 97
+  82,  12,  98  ! DC2, Plane U, wire 98
+  83,  12,  99  ! DC2, Plane U, wire 99
+  84,  12, 100  ! DC2, Plane U, wire 100
+  85,  12, 101  ! DC2, Plane U, wire 101
+  86,  12, 102  ! DC2, Plane U, wire 102
+  87,  12, 103  ! DC2, Plane U, wire 103
+  88,  12, 104  ! DC2, Plane U, wire 104
+  89,  12, 105  ! DC2, Plane U, wire 105
+  90,  12, 106  ! DC2, Plane U, wire 106
+  91,  12, 107  ! DC2, Plane U, wire 107
+
 SLOT=13
-42,11,1 ! Plane U', wire 1
-41,11,2 ! Plane U', wire 2
-40,11,3 ! Plane U', wire 3
-39,11,4 ! Plane U', wire 4
-38,11,5 ! Plane U', wire 5
-37,11,6 ! Plane U', wire 6
-36,11,7 ! Plane U', wire 7
-35,11,8 ! Plane U', wire 8
-34,11,9 ! Plane U', wire 9
-33,11,10 ! Plane U', wire 10
-32,11,11 ! Plane U', wire 11
+REFCHAN=47
+  43,  11,   1  ! DC2, Plane U', wire 1
+  42,  11,   2  ! DC2, Plane U', wire 2
+  41,  11,   3  ! DC2, Plane U', wire 3
+  40,  11,   4  ! DC2, Plane U', wire 4
+  39,  11,   5  ! DC2, Plane U', wire 5
+  38,  11,   6  ! DC2, Plane U', wire 6
+  37,  11,   7  ! DC2, Plane U', wire 7
+  36,  11,   8  ! DC2, Plane U', wire 8
+  35,  11,   9  ! DC2, Plane U', wire 9
+  34,  11,  10  ! DC2, Plane U', wire 10
+  33,  11,  11  ! DC2, Plane U', wire 11
+  32,  11,  12  ! DC2, Plane U', wire 12
+
 SLOT=11
-95,11,12 ! Plane U', wire 12
-94,11,13 ! Plane U', wire 13
-93,11,14 ! Plane U', wire 14
-92,11,15 ! Plane U', wire 15
-91,11,16 ! Plane U', wire 16
-90,11,17 ! Plane U', wire 17
-89,11,18 ! Plane U', wire 18
-88,11,19 ! Plane U', wire 19
-87,11,20 ! Plane U', wire 20
-86,11,21 ! Plane U', wire 21
-85,11,22 ! Plane U', wire 22
-84,11,23 ! Plane U', wire 23
-83,11,24 ! Plane U', wire 24
-82,11,25 ! Plane U', wire 25
-81,11,26 ! Plane U', wire 26
-80,11,27 ! Plane U', wire 27
-15,11,28 ! Plane U', wire 28
-14,11,29 ! Plane U', wire 29
-13,11,30 ! Plane U', wire 30
-12,11,31 ! Plane U', wire 31
-11,11,32 ! Plane U', wire 32
-10,11,33 ! Plane U', wire 33
-9,11,34 ! Plane U', wire 34
-8,11,35 ! Plane U', wire 35
-7,11,36 ! Plane U', wire 36
-6,11,37 ! Plane U', wire 37
-5,11,38 ! Plane U', wire 38
-4,11,39 ! Plane U', wire 39
-3,11,40 ! Plane U', wire 40
-2,11,41 ! Plane U', wire 41
-1,11,42 ! Plane U', wire 42
+REFCHAN=47
+  95,  11,  13  ! DC2, Plane U', wire 13
+  94,  11,  14  ! DC2, Plane U', wire 14
+  93,  11,  15  ! DC2, Plane U', wire 15
+  92,  11,  16  ! DC2, Plane U', wire 16
+  91,  11,  17  ! DC2, Plane U', wire 17
+  90,  11,  18  ! DC2, Plane U', wire 18
+  89,  11,  19  ! DC2, Plane U', wire 19
+  88,  11,  20  ! DC2, Plane U', wire 20
+  87,  11,  21  ! DC2, Plane U', wire 21
+  86,  11,  22  ! DC2, Plane U', wire 22
+  85,  11,  23  ! DC2, Plane U', wire 23
+  84,  11,  24  ! DC2, Plane U', wire 24
+  83,  11,  25  ! DC2, Plane U', wire 25
+  82,  11,  26  ! DC2, Plane U', wire 26
+  81,  11,  27  ! DC2, Plane U', wire 27
+  80,  11,  28  ! DC2, Plane U', wire 28
+  15,  11,  29  ! DC2, Plane U', wire 29
+  14,  11,  30  ! DC2, Plane U', wire 30
+  13,  11,  31  ! DC2, Plane U', wire 31
+  12,  11,  32  ! DC2, Plane U', wire 32
+  11,  11,  33  ! DC2, Plane U', wire 33
+  10,  11,  34  ! DC2, Plane U', wire 34
+   9,  11,  35  ! DC2, Plane U', wire 35
+   8,  11,  36  ! DC2, Plane U', wire 36
+   7,  11,  37  ! DC2, Plane U', wire 37
+   6,  11,  38  ! DC2, Plane U', wire 38
+   5,  11,  39  ! DC2, Plane U', wire 39
+   4,  11,  40  ! DC2, Plane U', wire 40
+   3,  11,  41  ! DC2, Plane U', wire 41
+   2,  11,  42  ! DC2, Plane U', wire 42
+   1,  11,  43  ! DC2, Plane U', wire 43
+   0,  11,  44  ! DC2, Plane U', wire 44
+
 SLOT=13
-43,11,43 ! Plane U', wire 43
-96,11,44 ! Plane U', wire 44
-97,11,45 ! Plane U', wire 45
-98,11,46 ! Plane U', wire 46
-99,11,47 ! Plane U', wire 47
-100,11,48 ! Plane U', wire 48
-101,11,49 ! Plane U', wire 49
-102,11,50 ! Plane U', wire 50
-103,11,51 ! Plane U', wire 51
-104,11,52 ! Plane U', wire 52
-105,11,53 ! Plane U', wire 53
-106,11,54 ! Plane U', wire 54
-107,11,55 ! Plane U', wire 55
-108,11,56 ! Plane U', wire 56
-109,11,57 ! Plane U', wire 57
-110,11,58 ! Plane U', wire 58
-111,11,59 ! Plane U', wire 59
-64,11,60 ! Plane U', wire 60
-65,11,61 ! Plane U', wire 61
-66,11,62 ! Plane U', wire 62
-67,11,63 ! Plane U', wire 63
-68,11,64 ! Plane U', wire 64
-69,11,65 ! Plane U', wire 65
-70,11,66 ! Plane U', wire 66
-71,11,67 ! Plane U', wire 67
-72,11,68 ! Plane U', wire 68
-73,11,69 ! Plane U', wire 69
-74,11,70 ! Plane U', wire 70
-75,11,71 ! Plane U', wire 71
-76,11,72 ! Plane U', wire 72
-77,11,73 ! Plane U', wire 73
-78,11,74 ! Plane U', wire 74
-79,11,75 ! Plane U', wire 75
+REFCHAN=47
+  96,  11,  45  ! DC2, Plane U', wire 45
+  97,  11,  46  ! DC2, Plane U', wire 46
+  98,  11,  47  ! DC2, Plane U', wire 47
+  99,  11,  48  ! DC2, Plane U', wire 48
+ 100,  11,  49  ! DC2, Plane U', wire 49
+ 101,  11,  50  ! DC2, Plane U', wire 50
+ 102,  11,  51  ! DC2, Plane U', wire 51
+ 103,  11,  52  ! DC2, Plane U', wire 52
+ 104,  11,  53  ! DC2, Plane U', wire 53
+ 105,  11,  54  ! DC2, Plane U', wire 54
+ 106,  11,  55  ! DC2, Plane U', wire 55
+ 107,  11,  56  ! DC2, Plane U', wire 56
+ 108,  11,  57  ! DC2, Plane U', wire 57
+ 109,  11,  58  ! DC2, Plane U', wire 58
+ 110,  11,  59  ! DC2, Plane U', wire 59
+ 111,  11,  60  ! DC2, Plane U', wire 60
+  64,  11,  61  ! DC2, Plane U', wire 61
+  65,  11,  62  ! DC2, Plane U', wire 62
+  66,  11,  63  ! DC2, Plane U', wire 63
+  67,  11,  64  ! DC2, Plane U', wire 64
+  68,  11,  65  ! DC2, Plane U', wire 65
+  69,  11,  66  ! DC2, Plane U', wire 66
+  70,  11,  67  ! DC2, Plane U', wire 67
+  71,  11,  68  ! DC2, Plane U', wire 68
+  72,  11,  69  ! DC2, Plane U', wire 69
+  73,  11,  70  ! DC2, Plane U', wire 70
+  74,  11,  71  ! DC2, Plane U', wire 71
+  75,  11,  72  ! DC2, Plane U', wire 72
+  76,  11,  73  ! DC2, Plane U', wire 73
+  77,  11,  74  ! DC2, Plane U', wire 74
+  78,  11,  75  ! DC2, Plane U', wire 75
+  79,  11,  76  ! DC2, Plane U', wire 76
+
 SLOT=15
-48,11,76 ! Plane U', wire 76
-49,11,77 ! Plane U', wire 77
-50,11,78 ! Plane U', wire 78
-51,11,79 ! Plane U', wire 79
-52,11,80 ! Plane U', wire 80
-53,11,81 ! Plane U', wire 81
-54,11,82 ! Plane U', wire 82
-55,11,83 ! Plane U', wire 83
-56,11,84 ! Plane U', wire 84
-57,11,85 ! Plane U', wire 85
-58,11,86 ! Plane U', wire 86
-59,11,87 ! Plane U', wire 87
-60,11,88 ! Plane U', wire 88
-61,11,89 ! Plane U', wire 89
-62,11,90 ! Plane U', wire 90
-63,11,91 ! Plane U', wire 91
+REFCHAN=47
+  48,  11,  77  ! DC2, Plane U', wire 77
+  49,  11,  78  ! DC2, Plane U', wire 78
+  50,  11,  79  ! DC2, Plane U', wire 79
+  51,  11,  80  ! DC2, Plane U', wire 80
+  52,  11,  81  ! DC2, Plane U', wire 81
+  53,  11,  82  ! DC2, Plane U', wire 82
+  54,  11,  83  ! DC2, Plane U', wire 83
+  55,  11,  84  ! DC2, Plane U', wire 84
+  56,  11,  85  ! DC2, Plane U', wire 85
+  57,  11,  86  ! DC2, Plane U', wire 86
+  58,  11,  87  ! DC2, Plane U', wire 87
+  59,  11,  88  ! DC2, Plane U', wire 88
+  60,  11,  89  ! DC2, Plane U', wire 89
+  61,  11,  90  ! DC2, Plane U', wire 90
+  62,  11,  91  ! DC2, Plane U', wire 91
+  63,  11,  92  ! DC2, Plane U', wire 92
+
 SLOT=14
-112,11,92 ! Plane U', wire 92
-113,11,93 ! Plane U', wire 93
-114,11,94 ! Plane U', wire 94
-115,11,95 ! Plane U', wire 95
-116,11,96 ! Plane U', wire 96
-117,11,97 ! Plane U', wire 97
-118,11,98 ! Plane U', wire 98
-119,11,99 ! Plane U', wire 99
-120,11,100 ! Plane U', wire 100
-121,11,101 ! Plane U', wire 101
-122,11,102 ! Plane U', wire 102
-123,11,103 ! Plane U', wire 103
-124,11,104 ! Plane U', wire 104
-125,11,105 ! Plane U', wire 105
-126,11,106 ! Plane U', wire 106
-13,8,1 ! Plane V, wire 1
-12,8,2 ! Plane V, wire 2
-11,8,3 ! Plane V, wire 3
-10,8,4 ! Plane V, wire 4
-9,8,5 ! Plane V, wire 5
-8,8,6 ! Plane V, wire 6
-7,8,7 ! Plane V, wire 7
-6,8,8 ! Plane V, wire 8
-5,8,9 ! Plane V, wire 9
-4,8,10 ! Plane V, wire 10
-3,8,11 ! Plane V, wire 11
-2,8,12 ! Plane V, wire 12
-1,8,13 ! Plane V, wire 13
-0,8,14 ! Plane V, wire 14
+REFCHAN=15
+ 112,  11,  93  ! DC2, Plane U', wire 93
+ 113,  11,  94  ! DC2, Plane U', wire 94
+ 114,  11,  95  ! DC2, Plane U', wire 95
+ 115,  11,  96  ! DC2, Plane U', wire 96
+ 116,  11,  97  ! DC2, Plane U', wire 97
+ 117,  11,  98  ! DC2, Plane U', wire 98
+ 118,  11,  99  ! DC2, Plane U', wire 99
+ 119,  11, 100  ! DC2, Plane U', wire 100
+ 120,  11, 101  ! DC2, Plane U', wire 101
+ 121,  11, 102  ! DC2, Plane U', wire 102
+ 122,  11, 103  ! DC2, Plane U', wire 103
+ 123,  11, 104  ! DC2, Plane U', wire 104
+ 124,  11, 105  ! DC2, Plane U', wire 105
+ 125,  11, 106  ! DC2, Plane U', wire 106
+ 126,  11, 107  ! DC2, Plane U', wire 107
+  14,   8,   1  ! DC2, Plane V, wire 1
+  13,   8,   2  ! DC2, Plane V, wire 2
+  12,   8,   3  ! DC2, Plane V, wire 3
+  11,   8,   4  ! DC2, Plane V, wire 4
+  10,   8,   5  ! DC2, Plane V, wire 5
+   9,   8,   6  ! DC2, Plane V, wire 6
+   8,   8,   7  ! DC2, Plane V, wire 7
+   7,   8,   8  ! DC2, Plane V, wire 8
+   6,   8,   9  ! DC2, Plane V, wire 9
+   5,   8,  10  ! DC2, Plane V, wire 10
+   4,   8,  11  ! DC2, Plane V, wire 11
+   3,   8,  12  ! DC2, Plane V, wire 12
+   2,   8,  13  ! DC2, Plane V, wire 13
+   1,   8,  14  ! DC2, Plane V, wire 14
+   0,   8,  15  ! DC2, Plane V, wire 15
+
 SLOT=12
-127,8,15 ! Plane V, wire 15
-126,8,16 ! Plane V, wire 16
-125,8,17 ! Plane V, wire 17
-124,8,18 ! Plane V, wire 18
-123,8,19 ! Plane V, wire 19
-122,8,20 ! Plane V, wire 20
-121,8,21 ! Plane V, wire 21
-120,8,22 ! Plane V, wire 22
-119,8,23 ! Plane V, wire 23
-118,8,24 ! Plane V, wire 24
-117,8,25 ! Plane V, wire 25
-116,8,26 ! Plane V, wire 26
-115,8,27 ! Plane V, wire 27
-114,8,28 ! Plane V, wire 28
-113,8,29 ! Plane V, wire 29
-112,8,30 ! Plane V, wire 30
+REFCHAN=47
+ 127,   8,  16  ! DC2, Plane V, wire 16
+ 126,   8,  17  ! DC2, Plane V, wire 17
+ 125,   8,  18  ! DC2, Plane V, wire 18
+ 124,   8,  19  ! DC2, Plane V, wire 19
+ 123,   8,  20  ! DC2, Plane V, wire 20
+ 122,   8,  21  ! DC2, Plane V, wire 21
+ 121,   8,  22  ! DC2, Plane V, wire 22
+ 120,   8,  23  ! DC2, Plane V, wire 23
+ 119,   8,  24  ! DC2, Plane V, wire 24
+ 118,   8,  25  ! DC2, Plane V, wire 25
+ 117,   8,  26  ! DC2, Plane V, wire 26
+ 116,   8,  27  ! DC2, Plane V, wire 27
+ 115,   8,  28  ! DC2, Plane V, wire 28
+ 114,   8,  29  ! DC2, Plane V, wire 29
+ 113,   8,  30  ! DC2, Plane V, wire 30
+ 112,   8,  31  ! DC2, Plane V, wire 31
+
 SLOT=14
-111,8,31 ! Plane V, wire 31
-110,8,32 ! Plane V, wire 32
-109,8,33 ! Plane V, wire 33
-108,8,34 ! Plane V, wire 34
-107,8,35 ! Plane V, wire 35
-106,8,36 ! Plane V, wire 36
-105,8,37 ! Plane V, wire 37
-104,8,38 ! Plane V, wire 38
-103,8,39 ! Plane V, wire 39
-102,8,40 ! Plane V, wire 40
-101,8,41 ! Plane V, wire 41
-100,8,42 ! Plane V, wire 42
-99,8,43 ! Plane V, wire 43
-98,8,44 ! Plane V, wire 44
-97,8,45 ! Plane V, wire 45
-96,8,46 ! Plane V, wire 46
-31,8,47 ! Plane V, wire 47
-30,8,48 ! Plane V, wire 48
-29,8,49 ! Plane V, wire 49
-28,8,50 ! Plane V, wire 50
-27,8,51 ! Plane V, wire 51
-26,8,52 ! Plane V, wire 52
-25,8,53 ! Plane V, wire 53
-24,8,54 ! Plane V, wire 54
-23,8,55 ! Plane V, wire 55
-22,8,56 ! Plane V, wire 56
-21,8,57 ! Plane V, wire 57
-20,8,58 ! Plane V, wire 58
-19,8,59 ! Plane V, wire 59
-18,8,60 ! Plane V, wire 60
-17,8,61 ! Plane V, wire 61
-16,8,62 ! Plane V, wire 62
+REFCHAN=15
+ 111,   8,  32  ! DC2, Plane V, wire 32
+ 110,   8,  33  ! DC2, Plane V, wire 33
+ 109,   8,  34  ! DC2, Plane V, wire 34
+ 108,   8,  35  ! DC2, Plane V, wire 35
+ 107,   8,  36  ! DC2, Plane V, wire 36
+ 106,   8,  37  ! DC2, Plane V, wire 37
+ 105,   8,  38  ! DC2, Plane V, wire 38
+ 104,   8,  39  ! DC2, Plane V, wire 39
+ 103,   8,  40  ! DC2, Plane V, wire 40
+ 102,   8,  41  ! DC2, Plane V, wire 41
+ 101,   8,  42  ! DC2, Plane V, wire 42
+ 100,   8,  43  ! DC2, Plane V, wire 43
+  99,   8,  44  ! DC2, Plane V, wire 44
+  98,   8,  45  ! DC2, Plane V, wire 45
+  97,   8,  46  ! DC2, Plane V, wire 46
+  96,   8,  47  ! DC2, Plane V, wire 47
+  31,   8,  48  ! DC2, Plane V, wire 48
+  30,   8,  49  ! DC2, Plane V, wire 49
+  29,   8,  50  ! DC2, Plane V, wire 50
+  28,   8,  51  ! DC2, Plane V, wire 51
+  27,   8,  52  ! DC2, Plane V, wire 52
+  26,   8,  53  ! DC2, Plane V, wire 53
+  25,   8,  54  ! DC2, Plane V, wire 54
+  24,   8,  55  ! DC2, Plane V, wire 55
+  23,   8,  56  ! DC2, Plane V, wire 56
+  22,   8,  57  ! DC2, Plane V, wire 57
+  21,   8,  58  ! DC2, Plane V, wire 58
+  20,   8,  59  ! DC2, Plane V, wire 59
+  19,   8,  60  ! DC2, Plane V, wire 60
+  18,   8,  61  ! DC2, Plane V, wire 61
+  17,   8,  62  ! DC2, Plane V, wire 62
+  16,   8,  63  ! DC2, Plane V, wire 63
+
 SLOT=12
-0,8,63 ! Plane V, wire 63
-1,8,64 ! Plane V, wire 64
-2,8,65 ! Plane V, wire 65
-3,8,66 ! Plane V, wire 66
-4,8,67 ! Plane V, wire 67
-5,8,68 ! Plane V, wire 68
-6,8,69 ! Plane V, wire 69
-7,8,70 ! Plane V, wire 70
-8,8,71 ! Plane V, wire 71
-9,8,72 ! Plane V, wire 72
-10,8,73 ! Plane V, wire 73
-11,8,74 ! Plane V, wire 74
-12,8,75 ! Plane V, wire 75
-13,8,76 ! Plane V, wire 76
-14,8,77 ! Plane V, wire 77
-15,8,78 ! Plane V, wire 78
-64,8,79 ! Plane V, wire 79
-65,8,80 ! Plane V, wire 80
-66,8,81 ! Plane V, wire 81
-67,8,82 ! Plane V, wire 82
-68,8,83 ! Plane V, wire 83
-69,8,84 ! Plane V, wire 84
-70,8,85 ! Plane V, wire 85
-71,8,86 ! Plane V, wire 86
-72,8,87 ! Plane V, wire 87
-73,8,88 ! Plane V, wire 88
-74,8,89 ! Plane V, wire 89
-75,8,90 ! Plane V, wire 90
-76,8,91 ! Plane V, wire 91
-77,8,92 ! Plane V, wire 92
-78,8,93 ! Plane V, wire 93
-79,8,94 ! Plane V, wire 94
-32,8,95 ! Plane V, wire 95
-33,8,96 ! Plane V, wire 96
-34,8,97 ! Plane V, wire 97
-35,8,98 ! Plane V, wire 98
-36,8,99 ! Plane V, wire 99
-37,8,100 ! Plane V, wire 100
-38,8,101 ! Plane V, wire 101
-39,8,102 ! Plane V, wire 102
-40,8,103 ! Plane V, wire 103
-41,8,104 ! Plane V, wire 104
-42,8,105 ! Plane V, wire 105
-SLOT=14
-14,8,106 ! Plane V, wire 106
+REFCHAN=47
+   0,   8,  64  ! DC2, Plane V, wire 64
+   1,   8,  65  ! DC2, Plane V, wire 65
+   2,   8,  66  ! DC2, Plane V, wire 66
+   3,   8,  67  ! DC2, Plane V, wire 67
+   4,   8,  68  ! DC2, Plane V, wire 68
+   5,   8,  69  ! DC2, Plane V, wire 69
+   6,   8,  70  ! DC2, Plane V, wire 70
+   7,   8,  71  ! DC2, Plane V, wire 71
+   8,   8,  72  ! DC2, Plane V, wire 72
+   9,   8,  73  ! DC2, Plane V, wire 73
+  10,   8,  74  ! DC2, Plane V, wire 74
+  11,   8,  75  ! DC2, Plane V, wire 75
+  12,   8,  76  ! DC2, Plane V, wire 76
+  13,   8,  77  ! DC2, Plane V, wire 77
+  14,   8,  78  ! DC2, Plane V, wire 78
+  15,   8,  79  ! DC2, Plane V, wire 79
+  64,   8,  80  ! DC2, Plane V, wire 80
+  65,   8,  81  ! DC2, Plane V, wire 81
+  66,   8,  82  ! DC2, Plane V, wire 82
+  67,   8,  83  ! DC2, Plane V, wire 83
+  68,   8,  84  ! DC2, Plane V, wire 84
+  69,   8,  85  ! DC2, Plane V, wire 85
+  70,   8,  86  ! DC2, Plane V, wire 86
+  71,   8,  87  ! DC2, Plane V, wire 87
+  72,   8,  88  ! DC2, Plane V, wire 88
+  73,   8,  89  ! DC2, Plane V, wire 89
+  74,   8,  90  ! DC2, Plane V, wire 90
+  75,   8,  91  ! DC2, Plane V, wire 91
+  76,   8,  92  ! DC2, Plane V, wire 92
+  77,   8,  93  ! DC2, Plane V, wire 93
+  78,   8,  94  ! DC2, Plane V, wire 94
+  79,   8,  95  ! DC2, Plane V, wire 95
+  32,   8,  96  ! DC2, Plane V, wire 96
+  33,   8,  97  ! DC2, Plane V, wire 97
+  34,   8,  98  ! DC2, Plane V, wire 98
+  35,   8,  99  ! DC2, Plane V, wire 99
+  36,   8, 100  ! DC2, Plane V, wire 100
+  37,   8, 101  ! DC2, Plane V, wire 101
+  38,   8, 102  ! DC2, Plane V, wire 102
+  39,   8, 103  ! DC2, Plane V, wire 103
+  40,   8, 104  ! DC2, Plane V, wire 104
+  41,   8, 105  ! DC2, Plane V, wire 105
+  42,   8, 106  ! DC2, Plane V, wire 106
+  43,   8, 107  ! DC2, Plane V, wire 107
+
 SLOT=15
-42,7,1 ! Plane V', wire 1
-41,7,2 ! Plane V', wire 2
-40,7,3 ! Plane V', wire 3
-39,7,4 ! Plane V', wire 4
-38,7,5 ! Plane V', wire 5
-37,7,6 ! Plane V', wire 6
-36,7,7 ! Plane V', wire 7
-35,7,8 ! Plane V', wire 8
-34,7,9 ! Plane V', wire 9
-33,7,10 ! Plane V', wire 10
-32,7,11 ! Plane V', wire 11
-15,7,12 ! Plane V', wire 12
-14,7,13 ! Plane V', wire 13
-13,7,14 ! Plane V', wire 14
-12,7,15 ! Plane V', wire 15
-11,7,16 ! Plane V', wire 16
-10,7,17 ! Plane V', wire 17
-9,7,18 ! Plane V', wire 18
-8,7,19 ! Plane V', wire 19
-7,7,20 ! Plane V', wire 20
-6,7,21 ! Plane V', wire 21
-5,7,22 ! Plane V', wire 22
-4,7,23 ! Plane V', wire 23
-3,7,24 ! Plane V', wire 24
-2,7,25 ! Plane V', wire 25
-1,7,26 ! Plane V', wire 26
-0,7,27 ! Plane V', wire 27
+REFCHAN=47
+  43,   7,   1  ! DC2, Plane V', wire 1
+  42,   7,   2  ! DC2, Plane V', wire 2
+  41,   7,   3  ! DC2, Plane V', wire 3
+  40,   7,   4  ! DC2, Plane V', wire 4
+  39,   7,   5  ! DC2, Plane V', wire 5
+  38,   7,   6  ! DC2, Plane V', wire 6
+  37,   7,   7  ! DC2, Plane V', wire 7
+  36,   7,   8  ! DC2, Plane V', wire 8
+  35,   7,   9  ! DC2, Plane V', wire 9
+  34,   7,  10  ! DC2, Plane V', wire 10
+  33,   7,  11  ! DC2, Plane V', wire 11
+  32,   7,  12  ! DC2, Plane V', wire 12
+  15,   7,  13  ! DC2, Plane V', wire 13
+  14,   7,  14  ! DC2, Plane V', wire 14
+  13,   7,  15  ! DC2, Plane V', wire 15
+  12,   7,  16  ! DC2, Plane V', wire 16
+  11,   7,  17  ! DC2, Plane V', wire 17
+  10,   7,  18  ! DC2, Plane V', wire 18
+   9,   7,  19  ! DC2, Plane V', wire 19
+   8,   7,  20  ! DC2, Plane V', wire 20
+   7,   7,  21  ! DC2, Plane V', wire 21
+   6,   7,  22  ! DC2, Plane V', wire 22
+   5,   7,  23  ! DC2, Plane V', wire 23
+   4,   7,  24  ! DC2, Plane V', wire 24
+   3,   7,  25  ! DC2, Plane V', wire 25
+   2,   7,  26  ! DC2, Plane V', wire 26
+   1,   7,  27  ! DC2, Plane V', wire 27
+   0,   7,  28  ! DC2, Plane V', wire 28
+
 SLOT=14
-79,7,28 ! Plane V', wire 28
-78,7,29 ! Plane V', wire 29
-77,7,30 ! Plane V', wire 30
-76,7,31 ! Plane V', wire 31
-75,7,32 ! Plane V', wire 32
-74,7,33 ! Plane V', wire 33
-73,7,34 ! Plane V', wire 34
-72,7,35 ! Plane V', wire 35
-71,7,36 ! Plane V', wire 36
-70,7,37 ! Plane V', wire 37
-69,7,38 ! Plane V', wire 38
-68,7,39 ! Plane V', wire 39
-67,7,40 ! Plane V', wire 40
-66,7,41 ! Plane V', wire 41
-65,7,42 ! Plane V', wire 42
-64,7,43 ! Plane V', wire 43
+REFCHAN=15
+  79,   7,  29  ! DC2, Plane V', wire 29
+  78,   7,  30  ! DC2, Plane V', wire 30
+  77,   7,  31  ! DC2, Plane V', wire 31
+  76,   7,  32  ! DC2, Plane V', wire 32
+  75,   7,  33  ! DC2, Plane V', wire 33
+  74,   7,  34  ! DC2, Plane V', wire 34
+  73,   7,  35  ! DC2, Plane V', wire 35
+  72,   7,  36  ! DC2, Plane V', wire 36
+  71,   7,  37  ! DC2, Plane V', wire 37
+  70,   7,  38  ! DC2, Plane V', wire 38
+  69,   7,  39  ! DC2, Plane V', wire 39
+  68,   7,  40  ! DC2, Plane V', wire 40
+  67,   7,  41  ! DC2, Plane V', wire 41
+  66,   7,  42  ! DC2, Plane V', wire 42
+  65,   7,  43  ! DC2, Plane V', wire 43
+  64,   7,  44  ! DC2, Plane V', wire 44
+
 SLOT=13
-48,7,44 ! Plane V', wire 44
-49,7,45 ! Plane V', wire 45
-50,7,46 ! Plane V', wire 46
-51,7,47 ! Plane V', wire 47
-52,7,48 ! Plane V', wire 48
-53,7,49 ! Plane V', wire 49
-54,7,50 ! Plane V', wire 50
-55,7,51 ! Plane V', wire 51
-56,7,52 ! Plane V', wire 52
-57,7,53 ! Plane V', wire 53
-58,7,54 ! Plane V', wire 54
-59,7,55 ! Plane V', wire 55
-60,7,56 ! Plane V', wire 56
-61,7,57 ! Plane V', wire 57
-62,7,58 ! Plane V', wire 58
-63,7,59 ! Plane V', wire 59
+REFCHAN=47
+  48,   7,  45  ! DC2, Plane V', wire 45
+  49,   7,  46  ! DC2, Plane V', wire 46
+  50,   7,  47  ! DC2, Plane V', wire 47
+  51,   7,  48  ! DC2, Plane V', wire 48
+  52,   7,  49  ! DC2, Plane V', wire 49
+  53,   7,  50  ! DC2, Plane V', wire 50
+  54,   7,  51  ! DC2, Plane V', wire 51
+  55,   7,  52  ! DC2, Plane V', wire 52
+  56,   7,  53  ! DC2, Plane V', wire 53
+  57,   7,  54  ! DC2, Plane V', wire 54
+  58,   7,  55  ! DC2, Plane V', wire 55
+  59,   7,  56  ! DC2, Plane V', wire 56
+  60,   7,  57  ! DC2, Plane V', wire 57
+  61,   7,  58  ! DC2, Plane V', wire 58
+  62,   7,  59  ! DC2, Plane V', wire 59
+  63,   7,  60  ! DC2, Plane V', wire 60
+
 SLOT=12
-80,7,60 ! Plane V', wire 60
-81,7,61 ! Plane V', wire 61
-82,7,62 ! Plane V', wire 62
-83,7,63 ! Plane V', wire 63
-84,7,64 ! Plane V', wire 64
-85,7,65 ! Plane V', wire 65
-86,7,66 ! Plane V', wire 66
-87,7,67 ! Plane V', wire 67
-88,7,68 ! Plane V', wire 68
-89,7,69 ! Plane V', wire 69
-90,7,70 ! Plane V', wire 70
-91,7,71 ! Plane V', wire 71
-92,7,72 ! Plane V', wire 72
-93,7,73 ! Plane V', wire 73
-94,7,74 ! Plane V', wire 74
-95,7,75 ! Plane V', wire 75
-48,7,76 ! Plane V', wire 76
-49,7,77 ! Plane V', wire 77
-50,7,78 ! Plane V', wire 78
-51,7,79 ! Plane V', wire 79
-52,7,80 ! Plane V', wire 80
-53,7,81 ! Plane V', wire 81
-54,7,82 ! Plane V', wire 82
-55,7,83 ! Plane V', wire 83
-56,7,84 ! Plane V', wire 84
-57,7,85 ! Plane V', wire 85
-58,7,86 ! Plane V', wire 86
-59,7,87 ! Plane V', wire 87
-60,7,88 ! Plane V', wire 88
-61,7,89 ! Plane V', wire 89
-62,7,90 ! Plane V', wire 90
-63,7,91 ! Plane V', wire 91
+REFCHAN=47
+  80,   7,  61  ! DC2, Plane V', wire 61
+  81,   7,  62  ! DC2, Plane V', wire 62
+  82,   7,  63  ! DC2, Plane V', wire 63
+  83,   7,  64  ! DC2, Plane V', wire 64
+  84,   7,  65  ! DC2, Plane V', wire 65
+  85,   7,  66  ! DC2, Plane V', wire 66
+  86,   7,  67  ! DC2, Plane V', wire 67
+  87,   7,  68  ! DC2, Plane V', wire 68
+  88,   7,  69  ! DC2, Plane V', wire 69
+  89,   7,  70  ! DC2, Plane V', wire 70
+  90,   7,  71  ! DC2, Plane V', wire 71
+  91,   7,  72  ! DC2, Plane V', wire 72
+  92,   7,  73  ! DC2, Plane V', wire 73
+  93,   7,  74  ! DC2, Plane V', wire 74
+  94,   7,  75  ! DC2, Plane V', wire 75
+  95,   7,  76  ! DC2, Plane V', wire 76
+  48,   7,  77  ! DC2, Plane V', wire 77
+  49,   7,  78  ! DC2, Plane V', wire 78
+  50,   7,  79  ! DC2, Plane V', wire 79
+  51,   7,  80  ! DC2, Plane V', wire 80
+  52,   7,  81  ! DC2, Plane V', wire 81
+  53,   7,  82  ! DC2, Plane V', wire 82
+  54,   7,  83  ! DC2, Plane V', wire 83
+  55,   7,  84  ! DC2, Plane V', wire 84
+  56,   7,  85  ! DC2, Plane V', wire 85
+  57,   7,  86  ! DC2, Plane V', wire 86
+  58,   7,  87  ! DC2, Plane V', wire 87
+  59,   7,  88  ! DC2, Plane V', wire 88
+  60,   7,  89  ! DC2, Plane V', wire 89
+  61,   7,  90  ! DC2, Plane V', wire 90
+  62,   7,  91  ! DC2, Plane V', wire 91
+  63,   7,  92  ! DC2, Plane V', wire 92
+
 SLOT=11
-32,7,92 ! Plane V', wire 92
-33,7,93 ! Plane V', wire 93
-34,7,94 ! Plane V', wire 94
-35,7,95 ! Plane V', wire 95
-36,7,96 ! Plane V', wire 96
-37,7,97 ! Plane V', wire 97
-38,7,98 ! Plane V', wire 98
-39,7,99 ! Plane V', wire 99
-40,7,100 ! Plane V', wire 100
-41,7,101 ! Plane V', wire 101
-42,7,102 ! Plane V', wire 102
-43,7,103 ! Plane V', wire 103
-44,7,104 ! Plane V', wire 104
-45,7,105 ! Plane V', wire 105
-SLOT=15
-43,7,106 ! Plane V', wire 106
+REFCHAN=47
+  32,   7,  93  ! DC2, Plane V', wire 93
+  33,   7,  94  ! DC2, Plane V', wire 94
+  34,   7,  95  ! DC2, Plane V', wire 95
+  35,   7,  96  ! DC2, Plane V', wire 96
+  36,   7,  97  ! DC2, Plane V', wire 97
+  37,   7,  98  ! DC2, Plane V', wire 98
+  38,   7,  99  ! DC2, Plane V', wire 99
+  39,   7, 100  ! DC2, Plane V', wire 100
+  40,   7, 101  ! DC2, Plane V', wire 101
+  41,   7, 102  ! DC2, Plane V', wire 102
+  42,   7, 103  ! DC2, Plane V', wire 103
+  43,   7, 104  ! DC2, Plane V', wire 104
+  44,   7, 105  ! DC2, Plane V', wire 105
+  45,   7, 106  ! DC2, Plane V', wire 106
+  46,   7, 107  ! DC2, Plane V', wire 107
+
 SLOT=12
-110,10,1 ! Plane X, wire 1
-109,10,2 ! Plane X, wire 2
-108,10,3 ! Plane X, wire 3
-107,10,4 ! Plane X, wire 4
-106,10,5 ! Plane X, wire 5
-105,10,6 ! Plane X, wire 6
-104,10,7 ! Plane X, wire 7
-103,10,8 ! Plane X, wire 8
-102,10,9 ! Plane X, wire 9
-101,10,10 ! Plane X, wire 10
-100,10,11 ! Plane X, wire 11
-99,10,12 ! Plane X, wire 12
-98,10,13 ! Plane X, wire 13
-97,10,14 ! Plane X, wire 14
-96,10,15 ! Plane X, wire 15
-31,10,16 ! Plane X, wire 16
-30,10,17 ! Plane X, wire 17
-29,10,18 ! Plane X, wire 18
-28,10,19 ! Plane X, wire 19
-27,10,20 ! Plane X, wire 20
-26,10,21 ! Plane X, wire 21
-25,10,22 ! Plane X, wire 22
-24,10,23 ! Plane X, wire 23
-23,10,24 ! Plane X, wire 24
-22,10,25 ! Plane X, wire 25
-21,10,26 ! Plane X, wire 26
-20,10,27 ! Plane X, wire 27
-19,10,28 ! Plane X, wire 28
-18,10,29 ! Plane X, wire 29
-17,10,30 ! Plane X, wire 30
-16,10,31 ! Plane X, wire 31
+REFCHAN=47
+ 111,  10,   1  ! DC2, Plane X, wire 1
+ 110,  10,   2  ! DC2, Plane X, wire 2
+ 109,  10,   3  ! DC2, Plane X, wire 3
+ 108,  10,   4  ! DC2, Plane X, wire 4
+ 107,  10,   5  ! DC2, Plane X, wire 5
+ 106,  10,   6  ! DC2, Plane X, wire 6
+ 105,  10,   7  ! DC2, Plane X, wire 7
+ 104,  10,   8  ! DC2, Plane X, wire 8
+ 103,  10,   9  ! DC2, Plane X, wire 9
+ 102,  10,  10  ! DC2, Plane X, wire 10
+ 101,  10,  11  ! DC2, Plane X, wire 11
+ 100,  10,  12  ! DC2, Plane X, wire 12
+  99,  10,  13  ! DC2, Plane X, wire 13
+  98,  10,  14  ! DC2, Plane X, wire 14
+  97,  10,  15  ! DC2, Plane X, wire 15
+  96,  10,  16  ! DC2, Plane X, wire 16
+  31,  10,  17  ! DC2, Plane X, wire 17
+  30,  10,  18  ! DC2, Plane X, wire 18
+  29,  10,  19  ! DC2, Plane X, wire 19
+  28,  10,  20  ! DC2, Plane X, wire 20
+  27,  10,  21  ! DC2, Plane X, wire 21
+  26,  10,  22  ! DC2, Plane X, wire 22
+  25,  10,  23  ! DC2, Plane X, wire 23
+  24,  10,  24  ! DC2, Plane X, wire 24
+  23,  10,  25  ! DC2, Plane X, wire 25
+  22,  10,  26  ! DC2, Plane X, wire 26
+  21,  10,  27  ! DC2, Plane X, wire 27
+  20,  10,  28  ! DC2, Plane X, wire 28
+  19,  10,  29  ! DC2, Plane X, wire 29
+  18,  10,  30  ! DC2, Plane X, wire 30
+  17,  10,  31  ! DC2, Plane X, wire 31
+  16,  10,  32  ! DC2, Plane X, wire 32
+
 SLOT=11
-31,10,32 ! Plane X, wire 32
-30,10,33 ! Plane X, wire 33
-29,10,34 ! Plane X, wire 34
-28,10,35 ! Plane X, wire 35
-27,10,36 ! Plane X, wire 36
-26,10,37 ! Plane X, wire 37
-25,10,38 ! Plane X, wire 38
-24,10,39 ! Plane X, wire 39
-23,10,40 ! Plane X, wire 40
-22,10,41 ! Plane X, wire 41
-21,10,42 ! Plane X, wire 42
-20,10,43 ! Plane X, wire 43
-19,10,44 ! Plane X, wire 44
-18,10,45 ! Plane X, wire 45
-17,10,46 ! Plane X, wire 46
-SLOT=12
-111,10,47 ! Plane X, wire 47
+REFCHAN=47
+  31,  10,  33  ! DC2, Plane X, wire 33
+  30,  10,  34  ! DC2, Plane X, wire 34
+  29,  10,  35  ! DC2, Plane X, wire 35
+  28,  10,  36  ! DC2, Plane X, wire 36
+  27,  10,  37  ! DC2, Plane X, wire 37
+  26,  10,  38  ! DC2, Plane X, wire 38
+  25,  10,  39  ! DC2, Plane X, wire 39
+  24,  10,  40  ! DC2, Plane X, wire 40
+  23,  10,  41  ! DC2, Plane X, wire 41
+  22,  10,  42  ! DC2, Plane X, wire 42
+  21,  10,  43  ! DC2, Plane X, wire 43
+  20,  10,  44  ! DC2, Plane X, wire 44
+  19,  10,  45  ! DC2, Plane X, wire 45
+  18,  10,  46  ! DC2, Plane X, wire 46
+  17,  10,  47  ! DC2, Plane X, wire 47
+  16,  10,  48  ! DC2, Plane X, wire 48
+
 SLOT=15
-16,10,48 ! Plane X, wire 48
-17,10,49 ! Plane X, wire 49
-18,10,50 ! Plane X, wire 50
-19,10,51 ! Plane X, wire 51
-20,10,52 ! Plane X, wire 52
-21,10,53 ! Plane X, wire 53
-22,10,54 ! Plane X, wire 54
-23,10,55 ! Plane X, wire 55
-24,10,56 ! Plane X, wire 56
-25,10,57 ! Plane X, wire 57
-26,10,58 ! Plane X, wire 58
-27,10,59 ! Plane X, wire 59
-28,10,60 ! Plane X, wire 60
-29,10,61 ! Plane X, wire 61
-30,10,62 ! Plane X, wire 62
-31,10,63 ! Plane X, wire 63
+REFCHAN=47
+  16,  10,  49  ! DC2, Plane X, wire 49
+  17,  10,  50  ! DC2, Plane X, wire 50
+  18,  10,  51  ! DC2, Plane X, wire 51
+  19,  10,  52  ! DC2, Plane X, wire 52
+  20,  10,  53  ! DC2, Plane X, wire 53
+  21,  10,  54  ! DC2, Plane X, wire 54
+  22,  10,  55  ! DC2, Plane X, wire 55
+  23,  10,  56  ! DC2, Plane X, wire 56
+  24,  10,  57  ! DC2, Plane X, wire 57
+  25,  10,  58  ! DC2, Plane X, wire 58
+  26,  10,  59  ! DC2, Plane X, wire 59
+  27,  10,  60  ! DC2, Plane X, wire 60
+  28,  10,  61  ! DC2, Plane X, wire 61
+  29,  10,  62  ! DC2, Plane X, wire 62
+  30,  10,  63  ! DC2, Plane X, wire 63
+  31,  10,  64  ! DC2, Plane X, wire 64
+
 SLOT=14
-48,10,64 ! Plane X, wire 64
-49,10,65 ! Plane X, wire 65
-50,10,66 ! Plane X, wire 66
-51,10,67 ! Plane X, wire 67
-52,10,68 ! Plane X, wire 68
-53,10,69 ! Plane X, wire 69
-54,10,70 ! Plane X, wire 70
-55,10,71 ! Plane X, wire 71
-56,10,72 ! Plane X, wire 72
-57,10,73 ! Plane X, wire 73
-58,10,74 ! Plane X, wire 74
-59,10,75 ! Plane X, wire 75
-60,10,76 ! Plane X, wire 76
-61,10,77 ! Plane X, wire 77
-62,10,78 ! Plane X, wire 78
+REFCHAN=15
+  48,  10,  65  ! DC2, Plane X, wire 65
+  49,  10,  66  ! DC2, Plane X, wire 66
+  50,  10,  67  ! DC2, Plane X, wire 67
+  51,  10,  68  ! DC2, Plane X, wire 68
+  52,  10,  69  ! DC2, Plane X, wire 69
+  53,  10,  70  ! DC2, Plane X, wire 70
+  54,  10,  71  ! DC2, Plane X, wire 71
+  55,  10,  72  ! DC2, Plane X, wire 72
+  56,  10,  73  ! DC2, Plane X, wire 73
+  57,  10,  74  ! DC2, Plane X, wire 74
+  58,  10,  75  ! DC2, Plane X, wire 75
+  59,  10,  76  ! DC2, Plane X, wire 76
+  60,  10,  77  ! DC2, Plane X, wire 77
+  61,  10,  78  ! DC2, Plane X, wire 78
+  62,  10,  79  ! DC2, Plane X, wire 79
+
 SLOT=13
-125,9,1 ! Plane X', wire 1
-124,9,2 ! Plane X', wire 2
-123,9,3 ! Plane X', wire 3
-122,9,4 ! Plane X', wire 4
-121,9,5 ! Plane X', wire 5
-120,9,6 ! Plane X', wire 6
-119,9,7 ! Plane X', wire 7
-118,9,8 ! Plane X', wire 8
-117,9,9 ! Plane X', wire 9
-116,9,10 ! Plane X', wire 10
-115,9,11 ! Plane X', wire 11
-114,9,12 ! Plane X', wire 12
-113,9,13 ! Plane X', wire 13
-112,9,14 ! Plane X', wire 14
-15,9,15 ! Plane X', wire 15
-14,9,16 ! Plane X', wire 16
-13,9,17 ! Plane X', wire 17
-12,9,18 ! Plane X', wire 18
-11,9,19 ! Plane X', wire 19
-10,9,20 ! Plane X', wire 20
-9,9,21 ! Plane X', wire 21
-8,9,22 ! Plane X', wire 22
-7,9,23 ! Plane X', wire 23
-6,9,24 ! Plane X', wire 24
-5,9,25 ! Plane X', wire 25
-4,9,26 ! Plane X', wire 26
-3,9,27 ! Plane X', wire 27
-2,9,28 ! Plane X', wire 28
-1,9,29 ! Plane X', wire 29
-0,9,30 ! Plane X', wire 30
+REFCHAN=47
+ 126,   9,   1  ! DC2, Plane X', wire 1
+ 125,   9,   2  ! DC2, Plane X', wire 2
+ 124,   9,   3  ! DC2, Plane X', wire 3
+ 123,   9,   4  ! DC2, Plane X', wire 4
+ 122,   9,   5  ! DC2, Plane X', wire 5
+ 121,   9,   6  ! DC2, Plane X', wire 6
+ 120,   9,   7  ! DC2, Plane X', wire 7
+ 119,   9,   8  ! DC2, Plane X', wire 8
+ 118,   9,   9  ! DC2, Plane X', wire 9
+ 117,   9,  10  ! DC2, Plane X', wire 10
+ 116,   9,  11  ! DC2, Plane X', wire 11
+ 115,   9,  12  ! DC2, Plane X', wire 12
+ 114,   9,  13  ! DC2, Plane X', wire 13
+ 113,   9,  14  ! DC2, Plane X', wire 14
+ 112,   9,  15  ! DC2, Plane X', wire 15
+  15,   9,  16  ! DC2, Plane X', wire 16
+  14,   9,  17  ! DC2, Plane X', wire 17
+  13,   9,  18  ! DC2, Plane X', wire 18
+  12,   9,  19  ! DC2, Plane X', wire 19
+  11,   9,  20  ! DC2, Plane X', wire 20
+  10,   9,  21  ! DC2, Plane X', wire 21
+   9,   9,  22  ! DC2, Plane X', wire 22
+   8,   9,  23  ! DC2, Plane X', wire 23
+   7,   9,  24  ! DC2, Plane X', wire 24
+   6,   9,  25  ! DC2, Plane X', wire 25
+   5,   9,  26  ! DC2, Plane X', wire 26
+   4,   9,  27  ! DC2, Plane X', wire 27
+   3,   9,  28  ! DC2, Plane X', wire 28
+   2,   9,  29  ! DC2, Plane X', wire 29
+   1,   9,  30  ! DC2, Plane X', wire 30
+   0,   9,  31  ! DC2, Plane X', wire 31
+
 SLOT=11
-96,9,31 ! Plane X', wire 31
-97,9,32 ! Plane X', wire 32
-98,9,33 ! Plane X', wire 33
-99,9,34 ! Plane X', wire 34
-100,9,35 ! Plane X', wire 35
-101,9,36 ! Plane X', wire 36
-102,9,37 ! Plane X', wire 37
-103,9,38 ! Plane X', wire 38
-104,9,39 ! Plane X', wire 39
-105,9,40 ! Plane X', wire 40
-106,9,41 ! Plane X', wire 41
-107,9,42 ! Plane X', wire 42
-108,9,43 ! Plane X', wire 43
-109,9,44 ! Plane X', wire 44
-110,9,45 ! Plane X', wire 45
-111,9,46 ! Plane X', wire 46
-64,9,47 ! Plane X', wire 47
-65,9,48 ! Plane X', wire 48
-66,9,49 ! Plane X', wire 49
-67,9,50 ! Plane X', wire 50
-68,9,51 ! Plane X', wire 51
-69,9,52 ! Plane X', wire 52
-70,9,53 ! Plane X', wire 53
-71,9,54 ! Plane X', wire 54
-72,9,55 ! Plane X', wire 55
-73,9,56 ! Plane X', wire 56
-74,9,57 ! Plane X', wire 57
-75,9,58 ! Plane X', wire 58
-76,9,59 ! Plane X', wire 59
-77,9,60 ! Plane X', wire 60
-78,9,61 ! Plane X', wire 61
-79,9,62 ! Plane X', wire 62
+REFCHAN=47
+  96,   9,  32  ! DC2, Plane X', wire 32
+  97,   9,  33  ! DC2, Plane X', wire 33
+  98,   9,  34  ! DC2, Plane X', wire 34
+  99,   9,  35  ! DC2, Plane X', wire 35
+ 100,   9,  36  ! DC2, Plane X', wire 36
+ 101,   9,  37  ! DC2, Plane X', wire 37
+ 102,   9,  38  ! DC2, Plane X', wire 38
+ 103,   9,  39  ! DC2, Plane X', wire 39
+ 104,   9,  40  ! DC2, Plane X', wire 40
+ 105,   9,  41  ! DC2, Plane X', wire 41
+ 106,   9,  42  ! DC2, Plane X', wire 42
+ 107,   9,  43  ! DC2, Plane X', wire 43
+ 108,   9,  44  ! DC2, Plane X', wire 44
+ 109,   9,  45  ! DC2, Plane X', wire 45
+ 110,   9,  46  ! DC2, Plane X', wire 46
+ 111,   9,  47  ! DC2, Plane X', wire 47
+  64,   9,  48  ! DC2, Plane X', wire 48
+  65,   9,  49  ! DC2, Plane X', wire 49
+  66,   9,  50  ! DC2, Plane X', wire 50
+  67,   9,  51  ! DC2, Plane X', wire 51
+  68,   9,  52  ! DC2, Plane X', wire 52
+  69,   9,  53  ! DC2, Plane X', wire 53
+  70,   9,  54  ! DC2, Plane X', wire 54
+  71,   9,  55  ! DC2, Plane X', wire 55
+  72,   9,  56  ! DC2, Plane X', wire 56
+  73,   9,  57  ! DC2, Plane X', wire 57
+  74,   9,  58  ! DC2, Plane X', wire 58
+  75,   9,  59  ! DC2, Plane X', wire 59
+  76,   9,  60  ! DC2, Plane X', wire 60
+  77,   9,  61  ! DC2, Plane X', wire 61
+  78,   9,  62  ! DC2, Plane X', wire 62
+  79,   9,  63  ! DC2, Plane X', wire 63
+
 SLOT=10
-96,9,63 ! Plane X', wire 63
-97,9,64 ! Plane X', wire 64
-98,9,65 ! Plane X', wire 65
-99,9,66 ! Plane X', wire 66
-100,9,67 ! Plane X', wire 67
-101,9,68 ! Plane X', wire 68
-102,9,69 ! Plane X', wire 69
-103,9,70 ! Plane X', wire 70
-104,9,71 ! Plane X', wire 71
-105,9,72 ! Plane X', wire 72
-106,9,73 ! Plane X', wire 73
-107,9,74 ! Plane X', wire 74
-108,9,75 ! Plane X', wire 75
-109,9,76 ! Plane X', wire 76
-110,9,77 ! Plane X', wire 77
-SLOT=13
-126,9,78 ! Plane X', wire 78
\ No newline at end of file
+REFCHAN=79
+  96,   9,  64  ! DC2, Plane X', wire 64
+  97,   9,  65  ! DC2, Plane X', wire 65
+  98,   9,  66  ! DC2, Plane X', wire 66
+  99,   9,  67  ! DC2, Plane X', wire 67
+ 100,   9,  68  ! DC2, Plane X', wire 68
+ 101,   9,  69  ! DC2, Plane X', wire 69
+ 102,   9,  70  ! DC2, Plane X', wire 70
+ 103,   9,  71  ! DC2, Plane X', wire 71
+ 104,   9,  72  ! DC2, Plane X', wire 72
+ 105,   9,  73  ! DC2, Plane X', wire 73
+ 106,   9,  74  ! DC2, Plane X', wire 74
+ 107,   9,  75  ! DC2, Plane X', wire 75
+ 108,   9,  76  ! DC2, Plane X', wire 76
+ 109,   9,  77  ! DC2, Plane X', wire 77
+ 110,   9,  78  ! DC2, Plane X', wire 78
+ 111,   9,  79  ! DC2, Plane X', wire 79
diff --git a/MAPS/SHMS/DETEC/phgcer.map b/MAPS/SHMS/DETEC/phgcer.map
new file mode 100644
index 0000000000000000000000000000000000000000..51c5314147fbab6987268edcb3f8cc04fb798f33
--- /dev/null
+++ b/MAPS/SHMS/DETEC/phgcer.map
@@ -0,0 +1,12 @@
+! PHGCER_ID=24       ::  ADC
+
+
+DETECTOR=24
+
+ROC=2
+
+SLOT=13
+   8,   1,   1,   0  ! pHGCER01
+   9,   1,   2,   0  ! pHGCER02
+  10,   1,   3,   0  ! pHGCER03
+  11,   1,   4,   0  ! pHGCER04
diff --git a/MAPS/SHMS/DETEC/phgcer_ptrig.map b/MAPS/SHMS/DETEC/phgcer_ptrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..b67003d2d571767f1d48c606f457f0b92b315e68
--- /dev/null
+++ b/MAPS/SHMS/DETEC/phgcer_ptrig.map
@@ -0,0 +1,71 @@
+! TSHMS_ID=20      ::  ::,ADC,TDC
+! PHGCER_ID=24     ::  ::,ADC,TDC
+
+
+DETECTOR=20
+
+ROC=2
+
+SLOT=14
+   0,   1,   1,   0  ! pAERSUM
+   1,   1,   2,   0  ! pHGCERSUM
+   2,   1,   3,   0  ! pNGCERSUM
+
+SLOT=20
+  15,   2,   1,   1  ! pT1
+
+SLOT=19
+  31,   2,   2,   1  ! pT2
+  32,   2,   3,   1  ! p1X
+  33,   2,   4,   1  ! p1Y
+  34,   2,   5,   1  ! p2X
+  35,   2,   6,   1  ! p2Y
+  36,   2,   7,   1  ! p1T
+  37,   2,   8,   1  ! p2T
+  38,   2,   9,   1  ! pT3
+  39,   2,  10,   1  ! pAERSUM
+  40,   2,  11,   1  ! pHGCERSUM
+  41,   2,  12,   1  ! pNGCERSUM
+
+ROC=6
+
+SLOT=6
+  79,   2,  13,   1  ! pDCREF1
+
+SLOT=7
+  79,   2,  14,   1  ! pDCREF2
+
+SLOT=8
+  79,   2,  15,   1  ! pDCREF3
+
+SLOT=9
+  79,   2,  16,   1  ! pDCREF4
+
+SLOT=10
+  79,   2,  17,   1  ! pDCREF5
+
+SLOT=11
+  47,   2,  18,   1  ! pDCREF6
+
+SLOT=12
+  47,   2,  19,   1  ! pDCREF7
+
+SLOT=13
+  47,   2,  20,   1  ! pDCREF8
+
+SLOT=14
+  15,   2,  21,   1  ! pDCREF9
+
+SLOT=15
+  47,   2,  22,   1  ! pDCREF10
+
+
+DETECTOR=24
+
+ROC=2
+
+SLOT=13
+   8,   1,   1,   0  ! pHGCER01
+   9,   1,   2,   0  ! pHGCER02
+  10,   1,   3,   0  ! pHGCER03
+  11,   1,   4,   0  ! pHGCER04
diff --git a/MAPS/SHMS/DETEC/phodo.map b/MAPS/SHMS/DETEC/phodo.map
new file mode 100644
index 0000000000000000000000000000000000000000..5a8268fc8b04895b5728e0ecaec9d0755b4d4cde
--- /dev/null
+++ b/MAPS/SHMS/DETEC/phodo.map
@@ -0,0 +1,274 @@
+! PSCIN_ID=23      ::  ::,ADC+,ADC-,TDC+,TDC-
+
+
+DETECTOR=23
+
+ROC=2
+
+SLOT=3
+   0,   1,   1,   0  ! p1x01A+
+   1,   1,   2,   0  ! p1x02A+
+   2,   1,   3,   0  ! p1x03A+
+   3,   1,   4,   0  ! p1x04A+
+   4,   1,   5,   0  ! p1x05A+
+   5,   1,   6,   0  ! p1x06A+
+   6,   1,   7,   0  ! p1x07A+
+   7,   1,   8,   0  ! p1x08A+
+   8,   1,   9,   0  ! p1x09A+
+   9,   1,  10,   0  ! p1x10A+
+  10,   1,  11,   0  ! p1x11A+
+  11,   1,  12,   0  ! p1x12A+
+  12,   1,  13,   0  ! p1x13A+
+  13,   1,   1,   1  ! p1x01A-
+  14,   1,   2,   1  ! p1x02A-
+  15,   1,   3,   1  ! p1x03A-
+
+SLOT=4
+   0,   1,   4,   1  ! p1x04A-
+   1,   1,   5,   1  ! p1x05A-
+   2,   1,   6,   1  ! p1x06A-
+   3,   1,   7,   1  ! p1x07A-
+   4,   1,   8,   1  ! p1x08A-
+   5,   1,   9,   1  ! p1x09A-
+   6,   1,  10,   1  ! p1x10A-
+   7,   1,  11,   1  ! p1x11A-
+   8,   1,  12,   1  ! p1x12A-
+   9,   1,  13,   1  ! p1x13A-
+  10,   2,   1,   1  ! p1y01A-
+  11,   2,   2,   1  ! p1y02A-
+  12,   2,   3,   1  ! p1y03A-
+  13,   2,   4,   1  ! p1y04A-
+  14,   2,   5,   1  ! p1y05A-
+  15,   2,   6,   1  ! p1y06A-
+
+SLOT=5
+   0,   2,   7,   1  ! p1y07A-
+   1,   2,   8,   1  ! p1y08A-
+   2,   2,   9,   1  ! p1y09A-
+   3,   2,  10,   1  ! p1y10A-
+   4,   2,  11,   1  ! p1y11A-
+   5,   2,  12,   1  ! p1y12A-
+   6,   2,  13,   1  ! p1y13A-
+   7,   2,   1,   0  ! p1y01A+
+   8,   2,   2,   0  ! p1y02A+
+   9,   2,   3,   0  ! p1y03A+
+  10,   2,   4,   0  ! p1y04A+
+  11,   2,   5,   0  ! p1y05A+
+  12,   2,   6,   0  ! p1y06A+
+  13,   2,   7,   0  ! p1y07A+
+  14,   2,   8,   0  ! p1y08A+
+  15,   2,   9,   0  ! p1y09A+
+
+SLOT=6
+   0,   2,  10,   0  ! p1y10A+
+   1,   2,  11,   0  ! p1y11A+
+   2,   2,  12,   0  ! p1y12A+
+   3,   2,  13,   0  ! p1y13A+
+   4,   3,   1,   0  ! p2x01A+
+   5,   3,   2,   0  ! p2x02A+
+   6,   3,   3,   0  ! p2x03A+
+   7,   3,   4,   0  ! p2x04A+
+   8,   3,   5,   0  ! p2x05A+
+   9,   3,   6,   0  ! p2x06A+
+  10,   3,   7,   0  ! p2x07A+
+  11,   3,   8,   0  ! p2x08A+
+  12,   3,   9,   0  ! p2x09A+
+  13,   3,  10,   0  ! p2x10A+
+  14,   3,  11,   0  ! p2x11A+
+  15,   3,  12,   0  ! p2x12A+
+
+SLOT=7
+   0,   3,  13,   0  ! p2x13A+
+   1,   3,  14,   0  ! p2x14A+
+   2,   3,   1,   1  ! p2x01A-
+   3,   3,   2,   1  ! p2x02A-
+   4,   3,   3,   1  ! p2x03A-
+   5,   3,   4,   1  ! p2x04A-
+   6,   3,   5,   1  ! p2x05A-
+   7,   3,   6,   1  ! p2x06A-
+   8,   3,   7,   1  ! p2x07A-
+   9,   3,   8,   1  ! p2x08A-
+  10,   3,   9,   1  ! p2x09A-
+  11,   3,  10,   1  ! p2x10A-
+  12,   3,  11,   1  ! p2x11A-
+  13,   3,  12,   1  ! p2x12A-
+  14,   3,  13,   1  ! p2x13A-
+  15,   3,  14,   1  ! p2x14A-
+
+SLOT=8
+   0,   4,   1,   1  ! p2y01A-
+   1,   4,   2,   1  ! p2y02A-
+   2,   4,   3,   1  ! p2y03A-
+   3,   4,   4,   1  ! p2y04A-
+   4,   4,   5,   1  ! p2y05A-
+   5,   4,   6,   1  ! p2y06A-
+   6,   4,   7,   1  ! p2y07A-
+   7,   4,   8,   1  ! p2y08A-
+   8,   4,   9,   1  ! p2y09A-
+   9,   4,  10,   1  ! p2y10A-
+  10,   4,  11,   1  ! p2y11A-
+  11,   4,  12,   1  ! p2y12A-
+  12,   4,  13,   1  ! p2y13A-
+  13,   4,  14,   1  ! p2y14A-
+  14,   4,  15,   1  ! p2y15A-
+  15,   4,  16,   1  ! p2y16A-
+
+SLOT=9
+   0,   4,  17,   1  ! p2y17A-
+   1,   4,  18,   1  ! p2y18A-
+   2,   4,  19,   1  ! p2y19A-
+   3,   4,  20,   1  ! p2y20A-
+   4,   4,  21,   1  ! p2y21A-
+   5,   4,   1,   0  ! p2y01A+
+   6,   4,   2,   0  ! p2y02A+
+   7,   4,   3,   0  ! p2y03A+
+   8,   4,   4,   0  ! p2y04A+
+   9,   4,   5,   0  ! p2y05A+
+  10,   4,   6,   0  ! p2y06A+
+  11,   4,   7,   0  ! p2y07A+
+  12,   4,   8,   0  ! p2y08A+
+  13,   4,   9,   0  ! p2y09A+
+  14,   4,  10,   0  ! p2y10A+
+  15,   4,  11,   0  ! p2y11A+
+
+SLOT=10
+   0,   4,  12,   0  ! p2y12A+
+   1,   4,  13,   0  ! p2y13A+
+   2,   4,  14,   0  ! p2y14A+
+   3,   4,  15,   0  ! p2y15A+
+   4,   4,  16,   0  ! p2y16A+
+   5,   4,  17,   0  ! p2y17A+
+   6,   4,  18,   0  ! p2y18A+
+   7,   4,  19,   0  ! p2y19A+
+   8,   4,  20,   0  ! p2y20A+
+   9,   4,  21,   0  ! p2y21A+
+
+SLOT=20
+REFINDEX=0
+  15,1000,   0,   0
+   0,   1,   1,   2  ! p1x01T+
+   1,   1,   3,   2  ! p1x03T+
+   2,   1,   5,   2  ! p1x05T+
+   3,   1,   7,   2  ! p1x07T+
+   4,   1,   2,   2  ! p1x02T+
+   5,   1,   4,   2  ! p1x04T+
+   6,   1,   6,   2  ! p1x06T+
+   7,   1,   8,   2  ! p1x08T+
+   8,   1,   9,   2  ! p1x09T+
+   9,   1,  11,   2  ! p1x11T+
+  10,   1,  13,   2  ! p1x13T+
+  12,   1,  10,   2  ! p1x10T+
+  13,   1,  12,   2  ! p1x12T+
+  16,   1,   1,   3  ! p1x01T-
+  17,   1,   3,   3  ! p1x03T-
+  18,   1,   5,   3  ! p1x05T-
+  19,   1,   7,   3  ! p1x07T-
+  20,   1,   2,   3  ! p1x02T-
+  21,   1,   4,   3  ! p1x04T-
+  22,   1,   6,   3  ! p1x06T-
+  23,   1,   8,   3  ! p1x08T-
+  24,   1,   9,   3  ! p1x09T-
+  25,   1,  11,   3  ! p1x11T-
+  26,   1,  13,   3  ! p1x13T-
+  28,   1,  10,   3  ! p1x10T-
+  30,   1,  12,   3  ! p1x12T-
+  32,   2,   1,   3  ! p1y01T-
+  33,   2,   3,   3  ! p1y03T-
+  34,   2,   5,   3  ! p1y05T-
+  35,   2,   7,   3  ! p1y07T-
+  36,   2,   2,   3  ! p1y02T-
+  37,   2,   4,   3  ! p1y04T-
+  38,   2,   6,   3  ! p1y06T-
+  39,   2,   8,   3  ! p1y08T-
+  40,   2,   9,   3  ! p1y09T-
+  41,   2,  11,   3  ! p1y11T-
+  42,   2,  13,   3  ! p1y13T-
+  44,   2,  10,   3  ! p1y10T-
+  45,   2,  12,   3  ! p1y12T-
+  48,   2,   1,   2  ! p1y01T+
+  49,   2,   3,   2  ! p1y03T+
+  50,   2,   5,   2  ! p1y05T+
+  51,   2,   7,   2  ! p1y07T+
+  52,   2,   2,   2  ! p1y02T+
+  53,   2,   4,   2  ! p1y04T+
+  54,   2,   6,   2  ! p1y06T+
+  55,   2,   8,   2  ! p1y08T+
+  56,   2,   9,   2  ! p1y09T+
+  57,   2,  11,   2  ! p1y11T+
+  58,   2,  13,   2  ! p1y13T+
+  60,   2,  10,   2  ! p1y10T+
+  61,   2,  12,   2  ! p1y12T+
+  64,   3,   1,   2  ! p2x01T+
+  65,   3,   3,   2  ! p2x03T+
+  66,   3,   5,   2  ! p2x05T+
+  67,   3,   7,   2  ! p2x07T+
+  68,   3,   2,   2  ! p2x02T+
+  69,   3,   4,   2  ! p2x04T+
+  70,   3,   6,   2  ! p2x06T+
+  71,   3,   8,   2  ! p2x08T+
+  72,   3,   9,   2  ! p2x09T+
+  73,   3,  11,   2  ! p2x11T+
+  74,   3,  13,   2  ! p2x13T+
+  76,   3,  10,   2  ! p2x10T+
+  77,   3,  12,   2  ! p2x12T+
+  78,   3,  14,   2  ! p2x14T+
+  80,   3,   1,   3  ! p2x01T-
+  81,   3,   3,   3  ! p2x03T-
+  82,   3,   5,   3  ! p2x05T-
+  83,   3,   7,   3  ! p2x07T-
+  84,   3,   2,   3  ! p2x02T-
+  85,   3,   4,   3  ! p2x04T-
+  86,   3,   6,   3  ! p2x06T-
+  87,   3,   8,   3  ! p2x08T-
+  88,   3,   9,   3  ! p2x09T-
+  89,   3,  11,   3  ! p2x11T-
+  90,   3,  13,   3  ! p2x13T-
+  92,   3,  10,   3  ! p2x10T-
+  93,   3,  12,   3  ! p2x12T-
+  94,   3,  14,   3  ! p2x14T-
+  96,   4,   1,   3  ! p2y01T-
+  97,   4,   3,   3  ! p2y03T-
+  98,   4,   5,   3  ! p2y05T-
+  99,   4,   7,   3  ! p2y07T-
+ 100,   4,   2,   3  ! p2y02T-
+ 101,   4,   4,   3  ! p2y04T-
+ 102,   4,   6,   3  ! p2y06T-
+ 103,   4,   8,   3  ! p2y08T-
+ 104,   4,   9,   3  ! p2y09T-
+ 105,   4,  11,   3  ! p2y11T-
+ 106,   4,  13,   3  ! p2y13T-
+ 107,   4,  15,   3  ! p2y15T-
+ 108,   4,  10,   3  ! p2y10T-
+ 109,   4,  12,   3  ! p2y12T-
+ 110,   4,  14,   3  ! p2y14T-
+ 111,   4,  16,   3  ! p2y16T-
+ 112,   4,  17,   3  ! p2y17T-
+ 113,   4,  19,   3  ! p2y19T-
+ 114,   4,  21,   3  ! p2y21T-
+ 116,   4,  18,   3  ! p2y18T-
+ 117,   4,  20,   3  ! p2y20T-
+
+SLOT=19
+REFINDEX=0
+  31,1000,   0,   1
+   0,   4,   1,   2  ! p2y01T+
+   1,   4,   3,   2  ! p2y03T+
+   2,   4,   5,   2  ! p2y05T+
+   3,   4,   7,   2  ! p2y07T+
+   4,   4,   2,   2  ! p2y02T+
+   5,   4,   4,   2  ! p2y04T+
+   6,   4,   6,   2  ! p2y06T+
+   7,   4,   8,   2  ! p2y08T+
+   8,   4,   9,   2  ! p2y09T+
+   9,   4,  11,   2  ! p2y11T+
+  10,   4,  13,   2  ! p2y13T+
+  11,   4,  15,   2  ! p2y15T+
+  12,   4,  10,   2  ! p2y10T+
+  13,   4,  12,   2  ! p2y12T+
+  14,   4,  14,   2  ! p2y14T+
+  15,   4,  16,   2  ! p2y16T+
+  16,   4,  17,   2  ! p2y17T+
+  17,   4,  19,   2  ! p2y19T+
+  18,   4,  21,   2  ! p2y21T+
+  20,   4,  18,   2  ! p2y18T+
+  21,   4,  20,   2  ! p2y20T+
diff --git a/MAPS/SHMS/DETEC/phodo_ptrig.map b/MAPS/SHMS/DETEC/phodo_ptrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..8f82c1e62eb33cb3d0dc49cd2edcae6053cd76df
--- /dev/null
+++ b/MAPS/SHMS/DETEC/phodo_ptrig.map
@@ -0,0 +1,333 @@
+! TSHMS_ID=20      ::  ADC,TDC
+! PSCIN_ID=23      ::  ,ADC+,ADC-,TDC+,TDC-
+
+
+DETECTOR=20
+
+ROC=2
+
+SLOT=14
+   0,   1,   1,   0  ! pAERSUM
+   1,   1,   2,   0  ! pHGCERSUM
+   2,   1,   3,   0  ! pNGCERSUM
+
+SLOT=20
+  15,   2,   1,   1  ! pT1
+
+SLOT=19
+  31,   2,   2,   1  ! pT2
+  32,   2,   3,   1  ! p1X
+  33,   2,   4,   1  ! p1Y
+  34,   2,   5,   1  ! p2X
+  35,   2,   6,   1  ! p2Y
+  36,   2,   7,   1  ! p1T
+  37,   2,   8,   1  ! p2T
+  38,   2,   9,   1  ! pT3
+  39,   2,  10,   1  ! pAERSUM
+  40,   2,  11,   1  ! pHGCERSUM
+  41,   2,  12,   1  ! pNGCERSUM
+
+ROC=6
+
+SLOT=6
+  79,   2,  13,   1  ! pDCREF1
+
+SLOT=7
+  79,   2,  14,   1  ! pDCREF2
+
+SLOT=8
+  79,   2,  15,   1  ! pDCREF3
+
+SLOT=9
+  79,   2,  16,   1  ! pDCREF4
+
+SLOT=10
+  79,   2,  17,   1  ! pDCREF5
+
+SLOT=11
+  47,   2,  18,   1  ! pDCREF6
+
+SLOT=12
+  47,   2,  19,   1  ! pDCREF7
+
+SLOT=13
+  47,   2,  20,   1  ! pDCREF8
+
+SLOT=14
+  15,   2,  21,   1  ! pDCREF9
+
+SLOT=15
+  47,   2,  22,   1  ! pDCREF10
+
+
+DETECTOR=23
+
+ROC=2
+
+SLOT=3
+   0,   1,   1,   0  ! p1x01A+
+   1,   1,   2,   0  ! p1x02A+
+   2,   1,   3,   0  ! p1x03A+
+   3,   1,   4,   0  ! p1x04A+
+   4,   1,   5,   0  ! p1x05A+
+   5,   1,   6,   0  ! p1x06A+
+   6,   1,   7,   0  ! p1x07A+
+   7,   1,   8,   0  ! p1x08A+
+   8,   1,   9,   0  ! p1x09A+
+   9,   1,  10,   0  ! p1x10A+
+  10,   1,  11,   0  ! p1x11A+
+  11,   1,  12,   0  ! p1x12A+
+  12,   1,  13,   0  ! p1x13A+
+  13,   1,   1,   1  ! p1x01A-
+  14,   1,   2,   1  ! p1x02A-
+  15,   1,   3,   1  ! p1x03A-
+
+SLOT=4
+   0,   1,   4,   1  ! p1x04A-
+   1,   1,   5,   1  ! p1x05A-
+   2,   1,   6,   1  ! p1x06A-
+   3,   1,   7,   1  ! p1x07A-
+   4,   1,   8,   1  ! p1x08A-
+   5,   1,   9,   1  ! p1x09A-
+   6,   1,  10,   1  ! p1x10A-
+   7,   1,  11,   1  ! p1x11A-
+   8,   1,  12,   1  ! p1x12A-
+   9,   1,  13,   1  ! p1x13A-
+  10,   2,   1,   1  ! p1y01A-
+  11,   2,   2,   1  ! p1y02A-
+  12,   2,   3,   1  ! p1y03A-
+  13,   2,   4,   1  ! p1y04A-
+  14,   2,   5,   1  ! p1y05A-
+  15,   2,   6,   1  ! p1y06A-
+
+SLOT=5
+   0,   2,   7,   1  ! p1y07A-
+   1,   2,   8,   1  ! p1y08A-
+   2,   2,   9,   1  ! p1y09A-
+   3,   2,  10,   1  ! p1y10A-
+   4,   2,  11,   1  ! p1y11A-
+   5,   2,  12,   1  ! p1y12A-
+   6,   2,  13,   1  ! p1y13A-
+   7,   2,   1,   0  ! p1y01A+
+   8,   2,   2,   0  ! p1y02A+
+   9,   2,   3,   0  ! p1y03A+
+  10,   2,   4,   0  ! p1y04A+
+  11,   2,   5,   0  ! p1y05A+
+  12,   2,   6,   0  ! p1y06A+
+  13,   2,   7,   0  ! p1y07A+
+  14,   2,   8,   0  ! p1y08A+
+  15,   2,   9,   0  ! p1y09A+
+
+SLOT=6
+   0,   2,  10,   0  ! p1y10A+
+   1,   2,  11,   0  ! p1y11A+
+   2,   2,  12,   0  ! p1y12A+
+   3,   2,  13,   0  ! p1y13A+
+   4,   3,   1,   0  ! p2x01A+
+   5,   3,   2,   0  ! p2x02A+
+   6,   3,   3,   0  ! p2x03A+
+   7,   3,   4,   0  ! p2x04A+
+   8,   3,   5,   0  ! p2x05A+
+   9,   3,   6,   0  ! p2x06A+
+  10,   3,   7,   0  ! p2x07A+
+  11,   3,   8,   0  ! p2x08A+
+  12,   3,   9,   0  ! p2x09A+
+  13,   3,  10,   0  ! p2x10A+
+  14,   3,  11,   0  ! p2x11A+
+  15,   3,  12,   0  ! p2x12A+
+
+SLOT=7
+   0,   3,  13,   0  ! p2x13A+
+   1,   3,  14,   0  ! p2x14A+
+   2,   3,   1,   1  ! p2x01A-
+   3,   3,   2,   1  ! p2x02A-
+   4,   3,   3,   1  ! p2x03A-
+   5,   3,   4,   1  ! p2x04A-
+   6,   3,   5,   1  ! p2x05A-
+   7,   3,   6,   1  ! p2x06A-
+   8,   3,   7,   1  ! p2x07A-
+   9,   3,   8,   1  ! p2x08A-
+  10,   3,   9,   1  ! p2x09A-
+  11,   3,  10,   1  ! p2x10A-
+  12,   3,  11,   1  ! p2x11A-
+  13,   3,  12,   1  ! p2x12A-
+  14,   3,  13,   1  ! p2x13A-
+  15,   3,  14,   1  ! p2x14A-
+
+SLOT=8
+   0,   4,   1,   1  ! p2y01A-
+   1,   4,   2,   1  ! p2y02A-
+   2,   4,   3,   1  ! p2y03A-
+   3,   4,   4,   1  ! p2y04A-
+   4,   4,   5,   1  ! p2y05A-
+   5,   4,   6,   1  ! p2y06A-
+   6,   4,   7,   1  ! p2y07A-
+   7,   4,   8,   1  ! p2y08A-
+   8,   4,   9,   1  ! p2y09A-
+   9,   4,  10,   1  ! p2y10A-
+  10,   4,  11,   1  ! p2y11A-
+  11,   4,  12,   1  ! p2y12A-
+  12,   4,  13,   1  ! p2y13A-
+  13,   4,  14,   1  ! p2y14A-
+  14,   4,  15,   1  ! p2y15A-
+  15,   4,  16,   1  ! p2y16A-
+
+SLOT=9
+   0,   4,  17,   1  ! p2y17A-
+   1,   4,  18,   1  ! p2y18A-
+   2,   4,  19,   1  ! p2y19A-
+   3,   4,  20,   1  ! p2y20A-
+   4,   4,  21,   1  ! p2y21A-
+   5,   4,   1,   0  ! p2y01A+
+   6,   4,   2,   0  ! p2y02A+
+   7,   4,   3,   0  ! p2y03A+
+   8,   4,   4,   0  ! p2y04A+
+   9,   4,   5,   0  ! p2y05A+
+  10,   4,   6,   0  ! p2y06A+
+  11,   4,   7,   0  ! p2y07A+
+  12,   4,   8,   0  ! p2y08A+
+  13,   4,   9,   0  ! p2y09A+
+  14,   4,  10,   0  ! p2y10A+
+  15,   4,  11,   0  ! p2y11A+
+
+SLOT=10
+   0,   4,  12,   0  ! p2y12A+
+   1,   4,  13,   0  ! p2y13A+
+   2,   4,  14,   0  ! p2y14A+
+   3,   4,  15,   0  ! p2y15A+
+   4,   4,  16,   0  ! p2y16A+
+   5,   4,  17,   0  ! p2y17A+
+   6,   4,  18,   0  ! p2y18A+
+   7,   4,  19,   0  ! p2y19A+
+   8,   4,  20,   0  ! p2y20A+
+   9,   4,  21,   0  ! p2y21A+
+
+SLOT=20
+REFINDEX=0
+  15,1000,   0,   0
+   0,   1,   1,   2  ! p1x01T+
+   1,   1,   3,   2  ! p1x03T+
+   2,   1,   5,   2  ! p1x05T+
+   3,   1,   7,   2  ! p1x07T+
+   4,   1,   2,   2  ! p1x02T+
+   5,   1,   4,   2  ! p1x04T+
+   6,   1,   6,   2  ! p1x06T+
+   7,   1,   8,   2  ! p1x08T+
+   8,   1,   9,   2  ! p1x09T+
+   9,   1,  11,   2  ! p1x11T+
+  10,   1,  13,   2  ! p1x13T+
+  12,   1,  10,   2  ! p1x10T+
+  13,   1,  12,   2  ! p1x12T+
+  16,   1,   1,   3  ! p1x01T-
+  17,   1,   3,   3  ! p1x03T-
+  18,   1,   5,   3  ! p1x05T-
+  19,   1,   7,   3  ! p1x07T-
+  20,   1,   2,   3  ! p1x02T-
+  21,   1,   4,   3  ! p1x04T-
+  22,   1,   6,   3  ! p1x06T-
+  23,   1,   8,   3  ! p1x08T-
+  24,   1,   9,   3  ! p1x09T-
+  25,   1,  11,   3  ! p1x11T-
+  26,   1,  13,   3  ! p1x13T-
+  28,   1,  10,   3  ! p1x10T-
+  30,   1,  12,   3  ! p1x12T-
+  32,   2,   1,   3  ! p1y01T-
+  33,   2,   3,   3  ! p1y03T-
+  34,   2,   5,   3  ! p1y05T-
+  35,   2,   7,   3  ! p1y07T-
+  36,   2,   2,   3  ! p1y02T-
+  37,   2,   4,   3  ! p1y04T-
+  38,   2,   6,   3  ! p1y06T-
+  39,   2,   8,   3  ! p1y08T-
+  40,   2,   9,   3  ! p1y09T-
+  41,   2,  11,   3  ! p1y11T-
+  42,   2,  13,   3  ! p1y13T-
+  44,   2,  10,   3  ! p1y10T-
+  45,   2,  12,   3  ! p1y12T-
+  48,   2,   1,   2  ! p1y01T+
+  49,   2,   3,   2  ! p1y03T+
+  50,   2,   5,   2  ! p1y05T+
+  51,   2,   7,   2  ! p1y07T+
+  52,   2,   2,   2  ! p1y02T+
+  53,   2,   4,   2  ! p1y04T+
+  54,   2,   6,   2  ! p1y06T+
+  55,   2,   8,   2  ! p1y08T+
+  56,   2,   9,   2  ! p1y09T+
+  57,   2,  11,   2  ! p1y11T+
+  58,   2,  13,   2  ! p1y13T+
+  60,   2,  10,   2  ! p1y10T+
+  61,   2,  12,   2  ! p1y12T+
+  64,   3,   1,   2  ! p2x01T+
+  65,   3,   3,   2  ! p2x03T+
+  66,   3,   5,   2  ! p2x05T+
+  67,   3,   7,   2  ! p2x07T+
+  68,   3,   2,   2  ! p2x02T+
+  69,   3,   4,   2  ! p2x04T+
+  70,   3,   6,   2  ! p2x06T+
+  71,   3,   8,   2  ! p2x08T+
+  72,   3,   9,   2  ! p2x09T+
+  73,   3,  11,   2  ! p2x11T+
+  74,   3,  13,   2  ! p2x13T+
+  76,   3,  10,   2  ! p2x10T+
+  77,   3,  12,   2  ! p2x12T+
+  78,   3,  14,   2  ! p2x14T+
+  80,   3,   1,   3  ! p2x01T-
+  81,   3,   3,   3  ! p2x03T-
+  82,   3,   5,   3  ! p2x05T-
+  83,   3,   7,   3  ! p2x07T-
+  84,   3,   2,   3  ! p2x02T-
+  85,   3,   4,   3  ! p2x04T-
+  86,   3,   6,   3  ! p2x06T-
+  87,   3,   8,   3  ! p2x08T-
+  88,   3,   9,   3  ! p2x09T-
+  89,   3,  11,   3  ! p2x11T-
+  90,   3,  13,   3  ! p2x13T-
+  92,   3,  10,   3  ! p2x10T-
+  93,   3,  12,   3  ! p2x12T-
+  94,   3,  14,   3  ! p2x14T-
+  96,   4,   1,   3  ! p2y01T-
+  97,   4,   3,   3  ! p2y03T-
+  98,   4,   5,   3  ! p2y05T-
+  99,   4,   7,   3  ! p2y07T-
+ 100,   4,   2,   3  ! p2y02T-
+ 101,   4,   4,   3  ! p2y04T-
+ 102,   4,   6,   3  ! p2y06T-
+ 103,   4,   8,   3  ! p2y08T-
+ 104,   4,   9,   3  ! p2y09T-
+ 105,   4,  11,   3  ! p2y11T-
+ 106,   4,  13,   3  ! p2y13T-
+ 107,   4,  15,   3  ! p2y15T-
+ 108,   4,  10,   3  ! p2y10T-
+ 109,   4,  12,   3  ! p2y12T-
+ 110,   4,  14,   3  ! p2y14T-
+ 111,   4,  16,   3  ! p2y16T-
+ 112,   4,  17,   3  ! p2y17T-
+ 113,   4,  19,   3  ! p2y19T-
+ 114,   4,  21,   3  ! p2y21T-
+ 116,   4,  18,   3  ! p2y18T-
+ 117,   4,  20,   3  ! p2y20T-
+
+SLOT=19
+REFINDEX=0
+  31,1000,   0,   1
+   0,   4,   1,   2  ! p2y01T+
+   1,   4,   3,   2  ! p2y03T+
+   2,   4,   5,   2  ! p2y05T+
+   3,   4,   7,   2  ! p2y07T+
+   4,   4,   2,   2  ! p2y02T+
+   5,   4,   4,   2  ! p2y04T+
+   6,   4,   6,   2  ! p2y06T+
+   7,   4,   8,   2  ! p2y08T+
+   8,   4,   9,   2  ! p2y09T+
+   9,   4,  11,   2  ! p2y11T+
+  10,   4,  13,   2  ! p2y13T+
+  11,   4,  15,   2  ! p2y15T+
+  12,   4,  10,   2  ! p2y10T+
+  13,   4,  12,   2  ! p2y12T+
+  14,   4,  14,   2  ! p2y14T+
+  15,   4,  16,   2  ! p2y16T+
+  16,   4,  17,   2  ! p2y17T+
+  17,   4,  19,   2  ! p2y19T+
+  18,   4,  21,   2  ! p2y21T+
+  20,   4,  18,   2  ! p2y18T+
+  21,   4,  20,   2  ! p2y20T+
diff --git a/MAPS/SHMS/DETEC/pngcer.map b/MAPS/SHMS/DETEC/pngcer.map
new file mode 100644
index 0000000000000000000000000000000000000000..518adeb5e86bd24f4d6fbf4a7d8c401627de8cdd
--- /dev/null
+++ b/MAPS/SHMS/DETEC/pngcer.map
@@ -0,0 +1,12 @@
+! PNGCER_ID=21       ::  ADC
+
+
+DETECTOR=21
+
+ROC=2
+
+SLOT=13
+  12,   1,   1,   0  ! pNGCER01
+  13,   1,   2,   0  ! pNGCER02
+  14,   1,   3,   0  ! pNGCER03
+  15,   1,   4,   0  ! pNGCER04
diff --git a/MAPS/SHMS/DETEC/pngcer_ptrig.map b/MAPS/SHMS/DETEC/pngcer_ptrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..697bbb6d98f0780787fe86a7c42464d34ac10954
--- /dev/null
+++ b/MAPS/SHMS/DETEC/pngcer_ptrig.map
@@ -0,0 +1,71 @@
+! TSHMS_ID=20      ::  ::,ADC,TDC
+! PNGCER_ID=21     ::  ::,ADC,TDC
+
+
+DETECTOR=20
+
+ROC=2
+
+SLOT=14
+   0,   1,   1,   0  ! pAERSUM
+   1,   1,   2,   0  ! pHGCERSUM
+   2,   1,   3,   0  ! pNGCERSUM
+
+SLOT=20
+  15,   2,   1,   1  ! pT1
+
+SLOT=19
+  31,   2,   2,   1  ! pT2
+  32,   2,   3,   1  ! p1X
+  33,   2,   4,   1  ! p1Y
+  34,   2,   5,   1  ! p2X
+  35,   2,   6,   1  ! p2Y
+  36,   2,   7,   1  ! p1T
+  37,   2,   8,   1  ! p2T
+  38,   2,   9,   1  ! pT3
+  39,   2,  10,   1  ! pAERSUM
+  40,   2,  11,   1  ! pHGCERSUM
+  41,   2,  12,   1  ! pNGCERSUM
+
+ROC=6
+
+SLOT=6
+  79,   2,  13,   1  ! pDCREF1
+
+SLOT=7
+  79,   2,  14,   1  ! pDCREF2
+
+SLOT=8
+  79,   2,  15,   1  ! pDCREF3
+
+SLOT=9
+  79,   2,  16,   1  ! pDCREF4
+
+SLOT=10
+  79,   2,  17,   1  ! pDCREF5
+
+SLOT=11
+  47,   2,  18,   1  ! pDCREF6
+
+SLOT=12
+  47,   2,  19,   1  ! pDCREF7
+
+SLOT=13
+  47,   2,  20,   1  ! pDCREF8
+
+SLOT=14
+  15,   2,  21,   1  ! pDCREF9
+
+SLOT=15
+  47,   2,  22,   1  ! pDCREF10
+
+
+DETECTOR=21
+
+ROC=2
+
+SLOT=13
+  12,   1,   1,   0  ! pNGCER01
+  13,   1,   2,   0  ! pNGCER02
+  14,   1,   3,   0  ! pNGCER03
+  15,   1,   4,   0  ! pNGCER04
diff --git a/MAPS/SHMS/DETEC/praster_simple.map b/MAPS/SHMS/DETEC/praster_simple.map
new file mode 100644
index 0000000000000000000000000000000000000000..b0212c9b3aca16682408672d11ee22eb38944142
--- /dev/null
+++ b/MAPS/SHMS/DETEC/praster_simple.map
@@ -0,0 +1,18 @@
+!HMS:
+! TSHMS_ID=20    ADC,TDC
+
+! Plane = 1 >> ADC Only
+! Plane = 2 >> TDC Only
+
+detector=20
+
+ROC=2
+
+!F250 module
+SLOT=14
+! chan    plane     bar    sig
+     12,      1,      1,     0!  FR-XA
+     13,      1,      2,     0!  FR-XB
+     14,      1,      3,     0!  FR-YA
+     15,      1,      4,     0!  FR-YB
+
diff --git a/MAPS/SHMS/DETEC/ptrig.map b/MAPS/SHMS/DETEC/ptrig.map
new file mode 100644
index 0000000000000000000000000000000000000000..22a6a97ea0f53bb2719e5cf099ff0f094f414fa6
--- /dev/null
+++ b/MAPS/SHMS/DETEC/ptrig.map
@@ -0,0 +1,59 @@
+! TSHMS_ID=20      ::  ADC,TDC
+
+
+DETECTOR=20
+
+ROC=2
+
+SLOT=14
+   0,   1,   1,   0  ! pAERSUM
+   1,   1,   2,   0  ! pHGCERSUM
+   2,   1,   3,   0  ! pNGCERSUM
+
+SLOT=20
+  15,   2,   1,   1  ! pT1
+
+SLOT=19
+  31,   2,   2,   1  ! pT2
+  32,   2,   3,   1  ! p1X
+  33,   2,   4,   1  ! p1Y
+  34,   2,   5,   1  ! p2X
+  35,   2,   6,   1  ! p2Y
+  36,   2,   7,   1  ! p1T
+  37,   2,   8,   1  ! p2T
+  38,   2,   9,   1  ! pT3
+  39,   2,  10,   1  ! pAERSUM
+  40,   2,  11,   1  ! pHGCERSUM
+  41,   2,  12,   1  ! pNGCERSUM
+
+ROC=6
+
+SLOT=6
+  79,   2,  13,   1  ! pDCREF1
+
+SLOT=7
+  79,   2,  14,   1  ! pDCREF2
+
+SLOT=8
+  79,   2,  15,   1  ! pDCREF3
+
+SLOT=9
+  79,   2,  16,   1  ! pDCREF4
+
+SLOT=10
+  79,   2,  17,   1  ! pDCREF5
+
+SLOT=11
+  47,   2,  18,   1  ! pDCREF6
+
+SLOT=12
+  47,   2,  19,   1  ! pDCREF7
+
+SLOT=13
+  47,   2,  20,   1  ! pDCREF8
+
+SLOT=14
+  15,   2,  21,   1  ! pDCREF9
+
+SLOT=15
+  47,   2,  22,   1  ! pDCREF10
diff --git a/MAPS/SHMS/DETEC/shms_stack.map b/MAPS/SHMS/DETEC/shms_stack.map
new file mode 100644
index 0000000000000000000000000000000000000000..c478db5a6dfa6556702bcc53622e07c0aed53be4
--- /dev/null
+++ b/MAPS/SHMS/DETEC/shms_stack.map
@@ -0,0 +1,2008 @@
+! TSHMS_ID=20      ::  ADC,TDC
+! PNGCER_ID=21     ::  ADC
+! PDC_ID=22        ::  TDC
+! PSCIN_ID=23      ::  ,ADC+,ADC-,TDC+,TDC-
+! PHGCER_ID=24     ::  ADC
+! PAERO_ID=25      ::  ,ADC+,ADC-
+! PCAL_ID=26       ::  ADC
+
+
+DETECTOR=20
+
+ROC=2
+
+SLOT=14
+   0,   1,   1,   0  ! pAERSUM
+   1,   1,   2,   0  ! pHGCERSUM
+   2,   1,   3,   0  ! pNGCERSUM
+
+SLOT=20
+  15,   2,   1,   1  ! pT1
+
+SLOT=19
+  31,   2,   2,   1  ! pT2
+  32,   2,   3,   1  ! p1X
+  33,   2,   4,   1  ! p1Y
+  34,   2,   5,   1  ! p2X
+  35,   2,   6,   1  ! p2Y
+  36,   2,   7,   1  ! p1T
+  37,   2,   8,   1  ! p2T
+  38,   2,   9,   1  ! pT3
+  39,   2,  10,   1  ! pAERSUM
+  40,   2,  11,   1  ! pHGCERSUM
+  41,   2,  12,   1  ! pNGCERSUM
+
+ROC=6
+
+SLOT=6
+  79,   2,  13,   1  ! pDCREF1
+
+SLOT=7
+  79,   2,  14,   1  ! pDCREF2
+
+SLOT=8
+  79,   2,  15,   1  ! pDCREF3
+
+SLOT=9
+  79,   2,  16,   1  ! pDCREF4
+
+SLOT=10
+  79,   2,  17,   1  ! pDCREF5
+
+SLOT=11
+  47,   2,  18,   1  ! pDCREF6
+
+SLOT=12
+  47,   2,  19,   1  ! pDCREF7
+
+SLOT=13
+  47,   2,  20,   1  ! pDCREF8
+
+SLOT=14
+  15,   2,  21,   1  ! pDCREF9
+
+SLOT=15
+  47,   2,  22,   1  ! pDCREF10
+
+
+DETECTOR=21
+
+ROC=2
+
+SLOT=13
+  12,   1,   1,   0  ! pNGCER01
+  13,   1,   2,   0  ! pNGCER02
+  14,   1,   3,   0  ! pNGCER03
+  15,   1,   4,   0  ! pNGCER04
+
+
+DETECTOR=22  ! SHMS chambers
+
+ROC=6
+
+SLOT=9
+REFCHAN=79
+  78,   1,   1  ! DC1, Plane U, wire 1
+  77,   1,   2  ! DC1, Plane U, wire 2
+  76,   1,   3  ! DC1, Plane U, wire 3
+  75,   1,   4  ! DC1, Plane U, wire 4
+  74,   1,   5  ! DC1, Plane U, wire 5
+  73,   1,   6  ! DC1, Plane U, wire 6
+  72,   1,   7  ! DC1, Plane U, wire 7
+  71,   1,   8  ! DC1, Plane U, wire 8
+  70,   1,   9  ! DC1, Plane U, wire 9
+  69,   1,  10  ! DC1, Plane U, wire 10
+  68,   1,  11  ! DC1, Plane U, wire 11
+  67,   1,  12  ! DC1, Plane U, wire 12
+  66,   1,  13  ! DC1, Plane U, wire 13
+  65,   1,  14  ! DC1, Plane U, wire 14
+  64,   1,  15  ! DC1, Plane U, wire 15
+
+SLOT=7
+REFCHAN=79
+  31,   1,  16  ! DC1, Plane U, wire 16
+  30,   1,  17  ! DC1, Plane U, wire 17
+  29,   1,  18  ! DC1, Plane U, wire 18
+  28,   1,  19  ! DC1, Plane U, wire 19
+  27,   1,  20  ! DC1, Plane U, wire 20
+  26,   1,  21  ! DC1, Plane U, wire 21
+  25,   1,  22  ! DC1, Plane U, wire 22
+  24,   1,  23  ! DC1, Plane U, wire 23
+  23,   1,  24  ! DC1, Plane U, wire 24
+  22,   1,  25  ! DC1, Plane U, wire 25
+  21,   1,  26  ! DC1, Plane U, wire 26
+  20,   1,  27  ! DC1, Plane U, wire 27
+  19,   1,  28  ! DC1, Plane U, wire 28
+  18,   1,  29  ! DC1, Plane U, wire 29
+  17,   1,  30  ! DC1, Plane U, wire 30
+  16,   1,  31  ! DC1, Plane U, wire 31
+
+SLOT=6
+REFCHAN=79
+  95,   1,  32  ! DC1, Plane U, wire 32
+  94,   1,  33  ! DC1, Plane U, wire 33
+  93,   1,  34  ! DC1, Plane U, wire 34
+  92,   1,  35  ! DC1, Plane U, wire 35
+  91,   1,  36  ! DC1, Plane U, wire 36
+  90,   1,  37  ! DC1, Plane U, wire 37
+  89,   1,  38  ! DC1, Plane U, wire 38
+  88,   1,  39  ! DC1, Plane U, wire 39
+  87,   1,  40  ! DC1, Plane U, wire 40
+  86,   1,  41  ! DC1, Plane U, wire 41
+  85,   1,  42  ! DC1, Plane U, wire 42
+  84,   1,  43  ! DC1, Plane U, wire 43
+  83,   1,  44  ! DC1, Plane U, wire 44
+  82,   1,  45  ! DC1, Plane U, wire 45
+  81,   1,  46  ! DC1, Plane U, wire 46
+  80,   1,  47  ! DC1, Plane U, wire 47
+  31,   1,  48  ! DC1, Plane U, wire 48
+  30,   1,  49  ! DC1, Plane U, wire 49
+  29,   1,  50  ! DC1, Plane U, wire 50
+  28,   1,  51  ! DC1, Plane U, wire 51
+  27,   1,  52  ! DC1, Plane U, wire 52
+  26,   1,  53  ! DC1, Plane U, wire 53
+  25,   1,  54  ! DC1, Plane U, wire 54
+  24,   1,  55  ! DC1, Plane U, wire 55
+  23,   1,  56  ! DC1, Plane U, wire 56
+  22,   1,  57  ! DC1, Plane U, wire 57
+  21,   1,  58  ! DC1, Plane U, wire 58
+  20,   1,  59  ! DC1, Plane U, wire 59
+  19,   1,  60  ! DC1, Plane U, wire 60
+  18,   1,  61  ! DC1, Plane U, wire 61
+  17,   1,  62  ! DC1, Plane U, wire 62
+  16,   1,  63  ! DC1, Plane U, wire 63
+
+SLOT=8
+REFCHAN=79
+ 112,   1,  64  ! DC1, Plane U, wire 64
+ 113,   1,  65  ! DC1, Plane U, wire 65
+ 114,   1,  66  ! DC1, Plane U, wire 66
+ 115,   1,  67  ! DC1, Plane U, wire 67
+ 116,   1,  68  ! DC1, Plane U, wire 68
+ 117,   1,  69  ! DC1, Plane U, wire 69
+ 118,   1,  70  ! DC1, Plane U, wire 70
+ 119,   1,  71  ! DC1, Plane U, wire 71
+ 120,   1,  72  ! DC1, Plane U, wire 72
+ 121,   1,  73  ! DC1, Plane U, wire 73
+ 122,   1,  74  ! DC1, Plane U, wire 74
+ 123,   1,  75  ! DC1, Plane U, wire 75
+ 124,   1,  76  ! DC1, Plane U, wire 76
+ 125,   1,  77  ! DC1, Plane U, wire 77
+ 126,   1,  78  ! DC1, Plane U, wire 78
+ 127,   1,  79  ! DC1, Plane U, wire 79
+  48,   1,  80  ! DC1, Plane U, wire 80
+  49,   1,  81  ! DC1, Plane U, wire 81
+  50,   1,  82  ! DC1, Plane U, wire 82
+  51,   1,  83  ! DC1, Plane U, wire 83
+  52,   1,  84  ! DC1, Plane U, wire 84
+  53,   1,  85  ! DC1, Plane U, wire 85
+  54,   1,  86  ! DC1, Plane U, wire 86
+  55,   1,  87  ! DC1, Plane U, wire 87
+  56,   1,  88  ! DC1, Plane U, wire 88
+  57,   1,  89  ! DC1, Plane U, wire 89
+  58,   1,  90  ! DC1, Plane U, wire 90
+  59,   1,  91  ! DC1, Plane U, wire 91
+  60,   1,  92  ! DC1, Plane U, wire 92
+  61,   1,  93  ! DC1, Plane U, wire 93
+  62,   1,  94  ! DC1, Plane U, wire 94
+  63,   1,  95  ! DC1, Plane U, wire 95
+
+SLOT=9
+REFCHAN=79
+ 112,   1,  96  ! DC1, Plane U, wire 96
+ 113,   1,  97  ! DC1, Plane U, wire 97
+ 114,   1,  98  ! DC1, Plane U, wire 98
+ 115,   1,  99  ! DC1, Plane U, wire 99
+ 116,   1, 100  ! DC1, Plane U, wire 100
+ 117,   1, 101  ! DC1, Plane U, wire 101
+ 118,   1, 102  ! DC1, Plane U, wire 102
+ 119,   1, 103  ! DC1, Plane U, wire 103
+ 120,   1, 104  ! DC1, Plane U, wire 104
+ 121,   1, 105  ! DC1, Plane U, wire 105
+ 122,   1, 106  ! DC1, Plane U, wire 106
+ 123,   1, 107  ! DC1, Plane U, wire 107
+
+SLOT=8
+REFCHAN=79
+  75,   2,   1  ! DC1, Plane U', wire 1
+  74,   2,   2  ! DC1, Plane U', wire 2
+  73,   2,   3  ! DC1, Plane U', wire 3
+  72,   2,   4  ! DC1, Plane U', wire 4
+  71,   2,   5  ! DC1, Plane U', wire 5
+  70,   2,   6  ! DC1, Plane U', wire 6
+  69,   2,   7  ! DC1, Plane U', wire 7
+  68,   2,   8  ! DC1, Plane U', wire 8
+  67,   2,   9  ! DC1, Plane U', wire 9
+  66,   2,  10  ! DC1, Plane U', wire 10
+  65,   2,  11  ! DC1, Plane U', wire 11
+  64,   2,  12  ! DC1, Plane U', wire 12
+
+SLOT=6
+REFCHAN=79
+ 127,   2,  13  ! DC1, Plane U', wire 13
+ 126,   2,  14  ! DC1, Plane U', wire 14
+ 125,   2,  15  ! DC1, Plane U', wire 15
+ 124,   2,  16  ! DC1, Plane U', wire 16
+ 123,   2,  17  ! DC1, Plane U', wire 17
+ 122,   2,  18  ! DC1, Plane U', wire 18
+ 121,   2,  19  ! DC1, Plane U', wire 19
+ 120,   2,  20  ! DC1, Plane U', wire 20
+ 119,   2,  21  ! DC1, Plane U', wire 21
+ 118,   2,  22  ! DC1, Plane U', wire 22
+ 117,   2,  23  ! DC1, Plane U', wire 23
+ 116,   2,  24  ! DC1, Plane U', wire 24
+ 115,   2,  25  ! DC1, Plane U', wire 25
+ 114,   2,  26  ! DC1, Plane U', wire 26
+ 113,   2,  27  ! DC1, Plane U', wire 27
+ 112,   2,  28  ! DC1, Plane U', wire 28
+  47,   2,  29  ! DC1, Plane U', wire 29
+  46,   2,  30  ! DC1, Plane U', wire 30
+  45,   2,  31  ! DC1, Plane U', wire 31
+  44,   2,  32  ! DC1, Plane U', wire 32
+  43,   2,  33  ! DC1, Plane U', wire 33
+  42,   2,  34  ! DC1, Plane U', wire 34
+  41,   2,  35  ! DC1, Plane U', wire 35
+  40,   2,  36  ! DC1, Plane U', wire 36
+  39,   2,  37  ! DC1, Plane U', wire 37
+  38,   2,  38  ! DC1, Plane U', wire 38
+  37,   2,  39  ! DC1, Plane U', wire 39
+  36,   2,  40  ! DC1, Plane U', wire 40
+  35,   2,  41  ! DC1, Plane U', wire 41
+  34,   2,  42  ! DC1, Plane U', wire 42
+  33,   2,  43  ! DC1, Plane U', wire 43
+  32,   2,  44  ! DC1, Plane U', wire 44
+
+SLOT=9
+REFCHAN=79
+   0,   2,  45  ! DC1, Plane U', wire 45
+   1,   2,  46  ! DC1, Plane U', wire 46
+   2,   2,  47  ! DC1, Plane U', wire 47
+   3,   2,  48  ! DC1, Plane U', wire 48
+   4,   2,  49  ! DC1, Plane U', wire 49
+   5,   2,  50  ! DC1, Plane U', wire 50
+   6,   2,  51  ! DC1, Plane U', wire 51
+   7,   2,  52  ! DC1, Plane U', wire 52
+   8,   2,  53  ! DC1, Plane U', wire 53
+   9,   2,  54  ! DC1, Plane U', wire 54
+  10,   2,  55  ! DC1, Plane U', wire 55
+  11,   2,  56  ! DC1, Plane U', wire 56
+  12,   2,  57  ! DC1, Plane U', wire 57
+  13,   2,  58  ! DC1, Plane U', wire 58
+  14,   2,  59  ! DC1, Plane U', wire 59
+  15,   2,  60  ! DC1, Plane U', wire 60
+
+SLOT=8
+REFCHAN=79
+  96,   2,  61  ! DC1, Plane U', wire 61
+  97,   2,  62  ! DC1, Plane U', wire 62
+  98,   2,  63  ! DC1, Plane U', wire 63
+  99,   2,  64  ! DC1, Plane U', wire 64
+ 100,   2,  65  ! DC1, Plane U', wire 65
+ 101,   2,  66  ! DC1, Plane U', wire 66
+ 102,   2,  67  ! DC1, Plane U', wire 67
+ 103,   2,  68  ! DC1, Plane U', wire 68
+ 104,   2,  69  ! DC1, Plane U', wire 69
+ 105,   2,  70  ! DC1, Plane U', wire 70
+ 106,   2,  71  ! DC1, Plane U', wire 71
+ 107,   2,  72  ! DC1, Plane U', wire 72
+ 108,   2,  73  ! DC1, Plane U', wire 73
+ 109,   2,  74  ! DC1, Plane U', wire 74
+ 110,   2,  75  ! DC1, Plane U', wire 75
+ 111,   2,  76  ! DC1, Plane U', wire 76
+
+SLOT=10
+REFCHAN=79
+  80,   2,  77  ! DC1, Plane U', wire 77
+  81,   2,  78  ! DC1, Plane U', wire 78
+  82,   2,  79  ! DC1, Plane U', wire 79
+  83,   2,  80  ! DC1, Plane U', wire 80
+  84,   2,  81  ! DC1, Plane U', wire 81
+  85,   2,  82  ! DC1, Plane U', wire 82
+  86,   2,  83  ! DC1, Plane U', wire 83
+  87,   2,  84  ! DC1, Plane U', wire 84
+  88,   2,  85  ! DC1, Plane U', wire 85
+  89,   2,  86  ! DC1, Plane U', wire 86
+  90,   2,  87  ! DC1, Plane U', wire 87
+  91,   2,  88  ! DC1, Plane U', wire 88
+  92,   2,  89  ! DC1, Plane U', wire 89
+  93,   2,  90  ! DC1, Plane U', wire 90
+  94,   2,  91  ! DC1, Plane U', wire 91
+  95,   2,  92  ! DC1, Plane U', wire 92
+  16,   2,  93  ! DC1, Plane U', wire 93
+  17,   2,  94  ! DC1, Plane U', wire 94
+  18,   2,  95  ! DC1, Plane U', wire 95
+  19,   2,  96  ! DC1, Plane U', wire 96
+  20,   2,  97  ! DC1, Plane U', wire 97
+  21,   2,  98  ! DC1, Plane U', wire 98
+  22,   2,  99  ! DC1, Plane U', wire 99
+  23,   2, 100  ! DC1, Plane U', wire 100
+  24,   2, 101  ! DC1, Plane U', wire 101
+  25,   2, 102  ! DC1, Plane U', wire 102
+  26,   2, 103  ! DC1, Plane U', wire 103
+  27,   2, 104  ! DC1, Plane U', wire 104
+  28,   2, 105  ! DC1, Plane U', wire 105
+  29,   2, 106  ! DC1, Plane U', wire 106
+  30,   2, 107  ! DC1, Plane U', wire 107
+
+SLOT=9
+REFCHAN=79
+  46,   5,   1  ! DC1, Plane V, wire 1
+  45,   5,   2  ! DC1, Plane V, wire 2
+  44,   5,   3  ! DC1, Plane V, wire 3
+  43,   5,   4  ! DC1, Plane V, wire 4
+  42,   5,   5  ! DC1, Plane V, wire 5
+  41,   5,   6  ! DC1, Plane V, wire 6
+  40,   5,   7  ! DC1, Plane V, wire 7
+  39,   5,   8  ! DC1, Plane V, wire 8
+  38,   5,   9  ! DC1, Plane V, wire 9
+  37,   5,  10  ! DC1, Plane V, wire 10
+  36,   5,  11  ! DC1, Plane V, wire 11
+  35,   5,  12  ! DC1, Plane V, wire 12
+  34,   5,  13  ! DC1, Plane V, wire 13
+  33,   5,  14  ! DC1, Plane V, wire 14
+  32,   5,  15  ! DC1, Plane V, wire 15
+
+SLOT=8
+REFCHAN=79
+  31,   5,  16  ! DC1, Plane V, wire 16
+  30,   5,  17  ! DC1, Plane V, wire 17
+  29,   5,  18  ! DC1, Plane V, wire 18
+  28,   5,  19  ! DC1, Plane V, wire 19
+  27,   5,  20  ! DC1, Plane V, wire 20
+  26,   5,  21  ! DC1, Plane V, wire 21
+  25,   5,  22  ! DC1, Plane V, wire 22
+  24,   5,  23  ! DC1, Plane V, wire 23
+  23,   5,  24  ! DC1, Plane V, wire 24
+  22,   5,  25  ! DC1, Plane V, wire 25
+  21,   5,  26  ! DC1, Plane V, wire 26
+  20,   5,  27  ! DC1, Plane V, wire 27
+  19,   5,  28  ! DC1, Plane V, wire 28
+  18,   5,  29  ! DC1, Plane V, wire 29
+  17,   5,  30  ! DC1, Plane V, wire 30
+  16,   5,  31  ! DC1, Plane V, wire 31
+
+SLOT=10
+REFCHAN=79
+  15,   5,  32  ! DC1, Plane V, wire 32
+  14,   5,  33  ! DC1, Plane V, wire 33
+  13,   5,  34  ! DC1, Plane V, wire 34
+  12,   5,  35  ! DC1, Plane V, wire 35
+  11,   5,  36  ! DC1, Plane V, wire 36
+  10,   5,  37  ! DC1, Plane V, wire 37
+   9,   5,  38  ! DC1, Plane V, wire 38
+   8,   5,  39  ! DC1, Plane V, wire 39
+   7,   5,  40  ! DC1, Plane V, wire 40
+   6,   5,  41  ! DC1, Plane V, wire 41
+   5,   5,  42  ! DC1, Plane V, wire 42
+   4,   5,  43  ! DC1, Plane V, wire 43
+   3,   5,  44  ! DC1, Plane V, wire 44
+   2,   5,  45  ! DC1, Plane V, wire 45
+   1,   5,  46  ! DC1, Plane V, wire 46
+   0,   5,  47  ! DC1, Plane V, wire 47
+
+SLOT=9
+REFCHAN=79
+  63,   5,  48  ! DC1, Plane V, wire 48
+  62,   5,  49  ! DC1, Plane V, wire 49
+  61,   5,  50  ! DC1, Plane V, wire 50
+  60,   5,  51  ! DC1, Plane V, wire 51
+  59,   5,  52  ! DC1, Plane V, wire 52
+  58,   5,  53  ! DC1, Plane V, wire 53
+  57,   5,  54  ! DC1, Plane V, wire 54
+  56,   5,  55  ! DC1, Plane V, wire 55
+  55,   5,  56  ! DC1, Plane V, wire 56
+  54,   5,  57  ! DC1, Plane V, wire 57
+  53,   5,  58  ! DC1, Plane V, wire 58
+  52,   5,  59  ! DC1, Plane V, wire 59
+  51,   5,  60  ! DC1, Plane V, wire 60
+  50,   5,  61  ! DC1, Plane V, wire 61
+  49,   5,  62  ! DC1, Plane V, wire 62
+  48,   5,  63  ! DC1, Plane V, wire 63
+
+SLOT=7
+REFCHAN=79
+  32,   5,  64  ! DC1, Plane V, wire 64
+  33,   5,  65  ! DC1, Plane V, wire 65
+  34,   5,  66  ! DC1, Plane V, wire 66
+  35,   5,  67  ! DC1, Plane V, wire 67
+  36,   5,  68  ! DC1, Plane V, wire 68
+  37,   5,  69  ! DC1, Plane V, wire 69
+  38,   5,  70  ! DC1, Plane V, wire 70
+  39,   5,  71  ! DC1, Plane V, wire 71
+  40,   5,  72  ! DC1, Plane V, wire 72
+  41,   5,  73  ! DC1, Plane V, wire 73
+  42,   5,  74  ! DC1, Plane V, wire 74
+  43,   5,  75  ! DC1, Plane V, wire 75
+  44,   5,  76  ! DC1, Plane V, wire 76
+  45,   5,  77  ! DC1, Plane V, wire 77
+  46,   5,  78  ! DC1, Plane V, wire 78
+  47,   5,  79  ! DC1, Plane V, wire 79
+  96,   5,  80  ! DC1, Plane V, wire 80
+  97,   5,  81  ! DC1, Plane V, wire 81
+  98,   5,  82  ! DC1, Plane V, wire 82
+  99,   5,  83  ! DC1, Plane V, wire 83
+ 100,   5,  84  ! DC1, Plane V, wire 84
+ 101,   5,  85  ! DC1, Plane V, wire 85
+ 102,   5,  86  ! DC1, Plane V, wire 86
+ 103,   5,  87  ! DC1, Plane V, wire 87
+ 104,   5,  88  ! DC1, Plane V, wire 88
+ 105,   5,  89  ! DC1, Plane V, wire 89
+ 106,   5,  90  ! DC1, Plane V, wire 90
+ 107,   5,  91  ! DC1, Plane V, wire 91
+ 108,   5,  92  ! DC1, Plane V, wire 92
+ 109,   5,  93  ! DC1, Plane V, wire 93
+ 110,   5,  94  ! DC1, Plane V, wire 94
+ 111,   5,  95  ! DC1, Plane V, wire 95
+  64,   5,  96  ! DC1, Plane V, wire 96
+  65,   5,  97  ! DC1, Plane V, wire 97
+  66,   5,  98  ! DC1, Plane V, wire 98
+  67,   5,  99  ! DC1, Plane V, wire 99
+  68,   5, 100  ! DC1, Plane V, wire 100
+  69,   5, 101  ! DC1, Plane V, wire 101
+  70,   5, 102  ! DC1, Plane V, wire 102
+  71,   5, 103  ! DC1, Plane V, wire 103
+  72,   5, 104  ! DC1, Plane V, wire 104
+  73,   5, 105  ! DC1, Plane V, wire 105
+  74,   5, 106  ! DC1, Plane V, wire 106
+  75,   5, 107  ! DC1, Plane V, wire 107
+
+SLOT=10
+REFCHAN=79
+  75,   6,   1  ! DC1, Plane V', wire 1
+  74,   6,   2  ! DC1, Plane V', wire 2
+  73,   6,   3  ! DC1, Plane V', wire 3
+  72,   6,   4  ! DC1, Plane V', wire 4
+  71,   6,   5  ! DC1, Plane V', wire 5
+  70,   6,   6  ! DC1, Plane V', wire 6
+  69,   6,   7  ! DC1, Plane V', wire 7
+  68,   6,   8  ! DC1, Plane V', wire 8
+  67,   6,   9  ! DC1, Plane V', wire 9
+  66,   6,  10  ! DC1, Plane V', wire 10
+  65,   6,  11  ! DC1, Plane V', wire 11
+  64,   6,  12  ! DC1, Plane V', wire 12
+  47,   6,  13  ! DC1, Plane V', wire 13
+  46,   6,  14  ! DC1, Plane V', wire 14
+  45,   6,  15  ! DC1, Plane V', wire 15
+  44,   6,  16  ! DC1, Plane V', wire 16
+  43,   6,  17  ! DC1, Plane V', wire 17
+  42,   6,  18  ! DC1, Plane V', wire 18
+  41,   6,  19  ! DC1, Plane V', wire 19
+  40,   6,  20  ! DC1, Plane V', wire 20
+  39,   6,  21  ! DC1, Plane V', wire 21
+  38,   6,  22  ! DC1, Plane V', wire 22
+  37,   6,  23  ! DC1, Plane V', wire 23
+  36,   6,  24  ! DC1, Plane V', wire 24
+  35,   6,  25  ! DC1, Plane V', wire 25
+  34,   6,  26  ! DC1, Plane V', wire 26
+  33,   6,  27  ! DC1, Plane V', wire 27
+  32,   6,  28  ! DC1, Plane V', wire 28
+
+SLOT=9
+REFCHAN=79
+ 111,   6,  29  ! DC1, Plane V', wire 29
+ 110,   6,  30  ! DC1, Plane V', wire 30
+ 109,   6,  31  ! DC1, Plane V', wire 31
+ 108,   6,  32  ! DC1, Plane V', wire 32
+ 107,   6,  33  ! DC1, Plane V', wire 33
+ 106,   6,  34  ! DC1, Plane V', wire 34
+ 105,   6,  35  ! DC1, Plane V', wire 35
+ 104,   6,  36  ! DC1, Plane V', wire 36
+ 103,   6,  37  ! DC1, Plane V', wire 37
+ 102,   6,  38  ! DC1, Plane V', wire 38
+ 101,   6,  39  ! DC1, Plane V', wire 39
+ 100,   6,  40  ! DC1, Plane V', wire 40
+  99,   6,  41  ! DC1, Plane V', wire 41
+  98,   6,  42  ! DC1, Plane V', wire 42
+  97,   6,  43  ! DC1, Plane V', wire 43
+  96,   6,  44  ! DC1, Plane V', wire 44
+
+SLOT=8
+REFCHAN=79
+  80,   6,  45  ! DC1, Plane V', wire 45
+  81,   6,  46  ! DC1, Plane V', wire 46
+  82,   6,  47  ! DC1, Plane V', wire 47
+  83,   6,  48  ! DC1, Plane V', wire 48
+  84,   6,  49  ! DC1, Plane V', wire 49
+  85,   6,  50  ! DC1, Plane V', wire 50
+  86,   6,  51  ! DC1, Plane V', wire 51
+  87,   6,  52  ! DC1, Plane V', wire 52
+  88,   6,  53  ! DC1, Plane V', wire 53
+  89,   6,  54  ! DC1, Plane V', wire 54
+  90,   6,  55  ! DC1, Plane V', wire 55
+  91,   6,  56  ! DC1, Plane V', wire 56
+  92,   6,  57  ! DC1, Plane V', wire 57
+  93,   6,  58  ! DC1, Plane V', wire 58
+  94,   6,  59  ! DC1, Plane V', wire 59
+  95,   6,  60  ! DC1, Plane V', wire 60
+
+SLOT=7
+REFCHAN=79
+ 112,   6,  61  ! DC1, Plane V', wire 61
+ 113,   6,  62  ! DC1, Plane V', wire 62
+ 114,   6,  63  ! DC1, Plane V', wire 63
+ 115,   6,  64  ! DC1, Plane V', wire 64
+ 116,   6,  65  ! DC1, Plane V', wire 65
+ 117,   6,  66  ! DC1, Plane V', wire 66
+ 118,   6,  67  ! DC1, Plane V', wire 67
+ 119,   6,  68  ! DC1, Plane V', wire 68
+ 120,   6,  69  ! DC1, Plane V', wire 69
+ 121,   6,  70  ! DC1, Plane V', wire 70
+ 122,   6,  71  ! DC1, Plane V', wire 71
+ 123,   6,  72  ! DC1, Plane V', wire 72
+ 124,   6,  73  ! DC1, Plane V', wire 73
+ 125,   6,  74  ! DC1, Plane V', wire 74
+ 126,   6,  75  ! DC1, Plane V', wire 75
+ 127,   6,  76  ! DC1, Plane V', wire 76
+  80,   6,  77  ! DC1, Plane V', wire 77
+  81,   6,  78  ! DC1, Plane V', wire 78
+  82,   6,  79  ! DC1, Plane V', wire 79
+  83,   6,  80  ! DC1, Plane V', wire 80
+  84,   6,  81  ! DC1, Plane V', wire 81
+  85,   6,  82  ! DC1, Plane V', wire 82
+  86,   6,  83  ! DC1, Plane V', wire 83
+  87,   6,  84  ! DC1, Plane V', wire 84
+  88,   6,  85  ! DC1, Plane V', wire 85
+  89,   6,  86  ! DC1, Plane V', wire 86
+  90,   6,  87  ! DC1, Plane V', wire 87
+  91,   6,  88  ! DC1, Plane V', wire 88
+  92,   6,  89  ! DC1, Plane V', wire 89
+  93,   6,  90  ! DC1, Plane V', wire 90
+  94,   6,  91  ! DC1, Plane V', wire 91
+  95,   6,  92  ! DC1, Plane V', wire 92
+
+SLOT=6
+REFCHAN=79
+  64,   6,  93  ! DC1, Plane V', wire 93
+  65,   6,  94  ! DC1, Plane V', wire 94
+  66,   6,  95  ! DC1, Plane V', wire 95
+  67,   6,  96  ! DC1, Plane V', wire 96
+  68,   6,  97  ! DC1, Plane V', wire 97
+  69,   6,  98  ! DC1, Plane V', wire 98
+  70,   6,  99  ! DC1, Plane V', wire 99
+  71,   6, 100  ! DC1, Plane V', wire 100
+  72,   6, 101  ! DC1, Plane V', wire 101
+  73,   6, 102  ! DC1, Plane V', wire 102
+  74,   6, 103  ! DC1, Plane V', wire 103
+  75,   6, 104  ! DC1, Plane V', wire 104
+  76,   6, 105  ! DC1, Plane V', wire 105
+  77,   6, 106  ! DC1, Plane V', wire 106
+  78,   6, 107  ! DC1, Plane V', wire 107
+
+SLOT=8
+REFCHAN=79
+  15,   3,   1  ! DC1, Plane X, wire 1
+  14,   3,   2  ! DC1, Plane X, wire 2
+  13,   3,   3  ! DC1, Plane X, wire 3
+  12,   3,   4  ! DC1, Plane X, wire 4
+  11,   3,   5  ! DC1, Plane X, wire 5
+  10,   3,   6  ! DC1, Plane X, wire 6
+   9,   3,   7  ! DC1, Plane X, wire 7
+   8,   3,   8  ! DC1, Plane X, wire 8
+   7,   3,   9  ! DC1, Plane X, wire 9
+   6,   3,  10  ! DC1, Plane X, wire 10
+   5,   3,  11  ! DC1, Plane X, wire 11
+   4,   3,  12  ! DC1, Plane X, wire 12
+   3,   3,  13  ! DC1, Plane X, wire 13
+   2,   3,  14  ! DC1, Plane X, wire 14
+   1,   3,  15  ! DC1, Plane X, wire 15
+   0,   3,  16  ! DC1, Plane X, wire 16
+
+SLOT=7
+REFCHAN=79
+  63,   3,  17  ! DC1, Plane X, wire 17
+  62,   3,  18  ! DC1, Plane X, wire 18
+  61,   3,  19  ! DC1, Plane X, wire 19
+  60,   3,  20  ! DC1, Plane X, wire 20
+  59,   3,  21  ! DC1, Plane X, wire 21
+  58,   3,  22  ! DC1, Plane X, wire 22
+  57,   3,  23  ! DC1, Plane X, wire 23
+  56,   3,  24  ! DC1, Plane X, wire 24
+  55,   3,  25  ! DC1, Plane X, wire 25
+  54,   3,  26  ! DC1, Plane X, wire 26
+  53,   3,  27  ! DC1, Plane X, wire 27
+  52,   3,  28  ! DC1, Plane X, wire 28
+  51,   3,  29  ! DC1, Plane X, wire 29
+  50,   3,  30  ! DC1, Plane X, wire 30
+  49,   3,  31  ! DC1, Plane X, wire 31
+  48,   3,  32  ! DC1, Plane X, wire 32
+
+SLOT=6
+REFCHAN=79
+  63,   3,  33  ! DC1, Plane X, wire 33
+  62,   3,  34  ! DC1, Plane X, wire 34
+  61,   3,  35  ! DC1, Plane X, wire 35
+  60,   3,  36  ! DC1, Plane X, wire 36
+  59,   3,  37  ! DC1, Plane X, wire 37
+  58,   3,  38  ! DC1, Plane X, wire 38
+  57,   3,  39  ! DC1, Plane X, wire 39
+  56,   3,  40  ! DC1, Plane X, wire 40
+  55,   3,  41  ! DC1, Plane X, wire 41
+  54,   3,  42  ! DC1, Plane X, wire 42
+  53,   3,  43  ! DC1, Plane X, wire 43
+  52,   3,  44  ! DC1, Plane X, wire 44
+  51,   3,  45  ! DC1, Plane X, wire 45
+  50,   3,  46  ! DC1, Plane X, wire 46
+  49,   3,  47  ! DC1, Plane X, wire 47
+  48,   3,  48  ! DC1, Plane X, wire 48
+
+SLOT=10
+REFCHAN=79
+  48,   3,  49  ! DC1, Plane X, wire 49
+  49,   3,  50  ! DC1, Plane X, wire 50
+  50,   3,  51  ! DC1, Plane X, wire 51
+  51,   3,  52  ! DC1, Plane X, wire 52
+  52,   3,  53  ! DC1, Plane X, wire 53
+  53,   3,  54  ! DC1, Plane X, wire 54
+  54,   3,  55  ! DC1, Plane X, wire 55
+  55,   3,  56  ! DC1, Plane X, wire 56
+  56,   3,  57  ! DC1, Plane X, wire 57
+  57,   3,  58  ! DC1, Plane X, wire 58
+  58,   3,  59  ! DC1, Plane X, wire 59
+  59,   3,  60  ! DC1, Plane X, wire 60
+  60,   3,  61  ! DC1, Plane X, wire 61
+  61,   3,  62  ! DC1, Plane X, wire 62
+  62,   3,  63  ! DC1, Plane X, wire 63
+  63,   3,  64  ! DC1, Plane X, wire 64
+
+SLOT=9
+REFCHAN=79
+  80,   3,  65  ! DC1, Plane X, wire 65
+  81,   3,  66  ! DC1, Plane X, wire 66
+  82,   3,  67  ! DC1, Plane X, wire 67
+  83,   3,  68  ! DC1, Plane X, wire 68
+  84,   3,  69  ! DC1, Plane X, wire 69
+  85,   3,  70  ! DC1, Plane X, wire 70
+  86,   3,  71  ! DC1, Plane X, wire 71
+  87,   3,  72  ! DC1, Plane X, wire 72
+  88,   3,  73  ! DC1, Plane X, wire 73
+  89,   3,  74  ! DC1, Plane X, wire 74
+  90,   3,  75  ! DC1, Plane X, wire 75
+  91,   3,  76  ! DC1, Plane X, wire 76
+  92,   3,  77  ! DC1, Plane X, wire 77
+  93,   3,  78  ! DC1, Plane X, wire 78
+  94,   3,  79  ! DC1, Plane X, wire 79
+  30,   4,   1  ! DC1, Plane X', wire 1
+  29,   4,   2  ! DC1, Plane X', wire 2
+  28,   4,   3  ! DC1, Plane X', wire 3
+  27,   4,   4  ! DC1, Plane X', wire 4
+  26,   4,   5  ! DC1, Plane X', wire 5
+  25,   4,   6  ! DC1, Plane X', wire 6
+  24,   4,   7  ! DC1, Plane X', wire 7
+  23,   4,   8  ! DC1, Plane X', wire 8
+  22,   4,   9  ! DC1, Plane X', wire 9
+  21,   4,  10  ! DC1, Plane X', wire 10
+  20,   4,  11  ! DC1, Plane X', wire 11
+  19,   4,  12  ! DC1, Plane X', wire 12
+  18,   4,  13  ! DC1, Plane X', wire 13
+  17,   4,  14  ! DC1, Plane X', wire 14
+  16,   4,  15  ! DC1, Plane X', wire 15
+
+SLOT=8
+REFCHAN=79
+  47,   4,  16  ! DC1, Plane X', wire 16
+  46,   4,  17  ! DC1, Plane X', wire 17
+  45,   4,  18  ! DC1, Plane X', wire 18
+  44,   4,  19  ! DC1, Plane X', wire 19
+  43,   4,  20  ! DC1, Plane X', wire 20
+  42,   4,  21  ! DC1, Plane X', wire 21
+  41,   4,  22  ! DC1, Plane X', wire 22
+  40,   4,  23  ! DC1, Plane X', wire 23
+  39,   4,  24  ! DC1, Plane X', wire 24
+  38,   4,  25  ! DC1, Plane X', wire 25
+  37,   4,  26  ! DC1, Plane X', wire 26
+  36,   4,  27  ! DC1, Plane X', wire 27
+  35,   4,  28  ! DC1, Plane X', wire 28
+  34,   4,  29  ! DC1, Plane X', wire 29
+  33,   4,  30  ! DC1, Plane X', wire 30
+  32,   4,  31  ! DC1, Plane X', wire 31
+
+SLOT=7
+REFCHAN=79
+   0,   4,  32  ! DC1, Plane X', wire 32
+   1,   4,  33  ! DC1, Plane X', wire 33
+   2,   4,  34  ! DC1, Plane X', wire 34
+   3,   4,  35  ! DC1, Plane X', wire 35
+   4,   4,  36  ! DC1, Plane X', wire 36
+   5,   4,  37  ! DC1, Plane X', wire 37
+   6,   4,  38  ! DC1, Plane X', wire 38
+   7,   4,  39  ! DC1, Plane X', wire 39
+   8,   4,  40  ! DC1, Plane X', wire 40
+   9,   4,  41  ! DC1, Plane X', wire 41
+  10,   4,  42  ! DC1, Plane X', wire 42
+  11,   4,  43  ! DC1, Plane X', wire 43
+  12,   4,  44  ! DC1, Plane X', wire 44
+  13,   4,  45  ! DC1, Plane X', wire 45
+  14,   4,  46  ! DC1, Plane X', wire 46
+  15,   4,  47  ! DC1, Plane X', wire 47
+
+SLOT=6
+REFCHAN=79
+  96,   4,  48  ! DC1, Plane X', wire 48
+  97,   4,  49  ! DC1, Plane X', wire 49
+  98,   4,  50  ! DC1, Plane X', wire 50
+  99,   4,  51  ! DC1, Plane X', wire 51
+ 100,   4,  52  ! DC1, Plane X', wire 52
+ 101,   4,  53  ! DC1, Plane X', wire 53
+ 102,   4,  54  ! DC1, Plane X', wire 54
+ 103,   4,  55  ! DC1, Plane X', wire 55
+ 104,   4,  56  ! DC1, Plane X', wire 56
+ 105,   4,  57  ! DC1, Plane X', wire 57
+ 106,   4,  58  ! DC1, Plane X', wire 58
+ 107,   4,  59  ! DC1, Plane X', wire 59
+ 108,   4,  60  ! DC1, Plane X', wire 60
+ 109,   4,  61  ! DC1, Plane X', wire 61
+ 110,   4,  62  ! DC1, Plane X', wire 62
+ 111,   4,  63  ! DC1, Plane X', wire 63
+   0,   4,  64  ! DC1, Plane X', wire 64
+   1,   4,  65  ! DC1, Plane X', wire 65
+   2,   4,  66  ! DC1, Plane X', wire 66
+   3,   4,  67  ! DC1, Plane X', wire 67
+   4,   4,  68  ! DC1, Plane X', wire 68
+   5,   4,  69  ! DC1, Plane X', wire 69
+   6,   4,  70  ! DC1, Plane X', wire 70
+   7,   4,  71  ! DC1, Plane X', wire 71
+   8,   4,  72  ! DC1, Plane X', wire 72
+   9,   4,  73  ! DC1, Plane X', wire 73
+  10,   4,  74  ! DC1, Plane X', wire 74
+  11,   4,  75  ! DC1, Plane X', wire 75
+  12,   4,  76  ! DC1, Plane X', wire 76
+  13,   4,  77  ! DC1, Plane X', wire 77
+  14,   4,  78  ! DC1, Plane X', wire 78
+  15,   4,  79  ! DC1, Plane X', wire 79
+
+SLOT=14
+REFCHAN=15
+  46,  12,   1  ! DC2, Plane U, wire 1
+  45,  12,   2  ! DC2, Plane U, wire 2
+  44,  12,   3  ! DC2, Plane U, wire 3
+  43,  12,   4  ! DC2, Plane U, wire 4
+  42,  12,   5  ! DC2, Plane U, wire 5
+  41,  12,   6  ! DC2, Plane U, wire 6
+  40,  12,   7  ! DC2, Plane U, wire 7
+  39,  12,   8  ! DC2, Plane U, wire 8
+  38,  12,   9  ! DC2, Plane U, wire 9
+  37,  12,  10  ! DC2, Plane U, wire 10
+  36,  12,  11  ! DC2, Plane U, wire 11
+  35,  12,  12  ! DC2, Plane U, wire 12
+  34,  12,  13  ! DC2, Plane U, wire 13
+  33,  12,  14  ! DC2, Plane U, wire 14
+  32,  12,  15  ! DC2, Plane U, wire 15
+
+SLOT=11
+REFCHAN=47
+ 127,  12,  16  ! DC2, Plane U, wire 16
+ 126,  12,  17  ! DC2, Plane U, wire 17
+ 125,  12,  18  ! DC2, Plane U, wire 18
+ 124,  12,  19  ! DC2, Plane U, wire 19
+ 123,  12,  20  ! DC2, Plane U, wire 20
+ 122,  12,  21  ! DC2, Plane U, wire 21
+ 121,  12,  22  ! DC2, Plane U, wire 22
+ 120,  12,  23  ! DC2, Plane U, wire 23
+ 119,  12,  24  ! DC2, Plane U, wire 24
+ 118,  12,  25  ! DC2, Plane U, wire 25
+ 117,  12,  26  ! DC2, Plane U, wire 26
+ 116,  12,  27  ! DC2, Plane U, wire 27
+ 115,  12,  28  ! DC2, Plane U, wire 28
+ 114,  12,  29  ! DC2, Plane U, wire 29
+ 113,  12,  30  ! DC2, Plane U, wire 30
+ 112,  12,  31  ! DC2, Plane U, wire 31
+  63,  12,  32  ! DC2, Plane U, wire 32
+  62,  12,  33  ! DC2, Plane U, wire 33
+  61,  12,  34  ! DC2, Plane U, wire 34
+  60,  12,  35  ! DC2, Plane U, wire 35
+  59,  12,  36  ! DC2, Plane U, wire 36
+  58,  12,  37  ! DC2, Plane U, wire 37
+  57,  12,  38  ! DC2, Plane U, wire 38
+  56,  12,  39  ! DC2, Plane U, wire 39
+  55,  12,  40  ! DC2, Plane U, wire 40
+  54,  12,  41  ! DC2, Plane U, wire 41
+  53,  12,  42  ! DC2, Plane U, wire 42
+  52,  12,  43  ! DC2, Plane U, wire 43
+  51,  12,  44  ! DC2, Plane U, wire 44
+  50,  12,  45  ! DC2, Plane U, wire 45
+  49,  12,  46  ! DC2, Plane U, wire 46
+  48,  12,  47  ! DC2, Plane U, wire 47
+
+SLOT=10
+REFCHAN=79
+ 127,  12,  48  ! DC2, Plane U, wire 48
+ 126,  12,  49  ! DC2, Plane U, wire 49
+ 125,  12,  50  ! DC2, Plane U, wire 50
+ 124,  12,  51  ! DC2, Plane U, wire 51
+ 123,  12,  52  ! DC2, Plane U, wire 52
+ 122,  12,  53  ! DC2, Plane U, wire 53
+ 121,  12,  54  ! DC2, Plane U, wire 54
+ 120,  12,  55  ! DC2, Plane U, wire 55
+ 119,  12,  56  ! DC2, Plane U, wire 56
+ 118,  12,  57  ! DC2, Plane U, wire 57
+ 117,  12,  58  ! DC2, Plane U, wire 58
+ 116,  12,  59  ! DC2, Plane U, wire 59
+ 115,  12,  60  ! DC2, Plane U, wire 60
+ 114,  12,  61  ! DC2, Plane U, wire 61
+ 113,  12,  62  ! DC2, Plane U, wire 62
+ 112,  12,  63  ! DC2, Plane U, wire 63
+
+SLOT=13
+REFCHAN=47
+  80,  12,  64  ! DC2, Plane U, wire 64
+  81,  12,  65  ! DC2, Plane U, wire 65
+  82,  12,  66  ! DC2, Plane U, wire 66
+  83,  12,  67  ! DC2, Plane U, wire 67
+  84,  12,  68  ! DC2, Plane U, wire 68
+  85,  12,  69  ! DC2, Plane U, wire 69
+  86,  12,  70  ! DC2, Plane U, wire 70
+  87,  12,  71  ! DC2, Plane U, wire 71
+  88,  12,  72  ! DC2, Plane U, wire 72
+  89,  12,  73  ! DC2, Plane U, wire 73
+  90,  12,  74  ! DC2, Plane U, wire 74
+  91,  12,  75  ! DC2, Plane U, wire 75
+  92,  12,  76  ! DC2, Plane U, wire 76
+  93,  12,  77  ! DC2, Plane U, wire 77
+  94,  12,  78  ! DC2, Plane U, wire 78
+  95,  12,  79  ! DC2, Plane U, wire 79
+  16,  12,  80  ! DC2, Plane U, wire 80
+  17,  12,  81  ! DC2, Plane U, wire 81
+  18,  12,  82  ! DC2, Plane U, wire 82
+  19,  12,  83  ! DC2, Plane U, wire 83
+  20,  12,  84  ! DC2, Plane U, wire 84
+  21,  12,  85  ! DC2, Plane U, wire 85
+  22,  12,  86  ! DC2, Plane U, wire 86
+  23,  12,  87  ! DC2, Plane U, wire 87
+  24,  12,  88  ! DC2, Plane U, wire 88
+  25,  12,  89  ! DC2, Plane U, wire 89
+  26,  12,  90  ! DC2, Plane U, wire 90
+  27,  12,  91  ! DC2, Plane U, wire 91
+  28,  12,  92  ! DC2, Plane U, wire 92
+  29,  12,  93  ! DC2, Plane U, wire 93
+  30,  12,  94  ! DC2, Plane U, wire 94
+  31,  12,  95  ! DC2, Plane U, wire 95
+
+SLOT=14
+REFCHAN=15
+  80,  12,  96  ! DC2, Plane U, wire 96
+  81,  12,  97  ! DC2, Plane U, wire 97
+  82,  12,  98  ! DC2, Plane U, wire 98
+  83,  12,  99  ! DC2, Plane U, wire 99
+  84,  12, 100  ! DC2, Plane U, wire 100
+  85,  12, 101  ! DC2, Plane U, wire 101
+  86,  12, 102  ! DC2, Plane U, wire 102
+  87,  12, 103  ! DC2, Plane U, wire 103
+  88,  12, 104  ! DC2, Plane U, wire 104
+  89,  12, 105  ! DC2, Plane U, wire 105
+  90,  12, 106  ! DC2, Plane U, wire 106
+  91,  12, 107  ! DC2, Plane U, wire 107
+
+SLOT=13
+REFCHAN=47
+  43,  11,   1  ! DC2, Plane U', wire 1
+  42,  11,   2  ! DC2, Plane U', wire 2
+  41,  11,   3  ! DC2, Plane U', wire 3
+  40,  11,   4  ! DC2, Plane U', wire 4
+  39,  11,   5  ! DC2, Plane U', wire 5
+  38,  11,   6  ! DC2, Plane U', wire 6
+  37,  11,   7  ! DC2, Plane U', wire 7
+  36,  11,   8  ! DC2, Plane U', wire 8
+  35,  11,   9  ! DC2, Plane U', wire 9
+  34,  11,  10  ! DC2, Plane U', wire 10
+  33,  11,  11  ! DC2, Plane U', wire 11
+  32,  11,  12  ! DC2, Plane U', wire 12
+
+SLOT=11
+REFCHAN=47
+  95,  11,  13  ! DC2, Plane U', wire 13
+  94,  11,  14  ! DC2, Plane U', wire 14
+  93,  11,  15  ! DC2, Plane U', wire 15
+  92,  11,  16  ! DC2, Plane U', wire 16
+  91,  11,  17  ! DC2, Plane U', wire 17
+  90,  11,  18  ! DC2, Plane U', wire 18
+  89,  11,  19  ! DC2, Plane U', wire 19
+  88,  11,  20  ! DC2, Plane U', wire 20
+  87,  11,  21  ! DC2, Plane U', wire 21
+  86,  11,  22  ! DC2, Plane U', wire 22
+  85,  11,  23  ! DC2, Plane U', wire 23
+  84,  11,  24  ! DC2, Plane U', wire 24
+  83,  11,  25  ! DC2, Plane U', wire 25
+  82,  11,  26  ! DC2, Plane U', wire 26
+  81,  11,  27  ! DC2, Plane U', wire 27
+  80,  11,  28  ! DC2, Plane U', wire 28
+  15,  11,  29  ! DC2, Plane U', wire 29
+  14,  11,  30  ! DC2, Plane U', wire 30
+  13,  11,  31  ! DC2, Plane U', wire 31
+  12,  11,  32  ! DC2, Plane U', wire 32
+  11,  11,  33  ! DC2, Plane U', wire 33
+  10,  11,  34  ! DC2, Plane U', wire 34
+   9,  11,  35  ! DC2, Plane U', wire 35
+   8,  11,  36  ! DC2, Plane U', wire 36
+   7,  11,  37  ! DC2, Plane U', wire 37
+   6,  11,  38  ! DC2, Plane U', wire 38
+   5,  11,  39  ! DC2, Plane U', wire 39
+   4,  11,  40  ! DC2, Plane U', wire 40
+   3,  11,  41  ! DC2, Plane U', wire 41
+   2,  11,  42  ! DC2, Plane U', wire 42
+   1,  11,  43  ! DC2, Plane U', wire 43
+   0,  11,  44  ! DC2, Plane U', wire 44
+
+SLOT=13
+REFCHAN=47
+  96,  11,  45  ! DC2, Plane U', wire 45
+  97,  11,  46  ! DC2, Plane U', wire 46
+  98,  11,  47  ! DC2, Plane U', wire 47
+  99,  11,  48  ! DC2, Plane U', wire 48
+ 100,  11,  49  ! DC2, Plane U', wire 49
+ 101,  11,  50  ! DC2, Plane U', wire 50
+ 102,  11,  51  ! DC2, Plane U', wire 51
+ 103,  11,  52  ! DC2, Plane U', wire 52
+ 104,  11,  53  ! DC2, Plane U', wire 53
+ 105,  11,  54  ! DC2, Plane U', wire 54
+ 106,  11,  55  ! DC2, Plane U', wire 55
+ 107,  11,  56  ! DC2, Plane U', wire 56
+ 108,  11,  57  ! DC2, Plane U', wire 57
+ 109,  11,  58  ! DC2, Plane U', wire 58
+ 110,  11,  59  ! DC2, Plane U', wire 59
+ 111,  11,  60  ! DC2, Plane U', wire 60
+  64,  11,  61  ! DC2, Plane U', wire 61
+  65,  11,  62  ! DC2, Plane U', wire 62
+  66,  11,  63  ! DC2, Plane U', wire 63
+  67,  11,  64  ! DC2, Plane U', wire 64
+  68,  11,  65  ! DC2, Plane U', wire 65
+  69,  11,  66  ! DC2, Plane U', wire 66
+  70,  11,  67  ! DC2, Plane U', wire 67
+  71,  11,  68  ! DC2, Plane U', wire 68
+  72,  11,  69  ! DC2, Plane U', wire 69
+  73,  11,  70  ! DC2, Plane U', wire 70
+  74,  11,  71  ! DC2, Plane U', wire 71
+  75,  11,  72  ! DC2, Plane U', wire 72
+  76,  11,  73  ! DC2, Plane U', wire 73
+  77,  11,  74  ! DC2, Plane U', wire 74
+  78,  11,  75  ! DC2, Plane U', wire 75
+  79,  11,  76  ! DC2, Plane U', wire 76
+
+SLOT=15
+REFCHAN=47
+  48,  11,  77  ! DC2, Plane U', wire 77
+  49,  11,  78  ! DC2, Plane U', wire 78
+  50,  11,  79  ! DC2, Plane U', wire 79
+  51,  11,  80  ! DC2, Plane U', wire 80
+  52,  11,  81  ! DC2, Plane U', wire 81
+  53,  11,  82  ! DC2, Plane U', wire 82
+  54,  11,  83  ! DC2, Plane U', wire 83
+  55,  11,  84  ! DC2, Plane U', wire 84
+  56,  11,  85  ! DC2, Plane U', wire 85
+  57,  11,  86  ! DC2, Plane U', wire 86
+  58,  11,  87  ! DC2, Plane U', wire 87
+  59,  11,  88  ! DC2, Plane U', wire 88
+  60,  11,  89  ! DC2, Plane U', wire 89
+  61,  11,  90  ! DC2, Plane U', wire 90
+  62,  11,  91  ! DC2, Plane U', wire 91
+  63,  11,  92  ! DC2, Plane U', wire 92
+
+SLOT=14
+REFCHAN=15
+ 112,  11,  93  ! DC2, Plane U', wire 93
+ 113,  11,  94  ! DC2, Plane U', wire 94
+ 114,  11,  95  ! DC2, Plane U', wire 95
+ 115,  11,  96  ! DC2, Plane U', wire 96
+ 116,  11,  97  ! DC2, Plane U', wire 97
+ 117,  11,  98  ! DC2, Plane U', wire 98
+ 118,  11,  99  ! DC2, Plane U', wire 99
+ 119,  11, 100  ! DC2, Plane U', wire 100
+ 120,  11, 101  ! DC2, Plane U', wire 101
+ 121,  11, 102  ! DC2, Plane U', wire 102
+ 122,  11, 103  ! DC2, Plane U', wire 103
+ 123,  11, 104  ! DC2, Plane U', wire 104
+ 124,  11, 105  ! DC2, Plane U', wire 105
+ 125,  11, 106  ! DC2, Plane U', wire 106
+ 126,  11, 107  ! DC2, Plane U', wire 107
+  14,   8,   1  ! DC2, Plane V, wire 1
+  13,   8,   2  ! DC2, Plane V, wire 2
+  12,   8,   3  ! DC2, Plane V, wire 3
+  11,   8,   4  ! DC2, Plane V, wire 4
+  10,   8,   5  ! DC2, Plane V, wire 5
+   9,   8,   6  ! DC2, Plane V, wire 6
+   8,   8,   7  ! DC2, Plane V, wire 7
+   7,   8,   8  ! DC2, Plane V, wire 8
+   6,   8,   9  ! DC2, Plane V, wire 9
+   5,   8,  10  ! DC2, Plane V, wire 10
+   4,   8,  11  ! DC2, Plane V, wire 11
+   3,   8,  12  ! DC2, Plane V, wire 12
+   2,   8,  13  ! DC2, Plane V, wire 13
+   1,   8,  14  ! DC2, Plane V, wire 14
+   0,   8,  15  ! DC2, Plane V, wire 15
+
+SLOT=12
+REFCHAN=47
+ 127,   8,  16  ! DC2, Plane V, wire 16
+ 126,   8,  17  ! DC2, Plane V, wire 17
+ 125,   8,  18  ! DC2, Plane V, wire 18
+ 124,   8,  19  ! DC2, Plane V, wire 19
+ 123,   8,  20  ! DC2, Plane V, wire 20
+ 122,   8,  21  ! DC2, Plane V, wire 21
+ 121,   8,  22  ! DC2, Plane V, wire 22
+ 120,   8,  23  ! DC2, Plane V, wire 23
+ 119,   8,  24  ! DC2, Plane V, wire 24
+ 118,   8,  25  ! DC2, Plane V, wire 25
+ 117,   8,  26  ! DC2, Plane V, wire 26
+ 116,   8,  27  ! DC2, Plane V, wire 27
+ 115,   8,  28  ! DC2, Plane V, wire 28
+ 114,   8,  29  ! DC2, Plane V, wire 29
+ 113,   8,  30  ! DC2, Plane V, wire 30
+ 112,   8,  31  ! DC2, Plane V, wire 31
+
+SLOT=14
+REFCHAN=15
+ 111,   8,  32  ! DC2, Plane V, wire 32
+ 110,   8,  33  ! DC2, Plane V, wire 33
+ 109,   8,  34  ! DC2, Plane V, wire 34
+ 108,   8,  35  ! DC2, Plane V, wire 35
+ 107,   8,  36  ! DC2, Plane V, wire 36
+ 106,   8,  37  ! DC2, Plane V, wire 37
+ 105,   8,  38  ! DC2, Plane V, wire 38
+ 104,   8,  39  ! DC2, Plane V, wire 39
+ 103,   8,  40  ! DC2, Plane V, wire 40
+ 102,   8,  41  ! DC2, Plane V, wire 41
+ 101,   8,  42  ! DC2, Plane V, wire 42
+ 100,   8,  43  ! DC2, Plane V, wire 43
+  99,   8,  44  ! DC2, Plane V, wire 44
+  98,   8,  45  ! DC2, Plane V, wire 45
+  97,   8,  46  ! DC2, Plane V, wire 46
+  96,   8,  47  ! DC2, Plane V, wire 47
+  31,   8,  48  ! DC2, Plane V, wire 48
+  30,   8,  49  ! DC2, Plane V, wire 49
+  29,   8,  50  ! DC2, Plane V, wire 50
+  28,   8,  51  ! DC2, Plane V, wire 51
+  27,   8,  52  ! DC2, Plane V, wire 52
+  26,   8,  53  ! DC2, Plane V, wire 53
+  25,   8,  54  ! DC2, Plane V, wire 54
+  24,   8,  55  ! DC2, Plane V, wire 55
+  23,   8,  56  ! DC2, Plane V, wire 56
+  22,   8,  57  ! DC2, Plane V, wire 57
+  21,   8,  58  ! DC2, Plane V, wire 58
+  20,   8,  59  ! DC2, Plane V, wire 59
+  19,   8,  60  ! DC2, Plane V, wire 60
+  18,   8,  61  ! DC2, Plane V, wire 61
+  17,   8,  62  ! DC2, Plane V, wire 62
+  16,   8,  63  ! DC2, Plane V, wire 63
+
+SLOT=12
+REFCHAN=47
+   0,   8,  64  ! DC2, Plane V, wire 64
+   1,   8,  65  ! DC2, Plane V, wire 65
+   2,   8,  66  ! DC2, Plane V, wire 66
+   3,   8,  67  ! DC2, Plane V, wire 67
+   4,   8,  68  ! DC2, Plane V, wire 68
+   5,   8,  69  ! DC2, Plane V, wire 69
+   6,   8,  70  ! DC2, Plane V, wire 70
+   7,   8,  71  ! DC2, Plane V, wire 71
+   8,   8,  72  ! DC2, Plane V, wire 72
+   9,   8,  73  ! DC2, Plane V, wire 73
+  10,   8,  74  ! DC2, Plane V, wire 74
+  11,   8,  75  ! DC2, Plane V, wire 75
+  12,   8,  76  ! DC2, Plane V, wire 76
+  13,   8,  77  ! DC2, Plane V, wire 77
+  14,   8,  78  ! DC2, Plane V, wire 78
+  15,   8,  79  ! DC2, Plane V, wire 79
+  64,   8,  80  ! DC2, Plane V, wire 80
+  65,   8,  81  ! DC2, Plane V, wire 81
+  66,   8,  82  ! DC2, Plane V, wire 82
+  67,   8,  83  ! DC2, Plane V, wire 83
+  68,   8,  84  ! DC2, Plane V, wire 84
+  69,   8,  85  ! DC2, Plane V, wire 85
+  70,   8,  86  ! DC2, Plane V, wire 86
+  71,   8,  87  ! DC2, Plane V, wire 87
+  72,   8,  88  ! DC2, Plane V, wire 88
+  73,   8,  89  ! DC2, Plane V, wire 89
+  74,   8,  90  ! DC2, Plane V, wire 90
+  75,   8,  91  ! DC2, Plane V, wire 91
+  76,   8,  92  ! DC2, Plane V, wire 92
+  77,   8,  93  ! DC2, Plane V, wire 93
+  78,   8,  94  ! DC2, Plane V, wire 94
+  79,   8,  95  ! DC2, Plane V, wire 95
+  32,   8,  96  ! DC2, Plane V, wire 96
+  33,   8,  97  ! DC2, Plane V, wire 97
+  34,   8,  98  ! DC2, Plane V, wire 98
+  35,   8,  99  ! DC2, Plane V, wire 99
+  36,   8, 100  ! DC2, Plane V, wire 100
+  37,   8, 101  ! DC2, Plane V, wire 101
+  38,   8, 102  ! DC2, Plane V, wire 102
+  39,   8, 103  ! DC2, Plane V, wire 103
+  40,   8, 104  ! DC2, Plane V, wire 104
+  41,   8, 105  ! DC2, Plane V, wire 105
+  42,   8, 106  ! DC2, Plane V, wire 106
+  43,   8, 107  ! DC2, Plane V, wire 107
+
+SLOT=15
+REFCHAN=47
+  43,   7,   1  ! DC2, Plane V', wire 1
+  42,   7,   2  ! DC2, Plane V', wire 2
+  41,   7,   3  ! DC2, Plane V', wire 3
+  40,   7,   4  ! DC2, Plane V', wire 4
+  39,   7,   5  ! DC2, Plane V', wire 5
+  38,   7,   6  ! DC2, Plane V', wire 6
+  37,   7,   7  ! DC2, Plane V', wire 7
+  36,   7,   8  ! DC2, Plane V', wire 8
+  35,   7,   9  ! DC2, Plane V', wire 9
+  34,   7,  10  ! DC2, Plane V', wire 10
+  33,   7,  11  ! DC2, Plane V', wire 11
+  32,   7,  12  ! DC2, Plane V', wire 12
+  15,   7,  13  ! DC2, Plane V', wire 13
+  14,   7,  14  ! DC2, Plane V', wire 14
+  13,   7,  15  ! DC2, Plane V', wire 15
+  12,   7,  16  ! DC2, Plane V', wire 16
+  11,   7,  17  ! DC2, Plane V', wire 17
+  10,   7,  18  ! DC2, Plane V', wire 18
+   9,   7,  19  ! DC2, Plane V', wire 19
+   8,   7,  20  ! DC2, Plane V', wire 20
+   7,   7,  21  ! DC2, Plane V', wire 21
+   6,   7,  22  ! DC2, Plane V', wire 22
+   5,   7,  23  ! DC2, Plane V', wire 23
+   4,   7,  24  ! DC2, Plane V', wire 24
+   3,   7,  25  ! DC2, Plane V', wire 25
+   2,   7,  26  ! DC2, Plane V', wire 26
+   1,   7,  27  ! DC2, Plane V', wire 27
+   0,   7,  28  ! DC2, Plane V', wire 28
+
+SLOT=14
+REFCHAN=15
+  79,   7,  29  ! DC2, Plane V', wire 29
+  78,   7,  30  ! DC2, Plane V', wire 30
+  77,   7,  31  ! DC2, Plane V', wire 31
+  76,   7,  32  ! DC2, Plane V', wire 32
+  75,   7,  33  ! DC2, Plane V', wire 33
+  74,   7,  34  ! DC2, Plane V', wire 34
+  73,   7,  35  ! DC2, Plane V', wire 35
+  72,   7,  36  ! DC2, Plane V', wire 36
+  71,   7,  37  ! DC2, Plane V', wire 37
+  70,   7,  38  ! DC2, Plane V', wire 38
+  69,   7,  39  ! DC2, Plane V', wire 39
+  68,   7,  40  ! DC2, Plane V', wire 40
+  67,   7,  41  ! DC2, Plane V', wire 41
+  66,   7,  42  ! DC2, Plane V', wire 42
+  65,   7,  43  ! DC2, Plane V', wire 43
+  64,   7,  44  ! DC2, Plane V', wire 44
+
+SLOT=13
+REFCHAN=47
+  48,   7,  45  ! DC2, Plane V', wire 45
+  49,   7,  46  ! DC2, Plane V', wire 46
+  50,   7,  47  ! DC2, Plane V', wire 47
+  51,   7,  48  ! DC2, Plane V', wire 48
+  52,   7,  49  ! DC2, Plane V', wire 49
+  53,   7,  50  ! DC2, Plane V', wire 50
+  54,   7,  51  ! DC2, Plane V', wire 51
+  55,   7,  52  ! DC2, Plane V', wire 52
+  56,   7,  53  ! DC2, Plane V', wire 53
+  57,   7,  54  ! DC2, Plane V', wire 54
+  58,   7,  55  ! DC2, Plane V', wire 55
+  59,   7,  56  ! DC2, Plane V', wire 56
+  60,   7,  57  ! DC2, Plane V', wire 57
+  61,   7,  58  ! DC2, Plane V', wire 58
+  62,   7,  59  ! DC2, Plane V', wire 59
+  63,   7,  60  ! DC2, Plane V', wire 60
+
+SLOT=12
+REFCHAN=47
+  80,   7,  61  ! DC2, Plane V', wire 61
+  81,   7,  62  ! DC2, Plane V', wire 62
+  82,   7,  63  ! DC2, Plane V', wire 63
+  83,   7,  64  ! DC2, Plane V', wire 64
+  84,   7,  65  ! DC2, Plane V', wire 65
+  85,   7,  66  ! DC2, Plane V', wire 66
+  86,   7,  67  ! DC2, Plane V', wire 67
+  87,   7,  68  ! DC2, Plane V', wire 68
+  88,   7,  69  ! DC2, Plane V', wire 69
+  89,   7,  70  ! DC2, Plane V', wire 70
+  90,   7,  71  ! DC2, Plane V', wire 71
+  91,   7,  72  ! DC2, Plane V', wire 72
+  92,   7,  73  ! DC2, Plane V', wire 73
+  93,   7,  74  ! DC2, Plane V', wire 74
+  94,   7,  75  ! DC2, Plane V', wire 75
+  95,   7,  76  ! DC2, Plane V', wire 76
+  48,   7,  77  ! DC2, Plane V', wire 77
+  49,   7,  78  ! DC2, Plane V', wire 78
+  50,   7,  79  ! DC2, Plane V', wire 79
+  51,   7,  80  ! DC2, Plane V', wire 80
+  52,   7,  81  ! DC2, Plane V', wire 81
+  53,   7,  82  ! DC2, Plane V', wire 82
+  54,   7,  83  ! DC2, Plane V', wire 83
+  55,   7,  84  ! DC2, Plane V', wire 84
+  56,   7,  85  ! DC2, Plane V', wire 85
+  57,   7,  86  ! DC2, Plane V', wire 86
+  58,   7,  87  ! DC2, Plane V', wire 87
+  59,   7,  88  ! DC2, Plane V', wire 88
+  60,   7,  89  ! DC2, Plane V', wire 89
+  61,   7,  90  ! DC2, Plane V', wire 90
+  62,   7,  91  ! DC2, Plane V', wire 91
+  63,   7,  92  ! DC2, Plane V', wire 92
+
+SLOT=11
+REFCHAN=47
+  32,   7,  93  ! DC2, Plane V', wire 93
+  33,   7,  94  ! DC2, Plane V', wire 94
+  34,   7,  95  ! DC2, Plane V', wire 95
+  35,   7,  96  ! DC2, Plane V', wire 96
+  36,   7,  97  ! DC2, Plane V', wire 97
+  37,   7,  98  ! DC2, Plane V', wire 98
+  38,   7,  99  ! DC2, Plane V', wire 99
+  39,   7, 100  ! DC2, Plane V', wire 100
+  40,   7, 101  ! DC2, Plane V', wire 101
+  41,   7, 102  ! DC2, Plane V', wire 102
+  42,   7, 103  ! DC2, Plane V', wire 103
+  43,   7, 104  ! DC2, Plane V', wire 104
+  44,   7, 105  ! DC2, Plane V', wire 105
+  45,   7, 106  ! DC2, Plane V', wire 106
+  46,   7, 107  ! DC2, Plane V', wire 107
+
+SLOT=12
+REFCHAN=47
+ 111,  10,   1  ! DC2, Plane X, wire 1
+ 110,  10,   2  ! DC2, Plane X, wire 2
+ 109,  10,   3  ! DC2, Plane X, wire 3
+ 108,  10,   4  ! DC2, Plane X, wire 4
+ 107,  10,   5  ! DC2, Plane X, wire 5
+ 106,  10,   6  ! DC2, Plane X, wire 6
+ 105,  10,   7  ! DC2, Plane X, wire 7
+ 104,  10,   8  ! DC2, Plane X, wire 8
+ 103,  10,   9  ! DC2, Plane X, wire 9
+ 102,  10,  10  ! DC2, Plane X, wire 10
+ 101,  10,  11  ! DC2, Plane X, wire 11
+ 100,  10,  12  ! DC2, Plane X, wire 12
+  99,  10,  13  ! DC2, Plane X, wire 13
+  98,  10,  14  ! DC2, Plane X, wire 14
+  97,  10,  15  ! DC2, Plane X, wire 15
+  96,  10,  16  ! DC2, Plane X, wire 16
+  31,  10,  17  ! DC2, Plane X, wire 17
+  30,  10,  18  ! DC2, Plane X, wire 18
+  29,  10,  19  ! DC2, Plane X, wire 19
+  28,  10,  20  ! DC2, Plane X, wire 20
+  27,  10,  21  ! DC2, Plane X, wire 21
+  26,  10,  22  ! DC2, Plane X, wire 22
+  25,  10,  23  ! DC2, Plane X, wire 23
+  24,  10,  24  ! DC2, Plane X, wire 24
+  23,  10,  25  ! DC2, Plane X, wire 25
+  22,  10,  26  ! DC2, Plane X, wire 26
+  21,  10,  27  ! DC2, Plane X, wire 27
+  20,  10,  28  ! DC2, Plane X, wire 28
+  19,  10,  29  ! DC2, Plane X, wire 29
+  18,  10,  30  ! DC2, Plane X, wire 30
+  17,  10,  31  ! DC2, Plane X, wire 31
+  16,  10,  32  ! DC2, Plane X, wire 32
+
+SLOT=11
+REFCHAN=47
+  31,  10,  33  ! DC2, Plane X, wire 33
+  30,  10,  34  ! DC2, Plane X, wire 34
+  29,  10,  35  ! DC2, Plane X, wire 35
+  28,  10,  36  ! DC2, Plane X, wire 36
+  27,  10,  37  ! DC2, Plane X, wire 37
+  26,  10,  38  ! DC2, Plane X, wire 38
+  25,  10,  39  ! DC2, Plane X, wire 39
+  24,  10,  40  ! DC2, Plane X, wire 40
+  23,  10,  41  ! DC2, Plane X, wire 41
+  22,  10,  42  ! DC2, Plane X, wire 42
+  21,  10,  43  ! DC2, Plane X, wire 43
+  20,  10,  44  ! DC2, Plane X, wire 44
+  19,  10,  45  ! DC2, Plane X, wire 45
+  18,  10,  46  ! DC2, Plane X, wire 46
+  17,  10,  47  ! DC2, Plane X, wire 47
+  16,  10,  48  ! DC2, Plane X, wire 48
+
+SLOT=15
+REFCHAN=47
+  16,  10,  49  ! DC2, Plane X, wire 49
+  17,  10,  50  ! DC2, Plane X, wire 50
+  18,  10,  51  ! DC2, Plane X, wire 51
+  19,  10,  52  ! DC2, Plane X, wire 52
+  20,  10,  53  ! DC2, Plane X, wire 53
+  21,  10,  54  ! DC2, Plane X, wire 54
+  22,  10,  55  ! DC2, Plane X, wire 55
+  23,  10,  56  ! DC2, Plane X, wire 56
+  24,  10,  57  ! DC2, Plane X, wire 57
+  25,  10,  58  ! DC2, Plane X, wire 58
+  26,  10,  59  ! DC2, Plane X, wire 59
+  27,  10,  60  ! DC2, Plane X, wire 60
+  28,  10,  61  ! DC2, Plane X, wire 61
+  29,  10,  62  ! DC2, Plane X, wire 62
+  30,  10,  63  ! DC2, Plane X, wire 63
+  31,  10,  64  ! DC2, Plane X, wire 64
+
+SLOT=14
+REFCHAN=15
+  48,  10,  65  ! DC2, Plane X, wire 65
+  49,  10,  66  ! DC2, Plane X, wire 66
+  50,  10,  67  ! DC2, Plane X, wire 67
+  51,  10,  68  ! DC2, Plane X, wire 68
+  52,  10,  69  ! DC2, Plane X, wire 69
+  53,  10,  70  ! DC2, Plane X, wire 70
+  54,  10,  71  ! DC2, Plane X, wire 71
+  55,  10,  72  ! DC2, Plane X, wire 72
+  56,  10,  73  ! DC2, Plane X, wire 73
+  57,  10,  74  ! DC2, Plane X, wire 74
+  58,  10,  75  ! DC2, Plane X, wire 75
+  59,  10,  76  ! DC2, Plane X, wire 76
+  60,  10,  77  ! DC2, Plane X, wire 77
+  61,  10,  78  ! DC2, Plane X, wire 78
+  62,  10,  79  ! DC2, Plane X, wire 79
+
+SLOT=13
+REFCHAN=47
+ 126,   9,   1  ! DC2, Plane X', wire 1
+ 125,   9,   2  ! DC2, Plane X', wire 2
+ 124,   9,   3  ! DC2, Plane X', wire 3
+ 123,   9,   4  ! DC2, Plane X', wire 4
+ 122,   9,   5  ! DC2, Plane X', wire 5
+ 121,   9,   6  ! DC2, Plane X', wire 6
+ 120,   9,   7  ! DC2, Plane X', wire 7
+ 119,   9,   8  ! DC2, Plane X', wire 8
+ 118,   9,   9  ! DC2, Plane X', wire 9
+ 117,   9,  10  ! DC2, Plane X', wire 10
+ 116,   9,  11  ! DC2, Plane X', wire 11
+ 115,   9,  12  ! DC2, Plane X', wire 12
+ 114,   9,  13  ! DC2, Plane X', wire 13
+ 113,   9,  14  ! DC2, Plane X', wire 14
+ 112,   9,  15  ! DC2, Plane X', wire 15
+  15,   9,  16  ! DC2, Plane X', wire 16
+  14,   9,  17  ! DC2, Plane X', wire 17
+  13,   9,  18  ! DC2, Plane X', wire 18
+  12,   9,  19  ! DC2, Plane X', wire 19
+  11,   9,  20  ! DC2, Plane X', wire 20
+  10,   9,  21  ! DC2, Plane X', wire 21
+   9,   9,  22  ! DC2, Plane X', wire 22
+   8,   9,  23  ! DC2, Plane X', wire 23
+   7,   9,  24  ! DC2, Plane X', wire 24
+   6,   9,  25  ! DC2, Plane X', wire 25
+   5,   9,  26  ! DC2, Plane X', wire 26
+   4,   9,  27  ! DC2, Plane X', wire 27
+   3,   9,  28  ! DC2, Plane X', wire 28
+   2,   9,  29  ! DC2, Plane X', wire 29
+   1,   9,  30  ! DC2, Plane X', wire 30
+   0,   9,  31  ! DC2, Plane X', wire 31
+
+SLOT=11
+REFCHAN=47
+  96,   9,  32  ! DC2, Plane X', wire 32
+  97,   9,  33  ! DC2, Plane X', wire 33
+  98,   9,  34  ! DC2, Plane X', wire 34
+  99,   9,  35  ! DC2, Plane X', wire 35
+ 100,   9,  36  ! DC2, Plane X', wire 36
+ 101,   9,  37  ! DC2, Plane X', wire 37
+ 102,   9,  38  ! DC2, Plane X', wire 38
+ 103,   9,  39  ! DC2, Plane X', wire 39
+ 104,   9,  40  ! DC2, Plane X', wire 40
+ 105,   9,  41  ! DC2, Plane X', wire 41
+ 106,   9,  42  ! DC2, Plane X', wire 42
+ 107,   9,  43  ! DC2, Plane X', wire 43
+ 108,   9,  44  ! DC2, Plane X', wire 44
+ 109,   9,  45  ! DC2, Plane X', wire 45
+ 110,   9,  46  ! DC2, Plane X', wire 46
+ 111,   9,  47  ! DC2, Plane X', wire 47
+  64,   9,  48  ! DC2, Plane X', wire 48
+  65,   9,  49  ! DC2, Plane X', wire 49
+  66,   9,  50  ! DC2, Plane X', wire 50
+  67,   9,  51  ! DC2, Plane X', wire 51
+  68,   9,  52  ! DC2, Plane X', wire 52
+  69,   9,  53  ! DC2, Plane X', wire 53
+  70,   9,  54  ! DC2, Plane X', wire 54
+  71,   9,  55  ! DC2, Plane X', wire 55
+  72,   9,  56  ! DC2, Plane X', wire 56
+  73,   9,  57  ! DC2, Plane X', wire 57
+  74,   9,  58  ! DC2, Plane X', wire 58
+  75,   9,  59  ! DC2, Plane X', wire 59
+  76,   9,  60  ! DC2, Plane X', wire 60
+  77,   9,  61  ! DC2, Plane X', wire 61
+  78,   9,  62  ! DC2, Plane X', wire 62
+  79,   9,  63  ! DC2, Plane X', wire 63
+
+SLOT=10
+REFCHAN=79
+  96,   9,  64  ! DC2, Plane X', wire 64
+  97,   9,  65  ! DC2, Plane X', wire 65
+  98,   9,  66  ! DC2, Plane X', wire 66
+  99,   9,  67  ! DC2, Plane X', wire 67
+ 100,   9,  68  ! DC2, Plane X', wire 68
+ 101,   9,  69  ! DC2, Plane X', wire 69
+ 102,   9,  70  ! DC2, Plane X', wire 70
+ 103,   9,  71  ! DC2, Plane X', wire 71
+ 104,   9,  72  ! DC2, Plane X', wire 72
+ 105,   9,  73  ! DC2, Plane X', wire 73
+ 106,   9,  74  ! DC2, Plane X', wire 74
+ 107,   9,  75  ! DC2, Plane X', wire 75
+ 108,   9,  76  ! DC2, Plane X', wire 76
+ 109,   9,  77  ! DC2, Plane X', wire 77
+ 110,   9,  78  ! DC2, Plane X', wire 78
+ 111,   9,  79  ! DC2, Plane X', wire 79
+
+
+DETECTOR=23
+
+ROC=2
+
+SLOT=3
+   0,   1,   1,   0  ! p1x01A+
+   1,   1,   2,   0  ! p1x02A+
+   2,   1,   3,   0  ! p1x03A+
+   3,   1,   4,   0  ! p1x04A+
+   4,   1,   5,   0  ! p1x05A+
+   5,   1,   6,   0  ! p1x06A+
+   6,   1,   7,   0  ! p1x07A+
+   7,   1,   8,   0  ! p1x08A+
+   8,   1,   9,   0  ! p1x09A+
+   9,   1,  10,   0  ! p1x10A+
+  10,   1,  11,   0  ! p1x11A+
+  11,   1,  12,   0  ! p1x12A+
+  12,   1,  13,   0  ! p1x13A+
+  13,   1,   1,   1  ! p1x01A-
+  14,   1,   2,   1  ! p1x02A-
+  15,   1,   3,   1  ! p1x03A-
+
+SLOT=4
+   0,   1,   4,   1  ! p1x04A-
+   1,   1,   5,   1  ! p1x05A-
+   2,   1,   6,   1  ! p1x06A-
+   3,   1,   7,   1  ! p1x07A-
+   4,   1,   8,   1  ! p1x08A-
+   5,   1,   9,   1  ! p1x09A-
+   6,   1,  10,   1  ! p1x10A-
+   7,   1,  11,   1  ! p1x11A-
+   8,   1,  12,   1  ! p1x12A-
+   9,   1,  13,   1  ! p1x13A-
+  10,   2,   1,   1  ! p1y01A-
+  11,   2,   2,   1  ! p1y02A-
+  12,   2,   3,   1  ! p1y03A-
+  13,   2,   4,   1  ! p1y04A-
+  14,   2,   5,   1  ! p1y05A-
+  15,   2,   6,   1  ! p1y06A-
+
+SLOT=5
+   0,   2,   7,   1  ! p1y07A-
+   1,   2,   8,   1  ! p1y08A-
+   2,   2,   9,   1  ! p1y09A-
+   3,   2,  10,   1  ! p1y10A-
+   4,   2,  11,   1  ! p1y11A-
+   5,   2,  12,   1  ! p1y12A-
+   6,   2,  13,   1  ! p1y13A-
+   7,   2,   1,   0  ! p1y01A+
+   8,   2,   2,   0  ! p1y02A+
+   9,   2,   3,   0  ! p1y03A+
+  10,   2,   4,   0  ! p1y04A+
+  11,   2,   5,   0  ! p1y05A+
+  12,   2,   6,   0  ! p1y06A+
+  13,   2,   7,   0  ! p1y07A+
+  14,   2,   8,   0  ! p1y08A+
+  15,   2,   9,   0  ! p1y09A+
+
+SLOT=6
+   0,   2,  10,   0  ! p1y10A+
+   1,   2,  11,   0  ! p1y11A+
+   2,   2,  12,   0  ! p1y12A+
+   3,   2,  13,   0  ! p1y13A+
+   4,   3,   1,   0  ! p2x01A+
+   5,   3,   2,   0  ! p2x02A+
+   6,   3,   3,   0  ! p2x03A+
+   7,   3,   4,   0  ! p2x04A+
+   8,   3,   5,   0  ! p2x05A+
+   9,   3,   6,   0  ! p2x06A+
+  10,   3,   7,   0  ! p2x07A+
+  11,   3,   8,   0  ! p2x08A+
+  12,   3,   9,   0  ! p2x09A+
+  13,   3,  10,   0  ! p2x10A+
+  14,   3,  11,   0  ! p2x11A+
+  15,   3,  12,   0  ! p2x12A+
+
+SLOT=7
+   0,   3,  13,   0  ! p2x13A+
+   1,   3,  14,   0  ! p2x14A+
+   2,   3,   1,   1  ! p2x01A-
+   3,   3,   2,   1  ! p2x02A-
+   4,   3,   3,   1  ! p2x03A-
+   5,   3,   4,   1  ! p2x04A-
+   6,   3,   5,   1  ! p2x05A-
+   7,   3,   6,   1  ! p2x06A-
+   8,   3,   7,   1  ! p2x07A-
+   9,   3,   8,   1  ! p2x08A-
+  10,   3,   9,   1  ! p2x09A-
+  11,   3,  10,   1  ! p2x10A-
+  12,   3,  11,   1  ! p2x11A-
+  13,   3,  12,   1  ! p2x12A-
+  14,   3,  13,   1  ! p2x13A-
+  15,   3,  14,   1  ! p2x14A-
+
+SLOT=8
+   0,   4,   1,   1  ! p2y01A-
+   1,   4,   2,   1  ! p2y02A-
+   2,   4,   3,   1  ! p2y03A-
+   3,   4,   4,   1  ! p2y04A-
+   4,   4,   5,   1  ! p2y05A-
+   5,   4,   6,   1  ! p2y06A-
+   6,   4,   7,   1  ! p2y07A-
+   7,   4,   8,   1  ! p2y08A-
+   8,   4,   9,   1  ! p2y09A-
+   9,   4,  10,   1  ! p2y10A-
+  10,   4,  11,   1  ! p2y11A-
+  11,   4,  12,   1  ! p2y12A-
+  12,   4,  13,   1  ! p2y13A-
+  13,   4,  14,   1  ! p2y14A-
+  14,   4,  15,   1  ! p2y15A-
+  15,   4,  16,   1  ! p2y16A-
+
+SLOT=9
+   0,   4,  17,   1  ! p2y17A-
+   1,   4,  18,   1  ! p2y18A-
+   2,   4,  19,   1  ! p2y19A-
+   3,   4,  20,   1  ! p2y20A-
+   4,   4,  21,   1  ! p2y21A-
+   5,   4,   1,   0  ! p2y01A+
+   6,   4,   2,   0  ! p2y02A+
+   7,   4,   3,   0  ! p2y03A+
+   8,   4,   4,   0  ! p2y04A+
+   9,   4,   5,   0  ! p2y05A+
+  10,   4,   6,   0  ! p2y06A+
+  11,   4,   7,   0  ! p2y07A+
+  12,   4,   8,   0  ! p2y08A+
+  13,   4,   9,   0  ! p2y09A+
+  14,   4,  10,   0  ! p2y10A+
+  15,   4,  11,   0  ! p2y11A+
+
+SLOT=10
+   0,   4,  12,   0  ! p2y12A+
+   1,   4,  13,   0  ! p2y13A+
+   2,   4,  14,   0  ! p2y14A+
+   3,   4,  15,   0  ! p2y15A+
+   4,   4,  16,   0  ! p2y16A+
+   5,   4,  17,   0  ! p2y17A+
+   6,   4,  18,   0  ! p2y18A+
+   7,   4,  19,   0  ! p2y19A+
+   8,   4,  20,   0  ! p2y20A+
+   9,   4,  21,   0  ! p2y21A+
+
+SLOT=20
+REFINDEX=0
+  15,1000,   0,   0
+   0,   1,   1,   2  ! p1x01T+
+   1,   1,   3,   2  ! p1x03T+
+   2,   1,   5,   2  ! p1x05T+
+   3,   1,   7,   2  ! p1x07T+
+   4,   1,   2,   2  ! p1x02T+
+   5,   1,   4,   2  ! p1x04T+
+   6,   1,   6,   2  ! p1x06T+
+   7,   1,   8,   2  ! p1x08T+
+   8,   1,   9,   2  ! p1x09T+
+   9,   1,  11,   2  ! p1x11T+
+  10,   1,  13,   2  ! p1x13T+
+  12,   1,  10,   2  ! p1x10T+
+  13,   1,  12,   2  ! p1x12T+
+  16,   1,   1,   3  ! p1x01T-
+  17,   1,   3,   3  ! p1x03T-
+  18,   1,   5,   3  ! p1x05T-
+  19,   1,   7,   3  ! p1x07T-
+  20,   1,   2,   3  ! p1x02T-
+  21,   1,   4,   3  ! p1x04T-
+  22,   1,   6,   3  ! p1x06T-
+  23,   1,   8,   3  ! p1x08T-
+  24,   1,   9,   3  ! p1x09T-
+  25,   1,  11,   3  ! p1x11T-
+  26,   1,  13,   3  ! p1x13T-
+  28,   1,  10,   3  ! p1x10T-
+  30,   1,  12,   3  ! p1x12T-
+  32,   2,   1,   3  ! p1y01T-
+  33,   2,   3,   3  ! p1y03T-
+  34,   2,   5,   3  ! p1y05T-
+  35,   2,   7,   3  ! p1y07T-
+  36,   2,   2,   3  ! p1y02T-
+  37,   2,   4,   3  ! p1y04T-
+  38,   2,   6,   3  ! p1y06T-
+  39,   2,   8,   3  ! p1y08T-
+  40,   2,   9,   3  ! p1y09T-
+  41,   2,  11,   3  ! p1y11T-
+  42,   2,  13,   3  ! p1y13T-
+  44,   2,  10,   3  ! p1y10T-
+  45,   2,  12,   3  ! p1y12T-
+  48,   2,   1,   2  ! p1y01T+
+  49,   2,   3,   2  ! p1y03T+
+  50,   2,   5,   2  ! p1y05T+
+  51,   2,   7,   2  ! p1y07T+
+  52,   2,   2,   2  ! p1y02T+
+  53,   2,   4,   2  ! p1y04T+
+  54,   2,   6,   2  ! p1y06T+
+  55,   2,   8,   2  ! p1y08T+
+  56,   2,   9,   2  ! p1y09T+
+  57,   2,  11,   2  ! p1y11T+
+  58,   2,  13,   2  ! p1y13T+
+  60,   2,  10,   2  ! p1y10T+
+  61,   2,  12,   2  ! p1y12T+
+  64,   3,   1,   2  ! p2x01T+
+  65,   3,   3,   2  ! p2x03T+
+  66,   3,   5,   2  ! p2x05T+
+  67,   3,   7,   2  ! p2x07T+
+  68,   3,   2,   2  ! p2x02T+
+  69,   3,   4,   2  ! p2x04T+
+  70,   3,   6,   2  ! p2x06T+
+  71,   3,   8,   2  ! p2x08T+
+  72,   3,   9,   2  ! p2x09T+
+  73,   3,  11,   2  ! p2x11T+
+  74,   3,  13,   2  ! p2x13T+
+  76,   3,  10,   2  ! p2x10T+
+  77,   3,  12,   2  ! p2x12T+
+  78,   3,  14,   2  ! p2x14T+
+  80,   3,   1,   3  ! p2x01T-
+  81,   3,   3,   3  ! p2x03T-
+  82,   3,   5,   3  ! p2x05T-
+  83,   3,   7,   3  ! p2x07T-
+  84,   3,   2,   3  ! p2x02T-
+  85,   3,   4,   3  ! p2x04T-
+  86,   3,   6,   3  ! p2x06T-
+  87,   3,   8,   3  ! p2x08T-
+  88,   3,   9,   3  ! p2x09T-
+  89,   3,  11,   3  ! p2x11T-
+  90,   3,  13,   3  ! p2x13T-
+  92,   3,  10,   3  ! p2x10T-
+  93,   3,  12,   3  ! p2x12T-
+  94,   3,  14,   3  ! p2x14T-
+  96,   4,   1,   3  ! p2y01T-
+  97,   4,   3,   3  ! p2y03T-
+  98,   4,   5,   3  ! p2y05T-
+  99,   4,   7,   3  ! p2y07T-
+ 100,   4,   2,   3  ! p2y02T-
+ 101,   4,   4,   3  ! p2y04T-
+ 102,   4,   6,   3  ! p2y06T-
+ 103,   4,   8,   3  ! p2y08T-
+ 104,   4,   9,   3  ! p2y09T-
+ 105,   4,  11,   3  ! p2y11T-
+ 106,   4,  13,   3  ! p2y13T-
+ 107,   4,  15,   3  ! p2y15T-
+ 108,   4,  10,   3  ! p2y10T-
+ 109,   4,  12,   3  ! p2y12T-
+ 110,   4,  14,   3  ! p2y14T-
+ 111,   4,  16,   3  ! p2y16T-
+ 112,   4,  17,   3  ! p2y17T-
+ 113,   4,  19,   3  ! p2y19T-
+ 114,   4,  21,   3  ! p2y21T-
+ 116,   4,  18,   3  ! p2y18T-
+ 117,   4,  20,   3  ! p2y20T-
+
+SLOT=19
+REFINDEX=0
+  31,1000,   0,   1
+   0,   4,   1,   2  ! p2y01T+
+   1,   4,   3,   2  ! p2y03T+
+   2,   4,   5,   2  ! p2y05T+
+   3,   4,   7,   2  ! p2y07T+
+   4,   4,   2,   2  ! p2y02T+
+   5,   4,   4,   2  ! p2y04T+
+   6,   4,   6,   2  ! p2y06T+
+   7,   4,   8,   2  ! p2y08T+
+   8,   4,   9,   2  ! p2y09T+
+   9,   4,  11,   2  ! p2y11T+
+  10,   4,  13,   2  ! p2y13T+
+  11,   4,  15,   2  ! p2y15T+
+  12,   4,  10,   2  ! p2y10T+
+  13,   4,  12,   2  ! p2y12T+
+  14,   4,  14,   2  ! p2y14T+
+  15,   4,  16,   2  ! p2y16T+
+  16,   4,  17,   2  ! p2y17T+
+  17,   4,  19,   2  ! p2y19T+
+  18,   4,  21,   2  ! p2y21T+
+  20,   4,  18,   2  ! p2y18T+
+  21,   4,  20,   2  ! p2y20T+
+
+
+DETECTOR=24
+
+ROC=2
+
+SLOT=13
+   8,   1,   1,   0  ! pHGCER01
+   9,   1,   2,   0  ! pHGCER02
+  10,   1,   3,   0  ! pHGCER03
+  11,   1,   4,   0  ! pHGCER04
+
+
+DETECTOR=25
+
+ROC=2
+
+SLOT=10
+  10,   1,   1,   0  ! pAER01+
+  11,   1,   2,   0  ! pAER02+
+  12,   1,   3,   0  ! pAER03+
+  13,   1,   4,   0  ! pAER04+
+  14,   1,   5,   0  ! pAER05+
+  15,   1,   6,   0  ! pAER06+
+
+SLOT=13
+   0,   1,   7,   0  ! pAER07+
+   1,   1,   1,   1  ! pAER01-
+   2,   1,   2,   1  ! pAER02-
+   3,   1,   3,   1  ! pAER03-
+   4,   1,   4,   1  ! pAER04-
+   5,   1,   5,   1  ! pAER05-
+   6,   1,   6,   1  ! pAER06-
+   7,   1,   7,   1  ! pAER07-
+
+
+DETECTOR=26
+
+ROC=4
+
+SLOT=3
+   0,   1,   1,   0  ! pPRSH1+
+   1,   1,   2,   0  ! pPRSH2+
+   2,   1,   3,   0  ! pPRSH3+
+   3,   1,   4,   0  ! pPRSH4+
+   4,   1,   5,   0  ! pPRSH5+
+   5,   1,   6,   0  ! pPRSH6+
+   6,   1,   7,   0  ! pPRSH7+
+   7,   1,   8,   0  ! pPRSH8+
+   8,   1,   9,   0  ! pPRSH9+
+   9,   1,  10,   0  ! pPRSH10+
+  10,   1,  11,   0  ! pPRSH11+
+  11,   1,  12,   0  ! pPRSH12+
+  12,   1,  13,   0  ! pPRSH13+
+  13,   1,  14,   0  ! pPRSH14+
+
+SLOT=4
+   0,   1,   1,   1  ! pPRSH1-
+   1,   1,   2,   1  ! pPRSH2-
+   2,   1,   3,   1  ! pPRSH3-
+   3,   1,   4,   1  ! pPRSH4-
+   4,   1,   5,   1  ! pPRSH5-
+   5,   1,   6,   1  ! pPRSH6-
+   6,   1,   7,   1  ! pPRSH7-
+   7,   1,   8,   1  ! pPRSH8-
+   8,   1,   9,   1  ! pPRSH9-
+   9,   1,  10,   1  ! pPRSH10-
+  10,   1,  11,   1  ! pPRSH11-
+  11,   1,  12,   1  ! pPRSH12-
+  12,   1,  13,   1  ! pPRSH13-
+  13,   1,  14,   1  ! pPRSH14-
+
+SLOT=5
+   0,   2,   1,   0  ! Row 1, Column 1
+   1,   2,   2,   0  ! Row 2, Column 1
+   2,   2,   3,   0  ! Row 3, Column 1
+   3,   2,   4,   0  ! Row 4, Column 1
+   4,   2,   5,   0  ! Row 5, Column 1
+   5,   2,   6,   0  ! Row 6, Column 1
+   6,   2,   7,   0  ! Row 7, Column 1
+   7,   2,   8,   0  ! Row 8, Column 1
+   8,   2,   9,   0  ! Row 9, Column 1
+   9,   2,  10,   0  ! Row 10, Column 1
+  10,   2,  11,   0  ! Row 11, Column 1
+  11,   2,  12,   0  ! Row 12, Column 1
+  12,   2,  13,   0  ! Row 13, Column 1
+  13,   2,  14,   0  ! Row 14, Column 1
+  14,   2,  15,   0  ! Row 15, Column 1
+  15,   2,  16,   0  ! Row 16, Column 1
+
+SLOT=6
+   0,   2,  17,   0  ! Row 1, Column 2
+   1,   2,  18,   0  ! Row 2, Column 2
+   2,   2,  19,   0  ! Row 3, Column 2
+   3,   2,  20,   0  ! Row 4, Column 2
+   4,   2,  21,   0  ! Row 5, Column 2
+   5,   2,  22,   0  ! Row 6, Column 2
+   6,   2,  23,   0  ! Row 7, Column 2
+   7,   2,  24,   0  ! Row 8, Column 2
+   8,   2,  25,   0  ! Row 9, Column 2
+   9,   2,  26,   0  ! Row 10, Column 2
+  10,   2,  27,   0  ! Row 11, Column 2
+  11,   2,  28,   0  ! Row 12, Column 2
+  12,   2,  29,   0  ! Row 13, Column 2
+  13,   2,  30,   0  ! Row 14, Column 2
+  14,   2,  31,   0  ! Row 15, Column 2
+  15,   2,  32,   0  ! Row 16, Column 2
+
+SLOT=7
+   0,   2,  33,   0  ! Row 1, Column 3
+   1,   2,  34,   0  ! Row 2, Column 3
+   2,   2,  35,   0  ! Row 3, Column 3
+   3,   2,  36,   0  ! Row 4, Column 3
+   4,   2,  37,   0  ! Row 5, Column 3
+   5,   2,  38,   0  ! Row 6, Column 3
+   6,   2,  39,   0  ! Row 7, Column 3
+   7,   2,  40,   0  ! Row 8, Column 3
+   8,   2,  41,   0  ! Row 9, Column 3
+   9,   2,  42,   0  ! Row 10, Column 3
+  10,   2,  43,   0  ! Row 11, Column 3
+  11,   2,  44,   0  ! Row 12, Column 3
+  12,   2,  45,   0  ! Row 13, Column 3
+  13,   2,  46,   0  ! Row 14, Column 3
+  14,   2,  47,   0  ! Row 15, Column 3
+  15,   2,  48,   0  ! Row 16, Column 3
+
+SLOT=8
+   0,   2,  49,   0  ! Row 1, Column 4
+   1,   2,  50,   0  ! Row 2, Column 4
+   2,   2,  51,   0  ! Row 3, Column 4
+   3,   2,  52,   0  ! Row 4, Column 4
+   4,   2,  53,   0  ! Row 5, Column 4
+   5,   2,  54,   0  ! Row 6, Column 4
+   6,   2,  55,   0  ! Row 7, Column 4
+   7,   2,  56,   0  ! Row 8, Column 4
+   8,   2,  57,   0  ! Row 9, Column 4
+   9,   2,  58,   0  ! Row 10, Column 4
+  10,   2,  59,   0  ! Row 11, Column 4
+  11,   2,  60,   0  ! Row 12, Column 4
+  12,   2,  61,   0  ! Row 13, Column 4
+  13,   2,  62,   0  ! Row 14, Column 4
+  14,   2,  63,   0  ! Row 15, Column 4
+  15,   2,  64,   0  ! Row 16, Column 4
+
+SLOT=9
+   0,   2,  65,   0  ! Row 1, Column 5
+   1,   2,  66,   0  ! Row 2, Column 5
+   2,   2,  67,   0  ! Row 3, Column 5
+   3,   2,  68,   0  ! Row 4, Column 5
+   4,   2,  69,   0  ! Row 5, Column 5
+   5,   2,  70,   0  ! Row 6, Column 5
+   6,   2,  71,   0  ! Row 7, Column 5
+   7,   2,  72,   0  ! Row 8, Column 5
+   8,   2,  73,   0  ! Row 9, Column 5
+   9,   2,  74,   0  ! Row 10, Column 5
+  10,   2,  75,   0  ! Row 11, Column 5
+  11,   2,  76,   0  ! Row 12, Column 5
+  12,   2,  77,   0  ! Row 13, Column 5
+  13,   2,  78,   0  ! Row 14, Column 5
+  14,   2,  79,   0  ! Row 15, Column 5
+  15,   2,  80,   0  ! Row 16, Column 5
+
+SLOT=10
+   0,   2,  81,   0  ! Row 1, Column 6
+   1,   2,  82,   0  ! Row 2, Column 6
+   2,   2,  83,   0  ! Row 3, Column 6
+   3,   2,  84,   0  ! Row 4, Column 6
+   4,   2,  85,   0  ! Row 5, Column 6
+   5,   2,  86,   0  ! Row 6, Column 6
+   6,   2,  87,   0  ! Row 7, Column 6
+   7,   2,  88,   0  ! Row 8, Column 6
+   8,   2,  89,   0  ! Row 9, Column 6
+   9,   2,  90,   0  ! Row 10, Column 6
+  10,   2,  91,   0  ! Row 11, Column 6
+  11,   2,  92,   0  ! Row 12, Column 6
+  12,   2,  93,   0  ! Row 13, Column 6
+  13,   2,  94,   0  ! Row 14, Column 6
+  14,   2,  95,   0  ! Row 15, Column 6
+  15,   2,  96,   0  ! Row 16, Column 6
+
+SLOT=13
+   0,   2,  97,   0  ! Row 1, Column 7
+   1,   2,  98,   0  ! Row 2, Column 7
+   2,   2,  99,   0  ! Row 3, Column 7
+   3,   2, 100,   0  ! Row 4, Column 7
+   4,   2, 101,   0  ! Row 5, Column 7
+   5,   2, 102,   0  ! Row 6, Column 7
+   6,   2, 103,   0  ! Row 7, Column 7
+   7,   2, 104,   0  ! Row 8, Column 7
+   8,   2, 105,   0  ! Row 9, Column 7
+   9,   2, 106,   0  ! Row 10, Column 7
+  10,   2, 107,   0  ! Row 11, Column 7
+  11,   2, 108,   0  ! Row 12, Column 7
+  12,   2, 109,   0  ! Row 13, Column 7
+  13,   2, 110,   0  ! Row 14, Column 7
+  14,   2, 111,   0  ! Row 15, Column 7
+  15,   2, 112,   0  ! Row 16, Column 7
+
+SLOT=14
+   0,   2, 113,   0  ! Row 1, Column 8
+   1,   2, 114,   0  ! Row 2, Column 8
+   2,   2, 115,   0  ! Row 3, Column 8
+   3,   2, 116,   0  ! Row 4, Column 8
+   4,   2, 117,   0  ! Row 5, Column 8
+   5,   2, 118,   0  ! Row 6, Column 8
+   6,   2, 119,   0  ! Row 7, Column 8
+   7,   2, 120,   0  ! Row 8, Column 8
+   8,   2, 121,   0  ! Row 9, Column 8
+   9,   2, 122,   0  ! Row 10, Column 8
+  10,   2, 123,   0  ! Row 11, Column 8
+  11,   2, 124,   0  ! Row 12, Column 8
+  12,   2, 125,   0  ! Row 13, Column 8
+  13,   2, 126,   0  ! Row 14, Column 8
+  14,   2, 127,   0  ! Row 15, Column 8
+  15,   2, 128,   0  ! Row 16, Column 8
+
+SLOT=15
+   0,   2, 129,   0  ! Row 1, Column 9
+   1,   2, 130,   0  ! Row 2, Column 9
+   2,   2, 131,   0  ! Row 3, Column 9
+   3,   2, 132,   0  ! Row 4, Column 9
+   4,   2, 133,   0  ! Row 5, Column 9
+   5,   2, 134,   0  ! Row 6, Column 9
+   6,   2, 135,   0  ! Row 7, Column 9
+   7,   2, 136,   0  ! Row 8, Column 9
+   8,   2, 137,   0  ! Row 9, Column 9
+   9,   2, 138,   0  ! Row 10, Column 9
+  10,   2, 139,   0  ! Row 11, Column 9
+  11,   2, 140,   0  ! Row 12, Column 9
+  12,   2, 141,   0  ! Row 13, Column 9
+  13,   2, 142,   0  ! Row 14, Column 9
+  14,   2, 143,   0  ! Row 15, Column 9
+  15,   2, 144,   0  ! Row 16, Column 9
+
+SLOT=16
+   0,   2, 145,   0  ! Row 1, Column 10
+   1,   2, 146,   0  ! Row 2, Column 10
+   2,   2, 147,   0  ! Row 3, Column 10
+   3,   2, 148,   0  ! Row 4, Column 10
+   4,   2, 149,   0  ! Row 5, Column 10
+   5,   2, 150,   0  ! Row 6, Column 10
+   6,   2, 151,   0  ! Row 7, Column 10
+   7,   2, 152,   0  ! Row 8, Column 10
+   8,   2, 153,   0  ! Row 9, Column 10
+   9,   2, 154,   0  ! Row 10, Column 10
+  10,   2, 155,   0  ! Row 11, Column 10
+  11,   2, 156,   0  ! Row 12, Column 10
+  12,   2, 157,   0  ! Row 13, Column 10
+  13,   2, 158,   0  ! Row 14, Column 10
+  14,   2, 159,   0  ! Row 15, Column 10
+  15,   2, 160,   0  ! Row 16, Column 10
+
+SLOT=17
+   0,   2, 161,   0  ! Row 1, Column 11
+   1,   2, 162,   0  ! Row 2, Column 11
+   2,   2, 163,   0  ! Row 3, Column 11
+   3,   2, 164,   0  ! Row 4, Column 11
+   4,   2, 165,   0  ! Row 5, Column 11
+   5,   2, 166,   0  ! Row 6, Column 11
+   6,   2, 167,   0  ! Row 7, Column 11
+   7,   2, 168,   0  ! Row 8, Column 11
+   8,   2, 169,   0  ! Row 9, Column 11
+   9,   2, 170,   0  ! Row 10, Column 11
+  10,   2, 171,   0  ! Row 11, Column 11
+  11,   2, 172,   0  ! Row 12, Column 11
+  12,   2, 173,   0  ! Row 13, Column 11
+  13,   2, 174,   0  ! Row 14, Column 11
+  14,   2, 175,   0  ! Row 15, Column 11
+  15,   2, 176,   0  ! Row 16, Column 11
+
+SLOT=18
+   0,   2, 177,   0  ! Row 1, Column 12
+   1,   2, 178,   0  ! Row 2, Column 12
+   2,   2, 179,   0  ! Row 3, Column 12
+   3,   2, 180,   0  ! Row 4, Column 12
+   4,   2, 181,   0  ! Row 5, Column 12
+   5,   2, 182,   0  ! Row 6, Column 12
+   6,   2, 183,   0  ! Row 7, Column 12
+   7,   2, 184,   0  ! Row 8, Column 12
+   8,   2, 185,   0  ! Row 9, Column 12
+   9,   2, 186,   0  ! Row 10, Column 12
+  10,   2, 187,   0  ! Row 11, Column 12
+  11,   2, 188,   0  ! Row 12, Column 12
+  12,   2, 189,   0  ! Row 13, Column 12
+  13,   2, 190,   0  ! Row 14, Column 12
+  14,   2, 191,   0  ! Row 15, Column 12
+  15,   2, 192,   0  ! Row 16, Column 12
+
+SLOT=19
+   0,   2, 193,   0  ! Row 1, Column 13
+   1,   2, 194,   0  ! Row 2, Column 13
+   2,   2, 195,   0  ! Row 3, Column 13
+   3,   2, 196,   0  ! Row 4, Column 13
+   4,   2, 197,   0  ! Row 5, Column 13
+   5,   2, 198,   0  ! Row 6, Column 13
+   6,   2, 199,   0  ! Row 7, Column 13
+   7,   2, 200,   0  ! Row 8, Column 13
+   8,   2, 201,   0  ! Row 9, Column 13
+   9,   2, 202,   0  ! Row 10, Column 13
+  10,   2, 203,   0  ! Row 11, Column 13
+  11,   2, 204,   0  ! Row 12, Column 13
+  12,   2, 205,   0  ! Row 13, Column 13
+  13,   2, 206,   0  ! Row 14, Column 13
+  14,   2, 207,   0  ! Row 15, Column 13
+  15,   2, 208,   0  ! Row 16, Column 13
+
+SLOT=20
+   0,   2, 209,   0  ! Row 1, Column 14
+   1,   2, 210,   0  ! Row 2, Column 14
+   2,   2, 211,   0  ! Row 3, Column 14
+   3,   2, 212,   0  ! Row 4, Column 14
+   4,   2, 213,   0  ! Row 5, Column 14
+   5,   2, 214,   0  ! Row 6, Column 14
+   6,   2, 215,   0  ! Row 7, Column 14
+   7,   2, 216,   0  ! Row 8, Column 14
+   8,   2, 217,   0  ! Row 9, Column 14
+   9,   2, 218,   0  ! Row 10, Column 14
+  10,   2, 219,   0  ! Row 11, Column 14
+  11,   2, 220,   0  ! Row 12, Column 14
+  12,   2, 221,   0  ! Row 13, Column 14
+  13,   2, 222,   0  ! Row 14, Column 14
+  14,   2, 223,   0  ! Row 15, Column 14
+  15,   2, 224,   0  ! Row 16, Column 14
diff --git a/MAPS/db_cratemap.dat b/MAPS/db_cratemap.dat
index 054ca6d7bc25491d515099089c71e0fae4baa57e..a8397b04ba440f94224fec0d9808a10dbcdac536 100644
--- a/MAPS/db_cratemap.dat
+++ b/MAPS/db_cratemap.dat
@@ -18,6 +18,7 @@
   19     250     250
   20     1190    1190
 
+
 ==== Crate 2 type vme Bank Decoding
 # slot  model   bank
   3      250     250
diff --git a/MAPS/make_cratemap.sh b/MAPS/make_cratemap.sh
index e6f96ca636a7667d4ba9a24ddbab1f62a3019e09..438d879bd5db875b5db6a83c91676dcb85fb0a54 100755
--- a/MAPS/make_cratemap.sh
+++ b/MAPS/make_cratemap.sh
@@ -31,7 +31,7 @@ function ask_proceed {
 	exit
     elif [[ $response = "yes" ]]; then
 	proceed
-    else 
+    else
 	echo; echo "Please respond by specifically typing yes or no"; echo; exit
     fi
 }
diff --git a/MAPS/merge_list.txt b/MAPS/merge_list.txt
index cf0279d528ed54ed58f23e7e597a5d27a4ae8bb7..8fe2023f71bc611ab88da7624c4bb6ad1d9bb0f2 100644
--- a/MAPS/merge_list.txt
+++ b/MAPS/merge_list.txt
@@ -1,4 +1,8 @@
-haero.map
-hcal.map
+SHMS/DETEC/ptrig.map
+SHMS/DETEC/pdc.map
+SHMS/DETEC/phodo.map
+SHMS/DETEC/phgcer.map
+SHMS/DETEC/pngcer.map
+SHMS/DETEC/pcal.map
+SHMS/DETEC/paero.map
 
-#hhodo.map
diff --git a/MAPS/merge_maps.py b/MAPS/merge_maps.py
index 6f0fab767fbc4ee955f3a43c2aaa2729000bc870..2ab974385bb30ccaea6e68c179cf4fe890d20c8c 100644
--- a/MAPS/merge_maps.py
+++ b/MAPS/merge_maps.py
@@ -51,9 +51,12 @@ class Slot:
     def __init__(self):
         self.ID = -1
         self.comment = ''
-        self.KWs = {kw: -1 for kw in slotKWs}
+        self.KWs = {}
         self.channels = []
 
+        for kw in slotKWs:
+            self.KWs[kw] = -1
+
     def __str__(self):
         string = 'SLOT={0.ID}'.format(self)
         if self.comment != '':
@@ -84,7 +87,7 @@ class Channel:
         return string
 
 
-if (sys.argv[1] == '-h' or len(sys.argv) != 3):
+if (len(sys.argv) != 3 or sys.argv[1] == '-h'):
     print('Call as:')
     print('  merge_maps.py merge_list.txt outfile.map')
     sys.exit()
@@ -134,7 +137,7 @@ for fileName in fileNames:
 
                 KW =  line[1:i].strip()
                 ID = line[i+4:].split()[0].strip()
-                signal = ','.join(line[i+4:].split()[1:])
+                signal = ','.join(line[i+4:].replace('::', '').split()[1:])
 
                 if KW in header['KWs']:
                     print('Detector keyword `{}` already present!'.format(KW))
@@ -233,8 +236,8 @@ with open(mergedName, 'w') as fo:
     for ID, KW, signals in sorted(zip(
         header['IDs'], header['KWs'], header['signals']
     )):
-        IDString = '{}_ID={}'.format(KW, ID)
-        fo.write('! {:15}  ::  {}\n'.format(IDString, signal))
+        IDString = '{0}_ID={1}'.format(KW, ID)
+        fo.write('! {0:15}  ::  {1}\n'.format(IDString, signals))
 
     # Write detector maps sorted by IDs.
     for ID, KW in sorted(zip(
@@ -242,16 +245,16 @@ with open(mergedName, 'w') as fo:
     )):
         for detector in detectors:
             if detector.ID == ID:
-                fo.write('\n\n{}\n'.format(detector))
+                fo.write('\n\n{0}\n'.format(detector))
 
                 for roc in detector.rocs:
-                    fo.write('\n{}\n'.format(roc))
+                    fo.write('\n{0}\n'.format(roc))
 
                     for slot in roc.slots:
-                        fo.write('\n{}'.format(slot))
+                        fo.write('\n{0}'.format(slot))
 
                         for channel in slot.channels:
-                            fo.write('{}\n'.format(channel))
+                            fo.write('{0}\n'.format(channel))
 
 
 print('\nDone.')
diff --git a/PARAM/HMS/CER/hcer.param b/PARAM/HMS/CER/hcer.param
index a23df2e88a63dadc8da5b0eb0ab04e0f557acb6c..14db2ac6ad0eea4060581924ac7eb460549fcb78 100644
--- a/PARAM/HMS/CER/hcer.param
+++ b/PARAM/HMS/CER/hcer.param
@@ -1,6 +1,6 @@
 hcer_width = 50, 50
 
-hcer_adc_to_npe = 1/145.0, 1/122.0
+hcer_adc_to_npe = 1/6353., 1/8116.
 
 
 hcer_chi2max = 50.
diff --git a/PARAM/HMS/DC/hdc.param b/PARAM/HMS/DC/hdc.param
deleted file mode 100644
index bfa88fd6ba1ba010e2d428c8bec8265f670a0df4..0000000000000000000000000000000000000000
--- a/PARAM/HMS/DC/hdc.param
+++ /dev/null
@@ -1,33 +0,0 @@
-;---------------------------------------------------------------------
-; HMS_TRACKING
-; CTP parameter file containing all tracking parameters for the HMS
-;----------------------------------------------------------------------
-; sigma of wire chamber resolution for each plane
-      hdc_sigma = 0.020
-                  0.020
-                  0.020
-                  0.020
-                  0.020
-                  0.020
-                  0.020
-                  0.020
-                  0.020
-                  0.020
-                  0.020
-                  0.020
-  hdc_tdc_min_win = -25000,-25000,-25000,-25000,-25000,-25000
-  		    -25000,-25000,-25000,-25000,-25000,-25000
-  hdc_tdc_max_win = 25000,25000,25000,25000,25000,25000
-                    25000,25000,25000,25000,25000,25000
-; hms drift chamber tdc's time per channel
-        hdc_tdc_time_per_channel = -0.10
-; hms zero time for drift chambers	!DECREASING this number moves the hdtime plots to LOWER time.
-   hdc_plane_time_zero = -213.0,-213.0,-213.0,-213.0,-213.0,-213.0
-  		        -213.0,-213.0,-213.0,-213.0,-213.0,-213.0
-
-; Dave Abbott's wire velocity correction
-hdc_wire_velocity = 12.0
-hdc_central_time = 7,9,3,4,6,5
-                   7,5,3,4,6,6
-
-
diff --git a/PARAM/HMS/DC/hdc.pos b/PARAM/HMS/DC/hdc.pos
index fdbf2aed0ca8f75f5c8bd1d3d3d9fe7bb709d152..597ab6a88f13b944c0ddcd465a16db8f7aae7032 100644
--- a/PARAM/HMS/DC/hdc.pos
+++ b/PARAM/HMS/DC/hdc.pos
@@ -1,183 +1,94 @@
-; Number of planes installed in HMS detector setup
-      hdc_num_planes = 12
-; Number of chambers installed in HMS detector setup
-      hdc_num_chambers = 2
-; Names of each wire plane
-;
-; Z positions of various planes in HMS chambers
-; hdc_n_zpos is the surveyed Z position of the center of chamber n.
-      hdc_1_zpos = (-40.611-11.312+0.003)
-      hdc_2_zpos = (+40.611-11.312-0.008)
-      
-      hdc_zpos   = hdc_1_zpos - 3.6000
-                   hdc_1_zpos - 1.8000
-                   hdc_1_zpos - 0.0000
-                   hdc_1_zpos + 1.8000
-                   hdc_1_zpos + 3.6000
-                   hdc_1_zpos + 5.4000
-                   hdc_2_zpos - 3.6000
-                   hdc_2_zpos - 1.8000
-                   hdc_2_zpos - 0.0000
-                   hdc_2_zpos + 1.8000
-                   hdc_2_zpos + 3.6000
-                   hdc_2_zpos + 5.4000
-; Angle alpha of wires in wire chamber planes
-        hdc_alpha_angle =  (90. - 0.071)*raddeg
-                           (0.0 - 0.071)*raddeg
-                           (74.925 - 0.071)*raddeg
-                           (105.075 - 0.071)*raddeg
-                           (0.0 - 0.071)*raddeg
-                           (90.0 - 0.071)*raddeg
-                           (89.90814 - 0.153)*raddeg
-                           (0.01611 - 0.153)*raddeg
-                           (74.85 - 0.153)*raddeg
-                           (105.05 - 0.153)*raddeg
-                           (0.01611 - 0.153)*raddeg
-                           (89.90814 - 0.153)*raddeg
-;        hdc_alpha_angle = ( 90.1541 - 0.071)*raddeg
-;                          ( -0.0408 - 0.071)*raddeg
-;                          ( 75.1267 - 0.071)*raddeg
-;                          (105.1267 - 0.071)*raddeg
-;                          ( -0.0408 - 0.071)*raddeg
-;                          ( 90.1541 - 0.071)*raddeg
-;                          ( 90.1095 - 0.153)*raddeg
-;                          ( -0.0370 - 0.153)*raddeg
-;                          ( 75.0904 - 0.153)*raddeg
-;                          (105.0904 - 0.153)*raddeg
-;                          ( -0.0370 - 0.153)*raddeg
-;                          ( 90.1095 - 0.153)*raddeg
-;
-; Angle beta of wires in wire chamber planes
-      hdc_beta_angle =    -0.041*raddeg
-                          -0.041*raddeg
-                          -0.041*raddeg
-                          -0.041*raddeg
-                          -0.041*raddeg
-                          -0.041*raddeg
-                          +0.054*raddeg
-                          +0.054*raddeg
-                          +0.054*raddeg
-                          +0.054*raddeg
-                          +0.054*raddeg
-                          +0.054*raddeg
-; Angle gamma of wires in wire chamber planes
-      hdc_gamma_angle =   +0.0376*raddeg
-                          +0.0376*raddeg
-                          +0.0376*raddeg
-                          +0.0376*raddeg
-                          +0.0376*raddeg
-                          +0.0376*raddeg
-                          -0.145*raddeg
-                          -0.145*raddeg
-                          -0.145*raddeg
-                          -0.145*raddeg
-                          -0.145*raddeg
-                          -0.145*raddeg
-; Pitch
-      hdc_pitch = 1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-                  1.000252
-; Number of wires per plane
-      hdc_nrwire = 113
-                    52
-                   107
-                   107
-                    52
-                   113
-                   113
-                    52
-                   107
-                   107
-                    52
-                   113
-; X,Y position of center of wire chamber
-; increasing dc2 coordinates decreases dpos histograms.
-; new values according to henk and rolf
-      hdc_xcenter = (1.670 - 0.0155 - 0.020)
-                    (2.758 - 0.0155 + 0.040)
-;      hdc_xcenter = (1.670 - 0.0155)
-;                    (2.758 - 0.0155)
-;      hdc_xcenter = 1.670 + 0.15 + 0.0155
-;                    2.758 + 0.16 + 0.0155
-;  Y CENTER CHANGED TO MATCH OPTICS DATA(offset of 1.1 cm in y)
-; new values included according to henk and rolf
-      hdc_ycenter = (1.443 - 0.1699 - 0.0279 - 0.04)
-                    (2.753 - 0.1699 + 0.0279 + 0.04)
-;      hdc_ycenter = (1.443 - 0.1699 - 0.0279 - 0.035)
-;                    (2.753 - 0.1699 + 0.0279 + 0.035)
-;      hdc_ycenter = (1.443 - 0.1699 - 0.0279)
-;                    (2.753 - 0.1699 + 0.0279)
+; CHAMBER POSITION PARAMETERS
 
-;      hdc_ycenter = 0.343 + 1.1 - 0.12 + 0.1699 + 0.0279
-;                    1.653 + 1.1 - 0.22 + 0.1699 - 0.0279
-;      hdc_ycenter = 0.343  THESE ARE THE ORIGINAL Y CENTERS FROM SURVEY DATA
-;                    1.653
-;      hdc_xcenter = 0.0
-;                    1.22
-;      hdc_ycenter = 0.0
-;                    1.24
+; x, y and z position of center for each wire chamber in cm.
+; From SANE with correction from C1768 using 2007 controls.
+hdc_xcenter = 1.6345 - 0.37  ; TODO - final survey
+              2.7825 - 0.40
+hdc_ycenter = 1.2052 - 0.11  ; TODO - final survey
+              2.6510 - 0.06
+hdc_1_zpos = -51.920 - 0.44  ; TODO - final survey
+hdc_2_zpos =  29.291 - 1.76  ; TODO - final survey
 
-; Wire number of center of wire chamber
-; assume 1st wire of 1st dc of a set is closest to edge where counting starts
-       hdc_central_wire = 57.257, 26.240, 54.001, 53.999, 26.760 , 56.743
-                          57.244, 26.242, 53.998, 54.002, 26.758 , 56.756
+; Roll, pitch and yaw for each wire chamber in degrees.
+; From C1768 using 2007 controls.
+pdc_1_roll = 0.155  ; TODO - final survey
+pdc_2_roll = 0.186  ; TODO - final survey
+pdc_1_pitch = 0.080  ; TODO - final survey
+pdc_2_pitch = 0.077  ; TODO - final survey
+pdc_1_yaw = 0.324  ; TODO - final survey
+pdc_2_yaw = 0.118  ; TODO - final survey
 
-;       hdc_central_wire = 57.25, 26.245, 54.0, 54.0, 26.755 , 56.75
-;                          57.24, 26.245, 54.0, 54.0, 26.755 , 56.76
-;       hdc_central_wire = 57.25, 26.25, 54.0, 54.0, 26.75 , 56.75
-;                          57.24, 26.25, 54.0, 54.0, 26.75 , 56.76
-; hdc_chamber_planes    array giving the chamber number for each plane
-      hdc_chamber_planes = 1
-                           1
-                           1
-                           1
-                           1
-                           1
-                           2
-                           2
-                           2
-                           2
-                           2
-                           2
-; The hms readout numbers some planes in reverse order.
-; The following array is a flag on the order number.
-; If hdc_wire_counting(plane) = 0
-;  the wire center is at (wire - hdc_central_wire) * pitch
-; If hdc_wire_counting(plane) = 1
-;  the wire center is at ( hdc_nrwire + 1 - wire - hdc_central_wire) * pitch
-        hdc_wire_counting = 1
-                            1
-                            0
-                            1
-                            0
-                            0
-                            1
-                            1
-                            0
-                            1
-                            0
-                            0
-; The velocity correction is the distance from the center of the wire divided
-; by the velocity of propagation times hdc_drifttime_sign(pln).  +/-1
-; for disc. card at +/- coord. (i.e. top = -x direction, so top readout is +1)
-       hdc_drifttime_sign = -1
-                            -1
-                            -1
-                            -1
-                            -1
-                            -1
-                            -1
-                            -1
-                            -1
-                            -1
-                            -1
-                            -1
+
+; PLANE POSITION PARAMETERS
+
+; Wire number of center of wire chamber for each plane.
+; From SANE.
+hdc_central_wire = 57.257, 26.240, 54.001, 53.999, 26.760 , 56.743
+                   57.244, 26.242, 53.998, 54.002, 26.758 , 56.756
+
+; Distance between wires for each plane in cm.
+; From SANE.
+hdc_pitch = 1.000252, 1.000252, 1.000252, 1.000252, 1.000252, 1.000252
+            1.000252, 1.000252, 1.000252, 1.000252, 1.000252, 1.000252
+
+; Order in which wires are counted in each plane.
+hdc_wire_counting = 1, 1, 0, 1, 0, 0
+                    1, 1, 0, 1, 0, 0
+
+; z position in cm of each plane measured from focal plane.
+; From SANE.
+hdc_zpos = hdc_1_zpos - 3.6
+           hdc_1_zpos - 1.8
+           hdc_1_zpos - 0.0
+           hdc_1_zpos + 1.8
+           hdc_1_zpos + 3.6
+           hdc_1_zpos + 5.4
+           hdc_2_zpos - 3.6
+           hdc_2_zpos - 1.8
+           hdc_2_zpos - 0.0
+           hdc_2_zpos + 1.8
+           hdc_2_zpos + 3.6
+           hdc_2_zpos + 5.4
+
+; Alpha angle of wires for each plane in radians.
+; From SANE.
+hdc_alpha_angle = ( 90.00000 + pdc_1_roll)*raddeg
+                  (  0.00000 + pdc_1_roll)*raddeg
+                  ( 74.92500 + pdc_1_roll)*raddeg
+                  (105.07500 + pdc_1_roll)*raddeg
+                  (  0.00000 + pdc_1_roll)*raddeg
+                  ( 90.00000 + pdc_1_roll)*raddeg
+                  ( 89.90814 + pdc_2_roll)*raddeg
+                  (  0.01611 + pdc_2_roll)*raddeg
+                  ( 74.85000 + pdc_2_roll)*raddeg
+                  (105.05000 + pdc_2_roll)*raddeg
+                  (  0.01611 + pdc_2_roll)*raddeg
+                  ( 89.90814 + pdc_2_roll)*raddeg
+
+; Beta angle of wires for each plane in radians.
+hdc_beta_angle = pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+
+; Gamma angle of wires for each plane in radians
+hdc_gamma_angle = pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
diff --git a/PARAM/HMS/DC/hdc_offsets.param b/PARAM/HMS/DC/hdc_offsets.param
index a5561b2786ad3925d00ea1545b5f213828b8cf4f..759fed95ea802981a31f023613e00c95d3aa6aa2 100644
--- a/PARAM/HMS/DC/hdc_offsets.param
+++ b/PARAM/HMS/DC/hdc_offsets.param
@@ -1,3 +1,5 @@
+; deprecated parameters
+
 ; cable id's for HMS Drift Chambers
 ; array is 113,12 (wires,planes) but most planes have less than 113 wires)
 
@@ -122,4 +124,3 @@ hdc_card_delay =  0, 0, 0, 0, 0, 0, 0, 0, 0, 0
                   0, 0, 0, 0, 0, 0, 0, 0, 0, 0
                   0, 0, 0, 0, 0, 0, 0, 0, 0, 0
                   0, 0
-
diff --git a/PARAM/HMS/DC/hdc_test_stand.param b/PARAM/HMS/DC/hdc_test_stand.param
index 73a7e92d012c3ca35f7b79fed681dded47a0b8a9..53fd44455af1a5afbda816d97201a7383c19f124 100644
--- a/PARAM/HMS/DC/hdc_test_stand.param
+++ b/PARAM/HMS/DC/hdc_test_stand.param
@@ -1,17 +1,17 @@
-; Custom parameter file which should loaded when aiming to
-; analyze HMS drift chamber data with no tracking.
+; TEST-STAND PARAMETERS
+; Custom parameter file which should be loaded when aiming to analyze HMS DC
+; data with no tracking.
 
+; Increase HMS TDC window size.
+hdc_tdc_min_win = -50000, -50000, -50000, -50000, -50000, -50000
+                  -50000, -50000, -50000, -50000, -50000, -50000
+hdc_tdc_max_win = 50000, 50000, 50000, 50000, 50000, 50000
+                  50000, 50000, 50000, 50000, 50000, 50000
 
-; Increase HMS TDC window size
-  hdc_tdc_min_win = -50000,-50000,-50000,-50000,-50000,-50000
-  		    -50000,-50000,-50000,-50000,-50000,-50000
-  hdc_tdc_max_win = 50000,50000,50000,50000,50000,50000
-                    50000,50000,50000,50000,50000,50000
-; Remove hodoscope dependence on tracking
-  hsel_using_scin  = 0
-;  hsel_using_prune = 0
-
-;  Adjust HMS DC plane t = 0
-;   hdc_plane_time_zero = 1500.0,1500.0,1500.0,1500.0,1500.0,1500.0
-;  	                 1500.0,1500.0,1500.0,1500.0,1500.0,1500.0
+; Remove hodoscope dependence on tracking.
+hsel_using_scin  = 0
+; hsel_using_prune = 0
 
+; Adjust HMS DC plane t = 0
+; hdc_plane_time_zero = 1500.0, 1500.0, 1500.0, 1500.0, 1500.0, 1500.0
+;                       1500.0, 1500.0, 1500.0, 1500.0, 1500.0, 1500.0
diff --git a/PARAM/HMS/DC/hdc_tracking.param b/PARAM/HMS/DC/hdc_tracking.param
new file mode 100644
index 0000000000000000000000000000000000000000..9ca0e78939ec3040f1300f41088acdd5cc436e38
--- /dev/null
+++ b/PARAM/HMS/DC/hdc_tracking.param
@@ -0,0 +1,30 @@
+; TRACKING PARAMETERS
+
+; Sigma of wire chamber resolution for each plane.
+; From SANE.
+hdc_sigma = 0.020, 0.020, 0.020, 0.020, 0.020, 0.020
+            0.020, 0.020, 0.020, 0.020, 0.020, 0.020
+
+; TDC window limits for each plane.
+hdc_tdc_min_win = -14000, -14000, -14000, -14000, -14000, -14000
+                  -14000, -14000, -14000, -14000, -14000, -14000
+hdc_tdc_max_win = -6000, -6000, -6000, -6000, -6000, -6000
+                  -6000, -6000, -6000, -6000, -8000, -6000
+
+; Conversion factor from TDC clicks to ns.
+hdc_tdc_time_per_channel = -0.10
+
+; Zero time correction for each plane in ns that is added to TDC time.
+; From SANE.
+hdc_plane_time_zero = 1297.19, 1299.88, 1309.39, 1305.01, 1299.32, 1306.23
+                      1313.72, 1310.78, 1315.82, 1316.98, 1308.16, 1316.16
+
+; For wire velocity corrections.
+; From SANE.
+hdc_wire_velocity = 12.0
+hdc_central_time = 7, 9, 3, 4, 6, 5
+                   7, 5, 3, 4, 6, 6
+hdc_drifttime_sign = -1, -1, -1, -1, -1, -1
+                     -1, -1, -1, -1, -1, -1
+hdc_fix_lr = 0
+hdc_fix_propcorr = 0
diff --git a/PARAM/HMS/DC/hdeadwires.param b/PARAM/HMS/DC/hdeadwires.param
index 9d8b527ef661f2c2921224d140fea49d2d53927c..fc20ebfadcdf116b64a511b1d7c238dbd512e197 100644
--- a/PARAM/HMS/DC/hdeadwires.param
+++ b/PARAM/HMS/DC/hdeadwires.param
@@ -1,3 +1,5 @@
+; deprecated parameters
+
 ; list of dead wires in the HMS (plane,wire).  Dead means <20% efficiency.
 hdc_num_deadwires = 6
 
diff --git a/PARAM/HMS/DC/hdriftmap.param b/PARAM/HMS/DC/hdriftmap.param
index 6da2063bdf1a75e7bcb0e5324a2a620caca84220..76b2da46215841b5ae771887406fb24525cfb158 100644
--- a/PARAM/HMS/DC/hdriftmap.param
+++ b/PARAM/HMS/DC/hdriftmap.param
@@ -1,175 +1,190 @@
-; Lookup table
-;number of bins in Meek's time to distance lookup table
-hdriftbins=138
-;number of 1st bin in Meek's table in ns
-hdrift1stbin=-24
-;bin size in ns of Meek's table
+; Contains lookup tables for drift time.
+
+; Number of bins in table.
+hdriftbins = 138
+
+; Time of first bin in ns.
+hdrift1stbin = 0
+
+; Bin size in ns.
 hdriftbinsz=2
-hwc1x1fract=0.0000,0.0001,0.0001,0.0002,0.0003,0.0004,0.0004,0.0005
-0.0007,0.0008,0.0010,0.0012,0.0015,0.0020,0.0028,0.0041,0.0060,0.0086
-0.0121,0.0167,0.0230,0.0311,0.0412,0.0529,0.0658,0.0800,0.0951,0.1114
-0.1284,0.1462,0.1645,0.1838,0.2036,0.2241,0.2451,0.2667,0.2884,0.3099
-0.3319,0.3541,0.3764,0.3989,0.4213,0.4438,0.4662,0.4888,0.5113,0.5334
-0.5555,0.5777,0.5996,0.6208,0.6419,0.6628,0.6838,0.7045,0.7245,0.7446
-0.7639,0.7826,0.8007,0.8181,0.8346,0.8500,0.8646,0.8784,0.8910,0.9029
-0.9134,0.9234,0.9324,0.9405,0.9479,0.9547,0.9608,0.9663,0.9712,0.9756
-0.9795,0.9827,0.9854,0.9878,0.9897,0.9912,0.9925,0.9936,0.9945,0.9952
-0.9957,0.9963,0.9967,0.9971,0.9974,0.9977,0.9979,0.9981,0.9983,0.9984
-0.9986,0.9987,0.9989,0.9990,0.9991,0.9992,0.9992,0.9993,0.9994,0.9995
-0.9995,0.9995,0.9996,0.9996,0.9997,0.9997,0.9997,0.9998,0.9998,0.9998
-0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc1y1fract=0.0000,0.0001,0.0001,0.0002,0.0002,0.0003,0.0004,0.0005
-0.0005,0.0006,0.0008,0.0009,0.0011,0.0014,0.0019,0.0025,0.0034,0.0048
-0.0071,0.0109,0.0172,0.0263,0.0385,0.0530,0.0697,0.0879,0.1078,0.1289
-0.1506,0.1727,0.1951,0.2180,0.2406,0.2634,0.2863,0.3092,0.3320,0.3544
-0.3769,0.3986,0.4206,0.4421,0.4634,0.4851,0.5059,0.5269,0.5479,0.5685
-0.5889,0.6096,0.6299,0.6503,0.6704,0.6900,0.7097,0.7289,0.7478,0.7663
-0.7846,0.8022,0.8192,0.8357,0.8517,0.8663,0.8803,0.8931,0.9046,0.9149
-0.9246,0.9328,0.9403,0.9471,0.9529,0.9582,0.9630,0.9672,0.9710,0.9745
-0.9777,0.9802,0.9825,0.9845,0.9864,0.9880,0.9894,0.9906,0.9916,0.9924
-0.9933,0.9940,0.9946,0.9951,0.9957,0.9961,0.9965,0.9969,0.9972,0.9975
-0.9978,0.9980,0.9982,0.9984,0.9986,0.9987,0.9989,0.9990,0.9991,0.9992
-0.9993,0.9994,0.9995,0.9995,0.9996,0.9997,0.9997,0.9998,0.9998,0.9998
-0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000,1.0000,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc1u1fract=0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0001,0.0001
-0.0001,0.0001,0.0002,0.0002,0.0003,0.0006,0.0013,0.0025,0.0043,0.0071
-0.0108,0.0160,0.0239,0.0345,0.0472,0.0618,0.0783,0.0958,0.1143,0.1339
-0.1539,0.1743,0.1957,0.2175,0.2394,0.2614,0.2839,0.3061,0.3280,0.3503
-0.3724,0.3944,0.4163,0.4382,0.4595,0.4808,0.5023,0.5232,0.5442,0.5652
-0.5861,0.6064,0.6270,0.6474,0.6676,0.6880,0.7077,0.7272,0.7464,0.7654
-0.7838,0.8016,0.8187,0.8350,0.8502,0.8644,0.8778,0.8901,0.9014,0.9119
-0.9214,0.9297,0.9374,0.9441,0.9504,0.9559,0.9608,0.9653,0.9693,0.9730
-0.9764,0.9793,0.9818,0.9841,0.9861,0.9877,0.9891,0.9903,0.9914,0.9923
-0.9930,0.9936,0.9942,0.9948,0.9952,0.9957,0.9961,0.9965,0.9968,0.9971
-0.9975,0.9977,0.9979,0.9981,0.9983,0.9985,0.9987,0.9988,0.9990,0.9991
-0.9992,0.9993,0.9994,0.9994,0.9995,0.9996,0.9996,0.9997,0.9997,0.9997
-0.9998,0.9998,0.9998,0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999
-0.9999,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc1v1fract=0.0000,0.0000,0.0000,0.0000,0.0001,0.0001,0.0001,0.0001
-0.0002,0.0002,0.0003,0.0003,0.0004,0.0005,0.0006,0.0009,0.0014,0.0025
-0.0046,0.0087,0.0152,0.0250,0.0373,0.0519,0.0688,0.0872,0.1066,0.1271
-0.1481,0.1695,0.1911,0.2126,0.2344,0.2566,0.2792,0.3017,0.3238,0.3460
-0.3680,0.3900,0.4117,0.4334,0.4545,0.4761,0.4973,0.5184,0.5390,0.5597
-0.5801,0.6006,0.6215,0.6418,0.6621,0.6822,0.7018,0.7213,0.7403,0.7590
-0.7775,0.7958,0.8132,0.8303,0.8465,0.8616,0.8758,0.8885,0.9002,0.9109
-0.9205,0.9291,0.9368,0.9437,0.9498,0.9554,0.9602,0.9650,0.9691,0.9728
-0.9761,0.9791,0.9817,0.9839,0.9859,0.9875,0.9890,0.9901,0.9912,0.9921
-0.9929,0.9936,0.9942,0.9947,0.9952,0.9956,0.9960,0.9964,0.9967,0.9971
-0.9973,0.9976,0.9978,0.9981,0.9982,0.9984,0.9986,0.9988,0.9989,0.9990
-0.9991,0.9992,0.9993,0.9994,0.9995,0.9995,0.9996,0.9997,0.9997,0.9997
-0.9998,0.9998,0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc1y2fract=0.0000,0.0000,0.0000,0.0001,0.0001,0.0001,0.0002,0.0002
-0.0003,0.0003,0.0004,0.0005,0.0007,0.0009,0.0012,0.0016,0.0026,0.0043
-0.0073,0.0121,0.0198,0.0299,0.0427,0.0578,0.0749,0.0937,0.1139,0.1347
-0.1561,0.1781,0.2003,0.2230,0.2455,0.2679,0.2901,0.3122,0.3344,0.3568
-0.3789,0.4010,0.4232,0.4450,0.4663,0.4873,0.5085,0.5298,0.5506,0.5714
-0.5921,0.6128,0.6332,0.6529,0.6729,0.6925,0.7119,0.7314,0.7501,0.7685
-0.7863,0.8038,0.8209,0.8371,0.8523,0.8667,0.8800,0.8925,0.9039,0.9140
-0.9230,0.9312,0.9388,0.9456,0.9516,0.9569,0.9617,0.9660,0.9697,0.9732
-0.9763,0.9789,0.9814,0.9835,0.9853,0.9870,0.9884,0.9895,0.9906,0.9915
-0.9923,0.9931,0.9938,0.9944,0.9949,0.9954,0.9959,0.9963,0.9966,0.9970
-0.9973,0.9975,0.9977,0.9980,0.9982,0.9984,0.9986,0.9987,0.9989,0.9990
-0.9992,0.9993,0.9994,0.9995,0.9995,0.9996,0.9997,0.9997,0.9998,0.9998
-0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc1x2fract=0.0000,0.0000,0.0001,0.0001,0.0001,0.0002,0.0002,0.0003
-0.0003,0.0004,0.0005,0.0006,0.0007,0.0009,0.0012,0.0018,0.0029,0.0048
-0.0076,0.0120,0.0183,0.0265,0.0369,0.0489,0.0625,0.0771,0.0930,0.1097
-0.1272,0.1458,0.1650,0.1846,0.2051,0.2256,0.2469,0.2688,0.2909,0.3128
-0.3351,0.3573,0.3798,0.4024,0.4247,0.4470,0.4691,0.4913,0.5136,0.5353
-0.5571,0.5792,0.6009,0.6223,0.6434,0.6643,0.6853,0.7060,0.7262,0.7460
-0.7651,0.7841,0.8026,0.8201,0.8363,0.8521,0.8665,0.8803,0.8930,0.9044
-0.9151,0.9247,0.9337,0.9419,0.9492,0.9558,0.9617,0.9671,0.9718,0.9761
-0.9797,0.9828,0.9854,0.9876,0.9895,0.9910,0.9923,0.9933,0.9941,0.9949
-0.9955,0.9959,0.9964,0.9967,0.9971,0.9973,0.9976,0.9978,0.9980,0.9983
-0.9984,0.9986,0.9987,0.9988,0.9990,0.9991,0.9992,0.9993,0.9993,0.9994
-0.9994,0.9995,0.9995,0.9996,0.9996,0.9997,0.9997,0.9997,0.9998,0.9998
-0.9998,0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc2x1fract=0.0000,0.0001,0.0002,0.0002,0.0003,0.0003,0.0004,0.0005
-0.0006,0.0007,0.0008,0.0010,0.0012,0.0014,0.0017,0.0022,0.0030,0.0044
-0.0069,0.0107,0.0160,0.0233,0.0321,0.0431,0.0554,0.0692,0.0839,0.1000
-0.1171,0.1348,0.1536,0.1728,0.1927,0.2131,0.2343,0.2559,0.2775,0.2991
-0.3213,0.3438,0.3664,0.3889,0.4113,0.4338,0.4566,0.4789,0.5017,0.5242
-0.5464,0.5681,0.5901,0.6114,0.6331,0.6551,0.6761,0.6973,0.7178,0.7382
-0.7584,0.7776,0.7963,0.8145,0.8318,0.8481,0.8634,0.8775,0.8905,0.9025
-0.9135,0.9234,0.9326,0.9407,0.9478,0.9544,0.9606,0.9659,0.9708,0.9750
-0.9787,0.9819,0.9846,0.9870,0.9890,0.9906,0.9919,0.9930,0.9939,0.9947
-0.9953,0.9959,0.9964,0.9968,0.9971,0.9975,0.9977,0.9979,0.9982,0.9983
-0.9985,0.9986,0.9987,0.9989,0.9990,0.9991,0.9992,0.9993,0.9993,0.9994
-0.9995,0.9995,0.9996,0.9996,0.9997,0.9997,0.9998,0.9998,0.9998,0.9998
-0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc2y1fract=0.0000,0.0000,0.0001,0.0001,0.0001,0.0001,0.0001,0.0002
-0.0002,0.0003,0.0003,0.0004,0.0005,0.0006,0.0008,0.0011,0.0017,0.0027
-0.0047,0.0083,0.0142,0.0233,0.0356,0.0507,0.0682,0.0876,0.1083,0.1304
-0.1533,0.1769,0.2002,0.2235,0.2469,0.2702,0.2935,0.3167,0.3394,0.3618
-0.3847,0.4074,0.4295,0.4515,0.4733,0.4946,0.5158,0.5368,0.5576,0.5783
-0.5991,0.6201,0.6404,0.6610,0.6811,0.7011,0.7206,0.7397,0.7587,0.7775
-0.7958,0.8131,0.8303,0.8467,0.8624,0.8770,0.8904,0.9028,0.9140,0.9238
-0.9326,0.9404,0.9473,0.9535,0.9591,0.9639,0.9681,0.9719,0.9752,0.9782
-0.9808,0.9831,0.9850,0.9867,0.9881,0.9894,0.9905,0.9916,0.9924,0.9932
-0.9938,0.9944,0.9950,0.9955,0.9959,0.9962,0.9965,0.9969,0.9971,0.9974
-0.9976,0.9978,0.9980,0.9983,0.9984,0.9986,0.9987,0.9988,0.9990,0.9991
-0.9992,0.9993,0.9994,0.9995,0.9995,0.9996,0.9997,0.9997,0.9998,0.9998
-0.9998,0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc2u1fract=0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0001,0.0001
-0.0001,0.0001,0.0001,0.0002,0.0002,0.0002,0.0003,0.0004,0.0006,0.0012
-0.0024,0.0052,0.0107,0.0196,0.0320,0.0474,0.0652,0.0852,0.1066,0.1288
-0.1509,0.1737,0.1965,0.2199,0.2431,0.2663,0.2895,0.3123,0.3350,0.3577
-0.3800,0.4019,0.4240,0.4457,0.4668,0.4882,0.5093,0.5302,0.5510,0.5716
-0.5920,0.6121,0.6323,0.6525,0.6723,0.6919,0.7113,0.7306,0.7497,0.7685
-0.7869,0.8046,0.8222,0.8393,0.8555,0.8704,0.8844,0.8973,0.9087,0.9193
-0.9283,0.9363,0.9435,0.9498,0.9553,0.9602,0.9646,0.9686,0.9721,0.9752
-0.9779,0.9804,0.9827,0.9846,0.9863,0.9878,0.9891,0.9902,0.9912,0.9920
-0.9927,0.9933,0.9939,0.9944,0.9949,0.9952,0.9956,0.9959,0.9963,0.9966
-0.9969,0.9972,0.9974,0.9977,0.9979,0.9981,0.9983,0.9984,0.9986,0.9988
-0.9989,0.9990,0.9991,0.9993,0.9994,0.9995,0.9995,0.9996,0.9996,0.9997
-0.9997,0.9998,0.9998,0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999
-0.9999,0.9999,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc2v1fract=0.0000,0.0000,0.0000,0.0000,0.0001,0.0001,0.0001,0.0001
-0.0001,0.0002,0.0002,0.0003,0.0003,0.0004,0.0006,0.0008,0.0012,0.0020
-0.0038,0.0077,0.0148,0.0252,0.0386,0.0549,0.0738,0.0941,0.1152,0.1374
-0.1601,0.1827,0.2055,0.2288,0.2519,0.2750,0.2981,0.3207,0.3434,0.3662
-0.3881,0.4102,0.4315,0.4530,0.4746,0.4960,0.5171,0.5381,0.5585,0.5791
-0.5993,0.6196,0.6395,0.6594,0.6790,0.6989,0.7177,0.7370,0.7558,0.7744
-0.7926,0.8108,0.8278,0.8440,0.8595,0.8745,0.8879,0.9005,0.9115,0.9218
-0.9307,0.9385,0.9454,0.9514,0.9566,0.9614,0.9657,0.9695,0.9730,0.9760
-0.9789,0.9813,0.9834,0.9853,0.9869,0.9883,0.9895,0.9906,0.9915,0.9922
-0.9929,0.9936,0.9941,0.9947,0.9952,0.9955,0.9959,0.9963,0.9967,0.9970
-0.9973,0.9976,0.9978,0.9980,0.9982,0.9984,0.9986,0.9987,0.9989,0.9991
-0.9992,0.9993,0.9994,0.9995,0.9996,0.9996,0.9997,0.9997,0.9998,0.9998
-0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000,1.0000,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc2y2fract=0.0000,0.0000,0.0000,0.0001,0.0001,0.0001,0.0002,0.0002
-0.0002,0.0003,0.0004,0.0005,0.0006,0.0007,0.0010,0.0014,0.0022,0.0035
-0.0058,0.0097,0.0163,0.0258,0.0382,0.0539,0.0715,0.0912,0.1122,0.1341
-0.1573,0.1803,0.2038,0.2275,0.2514,0.2749,0.2984,0.3215,0.3442,0.3667
-0.3893,0.4112,0.4332,0.4549,0.4767,0.4985,0.5191,0.5403,0.5612,0.5817
-0.6025,0.6231,0.6436,0.6642,0.6839,0.7036,0.7235,0.7427,0.7617,0.7803
-0.7984,0.8159,0.8328,0.8491,0.8645,0.8788,0.8919,0.9043,0.9152,0.9250
-0.9337,0.9414,0.9482,0.9541,0.9595,0.9641,0.9683,0.9721,0.9753,0.9782
-0.9807,0.9829,0.9849,0.9866,0.9881,0.9894,0.9905,0.9914,0.9922,0.9929
-0.9936,0.9942,0.9948,0.9952,0.9956,0.9960,0.9964,0.9967,0.9970,0.9972
-0.9975,0.9977,0.9979,0.9981,0.9983,0.9985,0.9987,0.9988,0.9989,0.9990
-0.9991,0.9993,0.9994,0.9994,0.9995,0.9996,0.9996,0.9997,0.9997,0.9998
-0.9998,0.9998,0.9998,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-hwc2x2fract=0.0000,0.0001,0.0001,0.0001,0.0002,0.0002,0.0003,0.0003
-0.0004,0.0005,0.0006,0.0007,0.0009,0.0012,0.0016,0.0023,0.0039,0.0064
-0.0100,0.0151,0.0223,0.0316,0.0430,0.0561,0.0707,0.0864,0.1032,0.1212
-0.1397,0.1592,0.1791,0.1996,0.2206,0.2422,0.2638,0.2856,0.3081,0.3308
-0.3534,0.3759,0.3990,0.4214,0.4438,0.4662,0.4885,0.5107,0.5324,0.5543
-0.5762,0.5979,0.6196,0.6411,0.6621,0.6828,0.7033,0.7238,0.7438,0.7632
-0.7824,0.8007,0.8182,0.8352,0.8514,0.8666,0.8806,0.8934,0.9052,0.9160
-0.9256,0.9346,0.9426,0.9498,0.9561,0.9617,0.9670,0.9715,0.9755,0.9790
-0.9820,0.9846,0.9869,0.9888,0.9904,0.9917,0.9929,0.9938,0.9946,0.9952
-0.9958,0.9962,0.9966,0.9970,0.9973,0.9976,0.9978,0.9981,0.9982,0.9984
-0.9986,0.9987,0.9989,0.9990,0.9991,0.9992,0.9993,0.9994,0.9994,0.9995
-0.9996,0.9996,0.9996,0.9997,0.9997,0.9997,0.9998,0.9998,0.9998,0.9998
-0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,0.9999,1.0000
-1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
+
+hwc1x1fract=0.010023,0.02089,0.03447,0.04935,0.06575,0.08402,0.10200,0.12423,0.14634
+0.16998,0.19415,0.21953,0.24499,0.27093,0.29692,0.32473,0.35047,0.37690,0.40394
+0.42992,0.45336,0.47963,0.50230,0.52635,0.54813,0.56996,0.59016,0.61065,0.62920
+0.64844,0.66679,0.68574,0.70162,0.71678,0.73165,0.74483,0.75784,0.77005,0.78160
+0.79268,0.80387,0.81305,0.82177,0.83115,0.83968,0.84812,0.85552,0.86292,0.87007
+0.87706,0.88434,0.89113,0.89715,0.90252,0.90753,0.91275,0.91836,0.92350,0.92778
+0.93198,0.93518,0.93829,0.94140,0.94520,0.94795,0.95106,0.95356,0.95567,0.95854
+0.96048,0.96213,0.96399,0.96629,0.96803,0.96941,0.97074,0.97244,0.97389,0.97466
+0.97571,0.97676,0.97749,0.97846,0.97935,0.98020,0.98072,0.98157,0.98202,0.98270
+0.98359,0.98436,0.98493,0.98529,0.98590,0.98687,0.98719,0.98751,0.98788,0.98816
+0.98917,0.99026,0.99091,0.99143,0.99176,0.99208,0.99244,0.99301,0.99333,0.99366
+0.99402,0.99454,0.99503,0.99527,0.99531,0.99568,0.99584,0.99628,0.99652,0.99677
+0.99701,0.99725,0.99737,0.99762,0.99790,0.99822,0.99838,0.99855,0.99867,0.99891
+0.99907,0.99923,0.99931,0.99947,0.99956,0.99960,0.99968,0.99980,1.00000
+
+hwc1y1fract=0.00162,0.00410,0.00874,0.01608,0.02777,0.04416,0.06347,0.08629,0.11324
+0.14260,0.17061,0.20166,0.23171,0.26391,0.29387,0.32348,0.35131,0.37870,0.40658
+0.43190,0.45648,0.48171,0.50458,0.52625,0.54752,0.56734,0.58701,0.60511,0.62250
+0.63875,0.65587,0.67149,0.68714,0.70098,0.71436,0.72782,0.74135,0.75419,0.76638
+0.77834,0.78985,0.80100,0.81165,0.82198,0.83167,0.84023,0.84957,0.85800,0.86578
+0.87321,0.88071,0.88743,0.89357,0.89954,0.90462,0.90961,0.91417,0.91794,0.92182
+0.92513,0.92877,0.93207,0.93566,0.93877,0.94216,0.94562,0.94850,0.95137,0.95474
+0.95775,0.96064,0.96376,0.96602,0.96842,0.97090,0.97299,0.97496,0.97645,0.97813
+0.97933,0.98064,0.98204,0.98341,0.98401,0.98488,0.98558,0.98621,0.98685,0.98751
+0.98802,0.98878,0.98922,0.98967,0.99009,0.99049,0.99106,0.99173,0.99222,0.99286
+0.99352,0.99381,0.99430,0.99461,0.99477,0.99499,0.99517,0.99523,0.99528,0.99548
+0.99583,0.99607,0.99663,0.99718,0.99747,0.99763,0.99776,0.99800,0.99820,0.99829
+0.99836,0.99871,0.99887,0.99894,0.99907,0.99916,0.99931,0.99936,0.99942,0.99949
+0.99949,0.99962,0.99962,0.99965,0.99971,0.99978,0.99987,0.99991,1.00000
+
+hwc1u1fract=0.00398,0.00892,0.01588,0.02362,0.03275,0.04395,0.05640,0.07043,0.08642
+0.10347,0.12247,0.14388,0.16656,0.18915,0.21351,0.23952,0.26565,0.29077,0.31672
+0.34270,0.36939,0.39584,0.42072,0.44496,0.47035,0.49415,0.51666,0.53922,0.55969
+0.58013,0.60069,0.61901,0.63677,0.65447,0.66982,0.68619,0.70148,0.71571,0.72926
+0.74260,0.75541,0.76681,0.77786,0.78993,0.80021,0.81073,0.82012,0.82911,0.83812
+0.84551,0.85332,0.86080,0.86793,0.87429,0.88118,0.88687,0.89226,0.89759,0.90209
+0.90701,0.91137,0.91670,0.92180,0.92580,0.92990,0.93390,0.93803,0.94165,0.94513
+0.94787,0.95158,0.95499,0.95741,0.95985,0.96233,0.96463,0.96707,0.96931,0.97090
+0.97273,0.97440,0.97599,0.97747,0.97882,0.97985,0.98103,0.98221,0.98303,0.98389
+0.98465,0.98577,0.98642,0.98736,0.98781,0.98819,0.98866,0.98940,0.98990,0.99063
+0.99116,0.99158,0.99211,0.99234,0.99261,0.99305,0.99346,0.99373,0.99390,0.99423
+0.99443,0.99455,0.99473,0.99485,0.99508,0.99526,0.99576,0.99608,0.99655,0.99697
+0.99735,0.99756,0.99773,0.99782,0.99800,0.99835,0.99853,0.99873,0.99888,0.99903
+0.99906,0.99909,0.99912,0.99915,0.99935,0.99953,0.99973,0.99988,1.00000
+
+hwc1v1fract=0.00580,0.01330,0.02203,0.03243,0.04381,0.05702,0.07421,0.09286,0.11261
+0.13579,0.16045,0.18710,0.21364,0.24161,0.27088,0.30018,0.32624,0.35515,0.38228
+0.40902,0.43640,0.46161,0.48598,0.50878,0.53129,0.55264,0.57352,0.59338,0.61242
+0.63096,0.64823,0.66457,0.68041,0.69542,0.70880,0.72317,0.73596,0.74839,0.76118
+0.77281,0.78341,0.79296,0.80242,0.81290,0.82220,0.83093,0.83863,0.84603,0.85294
+0.85970,0.86660,0.87204,0.87795,0.88356,0.88967,0.89455,0.89942,0.90432,0.90858
+0.91280,0.91664,0.92005,0.92365,0.92683,0.93022,0.93348,0.93695,0.94022,0.94346
+0.94627,0.94926,0.95197,0.95433,0.95625,0.95859,0.96087,0.96278,0.96447,0.96642
+0.96833,0.96997,0.97169,0.97304,0.97453,0.97546,0.97664,0.97749,0.97856,0.97943
+0.98019,0.98138,0.98231,0.98332,0.98400,0.98473,0.98527,0.98572,0.98636,0.98684
+0.98766,0.98825,0.98879,0.98929,0.98972,0.99014,0.99025,0.99065,0.99098,0.99129
+0.99180,0.99217,0.99256,0.99273,0.99307,0.99355,0.99380,0.99414,0.99445,0.99459
+0.99501,0.99524,0.99563,0.99577,0.99594,0.99617,0.99648,0.99665,0.99696,0.99715
+0.99732,0.99755,0.99777,0.99828,0.99870,0.99899,0.99935,0.99961,1.00000
+
+hwc1y2fract=0.00133,0.00393,0.00838,0.01486,0.02499,0.03933,0.05745,0.08036,0.10760
+0.13765,0.16835,0.20049,0.23275,0.26415,0.29454,0.32368,0.35300,0.38126,0.40584
+0.43187,0.45559,0.48100,0.50321,0.52668,0.54773,0.56822,0.58772,0.60622,0.62490
+0.64176,0.65784,0.67377,0.68768,0.70234,0.71524,0.72963,0.74249,0.75433,0.76655
+0.77793,0.78810,0.79967,0.81040,0.81961,0.82924,0.83836,0.84769,0.85542,0.86312
+0.87130,0.87810,0.88472,0.89041,0.89579,0.90089,0.90530,0.90948,0.91379,0.91800
+0.92204,0.92606,0.92979,0.93365,0.93736,0.94117,0.94445,0.94829,0.95150,0.95489
+0.95823,0.96139,0.96444,0.96684,0.96943,0.97149,0.97352,0.97578,0.97759,0.97956
+0.98136,0.98272,0.98405,0.98507,0.98581,0.98658,0.98724,0.98803,0.98830,0.98898
+0.98963,0.99015,0.99060,0.99094,0.99148,0.99182,0.99236,0.99311,0.99354,0.99406
+0.99449,0.99478,0.99517,0.99535,0.99564,0.99580,0.99616,0.99634,0.99659,0.99675
+0.99697,0.99715,0.99724,0.99742,0.99747,0.99756,0.99776,0.99794,0.99815,0.99824
+0.99835,0.99844,0.99849,0.99867,0.99887,0.99905,0.99921,0.99934,0.99937,0.99944
+0.99959,0.99971,0.99973,0.99982,0.99982,0.99989,0.99989,0.99993,1.00000
+
+hwc1x2fract=0.00841,0.01726,0.02881,0.04040,0.05336,0.06825,0.08367,0.10129,0.12053
+0.14234,0.16343,0.18757,0.21164,0.23530,0.26214,0.28874,0.31559,0.34235,0.36887
+0.39386,0.41990,0.44565,0.47161,0.49406,0.51773,0.54067,0.56264,0.58417,0.60578
+0.62397,0.64272,0.66180,0.67995,0.69625,0.71319,0.72828,0.74353,0.75794,0.77170
+0.78462,0.79689,0.80856,0.81838,0.82836,0.83863,0.84740,0.85512,0.86289,0.86961
+0.87686,0.88342,0.88921,0.89509,0.89996,0.90571,0.91034,0.91589,0.92100,0.92519
+0.92901,0.93279,0.93625,0.93976,0.94269,0.94555,0.94801,0.95086,0.95255,0.95489
+0.95686,0.95851,0.96080,0.96306,0.96551,0.96708,0.96881,0.97058,0.97183,0.97364
+0.97497,0.97642,0.97767,0.97871,0.97980,0.98060,0.98125,0.98217,0.98330,0.98418
+0.98479,0.98555,0.98624,0.98684,0.98736,0.98801,0.98841,0.98881,0.98905,0.98934
+0.98966,0.98998,0.99042,0.99086,0.99123,0.99171,0.99215,0.99260,0.99304,0.99320
+0.99344,0.99364,0.99372,0.99388,0.99408,0.99433,0.99441,0.99457,0.99497,0.99533
+0.99545,0.99561,0.99585,0.99618,0.99634,0.99658,0.99690,0.99722,0.99759,0.99779
+0.99827,0.99839,0.99851,0.99875,0.99891,0.99907,0.99928,0.99936,1.00000
+
+hwc2x1fract=0.00489,0.01088,0.01743,0.02515,0.03469,0.04551,0.05803,0.07238,0.08804
+0.10482,0.12312,0.14230,0.16288,0.18402,0.20636,0.22862,0.25139,0.27465,0.29794
+0.32047,0.34303,0.36674,0.38892,0.41062,0.43218,0.45276,0.47297,0.49268,0.51171
+0.53078,0.54890,0.56641,0.58346,0.60024,0.61612,0.63105,0.64642,0.66105,0.67572
+0.68937,0.70297,0.71572,0.72826,0.74060,0.75229,0.76376,0.77455,0.78465,0.79466
+0.80490,0.81415,0.82324,0.83128,0.83896,0.84689,0.85404,0.86116,0.86806,0.87427
+0.88051,0.88590,0.89172,0.89708,0.90202,0.90726,0.91166,0.91587,0.92056,0.92494
+0.92916,0.93336,0.93726,0.94074,0.94426,0.94757,0.95091,0.95388,0.95674,0.95971
+0.96235,0.96474,0.96697,0.96907,0.97083,0.97260,0.97442,0.97593,0.97739,0.97885
+0.98012,0.98125,0.98223,0.98310,0.98410,0.98493,0.98575,0.98646,0.98696,0.98754
+0.98841,0.98916,0.98968,0.99022,0.99088,0.99141,0.99191,0.99238,0.99290,0.99325
+0.99366,0.99404,0.99429,0.99464,0.99489,0.99521,0.99543,0.99571,0.99591,0.99620
+0.99650,0.99678,0.99699,0.99718,0.99743,0.99756,0.99776,0.99795,0.99809,0.99834
+0.99851,0.99872,0.99889,0.99902,0.99921,0.99934,0.99957,0.99979,1.00000
+
+hwc2y1fract=0.00221,0.00495,0.00877,0.01359,0.01918,0.02666,0.03473,0.04453,0.05562
+0.06888,0.08430,0.10080,0.11868,0.13789,0.15831,0.17942,0.20056,0.22237,0.24468
+0.26619,0.28820,0.31000,0.33257,0.35403,0.37524,0.39523,0.41537,0.43443,0.45304
+0.47131,0.48902,0.50591,0.52232,0.53901,0.55511,0.57012,0.58441,0.59808,0.61189
+0.62548,0.63822,0.65113,0.66312,0.67418,0.68568,0.69683,0.70825,0.71871,0.72914
+0.73905,0.74884,0.75813,0.76768,0.77716,0.78611,0.79438,0.80331,0.81189,0.82009
+0.82850,0.83629,0.84389,0.85158,0.85900,0.86678,0.87377,0.88068,0.88771,0.89401
+0.90018,0.90600,0.91200,0.91741,0.92284,0.92790,0.93250,0.93698,0.94118,0.94546
+0.94904,0.95186,0.95503,0.95770,0.96039,0.96265,0.96469,0.96642,0.96838,0.97023
+0.97188,0.97330,0.97468,0.97581,0.97715,0.97842,0.97955,0.98063,0.98187,0.98302
+0.98403,0.98500,0.98580,0.98659,0.98742,0.98817,0.98888,0.98961,0.99026,0.99088
+0.99152,0.99212,0.99272,0.99307,0.99355,0.99399,0.99438,0.99471,0.99520,0.99560
+0.99588,0.99628,0.99659,0.99681,0.99707,0.99725,0.99758,0.99785,0.99817,0.99837
+0.99860,0.99886,0.99904,0.99922,0.99943,0.99960,0.99972,0.99985,1.00000
+
+hwc2u1fract=0.00379,0.00830,0.01338,0.01995,0.02761,0.03638,0.04694,0.05922,0.07375
+0.08955,0.10704,0.12618,0.14574,0.16695,0.18863,0.21090,0.23311,0.25590,0.27876
+0.30145,0.32359,0.34586,0.36832,0.38955,0.41039,0.43098,0.45070,0.46956,0.48793
+0.50551,0.52244,0.53887,0.55513,0.57053,0.58600,0.60085,0.61520,0.62895,0.64265
+0.65593,0.66914,0.68230,0.69489,0.70698,0.71870,0.73022,0.74153,0.75262,0.76300
+0.77321,0.78328,0.79281,0.80256,0.81130,0.81985,0.82823,0.83583,0.84322,0.85012
+0.85631,0.86292,0.86858,0.87376,0.87917,0.88455,0.88999,0.89527,0.90022,0.90505
+0.90965,0.91432,0.91881,0.92310,0.92726,0.93122,0.93480,0.93841,0.94194,0.94551
+0.94864,0.95138,0.95435,0.95712,0.95979,0.96205,0.96442,0.96639,0.96824,0.96984
+0.97150,0.97299,0.97440,0.97569,0.97689,0.97784,0.97903,0.98002,0.98118,0.98220
+0.98310,0.98393,0.98465,0.98544,0.98623,0.98704,0.98769,0.98833,0.98891,0.98954
+0.99009,0.99065,0.99102,0.99155,0.99217,0.99258,0.99300,0.99337,0.99373,0.99411
+0.99441,0.99464,0.99498,0.99543,0.99594,0.99647,0.99691,0.99719,0.99749,0.99779
+0.99816,0.99837,0.99859,0.99886,0.99907,0.99933,0.99951,0.99971,1.00000
+
+hwc2v1fract=0.00288,0.00650,0.01128,0.01757,0.02438,0.03290,0.04248,0.05390,0.06736
+0.08262,0.09958,0.11796,0.13723,0.15713,0.17782,0.19995,0.22219,0.24485,0.26757
+0.29009,0.31224,0.33420,0.35570,0.37722,0.39805,0.41826,0.43765,0.45671,0.47523
+0.49369,0.51095,0.52765,0.54328,0.55853,0.57339,0.58869,0.60327,0.61736,0.63120
+0.64387,0.65678,0.66940,0.68187,0.69366,0.70560,0.71742,0.72889,0.74019,0.75072
+0.76101,0.77074,0.78032,0.78953,0.79846,0.80751,0.81551,0.82353,0.83101,0.83786
+0.84461,0.85116,0.85747,0.86350,0.86901,0.87446,0.87982,0.88511,0.89009,0.89497
+0.89970,0.90455,0.90930,0.91405,0.91846,0.92265,0.92678,0.93073,0.93466,0.93813
+0.94127,0.94425,0.94726,0.95006,0.95268,0.95521,0.95755,0.96004,0.96219,0.96412
+0.96592,0.96767,0.96928,0.97076,0.97205,0.97339,0.97469,0.97595,0.97706,0.97811
+0.97917,0.98012,0.98131,0.98230,0.98322,0.98395,0.98476,0.98549,0.98614,0.98663
+0.98723,0.98788,0.98863,0.98916,0.98978,0.99023,0.99081,0.99155,0.99224,0.99273
+0.99325,0.99367,0.99411,0.99448,0.99484,0.99533,0.99590,0.99621,0.99652,0.99691
+0.99741,0.99780,0.99827,0.99853,0.99882,0.99908,0.99943,0.99975,1.00000
+
+hwc2y2fract=0.00160,0.00444,0.01062,0.02252,0.04178,0.06667,0.09457,0.12185,0.14828
+0.17321,0.19657,0.21935,0.24123,0.26183,0.28100,0.29932,0.31591,0.33280,0.34835
+0.36309,0.37696,0.39136,0.40499,0.41801,0.43102,0.44397,0.45626,0.46859,0.48057
+0.49258,0.50376,0.51498,0.52613,0.53714,0.54779,0.55825,0.56813,0.57848,0.58849
+0.59807,0.60775,0.61726,0.62647,0.63596,0.64509,0.65415,0.66298,0.67160,0.68001
+0.68776,0.69576,0.70352,0.71119,0.71877,0.72641,0.73385,0.74144,0.74869,0.75599
+0.76358,0.77097,0.77815,0.78552,0.79244,0.80001,0.80698,0.81437,0.82208,0.83020
+0.83830,0.84634,0.85478,0.86309,0.87142,0.87935,0.88763,0.89541,0.90281,0.90996
+0.91614,0.92222,0.92753,0.93246,0.93710,0.94136,0.94546,0.94895,0.95198,0.95471
+0.95757,0.96005,0.96271,0.96498,0.96713,0.96909,0.97090,0.97241,0.97381,0.97511
+0.97650,0.97790,0.97906,0.98010,0.98125,0.98232,0.98334,0.98436,0.98519,0.98596
+0.98661,0.98723,0.98782,0.98860,0.98924,0.98985,0.99050,0.99123,0.99176,0.99228
+0.99283,0.99333,0.99383,0.99424,0.99473,0.99521,0.99569,0.99610,0.99650,0.99682
+0.99725,0.99755,0.99788,0.99824,0.99860,0.99896,0.99931,0.99969,1.00000
+
+hwc2x2fract=0.00395,0.00888,0.01485,0.02199,0.03022,0.04000,0.05108,0.06378,0.07859
+0.09479,0.11265,0.13127,0.15138,0.17208,0.19378,0.21665,0.24001,0.26354,0.28690
+0.30961,0.33310,0.35610,0.37755,0.39974,0.42105,0.44105,0.46108,0.48066,0.49966
+0.51830,0.53617,0.55306,0.56918,0.58553,0.60128,0.61669,0.63218,0.64669,0.66098
+0.67478,0.68766,0.70075,0.71356,0.72610,0.73756,0.74866,0.75939,0.76957,0.78017
+0.78974,0.79904,0.80810,0.81654,0.82494,0.83299,0.84084,0.84793,0.85505,0.86163
+0.86789,0.87423,0.87983,0.88542,0.89043,0.89547,0.90085,0.90593,0.91055,0.91521
+0.91932,0.92351,0.92783,0.93138,0.93526,0.93878,0.94227,0.94577,0.94897,0.95221
+0.95493,0.95768,0.96030,0.96269,0.96491,0.96710,0.96910,0.97089,0.97257,0.97413
+0.97544,0.97682,0.97818,0.97948,0.98063,0.98176,0.98267,0.98355,0.98439,0.98520
+0.98593,0.98657,0.98725,0.98788,0.98845,0.98911,0.98961,0.99009,0.99048,0.99097
+0.99139,0.99190,0.99219,0.99251,0.99288,0.99319,0.99365,0.99404,0.99445,0.99482
+0.99518,0.99556,0.99586,0.99612,0.99637,0.99667,0.99709,0.99737,0.99761,0.99781
+0.99796,0.99810,0.99829,0.99861,0.99895,0.99915,0.99949,0.99973,1.00000
diff --git a/PARAM/HMS/GEN/hcana.param b/PARAM/HMS/GEN/hcana.param
index d5677d21cbdc00a64b2cf77e91d734991bcabaa3..da2f2c65d81cd54c7b397c87430162061088cde3 100644
--- a/PARAM/HMS/GEN/hcana.param
+++ b/PARAM/HMS/GEN/hcana.param
@@ -8,13 +8,9 @@ href_nsperchan = 0.1
 href_offset = 0.0
 ;
 
-hhodo_num_planes = 4
-hhodo_plane_names = "1x 1y 2x 2y"
-
 hcal_num_layers = 4
 
 rraster_num_signals = 4
-htofusinginvadc=0
  hcer_tot_pmts = 2
 # Exclusion band width for the calorimeter's fiducial volume.
 hcal_fv_delta = 5.
@@ -29,20 +25,5 @@ hcal_layer_names = "1pr 2ta 3ta 4ta"
 
 haero_num_pairs = 8
 
-# Names of planes so that parameter names can be constructed
-hdc_plane_names = "1x1 1y1 1u1 1v1 1y2 1x2 2x1 2y1 2u1 2v1 2y2 2x2"
-
 # The following were defined in REPLAY.PARAM
 h_recon_coeff_filename =    'DATFILES/hms_recon_coeff.dat'  ;hms optics matrix
-
-# The following are set to zero to replicate historical ENGINE behavior
-# For new analyses they should be set to 1.  If not defined here,
-# hcana will default 1, the new and correct behaviour.
-
-# If 1, Let a hit have different L/R assignment for different space points
-# instead of L/R assignment from first sp it appears in.
-hdc_fix_lr = 0
-# If 1, don't do the the propagation along the wire each time the hit
-# appears in a space point.  (Which means the correction accumulates)
-hdc_fix_propcorr = 0
-
diff --git a/PARAM/HMS/GEN/htracking.param b/PARAM/HMS/GEN/htracking.param
index 99b502a69f6dcf31d4ff079ffe72c0f887f10e34..3ee7a1eaf1c296febd6681be9e640cda25f78d2c 100644
--- a/PARAM/HMS/GEN/htracking.param
+++ b/PARAM/HMS/GEN/htracking.param
@@ -1,26 +1,25 @@
-; hms pattern recognition and tracking code parameters
-; hmax_pr_hits is the maximum number of decoded hits allowed in a chamber for
-;              pattern recognition to proceed. This protexts against unusual
-;              kami kaze events which hang the analyzer to a long time.
-;
-        hmax_pr_hits =    35, 35
-; maximum number of possible focal plane tracks, must be <= 20
-        hntracks_max_fp = 10
-; if h_remove_sppt_if_one_y_plane=1 then remove space point if space point
-;    contains only one y plane.
-; Recommend h_remove_sppt_if_one_y_plane=0.  
-        h_remove_sppt_if_one_y_plane=0
-; hminhit(i)   minimum number of hits in each space point (one for each chamber)
-	hmin_hit =     5, 5
-; hmin_combos(i) minimum number of pairs in each space point ( one per chamber)
-; should be 3/3 for 4/6 tracking, and 4/4 for 5/6 tracking (JRA)
-	hmin_combos = 4, 4 
-; hspace_point_criterion(i) minimum separation of distinct space points
-; recommended value for hspace_point_criterion ( based on meeting
-; Feb 2003) 
-       hspace_point_criterion = 1.0, 1.0
+; Maximum number of hits allowed in chambers for pattern recognition to proceed (one for each chamber)
+hmax_pr_hits = 35, 35
+
+; Maximum number of possible focal plane tracks, must be <= 20
+hntracks_max_fp = 10
+
+; Remove space point if space point contains only one y plane (0 recommended)
+h_remove_sppt_if_one_y_plane = 0
+
+; Minimum number of hits in each space point (one per chamber)
+hmin_hit = 4, 4
+
+; Minimum number of pairs in each space point (one per chamber)
+; Should be 3/3 for 4/6 tracking, and 4/4 for 5/6 tracking
+hmin_combos = 3, 3 
+
+; Minimum separation of distinct space points
+hspace_point_criterion = 1.0, 1.0
+
+; Maximum difference between xp returned by stub and expected xp
+hstub_max_xpdiff = .05
 
-        hstub_max_xpdiff = .05
 ;
 ; The following four criteria are applied to the stub fit results at the
 ; focal plane position to link stubs to tracks
@@ -61,8 +60,11 @@
 
 ; hstat_maxchisq          chisquared limit for tracks used to measure hodo. eff.
   hstat_maxchisq = 10.
+; if both hsel_using_scin = 0 and hsel_using_prune = 0 then best chi2 track is used.
 ; hsel_using_scin         uses scintillator for track selection
-  hsel_using_scin = 1
+  hsel_using_scin = 0
+; hsel_using_prune         using prune
+  hsel_using_prune = 0
 ; hstat_slop              distance from center of scin. to count as expecting hit
   hstat_slop = 2.
 ; hstat_mineff            warning level for scin. effic.
diff --git a/PARAM/HMS/HODO/hhodo.param b/PARAM/HMS/HODO/hhodo.param
index 0621446afc23153109459fc3fdfdaacf1d5c5b20..27b0e24fbbaa971e09ed321c1d160abcd427086b 100644
--- a/PARAM/HMS/HODO/hhodo.param
+++ b/PARAM/HMS/HODO/hhodo.param
@@ -1,15 +1,27 @@
-; hstart_time_center  center of allowed time window                             
+hcosmicflag=1
+; for now manually set hte FADC mode
+;  1 == Use the pulse int - pulse ped
+;  2 == Use the sample integral - known ped
+;  3 == Use the sample integral - sample ped
+; if not set then defaults to use the raw pulse integral
+hhodo_adc_mode=1
+; 
+; hhodo_tdc_offset is array of time offsets for all paddles in a plane
+;   to move the tdc to between 0 and 4000 channels.
+  hhodo_tdc_offset = 1120, 1120, 1120, 1120
+;  hhodo_tdc_offset = 1000, 1000, 1000, 1000
+; hstart_time_center  center of allowed time window (ns)
    hstart_time_center = 32.                                                     
 ; hstart_time_slop    1/2 width of time window                                  
-   hstart_time_slop = 25.                                                       
+   hstart_time_slop = 100.                                                       
 ; hscin_tdc_min       minimum tdc value in hms scin                             
-    hscin_tdc_min = 0                                                           
+    hscin_tdc_min = -500                                                           
 ; hscin_tdc_max       maximum allowed tdc value                                 
    hscin_tdc_max = 4000                                                         
 ; hscin_tdc_to_time   scin tdc time per channel                                 
-   hscin_tdc_to_time = 0.0259                                                   
+   hscin_tdc_to_time = 0.1                                                  
 ; tof and you figured out good values
-   htof_tolerance = 3.0
+   htof_tolerance = 50.0
 ;                                                                               
 ; hms_tof_params                                                                
 ; hnum_scin_counters, hhodo_zpos, hhodo_center_coord, hhodo_width               
@@ -17,24 +29,130 @@
 ;    hhodo_pos_coord and hhodo_neg_coord are not yet used                       
 ;                                                                               
      hhodo_slop     =    2.,  2.,  4.,  4.                                      
+;   
+htofusinginvadc=1
 ;                                                                               
-     hhodo_vel_light =  14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-                        14.0,14.8,15.5,15.8                                     
-;                                                                               
+                                                                                
+hhodo_pos_invadc_offset = 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000 
+
+;
+hhodo_neg_invadc_offset = 2.63295,0.592977,0.810207,2.17447
+1.6381,-2.44172,-0.167998,1.613
+2.12397,-1.11413,1.12234,2.70131
+2.23737,-3.22432,-0.0328571,2.88366
+1.84971,-2.55502,-0.325019,2.75559
+1.77137,-1.90664,-0.0557544,1.354
+1.86089,-1.9991,-1.08851,-2.15107
+2.74336,-2.60574,0.388706,3.63254
+1.53963,-1.67298,-1.06672,3.14031
+2.25306,-2.75735,0.900716,2.54422
+1.72962,0.0,-0.000925926,0.0
+0.136985,0.0,-1.90318,0.0
+1.06083,0.0,-4.18178,0.0
+1.92537,0.0,-0.688612,0.0
+1.36458,0.0,0.641606,0.0
+1.95569,0.0,-1.16377,0.0
+ 
+;
+hhodo_pos_invadc_linear = 15.0,15.0,15.0,15.0        
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+hhodo_neg_invadc_linear = 15.0,15.0,15.0,15.0        
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+
+hhodo_pos_invadc_adc =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+hhodo_neg_invadc_adc =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+     hhodo_vel_light =  15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+ ;                                                                               
       hhodo_pos_sigma = .3,.3,.3,.3,.3,.3,.3,.3                                 
                         .3,.3,.3,.3,.3,.3,.3,.3                                 
                         .3,.3,.3,.3,.3,.3,.3,.3                                 
@@ -53,111 +171,8 @@
                         .3,.3,.3,.3,.3,.3,.3,.3                                 
                         .3,.3,.3,.3,.3,.3,.3,.3                                 
                                                                                 
-  hhodo_pos_minph = 125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                                                                                
-  hhodo_neg_minph = 125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-                    125,135,125,120                                             
-  hhodo_pos_phc_coeff = -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                        -1.45,-1.1,-1.,-1.2                                     
-                                                                                
-  hhodo_neg_phc_coeff = -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                        -1.3,-1.1,-1.2,-1.4                                     
-                                                                                
-                                                                                
-; csa 9/8/98 -- I had to hand-twaddle a few of the values                       
-; based on (relative) offsets of older hhodo.param                              
-                                                                                
-                                                                                
-hhodo_pos_time_offset =   6.7992,   0.0000,  -7.1126,   4.7475
-                         -1.1436,   0.4026,  -0.1443,   8.8108
-                          5.1911,   1.7935,  -7.0357,   7.7590
-                          5.6115,   0.1231,  -4.3477,  12.8552
-                          1.2354,  -6.4896,   8.6617,   9.3857
-                          1.8675,  -0.3651,  -4.7731,   7.9034
-                          6.4738,  -1.0463,   1.1786,   8.9740
-                          4.5395,   2.3368,  -4.4623,   4.5968
-                          2.6241,  -2.4480,  -6.4964,   6.2390
-                          4.2056,   0.0000,  -0.8924,  -1.2482
-                          6.1303,   0.0000,  -7.9503,   0.0000
-                          5.5326,   0.0000,  -0.3564,   0.0000
-                          4.3238,   0.0000,   0.8133,   0.0000
-                          1.7467,   0.0000,   1.9021,   0.0000
-                          4.1333,   0.0000,  -5.4523,   0.0000
-                          0.9416,   0.0000,   1.0158,   0.0000
-hhodo_neg_time_offset =  -2.1515,   0.0000,   2.5771,  11.2323
-                         -1.6547,  -2.2888,  10.1063,  13.3595
-                         -3.8050,  -4.1933,   3.4133,  15.0118
-                          0.7925,  -1.9592,  10.9311,  15.1057
-                         -1.2621,  -4.6538,   2.3474,  10.2752
-                         -2.9459,   1.2711,   9.6479,   7.8567
-                          1.2439,  -3.4946,   3.7283,  10.7897
-                         -4.8205,   1.1743,   8.5908,  11.1753
-                         -6.3324,  -5.2290,   0.2444,  14.7184
-                          1.8168,   0.0000,  11.2387,  15.5869
-                          0.4240,   0.0000,   8.2657,   0.0000
-                         -0.9945,   0.0000,   9.2381,   0.0000
-                         -2.3217,   0.0000,   5.1855,   0.0000
-                         -5.1166,   0.0000,  10.0781,   0.0000
-                          0.2537,   0.0000,   6.2455,   0.0000
-                          7.0554,   0.0000,  12.8714,   0.0000
                                                                                 
+                                                                               
 ;                                                                               
 hhodo_pos_ped_limit = 1000,1000,1000,1000,1000,1000,1000,1000                   
                       1000,1000,1000,1000,1000,1000,1000,1000                   
@@ -175,5 +190,140 @@ hhodo_neg_ped_limit = 1000,1000,1000,1000,1000,1000,1000,1000
                       1000,1000,1000,1000,1000,1000,1000,1000                   
                       1000,1000,1000,1000,1000,1000,1000,1000                   
                       1000,1000,1000,1000,1000,1000,1000,1000                   
-                      1000,1000,1000,1000,1000,1000,1000,1000                   
-                                                                                
+                      1000,1000,1000,1000,1000,1000,1000,1000  
+; new param                 
+hhodo_pos_invadc_offset =   -0.00,   -0.00,   -0.70,   -0.00
+                            -0.00,   -0.00,   -0.31,   -2.63
+                            -0.00,    0.13,   -1.03,   -0.58
+                             1.43,   -0.51,   -0.87,   -0.63
+                             0.60,   -0.75,   -0.66,   -1.54
+                             1.73,   -0.66,   -0.82,   -1.46
+                             0.89,    0.08,   -0.92,   -0.88
+                             2.10,    0.20,   -0.32,   -0.39
+                             0.31,   -0.89,   -1.14,   -2.15
+                            -0.00,   -0.00,   -1.52,   -0.00
+                             0.80,   -0.00,   -0.75,   -0.00
+                            -0.25,   -0.00,   -2.36,   -0.00
+                             0.54,   -0.00,   -0.00,   -0.00
+                             0.47,   -0.00,   -0.00,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+
+hhodo_neg_invadc_offset =   -0.00,   -0.00,   -0.97,   -0.00
+                            -0.00,   -0.00,    0.06,   -2.16
+                            -0.00,   -0.58,   -1.60,   -0.95
+                            -0.09,    0.95,   -0.45,   -0.49
+                            -0.79,   -0.05,    0.21,   -1.82
+                             0.32,   -1.02,   -0.05,   -0.52
+                             0.02,    0.19,    0.90,    3.75
+                            -0.35,    0.35,    0.26,   -1.65
+                            -0.27,   -1.32,    0.33,   -2.44
+                            -1.42,   -0.00,   -1.48,   -0.00
+                             0.14,   -0.00,    0.14,   -0.00
+                             0.24,   -0.00,   -0.06,   -0.00
+                             0.16,   -0.00,   -0.00,   -0.00
+                            -0.83,   -0.00,   -0.00,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+
+hhodo_pos_invadc_linear =   15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            14.56,   15.00,   15.00,   15.00
+                            12.91,   15.00,   15.00,   15.00
+                            12.81,   14.97,   15.00,   15.00
+                            14.29,   15.00,   15.00,   15.00
+                            12.94,   14.21,   14.85,   15.00
+                            13.27,   13.60,   15.00,   15.00
+                            13.44,   15.00,   15.00,   15.00
+                            14.24,   15.00,   15.00,   15.00
+                            13.24,   15.00,   14.33,   15.00
+                            13.20,   15.00,   15.00,   15.00
+                            13.94,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+
+hhodo_neg_invadc_linear =   15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   14.56,   15.00,   15.00
+                            14.55,   14.16,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            13.47,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            14.69,   14.21,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            14.74,   15.00,   15.00,   15.00
+                            14.66,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            13.71,   15.00,   15.00,   15.00
+                            12.33,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+
+hhodo_pos_invadc_adc=    -0.00,    -0.00,   106.88,    -0.00
+                        -0.00,    -0.00,   109.67,   122.91
+                        -0.00,   102.28,   127.88,   117.82
+                       100.32,    76.55,   109.30,   139.97
+                        72.45,    90.73,   111.62,   121.49
+                        59.46,    83.45,   116.54,   123.92
+                        95.04,    91.79,   125.49,   127.74
+                        62.95,    53.50,   113.46,   106.91
+                        78.26,    49.84,   100.37,   141.06
+                        73.52,    -0.00,   101.78,    -0.00
+                        94.23,    -0.00,   129.39,    -0.00
+                        75.59,    -0.00,    94.17,    -0.00
+                        79.87,    -0.00,    -0.00,    -0.00
+                        63.90,    -0.00,    -0.00,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+
+hhodo_neg_invadc_adc=    -0.00,    -0.00,   128.32,    -0.00
+                        -0.00,    -0.00,   113.16,   159.99
+                        -0.00,    68.41,   116.51,   119.18
+                        73.18,    65.95,   112.50,   122.16
+                        96.71,    91.23,    96.00,   103.37
+                        52.93,    87.48,   103.59,   122.65
+                        72.72,    82.28,   118.40,   140.72
+                        76.58,    68.02,   104.25,   120.16
+                        73.69,    98.85,    91.95,   119.78
+                        72.26,    -0.00,    89.16,    -0.00
+                        70.89,    -0.00,   113.44,    -0.00
+                        72.26,    -0.00,   101.96,    -0.00
+                        76.14,    -0.00,    -0.00,    -0.00
+                        36.51,    -0.00,    -0.00,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+
+hhodo_pos_sigma =  100.00,  100.00,    0.28,  100.00
+                   100.00,  100.00,    0.31,    0.47
+                   100.00,    0.27,    0.33,    0.34
+                     0.26,    0.32,    0.35,    0.44
+                     0.30,    0.30,    0.33,    0.51
+                     0.38,    0.28,    0.22,    0.41
+                     0.25,    0.30,    0.32,    0.46
+                     0.35,    0.30,    0.31,    0.34
+                     0.26,    0.25,    0.24,    0.41
+                     0.27,  100.00,    0.27,  100.00
+                     0.25,  100.00,    0.37,  100.00
+                     0.26,  100.00,    0.24,  100.00
+                     0.34,  100.00,  100.00,  100.00
+                     0.37,  100.00,  100.00,  100.00
+                   100.00,  100.00,  100.00,  100.00
+                   100.00,  100.00,  100.00,  100.00
+
+hhodo_neg_sigma =  100.00,  100.00,    0.32,  100.00
+                   100.00,  100.00,    0.33,    0.52
+                   100.00,    0.31,    0.35,    0.31
+                     0.25,    0.30,    0.34,    0.32
+                     0.28,    0.32,    0.27,    0.56
+                     0.36,    0.33,    0.28,    0.31
+                     0.26,    0.31,    0.37,    0.42
+                     0.32,    0.30,    0.28,    0.33
+                     0.24,    0.28,    0.20,    0.44
+                     0.27,  100.00,    0.24,  100.00
+                     0.24,  100.00,    0.29,  100.00
+                     0.25,  100.00,    0.25,  100.00
+                     0.28,  100.00,  100.00,  100.00
+                     0.33,  100.00,  100.00,  100.00
+                   100.00,  100.00,  100.00,  100.00
+                   100.00,  100.00,  100.00,  100.00
diff --git a/PARAM/HMS/HODO/hhodo.pos b/PARAM/HMS/HODO/hhodo.pos
index 2e37fd06ea8c5ce715c0b9b61cc24ce182c8f989..d543d89a04bb7ad6c0726950a06b993dce04d1a1 100644
--- a/PARAM/HMS/HODO/hhodo.pos
+++ b/PARAM/HMS/HODO/hhodo.pos
@@ -1,3 +1,7 @@
+
+hhodo_num_planes = 4
+hhodo_plane_names = "1x 1y 2x 2y"
+;
       hpathlength_central = 2500
 ; Z positions of hodoscopes
       hscin_1x_zpos =  (89.14-11.31)
diff --git a/PARAM/HMS/HODO/hhodo_3of4trigger.param b/PARAM/HMS/HODO/hhodo_3of4trigger.param
new file mode 100644
index 0000000000000000000000000000000000000000..c59e5c44b602ea6b83c1ee5ce0b019ff39b6d0f9
--- /dev/null
+++ b/PARAM/HMS/HODO/hhodo_3of4trigger.param
@@ -0,0 +1,191 @@
+hcosmicflag=1
+; for now manually set hte FADC mode
+;  1 == Use the pulse int - pulse ped
+;  2 == Use the sample integral - known ped
+;  3 == Use the sample integral - sample ped
+; if not set then defaults to use the raw pulse integral
+hhodo_adc_mode=1
+; 
+; hhodo_tdc_offset is array of time offsets for all paddles in a plane
+;   to move the tdc to between 0 and 4000 channels.
+  hhodo_tdc_offset = 1050, 1050, 1050, 1050
+; hstart_time_center  center of allowed time window (ns)
+   hstart_time_center = 32.                                                     
+; hstart_time_slop    1/2 width of time window                                  
+   hstart_time_slop = 25.                                                       
+; hscin_tdc_min       minimum tdc value in hms scin                             
+    hscin_tdc_min = 0                                                           
+; hscin_tdc_max       maximum allowed tdc value                                 
+   hscin_tdc_max = 4000                                                         
+; hscin_tdc_to_time   scin tdc time per channel                                 
+   hscin_tdc_to_time = 0.1                                                  
+; tof and you figured out good values
+   htof_tolerance = 30.0
+;                                                                               
+; hms_tof_params                                                                
+; hnum_scin_counters, hhodo_zpos, hhodo_center_coord, hhodo_width               
+; are all calculated within h_init_scin                                         
+;    hhodo_pos_coord and hhodo_neg_coord are not yet used                       
+;                                                                               
+     hhodo_slop     =    2.,  2.,  4.,  4.                                      
+;   
+htofusinginvadc=1
+;                                                                               
+                                                                                
+hhodo_pos_invadc_offset =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+hhodo_neg_invadc_offset =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+hhodo_pos_invadc_linear =   14.0,14.8,15.5,15.8        
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+hhodo_neg_invadc_linear =   14.0,14.8,15.5,15.8        
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+ 
+hhodo_pos_invadc_adc =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+hhodo_neg_invadc_adc =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+     hhodo_vel_light =  14.0,14.8,15.5,15.8        
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+;                                                                               
+      hhodo_pos_sigma = .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+;                                                                               
+      hhodo_neg_sigma = .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                                                                                
+                                                                                
+                                                                               
+;                                                                               
+hhodo_pos_ped_limit = 1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+;                                                                               
+hhodo_neg_ped_limit = 1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                                                                                
diff --git a/PARAM/HMS/HODO/hhodo_4of4trigger.param b/PARAM/HMS/HODO/hhodo_4of4trigger.param
new file mode 100644
index 0000000000000000000000000000000000000000..54596af47693886ae5654fcaef5208a0e7c42e3b
--- /dev/null
+++ b/PARAM/HMS/HODO/hhodo_4of4trigger.param
@@ -0,0 +1,191 @@
+hcosmicflag=1
+; for now manually set hte FADC mode
+;  1 == Use the pulse int - pulse ped
+;  2 == Use the sample integral - known ped
+;  3 == Use the sample integral - sample ped
+; if not set then defaults to use the raw pulse integral
+hhodo_adc_mode=1
+; 
+; hhodo_tdc_offset is array of time offsets for all paddles in a plane
+;   to move the tdc to between 0 and 4000 channels.
+  hhodo_tdc_offset = 1280, 1280, 1280, 1290
+; hstart_time_center  center of allowed time window (ns)
+   hstart_time_center = 32.                                                     
+; hstart_time_slop    1/2 width of time window                                  
+   hstart_time_slop = 25.                                                       
+; hscin_tdc_min       minimum tdc value in hms scin                             
+    hscin_tdc_min = 0                                                           
+; hscin_tdc_max       maximum allowed tdc value                                 
+   hscin_tdc_max = 4000                                                         
+; hscin_tdc_to_time   scin tdc time per channel                                 
+   hscin_tdc_to_time = 0.1                                                  
+; tof and you figured out good values
+   htof_tolerance = 30.0
+;                                                                               
+; hms_tof_params                                                                
+; hnum_scin_counters, hhodo_zpos, hhodo_center_coord, hhodo_width               
+; are all calculated within h_init_scin                                         
+;    hhodo_pos_coord and hhodo_neg_coord are not yet used                       
+;                                                                               
+     hhodo_slop     =    2.,  2.,  4.,  4.                                      
+;   
+htofusinginvadc=1
+;                                                                               
+                                                                                
+hhodo_pos_invadc_offset =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+hhodo_neg_invadc_offset =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+hhodo_pos_invadc_linear =   14.0,14.8,15.5,15.8        
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+hhodo_neg_invadc_linear =   14.0,14.8,15.5,15.8        
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+ 
+hhodo_pos_invadc_adc =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+hhodo_neg_invadc_adc =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+     hhodo_vel_light =  14.0,14.8,15.5,15.8        
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8      
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8   
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8 
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8
+                        14.0,14.8,15.5,15.8  
+                        14.0,14.8,15.5,15.8  
+;                                                                               
+      hhodo_pos_sigma = .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+;                                                                               
+      hhodo_neg_sigma = .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                        .3,.3,.3,.3,.3,.3,.3,.3                                 
+                                                                                
+                                                                                
+                                                                               
+;                                                                               
+hhodo_pos_ped_limit = 1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+;                                                                               
+hhodo_neg_ped_limit = 1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                      1000,1000,1000,1000,1000,1000,1000,1000                   
+                                                                                
diff --git a/PARAM/HMS/HODO/htofcal.param b/PARAM/HMS/HODO/htofcal.param
new file mode 100644
index 0000000000000000000000000000000000000000..8ace71250d5a69df7036c903f5c617f9f9bd76bd
--- /dev/null
+++ b/PARAM/HMS/HODO/htofcal.param
@@ -0,0 +1,2 @@
+hdumptof=1
+hdumptof_filename="CALIBRATION/hodo_calib/hfort.37"
diff --git a/PARAM/README.md b/PARAM/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..397425b825a1ea4126ecf9b9c3847739ed9ded56
--- /dev/null
+++ b/PARAM/README.md
@@ -0,0 +1,218 @@
+# Notes
+
+## Naming
+
+* `X` stands for spectrometer name:
+    * `h` for HMS
+    * `p` for SHMS
+    * `s` for SOS
+* `Y` stands for plane name.
+* `N` stands for sequential number
+
+## Constants
+
+* `raddeg = 3.14159265/180`
+    * Conversion from degrees to radians.
+    * real
+    * `DBASE/general.param`
+* `cminch = 2.54`
+    * Conversion from inches to cm.
+    * real
+    * `DBASE/general.param`
+
+
+# Tracking
+
+* `Xsel_using_scin = 0`
+    * Use scintillator for track selection.
+    * {0, 1} bool
+    * `THcHallCSpectrometer::fSelUsingScin`
+
+# Drift chambers
+
+## `Xdc.param`
+
+* `Xdc_num_chambers`
+    * Number of drift chambers in detector.
+    * int
+    * `THcDC::fNChambers`
+* `Xdc_num_planes`
+    * Total number of drift chamber planes in detector.
+    * int
+    * `THcDC::fNPlanes`
+* `Xdc_plane_names`
+    * Names of planes.
+    * string
+    * `THcDC::Setup::planenamelist`
+* `Xdc_chamber_planes`
+    * Index of chamber that each plane belongs to. Chamber number starts with 1.
+    * [int]
+    * `THcDC::fNChamber`
+* `Xdc_nrwire`
+    * Number of wires in each plane.
+    * [int]
+    * `THcDC::fNWires`
+
+## `Xdc.pos`
+
+* `Xdc_xcenter`
+    * x position in cm of center for each wire chamber.
+    * [double]
+    * `THcDC::fXCenter`
+* `Xdc_ycenter`
+    * y position in cm of center for each wire chamber.
+    * [double]
+    * `THcDC::fYCenter`
+* `Xdc_N_zpos`
+    * z position in cm of center for each wire chamber.
+    * double
+    * internal only
+* `Xdc_N_roll`
+    * Roll in degrees for each wire chamber. Added to `Xdc_alpha_angle`.
+    * double
+    * internal only
+* `Xdc_N_pitch`
+    * Pitch in degrees for each wire chamber. Added to `Xdc_beta_angle`.
+    * double
+    * internal only
+* `Xdc_N_yaw`
+    * Yaw in degrees for each wire chamber. Added to `Xdc_gamma_angle`.
+    * double
+    * internal only
+
+
+* `Xdc_central_wire`
+    * Wire number of center of wire chamber for each plane. Basically, this is
+      number of imaginary wire, that would cross center of plane. Wire numbers
+      start with 1.
+    * [double]
+    * `THcDC::fCentralWire`
+* `Xdc_pitch`
+    * Distance between wires for each plane in cm.
+    * [double]
+    * `THcDC::fPitch`
+* `Xdc_wire_counting`
+    * Order in which wires are counted in each plane.
+        * `Xdc_wire_counting == 0` : `center = (wire - Xdc_central_wire) * pitch`
+        * `Xdc_wire_counting == 1` : `center = (Xdc_nrwire + 1 - wire -
+           Xdc_central_wire) * pitch`
+    * [{0, 1}]
+    * `THcDC::fWireOrder`
+* `Xdc_zpos`
+    * Position along z in cm of each plane measured from focal plane.
+    * [double]
+    * `THcDC::fZPos`
+* `Xdc_alpha_angle`
+    * Angle $\alpha$ of wires for each plane in radians. Basically the angle of
+      the wires. See also [link][SOS_tracking].
+    * [double]
+    * `THcDC::fAlphaAngle`
+* `Xdc_beta_angle`
+    * Angle $\beta$ of wires for each plane in radians. See also
+      [link][SOS_tracking].
+    * [double]
+    * `THcDC::fBetaAngle`
+* `Xdc_gamma_angle`
+    * Angle $\gamma$ of wires for each plane in radians. See also
+      [link][SOS_tracking].
+    * [double]
+    * `THcDC::fGammaAngle`
+
+[SOS_tracking]: https://hallcweb.jlab.org/DocDB/0008/000812/001/SOS_Tracking.pdf (Tracking in the SOS Spectrometer)
+
+## `Xdc_tracking.param`
+
+* `Xdc_sigma`
+    * Sigma of wire chamber resolution for each plane.
+    * [double]
+    * `THcDC::fSigma`
+* `Xdc_tdc_min_win`
+* TDC window lower limit for each plane.
+    * [int]
+    * `THcDC::fTdcWinMin`
+    * `Xdc_tdc_max_win`
+* TDC window higher limit for each plane.
+    * [int]
+    * `THcDC::fTdcWinMax`
+    * `Xdc_tdc_time_per_channel`
+* Conversion factor from TDC clicks to ns.
+    * CAEN 1190 : 100 ps/click
+    * double
+    * `THcDC::fNSperChan`
+* `Xdc_plane_time_zero`
+    * Zero time correction for each plane in ns that is added to TDC time.
+    * [double]
+    * `THcDC::fPlaneTimeZero`
+* `Xdc_wire_velocity`
+    * Wire velocity.
+    * double
+    * `THcDC::fWireVelocity`
+* `Xdc_central_time`
+    * Used for wire velocity correction in each plane.
+    * [int]
+    * `THcDC::fCentralTime`
+* `Xdc_drifttime_sign`
+    * Used for wire velocity correction in each plane.
+    * [{-1, 1}]
+    * `THcDC::fDriftTimeSign`
+* `Xdc_fix_lr`
+    * Used for wire velocity correction in each plane.
+        * Let hit have different L/R assignment for different space point.
+        * Should be 0 to mimic ENGINE behavior but 1 for more correct behavior.
+    * {0, 1} bool
+    * `THcDC::fFixLR`
+* `Xdc_fix_propcorr`
+    * Used for wire velocity correction in each plane.
+        * Do propagation along wire each time hit appears in a space point.
+    * {0, 1} bool
+    * `THcDC::fFixPropagationCorrection`
+
+### Velocity correction
+
+The velocity correction is the distance from the center of the wire divided by
+the velocity of propagation times Xdc_drifttime_sign(plane). +/-1 for disc. card
+at +/- coord. (i.e. top = -x direction, so top readout is +1)
+
+## `Xdriftmap.param`
+
+Contains lookup table for drift time.
+
+* `Xdriftbins`
+    * Number of bins in table.
+    * int
+    * `THcDriftChamberPlane::ReadDatabase::NumDriftMapBins`
+* `Xdrift1stbin`
+    * Time of first bin in ns.
+    * double
+    * `THcDriftChamberPlane::ReadDatabase::DriftMapFirstBin`
+* `Xdriftbinsz`
+    * Bin size in ns.
+    * double
+    * `THcDriftChamberPlane::ReadDatabase::DriftMapBinSize`
+* `XwcYfract`
+    * Drift time lookup table entries for plane Y.
+    * [double]
+    * `THcDriftChamberPlane::ReadDatabase::DriftMap`
+
+## Deprecated
+
+* `Xdc_num_deadwires`
+    * Number of dead wires in drift chambers (< 20 % efficiency)
+    * int
+* `Xdc_deadwire_plane`
+    * Plane number for each dead wire.
+    * [int]
+* `Xdc_deadwire_num`
+    * Wire number for each dead wire.
+    * [int]
+
+
+* `Xdc_card_no`
+    * Index of connector card for each wire.
+        * Single array for all planes.
+        * Wires start with plane 1, wire 1.
+        * For each plane there must be 'max number of wires' entries.
+    * [int]
+* `Xdc_card_delay`
+    * Cable delays for each connector card.
+    * [int]
diff --git a/PARAM/SHMS/AERO/paero.param b/PARAM/SHMS/AERO/paero.param
new file mode 100644
index 0000000000000000000000000000000000000000..a469a7b9f022881d453d1f721a692046dbcceb74
--- /dev/null
+++ b/PARAM/SHMS/AERO/paero.param
@@ -0,0 +1,12 @@
+
+
+paero_pos_gain = 1./496.7, 1./467.5, 1./554.3, 1./766.1, 1./412.1, 1./517.9, 1./435.6, 1./500.,
+
+paero_neg_gain = 1./586.8, 1./536.5, 1./690.5, 1./563.1, 1./574.4, 1./432.7, 1./601.5, 1./500.,
+
+     paero_pos_ped_limit =  1000., 1000., 1000., 1000.,
+                            1000., 1000., 1000., 1000.,
+
+     paero_neg_ped_limit =  1000., 1000., 1000., 1000.,
+                            1000., 1000., 1000., 1000.,
+
diff --git a/PARAM/SHMS/CAL/pcal.param b/PARAM/SHMS/CAL/pcal.param
new file mode 100644
index 0000000000000000000000000000000000000000..cde530b52ab608486a774c20529016c9187cd72f
--- /dev/null
+++ b/PARAM/SHMS/CAL/pcal.param
@@ -0,0 +1,65 @@
+
+pcal_array = 1
+pcal_layer_names = "pr fly"
+pcal_pr_nr = 14 # Num of rows in preshower
+pcal_num_layers = 1
+pcal_arr_nrows = 16
+pcal_arr_ncolumns = 14
+
+pcal_arr_front_x = 1.0
+pcal_arr_front_y = 1.0
+pcal_arr_front_z = 1.0
+pcal_arr_xstep = 1.0
+pcal_arr_ystep = 1.0
+pcal_arr_zsize = 1.0
+pcal_arr_ped_limit = 1.0
+pcal_arr_cal_const = 1.0
+pcal_arr_gain_cor = 1.0
+
+
+; Exclusion bandwidth for calorimeter fiducial volume.
+pcal_fv_delta = 5
+# Constants for the coordiante correction of the calorimeter energy depositions
+pcal_a_cor = 200.
+pcal_b_cor = 8000.
+pcal_c_cor = 64.36, 64.36	# for positive and negative sides
+pcal_d_cor =  1.66,  1.66
+
+; Parameters copied from HMS
+; Slop in x possitino.  Allowed distance between track and edge of block
+pcal_slop = 7.5 
+
+pcal_pr_thick = 10.0
+; Z Position of from of preshower
+pcal_pr_zpos = 200.0
+
+pcal_pr_left  =  35.0
+pcal_pr_right = -35.0
+pcal_pr_top   = (-69.0-1.4)
+                 (-59.0-1.4)
+                 (-49.0-1.4)
+                 (-39.0-1.4)
+                 (-29.0-1.4)
+                 (-19.0-1.4)
+                 ( -9.0-1.4)
+                 (  1.0-1.4)
+                 ( 11.0-1.4)
+                 ( 21.0-1.4)
+                 ( 31.0-1.4)
+                 ( 41.0-1.4)
+                 ( 51.0-1.4)
+                 ( 61.0-1.4)
+pcal_pos_cal_const =0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,
+        0.001,0.001,0.001,0.001,0.001,0.001
+pcal_neg_cal_const =0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,
+        0.001,0.001,0.001,0.001,0.001,0.001
+pcal_pos_ped_limit=1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,
+	1000,1000,1000,1000
+pcal_neg_ped_limit=1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,
+	1000,1000,1000,1000
+
+pcal_pos_gain_cor=1.0/411.2, 1.0/378.6, 1.0/357.9, 1.0/254.8, 1.0/315.6, 1.0/331.0, 1.0/264.6, 1.0/305.4, 1.0/149.8, 1.0/380.6, 1.0/183.1, 1.0/206.5, 1.0/139.8, 1.0/163.
+pcal_neg_gain_cor=1.0/466.2, 1.0/514.7, 1.0/325.5, 1.0/247.8, 1.0/322.0, 1.0/176.2, 1.0/161.9, 1.0/197.7, 1.0/269.9, 1.0/241.6, 1.0/193.7, 1.0/337.5, 1.0/237.3, 1.0/82.0
+
+pcal_min_peds = 500
+
diff --git a/PARAM/SHMS/DC/pdc.param b/PARAM/SHMS/DC/pdc.param
index 56517a04741c12d0786e7a3930ef48dc4aa9edd1..767a8946b06aff3166851b0373d7e2b58fae8775 100644
--- a/PARAM/SHMS/DC/pdc.param
+++ b/PARAM/SHMS/DC/pdc.param
@@ -1,25 +1,19 @@
-;---------------------------------------------------------------------
-; SHMS_TRACKING
-; CTP parameter file containing all tracking parameters for the HMS
-;----------------------------------------------------------------------
+; GENERAL PARAMETERS
 
-; sigma of wire chabmer resolution for each plane
-  pdc_sigma = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02 
-  	      0.02, 0.02, 0.02, 0.02, 0.02, 0.02
+; Number of drift chambers.
+pdc_num_chambers = 2
 
-; tdc window, wide limits for now
-  pdc_tdc_min_win = -55000,-55000,-55000,-55000,-55000,-55000
-  		    -55000,-55000,-55000,-55000,-55000,-55000
-  pdc_tdc_max_win = 55000,55000,55000,55000,55000,55000
-  		    55000,55000,55000,55000,55000,55000
+; Total number of planes.
+pdc_num_planes = 12
 
-; conversion from tdc lciks to ns
-  pdc_tdc_time_per_channel = -0.10 ; CAEN1190 TDC step size = 100ps
+; Names of planes.
+pdc_plane_names = "1u1 1u2 1x1 1x2 1v1 1v2 2v2 2v1 2x2 2x1 2u2 2u1"  ; TODO
 
-; zero time, decreasing moves sdtime plots to lower time
-  pdc_plane_time_zero = 120.0,120.0,120.0,120.0,120.0,120.0
-  		      	120.0,120.0,120.0,120.0,120.0,120.0
+; Chamber index for each plane.
+pdc_chamber_planes = 1, 1, 1, 1, 1, 1
+                     2, 2, 2, 2, 2, 2
 
-; wire velocity
-  pdc_wire_velocity = 13.0
-  pdc_central_time = 1,1,1,1,1,1,1,1,1,1,1,1
+; Number of wires in each plane.
+; Should be 109 and 80, but edge sense wire were not strung.
+pdc_nrwire = 107, 107, 79, 79, 107, 107
+             107, 107, 79, 79, 107, 107
diff --git a/PARAM/SHMS/DC/pdc.param.ori b/PARAM/SHMS/DC/pdc.param.ori
deleted file mode 100644
index 7d1d76cf442116fbf659ed66afee7b0571919598..0000000000000000000000000000000000000000
--- a/PARAM/SHMS/DC/pdc.param.ori
+++ /dev/null
@@ -1,14 +0,0 @@
-
-ppartmass = 0.139
-phodo_num_planes = 1
-
-; Scintillator parameters
-pref_npaddles = 6
-pref_nsperchan = 0.1
-pref_offset = 0.0
-
-
-
-
-
-
diff --git a/PARAM/SHMS/DC/pdc.param.ori.dnd b/PARAM/SHMS/DC/pdc.param.ori.dnd
deleted file mode 100644
index 4ba25d481eb391a28d5bb83bd6d13c5203c456f5..0000000000000000000000000000000000000000
--- a/PARAM/SHMS/DC/pdc.param.ori.dnd
+++ /dev/null
@@ -1,377 +0,0 @@
-
-raddeg=3.14159265/180
-
-; Parameters we need to keep THcHallCSpectrometer Happy
-p_recon_coeff_filename = ""
-ptheta_offset = 0.0
-pphi_offset = 0.0
-pdelta_offset = 0.0
-pthetacentral_offset = 0.0
-p_oopcentral_offset = 0.0
-ppcentral_offset = 0.0
-ppcentral = 0.0
-ptheta_lab = 0.0
-ppartmass = 0.139
-phodo_num_planes = 1
-
-; Scintillator parameters
-pref_npaddles = 6
-pref_nsperchan = 0.1
-pref_offset = 0.0
-;
-
-; Number of chambers in test setup
-
-
-  pdc_num_chambers = 2
-  pdc_num_planes = 12
-  pdc_tdc_time_per_channel = -0.10 ; TDC step size  100ps?
-  pdc_wire_velocity = 13.0
-  pdc_central_time = 1,1,1,1,1,1,1,1,1,1,1,1
-  pdc_plane_names = "1u1 1u2 1x1 1x2 1v1 1v2 2v2 2v1 2x2 2x1 2u2 2u1
-  pdc_xcenter = 0.0, 0.0
-  pdc_ycenter = 0.0, 0.0
-; Order in which wires are readout
-  pdc_wire_counting = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
-; If pdc_wire_counting(plane) = 0
-;  the wire center is at (wire - pdc_central_wire) * pitch
-; If pdc_wire_counting(plane) = 1
-;  the wire center is at ( pdc_nrwire + 1 - wire - pdc_central_wire) * pitch
-
-; The velocity correction is the distance from the center of the wire divided
-; by the velocity of propagation times pdc_drifttime_sign(pln).  +/-1
-; for disc. card at +/- coord. (i.e. top = -x direction, so top readout is +1)
-;
-; These are guesses taken from the SOS Chambers
-;
-  pdc_drifttime_sign = 1, -1, -1, 1, 1, -1,  1, -1, -1, 1, 1, -1
-;
-; Wire number of center of wire chamber
-; Note the convention : x : low number =  -x , u,v : low number = "-x"
-; x1 and x2, u1 and u2, v1 and v2 are offset by half a cell length
-; assume 1st wire of 1st dc of a set is closest to edge where counting starts
-; (These taken from SOS.  Will be different for SHMS
-      pdc_central_wire = 54.25
-                         53.75
-                         40.25
-                         40.75
-                         54.25
-                         53.75 
-			 53.75
-			 54.25
-			 40.75
-			 40.25
-			 53.75
-			 54.25
-
-; sigma of wire chabmer resolution for each plane
-  pdc_sigma = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02
-
-; tdc window.  Wide limits for now
-  pdc_tdc_min_win = -55000,-55000,-55000,-55000,-55000,-55000,-55000,-55000,-55000,-55000,-55000,-55000
-  pdc_tdc_max_win = 55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000,55000
-; zero time.  Decreasing moves sdtime plots to lower time
-  pdc_plane_time_zero = 120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0
-  pdc_chamber_planes = 1,1,1,1,1,1,2,2,2,2,2,2  ;  Chamber # for each plane
-
-
-; pdc_1_zpos = -14.5*2.54
-  pdc_1_zpos = 0    ; Don't try to project to scintillators
-
-; Use geometry of SOS chambers for now
-  pdc_zpos   = pdc_1_zpos - 1.5875
-               pdc_1_zpos - 0.9525
-               pdc_1_zpos - 0.3175
-               pdc_1_zpos + 0.3175
-               pdc_1_zpos + 0.9525
-               pdc_1_zpos + 1.5875
-	       pdc_1_zpos - 1.5875	  
-               pdc_1_zpos - 0.9525
-               pdc_1_zpos - 0.3175
-               pdc_1_zpos + 0.3175
-               pdc_1_zpos + 0.9525
-               pdc_1_zpos + 1.5875
-
-; Angle alpha of wires in wire chamber planes
-  pdc_roll = 0.0 ; SOS chambers had roll as installed
-  pdc_alpha_angle = (30-pdc_roll)*raddeg
-  		    (30-pdc_roll)*raddeg
-  		    (90-pdc_roll)*raddeg
-  		    (90-pdc_roll)*raddeg
-  		    (150-pdc_roll)*raddeg
-  		    (150-pdc_roll)*raddeg
-		    (30-pdc_roll)*raddeg
-  		    (30-pdc_roll)*raddeg
-  		    (90-pdc_roll)*raddeg
-  		    (90-pdc_roll)*raddeg
-  		    (150-pdc_roll)*raddeg
-  		    (150-pdc_roll)*raddeg
-  pdc_beta = 0.0
-  pdc_beta_angle = pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-		   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-
-  pdc_gamma = 0.0
-  pdc_gamma_angle = pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-		    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-  pdc_pitch = 1.0000
-              1.0000
-              1.0000
-              1.0000
-              1.0000
-              1.0000
-	      1.0000	      
-              1.0000
-              1.0000
-              1.0000
-              1.0000
-              1.0000
-; Number of wires per plane
-      pdc_nrwire = 107
-                   107
-                   79
-                   79
-                   107
-                   107
-		   107
-                   107
-                   79
-                   79
-                   107
-                   107
-
-; Tracking parameters
-
-  pmax_pr_hits = 25, 25
-  pmin_hit = 5, 5
-  pmin_combos = 6, 6
-  pspace_point_criterion = 1.2, 1.2
-
-; The following four criteria are applied to the stub fit results at the
-; focal plane position to link stubs to tracks
-  pntracks_max_fp = 10
-  pxt_track_criterion = 100.0
-  pyt_track_criterion = 2.0
-  pxpt_track_criterion = 1.0
-  pypt_track_criterion = 1.0
-
-  psingle_stub = 1 ; make a track of all single stubs
-                   ; normally 0
-  pSmallAngleApprox = 0 ; No small angle approximation for
-                        ; cosmic ray tests
-
-; Compatibility parameters.  Should be zero to precisely mimic ENGINE
-; behavior, but one for more correct behavior
-pdc_fix_lr = 1 ; Let hit have different L/R assignment for different space point
-pdc_fix_propcorr = 1 ; do propagation along wire each time hit appeears
-                     ; in a space point
-
-; Debugging flags - not all these implemented in hcana
-pdebuglinkstubs = 0 ; Dump link stub results
-pdebugprintrawdc = 0 ; Dump PDC_RAW_DC bank
-pdebugprintdecodeddc = 0 ; Dump PDC_DECODED_DC bank
-pdebugflagpr = 0 ; Dump intermediate pattern recognition results
-pdebugflagstubs= 0 ; Dump stub fit results
-pdebugtrackprint = 0 ; Dump focal plane track fit results
-pdebugstubchisq = 0; Dump chi2 of left-right fits
-
-; Drift map parameters
-pdriftbins = 138
-; Number of 1st bin in table
-pdrift1stbin = -24
-; Bin size in ns
-pdriftbinsz = 2
-; Drift maps simply copied from the SOS chambers
-pwc1u1fract=0.0002,0.0005,0.0009,0.0011,0.0015,0.0018,0.0022,0.0027
-0.0029,0.0033,0.0038,0.0044,0.0048,0.0051,0.0057,0.0070,0.0090,0.0121
-0.0167,0.0217,0.0282,0.0371,0.0467,0.0582,0.0723,0.0873,0.1038,0.1211
-0.1409,0.1609,0.1826,0.2060,0.2302,0.2542,0.2796,0.3043,0.3294,0.3555
-0.3819,0.4085,0.4343,0.4618,0.4890,0.5140,0.5384,0.5635,0.5880,0.6100
-0.6311,0.6522,0.6722,0.6928,0.7120,0.7316,0.7495,0.7684,0.7853,0.8026
-0.8191,0.8334,0.8491,0.8629,0.8771,0.8888,0.8994,0.9089,0.9170,0.9242
-0.9308,0.9364,0.9411,0.9457,0.9496,0.9538,0.9571,0.9602,0.9630,0.9654
-0.9679,0.9698,0.9718,0.9735,0.9750,0.9765,0.9778,0.9791,0.9804,0.9815
-0.9825,0.9833,0.9844,0.9851,0.9855,0.9862,0.9870,0.9874,0.9877,0.9883
-0.9889,0.9893,0.9895,0.9898,0.9901,0.9904,0.9910,0.9918,0.9923,0.9927
-0.9930,0.9935,0.9937,0.9941,0.9943,0.9947,0.9949,0.9952,0.9957,0.9962
-0.9964,0.9966,0.9970,0.9973,0.9975,0.9977,0.9979,0.9982,0.9986,0.9988
-0.9990,0.9991,0.9994,0.9995,0.9998,0.9999,1.0000,1.0000,1.0000,1.0000
-pwc1x1fract=0.0004,0.0006,0.0008,0.0010,0.0012,0.0015,0.0017,0.0021
-0.0025,0.0028,0.0031,0.0033,0.0036,0.0041,0.0045,0.0051,0.0060,0.0075
-0.0104,0.0138,0.0191,0.0265,0.0356,0.0463,0.0596,0.0743,0.0916,0.1114
-0.1316,0.1533,0.1757,0.1988,0.2209,0.2455,0.2689,0.2945,0.3196,0.3437
-0.3697,0.3950,0.4196,0.4448,0.4702,0.4953,0.5186,0.5416,0.5650,0.5877
-0.6099,0.6316,0.6519,0.6719,0.6909,0.7099,0.7277,0.7463,0.7645,0.7821
-0.7979,0.8154,0.8320,0.8477,0.8612,0.8740,0.8865,0.8973,0.9077,0.9161
-0.9234,0.9301,0.9351,0.9406,0.9454,0.9497,0.9531,0.9570,0.9605,0.9631
-0.9660,0.9690,0.9713,0.9728,0.9748,0.9762,0.9775,0.9786,0.9800,0.9807
-0.9818,0.9827,0.9833,0.9843,0.9849,0.9857,0.9861,0.9866,0.9871,0.9877
-0.9883,0.9887,0.9891,0.9895,0.9898,0.9901,0.9907,0.9913,0.9916,0.9918
-0.9921,0.9925,0.9929,0.9931,0.9935,0.9940,0.9944,0.9946,0.9949,0.9952
-0.9956,0.9960,0.9966,0.9968,0.9970,0.9972,0.9974,0.9976,0.9979,0.9980
-0.9984,0.9985,0.9988,0.9990,0.9991,0.9993,0.9996,0.9998,0.9999,1.0000
-pwc1v1fract=0.0002,0.0006,0.0008,0.0011,0.0013,0.0016,0.0019,0.0020
-0.0022,0.0025,0.0030,0.0035,0.0038,0.0042,0.0049,0.0057,0.0076,0.0103
-0.0149,0.0200,0.0273,0.0353,0.0455,0.0574,0.0719,0.0865,0.1045,0.1224
-0.1416,0.1630,0.1844,0.2074,0.2317,0.2555,0.2807,0.3046,0.3298,0.3553
-0.3826,0.4075,0.4316,0.4563,0.4823,0.5065,0.5315,0.5554,0.5781,0.6014
-0.6235,0.6434,0.6643,0.6853,0.7050,0.7238,0.7415,0.7602,0.7787,0.7975
-0.8152,0.8307,0.8456,0.8595,0.8723,0.8851,0.8957,0.9043,0.9126,0.9205
-0.9276,0.9330,0.9383,0.9437,0.9484,0.9521,0.9553,0.9582,0.9607,0.9634
-0.9657,0.9676,0.9701,0.9722,0.9738,0.9755,0.9767,0.9781,0.9794,0.9804
-0.9814,0.9825,0.9835,0.9842,0.9847,0.9853,0.9861,0.9866,0.9871,0.9878
-0.9882,0.9888,0.9891,0.9897,0.9900,0.9903,0.9909,0.9910,0.9917,0.9919
-0.9924,0.9929,0.9937,0.9939,0.9944,0.9948,0.9954,0.9956,0.9961,0.9966
-0.9968,0.9972,0.9974,0.9978,0.9980,0.9981,0.9984,0.9986,0.9989,0.9991
-0.9995,0.9996,0.9998,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-pwc1u2fract=0.0003,0.0004,0.0008,0.0011,0.0015,0.0018,0.0021,0.0024
-0.0027,0.0030,0.0033,0.0037,0.0039,0.0043,0.0046,0.0049,0.0059,0.0073
-0.0094,0.0129,0.0184,0.0267,0.0352,0.0446,0.0563,0.0707,0.0863,0.1030
-0.1206,0.1411,0.1629,0.1845,0.2087,0.2325,0.2578,0.2837,0.3091,0.3357
-0.3606,0.3867,0.4119,0.4362,0.4608,0.4857,0.5099,0.5349,0.5587,0.5814
-0.6047,0.6260,0.6480,0.6685,0.6892,0.7099,0.7282,0.7456,0.7643,0.7812
-0.7988,0.8141,0.8309,0.8454,0.8616,0.8738,0.8847,0.8955,0.9049,0.9133
-0.9199,0.9274,0.9341,0.9399,0.9445,0.9489,0.9529,0.9561,0.9593,0.9620
-0.9645,0.9667,0.9689,0.9701,0.9720,0.9740,0.9756,0.9771,0.9785,0.9796
-0.9808,0.9816,0.9823,0.9832,0.9839,0.9846,0.9854,0.9860,0.9867,0.9874
-0.9876,0.9881,0.9885,0.9889,0.9895,0.9900,0.9902,0.9907,0.9910,0.9916
-0.9919,0.9923,0.9927,0.9930,0.9934,0.9937,0.9942,0.9945,0.9949,0.9953
-0.9957,0.9962,0.9965,0.9968,0.9971,0.9973,0.9976,0.9979,0.9981,0.9984
-0.9986,0.9988,0.9989,0.9993,0.9995,0.9998,0.9999,0.9999,1.0000,1.0000
-pwc1x2fract=0.0002,0.0005,0.0008,0.0011,0.0014,0.0017,0.0021,0.0025
-0.0027,0.0031,0.0032,0.0034,0.0040,0.0045,0.0052,0.0065,0.0083,0.0112
-0.0150,0.0200,0.0264,0.0341,0.0435,0.0560,0.0701,0.0862,0.1027,0.1210
-0.1417,0.1628,0.1833,0.2069,0.2301,0.2547,0.2799,0.3062,0.3314,0.3582
-0.3860,0.4141,0.4390,0.4656,0.4903,0.5161,0.5410,0.5649,0.5874,0.6090
-0.6298,0.6507,0.6721,0.6923,0.7117,0.7312,0.7510,0.7706,0.7881,0.8052
-0.8204,0.8360,0.8525,0.8666,0.8793,0.8906,0.9019,0.9103,0.9194,0.9274
-0.9340,0.9397,0.9442,0.9483,0.9523,0.9557,0.9596,0.9625,0.9653,0.9678
-0.9698,0.9718,0.9732,0.9751,0.9768,0.9782,0.9793,0.9804,0.9813,0.9821
-0.9828,0.9834,0.9842,0.9848,0.9852,0.9857,0.9861,0.9864,0.9872,0.9877
-0.9880,0.9886,0.9889,0.9894,0.9898,0.9903,0.9908,0.9915,0.9921,0.9924
-0.9927,0.9930,0.9935,0.9939,0.9943,0.9945,0.9949,0.9952,0.9957,0.9960
-0.9963,0.9965,0.9967,0.9972,0.9975,0.9979,0.9980,0.9985,0.9987,0.9988
-0.9990,0.9991,0.9992,0.9995,0.9997,1.0000,1.0000,1.0000,1.0000,1.0000
-pwc1v2fract=0.0004,0.0006,0.0008,0.0012,0.0013,0.0016,0.0018,0.0021
-0.0024,0.0027,0.0029,0.0032,0.0036,0.0039,0.0043,0.0049,0.0063,0.0080
-0.0113,0.0155,0.0218,0.0300,0.0397,0.0508,0.0645,0.0793,0.0949,0.1135
-0.1343,0.1560,0.1786,0.2019,0.2250,0.2498,0.2756,0.3011,0.3270,0.3526
-0.3778,0.4042,0.4299,0.4570,0.4821,0.5077,0.5311,0.5540,0.5784,0.6010
-0.6219,0.6429,0.6633,0.6830,0.7023,0.7214,0.7403,0.7590,0.7786,0.7948
-0.8118,0.8288,0.8444,0.8587,0.8725,0.8842,0.8946,0.9044,0.9136,0.9208
-0.9264,0.9323,0.9377,0.9428,0.9472,0.9506,0.9541,0.9576,0.9602,0.9635
-0.9656,0.9675,0.9695,0.9715,0.9732,0.9751,0.9768,0.9777,0.9789,0.9802
-0.9809,0.9819,0.9828,0.9835,0.9841,0.9850,0.9858,0.9863,0.9866,0.9870
-0.9875,0.9880,0.9884,0.9888,0.9894,0.9899,0.9901,0.9905,0.9909,0.9912
-0.9917,0.9919,0.9922,0.9926,0.9931,0.9936,0.9941,0.9945,0.9951,0.9954
-0.9959,0.9962,0.9964,0.9967,0.9969,0.9971,0.9975,0.9978,0.9980,0.9983
-0.9986,0.9988,0.9991,0.9995,0.9998,0.9999,0.9999,0.9999,1.0000,1.0000
-
-pwc2u1fract=0.0002,0.0005,0.0009,0.0011,0.0015,0.0018,0.0022,0.0027
-0.0029,0.0033,0.0038,0.0044,0.0048,0.0051,0.0057,0.0070,0.0090,0.0121
-0.0167,0.0217,0.0282,0.0371,0.0467,0.0582,0.0723,0.0873,0.1038,0.1211
-0.1409,0.1609,0.1826,0.2060,0.2302,0.2542,0.2796,0.3043,0.3294,0.3555
-0.3819,0.4085,0.4343,0.4618,0.4890,0.5140,0.5384,0.5635,0.5880,0.6100
-0.6311,0.6522,0.6722,0.6928,0.7120,0.7316,0.7495,0.7684,0.7853,0.8026
-0.8191,0.8334,0.8491,0.8629,0.8771,0.8888,0.8994,0.9089,0.9170,0.9242
-0.9308,0.9364,0.9411,0.9457,0.9496,0.9538,0.9571,0.9602,0.9630,0.9654
-0.9679,0.9698,0.9718,0.9735,0.9750,0.9765,0.9778,0.9791,0.9804,0.9815
-0.9825,0.9833,0.9844,0.9851,0.9855,0.9862,0.9870,0.9874,0.9877,0.9883
-0.9889,0.9893,0.9895,0.9898,0.9901,0.9904,0.9910,0.9918,0.9923,0.9927
-0.9930,0.9935,0.9937,0.9941,0.9943,0.9947,0.9949,0.9952,0.9957,0.9962
-0.9964,0.9966,0.9970,0.9973,0.9975,0.9977,0.9979,0.9982,0.9986,0.9988
-0.9990,0.9991,0.9994,0.9995,0.9998,0.9999,1.0000,1.0000,1.0000,1.0000
-pwc2x1fract=0.0004,0.0006,0.0008,0.0010,0.0012,0.0015,0.0017,0.0021
-0.0025,0.0028,0.0031,0.0033,0.0036,0.0041,0.0045,0.0051,0.0060,0.0075
-0.0104,0.0138,0.0191,0.0265,0.0356,0.0463,0.0596,0.0743,0.0916,0.1114
-0.1316,0.1533,0.1757,0.1988,0.2209,0.2455,0.2689,0.2945,0.3196,0.3437
-0.3697,0.3950,0.4196,0.4448,0.4702,0.4953,0.5186,0.5416,0.5650,0.5877
-0.6099,0.6316,0.6519,0.6719,0.6909,0.7099,0.7277,0.7463,0.7645,0.7821
-0.7979,0.8154,0.8320,0.8477,0.8612,0.8740,0.8865,0.8973,0.9077,0.9161
-0.9234,0.9301,0.9351,0.9406,0.9454,0.9497,0.9531,0.9570,0.9605,0.9631
-0.9660,0.9690,0.9713,0.9728,0.9748,0.9762,0.9775,0.9786,0.9800,0.9807
-0.9818,0.9827,0.9833,0.9843,0.9849,0.9857,0.9861,0.9866,0.9871,0.9877
-0.9883,0.9887,0.9891,0.9895,0.9898,0.9901,0.9907,0.9913,0.9916,0.9918
-0.9921,0.9925,0.9929,0.9931,0.9935,0.9940,0.9944,0.9946,0.9949,0.9952
-0.9956,0.9960,0.9966,0.9968,0.9970,0.9972,0.9974,0.9976,0.9979,0.9980
-0.9984,0.9985,0.9988,0.9990,0.9991,0.9993,0.9996,0.9998,0.9999,1.0000
-pwc2v1fract=0.0002,0.0006,0.0008,0.0011,0.0013,0.0016,0.0019,0.0020
-0.0022,0.0025,0.0030,0.0035,0.0038,0.0042,0.0049,0.0057,0.0076,0.0103
-0.0149,0.0200,0.0273,0.0353,0.0455,0.0574,0.0719,0.0865,0.1045,0.1224
-0.1416,0.1630,0.1844,0.2074,0.2317,0.2555,0.2807,0.3046,0.3298,0.3553
-0.3826,0.4075,0.4316,0.4563,0.4823,0.5065,0.5315,0.5554,0.5781,0.6014
-0.6235,0.6434,0.6643,0.6853,0.7050,0.7238,0.7415,0.7602,0.7787,0.7975
-0.8152,0.8307,0.8456,0.8595,0.8723,0.8851,0.8957,0.9043,0.9126,0.9205
-0.9276,0.9330,0.9383,0.9437,0.9484,0.9521,0.9553,0.9582,0.9607,0.9634
-0.9657,0.9676,0.9701,0.9722,0.9738,0.9755,0.9767,0.9781,0.9794,0.9804
-0.9814,0.9825,0.9835,0.9842,0.9847,0.9853,0.9861,0.9866,0.9871,0.9878
-0.9882,0.9888,0.9891,0.9897,0.9900,0.9903,0.9909,0.9910,0.9917,0.9919
-0.9924,0.9929,0.9937,0.9939,0.9944,0.9948,0.9954,0.9956,0.9961,0.9966
-0.9968,0.9972,0.9974,0.9978,0.9980,0.9981,0.9984,0.9986,0.9989,0.9991
-0.9995,0.9996,0.9998,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-pwc2u2fract=0.0003,0.0004,0.0008,0.0011,0.0015,0.0018,0.0021,0.0024
-0.0027,0.0030,0.0033,0.0037,0.0039,0.0043,0.0046,0.0049,0.0059,0.0073
-0.0094,0.0129,0.0184,0.0267,0.0352,0.0446,0.0563,0.0707,0.0863,0.1030
-0.1206,0.1411,0.1629,0.1845,0.2087,0.2325,0.2578,0.2837,0.3091,0.3357
-0.3606,0.3867,0.4119,0.4362,0.4608,0.4857,0.5099,0.5349,0.5587,0.5814
-0.6047,0.6260,0.6480,0.6685,0.6892,0.7099,0.7282,0.7456,0.7643,0.7812
-0.7988,0.8141,0.8309,0.8454,0.8616,0.8738,0.8847,0.8955,0.9049,0.9133
-0.9199,0.9274,0.9341,0.9399,0.9445,0.9489,0.9529,0.9561,0.9593,0.9620
-0.9645,0.9667,0.9689,0.9701,0.9720,0.9740,0.9756,0.9771,0.9785,0.9796
-0.9808,0.9816,0.9823,0.9832,0.9839,0.9846,0.9854,0.9860,0.9867,0.9874
-0.9876,0.9881,0.9885,0.9889,0.9895,0.9900,0.9902,0.9907,0.9910,0.9916
-0.9919,0.9923,0.9927,0.9930,0.9934,0.9937,0.9942,0.9945,0.9949,0.9953
-0.9957,0.9962,0.9965,0.9968,0.9971,0.9973,0.9976,0.9979,0.9981,0.9984
-0.9986,0.9988,0.9989,0.9993,0.9995,0.9998,0.9999,0.9999,1.0000,1.0000
-pwc2x2fract=0.0002,0.0005,0.0008,0.0011,0.0014,0.0017,0.0021,0.0025
-0.0027,0.0031,0.0032,0.0034,0.0040,0.0045,0.0052,0.0065,0.0083,0.0112
-0.0150,0.0200,0.0264,0.0341,0.0435,0.0560,0.0701,0.0862,0.1027,0.1210
-0.1417,0.1628,0.1833,0.2069,0.2301,0.2547,0.2799,0.3062,0.3314,0.3582
-0.3860,0.4141,0.4390,0.4656,0.4903,0.5161,0.5410,0.5649,0.5874,0.6090
-0.6298,0.6507,0.6721,0.6923,0.7117,0.7312,0.7510,0.7706,0.7881,0.8052
-0.8204,0.8360,0.8525,0.8666,0.8793,0.8906,0.9019,0.9103,0.9194,0.9274
-0.9340,0.9397,0.9442,0.9483,0.9523,0.9557,0.9596,0.9625,0.9653,0.9678
-0.9698,0.9718,0.9732,0.9751,0.9768,0.9782,0.9793,0.9804,0.9813,0.9821
-0.9828,0.9834,0.9842,0.9848,0.9852,0.9857,0.9861,0.9864,0.9872,0.9877
-0.9880,0.9886,0.9889,0.9894,0.9898,0.9903,0.9908,0.9915,0.9921,0.9924
-0.9927,0.9930,0.9935,0.9939,0.9943,0.9945,0.9949,0.9952,0.9957,0.9960
-0.9963,0.9965,0.9967,0.9972,0.9975,0.9979,0.9980,0.9985,0.9987,0.9988
-0.9990,0.9991,0.9992,0.9995,0.9997,1.0000,1.0000,1.0000,1.0000,1.0000
-pwc2v2fract=0.0004,0.0006,0.0008,0.0012,0.0013,0.0016,0.0018,0.0021
-0.0024,0.0027,0.0029,0.0032,0.0036,0.0039,0.0043,0.0049,0.0063,0.0080
-0.0113,0.0155,0.0218,0.0300,0.0397,0.0508,0.0645,0.0793,0.0949,0.1135
-0.1343,0.1560,0.1786,0.2019,0.2250,0.2498,0.2756,0.3011,0.3270,0.3526
-0.3778,0.4042,0.4299,0.4570,0.4821,0.5077,0.5311,0.5540,0.5784,0.6010
-0.6219,0.6429,0.6633,0.6830,0.7023,0.7214,0.7403,0.7590,0.7786,0.7948
-0.8118,0.8288,0.8444,0.8587,0.8725,0.8842,0.8946,0.9044,0.9136,0.9208
-0.9264,0.9323,0.9377,0.9428,0.9472,0.9506,0.9541,0.9576,0.9602,0.9635
-0.9656,0.9675,0.9695,0.9715,0.9732,0.9751,0.9768,0.9777,0.9789,0.9802
-0.9809,0.9819,0.9828,0.9835,0.9841,0.9850,0.9858,0.9863,0.9866,0.9870
-0.9875,0.9880,0.9884,0.9888,0.9894,0.9899,0.9901,0.9905,0.9909,0.9912
-0.9917,0.9919,0.9922,0.9926,0.9931,0.9936,0.9941,0.9945,0.9951,0.9954
-0.9959,0.9962,0.9964,0.9967,0.9969,0.9971,0.9975,0.9978,0.9980,0.9983
-0.9986,0.9988,0.9991,0.9995,0.9998,0.9999,0.9999,0.9999,1.0000,1.0000
-
-;
-; Not sure why this is here
-; Makes the analyzer happy
-pdc_2_zpos = 0, 0
\ No newline at end of file
diff --git a/PARAM/SHMS/DC/pdc.pos b/PARAM/SHMS/DC/pdc.pos
index 99e5299a1203afc50cf2bfca703981bda56d8fda..ee065a50eb24a900bdb77a423a37bf925e557a9a 100644
--- a/PARAM/SHMS/DC/pdc.pos
+++ b/PARAM/SHMS/DC/pdc.pos
@@ -1,134 +1,92 @@
-; Number of planes installed in SHMS detector setup
-  pdc_num_planes = 12
-; Number of chambers installed in SHMS detector setup
-  pdc_num_chambers = 2
+; CHAMBER POSITION PARAMETERS
 
+; x, y and z position of center for each wire chamber in cm.
+; From survey C1771.
+pdc_xcenter = -0.036, 0.008  ; TODO - final survey
+pdc_ycenter =  0.019, 0.013  ; TODO - final survey
+pdc_1_zpos = -40 - 0.656  ; TODO - final survey
+pdc_2_zpos =  40 - 0.668  ; TODO - final survey
 
-; Z positions of various planes in SHMS chambers
-; Use geometry of previous SOS chambers for now
+; Roll, pitch and yaw for each wire chamber in degrees.
+; From survey C1771.
+pdc_1_roll = 180.0  ; TODO - survey
+pdc_2_roll = 180.0  ; TODO - survey
+pdc_1_pitch = -0.006  ; TODO - final survey
+pdc_2_pitch =  0.001  ; TODO - final survey
+pdc_1_yaw = -0.006  ; TODO - final survey
+pdc_2_yaw = -0.035  ; TODO - final survey
 
-; pdc_1_zpos = -14.5*2.54
-  pdc_1_zpos = 0 ; Chamber 1, do not try to project to scintillators
-  pdc_2_zpos = 0, 0 ; Chamber 2
 
-; Use geometry of SOS chambers for now
-  pdc_zpos   = pdc_1_zpos - 1.5875
-               pdc_1_zpos - 0.9525
-               pdc_1_zpos - 0.3175
-               pdc_1_zpos + 0.3175
-               pdc_1_zpos + 0.9525
-               pdc_1_zpos + 1.5875
-	       pdc_1_zpos - 1.5875	  
-               pdc_1_zpos - 0.9525
-               pdc_1_zpos - 0.3175
-               pdc_1_zpos + 0.3175
-               pdc_1_zpos + 0.9525
-               pdc_1_zpos + 1.5875
+; PLANE POSITION PARAMETERS
 
-; Angle alpha of wires in wire chamber planes
-  pdc_roll = 0.0 ; SOS chambers had roll as installed
-  pdc_alpha_angle = (30-pdc_roll)*raddeg
-  		    (30-pdc_roll)*raddeg
-  		    (90-pdc_roll)*raddeg
-  		    (90-pdc_roll)*raddeg
-  		    (150-pdc_roll)*raddeg
-  		    (150-pdc_roll)*raddeg
-		    (30-pdc_roll)*raddeg
-  		    (30-pdc_roll)*raddeg
-  		    (90-pdc_roll)*raddeg
-  		    (90-pdc_roll)*raddeg
-  		    (150-pdc_roll)*raddeg
-  		    (150-pdc_roll)*raddeg
+; Wire number of center of wire chamber for each plane.
+; From technical drawings.
+pdc_central_wire = 54.25, 53.75, 40.25, 39.75, 54.25, 53.75
+                   53.75, 54.25, 39.75, 40.25, 53.75, 54.25
 
-  pdc_beta = 0.0
-  pdc_beta_angle = pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-		   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
-                   pdc_beta
+; Distance between wires for each plane in cm.
+; From technical drawings.
+pdc_pitch = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0
+            1.0, 1.0, 1.0, 1.0, 1.0, 1.0
 
-  pdc_gamma = 0.0
-  pdc_gamma_angle = pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-		    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-                    pdc_gamma
-  pdc_pitch = 1.0000
-              1.0000
-              1.0000
-              1.0000
-              1.0000
-              1.0000
-	      1.0000	      
-              1.0000
-              1.0000
-              1.0000
-              1.0000
-              1.0000
-; Number of wires per plane
-      pdc_nrwire = 107
-                   107
-                   79
-                   79
-                   107
-                   107
-		   107
-                   107
-                   79
-                   79
-                   107
-                   107
+; Order in which wires are counted in each plane.
+pdc_wire_counting = 0, 0, 0, 0, 0, 0
+                    0, 0, 0, 0, 0, 0
 
-; X,Y position of center of wire chamber
-  pdc_xcenter = 0.0, 0.0
-  pdc_ycenter = 0.0, 0.0
+; z position in cm of each plane measured from focal plane.
+; From technical drawings.
+pdc_zpos = pdc_1_zpos - 0.68701*cminch
+           pdc_1_zpos - 0.43701*cminch
+           pdc_1_zpos - 0.18701*cminch
+           pdc_1_zpos + 0.18701*cminch
+           pdc_1_zpos + 0.43701*cminch
+           pdc_1_zpos + 0.68701*cminch
+           pdc_2_zpos - 0.68701*cminch
+           pdc_2_zpos - 0.43701*cminch
+           pdc_2_zpos - 0.18701*cminch
+           pdc_2_zpos + 0.18701*cminch
+           pdc_2_zpos + 0.43701*cminch
+           pdc_2_zpos + 0.68701*cminch
 
-; Wire number of center of wire chamber
-; Note the convention : x : low number =  -x , u,v : low number = "-x"
-; x1 and x2, u1 and u2, v1 and v2 are offset by half a cell length
-; assume 1st wire of 1st dc of a set is closest to edge where counting starts
-; (These taken from SOS.  Will be different for SHMS
-      pdc_central_wire = 54.25
-                         53.75
-                         40.25
-                         40.75
-                         54.25
-                         53.75 
-			 53.75
-			 54.25
-			 40.75
-			 40.25
-			 53.75
-			 54.25
+; Alpha angle of wires for each plane in radians.
+; From technical drawings.
+pdc_alpha_angle = ( 30 + pdc_1_roll)*raddeg
+                  ( 30 + pdc_1_roll)*raddeg
+                  ( 90 + pdc_1_roll)*raddeg
+                  ( 90 + pdc_1_roll)*raddeg
+                  (150 + pdc_1_roll)*raddeg
+                  (150 + pdc_1_roll)*raddeg
+                  ( 30 + pdc_2_roll)*raddeg
+                  ( 30 + pdc_2_roll)*raddeg
+                  ( 90 + pdc_2_roll)*raddeg
+                  ( 90 + pdc_2_roll)*raddeg
+                  (150 + pdc_2_roll)*raddeg
+                  (150 + pdc_2_roll)*raddeg
 
-;  Chamber # for each plane
-pdc_chamber_planes = 1,1,1,1,1,1,2,2,2,2,2,2  
+; Beta angle of wires for each plane in radians.
+pdc_beta_angle = pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_1_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
+                 pdc_2_pitch*raddeg
 
-; Order in which wires are readout
-  pdc_wire_counting = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
-; If pdc_wire_counting(plane) = 0
-;  the wire center is at (wire - pdc_central_wire) * pitch
-; If pdc_wire_counting(plane) = 1
-;  the wire center is at ( pdc_nrwire + 1 - wire - pdc_central_wire) * pitch
-
-; The velocity correction is the distance from the center of the wire divided
-; by the velocity of propagation times pdc_drifttime_sign(pln).  +/-1
-; for disc. card at +/- coord. (i.e. top = -x direction, so top readout is +1)
-;
-; These are guesses taken from the SOS Chambers
-;
-  pdc_drifttime_sign = 1, -1, -1, 1, 1, -1,  1, -1, -1, 1, 1, -1
\ No newline at end of file
+; Gamma angle of wires for each plane in radians
+pdc_gamma_angle = pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_1_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
+                  pdc_2_yaw*raddeg
diff --git a/PARAM/SHMS/DC/pdc_test_stand.param b/PARAM/SHMS/DC/pdc_test_stand.param
new file mode 100644
index 0000000000000000000000000000000000000000..be39f3af8de4d00f3f2e4d38e03e8d3a7d0ee240
--- /dev/null
+++ b/PARAM/SHMS/DC/pdc_test_stand.param
@@ -0,0 +1,5 @@
+; TEST-STAND PARAMETERS
+; Custom parameter file which should be loaded when aiming to analyze HMS DC
+; data with no tracking.
+
+psel_using_scin = 0
diff --git a/PARAM/SHMS/DC/pdc_tracking.param b/PARAM/SHMS/DC/pdc_tracking.param
new file mode 100644
index 0000000000000000000000000000000000000000..13f409cba60ce200f3f5799d55eaf5b7a050bb60
--- /dev/null
+++ b/PARAM/SHMS/DC/pdc_tracking.param
@@ -0,0 +1,27 @@
+; TRACKING PARAMETERS
+
+; Sigma of wire chamber resolution for each plane.
+pdc_sigma = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02  ; TODO - SOS values for now
+            0.02, 0.02, 0.02, 0.02, 0.02, 0.02
+
+; TDC window limits for each plane.
+pdc_tdc_min_win = -55000, -55000, -55000, -55000, -55000, -55000  ; TODO - wide limits for now
+                  -55000, -55000, -55000, -55000, -55000, -55000
+pdc_tdc_max_win = 55000, 55000, 55000, 55000, 55000, 55000  ; TODO - wide limits for now
+                  55000, 55000, 55000, 55000, 55000, 55000
+
+; Conversion factor from TDC clicks to ns.
+pdc_tdc_time_per_channel = -0.10
+
+; Zero time correction for each plane in ns that is added to TDC time.
+pdc_plane_time_zero = 1283.82, 1283.30, 1286.73, 1283.56, 1282.57, 1284.30
+                      1283.94, 1283.34, 1286.95, 1286.46, 1286.37, 1284.47
+
+; For wire velocity corrections.
+pdc_wire_velocity = 13.0  ; TODO
+pdc_central_time = 0, 0, 0, 0, 0, 0  ; TODO - no correction for now
+                   0, 0, 0, 0, 0, 0
+pdc_drifttime_sign = 0, 0, 0, 0, 0, 0  ; TODO - no correction for now
+                     0, 0, 0, 0, 0, 0
+pdc_fix_lr = 1
+pdc_fix_propcorr = 1
diff --git a/PARAM/SHMS/DC/pdriftmap.param b/PARAM/SHMS/DC/pdriftmap.param
index d6a16be8bd737052d94cec9f861441a79ae2307c..052b8dcc0fac5b91e57faaff2f36edb98a125de9 100644
--- a/PARAM/SHMS/DC/pdriftmap.param
+++ b/PARAM/SHMS/DC/pdriftmap.param
@@ -1,177 +1,175 @@
-; Lookup table
-; Drift map parameters
+; Lookup Table: RUN 437
+; number of bins in Carlos's time to distance lookup table
 pdriftbins = 138
-; Number of 1st bin in table
-pdrift1stbin = -24
-; Bin size in ns
-pdriftbinsz = 2
-; Drift maps simply copied from the SOS chambers
-pwc1u1fract=0.0002,0.0005,0.0009,0.0011,0.0015,0.0018,0.0022,0.0027
-0.0029,0.0033,0.0038,0.0044,0.0048,0.0051,0.0057,0.0070,0.0090,0.0121
-0.0167,0.0217,0.0282,0.0371,0.0467,0.0582,0.0723,0.0873,0.1038,0.1211
-0.1409,0.1609,0.1826,0.2060,0.2302,0.2542,0.2796,0.3043,0.3294,0.3555
-0.3819,0.4085,0.4343,0.4618,0.4890,0.5140,0.5384,0.5635,0.5880,0.6100
-0.6311,0.6522,0.6722,0.6928,0.7120,0.7316,0.7495,0.7684,0.7853,0.8026
-0.8191,0.8334,0.8491,0.8629,0.8771,0.8888,0.8994,0.9089,0.9170,0.9242
-0.9308,0.9364,0.9411,0.9457,0.9496,0.9538,0.9571,0.9602,0.9630,0.9654
-0.9679,0.9698,0.9718,0.9735,0.9750,0.9765,0.9778,0.9791,0.9804,0.9815
-0.9825,0.9833,0.9844,0.9851,0.9855,0.9862,0.9870,0.9874,0.9877,0.9883
-0.9889,0.9893,0.9895,0.9898,0.9901,0.9904,0.9910,0.9918,0.9923,0.9927
-0.9930,0.9935,0.9937,0.9941,0.9943,0.9947,0.9949,0.9952,0.9957,0.9962
-0.9964,0.9966,0.9970,0.9973,0.9975,0.9977,0.9979,0.9982,0.9986,0.9988
-0.9990,0.9991,0.9994,0.9995,0.9998,0.9999,1.0000,1.0000,1.0000,1.0000
-pwc1x1fract=0.0004,0.0006,0.0008,0.0010,0.0012,0.0015,0.0017,0.0021
-0.0025,0.0028,0.0031,0.0033,0.0036,0.0041,0.0045,0.0051,0.0060,0.0075
-0.0104,0.0138,0.0191,0.0265,0.0356,0.0463,0.0596,0.0743,0.0916,0.1114
-0.1316,0.1533,0.1757,0.1988,0.2209,0.2455,0.2689,0.2945,0.3196,0.3437
-0.3697,0.3950,0.4196,0.4448,0.4702,0.4953,0.5186,0.5416,0.5650,0.5877
-0.6099,0.6316,0.6519,0.6719,0.6909,0.7099,0.7277,0.7463,0.7645,0.7821
-0.7979,0.8154,0.8320,0.8477,0.8612,0.8740,0.8865,0.8973,0.9077,0.9161
-0.9234,0.9301,0.9351,0.9406,0.9454,0.9497,0.9531,0.9570,0.9605,0.9631
-0.9660,0.9690,0.9713,0.9728,0.9748,0.9762,0.9775,0.9786,0.9800,0.9807
-0.9818,0.9827,0.9833,0.9843,0.9849,0.9857,0.9861,0.9866,0.9871,0.9877
-0.9883,0.9887,0.9891,0.9895,0.9898,0.9901,0.9907,0.9913,0.9916,0.9918
-0.9921,0.9925,0.9929,0.9931,0.9935,0.9940,0.9944,0.9946,0.9949,0.9952
-0.9956,0.9960,0.9966,0.9968,0.9970,0.9972,0.9974,0.9976,0.9979,0.9980
-0.9984,0.9985,0.9988,0.9990,0.9991,0.9993,0.9996,0.9998,0.9999,1.0000
-pwc1v1fract=0.0002,0.0006,0.0008,0.0011,0.0013,0.0016,0.0019,0.0020
-0.0022,0.0025,0.0030,0.0035,0.0038,0.0042,0.0049,0.0057,0.0076,0.0103
-0.0149,0.0200,0.0273,0.0353,0.0455,0.0574,0.0719,0.0865,0.1045,0.1224
-0.1416,0.1630,0.1844,0.2074,0.2317,0.2555,0.2807,0.3046,0.3298,0.3553
-0.3826,0.4075,0.4316,0.4563,0.4823,0.5065,0.5315,0.5554,0.5781,0.6014
-0.6235,0.6434,0.6643,0.6853,0.7050,0.7238,0.7415,0.7602,0.7787,0.7975
-0.8152,0.8307,0.8456,0.8595,0.8723,0.8851,0.8957,0.9043,0.9126,0.9205
-0.9276,0.9330,0.9383,0.9437,0.9484,0.9521,0.9553,0.9582,0.9607,0.9634
-0.9657,0.9676,0.9701,0.9722,0.9738,0.9755,0.9767,0.9781,0.9794,0.9804
-0.9814,0.9825,0.9835,0.9842,0.9847,0.9853,0.9861,0.9866,0.9871,0.9878
-0.9882,0.9888,0.9891,0.9897,0.9900,0.9903,0.9909,0.9910,0.9917,0.9919
-0.9924,0.9929,0.9937,0.9939,0.9944,0.9948,0.9954,0.9956,0.9961,0.9966
-0.9968,0.9972,0.9974,0.9978,0.9980,0.9981,0.9984,0.9986,0.9989,0.9991
-0.9995,0.9996,0.9998,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-pwc1u2fract=0.0003,0.0004,0.0008,0.0011,0.0015,0.0018,0.0021,0.0024
-0.0027,0.0030,0.0033,0.0037,0.0039,0.0043,0.0046,0.0049,0.0059,0.0073
-0.0094,0.0129,0.0184,0.0267,0.0352,0.0446,0.0563,0.0707,0.0863,0.1030
-0.1206,0.1411,0.1629,0.1845,0.2087,0.2325,0.2578,0.2837,0.3091,0.3357
-0.3606,0.3867,0.4119,0.4362,0.4608,0.4857,0.5099,0.5349,0.5587,0.5814
-0.6047,0.6260,0.6480,0.6685,0.6892,0.7099,0.7282,0.7456,0.7643,0.7812
-0.7988,0.8141,0.8309,0.8454,0.8616,0.8738,0.8847,0.8955,0.9049,0.9133
-0.9199,0.9274,0.9341,0.9399,0.9445,0.9489,0.9529,0.9561,0.9593,0.9620
-0.9645,0.9667,0.9689,0.9701,0.9720,0.9740,0.9756,0.9771,0.9785,0.9796
-0.9808,0.9816,0.9823,0.9832,0.9839,0.9846,0.9854,0.9860,0.9867,0.9874
-0.9876,0.9881,0.9885,0.9889,0.9895,0.9900,0.9902,0.9907,0.9910,0.9916
-0.9919,0.9923,0.9927,0.9930,0.9934,0.9937,0.9942,0.9945,0.9949,0.9953
-0.9957,0.9962,0.9965,0.9968,0.9971,0.9973,0.9976,0.9979,0.9981,0.9984
-0.9986,0.9988,0.9989,0.9993,0.9995,0.9998,0.9999,0.9999,1.0000,1.0000
-pwc1x2fract=0.0002,0.0005,0.0008,0.0011,0.0014,0.0017,0.0021,0.0025
-0.0027,0.0031,0.0032,0.0034,0.0040,0.0045,0.0052,0.0065,0.0083,0.0112
-0.0150,0.0200,0.0264,0.0341,0.0435,0.0560,0.0701,0.0862,0.1027,0.1210
-0.1417,0.1628,0.1833,0.2069,0.2301,0.2547,0.2799,0.3062,0.3314,0.3582
-0.3860,0.4141,0.4390,0.4656,0.4903,0.5161,0.5410,0.5649,0.5874,0.6090
-0.6298,0.6507,0.6721,0.6923,0.7117,0.7312,0.7510,0.7706,0.7881,0.8052
-0.8204,0.8360,0.8525,0.8666,0.8793,0.8906,0.9019,0.9103,0.9194,0.9274
-0.9340,0.9397,0.9442,0.9483,0.9523,0.9557,0.9596,0.9625,0.9653,0.9678
-0.9698,0.9718,0.9732,0.9751,0.9768,0.9782,0.9793,0.9804,0.9813,0.9821
-0.9828,0.9834,0.9842,0.9848,0.9852,0.9857,0.9861,0.9864,0.9872,0.9877
-0.9880,0.9886,0.9889,0.9894,0.9898,0.9903,0.9908,0.9915,0.9921,0.9924
-0.9927,0.9930,0.9935,0.9939,0.9943,0.9945,0.9949,0.9952,0.9957,0.9960
-0.9963,0.9965,0.9967,0.9972,0.9975,0.9979,0.9980,0.9985,0.9987,0.9988
-0.9990,0.9991,0.9992,0.9995,0.9997,1.0000,1.0000,1.0000,1.0000,1.0000
-pwc1v2fract=0.0004,0.0006,0.0008,0.0012,0.0013,0.0016,0.0018,0.0021
-0.0024,0.0027,0.0029,0.0032,0.0036,0.0039,0.0043,0.0049,0.0063,0.0080
-0.0113,0.0155,0.0218,0.0300,0.0397,0.0508,0.0645,0.0793,0.0949,0.1135
-0.1343,0.1560,0.1786,0.2019,0.2250,0.2498,0.2756,0.3011,0.3270,0.3526
-0.3778,0.4042,0.4299,0.4570,0.4821,0.5077,0.5311,0.5540,0.5784,0.6010
-0.6219,0.6429,0.6633,0.6830,0.7023,0.7214,0.7403,0.7590,0.7786,0.7948
-0.8118,0.8288,0.8444,0.8587,0.8725,0.8842,0.8946,0.9044,0.9136,0.9208
-0.9264,0.9323,0.9377,0.9428,0.9472,0.9506,0.9541,0.9576,0.9602,0.9635
-0.9656,0.9675,0.9695,0.9715,0.9732,0.9751,0.9768,0.9777,0.9789,0.9802
-0.9809,0.9819,0.9828,0.9835,0.9841,0.9850,0.9858,0.9863,0.9866,0.9870
-0.9875,0.9880,0.9884,0.9888,0.9894,0.9899,0.9901,0.9905,0.9909,0.9912
-0.9917,0.9919,0.9922,0.9926,0.9931,0.9936,0.9941,0.9945,0.9951,0.9954
-0.9959,0.9962,0.9964,0.9967,0.9969,0.9971,0.9975,0.9978,0.9980,0.9983
-0.9986,0.9988,0.9991,0.9995,0.9998,0.9999,0.9999,0.9999,1.0000,1.0000
-
-pwc2u1fract=0.0002,0.0005,0.0009,0.0011,0.0015,0.0018,0.0022,0.0027
-0.0029,0.0033,0.0038,0.0044,0.0048,0.0051,0.0057,0.0070,0.0090,0.0121
-0.0167,0.0217,0.0282,0.0371,0.0467,0.0582,0.0723,0.0873,0.1038,0.1211
-0.1409,0.1609,0.1826,0.2060,0.2302,0.2542,0.2796,0.3043,0.3294,0.3555
-0.3819,0.4085,0.4343,0.4618,0.4890,0.5140,0.5384,0.5635,0.5880,0.6100
-0.6311,0.6522,0.6722,0.6928,0.7120,0.7316,0.7495,0.7684,0.7853,0.8026
-0.8191,0.8334,0.8491,0.8629,0.8771,0.8888,0.8994,0.9089,0.9170,0.9242
-0.9308,0.9364,0.9411,0.9457,0.9496,0.9538,0.9571,0.9602,0.9630,0.9654
-0.9679,0.9698,0.9718,0.9735,0.9750,0.9765,0.9778,0.9791,0.9804,0.9815
-0.9825,0.9833,0.9844,0.9851,0.9855,0.9862,0.9870,0.9874,0.9877,0.9883
-0.9889,0.9893,0.9895,0.9898,0.9901,0.9904,0.9910,0.9918,0.9923,0.9927
-0.9930,0.9935,0.9937,0.9941,0.9943,0.9947,0.9949,0.9952,0.9957,0.9962
-0.9964,0.9966,0.9970,0.9973,0.9975,0.9977,0.9979,0.9982,0.9986,0.9988
-0.9990,0.9991,0.9994,0.9995,0.9998,0.9999,1.0000,1.0000,1.0000,1.0000
-pwc2x1fract=0.0004,0.0006,0.0008,0.0010,0.0012,0.0015,0.0017,0.0021
-0.0025,0.0028,0.0031,0.0033,0.0036,0.0041,0.0045,0.0051,0.0060,0.0075
-0.0104,0.0138,0.0191,0.0265,0.0356,0.0463,0.0596,0.0743,0.0916,0.1114
-0.1316,0.1533,0.1757,0.1988,0.2209,0.2455,0.2689,0.2945,0.3196,0.3437
-0.3697,0.3950,0.4196,0.4448,0.4702,0.4953,0.5186,0.5416,0.5650,0.5877
-0.6099,0.6316,0.6519,0.6719,0.6909,0.7099,0.7277,0.7463,0.7645,0.7821
-0.7979,0.8154,0.8320,0.8477,0.8612,0.8740,0.8865,0.8973,0.9077,0.9161
-0.9234,0.9301,0.9351,0.9406,0.9454,0.9497,0.9531,0.9570,0.9605,0.9631
-0.9660,0.9690,0.9713,0.9728,0.9748,0.9762,0.9775,0.9786,0.9800,0.9807
-0.9818,0.9827,0.9833,0.9843,0.9849,0.9857,0.9861,0.9866,0.9871,0.9877
-0.9883,0.9887,0.9891,0.9895,0.9898,0.9901,0.9907,0.9913,0.9916,0.9918
-0.9921,0.9925,0.9929,0.9931,0.9935,0.9940,0.9944,0.9946,0.9949,0.9952
-0.9956,0.9960,0.9966,0.9968,0.9970,0.9972,0.9974,0.9976,0.9979,0.9980
-0.9984,0.9985,0.9988,0.9990,0.9991,0.9993,0.9996,0.9998,0.9999,1.0000
-pwc2v1fract=0.0002,0.0006,0.0008,0.0011,0.0013,0.0016,0.0019,0.0020
-0.0022,0.0025,0.0030,0.0035,0.0038,0.0042,0.0049,0.0057,0.0076,0.0103
-0.0149,0.0200,0.0273,0.0353,0.0455,0.0574,0.0719,0.0865,0.1045,0.1224
-0.1416,0.1630,0.1844,0.2074,0.2317,0.2555,0.2807,0.3046,0.3298,0.3553
-0.3826,0.4075,0.4316,0.4563,0.4823,0.5065,0.5315,0.5554,0.5781,0.6014
-0.6235,0.6434,0.6643,0.6853,0.7050,0.7238,0.7415,0.7602,0.7787,0.7975
-0.8152,0.8307,0.8456,0.8595,0.8723,0.8851,0.8957,0.9043,0.9126,0.9205
-0.9276,0.9330,0.9383,0.9437,0.9484,0.9521,0.9553,0.9582,0.9607,0.9634
-0.9657,0.9676,0.9701,0.9722,0.9738,0.9755,0.9767,0.9781,0.9794,0.9804
-0.9814,0.9825,0.9835,0.9842,0.9847,0.9853,0.9861,0.9866,0.9871,0.9878
-0.9882,0.9888,0.9891,0.9897,0.9900,0.9903,0.9909,0.9910,0.9917,0.9919
-0.9924,0.9929,0.9937,0.9939,0.9944,0.9948,0.9954,0.9956,0.9961,0.9966
-0.9968,0.9972,0.9974,0.9978,0.9980,0.9981,0.9984,0.9986,0.9989,0.9991
-0.9995,0.9996,0.9998,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000
-pwc2u2fract=0.0003,0.0004,0.0008,0.0011,0.0015,0.0018,0.0021,0.0024
-0.0027,0.0030,0.0033,0.0037,0.0039,0.0043,0.0046,0.0049,0.0059,0.0073
-0.0094,0.0129,0.0184,0.0267,0.0352,0.0446,0.0563,0.0707,0.0863,0.1030
-0.1206,0.1411,0.1629,0.1845,0.2087,0.2325,0.2578,0.2837,0.3091,0.3357
-0.3606,0.3867,0.4119,0.4362,0.4608,0.4857,0.5099,0.5349,0.5587,0.5814
-0.6047,0.6260,0.6480,0.6685,0.6892,0.7099,0.7282,0.7456,0.7643,0.7812
-0.7988,0.8141,0.8309,0.8454,0.8616,0.8738,0.8847,0.8955,0.9049,0.9133
-0.9199,0.9274,0.9341,0.9399,0.9445,0.9489,0.9529,0.9561,0.9593,0.9620
-0.9645,0.9667,0.9689,0.9701,0.9720,0.9740,0.9756,0.9771,0.9785,0.9796
-0.9808,0.9816,0.9823,0.9832,0.9839,0.9846,0.9854,0.9860,0.9867,0.9874
-0.9876,0.9881,0.9885,0.9889,0.9895,0.9900,0.9902,0.9907,0.9910,0.9916
-0.9919,0.9923,0.9927,0.9930,0.9934,0.9937,0.9942,0.9945,0.9949,0.9953
-0.9957,0.9962,0.9965,0.9968,0.9971,0.9973,0.9976,0.9979,0.9981,0.9984
-0.9986,0.9988,0.9989,0.9993,0.9995,0.9998,0.9999,0.9999,1.0000,1.0000
-pwc2x2fract=0.0002,0.0005,0.0008,0.0011,0.0014,0.0017,0.0021,0.0025
-0.0027,0.0031,0.0032,0.0034,0.0040,0.0045,0.0052,0.0065,0.0083,0.0112
-0.0150,0.0200,0.0264,0.0341,0.0435,0.0560,0.0701,0.0862,0.1027,0.1210
-0.1417,0.1628,0.1833,0.2069,0.2301,0.2547,0.2799,0.3062,0.3314,0.3582
-0.3860,0.4141,0.4390,0.4656,0.4903,0.5161,0.5410,0.5649,0.5874,0.6090
-0.6298,0.6507,0.6721,0.6923,0.7117,0.7312,0.7510,0.7706,0.7881,0.8052
-0.8204,0.8360,0.8525,0.8666,0.8793,0.8906,0.9019,0.9103,0.9194,0.9274
-0.9340,0.9397,0.9442,0.9483,0.9523,0.9557,0.9596,0.9625,0.9653,0.9678
-0.9698,0.9718,0.9732,0.9751,0.9768,0.9782,0.9793,0.9804,0.9813,0.9821
-0.9828,0.9834,0.9842,0.9848,0.9852,0.9857,0.9861,0.9864,0.9872,0.9877
-0.9880,0.9886,0.9889,0.9894,0.9898,0.9903,0.9908,0.9915,0.9921,0.9924
-0.9927,0.9930,0.9935,0.9939,0.9943,0.9945,0.9949,0.9952,0.9957,0.9960
-0.9963,0.9965,0.9967,0.9972,0.9975,0.9979,0.9980,0.9985,0.9987,0.9988
-0.9990,0.9991,0.9992,0.9995,0.9997,1.0000,1.0000,1.0000,1.0000,1.0000
-pwc2v2fract=0.0004,0.0006,0.0008,0.0012,0.0013,0.0016,0.0018,0.0021
-0.0024,0.0027,0.0029,0.0032,0.0036,0.0039,0.0043,0.0049,0.0063,0.0080
-0.0113,0.0155,0.0218,0.0300,0.0397,0.0508,0.0645,0.0793,0.0949,0.1135
-0.1343,0.1560,0.1786,0.2019,0.2250,0.2498,0.2756,0.3011,0.3270,0.3526
-0.3778,0.4042,0.4299,0.4570,0.4821,0.5077,0.5311,0.5540,0.5784,0.6010
-0.6219,0.6429,0.6633,0.6830,0.7023,0.7214,0.7403,0.7590,0.7786,0.7948
-0.8118,0.8288,0.8444,0.8587,0.8725,0.8842,0.8946,0.9044,0.9136,0.9208
-0.9264,0.9323,0.9377,0.9428,0.9472,0.9506,0.9541,0.9576,0.9602,0.9635
-0.9656,0.9675,0.9695,0.9715,0.9732,0.9751,0.9768,0.9777,0.9789,0.9802
-0.9809,0.9819,0.9828,0.9835,0.9841,0.9850,0.9858,0.9863,0.9866,0.9870
-0.9875,0.9880,0.9884,0.9888,0.9894,0.9899,0.9901,0.9905,0.9909,0.9912
-0.9917,0.9919,0.9922,0.9926,0.9931,0.9936,0.9941,0.9945,0.9951,0.9954
-0.9959,0.9962,0.9964,0.9967,0.9969,0.9971,0.9975,0.9978,0.9980,0.9983
-0.9986,0.9988,0.9991,0.9995,0.9998,0.9999,0.9999,0.9999,1.0000,1.0000
\ No newline at end of file
+; number of 1st bin in Carlos's table in ns
+pdrift1stbin=0
+; bin size in ns
+pdriftbinsz=2
+pwc1u1fract=0.0020958,0.00550,0.01002,0.01739,0.02577,0.03772,0.04948,0.06559,0.08364
+0.10279,0.12221,0.14307,0.16406,0.18584,0.20811,0.23051,0.25228,0.27458,0.29806
+0.31974,0.34080,0.36412,0.38678,0.40832,0.43010,0.45152,0.47421,0.49602,0.51701
+0.53846,0.56007,0.58198,0.60153,0.62259,0.64276,0.66234,0.68271,0.70063,0.72034
+0.73878,0.75744,0.77483,0.79075,0.80817,0.82274,0.83898,0.85205,0.86623,0.87825
+0.89020,0.90140,0.91057,0.92020,0.92776,0.93441,0.94158,0.94708,0.95216,0.95635
+0.96054,0.96447,0.96788,0.97099,0.97377,0.97675,0.97934,0.98120,0.98294,0.98481
+0.98654,0.98860,0.99004,0.99132,0.99230,0.99339,0.99404,0.99515,0.99584,0.99653
+0.99695,0.99745,0.99800,0.99826,0.99849,0.99882,0.99915,0.99925,0.99941,0.99954
+0.99967,0.99977,0.99980,0.99980,0.99987,0.99993,0.99993,0.99997,0.99997,0.99997
+0.99997,0.99997,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc1u2fract=0.00192,0.00536,0.01094,0.01854,0.02916,0.04075,0.05474,0.07176,0.08975
+0.11056,0.13105,0.15306,0.17436,0.19660,0.21781,0.24115,0.26408,0.28814,0.31077
+0.33350,0.35671,0.37931,0.40110,0.42399,0.44561,0.46795,0.48964,0.51143,0.53266
+0.55299,0.57546,0.59595,0.61543,0.63533,0.65579,0.67469,0.69323,0.71099,0.72852
+0.74609,0.76472,0.78174,0.79804,0.81421,0.82970,0.84343,0.85765,0.87162,0.88343
+0.89532,0.90613,0.91607,0.92412,0.93107,0.93769,0.94428,0.94883,0.95354,0.95724
+0.96110,0.96458,0.96779,0.97029,0.97312,0.97565,0.97792,0.98026,0.98266,0.98487
+0.98665,0.98851,0.98977,0.99127,0.99224,0.99308,0.99403,0.99493,0.99597,0.99643
+0.99711,0.99756,0.99786,0.99802,0.99854,0.99890,0.99919,0.99929,0.99935,0.99951
+0.99964,0.99974,0.99984,0.99987,0.99990,0.99990,0.99990,0.99990,0.99994,0.99994
+0.99994,0.99997,0.99997,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc1x1fract=0.00604,0.01330,0.02308,0.03473,0.04813,0.06361,0.08088,0.09973,0.11789
+0.13855,0.15859,0.18048,0.20144,0.22475,0.24776,0.26958,0.29143,0.31348,0.33685
+0.35851,0.37901,0.39974,0.42242,0.44375,0.46547,0.48686,0.50839,0.52964,0.55256
+0.57292,0.59316,0.61379,0.63334,0.65192,0.67226,0.69124,0.70831,0.72782,0.74680
+0.76429,0.78120,0.79787,0.81335,0.82811,0.84214,0.85650,0.87020,0.88221,0.89327
+0.90324,0.91206,0.92034,0.92787,0.93543,0.94187,0.94702,0.95111,0.95471,0.95798
+0.96200,0.96544,0.96854,0.97158,0.97402,0.97643,0.97891,0.98079,0.98257,0.98409
+0.98567,0.98739,0.98914,0.99066,0.99165,0.99294,0.99422,0.99488,0.99584,0.99640
+0.99706,0.99752,0.99799,0.99825,0.99842,0.99878,0.99891,0.99908,0.99927,0.99934
+0.99954,0.99960,0.99964,0.99967,0.99970,0.99970,0.99977,0.99987,0.99987,0.99993
+0.99993,0.99993,0.99993,0.99997,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc1x2fract=0.00262,0.00736,0.01364,0.02145,0.03149,0.04365,0.05850,0.07521,0.09336
+0.11409,0.13596,0.15849,0.17942,0.20123,0.22396,0.24655,0.26751,0.29037,0.31038
+0.33356,0.35491,0.37637,0.39811,0.41904,0.43843,0.45975,0.47989,0.50095,0.52302
+0.54388,0.56465,0.58508,0.60532,0.62478,0.64424,0.66343,0.68249,0.70067,0.71699
+0.73511,0.75374,0.77078,0.78834,0.80407,0.81999,0.83503,0.85050,0.86315,0.87587
+0.88771,0.89854,0.90736,0.91619,0.92384,0.93114,0.93705,0.94301,0.94804,0.95219
+0.95631,0.96014,0.96334,0.96622,0.96923,0.97201,0.97463,0.97741,0.97996,0.98182
+0.98349,0.98519,0.98699,0.98878,0.99029,0.99212,0.99313,0.99428,0.99500,0.99572
+0.99601,0.99650,0.99702,0.99745,0.99794,0.99837,0.99863,0.99879,0.99895,0.99915
+0.99922,0.99928,0.99944,0.99948,0.99957,0.99961,0.99964,0.99967,0.99967,0.99967
+0.99971,0.99974,0.99974,0.99977,0.99977,0.99980,0.99980,0.99984,0.99984,0.99984
+0.99984,0.99984,0.99987,0.99987,0.99990,0.99990,0.99990,0.99990,0.99993,0.99993
+0.99993,0.99993,0.99993,0.99993,0.99993,0.99993,0.99993,0.99993,0.99993,0.99993
+0.99993,0.99997,0.99997,0.99997,0.99997,1.00000,1.00000,1.00000,1.00000
+pwc1v1fract=0.00587,0.01226,0.02231,0.03338,0.04752,0.06370,0.08110,0.09998,0.12120
+0.14212,0.16364,0.18562,0.20819,0.23067,0.25255,0.27584,0.29838,0.31980,0.34280
+0.36468,0.38594,0.40953,0.43039,0.45280,0.47507,0.49725,0.51913,0.54075,0.56114
+0.58138,0.60115,0.62309,0.64342,0.66115,0.68069,0.69911,0.71599,0.73444,0.75210
+0.76947,0.78617,0.80225,0.81731,0.83349,0.84756,0.86078,0.87346,0.88546,0.89620
+0.90612,0.91515,0.92319,0.93021,0.93650,0.94171,0.94705,0.95087,0.95542,0.95888
+0.96326,0.96622,0.96939,0.97196,0.97443,0.97690,0.97927,0.98181,0.98359,0.98540
+0.98718,0.98890,0.99028,0.99183,0.99285,0.99433,0.99502,0.99591,0.99641,0.99700
+0.99740,0.99769,0.99806,0.99839,0.99858,0.99871,0.99895,0.99914,0.99934,0.99951
+0.99964,0.99970,0.99977,0.99984,0.99990,0.99993,0.99993,0.99993,0.99997,0.99997
+0.99997,0.99997,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc1v2fract=0.00340,0.00893,0.01651,0.02543,0.03609,0.04979,0.06568,0.08337,0.10194
+0.12119,0.14185,0.16438,0.18602,0.20930,0.23231,0.25553,0.27583,0.29930,0.32258
+0.34478,0.36697,0.38927,0.41196,0.43308,0.45629,0.47891,0.50062,0.52233,0.54204
+0.56355,0.58389,0.60442,0.62498,0.64329,0.66307,0.68370,0.70181,0.72126,0.73875
+0.75477,0.77295,0.78887,0.80365,0.81797,0.83297,0.84749,0.86158,0.87485,0.88610
+0.89646,0.90617,0.91467,0.92334,0.93059,0.93674,0.94217,0.94733,0.95158,0.95606
+0.96021,0.96325,0.96587,0.96920,0.97208,0.97496,0.97754,0.97963,0.98179,0.98382
+0.98532,0.98686,0.98885,0.99019,0.99114,0.99222,0.99304,0.99405,0.99487,0.99552
+0.99637,0.99696,0.99722,0.99761,0.99804,0.99830,0.99859,0.99879,0.99886,0.99905
+0.99922,0.99938,0.99944,0.99957,0.99964,0.99967,0.99971,0.99974,0.99974,0.99977
+0.99977,0.99980,0.99984,0.99984,0.99984,0.99984,0.99984,0.99984,0.99984,0.99984
+0.99984,0.99984,0.99984,0.99987,0.99987,0.99987,0.99987,0.99987,0.99987,0.99987
+0.99987,0.99987,0.99987,0.99987,0.99987,0.99987,0.99987,0.99987,0.99987,0.99987
+0.99990,0.99990,0.99993,0.99997,0.99997,0.99997,1.00000,1.00000,1.00000
+pwc2v2fract=0.00355,0.00811,0.01463,0.02407,0.03587,0.04919,0.06677,0.08541,0.10400
+0.12540,0.14794,0.17011,0.19288,0.21693,0.23949,0.26299,0.28650,0.30951,0.33287
+0.35488,0.37780,0.39963,0.42181,0.44353,0.46490,0.48629,0.50656,0.52717,0.54784
+0.56852,0.58965,0.60916,0.62797,0.64653,0.66474,0.68310,0.70099,0.71828,0.73546
+0.75155,0.76685,0.78194,0.79734,0.81166,0.82645,0.83962,0.85270,0.86479,0.87595
+0.88651,0.89623,0.90495,0.91333,0.92068,0.92721,0.93332,0.93810,0.94279,0.94743
+0.95203,0.95604,0.95939,0.96229,0.96514,0.96786,0.97076,0.97319,0.97559,0.97771
+0.97986,0.98193,0.98360,0.98553,0.98730,0.98893,0.99021,0.99108,0.99205,0.99300
+0.99375,0.99470,0.99540,0.99585,0.99629,0.99679,0.99719,0.99765,0.99799,0.99832
+0.99846,0.99862,0.99894,0.99903,0.99914,0.99923,0.99937,0.99953,0.99964,0.99968
+0.99975,0.99982,0.99982,0.99984,0.99987,0.99987,0.99991,0.99993,0.99995,0.99996
+0.99996,0.99996,0.99996,0.99998,0.99998,0.99998,0.99998,0.99998,0.99998,0.99998
+0.99998,0.99998,0.99998,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc2v1fract=0.00372,0.00848,0.01548,0.02441,0.03573,0.04956,0.06476,0.08295,0.10351
+0.12426,0.14625,0.16946,0.19199,0.21540,0.23858,0.26192,0.28639,0.30861,0.33119
+0.35334,0.37566,0.39810,0.42021,0.44146,0.46266,0.48382,0.50582,0.52804,0.54885
+0.56798,0.58801,0.60859,0.62777,0.64688,0.66520,0.68353,0.70152,0.71956,0.73761
+0.75335,0.76982,0.78458,0.79995,0.81450,0.82748,0.84073,0.85341,0.86489,0.87527
+0.88573,0.89487,0.90394,0.91159,0.91911,0.92546,0.93130,0.93661,0.94148,0.94587
+0.94992,0.95404,0.95789,0.96136,0.96449,0.96755,0.97010,0.97255,0.97491,0.97713
+0.97915,0.98114,0.98275,0.98458,0.98592,0.98751,0.98881,0.99004,0.99134,0.99221
+0.99298,0.99396,0.99456,0.99526,0.99597,0.99640,0.99714,0.99754,0.99778,0.99816
+0.99841,0.99861,0.99882,0.99897,0.99915,0.99920,0.99937,0.99944,0.99953,0.99964
+0.99971,0.99976,0.99978,0.99982,0.99986,0.99986,0.99989,0.99996,0.99998,0.99998
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc2x2fract=0.00273,0.00715,0.01355,0.02204,0.03274,0.04612,0.06183,0.08042,0.09892
+0.11876,0.14088,0.16295,0.18590,0.20896,0.23253,0.25474,0.27887,0.30140,0.32319
+0.34527,0.36878,0.39027,0.41159,0.43320,0.45397,0.47620,0.49685,0.51873,0.53997
+0.56079,0.58000,0.59982,0.61994,0.63833,0.65730,0.67629,0.69488,0.71185,0.72945
+0.74559,0.76034,0.77572,0.79084,0.80480,0.81885,0.83163,0.84497,0.85717,0.86887
+0.87936,0.88973,0.89888,0.90758,0.91469,0.92266,0.92871,0.93477,0.93975,0.94473
+0.94887,0.95311,0.95691,0.96043,0.96402,0.96686,0.96950,0.97235,0.97469,0.97770
+0.97983,0.98189,0.98345,0.98514,0.98657,0.98803,0.98942,0.99069,0.99178,0.99271
+0.99365,0.99440,0.99512,0.99586,0.99630,0.99685,0.99718,0.99764,0.99805,0.99826
+0.99845,0.99870,0.99887,0.99896,0.99908,0.99926,0.99944,0.99954,0.99958,0.99961
+0.99968,0.99974,0.99974,0.99975,0.99982,0.99982,0.99984,0.99986,0.99989,0.99991
+0.99993,0.99993,0.99995,0.99995,0.99996,0.99996,0.99996,0.99996,0.99996,0.99996
+0.99996,0.99996,0.99996,0.99996,0.99996,0.99996,0.99996,0.99996,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc2x1fract=0.00269,0.00655,0.01238,0.02026,0.03076,0.04237,0.05721,0.07286,0.09074
+0.10990,0.13086,0.15127,0.17513,0.19808,0.21996,0.24259,0.26537,0.28700,0.30956
+0.33140,0.35472,0.37650,0.39789,0.41888,0.44103,0.46255,0.48301,0.50454,0.52595
+0.54652,0.56800,0.58817,0.60742,0.62763,0.64721,0.66513,0.68315,0.70174,0.71896
+0.73531,0.75199,0.76820,0.78380,0.79914,0.81382,0.82846,0.84117,0.85393,0.86529
+0.87711,0.88755,0.89691,0.90553,0.91347,0.92066,0.92770,0.93366,0.93864,0.94362
+0.94777,0.95195,0.95612,0.95964,0.96283,0.96603,0.96896,0.97175,0.97480,0.97722
+0.97963,0.98193,0.98357,0.98535,0.98699,0.98833,0.98957,0.99091,0.99207,0.99304
+0.99378,0.99456,0.99544,0.99616,0.99677,0.99721,0.99761,0.99778,0.99812,0.99846
+0.99870,0.99892,0.99919,0.99937,0.99951,0.99959,0.99971,0.99971,0.99976,0.99976
+0.99978,0.99978,0.99983,0.99985,0.99988,0.99990,0.99990,0.99992,0.99992,0.99992
+0.99992,0.99992,0.99992,0.99993,0.99995,0.99995,0.99995,0.99995,0.99995,0.99995
+0.99995,0.99995,0.99997,0.99998,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc2u2fract=0.00237,0.00581,0.01068,0.01782,0.02712,0.03875,0.05280,0.06868,0.08541
+0.10517,0.12528,0.14629,0.16884,0.19099,0.21299,0.23643,0.25869,0.28213,0.30434
+0.32678,0.34909,0.37174,0.39436,0.41625,0.43794,0.45954,0.48214,0.50378,0.52612
+0.54676,0.56720,0.58734,0.60833,0.62706,0.64672,0.66643,0.68381,0.70311,0.72117
+0.73876,0.75651,0.77290,0.78840,0.80271,0.81762,0.83198,0.84523,0.85838,0.87054
+0.88217,0.89223,0.90219,0.91106,0.91891,0.92627,0.93193,0.93753,0.94300,0.94747
+0.95198,0.95570,0.95922,0.96280,0.96595,0.96887,0.97174,0.97436,0.97680,0.97881
+0.98093,0.98278,0.98473,0.98631,0.98770,0.98939,0.99066,0.99200,0.99297,0.99412
+0.99487,0.99556,0.99620,0.99659,0.99711,0.99744,0.99782,0.99821,0.99859,0.99886
+0.99900,0.99919,0.99928,0.99940,0.99952,0.99955,0.99962,0.99966,0.99969,0.99978
+0.99979,0.99986,0.99986,0.99990,0.99993,0.99995,0.99995,0.99995,0.99995,0.99995
+0.99995,0.99995,0.99997,0.99997,0.99998,0.99998,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+pwc2u1fract=0.00286,0.00678,0.01311,0.02071,0.03000,0.04184,0.05560,0.07218,0.08949
+0.10886,0.12878,0.15013,0.17143,0.19400,0.21638,0.23885,0.26210,0.28499,0.30799
+0.33149,0.35450,0.37694,0.39903,0.42079,0.44323,0.46431,0.48507,0.50695,0.52818
+0.54926,0.57110,0.59212,0.61239,0.63161,0.65112,0.67003,0.68866,0.70782,0.72560
+0.74401,0.76115,0.77812,0.79482,0.80987,0.82598,0.84019,0.85395,0.86640,0.87848
+0.88970,0.89967,0.90845,0.91686,0.92449,0.93102,0.93708,0.94241,0.94746,0.95154
+0.95614,0.95993,0.96300,0.96655,0.96970,0.97251,0.97476,0.97719,0.97971,0.98181
+0.98349,0.98540,0.98741,0.98885,0.99029,0.99135,0.99259,0.99369,0.99464,0.99538
+0.99599,0.99672,0.99729,0.99767,0.99797,0.99822,0.99866,0.99885,0.99898,0.99919
+0.99929,0.99931,0.99939,0.99954,0.99958,0.99966,0.99970,0.99971,0.99975,0.99980
+0.99981,0.99983,0.99986,0.99988,0.99990,0.99992,0.99992,0.99992,0.99992,0.99992
+0.99993,0.99993,0.99995,0.99997,0.99997,0.99997,0.99997,0.99997,0.99997,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
+1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000
diff --git a/PARAM/SHMS/GEN/pcana.param b/PARAM/SHMS/GEN/pcana.param
index d58c0f932043f7bf4a6d48f35a01bb2de71af29b..8524663dc0713f73e911decfd9e6c24597b57634 100644
--- a/PARAM/SHMS/GEN/pcana.param
+++ b/PARAM/SHMS/GEN/pcana.param
@@ -1,19 +1,18 @@
 ; Parameters we need to keep THcHallCSpectrometer Happy
-p_recon_coeff_filename = ""
+p_recon_coeff_filename = "DATFILES/SHMS_fr3_rec__order_5.dat"
 
 ppartmass = 0.139
-phodo_num_planes = 1
 
 ; Scintillator parameters
 pref_npaddles = 6
 pref_nsperchan = 0.1
 pref_offset = 0.0
 
-; Names of planes so that parameter names can be constructed
-pdc_plane_names = "1u1 1u2 1x1 1x2 1v1 1v2 2v2 2v1 2x2 2x1 2u2 2u1"
+; Number of aerogel pairs of pmt's
+paero_num_pairs = 7
 
-; Compatibility parameters.  Should be zero to precisely mimic ENGINE
-; behavior, but one for more correct behavior
-pdc_fix_lr = 1 ; Let hit have different L/R assignment for different space point
-pdc_fix_propcorr = 1 ; do propagation along wire each time hit appeears
-                     ; in a space point
\ No newline at end of file
+; Number of heavy gas Cherenkov PMT's
+phgcer_tot_pmts = 4
+
+; Number of noble gas Cherenkov PMT's
+pngcer_tot_pmts = 4
diff --git a/PARAM/SHMS/GEN/pdebug.param b/PARAM/SHMS/GEN/pdebug.param
index 3e1149e0bdeff19cd00e8f9cdea9e79354095dd1..e36705b5a06c18f97e5df37e171b308ba98c8da3 100644
--- a/PARAM/SHMS/GEN/pdebug.param
+++ b/PARAM/SHMS/GEN/pdebug.param
@@ -5,4 +5,17 @@ pdebugprintdecodeddc = 0 ; Dump PDC_DECODED_DC bank
 pdebugflagpr = 0 ; Dump intermediate pattern recognition results
 pdebugflagstubs= 0 ; Dump stub fit results
 pdebugtrackprint = 0 ; Dump focal plane track fit results
-pdebugstubchisq = 0; Dump chi2 of left-right fits
\ No newline at end of file
+pdebugstubchisq = 0; Dump chi2 of left-right fits
+
+;  pluno     fortran lun for output
+      pluno = 66
+; pdebugdumptof           Dump timing information for fitting offsets
+      pdebugdumptof = 0
+; pdebugdumpcal           Dump calorimeter information for fitting gains
+      pdebugdumpcal = 0
+; number of pedestal events required to overwrite orig. peds.
+  phodo_min_peds = 500
+  pcal_min_peds  = 500
+  pcer_min_peds  = 500
+  paero_min_peds  = 500
+  pmisc_min_peds  = 500
diff --git a/PARAM/SHMS/GEN/ptracking.param b/PARAM/SHMS/GEN/ptracking.param
index 1de167cf8c21af3d7c14a30534d43370bf8c5c6f..bb63238c85cc6b99d38c6f11da522afeb15d2cf8 100644
--- a/PARAM/SHMS/GEN/ptracking.param
+++ b/PARAM/SHMS/GEN/ptracking.param
@@ -13,7 +13,7 @@ pmin_hit = 5, 5
 pmin_combos = 6, 6
 ; hspace_point_criterion(i) minimum separation of distinct space points
 ; recommended value for hspace_point_criterion ( based on meeting
-; Feb 2003) 
+; Feb 2003)
   pspace_point_criterion = 1.2, 1.2
 
 ; The following four criteria are applied to the stub fit results at the
@@ -25,12 +25,72 @@ pntracks_max_fp = 10
 ; focal plane position to link stubs to tracks
   pntracks_max_fp = 10
   pxt_track_criterion = 100.0
-  pyt_track_criterion = 2.0
+  pyt_track_criterion = 20.0
   pxpt_track_criterion = 1.0
   pypt_track_criterion = 1.0
 
 ; Make a track of all single stubs normally 0
-  psingle_stub = 1 
+  psingle_stub = 0
 
 ; No small angle approximation for cosmic ray tests
-  pSmallAngleApprox = 0
\ No newline at end of file
+  pSmallAngleApprox = 0
+
+; Crude track selection criteria in h_physics
+; psel_chi2_fpperdegmax   maximum chi2 per degree of freedom for track
+  psel_chi2_fpperdegmax = 2000000.
+; psel_dedx1min           minimum dedx to chose best track in scin 1
+  psel_dedx1min = -100000
+; psel_dedx1max           maximum dedx to chose best track in scin 1
+  psel_dedx1max = 1000000.
+; psel_betamin            minimum track beta to chose best track
+  psel_betamin  = -100000
+; psel_betamax            maximum track beta to chose best track
+  psel_betamax  = 100000.
+; psel_etmin              minimum track et to chose best track
+  psel_etmin = 0.05
+; psel_etmax              maximum track et to chose best track
+  psel_etmax = 100000.
+; psel_ndegreesmin        minimum number of degrees of freedom for track
+  psel_ndegreesmin = 1
+
+
+; pstat_maxchisq          chisquared limit for tracks used to measure hodo. eff.
+  pstat_maxchisq = 10.
+; if both psel_using_scin = 0 and psel_using_prune = 0 then best chi2 track is used.
+; psel_using_scin         uses scintillator for track selection
+  psel_using_scin = 0
+; psel_using_prune         using prune
+  psel_using_prune = 0
+; pstat_slop              distance from center of scin. to count as expecting hit
+  pstat_slop = 2.
+; pstat_mineff            warning level for scin. effic.
+  pstat_mineff = .95
+; pstat_cal_maxchisq      cpisquared limit for tracks used to measure cal. eff.
+  pstat_cal_maxchisq = 10.
+; pstat_cal_slop          distance from center of block to count as expecting hit
+  pstat_cal_slop = 2.
+; phgcer_min_eff            warning level for cerenkov effic.
+  phgcer_min_eff = .98
+; phgcer_threshold          threshold for good hit (for measureing effic.)
+  phgcer_threshold = 0.5
+; pngcer_min_eff            warning level for cerenkov effic.
+  pngcer_min_eff = .98
+; pngcer_threshold          threshold for good hit (for measureing effic.)
+  pngcer_threshold = 0.5
+; pdc_min_eff             warning level for dc raw effic.(1 per plane)
+  pdc_min_eff = .96,.98,.96,.98,.98,.94
+                .96,.98,.98,.98,.98,.96
+; pdc_min_wire_eff        warning level for wire effic, measured using tracking
+  pdc_min_wire_eff = .85
+; pdc_min_plane_eff        warning level for plane effic, measured using tracking
+  pdc_min_plane_eff = .95,.95,.95,.95,.95,.95
+                      .95,.95,.95,.95,.95,.95
+;Derek added this for scintillator based fiducial cuts.  Everything from
+;loscin to hiscin inclusive will be included as "good" scintillator hits.
+  pxloscin  = 4, 4
+  pxhiscin  = 13, 13
+  pyloscin  = 4, 4
+  pyhiscin  = 7, 7
+;  ptrack_eff_test_scin_planes is the number of planes nec needed to
+;  set sweet spot to true. 4 is extra clean, 3 is good enough for e-'s.
+  ptrack_eff_test_num_scin_planes = 3
diff --git a/PARAM/SHMS/GEN/shmsflags.param b/PARAM/SHMS/GEN/shmsflags.param
index 56ef41f56f18c84b9ac9aefaf73bbe94dd0fd773..78493f50f8a76526fa49297624a7cd979a86abdc 100644
--- a/PARAM/SHMS/GEN/shmsflags.param
+++ b/PARAM/SHMS/GEN/shmsflags.param
@@ -1,6 +1,6 @@
 
-; The hdelta_offset,htheta_offset,hphi_offset effect the
-; reconstructed target quantities. Used in h_targ_trans.f 
+; The pdelta_offset,ptheta_offset,pphi_offset effect the
+; reconstructed target quantities. 
 ; For transport x is in the dispersive direction with + down
 ;               y is in the horizontal + towards small angles.
 ;               z is along the central optics axis.
@@ -8,7 +8,7 @@
 ;    but for unknown reasons the yp offset is named  htheta_offset
 ;    and  the xp offset is named  hphi_offset
 ; Do not to change these values, since these are the zero order
-;  CMOP matrix elements. If you do change then your hms sieve
+;  CMOP matrix elements. If you do change then your shms sieve
 ;  plots will be screwed up.
 
 pdelta_offset = 0.0
@@ -16,13 +16,11 @@ ptheta_offset = 0.0
 pphi_offset = 0.0
 
 ; The following offsets are applied to the central kinematic variables
-;  in h_apply_offsets.f  . These might be modified by an experiment
+; These might be modified by an experiment
 ;  after doing calibration with elastic ep.
 
 pthetacentral_offset = 0.0
 p_oopcentral_offset = 0.0
 ppcentral_offset = 0.0
-ppcentral = 0.0
-ptheta_lab = 0.0
 
 
diff --git a/PARAM/SHMS/HGCER/phgcer.param b/PARAM/SHMS/HGCER/phgcer.param
new file mode 100644
index 0000000000000000000000000000000000000000..dbe8d0a632032be3910688932203b387ef1b3b11
--- /dev/null
+++ b/PARAM/SHMS/HGCER/phgcer.param
@@ -0,0 +1,24 @@
+phgcer_width = 50, 50
+
+phgcer_adc_to_npe = 1/145.0, 1/122.0
+
+
+phgcer_chi2max = 50.
+phgcer_beta_min = 0.8
+phgcer_beta_max = 1.2
+phgcer_et_min = 0.95
+phgcer_et_max = 5.0
+phgcer_mirror_zpos = 230
+; phgcer_region: 8 values for each region (1 per mirror + sum)
+; central x,y,dx,dy values and x,y,dx,dy half widths.
+phgcer_region =   30,  -30,   0,
+                 0,    0,   0,
+                 0,    0,   0,
+                 0,    0,   0,
+                20,   20,  60,
+                30,   30,  30,
+                .1,   .1,  .1,
+                .1,   .1,  .1
+
+phgcer_ped_limit =  1000,1000
+	       
diff --git a/PARAM/SHMS/HODO/phodo.param b/PARAM/SHMS/HODO/phodo.param
new file mode 100644
index 0000000000000000000000000000000000000000..aaa4ea23e27aeadd3a2f975899bc5eff71706323
--- /dev/null
+++ b/PARAM/SHMS/HODO/phodo.param
@@ -0,0 +1,411 @@
+pcosmicflag=1
+; for now manually set hte FADC mode
+;  1 == Use the pulse int - pulse ped
+;  2 == Use the sample integral - known ped
+;  3 == Use the sample integral - sample ped
+; if not set then defaults to use the raw pulse integral
+phodo_adc_mode=1
+; 
+; hhodo_tdc_offset is array of time offsets for all paddles in a plane
+;   to move the tdc to between 0 and 4000 channels.
+  phodo_tdc_offset = 1860, 2000, 2060, 2000
+; pstart_time_center  center of allowed time window                             
+   pstart_time_center = 32.                                                     
+; hstart_time_slop    1/2 width of time window                                  
+   pstart_time_slop = 100.                                                       
+; pscin_tdc_min       minimum tdc value in hms scin                             
+    pscin_tdc_min = -500                                                           
+; pscin_tdc_max       maximum allowed tdc value                                 
+   pscin_tdc_max = 1000                                                        
+; pscin_tdc_to_time   scin tdc time per channel                                 
+   pscin_tdc_to_time = 0.1                                                   
+; tof and you figured out good values
+   ptof_tolerance = 100.0
+;                                                                               
+; shms_tof_params                                                              
+; pnum_scin_counters, phodo_zpos, phodo_center_coord, phodo_width               
+; are all calculated within p_init_scin                                         
+;    phodo_pos_coord and phodo_neg_coord are not yet used                       
+;                                                                               
+     phodo_slop     =    2.,  2.,  4.,  4.    
+;                                  
+ptofusinginvadc=1
+;                                                                               
+                                                                                
+phodo_pos_invadc_offset =   -5.0000,   -5.0000,  0.000,   0.000
+ -5.0000,   -2.0000,  0.000,   0.000
+ -5.0000,   -2.0000,  +10.000,   0.000
+ -5.0000,   -4.0000,  0.000,   0.000
+ -5.0000,   -4.0000,  +10.000,   0.000
+ -5.0000,   -5.0000,  0.000,   0.000
+ -5.0000,   -6.0000,  0.000,   -14.000
+ -5.0000,   -4.0000,  0.000,   -14.000
+ -5.0000,   -5.0000,  0.000,   -14.000
+ -5.0000,   +6.0000,  0.000,   -14.000
+ -5.0000,   0.0000,  0.000,   -14.000
+ -5.0000,   +5.0000,  0.000,   -14.000
+ -5.0000,   -7.0000,  0.000,   -14.000
+ 0.000,   0.0000,  0.000,   -14.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+phodo_neg_invadc_offset =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  +10.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  +10.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   -14.000
+ 0.000,   0.0000,  0.000,   -14.000
+ 0.000,   0.0000,  0.000,   -14.000
+ 0.000,   +10.0000,  0.000,   -14.000
+ 0.000,   0.0000,  0.000,   -14.000
+ 0.000,   +10.0000,  0.000,   -14.000
+ 0.000,   0.0000,  0.000,   -14.000
+ 0.000,   0.0000,  0.000,  -14.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+phodo_pos_invadc_linear =   15.0,15.0,15.0,15.0        
+                        15.0,15.0,15.0,15.0      
+                        15.0,15.0,15.0,15.0      
+                        15.0,15.0,15.0,15.0   
+                        15.0,15.0,15.0,15.0   
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0 
+                        15.0,15.0,15.0,15.0 
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0  
+phodo_neg_invadc_linear =   15.0,15.0,15.0,15.0        
+                        15.0,15.0,15.0,15.0      
+                        15.0,15.0,15.0,15.0      
+                        15.0,15.0,15.0,15.0   
+                        15.0,15.0,15.0,15.0   
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0 
+                        15.0,15.0,15.0,15.0 
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0
+                        15.0,15.0,15.0,15.0  
+                        15.0,15.0,15.0,15.0  
+ 
+phodo_pos_invadc_adc =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;
+phodo_neg_invadc_adc =   0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+ 0.000,   0.0000,  0.000,   0.000
+;                                                                               
+     phodo_vel_light =  15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                        15.0,15.0,15.0,15.0                                     
+                                                                               
+      phodo_pos_sigma = .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+;                                                                               
+      phodo_neg_sigma = .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+                        .3,.3,.3,.3,                                 
+;                                                                               
+phodo_pos_ped_limit = 1000,1000,1000,1000 
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000 
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+ ;                                                                               
+phodo_neg_ped_limit = 1000,1000,1000,1000 
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000 
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                      1000,1000,1000,1000
+                      1000,1000,1000,1000                   
+                                                                               
+
+phodo_pos_invadc_offset =   -0.00,   -0.00,    0.59,   -0.00
+                            -6.26,   -4.09,    0.45,   -0.00
+                            -2.48,   -1.94,   12.41,   -0.00
+                             1.98,   -2.95,    0.44,   -0.00
+                            -1.71,   -4.57,    9.75,   -0.00
+                            -2.48,   -5.36,    0.15,   -0.00
+                             0.39,   -3.34,    0.75,   -0.00
+                            -7.06,   -3.12,    0.21,   -0.00
+                            -1.75,   -3.79,    1.52,   -0.00
+                            -0.00,    5.02,    1.58,   -0.00
+                            -3.67,   -3.57,    0.80,   -0.00
+                             0.76,   11.15,    2.28,   -0.00
+                            -0.00,   -0.00,    3.28,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+
+phodo_neg_invadc_offset =   -0.00,   -0.00,   -5.36,   -0.00
+                            -7.60,   -2.32,   -5.24,   -0.00
+                             0.62,   -3.65,   15.02,   -0.00
+                            -4.07,   -3.42,   -6.21,   -0.00
+                            -2.60,   -3.61,   10.43,   -0.00
+                            -5.70,   -2.98,   -7.00,   -0.00
+                             1.23,   -2.53,   -5.65,   -0.00
+                            -2.39,   -4.13,   -5.78,   -0.00
+                            -1.38,   -3.39,   -7.54,   -0.00
+                            -2.56,    7.05,   -5.93,   -0.00
+                             1.84,   -4.38,   -3.91,   -0.00
+                            -3.23,    9.84,   -3.06,   -0.00
+                            -0.00,   -0.00,   -5.95,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+                            -0.00,   -0.00,   -0.00,   -0.00
+
+phodo_pos_invadc_linear =   15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   14.97,   15.00
+                            14.28,   13.33,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            14.76,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+
+phodo_neg_invadc_linear =   15.00,   15.00,   15.00,   15.00
+                            13.91,   14.43,   15.00,   15.00
+                            14.52,   14.76,   15.00,   15.00
+                            14.68,   14.14,   15.00,   15.00
+                            14.94,   14.70,   15.00,   15.00
+                            14.34,   14.14,   15.00,   15.00
+                            14.82,   13.94,   15.00,   15.00
+                            15.00,   14.33,   15.00,   15.00
+                            14.77,   13.76,   15.00,   15.00
+                            15.00,   14.75,   14.42,   15.00
+                            15.00,   13.69,   13.56,   15.00
+                            13.75,   13.13,   13.73,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+                            15.00,   15.00,   15.00,   15.00
+
+phodo_pos_invadc_adc=    -0.00,    -0.00,   112.14,    -0.00
+                        85.63,   100.91,    83.19,    -0.00
+                        96.42,    36.41,   116.39,    -0.00
+                       121.38,    90.00,   118.14,    -0.00
+                       114.06,    92.90,   100.01,    -0.00
+                       110.24,    92.14,   103.32,    -0.00
+                       125.76,    84.99,   122.10,    -0.00
+                        92.38,    91.90,   130.47,    -0.00
+                       116.53,    85.91,    98.54,    -0.00
+                       122.36,   111.70,   113.37,    -0.00
+                       104.33,    74.85,    80.05,    -0.00
+                       122.25,   100.68,   145.77,    -0.00
+                        -0.00,    -0.00,   134.86,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+
+phodo_neg_invadc_adc=    -0.00,    -0.00,   115.40,    -0.00
+                       100.70,    83.97,   103.44,    -0.00
+                       112.43,    84.04,   158.78,    -0.00
+                       119.43,    89.05,   118.05,    -0.00
+                       101.78,    89.03,   123.62,    -0.00
+                        97.26,    87.19,   108.87,    -0.00
+                       121.57,    78.91,   104.65,    -0.00
+                       110.95,    85.20,   170.10,    -0.00
+                       109.62,    78.24,   104.81,    -0.00
+                       113.38,   111.82,    60.35,    -0.00
+                       126.61,    78.83,    62.49,    -0.00
+                        91.82,    87.61,    62.81,    -0.00
+                        -0.00,    -0.00,   155.93,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+                        -0.00,    -0.00,    -0.00,    -0.00
+
+phodo_pos_sigma =  100.00,  100.00,    0.67,  100.00
+                     0.60,    0.57,    0.84,  100.00
+                     0.49,    0.64,    0.64,  100.00
+                     0.61,    0.50,    0.65,  100.00
+                     0.59,    0.63,    0.82,  100.00
+                     0.72,    0.56,    0.62,  100.00
+                     0.51,    0.52,    0.68,  100.00
+                     0.65,    0.56,    0.92,  100.00
+                     0.69,    0.49,    0.67,  100.00
+                     0.66,    0.60,    1.69,  100.00
+                     0.56,    0.54,    1.72,  100.00
+                     0.57,    0.51,    1.49,  100.00
+                   100.00,  100.00,    2.01,  100.00
+                   100.00,  100.00,  100.00,  100.00
+                   100.00,  100.00,  100.00,  100.00
+                   100.00,  100.00,  100.00,  100.00
+
+phodo_neg_sigma =  100.00,  100.00,    0.58,  100.00
+                     0.66,    0.61,    0.74,  100.00
+                     0.53,    0.61,    0.60,  100.00
+                     0.57,    0.46,    0.91,  100.00
+                     0.55,    0.62,    0.85,  100.00
+                     0.65,    0.51,    0.67,  100.00
+                     0.49,    0.53,    0.62,  100.00
+                     0.64,    0.54,    0.85,  100.00
+                     0.65,    0.54,    0.67,  100.00
+                     0.71,    0.62,    1.27,  100.00
+                     0.75,    0.53,    1.67,  100.00
+                     0.51,    0.57,    1.33,  100.00
+                   100.00,  100.00,    2.07,  100.00
+                   100.00,  100.00,  100.00,  100.00
+                   100.00,  100.00,  100.00,  100.00
+                   100.00,  100.00,  100.00,  100.00
diff --git a/PARAM/SHMS/HODO/phodo.pos b/PARAM/SHMS/HODO/phodo.pos
new file mode 100644
index 0000000000000000000000000000000000000000..fc5d3077c133353fc5c92dcddce349b138b80b52
--- /dev/null
+++ b/PARAM/SHMS/HODO/phodo.pos
@@ -0,0 +1,101 @@
+phodo_num_planes = 4
+phodo_plane_names = "1x 1y 2x 2y"
+      ppathlength_central = 1800
+; Z positions of hodoscopes
+      pscin_1x_zpos =  56.3-9.5
+      pscin_1y_zpos =  56.3+9.5
+      pscin_2x_zpos =  276.35-9.5
+      pscin_2y_zpos =  276.35+9.5
+      pscin_1x_dzpos = 1.0
+      pscin_1y_dzpos = 1.0
+      pscin_2x_dzpos = 1.0
+      pscin_2y_dzpos = 1.0
+      pscin_1x_size = 8.0
+      pscin_1y_size = 8.0
+      pscin_2x_size = 8.0
+      pscin_2y_size = 8.0
+      pscin_1x_spacing = 7.5
+      pscin_1y_spacing = 7.5
+      pscin_2x_spacing = 7.5
+      pscin_2y_spacing = 7.5
+; Number of hodoscope paddles per layer
+      pscin_1x_nr = 13
+      pscin_1y_nr = 13
+      pscin_2x_nr = 14
+      pscin_2y_nr = 21
+; X,Y positions of hodoscope paddles
+      pscin_1x_left  =  50.
+      pscin_1x_right = -50
+      pscin_1x_offset=  0.0
+      pscin_1x_center= -42.
+                       -35.
+                       -28.
+                       -21.
+                       -14.
+                       -7.
+                        0.0
+                        7.
+                        14.
+                        21.
+                        28.
+                        35.
+                        42.
+;
+      pscin_1y_top   = -50
+      pscin_1y_bot   =  50
+      pscin_1y_offset=  0.0
+      pscin_1y_center= +42.
+                       +35.
+                       +28.
+                       +21.
+                       +14.
+                       +7.
+                        0.0
+                        -7.
+                        -14.
+                        -21.
+                        -28.
+                        -35.
+                        -42. 
+      pscin_2x_left  =  55.
+      pscin_2x_right =  -55.
+      pscin_2x_offset=  0.0
+      pscin_2x_center=  -58.5
+                        -49.5
+                        -40.5
+                        -31.5
+                        -22.5
+                        -13.5
+                        -4.5
+                         4.5
+                         13.5
+                         22.5
+                         31.5
+                         40.5 
+                         49.5
+                         58.5
+      pscin_2y_top   = -55
+      pscin_2y_bot   =  55
+      pscin_2y_offset=  0.0
+      pscin_2y_center=  50.
+                        45.
+                        40.
+                        35.
+                        30.
+                        25.
+                        20.
+                        15.
+                        10.
+                         5.
+                         0.
+                        -5.
+                        -10.
+                        -15.
+                        -20.
+                        -25.
+                        -30.
+                        -35.
+                        -40.
+                        -45.
+                        -50.
+                        
diff --git a/PARAM/SHMS/HODO/ptofcal.param b/PARAM/SHMS/HODO/ptofcal.param
new file mode 100644
index 0000000000000000000000000000000000000000..3f0ae425484645481556fb9c581494d65500e53b
--- /dev/null
+++ b/PARAM/SHMS/HODO/ptofcal.param
@@ -0,0 +1,2 @@
+pdumptof=1
+pdumptof_filename="CALIBRATION/hodo_calib/pfort.37"
diff --git a/PARAM/SHMS/NGCER/pngcer.param b/PARAM/SHMS/NGCER/pngcer.param
new file mode 100644
index 0000000000000000000000000000000000000000..09b551b13ae26e5cea742e064a06c2daa710b5ae
--- /dev/null
+++ b/PARAM/SHMS/NGCER/pngcer.param
@@ -0,0 +1,24 @@
+pngcer_width = 50, 50
+
+pngcer_adc_to_npe = 1/145.0, 1/122.0
+
+
+pngcer_chi2max = 50.
+pngcer_beta_min = 0.8
+pngcer_beta_max = 1.2
+pngcer_et_min = 0.95
+pngcer_et_max = 5.0
+pngcer_mirror_zpos = 230
+; pngcer_region: 8 values for each region (1 per mirror + sum)
+; central x,y,dx,dy values and x,y,dx,dy half widths.
+pngcer_region =   30,  -30,   0,
+                 0,    0,   0,
+                 0,    0,   0,
+                 0,    0,   0,
+                20,   20,  60,
+                30,   30,  30,
+                .1,   .1,  .1,
+                .1,   .1,  .1
+
+pngcer_ped_limit =  1000,1000
+	       
diff --git a/PARAM/TRIG/thms.param b/PARAM/TRIG/thms.param
index 54d1f0e5f0da5979dde150151ec48fc03bb290fc..8bfc69517853d75fec71202aa78385f60692d58c 100644
--- a/PARAM/TRIG/thms.param
+++ b/PARAM/TRIG/thms.param
@@ -1,8 +1,8 @@
 t_hms_numAdc = 8
-t_hms_numTdc = 17
+t_hms_numTdc = 21
 
-; bar num:        1     2     3     4     5      6     7       8
+; bar num:                1     2     3     4     5      6     7       8
 t_hms_adcNames = "hASUM hBSUM hCSUM hDSUM hPSHWR hSHWR hAERSUM hCERSUM"
 
-; bar num:        1   2   3   4   5   6   7   8     9     10    11    12       13       14    15      16      17
-t_hms_tdcNames = "h1X h1Y h2X h2Y h1T h2T hT1 hASUM hBSUM hCSUM hDSUM hPSHWRLO hPSHWRHI hSHWR hAERSUM hCERSUM hT2"
+; bar num:              1   2   3   4   5   6   7   8     9     10    11    12       13       14    15      16      17    18      19     20      21
+t_hms_tdcNames = "h1X h1Y h2X h2Y h1T h2T hT1 hASUM hBSUM hCSUM hDSUM hPSHWRLO hPSHWRHI hSHWR hAERSUM hCERSUM hT2 hDCREF1 hDCREF2 hDCREF3 hDCREF4"
diff --git a/PARAM/TRIG/thms_raster.param b/PARAM/TRIG/thms_raster.param
new file mode 100644
index 0000000000000000000000000000000000000000..7888eccff06df22e596337ec2df41ae8ef9644cf
--- /dev/null
+++ b/PARAM/TRIG/thms_raster.param
@@ -0,0 +1,7 @@
+t_hms_numAdc = 4
+t_hms_numTdc = 1
+
+; bar num:                1     2     3     4     5      6     7       8
+t_hms_adcNames = "hFRXA hFRYA hFRXB hFRYB"
+t_hms_tdcNames = "hFRXA"
+
diff --git a/PARAM/TRIG/tshms.param b/PARAM/TRIG/tshms.param
new file mode 100644
index 0000000000000000000000000000000000000000..d30f2aca4242fc798921629daa3b670c768bfd63
--- /dev/null
+++ b/PARAM/TRIG/tshms.param
@@ -0,0 +1,8 @@
+t_shms_numAdc = 3
+t_shms_numTdc = 22
+
+; bar num:            1       2       3
+t_shms_adcNames = "pAERSUM pHGCSUM pNGCSUM"
+
+; bar num:          1   2   3   4   5   6   7   8   9     10      11      12      13     14      15      16      17      18      19      20      21       22
+t_shms_tdcNames = "pT1 pT2 p1X p1Y p2X p2Y p1T p2T pT3 pAERSUM pHGCSUM pNGCSUM pDCREF1 pDCREF2 pDCREF3 pDCREF4 pDCREF5 pDCREF6 pDCREF7 pDCREF8 pDCREF9 pDCREF10" 
\ No newline at end of file
diff --git a/PARAM/TRIG/tshms_raster.param b/PARAM/TRIG/tshms_raster.param
new file mode 100644
index 0000000000000000000000000000000000000000..7898b042fecfea6a51503c6b8a13402b394a7bba
--- /dev/null
+++ b/PARAM/TRIG/tshms_raster.param
@@ -0,0 +1,7 @@
+t_shms_numAdc = 4
+t_shms_numTdc = 1
+
+; bar num:                1     2     3     4     5      6     7       8
+t_shms_adcNames = "pFRXA pFRYA pFRXB pFRYB"
+t_shms_tdcNames = "pFRXA"
+
diff --git a/SCRIPTS/HMS/hhodo_analysis.C b/SCRIPTS/HMS/hhodo_analysis.C
new file mode 100644
index 0000000000000000000000000000000000000000..f4f0fb1d89b8717d5e0d3fed560db198a9326221
--- /dev/null
+++ b/SCRIPTS/HMS/hhodo_analysis.C
@@ -0,0 +1,140 @@
+
+// Custom analysis of the hodoscope individual channels
+// Author: Eric Pooser, pooser@jlab.org, 01/06/2017
+// Script adapted from hcana/examples/hhodrawhists.C
+
+//#include "TF1.h"
+
+#define NPLANES  4
+#define NSIDES   2
+#define NSIGNALS 2
+#define MAXBARS  16
+
+TString  SPECTROMETER = "H";
+TString  DETECTOR     = "hod";
+
+TString  plane_names[NPLANES] = {"1x", "1y", "2x", "2y"};
+Int_t    nbars[NPLANES]       = {16, 10, 16, 10};
+TString  sides[NSIDES]        = {"neg", "pos"};
+TString  signals[NSIGNALS]    = {"adc", "tdc"};
+
+static const Double_t ADC_MIN   = 0.0;
+static const Double_t ADC_MAX   = 25000.0;
+static const Int_t    ADC_NBINS = 2500;
+
+static const Double_t TDC_MIN   = 0.0;
+static const Double_t TDC_MAX   = 8000.0;
+static const Int_t    TDC_NBINS = 800;
+
+Int_t    nhits[NPLANES][NSIDES][NSIGNALS];
+Double_t paddles[NPLANES][NSIDES][NSIGNALS][MAXBARS];
+Double_t values[NPLANES][NSIDES][NSIGNALS][MAXBARS];
+
+TH1F *h[NPLANES*NSIDES*NSIGNALS*MAXBARS];
+TFile *rif, *rof;
+
+TTree *T;
+
+TString base_name, ndata_name, padlist_name, vallist_name;
+
+Int_t nbins, hmin, hmax, hindex, hindex_base;
+
+TString ibarname, title, name;
+
+Int_t ibar;
+Double_t val;
+
+void hhodo_analysis(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  } 
+
+  // Define root in/out files
+  rif  = new TFile(Form("ROOTfiles/hhodo_htrig_replay_%d.root", RunNumber), "READ");
+  rof = new TFile(Form("ROOTfiles/hhodo_analysis_%d.root", RunNumber), "RECREATE");
+  rif->cd();
+  
+  // Acquire tree from root in file
+  T = new TTree();
+  T = (TTree*) rif->Get("T");
+
+  for(Int_t iplane = 0; iplane < NPLANES; iplane++) {
+    for(Int_t iside = 0; iside < NSIDES; iside++) {
+      for(Int_t isignal = 0; isignal < NSIGNALS; isignal++) {
+
+	base_name = SPECTROMETER + "." + DETECTOR + "." +
+	  plane_names[iplane] + "." + sides[iside] + signals[isignal];
+	ndata_name   = "Ndata." + base_name + "pad";
+	padlist_name = base_name + "pad";
+	vallist_name = base_name + "val";
+
+	// Set branch addresses
+	T->SetBranchAddress(ndata_name,   &nhits[iplane][iside][isignal]);
+	T->SetBranchAddress(padlist_name, &paddles[iplane][iside][isignal][0]);
+	T->SetBranchAddress(vallist_name, &values[iplane][iside][isignal][0]);
+
+	// Create histograms
+	// ADC and TDC histogram for each
+	if(signals[isignal] == "adc")
+	  nbins = ADC_NBINS; hmin = ADC_MIN; hmax = ADC_MAX;
+	if(signals[isignal] == "tdc")
+	  nbins = TDC_NBINS; hmin = TDC_MIN; hmax = TDC_MAX;
+	
+	rof->cd();
+	for(Int_t ibar = 0; ibar < nbars[iplane]; ibar++) {
+	  hindex = iplane*NSIDES*NSIGNALS*MAXBARS
+	    + iside*NSIGNALS*MAXBARS + isignal*MAXBARS + ibar;
+	  ibarname = Form("%d", ibar + 1);
+	  title = "h" + plane_names[iplane] + ibarname + sides[iside]
+	    + " " + signals[isignal];
+	  name = "h"; name += Form("%d", hindex);
+	  //  cout << name << " " << title << " " << nbins << " " << hmin << " "
+	  //       << hmax << endl;
+	  h[hindex] = new TH1F(name, title, nbins, hmin, hmax);
+	}
+	rif->cd();
+
+      }  // Signal loop
+    }  // Side loop
+  }  // Plane loop
+
+  // Loop over the events, filling the histograms
+  for(Int_t ievent = 0, N = T->GetEntries(); ievent < N; ievent++) {
+    T->GetEntry(ievent);
+    for(Int_t iplane = 0; iplane < NPLANES; iplane++){
+      for(Int_t iside = 0;iside < NSIDES; iside++) {
+	for(Int_t isignal = 0;isignal < NSIGNALS; isignal++) {
+
+	  hindex_base = iplane*NSIDES*NSIGNALS*MAXBARS
+	    + iside*NSIGNALS*MAXBARS + isignal*MAXBARS;
+
+	  for(Int_t ihit = 0; ihit < nhits[iplane][iside][isignal]; ihit++) {
+	    ibar = TMath::Nint(paddles[iplane][iside][isignal][ihit]) - 1;
+	    val = values[iplane][iside][isignal][ihit];
+	    hindex = hindex_base + ibar;
+	    h[hindex]->Fill(val);
+	  }  // Hit loop
+	}  // Signal loop
+      }  // Side loop
+    }  // Plane loop
+
+    // Display or save the histograms
+
+  }
+
+  // Write the root out file
+  rof->cd(); rof->Write();
+  
+}
diff --git a/SCRIPTS/HMS/replay_epics_test.C b/SCRIPTS/HMS/replay_epics_test.C
new file mode 100644
index 0000000000000000000000000000000000000000..78a56f465b09f281694469aba161ad3fd691c647
--- /dev/null
+++ b/SCRIPTS/HMS/replay_epics_test.C
@@ -0,0 +1,110 @@
+void replay_epics_test(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/epics_variable_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/thms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hhodo_htrig.map");
+
+  // debug : testing epics variable in Ttree
+  // gHaEvtHandlers->Add (new THaEpicsEvtHandler("epics","HC EPICS event type 180"));
+  
+  // Set up the equipment to be analyzed.
+  THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
+  gHaApps->Add(HMS);
+  // Add hodoscope to HMS apparatus
+  THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  HMS->AddDetector(hod);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* hms = new THcTrigDet("hms", "HMS Trigger Information");
+  TRG->AddDetector(hms);
+
+  // Add EPICS variables
+  //  THaEpics* epics = new THcEpics("T", "Epics");
+  //   gHaApps->AddDetector(epics);
+
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/HMS/HODO/hhodoana.def");
+ analyzer->SetCutFile("DEF-files/HMS/HODO/hhodoana_cuts.def");    // optional
+
+ analyzer->SetOdefFile("DEF-files/HMS/EPICS/epics.def");  // Call EPICS variables  K.Park
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/HMS/replay_hcal_test_stand.C b/SCRIPTS/HMS/replay_hcal_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..25f09d30f35735751d73414dce04fcb6ce22fe16
--- /dev/null
+++ b/SCRIPTS/HMS/replay_hcal_test_stand.C
@@ -0,0 +1,94 @@
+void replay_hcal_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/hcal_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hcal.map");
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
+  gHaApps->Add(HMS);
+  // Add hodoscope to HMS apparatus
+  THcShower* cal = new THcShower("cal", "Calorimeter");
+  HMS->AddDetector(cal);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/HMS/CAL/hcalana.def");
+ analyzer->SetCutFile("DEF-files/HMS/CAL/hcalana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/HMS/replay_hcer_test_stand.C b/SCRIPTS/HMS/replay_hcer_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..83c5024494e91bb8089f0ee324b97c6487badd9a
--- /dev/null
+++ b/SCRIPTS/HMS/replay_hcer_test_stand.C
@@ -0,0 +1,104 @@
+void replay_hcer_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/hcer_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/thms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hcer_htrig.map");
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
+  gHaApps->Add(HMS);
+  // Add hodoscope to HMS apparatus
+  THcCherenkov* cer = new THcCherenkov("cer", "Heavy Gas Cherenkov");
+  HMS->AddDetector(cer);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* hms = new THcTrigDet("hms", "HMS Trigger Information");
+  TRG->AddDetector(hms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/HMS/CER/hcerana.def");
+ analyzer->SetCutFile("DEF-files/HMS/CER/hcerana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/HMS/replay_hdc_test_stand.C b/SCRIPTS/HMS/replay_hdc_test_stand.C
index a8bfad8a019642ecc8ff89c740251f41175c3615..f45e0c3fc53bfb3e2db06547c8e6c852a921005d 100644
--- a/SCRIPTS/HMS/replay_hdc_test_stand.C
+++ b/SCRIPTS/HMS/replay_hdc_test_stand.C
@@ -16,8 +16,8 @@ void replay_hdc_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
   }
 
   // Create file name patterns.
-  const char* RunFileNamePattern = "raw/test_%d.dat";
-  const char* ROOTFileNamePattern = "ROOTfiles/test_%d.root";
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/hdc_replay_%d.root";
   // Add variables to global list.
   gHcParms->Define("gen_run_number", "Run Number", RunNumber);
   gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
@@ -31,27 +31,34 @@ void replay_hdc_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
 
   // Load params for HMS DC test stand configuration
   gHcParms->Load("PARAM/HMS/DC/hdc_test_stand.param");
+  gHcParms->Load("PARAM/TRIG/thms.param");
 
   // Load the Hall C style detector map
   gHcDetectorMap = new THcDetectorMap();
   //gHcDetectorMap->Load(gHcParms->GetString("g_decode_map_filename"));
-  gHcDetectorMap->Load("MAPS/HMS/DETEC/hdc.map");
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hdc_htrig.map");
 
   // Set up the equipment to be analyzed.
   THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
   gHaApps->Add(HMS);
-  // Add HMS drift chambers
-  HMS->AddDetector(new THcDC("dc", "Drift Chambers"));
-
-  // Additional detectors:
-  //HMS->AddDetector(new THcHodoscope("hod", "Hodoscope"));
-  //HMS->AddDetector(new THcShower("cal", "Shower"));
-  //
-  //THcCherenkov* cherenkov = new THcCherenkov("cher", "Gas Cerenkov");
-  //HMS->AddDetector(cherenkov);
-  //THcAerogel* aerogel = new THcAerogel("aero", "Aerogel Cerenkov");
-  //HMS->AddDetector(aerogel);
-  //
+  // Add drift chambers to HMS apparatus
+  THcDC* dc = new THcDC("dc", "Drift Chambers");
+  HMS->AddDetector(dc);
+  // Add hodoscope to HMS apparatus
+  // THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  // HMS->AddDetector(hod);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* hms = new THcTrigDet("hms", "HMS Trigger Information");
+  TRG->AddDetector(hms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
   //THcScalerEvtHandler *hscaler = new THcScalerEvtHandler("HS", "HC scaler event type 0");
   //hscaler->SetDebugFile("HScaler.txt");
   //gHaEvtHandlers->Add(hscaler);
diff --git a/SCRIPTS/HMS/replay_hhodo_test_stand.C b/SCRIPTS/HMS/replay_hhodo_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..867c771a2dd7f55334d39a7efd6a8bacc570f6f0
--- /dev/null
+++ b/SCRIPTS/HMS/replay_hhodo_test_stand.C
@@ -0,0 +1,104 @@
+void replay_hhodo_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/hhodo_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/thms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hhodo_htrig.map");
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
+  gHaApps->Add(HMS);
+  // Add hodoscope to HMS apparatus
+  THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  HMS->AddDetector(hod);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* hms = new THcTrigDet("hms", "HMS Trigger Information");
+  TRG->AddDetector(hms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/HMS/HODO/hhodoana.def");
+ analyzer->SetCutFile("DEF-files/HMS/HODO/hhodoana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/HMS/replay_hms.C b/SCRIPTS/HMS/replay_hms.C
new file mode 100644
index 0000000000000000000000000000000000000000..c51371b86af2ddf4468681932b625bb79a31d704
--- /dev/null
+++ b/SCRIPTS/HMS/replay_hms.C
@@ -0,0 +1,117 @@
+void replay_hms(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/hms_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/thms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hms_stack.map");
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* hms = new THcTrigDet("hms", "HMS Trigger Information");
+  TRG->AddDetector(hms);
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
+  gHaApps->Add(HMS);
+  // Add drift chambers to HMS apparatus
+  THcDC* dc = new THcDC("dc", "Drift Chambers");
+  HMS->AddDetector(dc);
+  // Add hodoscope to HMS apparatus
+  THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  HMS->AddDetector(hod);
+  // Add Cherenkov to HMS apparatus
+  THcCherenkov* cer = new THcCherenkov("cer", "Heavy Gas Cherenkov");
+  HMS->AddDetector(cer);
+  // Add calorimeter to HMS apparatus
+  THcShower* cal = new THcShower("cal", "Calorimeter");
+  HMS->AddDetector(cal);
+
+  // Include golden track information
+  THaGoldenTrack* gtr = new THaGoldenTrack("H.gtr", "HMS Golden Track", "H");
+  gHaPhysics->Add(gtr);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/HMS/GEN/hstackana.def");
+ analyzer->SetCutFile("DEF-files/HMS/GEN/hstackana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/HMS/replay_hms_raster_simple.C b/SCRIPTS/HMS/replay_hms_raster_simple.C
new file mode 100644
index 0000000000000000000000000000000000000000..36843a1248515653c6fb62088b827d7b6e909ca8
--- /dev/null
+++ b/SCRIPTS/HMS/replay_hms_raster_simple.C
@@ -0,0 +1,100 @@
+void replay_hms_raster_simple(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/hms_raster_simple_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/thms_raster.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hraster_simple.map");
+  
+  // Set up the equipment to be analyzed.
+  //THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
+  //gHaApps->Add(HMS);
+  // Add hodoscope to HMS apparatus
+  //THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  //HMS->AddDetector(hod);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* hms = new THcTrigDet("hms", "HMS Trigger Information");
+  TRG->AddDetector(hms);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/HMS/RASTER/hms_raster_simple.def");
+ analyzer->SetCutFile("DEF-files/HMS/RASTER/hms_raster_simple_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/HMS/replay_hms_report.C b/SCRIPTS/HMS/replay_hms_report.C
new file mode 100644
index 0000000000000000000000000000000000000000..249057d5bb21d8764a114dc25782ada33e9f9f30
--- /dev/null
+++ b/SCRIPTS/HMS/replay_hms_report.C
@@ -0,0 +1,121 @@
+void replay_hms_report(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/hms_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/thms.param");
+  // Load params for HODO tof calibration. 
+  // gHcParms->Load("PARAM/HMS/HODO/htofcal.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  if ( RunNumber > 243) {
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hms_stack_spring17_current_run.map");
+  } else {
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/hms_stack_spring17_run_00001_00243.map");
+  }
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* hms = new THcTrigDet("hms", "HMS Trigger Information");
+  TRG->AddDetector(hms);
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
+  gHaApps->Add(HMS);
+  // Add drift chambers to HMS apparatus
+  THcDC* dc = new THcDC("dc", "Drift Chambers");
+  HMS->AddDetector(dc);
+  // Add hodoscope to HMS apparatus
+  THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  HMS->AddDetector(hod);
+  // Add Cherenkov to HMS apparatus
+  THcCherenkov* cer = new THcCherenkov("cer", "Heavy Gas Cherenkov");
+  HMS->AddDetector(cer);
+  // Add calorimeter to HMS apparatus
+  THcShower* cal = new THcShower("cal", "Calorimeter");
+  HMS->AddDetector(cal);
+
+  // Include golden track information
+  THaGoldenTrack* gtr = new THaGoldenTrack("H.gtr", "HMS Golden Track", "H");
+  gHaPhysics->Add(gtr);
+
+  // Add handler for prestart event 125.
+  if ( RunNumber > 243) {
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+  }
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/HMS/GEN/hstackana_report.def");
+ analyzer->SetCutFile("DEF-files/HMS/GEN/hstackana_report_cuts.def");    // optional
+
+ // File to record cuts accounting information
+  analyzer->SetSummaryFile(Form("REPORT_OUTPUT/HMS/summary_%05d.report", RunNumber));    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  analyzer->PrintReport("TEMPLATES/hstackana.template",Form("REPORT_OUTPUT/HMS/replay_hms_%05d.report", RunNumber));
+}
diff --git a/SCRIPTS/HMS/replay_htrig_test_stand.C b/SCRIPTS/HMS/replay_htrig_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..70effe5a478e68890bf3e8ded8c285cddc41b8e8
--- /dev/null
+++ b/SCRIPTS/HMS/replay_htrig_test_stand.C
@@ -0,0 +1,97 @@
+void replay_htrig_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/hms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/htrig_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS DC test stand configuration
+  gHcParms->Load("PARAM/TRIG/thms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/HMS/DETEC/htrig.map");
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* hms = new THcTrigDet("hms", "HMS Trigger Information");
+  TRG->AddDetector(hms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/HMS/TRIG/htrigana.def");
+ analyzer->SetCutFile("DEF-files/HMS/TRIG/htrigana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_paero_test_stand.C b/SCRIPTS/SHMS/replay_paero_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..aabfbfa8befcb226d6a4a308a18d26f125716d35
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_paero_test_stand.C
@@ -0,0 +1,104 @@
+void replay_paero_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/paero_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/tshms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/paero_ptrig.map");
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* SHMS = new THcHallCSpectrometer("P", "SHMS");
+  gHaApps->Add(SHMS);
+  // Add aeroscope to HMS apparatus
+  THcAerogel* aero = new THcAerogel("aero", "Aerogel");
+  SHMS->AddDetector(aero);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* shms = new THcTrigDet("shms", "SHMS Trigger Information");
+  TRG->AddDetector(shms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/SHMS/AERO/paeroana.def");
+ analyzer->SetCutFile("DEF-files/SHMS/AERO/paeroana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_pcal_test_stand.C b/SCRIPTS/SHMS/replay_pcal_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..278a8e5403a7b2eae651c0517364ab1c77801c79
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_pcal_test_stand.C
@@ -0,0 +1,94 @@
+void replay_pcal_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/pcal_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/pcal.map");
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* SHMS = new THcHallCSpectrometer("P", "SHMS");
+  gHaApps->Add(SHMS);
+  // Add hodoscope to HMS apparatus
+  THcShower* cal = new THcShower("cal", "Calorimeter");
+  SHMS->AddDetector(cal);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/SHMS/CAL/pcalana.def");
+ analyzer->SetCutFile("DEF-files/SHMS/CAL/pcalana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_pdc_test_stand.C b/SCRIPTS/SHMS/replay_pdc_test_stand.C
index 1cb393425eb347c0739dc288c9136ae66a120909..9fcbf867429321abe1d56597eb2e17d94b8273bf 100644
--- a/SCRIPTS/SHMS/replay_pdc_test_stand.C
+++ b/SCRIPTS/SHMS/replay_pdc_test_stand.C
@@ -16,8 +16,8 @@ void replay_pdc_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
   }
 
   // Create file name patterns.
-  const char* RunFileNamePattern = "raw/shms_dc_00%d.dat";
-  const char* ROOTFileNamePattern = "ROOTfiles/shms_dc_00%d.root";
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/pdc_replay_%d.root";
   // Add variables to global list.
   gHcParms->Define("gen_run_number", "Run Number", RunNumber);
   gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
@@ -29,6 +29,9 @@ void replay_pdc_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
   gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
   gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
 
+  // Load params for HMS DC test stand configuration
+  gHcParms->Load("PARAM/SHMS/DC/pdc_test_stand.param");
+
   gHcDetectorMap = new THcDetectorMap();
   //gHcDetectorMap->Load(gHcParms->GetString("g_decode_map_filename"));
   gHcDetectorMap->Load("MAPS/SHMS/DETEC/pdc.map");
@@ -36,10 +39,13 @@ void replay_pdc_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
   // Set up the equipment to be analyzed.
   THaApparatus* SHMS = new THcHallCSpectrometer("P", "SHMS");
   gHaApps->Add(SHMS);
-
   // Add SHMS drift chambers
   SHMS->AddDetector(new THcDC("dc", "Drift Chambers"));
 
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
   // Additional detectors:
   //HMS->AddDetector(new THcHodoscope("hod", "Hodoscope"));
   //HMS->AddDetector(new THcShower("cal", "Shower"));
diff --git a/SCRIPTS/SHMS/replay_phgcer_test_stand.C b/SCRIPTS/SHMS/replay_phgcer_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..53e1a432093aeba76eaf2051140fbfcf425ec591
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_phgcer_test_stand.C
@@ -0,0 +1,104 @@
+void replay_phgcer_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/phgcer_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/tshms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/phgcer_ptrig.map");
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* SHMS = new THcHallCSpectrometer("P", "SHMS");
+  gHaApps->Add(SHMS);
+  // Add hodoscope to HMS apparatus
+  THcCherenkov* hgcer = new THcCherenkov("hgcer", "Heavy Gas Cherenkov");
+  SHMS->AddDetector(hgcer);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* shms = new THcTrigDet("shms", "SHMS Trigger Information");
+  TRG->AddDetector(shms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/SHMS/HGCER/phgcerana.def");
+ analyzer->SetCutFile("DEF-files/SHMS/HGCER/phgcerana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_phodo_test_stand.C b/SCRIPTS/SHMS/replay_phodo_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..77a0707d0a6652f628803ab904ee161774baca29
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_phodo_test_stand.C
@@ -0,0 +1,104 @@
+void replay_phodo_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/phodo_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/tshms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/phodo_ptrig.map");
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* SHMS = new THcHallCSpectrometer("P", "SHMS");
+  gHaApps->Add(SHMS);
+  // Add hodoscope to HMS apparatus
+  THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  SHMS->AddDetector(hod);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* shms = new THcTrigDet("shms", "SHMS Trigger Information");
+  TRG->AddDetector(shms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/SHMS/HODO/phodoana.def");
+ analyzer->SetCutFile("DEF-files/SHMS/HODO/phodoana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_pngcer_test_stand.C b/SCRIPTS/SHMS/replay_pngcer_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..5efeae369abc871ab96dca1419bb078742d9742e
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_pngcer_test_stand.C
@@ -0,0 +1,104 @@
+void replay_pngcer_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/pngcer_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/tshms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/pngcer_ptrig.map");
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* SHMS = new THcHallCSpectrometer("P", "SHMS");
+  gHaApps->Add(SHMS);
+  // Add hodoscope to HMS apparatus
+  THcCherenkov* ngcer = new THcCherenkov("ngcer", "Noble Gas Cherenkov");
+  SHMS->AddDetector(ngcer);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* shms = new THcTrigDet("shms", "SHMS Trigger Information");
+  TRG->AddDetector(shms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/SHMS/NGCER/pngcerana.def");
+ analyzer->SetCutFile("DEF-files/SHMS/NGCER/pngcerana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_ptrig_test_stand.C b/SCRIPTS/SHMS/replay_ptrig_test_stand.C
new file mode 100644
index 0000000000000000000000000000000000000000..4c046bfe8a266e3b29922bc5478e6de3c16d7471
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_ptrig_test_stand.C
@@ -0,0 +1,97 @@
+void replay_ptrig_test_stand(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/ptrig_replay_%.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS DC test stand configuration
+  gHcParms->Load("PARAM/TRIG/tshms.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/ptrig.map");
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* shms = new THcTrigDet("shms", "SHMS Trigger Information");
+  TRG->AddDetector(shms);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/SHMS/TRIG/ptrigana.def");
+ analyzer->SetCutFile("DEF-files/SHMS/TRIG/ptrigana_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_shms.C b/SCRIPTS/SHMS/replay_shms.C
new file mode 100644
index 0000000000000000000000000000000000000000..b5c23b700e471e157d317e80943bfe333ef9c267
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_shms.C
@@ -0,0 +1,126 @@
+void replay_shms(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/shms_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for SHMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/tshms.param");
+
+  // Load custom tracking params
+  //gHcParms->Load("PARAM/SHMS/GEN/hgoldtrack.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/shms_stack.map");
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* shms = new THcTrigDet("shms", "SHMS Trigger Information");
+  TRG->AddDetector(shms);
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* SHMS = new THcHallCSpectrometer("P", "SHMS");
+  gHaApps->Add(SHMS);
+  // Add Noble Gas Cherenkov to SHMS apparatus
+  THcCherenkov* ngcer = new THcCherenkov("ngcer", "Noble Gas Cherenkov");
+  SHMS->AddDetector(ngcer);
+  // Add drift chambers to SHMS apparatus
+  THcDC* dc = new THcDC("dc", "Drift Chambers");
+  SHMS->AddDetector(dc);
+  // Add hodoscope to SHMS apparatus
+  THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  SHMS->AddDetector(hod);
+  // Add Heavy Gas Cherenkov to SHMS apparatus
+  THcCherenkov* hgcer = new THcCherenkov("hgcer", "Heavy Gas Cherenkov");
+  SHMS->AddDetector(hgcer);
+  // Add Heavy Gas Cherenkov to SHMS apparatus
+  THcAerogel* aero = new THcAerogel("aero", "Aerogel");
+  SHMS->AddDetector(aero);
+  // Add calorimeter to SHMS apparatus
+  THcShower* cal = new THcShower("cal", "Calorimeter");
+  SHMS->AddDetector(cal);
+
+  // Include golden track information
+  THaGoldenTrack* gtr = new THaGoldenTrack("P.gtr", "SHMS Golden Track", "P");
+  gHaPhysics->Add(gtr);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+  analyzer->SetEvent(event);
+  analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+  analyzer->SetOutFile(ROOTFileName.Data());
+  analyzer->SetOdefFile("DEF-files/SHMS/GEN/pstackana.def");
+  analyzer->SetCutFile("DEF-files/SHMS/GEN/pstackana_cuts.def");    // optional
+
+  // File to record cuts accounting information
+  //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_shms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_shms_raster_simple.C b/SCRIPTS/SHMS/replay_shms_raster_simple.C
new file mode 100644
index 0000000000000000000000000000000000000000..0310699e4aec8d6deac8e1549921129941269145
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_shms_raster_simple.C
@@ -0,0 +1,100 @@
+void replay_shms_raster_simple(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/shms_raster_simple_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for HMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/tshms_raster.param");
+
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/praster_simple.map");
+  
+  // Set up the equipment to be analyzed.
+  //THaApparatus* HMS = new THcHallCSpectrometer("H", "HMS");
+  //gHaApps->Add(HMS);
+  // Add hodoscope to HMS apparatus
+  //THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  //HMS->AddDetector(hod);
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* shms = new THcTrigDet("shms", "SHMS Trigger Information");
+  TRG->AddDetector(shms);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+ analyzer->SetEvent(event);
+ analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+ analyzer->SetOutFile(ROOTFileName.Data());
+ analyzer->SetOdefFile("DEF-files/SHMS/RASTER/shms_raster_simple.def");
+ analyzer->SetCutFile("DEF-files/SHMS/RASTER/shms_raster_simple_cuts.def");    // optional
+
+ // File to record cuts accounting information
+ //analyzer->SetSummaryFile("summary_example.log");    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  //analyzer->PrintReport(    // optional
+  //  "TEMPLATES/dcana.template",
+  //  Form("REPORT_OUTPUT/replay_hms_%05d.report", RunNumber)
+  //);
+}
diff --git a/SCRIPTS/SHMS/replay_shms_report.C b/SCRIPTS/SHMS/replay_shms_report.C
new file mode 100644
index 0000000000000000000000000000000000000000..42549df65af43bcc39b1871d53a63ca45880679c
--- /dev/null
+++ b/SCRIPTS/SHMS/replay_shms_report.C
@@ -0,0 +1,124 @@
+void replay_shms_report(Int_t RunNumber=0, Int_t MaxEvent=0) {
+
+  // Get RunNumber and MaxEvent if not provided.
+  if(RunNumber == 0) {
+    cout << "Enter a Run Number (-1 to exit): ";
+    cin >> RunNumber;
+    if( RunNumber<=0 ) return;
+  }
+  if(MaxEvent == 0) {
+    cout << "\nNumber of Events to analyze: ";
+    cin >> MaxEvent;
+    if(MaxEvent == 0) {
+      cerr << "...Invalid entry\n";
+      exit;
+    }
+  }
+
+  // Create file name patterns.
+  const char* RunFileNamePattern = "raw/shms_all_%05d.dat";
+  const char* ROOTFileNamePattern = "ROOTfiles/shms_replay_%d.root";
+  // Add variables to global list.
+  gHcParms->Define("gen_run_number", "Run Number", RunNumber);
+  gHcParms->AddString("g_ctp_database_filename", "DBASE/standard.database");
+
+  // Load varibles from files to global list.
+  gHcParms->Load(gHcParms->GetString("g_ctp_database_filename"), RunNumber);
+
+  // g_ctp_parm_filename and g_decode_map_filename should now be defined.
+  gHcParms->Load(gHcParms->GetString("g_ctp_kinematics_filename"), RunNumber);
+  gHcParms->Load(gHcParms->GetString("g_ctp_parm_filename"));
+
+  // Load params for SHMS trigger configuration
+  gHcParms->Load("PARAM/TRIG/tshms.param");
+
+  // Load params for HODO tof calibration. 
+  //gHcParms->Load("PARAM/SHMS/HODO/ptofcal.param");
+
+ 
+  // Load the Hall C style detector map
+  gHcDetectorMap = new THcDetectorMap();
+  gHcDetectorMap->Load("MAPS/SHMS/DETEC/shms_stack.map");
+
+  // Add trigger apparatus
+  THaApparatus* TRG = new THcTrigApp("T", "TRG");
+  gHaApps->Add(TRG);
+  // Add trigger detector to trigger apparatus
+  THcTrigDet* shms = new THcTrigDet("shms", "SHMS Trigger Information");
+  TRG->AddDetector(shms);
+
+  // Set up the equipment to be analyzed.
+  THaApparatus* SHMS = new THcHallCSpectrometer("P", "SHMS");
+  gHaApps->Add(SHMS);
+  // Add Noble Gas Cherenkov to SHMS apparatus
+  THcCherenkov* ngcer = new THcCherenkov("ngcer", "Noble Gas Cherenkov");
+  SHMS->AddDetector(ngcer);
+  // Add drift chambers to SHMS apparatus
+  THcDC* dc = new THcDC("dc", "Drift Chambers");
+  SHMS->AddDetector(dc);
+  // Add hodoscope to SHMS apparatus
+  THcHodoscope* hod = new THcHodoscope("hod", "Hodoscope");
+  SHMS->AddDetector(hod);
+  // Add Heavy Gas Cherenkov to SHMS apparatus
+  THcCherenkov* hgcer = new THcCherenkov("hgcer", "Heavy Gas Cherenkov");
+  SHMS->AddDetector(hgcer);
+  // Add Heavy Gas Cherenkov to SHMS apparatus
+  THcAerogel* aero = new THcAerogel("aero", "Aerogel");
+  SHMS->AddDetector(aero);
+  // Add calorimeter to SHMS apparatus
+  THcShower* cal = new THcShower("cal", "Calorimeter");
+  SHMS->AddDetector(cal);
+
+  // Include golden track information
+  THaGoldenTrack* gtr = new THaGoldenTrack("P.gtr", "SHMS Golden Track", "P");
+  gHaPhysics->Add(gtr);
+
+  // Add handler for prestart event 125.
+  THcConfigEvtHandler* ev125 = new THcConfigEvtHandler("HC", "Config Event type 125");
+  gHaEvtHandlers->Add(ev125);
+
+  // Set up the analyzer - we use the standard one,
+  // but this could be an experiment-specific one as well.
+  // The Analyzer controls the reading of the data, executes
+  // tests/cuts, loops over Acpparatus's and PhysicsModules,
+  // and executes the output routines.
+  THcAnalyzer* analyzer = new THcAnalyzer;
+
+  // A simple event class to be output to the resulting tree.
+  // Creating your own descendant of THaEvent is one way of
+  // defining and controlling the output.
+  THaEvent* event = new THaEvent;
+
+  // Define the run(s) that we want to analyze.
+  // We just set up one, but this could be many.
+  char RunFileName[100];
+  sprintf(RunFileName, RunFileNamePattern, RunNumber);
+  THaRun* run = new THaRun(RunFileName);
+
+  // Eventually need to learn to skip over, or properly analyze
+  // the pedestal events
+  run->SetEventRange(1, MaxEvent);    // Physics Event number, does not
+                                      // include scaler or control events.
+  run->SetNscan(1);
+  run->SetDataRequired(0x7);
+  run->Print();
+
+  // Define the analysis parameters
+  TString ROOTFileName = Form(ROOTFileNamePattern, RunNumber);
+  analyzer->SetCountMode(2);    // 0 = counter is # of physics triggers
+                                // 1 = counter is # of all decode reads
+                                // 2 = counter is event number
+  analyzer->SetEvent(event);
+  analyzer->SetCrateMapFileName("MAPS/db_cratemap.dat");
+  analyzer->SetOutFile(ROOTFileName.Data());
+  analyzer->SetOdefFile("DEF-files/SHMS/GEN/pstackana_report.def");
+  analyzer->SetCutFile("DEF-files/SHMS/GEN/pstackana_report_cuts.def");    // optional
+
+  // File to record cuts accounting information
+  analyzer->SetSummaryFile(Form("REPORT_OUTPUT/SHMS/summary_%05d.report", RunNumber));    // optional
+
+  // Start the actual analysis.
+  analyzer->Process(run);
+  // Create report file from template.
+  analyzer->PrintReport("TEMPLATES/pstackana.template",Form("REPORT_OUTPUT/SHMS/replay_shms_%05d.report", RunNumber));
+}
diff --git a/TEMPLATES/dcana.template b/TEMPLATES/dcana.template
index d09f84e6b66ec80f2fc324e2c4d85631e8ed37d4..c8bf342498bf9292983ec7ba662ffcacb7dff8f5 100644
--- a/TEMPLATES/dcana.template
+++ b/TEMPLATES/dcana.template
@@ -1 +1,49 @@
            Standalone drift chamber analysis report template
+
+hmsDC1Planes6     {hmsDC1Planes6hits.npassed}  
+hmsDC2Planes6  	  {hmsDC2Planes6hits.npassed}  
+	       	   	       
+hmsDC1x1Planes5	  {hmsDC1_5hits_x1.npassed} {hmsDC1Planes6hits.npassed/hmsDC1_5hits_x1.npassed}
+hmsDC1y1Planes5	  {hmsDC1_5hits_y1.npassed} {hmsDC1Planes6hits.npassed/hmsDC1_5hits_y1.npassed}
+hmsDC1u1Planes5	  {hmsDC1_5hits_u1.npassed} {hmsDC1Planes6hits.npassed/hmsDC1_5hits_u1.npassed}
+hmsDC1v1Planes5	  {hmsDC1_5hits_v1.npassed} {hmsDC1Planes6hits.npassed/hmsDC1_5hits_v1.npassed}
+hmsDC1x2Planes5	  {hmsDC1_5hits_y2.npassed} {hmsDC1Planes6hits.npassed/hmsDC1_5hits_y2.npassed} 
+hmsDC1y2Planes5	  {hmsDC1_5hits_x2.npassed} {hmsDC1Planes6hits.npassed/hmsDC1_5hits_x2.npassed}
+	       	   	       
+hmsDC2x1Planes5	  {hmsDC2_5hits_x1.npassed} {hmsDC2Planes6hits.npassed/hmsDC2_5hits_x1.npassed}
+hmsDC2y1Planes5	  {hmsDC2_5hits_y1.npassed} {hmsDC2Planes6hits.npassed/hmsDC2_5hits_y1.npassed}
+hmsDC2u1Planes5	  {hmsDC2_5hits_u1.npassed} {hmsDC2Planes6hits.npassed/hmsDC2_5hits_u1.npassed}
+hmsDC2v1Planes5	  {hmsDC2_5hits_v1.npassed} {hmsDC2Planes6hits.npassed/hmsDC2_5hits_v1.npassed}
+hmsDC2x2Planes5	  {hmsDC2_5hits_y2.npassed} {hmsDC2Planes6hits.npassed/hmsDC2_5hits_y2.npassed} 
+hmsDC2y2Planes5	  {hmsDC2_5hits_x2.npassed} {hmsDC2Planes6hits.npassed/hmsDC2_5hits_x2.npassed}
+	       	   	       
+
+*****************************
+*HMS TRACKING EFFICIENCIES *
+*****************************
+htrig                          :   {hmscoin_event.npassed}
+hhitslt = passed hits/cham     :   {hmsHitsLt.npassed}
+hhitsplanes = +planes >= 5/6   :   {hmsHitsPlanes.npassed}
+hhitsplanessps = + sps         :   {hSpacePoints.npassed}
+hhitsplanesspsstubs +stub      :   {hSpacePointsStub.npassed}
+hsfoundtrack                   :   {hFoundTrack.npassed}
+hscleantrack                   :   {hCleanTrack.npassed}
+hstublt = passed stub tests    :   {hStubLT.npassed}
+h1hitslt                       :   {hms1HitsLt.npassed}
+h2hitslt                       :   {hms2HitsLt.npassed}
+h1planesgt                     :   {hmsDC1PlanesGT.npassed}
+h2planesgt                     :   {hmsDC2PlanesGT.npassed}
+hplanesgt = gt 5 planes/cham   :   {hmsPlanseGT.npassed}
+f1hspacepoints                 :   {f1HSpacePoints.npassed}
+f2hspacepoints                 :   {f2HSpacePoints.npassed}
+htest1=p hits/planes, f sp     :   {hTest1.npassed}
+htest2=p sp, f stubs           :   {hTest2.npassed}
+hdid                           :   {HMSScinDid.npassed}
+hdide                          :   {HMSScinDide.npassed}
+hdidh                          :   {HMSScinDidh.npassed}
+hscinshould                    :   {HMSScinShould.npassed}
+hscinshoulde                   :   {HMSScinShoulde.npassed}
+hscinshouldh                   :   {HMSScinShouldh.npassed}
+SING FID TRACK EFFIC           : {HMSScinDid.npassed/(HMSScinShould.npassed+0.0001):%8.4f} +- {(sqrt(HMSScinShould.npassed-HMSScinDid.npassed)/(HMSScinShould.npassed+.0001)):%8.4f}
+E SING FID TRACK EFFIC         : {HMSScinDide.npassed/(HMSScinShoulde.npassed+0.0001):%8.4f} +- {(sqrt(HMSScinShoulde.npassed-HMSScinDide.npassed)/(HMSScinShoulde.npassed+.0001)):%8.4f}
+HADRON SING FID TRACK EFFIC    : {HMSScinDidh.npassed/(HMSScinShouldh.npassed+0.0001):%8.4f} +- {(sqrt(HMSScinShouldh.npassed-HMSScinDidh.npassed)/(HMSScinShouldh.npassed+.0001)):%8.4f}
diff --git a/TEMPLATES/hstackana.template b/TEMPLATES/hstackana.template
new file mode 100644
index 0000000000000000000000000000000000000000..0bffaf193231e918c3d4dd6ed3022a909cfc4265
--- /dev/null
+++ b/TEMPLATES/hstackana.template
@@ -0,0 +1,64 @@
+Run #{gen_run_number}
+           Standalone drift chamber analysis report template
+The names of the HMS drift chamber planes are: 
+{hdc_plane_names}
+Horizontal drift chamber z positions:
+Chamber 1: {hdc_zpos[0]:%6.2f} {hdc_zpos[1]:%6.2f} {hdc_zpos[2]:%6.2f} 
+           {hdc_zpos[3]:%6.2f} {hdc_zpos[4]:%6.2f} {hdc_zpos[5]:%6.2f} 
+Chamber 2: {hdc_zpos[6]:%6.2f} {hdc_zpos[7]:%6.2f} {hdc_zpos[8]:%6.2f} 
+           {hdc_zpos[9]:%6.2f} {hdc_zpos[10]:%6.2f} {hdc_zpos[11]:%6.2f}
+
+All triggers:  {all_trigs.npassed}
+ 
+hmsDC1Planes_large  Counts:  {hmsDC1Planes_large.npassed} /all_trigs : {hmsDC1Planes_large.npassed/all_trigs.npassed}
+hmsDC2Planes_large  Counts:	  {hmsDC2Planes_large.npassed}  /all_trigs : {hmsDC2Planes_large.npassed/all_trigs.npassed}  
+
+hmsDC1Planes6     Counts: {hmsDC1Planes6hits.npassed} /all_trigs : {hmsDC1Planes6hits.npassed/all_trigs.npassed}
+hmsDC2Planes6  	  Counts: {hmsDC2Planes6hits.npassed} /all_trigs : {hmsDC2Planes6hits.npassed/all_trigs.npassed}  
+
+hmsDC1x1Planes5	  Counts: {hmsDC1_5hits_x1.npassed} eff : {hmsDC1_6hits_x1.npassed/hmsDC1_5hits_x1.npassed}
+hmsDC1u1Planes5	  Counts: {hmsDC1_5hits_u1.npassed} eff : {hmsDC1_6hits_u1.npassed/hmsDC1_5hits_u1.npassed}
+hmsDC1y2Planes5	  Counts: {hmsDC1_5hits_y2.npassed} eff : {hmsDC1_6hits_y2.npassed/hmsDC1_5hits_y2.npassed}
+hmsDC1v1Planes5	  Counts: {hmsDC1_5hits_v1.npassed} eff : {hmsDC1_6hits_v1.npassed/hmsDC1_5hits_v1.npassed}
+hmsDC1y1Planes5	  Counts: {hmsDC1_5hits_y1.npassed} eff : {hmsDC1_6hits_y1.npassed/hmsDC1_5hits_y1.npassed}
+hmsDC1x2Planes5	  Counts: {hmsDC1_5hits_x2.npassed} eff : {hmsDC1_6hits_x2.npassed/hmsDC1_5hits_x2.npassed}
+
+
+hmsDC2x1Planes5	  Counts: {hmsDC2_5hits_x1.npassed} eff : {hmsDC2_6hits_x1.npassed/hmsDC2_5hits_x1.npassed}
+hmsDC2u1Planes5	  Counts: {hmsDC2_5hits_u1.npassed} eff : {hmsDC2_6hits_u1.npassed/hmsDC2_5hits_u1.npassed}
+hmsDC2y2Planes5	  Counts: {hmsDC2_5hits_y2.npassed} eff : {hmsDC2_6hits_y2.npassed/hmsDC2_5hits_y2.npassed}
+hmsDC2v1Planes5	  Counts: {hmsDC2_5hits_v1.npassed} eff : {hmsDC2_6hits_v1.npassed/hmsDC2_5hits_v1.npassed}
+hmsDC2y1Planes5	  Counts: {hmsDC2_5hits_y1.npassed} eff : {hmsDC2_6hits_y1.npassed/hmsDC2_5hits_y1.npassed}
+hmsDC2x2Planes5	  Counts: {hmsDC2_5hits_x2.npassed} eff : {hmsDC2_6hits_x2.npassed/hmsDC2_5hits_x2.npassed}
+	       	                      	       
+	       	   	       
+
+*****************************
+*HMS TRACKING EFFICIENCIES *
+*****************************
+htrig                          :   {hmscoin_event.npassed}
+hhitslt = passed hits/cham     :   {hmsHitsLt.npassed}
+hhitsplanes = +planes >= 5/6   :   {hmsHitsPlanes.npassed}
+hhitsplanessps = + sps         :   {hSpacePoints.npassed}
+hhitsplanesspsstubs +stub      :   {hSpacePointsStub.npassed}
+hsfoundtrack                   :   {hFoundTrack.npassed}
+hscleantrack                   :   {hCleanTrack.npassed}
+hstublt = passed stub tests    :   {hStubLT.npassed}
+h1hitslt                       :   {hms1HitsLt.npassed}
+h2hitslt                       :   {hms2HitsLt.npassed}
+h1planesgt                     :   {hmsDC1PlanesGT.npassed}
+h2planesgt                     :   {hmsDC2PlanesGT.npassed}
+hplanesgt = gt 5 planes/cham   :   {hmsPlanesGT.npassed}
+f1hspacepoints                 :   {f1HSpacePoints.npassed}
+f2hspacepoints                 :   {f2HSpacePoints.npassed}
+htest1=p hits/planes, f sp     :   {hTest1.npassed}
+htest2=p sp, f stubs           :   {hTest2.npassed}
+hdid                           :   {HMSScinDid.npassed}
+hdide                          :   {HMSScinDide.npassed}
+hdidh                          :   {HMSScinDidh.npassed}
+hscinshould                    :   {HMSScinShould.npassed}
+hscinshoulde                   :   {HMSScinShoulde.npassed}
+hscinshouldh                   :   {HMSScinShouldh.npassed}
+SING FID TRACK EFFIC           : {HMSScinDid.npassed/(HMSScinShould.npassed+0.0001):%8.4f} +- {(sqrt(HMSScinShould.npassed-HMSScinDid.npassed)/(HMSScinShould.npassed+.0001)):%8.4f}
+E SING FID TRACK EFFIC         : {HMSScinDide.npassed/(HMSScinShoulde.npassed+0.0001):%8.4f} +- {(sqrt(HMSScinShoulde.npassed-HMSScinDide.npassed)/(HMSScinShoulde.npassed+.0001)):%8.4f}
+HADRON SING FID TRACK EFFIC    : {HMSScinDidh.npassed/(HMSScinShouldh.npassed+0.0001):%8.4f} +- {(sqrt(HMSScinShouldh.npassed-HMSScinDidh.npassed)/(HMSScinShouldh.npassed+.0001)):%8.4f}
diff --git a/TEMPLATES/pstackana.template b/TEMPLATES/pstackana.template
new file mode 100644
index 0000000000000000000000000000000000000000..e1ce7848f3b03301aabc69293bc725454900147d
--- /dev/null
+++ b/TEMPLATES/pstackana.template
@@ -0,0 +1,64 @@
+Run #{gen_run_number}
+           Standalone drift chamber analysis report template
+The names of the HMS drift chamber planes are: 
+{pdc_plane_names}
+Horizontal drift chamber z positions:
+Chamber 1: {pdc_zpos[0]:%6.2f} {pdc_zpos[1]:%6.2f} {pdc_zpos[2]:%6.2f} 
+           {pdc_zpos[3]:%6.2f} {pdc_zpos[4]:%6.2f} {pdc_zpos[5]:%6.2f} 
+Chamber 2: {pdc_zpos[6]:%6.2f} {pdc_zpos[7]:%6.2f} {pdc_zpos[8]:%6.2f} 
+           {pdc_zpos[9]:%6.2f} {pdc_zpos[10]:%6.2f} {pdc_zpos[11]:%6.2f}
+
+All triggers:  {all_trigs.npassed}
+ 
+shmsDC1Planes_large  Counts:  {shmsDC1Planes_large.npassed} /all_trigs : {shmsDC1Planes_large.npassed/all_trigs.npassed}
+shmsDC2Planes_large  Counts:	  {shmsDC2Planes_large.npassed}  /all_trigs : {shmsDC2Planes_large.npassed/all_trigs.npassed}  
+
+shmsDC1Planes6     Counts: {shmsDC1Planes6hits.npassed} /all_trigs : {shmsDC1Planes6hits.npassed/all_trigs.npassed}
+shmsDC2Planes6  	  Counts: {shmsDC2Planes6hits.npassed} /all_trigs : {shmsDC2Planes6hits.npassed/all_trigs.npassed}  
+
+	       	                      	       
+shmsDC1x1Planes5	  Counts: {shmsDC1_5hits_x1.npassed} eff : {shmsDC1_6hits_x1.npassed/shmsDC1_5hits_x1.npassed}
+shmsDC1u1Planes5	  Counts: {shmsDC1_5hits_u1.npassed} eff : {shmsDC1_6hits_u1.npassed/shmsDC1_5hits_u1.npassed}
+shmsDC1u2Planes5	  Counts: {shmsDC1_5hits_u2.npassed} eff : {shmsDC1_6hits_u2.npassed/shmsDC1_5hits_u2.npassed}
+shmsDC1v1Planes5	  Counts: {shmsDC1_5hits_v1.npassed} eff : {shmsDC1_6hits_v1.npassed/shmsDC1_5hits_v1.npassed}
+shmsDC1v2Planes5	  Counts: {shmsDC1_5hits_v2.npassed} eff : {shmsDC1_6hits_v2.npassed/shmsDC1_5hits_v2.npassed}
+shmsDC1x2Planes5	  Counts: {shmsDC1_5hits_x2.npassed} eff : {shmsDC1_6hits_x2.npassed/shmsDC1_5hits_x2.npassed}
+
+
+shmsDC2x1Planes5	  Counts: {shmsDC2_5hits_x1.npassed} eff : {shmsDC2_6hits_x1.npassed/shmsDC2_5hits_x1.npassed}
+shmsDC2u1Planes5	  Counts: {shmsDC2_5hits_u1.npassed} eff : {shmsDC2_6hits_u1.npassed/shmsDC2_5hits_u1.npassed}
+shmsDC2u2Planes5	  Counts: {shmsDC2_5hits_u2.npassed} eff : {shmsDC2_6hits_u2.npassed/shmsDC2_5hits_u2.npassed}
+shmsDC2v1Planes5	  Counts: {shmsDC2_5hits_v1.npassed} eff : {shmsDC2_6hits_v1.npassed/shmsDC2_5hits_v1.npassed}
+shmsDC2v2Planes5	  Counts: {shmsDC2_5hits_v2.npassed} eff : {shmsDC2_6hits_v2.npassed/shmsDC2_5hits_v2.npassed}
+shmsDC2x2Planes5	  Counts: {shmsDC2_5hits_x2.npassed} eff : {shmsDC2_6hits_x2.npassed/shmsDC2_5hits_x2.npassed}
+	       	   	       
+
+*****************************
+*shms TRACKING EFFICIENCIES *
+*****************************
+htrig                          :   {shmscoin_event.npassed}
+hhitslt = passed hits/cham     :   {shmsHitsLt.npassed}
+hhitsplanes = +planes >= 5/6   :   {shmsHitsPlanes.npassed}
+hhitsplanessps = + sps         :   {hSpacePoints.npassed}
+hhitsplanesspsstubs +stub      :   {hSpacePointsStub.npassed}
+hsfoundtrack                   :   {hFoundTrack.npassed}
+hscleantrack                   :   {hCleanTrack.npassed}
+hstublt = passed stub tests    :   {hStubLT.npassed}
+h1hitslt                       :   {shms1HitsLt.npassed}
+h2hitslt                       :   {shms2HitsLt.npassed}
+h1planesgt                     :   {shmsDC1PlanesGT.npassed}
+h2planesgt                     :   {shmsDC2PlanesGT.npassed}
+hplanesgt = gt 5 planes/cham   :   {shmsPlanesGT.npassed}
+f1hspacepoints                 :   {f1HSpacePoints.npassed}
+f2hspacepoints                 :   {f2HSpacePoints.npassed}
+htest1=p hits/planes, f sp     :   {hTest1.npassed}
+htest2=p sp, f stubs           :   {hTest2.npassed}
+hdid                           :   {shmsScinDid.npassed}
+hdide                          :   {shmsScinDide.npassed}
+hdidh                          :   {shmsScinDidh.npassed}
+hscinshould                    :   {shmsScinShould.npassed}
+hscinshoulde                   :   {shmsScinShoulde.npassed}
+hscinshouldh                   :   {shmsScinShouldh.npassed}
+SING FID TRACK EFFIC           : {shmsScinDid.npassed/(shmsScinShould.npassed+0.0001):%8.4f} +- {(sqrt(shmsScinShould.npassed-shmsScinDid.npassed)/(shmsScinShould.npassed+.0001)):%8.4f}
+E SING FID TRACK EFFIC         : {shmsScinDide.npassed/(shmsScinShoulde.npassed+0.0001):%8.4f} +- {(sqrt(shmsScinShoulde.npassed-shmsScinDide.npassed)/(shmsScinShoulde.npassed+.0001)):%8.4f}
+HADRON SING FID TRACK EFFIC    : {shmsScinDidh.npassed/(shmsScinShouldh.npassed+0.0001):%8.4f} +- {(sqrt(shmsScinShouldh.npassed-shmsScinDidh.npassed)/(shmsScinShouldh.npassed+.0001)):%8.4f}
diff --git a/onlineGUI/.gitignore b/onlineGUI/.gitignore
index 504e539773afd5b0e5bd759abe29dc920f13cbfe..b7de8db4f78fe2cccb74d11fe9ea972baf5d3f54 100644
--- a/onlineGUI/.gitignore
+++ b/onlineGUI/.gitignore
@@ -1,3 +1,6 @@
 online
 *.o
 *.d
+*#
+onlineDict.C
+.root_history
diff --git a/onlineGUI/.rootrc b/onlineGUI/.rootrc
new file mode 100644
index 0000000000000000000000000000000000000000..22df0bce92387505d8fa55b26684ac84f800f9f1
--- /dev/null
+++ b/onlineGUI/.rootrc
@@ -0,0 +1,2 @@
+Rint.History: .root_history
+Unix.*.Root.MacroPath: .:$(ROOTSYS)/macros:./Macros
diff --git a/onlineGUI/Config/HMS/GEN/hallc_onlana.cfg b/onlineGUI/Config/HMS/GEN/hallc_onlana.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..f9dc3e1a8a7f5c7fc2c06cb185e402f8f659bad0
--- /dev/null
+++ b/onlineGUI/Config/HMS/GEN/hallc_onlana.cfg
@@ -0,0 +1,200 @@
+protorootfile ../ROOTfiles/hms_replay_XXXXX.root
+guicolor orange
+canvassize 1600 800
+#canvassize 800 800
+newpage 2 2
+title HMS Drift Chamber Reference Times
+hdc_ref1
+hdc_ref2
+hdc_ref3
+hdc_ref4
+newpage 4 3
+title HMS Drift Chamber Wire Maps
+hdc1x1_wirenum
+hdc2x1_wirenum
+hdc1y1_wirenum
+hdc2y1_wirenum
+hdc1u1_wirenum
+hdc2u1_wirenum
+hdc1v1_wirenum 
+hdc2v1_wirenum 
+hdc1y2_wirenum
+hdc2y2_wirenum
+hdc1x2_wirenum 
+hdc2x2_wirenum
+newpage 4 3 logz
+title HMS Drift Chamber TDC Times
+hdc1x1_wirenum_vs_tdc -nostat
+hdc2x1_wirenum_vs_tdc -nostat
+hdc1y1_wirenum_vs_tdc -nostat
+hdc2y1_wirenum_vs_tdc -nostat
+hdc1u1_wirenum_vs_tdc -nostat
+hdc2u1_wirenum_vs_tdc -nostat
+hdc1v1_wirenum_vs_tdc -nostat
+hdc2v1_wirenum_vs_tdc -nostat
+hdc1y2_wirenum_vs_tdc -nostat
+hdc2y2_wirenum_vs_tdc -nostat
+hdc1x2_wirenum_vs_tdc -nostat
+hdc2x2_wirenum_vs_tdc -nostat
+newpage 4 3
+title HMS Drift Chamber Residuals
+hdc1x1_wirenum_vs_resid -nostat
+hdc2x1_wirenum_vs_resid -nostat
+hdc1y1_wirenum_vs_resid -nostat
+hdc2y1_wirenum_vs_resid -nostat
+hdc1u1_wirenum_vs_resid -nostat
+hdc2u1_wirenum_vs_resid -nostat
+hdc1v1_wirenum_vs_resid -nostat
+hdc2v1_wirenum_vs_resid -nostat
+hdc1y2_wirenum_vs_resid -nostat
+hdc2y2_wirenum_vs_resid -nostat
+hdc1x2_wirenum_vs_resid -nostat
+hdc2x2_wirenum_vs_resid -nostat
+newpage 2 1 logz
+title HMS Drift Chamber Focal Plane
+hdc_xfp_vs_yxp -nostat
+hdc_xfpp_vs_yxpp -nostat
+newpage 2 3 logz
+title HMS Hodoscope 1X+ (Left)
+hhodo_1x_pos_adc_occu -nostat
+hhodo_1x_pos_tdc_occu -nostat
+hhodo_1x_pos_ped_vs_pad -nostat
+hhodo_1x_pos_pi_vs_pad -nostat
+hhodo_1x_pos_pamp_vs_pad -nostat
+hhodo_1x_pos_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title HMS Hodoscope 1X- (Left)
+hhodo_1x_neg_adc_occu -nostat
+hhodo_1x_neg_tdc_occu -nostat
+hhodo_1x_neg_ped_vs_pad -nostat
+hhodo_1x_neg_pi_vs_pad -nostat
+hhodo_1x_neg_pamp_vs_pad -nostat
+hhodo_1x_neg_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title HMS Hodoscope 1Y+ (Left)
+hhodo_1y_pos_adc_occu -nostat
+hhodo_1y_pos_tdc_occu -nostat
+hhodo_1y_pos_ped_vs_pad -nostat
+hhodo_1y_pos_pi_vs_pad -nostat
+hhodo_1y_pos_pamp_vs_pad -nostat
+hhodo_1y_pos_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title HMS Hodoscope 1Y- (Left)
+hhodo_1y_neg_adc_occu -nostat
+hhodo_1y_neg_tdc_occu -nostat
+hhodo_1y_neg_ped_vs_pad -nostat
+hhodo_1y_neg_pi_vs_pad -nostat
+hhodo_1y_neg_pamp_vs_pad -nostat
+hhodo_1y_neg_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title HMS Hodoscope 2X+ (Left)
+hhodo_2x_pos_adc_occu -nostat
+hhodo_2x_pos_tdc_occu -nostat
+hhodo_2x_pos_ped_vs_pad -nostat
+hhodo_2x_pos_pi_vs_pad -nostat
+hhodo_2x_pos_pamp_vs_pad -nostat
+hhodo_2x_pos_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title HMS Hodoscope 2X- (Left)
+hhodo_2x_neg_adc_occu -nostat
+hhodo_2x_neg_tdc_occu -nostat
+hhodo_2x_neg_ped_vs_pad -nostat
+hhodo_2x_neg_pi_vs_pad -nostat
+hhodo_2x_neg_pamp_vs_pad -nostat
+hhodo_2x_neg_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title HMS Hodoscope 2Y+ (Left)
+hhodo_2y_pos_adc_occu -nostat
+hhodo_2y_pos_tdc_occu -nostat
+hhodo_2y_pos_ped_vs_pad -nostat
+hhodo_2y_pos_pi_vs_pad -nostat
+hhodo_2y_pos_pamp_vs_pad -nostat
+hhodo_2y_pos_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title HMS Hodoscope 2Y- (Left)
+hhodo_2y_neg_adc_occu -nostat
+hhodo_2y_neg_tdc_occu -nostat
+hhodo_2y_neg_ped_vs_pad -nostat
+hhodo_2y_neg_pi_vs_pad -nostat
+hhodo_2y_neg_pamp_vs_pad -nostat
+hhodo_2y_neg_tdc_time_vs_pad -nostat
+newpage 2 2 logz 
+title HMS Heavy Gas Cherenkov
+hgcer_occu -nostat
+hgcer_ped_vs_cntr -nostat
+hgcer_pi_vs_cntr -nostat
+hgcer_pamp_vs_cntr -nostat
+newpage 2 2 logz 
+title HMS Pre-Shower Layer A Positive (Left)
+hcal_hA_pos_occu -nostat
+hcal_hA_pos_ped_blk -nostat
+hcal_hA_pos_pi_blk -nostat
+hcal_hA_pos_pamp_blk -nostat
+newpage 2 2 logz
+title HMS Pre-Shower Layer A Negative (Right)
+hcal_hA_neg_occu -nostat 
+hcal_hA_neg_ped_blk -nostat
+hcal_hA_neg_pi_blk -nostat
+hcal_hA_neg_pamp_blk -nostat
+newpage 2 2 logz 
+title HMS Pre-Shower Layer B Positive (Left)
+hcal_hB_pos_occu -nostat
+hcal_hB_pos_ped_blk -nostat
+hcal_hB_pos_pi_blk -nostat
+hcal_hB_pos_pamp_blk -nostat
+newpage 2 2 logz
+title HMS Pre-Shower Layer B Negative (Right)
+hcal_hB_neg_occu -nostat 
+hcal_hB_neg_ped_blk -nostat
+hcal_hB_neg_pi_blk -nostat
+hcal_hB_neg_pamp_blk -nostat
+newpage 2 2 logz
+title HMS Shower Layer C Negative (Right)
+hcal_hC_occu -nostat
+hcal_hC_ped_blk -nostat
+hcal_hC_pi_blk -nostat
+hcal_hC_pamp_blk -nostat
+newpage 2 2 logz
+title HMS Shower Layer D Negative (Right)
+hcal_hD_occu -nostat
+hcal_hD_ped_blk -nostat
+hcal_hD_pi_blk -nostat
+hcal_hD_pamp_blk -nostat
+newpage 2 2 logy
+title HMS Cherenkov Sum
+htrig_hCERsum_pped
+htrig_hCERsum_pint 
+htrig_hCERsum_pamp
+htrig_hCERsum_tdc_time
+newpage 4 4 logy
+title HMS Calorimeter Layer Sums
+htrig_hAsum_pped
+htrig_hBsum_pped
+htrig_hCsum_pped
+htrig_hDsum_pped
+htrig_hAsum_pint
+htrig_hBsum_pint
+htrig_hCsum_pint
+htrig_hDsum_pint
+htrig_hAsum_pamp
+htrig_hBsum_pamp
+htrig_hCsum_pamp
+htrig_hDsum_pamp
+htrig_hAsum_tdc_time
+htrig_hBsum_tdc_time
+htrig_hCsum_tdc_time
+htrig_hDsum_tdc_time
+newpage 2 3 logy
+title HMS Shower Sums
+htrig_hpreShwr_adc_pped
+htrig_hshwr_adc_pped
+htrig_hpreShwr_adc_pint
+htrig_hshwr_adc_pint
+htrig_hpreShwr_adc_pamp
+htrig_hshwr_adc_pamp
+newpage 3 1 logy
+title HMS Shower TDC Times
+htrig_hpreShwrLow_tdc
+htrig_hpreShwrHigh_tdc
+htrig_hshwr_tdc
+
diff --git a/onlineGUI/Config/HMS/HODO/good_hhodo_2d.cfg b/onlineGUI/Config/HMS/HODO/good_hhodo_2d.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..3f6f3f06c64501f86fc2c5973a8c7398ed5b640f
--- /dev/null
+++ b/onlineGUI/Config/HMS/HODO/good_hhodo_2d.cfg
@@ -0,0 +1,363 @@
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title X1 Neg ADc v TDC
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1x16")
+newpage 4 4
+title X1 Pos ADc v TDC
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1x16")
+newpage 3 4
+title Y1 Neg ADc v TDC
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg1y10")
+newpage 3 4
+title Y1 Pos ADc v TDC
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos1y10")
+newpage 4 4
+title X2 Neg ADc v TDC
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2x16")
+newpage 4 4
+title X2 Pos ADc v TDC
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2x16")
+newpage 3 4
+title Y2 Neg ADc v TDC
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcneg2y10")
+newpage 3 4
+title Y2 Pos ADc v TDC
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvtdcpos2y10")
+newpage 4 4
+title X1 Eff Neg PMT
+macro Macros/hodo_efficiency.C("uhdidneg1x1","uhshouldneg1x1")
+macro Macros/hodo_efficiency.C("uhdidneg1x2","uhshouldneg1x2")
+macro Macros/hodo_efficiency.C("uhdidneg1x3","uhshouldneg1x3")
+macro Macros/hodo_efficiency.C("uhdidneg1x4","uhshouldneg1x4")
+macro Macros/hodo_efficiency.C("uhdidneg1x5","uhshouldneg1x5")
+macro Macros/hodo_efficiency.C("uhdidneg1x6","uhshouldneg1x6")
+macro Macros/hodo_efficiency.C("uhdidneg1x7","uhshouldneg1x7")
+macro Macros/hodo_efficiency.C("uhdidneg1x8","uhshouldneg1x8")
+macro Macros/hodo_efficiency.C("uhdidneg1x9","uhshouldneg1x9")
+macro Macros/hodo_efficiency.C("uhdidneg1x10","uhshouldneg1x10")
+macro Macros/hodo_efficiency.C("uhdidneg1x11","uhshouldneg1x11")
+macro Macros/hodo_efficiency.C("uhdidneg1x12","uhshouldneg1x12")
+macro Macros/hodo_efficiency.C("uhdidneg1x13","uhshouldneg1x13")
+macro Macros/hodo_efficiency.C("uhdidneg1x14","uhshouldneg1x14")
+macro Macros/hodo_efficiency.C("uhdidneg1x15","uhshouldneg1x15")
+macro Macros/hodo_efficiency.C("uhdidneg1x16","uhshouldneg1x16")
+newpage 4 4
+title X1 Eff Pos PMT
+macro Macros/hodo_efficiency.C("uhdidpos1x1","uhshouldpos1x1")
+macro Macros/hodo_efficiency.C("uhdidpos1x2","uhshouldpos1x2")
+macro Macros/hodo_efficiency.C("uhdidpos1x3","uhshouldpos1x3")
+macro Macros/hodo_efficiency.C("uhdidpos1x4","uhshouldpos1x4")
+macro Macros/hodo_efficiency.C("uhdidpos1x5","uhshouldpos1x5")
+macro Macros/hodo_efficiency.C("uhdidpos1x6","uhshouldpos1x6")
+macro Macros/hodo_efficiency.C("uhdidpos1x7","uhshouldpos1x7")
+macro Macros/hodo_efficiency.C("uhdidpos1x8","uhshouldpos1x8")
+macro Macros/hodo_efficiency.C("uhdidpos1x9","uhshouldpos1x9")
+macro Macros/hodo_efficiency.C("uhdidpos1x10","uhshouldpos1x10")
+macro Macros/hodo_efficiency.C("uhdidpos1x11","uhshouldpos1x11")
+macro Macros/hodo_efficiency.C("uhdidpos1x12","uhshouldpos1x12")
+macro Macros/hodo_efficiency.C("uhdidpos1x13","uhshouldpos1x13")
+macro Macros/hodo_efficiency.C("uhdidpos1x14","uhshouldpos1x14")
+macro Macros/hodo_efficiency.C("uhdidpos1x15","uhshouldpos1x15")
+macro Macros/hodo_efficiency.C("uhdidpos1x16","uhshouldpos1x16")
+newpage 3 4
+title Y1 Eff Neg PMT
+macro Macros/hodo_efficiency.C("uhdidneg1y1","uhshouldneg1y1")
+macro Macros/hodo_efficiency.C("uhdidneg1y2","uhshouldneg1y2")
+macro Macros/hodo_efficiency.C("uhdidneg1y3","uhshouldneg1y3")
+macro Macros/hodo_efficiency.C("uhdidneg1y4","uhshouldneg1y4")
+macro Macros/hodo_efficiency.C("uhdidneg1y5","uhshouldneg1y5")
+macro Macros/hodo_efficiency.C("uhdidneg1y6","uhshouldneg1y6")
+macro Macros/hodo_efficiency.C("uhdidneg1y7","uhshouldneg1y7")
+macro Macros/hodo_efficiency.C("uhdidneg1y8","uhshouldneg1y8")
+macro Macros/hodo_efficiency.C("uhdidneg1y9","uhshouldneg1y9")
+macro Macros/hodo_efficiency.C("uhdidneg1y10","uhshouldneg1y10")
+newpage 3 4
+title Y1 Eff Pos PMT
+macro Macros/hodo_efficiency.C("uhdidpos1y1","uhshouldpos1y1")
+macro Macros/hodo_efficiency.C("uhdidpos1y2","uhshouldpos1y2")
+macro Macros/hodo_efficiency.C("uhdidpos1y3","uhshouldpos1y3")
+macro Macros/hodo_efficiency.C("uhdidpos1y4","uhshouldpos1y4")
+macro Macros/hodo_efficiency.C("uhdidpos1y5","uhshouldpos1y5")
+macro Macros/hodo_efficiency.C("uhdidpos1y6","uhshouldpos1y6")
+macro Macros/hodo_efficiency.C("uhdidpos1y7","uhshouldpos1y7")
+macro Macros/hodo_efficiency.C("uhdidpos1y8","uhshouldpos1y8")
+macro Macros/hodo_efficiency.C("uhdidpos1y9","uhshouldpos1y9")
+macro Macros/hodo_efficiency.C("uhdidpos1y10","uhshouldpos1y10")
+newpage 4 4
+title X2 Eff Neg PMT
+macro Macros/hodo_efficiency.C("uhdidneg2x1","uhshouldneg2x1")
+macro Macros/hodo_efficiency.C("uhdidneg2x2","uhshouldneg2x2")
+macro Macros/hodo_efficiency.C("uhdidneg2x3","uhshouldneg2x3")
+macro Macros/hodo_efficiency.C("uhdidneg2x4","uhshouldneg2x4")
+macro Macros/hodo_efficiency.C("uhdidneg2x5","uhshouldneg2x5")
+macro Macros/hodo_efficiency.C("uhdidneg2x6","uhshouldneg2x6")
+macro Macros/hodo_efficiency.C("uhdidneg2x7","uhshouldneg2x7")
+macro Macros/hodo_efficiency.C("uhdidneg2x8","uhshouldneg2x8")
+macro Macros/hodo_efficiency.C("uhdidneg2x9","uhshouldneg2x9")
+macro Macros/hodo_efficiency.C("uhdidneg2x10","uhshouldneg2x10")
+macro Macros/hodo_efficiency.C("uhdidneg2x11","uhshouldneg2x11")
+macro Macros/hodo_efficiency.C("uhdidneg2x12","uhshouldneg2x12")
+macro Macros/hodo_efficiency.C("uhdidneg2x13","uhshouldneg2x13")
+macro Macros/hodo_efficiency.C("uhdidneg2x14","uhshouldneg2x14")
+macro Macros/hodo_efficiency.C("uhdidneg2x15","uhshouldneg2x15")
+macro Macros/hodo_efficiency.C("uhdidneg2x16","uhshouldneg2x16")
+newpage 4 4
+title X2 Eff Pos PMT
+macro Macros/hodo_efficiency.C("uhdidpos2x1","uhshouldpos2x1")
+macro Macros/hodo_efficiency.C("uhdidpos2x2","uhshouldpos2x2")
+macro Macros/hodo_efficiency.C("uhdidpos2x3","uhshouldpos2x3")
+macro Macros/hodo_efficiency.C("uhdidpos2x4","uhshouldpos2x4")
+macro Macros/hodo_efficiency.C("uhdidpos2x5","uhshouldpos2x5")
+macro Macros/hodo_efficiency.C("uhdidpos2x6","uhshouldpos2x6")
+macro Macros/hodo_efficiency.C("uhdidpos2x7","uhshouldpos2x7")
+macro Macros/hodo_efficiency.C("uhdidpos2x8","uhshouldpos2x8")
+macro Macros/hodo_efficiency.C("uhdidpos2x9","uhshouldpos2x9")
+macro Macros/hodo_efficiency.C("uhdidpos2x10","uhshouldpos2x10")
+macro Macros/hodo_efficiency.C("uhdidpos2x11","uhshouldpos2x11")
+macro Macros/hodo_efficiency.C("uhdidpos2x12","uhshouldpos2x12")
+macro Macros/hodo_efficiency.C("uhdidpos2x13","uhshouldpos2x13")
+macro Macros/hodo_efficiency.C("uhdidpos2x14","uhshouldpos2x14")
+macro Macros/hodo_efficiency.C("uhdidpos2x15","uhshouldpos2x15")
+macro Macros/hodo_efficiency.C("uhdidpos2x16","uhshouldpos2x16")
+newpage 3 4
+title Y2 Eff Neg PMT
+macro Macros/hodo_efficiency.C("uhdidneg2y1","uhshouldneg2y1")
+macro Macros/hodo_efficiency.C("uhdidneg2y2","uhshouldneg2y2")
+macro Macros/hodo_efficiency.C("uhdidneg2y3","uhshouldneg2y3")
+macro Macros/hodo_efficiency.C("uhdidneg2y4","uhshouldneg2y4")
+macro Macros/hodo_efficiency.C("uhdidneg2y5","uhshouldneg2y5")
+macro Macros/hodo_efficiency.C("uhdidneg2y6","uhshouldneg2y6")
+macro Macros/hodo_efficiency.C("uhdidneg2y7","uhshouldneg2y7")
+macro Macros/hodo_efficiency.C("uhdidneg2y8","uhshouldneg2y8")
+macro Macros/hodo_efficiency.C("uhdidneg2y9","uhshouldneg2y9")
+macro Macros/hodo_efficiency.C("uhdidneg2y10","uhshouldneg2y10")
+newpage 3 4
+title Y2 Eff Pos PMT
+macro Macros/hodo_efficiency.C("uhdidpos2y1","uhshouldpos2y1")
+macro Macros/hodo_efficiency.C("uhdidpos2y2","uhshouldpos2y2")
+macro Macros/hodo_efficiency.C("uhdidpos2y3","uhshouldpos2y3")
+macro Macros/hodo_efficiency.C("uhdidpos2y4","uhshouldpos2y4")
+macro Macros/hodo_efficiency.C("uhdidpos2y5","uhshouldpos2y5")
+macro Macros/hodo_efficiency.C("uhdidpos2y6","uhshouldpos2y6")
+macro Macros/hodo_efficiency.C("uhdidpos2y7","uhshouldpos2y7")
+macro Macros/hodo_efficiency.C("uhdidpos2y8","uhshouldpos2y8")
+macro Macros/hodo_efficiency.C("uhdidpos2y9","uhshouldpos2y9")
+macro Macros/hodo_efficiency.C("uhdidpos2y10","uhshouldpos2y10")
+newpage 4 4
+title X1 ADC int Pos vs Neg
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1x16")
+newpage 3 4
+title Y1  ADC int Pos vs Neg
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc1y10")
+newpage 4 4
+title X2  ADC int Pos vs Neg
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2x16")
+newpage 3 4
+title Y2  ADC int Pos vs Neg
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcintgtdc2y10")
+newpage 4 4
+title X1 TDC Pos vs Neg
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1x16")
+newpage 3 4
+title Y1 TDC Pos vs Neg
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc1y10")
+newpage 4 4
+title X2 TDC Pos vs Neg
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2x16")
+newpage 3 4
+title Y2 TDC Pos vs Neg
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dtdc2y10")
diff --git a/onlineGUI/Config/HMS/HODO/good_hhodo_2d_dis.cfg b/onlineGUI/Config/HMS/HODO/good_hhodo_2d_dis.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..edd09396edee990eca4e5c8392968d767bdbf21f
--- /dev/null
+++ b/onlineGUI/Config/HMS/HODO/good_hhodo_2d_dis.cfg
@@ -0,0 +1,123 @@
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title X1+ ADC vs Dis
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1x16")
+newpage 4 4
+title X1- ADC vs Dis
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1x16")
+newpage 3 4
+title Y1+ ADC vs Dis
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos1y10")
+newpage 3 4
+title Y1- ADC vs Dis
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg1y10")
+newpage 4 4
+title X2+ ADC vs Dis
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2x16")
+newpage 4 4
+title X2- ADC vs Dis
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x10")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x11")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x12")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x13")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x14")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x15")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2x16")
+newpage 3 4
+title Y2+ ADC vs Dis
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdispos2y10")
+newpage 3 4
+title Y2- ADC vs Dis
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y1")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y2")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y3")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y4")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y5")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y6")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y7")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y8")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y9")
+macro Macros/gooddraw_2d_hhodo.C("uh2dadcvdisneg2y10")
diff --git a/onlineGUI/Config/HMS/HODO/raw_hhodo_1x.cfg b/onlineGUI/Config/HMS/HODO/raw_hhodo_1x.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..b0ebc09efee6bee65a2485765edbb03a0f5e370d
--- /dev/null
+++ b/onlineGUI/Config/HMS/HODO/raw_hhodo_1x.cfg
@@ -0,0 +1,327 @@
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title HMS X1+ Raw TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc1x1posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x2posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x3posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x4posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x5posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x6posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x7posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x8posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x9posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x10posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x11posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x12posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x13posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x14posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x15posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x16posTimeRaw")
+newpage 4 4
+title HMS X1- Raw TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc1x1negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x2negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x3negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x4negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x5negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x6negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x7negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x8negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x9negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x10negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x11negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x12negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x13negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x14negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x15negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1x16negTimeRaw")
+newpage 4 4
+title HMS X1+ TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc1x1posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x2posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x3posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x4posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x5posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x6posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x7posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x8posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x9posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x10posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x11posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x12posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x13posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x14posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x15posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x16posTime")
+newpage 4 4
+title HMS X1- TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc1x1negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x2negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x3negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x4negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x5negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x6negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x7negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x8negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x9negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x10negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x11negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x12negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x13negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x14negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x15negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1x16negTime")
+newpage 4 4
+title HMS X1+ FADC Raw Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc1x1posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x2posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x3posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x4posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x5posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x6posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x7posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x8posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x9posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x10posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x11posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x12posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x13posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x14posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x15posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x16posPedRaw")
+newpage 4 4
+title HMS X1- FADC Raw Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc1x1negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x2negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x3negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x4negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x5negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x6negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x7negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x8negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x9negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x10negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x11negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x12negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x13negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x14negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x15negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x16negPedRaw")
+newpage 4 4
+title HMS X1+ FADC Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc1x1posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x2posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x3posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x4posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x5posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x6posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x7posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x8posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x9posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x10posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x11posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x12posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x13posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x14posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x15posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x16posPed")
+newpage 4 4
+title HMS X1- FADC Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc1x1negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x2negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x3negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x4negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x5negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x6negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x7negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x8negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x9negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x10negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x11negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x12negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x13negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x14negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x15negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1x16negPed")
+newpage 4 4
+title HMS X1+ FADC Raw Integrals
+macro Macros/rawdraw_hhodo.C("uhadc1x1posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x2posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x3posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x4posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x5posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x6posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x7posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x8posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x9posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x10posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x11posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x12posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x13posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x14posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x15posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x16posPulseIntRaw")
+newpage 4 4
+title HMS X1- FADC Raw Integrals
+macro Macros/rawdraw_hhodo.C("uhadc1x1negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x2negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x3negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x4negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x5negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x6negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x7negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x8negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x9negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x10negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x11negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x12negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x13negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x14negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x15negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x16negPulseIntRaw")
+newpage 4 4
+title HMS X1+ FADC Integrals
+macro Macros/rawdraw_hhodo.C("uhadc1x1posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x2posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x3posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x4posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x5posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x6posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x7posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x8posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x9posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x10posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x11posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x12posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x13posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x14posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x15posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x16posPulseInt")
+newpage 4 4
+title HMS X1- FADC Integrals
+macro Macros/rawdraw_hhodo.C("uhadc1x1negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x2negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x3negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x4negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x5negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x6negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x7negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x8negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x9negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x10negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x11negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x12negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x13negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x14negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x15negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1x16negPulseInt")
+newpage 4 4
+title HMS X1+ FADC Amplitudes Raw
+macro Macros/rawdraw_hhodo.C("uhadc1x1posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x2posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x3posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x4posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x5posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x6posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x7posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x8posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x9posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x10posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x11posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x12posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x13posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x14posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x15posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x16posPulseAmpRaw")
+newpage 4 4
+title HMS X1- FADC Amplitudes Raw
+macro Macros/rawdraw_hhodo.C("uhadc1x1negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x2negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x3negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x4negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x5negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x6negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x7negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x8negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x9negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x10negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x11negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x12negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x13negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x14negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x15negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x16negPulseAmpRaw")
+newpage 4 4
+title HMS X1+ FADC Amplitudes
+macro Macros/rawdraw_hhodo.C("uhadc1x1posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x2posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x3posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x4posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x5posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x6posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x7posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x8posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x9posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x10posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x11posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x12posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x13posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x14posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x15posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x16posPulseAmp")
+newpage 4 4
+title HMS X1- FADC Amplitudes
+macro Macros/rawdraw_hhodo.C("uhadc1x1negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x2negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x3negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x4negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x5negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x6negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x7negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x8negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x9negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x10negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x11negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x12negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x13negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x14negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x15negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1x16negPulseAmp")
+newpage 4 4
+title HMS X1+ FADC Times Raw
+macro Macros/rawdraw_hhodo.C("uhadc1x1posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x2posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x3posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x4posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x5posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x6posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x7posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x8posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x9posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x10posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x11posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x12posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x13posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x14posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x15posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x16posPulseTimeRaw")
+newpage 4 4
+title HMS X1- FADC Times Raw
+macro Macros/rawdraw_hhodo.C("uhadc1x1negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x2negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x3negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x4negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x5negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x6negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x7negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x8negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x9negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x10negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x11negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x12negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x13negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x14negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x15negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1x16negPulseTimeRaw")
diff --git a/onlineGUI/Config/HMS/HODO/raw_hhodo_1y.cfg b/onlineGUI/Config/HMS/HODO/raw_hhodo_1y.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..073778aaafd4d44dccad6145bfa326592d3c74e9
--- /dev/null
+++ b/onlineGUI/Config/HMS/HODO/raw_hhodo_1y.cfg
@@ -0,0 +1,219 @@
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 3 4
+title HMS Y1+ Raw TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc1y1posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y2posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y3posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y4posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y5posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y6posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y7posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y8posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y9posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y10posTimeRaw")
+newpage 3 4
+title HMS Y1- Raw TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc1y1negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y2negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y3negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y4negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y5negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y6negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y7negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y8negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y9negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc1y10negTimeRaw")
+newpage 3 4
+title HMS Y1+ TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc1y1posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y2posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y3posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y4posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y5posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y6posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y7posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y8posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y9posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y10posTime")
+newpage 3 4
+title HMS Y1- TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc1y1negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y2negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y3negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y4negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y5negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y6negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y7negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y8negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y9negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc1y10negTime")
+newpage 3 4
+title HMS Y1+ FADC Raw Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc1y1posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y2posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y3posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y4posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y5posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y6posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y7posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y8posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y9posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y10posPedRaw")
+newpage 3 4
+title HMS Y1- FADC Raw Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc1y1negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y2negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y3negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y4negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y5negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y6negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y7negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y8negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y9negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y10negPedRaw")
+newpage 3 4
+title HMS Y1+ FADC Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc1y1posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y2posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y3posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y4posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y5posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y6posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y7posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y8posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y9posPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y10posPed")
+newpage 3 4
+title HMS Y1- FADC Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc1y1negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y2negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y3negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y4negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y5negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y6negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y7negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y8negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y9negPed")
+macro Macros/rawdraw_hhodo.C("uhadc1y10negPed")
+newpage 3 4
+title HMS Y1+ FADC Raw Integrals
+macro Macros/rawdraw_hhodo.C("uhadc1y1posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y2posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y3posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y4posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y5posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y6posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y7posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y8posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y9posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y10posPulseIntRaw")
+newpage 3 4
+title HMS Y1- FADC Raw Integrals
+macro Macros/rawdraw_hhodo.C("uhadc1y1negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y2negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y3negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y4negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y5negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y6negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y7negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y8negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y9negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y10negPulseIntRaw")
+newpage 3 4
+title HMS Y1+ FADC Integrals
+macro Macros/rawdraw_hhodo.C("uhadc1y1posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y2posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y3posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y4posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y5posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y6posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y7posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y8posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y9posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y10posPulseInt")
+newpage 3 4
+title HMS Y1- FADC Integrals
+macro Macros/rawdraw_hhodo.C("uhadc1y1negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y2negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y3negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y4negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y5negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y6negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y7negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y8negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y9negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc1y10negPulseInt")
+newpage 3 4
+title HMS Y1+ FADC Amplitudes Raw
+macro Macros/rawdraw_hhodo.C("uhadc1y1posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y2posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y3posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y4posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y5posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y6posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y7posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y8posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y9posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y10posPulseAmpRaw")
+newpage 3 4
+title HMS Y1- FADC Amplitudes Raw
+macro Macros/rawdraw_hhodo.C("uhadc1y1negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y2negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y3negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y4negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y5negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y6negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y7negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y8negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y9negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y10negPulseAmpRaw")
+newpage 3 4
+title HMS Y1+ FADC Amplitudes
+macro Macros/rawdraw_hhodo.C("uhadc1y1posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y2posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y3posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y4posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y5posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y6posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y7posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y8posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y9posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y10posPulseAmp")
+newpage 3 4
+title HMS Y1- FADC Amplitudes
+macro Macros/rawdraw_hhodo.C("uhadc1y1negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y2negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y3negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y4negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y5negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y6negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y7negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y8negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y9negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc1y10negPulseAmp")
+newpage 3 4
+title HMS Y1+ FADC Times Raw
+macro Macros/rawdraw_hhodo.C("uhadc1y1posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y2posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y3posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y4posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y5posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y6posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y7posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y8posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y9posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y10posPulseTimeRaw")
+newpage 3 4
+title HMS Y1- FADC Times Raw
+macro Macros/rawdraw_hhodo.C("uhadc1y1negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y2negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y3negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y4negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y5negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y6negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y7negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y8negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y9negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc1y10negPulseTimeRaw")
diff --git a/onlineGUI/Config/HMS/HODO/raw_hhodo_2d.cfg b/onlineGUI/Config/HMS/HODO/raw_hhodo_2d.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..4754dad3a94c673c79bcd024bb35ee55d580dae2
--- /dev/null
+++ b/onlineGUI/Config/HMS/HODO/raw_hhodo_2d.cfg
@@ -0,0 +1,304 @@
+#protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title X1 ADC peak Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x10")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x11")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x12")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x13")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x14")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x15")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1x16")
+newpage 3 4
+title Y1  ADC peak Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak1y10")
+newpage 4 4
+title X2  ADC peak Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x10")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x11")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x12")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x13")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x14")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x15")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2x16")
+newpage 3 4
+title Y2  ADC peak Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcpeak2y10")
+newpage 4 4
+title X1 ADC int Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x10")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x11")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x12")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x13")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x14")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x15")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1x16")
+newpage 3 4
+title Y1  ADC int Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint1y10")
+newpage 4 4
+title X2  ADC int Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x10")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x11")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x12")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x13")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x14")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x15")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2x16")
+newpage 3 4
+title Y2  ADC int Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dadcint2y10")
+newpage 4 4
+title X1 TDC Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x10")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x11")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x12")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x13")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x14")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x15")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1x16")
+newpage 3 4
+title Y1 TDC Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc1y10")
+newpage 4 4
+title X2 TDC Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x10")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x11")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x12")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x13")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x14")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x15")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2x16")
+newpage 3 4
+title Y2 TDC Pos vs Neg
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y1")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y2")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y3")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y4")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y5")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y6")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y7")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y8")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y9")
+macro Macros/rawdraw_2d_hhodo.C("uh2dtdc2y10")
+newpage 4 4
+title X1- ADC (pC) vs TDC
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x1neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x2neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x3neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x4neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x5neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x6neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x7neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x8neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x9neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x10neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x11neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x12neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x13neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x14neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x15neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x16neg")
+newpage 4 4
+title X1+  ADC (pC) vs TDC
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x1pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x2pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x3pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x4pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x5pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x6pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x7pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x8pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x9pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x10pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x11pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x12pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x13pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x14pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x15pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1x16pos")
+newpage 3 4
+title Y1- ADC (pC) vs TDC
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y1neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y2neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y3neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y4neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y5neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y6neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y7neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y8neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y9neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y10neg")
+newpage 3 4
+title Y1+  ADC (pC) vs TDC
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y1pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y2pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y3pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y4pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y5pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y6pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y7pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y8pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y9pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d1y10pos")
+newpage 4 4
+title X2- ADC (pC) vs TDC
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x1neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x2neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x3neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x4neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x5neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x6neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x7neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x8neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x9neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x10neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x11neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x12neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x13neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x14neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x15neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x16neg")
+newpage 4 4
+title X2+  ADC (pC) vs TDC
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x1pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x2pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x3pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x4pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x5pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x6pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x7pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x8pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x9pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x10pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x11pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x12pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x13pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x14pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x15pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2x16pos")
+newpage 3 4
+title Y2- ADC (pC) vs TDC
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y1neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y2neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y3neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y4neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y5neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y6neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y7neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y8neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y9neg")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y10neg")
+newpage 3 4
+title Y2+  ADC (pC) vs TDC
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y1pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y2pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y3pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y4pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y5pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y6pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y7pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y8pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y9pos")
+macro Macros/rawdraw_2d_hhodo.C("uh2d2y10pos")
diff --git a/onlineGUI/Config/HMS/HODO/raw_hhodo_2x.cfg b/onlineGUI/Config/HMS/HODO/raw_hhodo_2x.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..81ca700787646de29513316a5e8ae5e1560e91c7
--- /dev/null
+++ b/onlineGUI/Config/HMS/HODO/raw_hhodo_2x.cfg
@@ -0,0 +1,327 @@
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title HMS X2+ Raw TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc2x1posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x2posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x3posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x4posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x5posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x6posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x7posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x8posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x9posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x10posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x11posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x12posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x13posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x14posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x15posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x16posTimeRaw")
+newpage 4 4
+title HMS X2- Raw TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc2x1negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x2negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x3negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x4negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x5negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x6negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x7negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x8negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x9negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x10negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x11negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x12negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x13negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x14negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x15negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2x16negTimeRaw")
+newpage 4 4
+title HMS X2+ TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc2x1posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x2posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x3posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x4posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x5posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x6posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x7posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x8posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x9posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x10posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x11posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x12posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x13posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x14posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x15posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x16posTime")
+newpage 4 4
+title HMS X2- TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc2x1negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x2negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x3negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x4negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x5negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x6negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x7negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x8negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x9negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x10negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x11negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x12negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x13negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x14negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x15negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2x16negTime")
+newpage 4 4
+title HMS X2+ FADC Raw Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc2x1posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x2posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x3posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x4posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x5posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x6posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x7posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x8posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x9posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x10posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x11posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x12posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x13posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x14posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x15posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x16posPedRaw")
+newpage 4 4
+title HMS X2- FADC Raw Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc2x1negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x2negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x3negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x4negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x5negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x6negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x7negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x8negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x9negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x10negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x11negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x12negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x13negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x14negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x15negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x16negPedRaw")
+newpage 4 4
+title HMS X2+ FADC Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc2x1posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x2posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x3posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x4posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x5posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x6posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x7posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x8posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x9posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x10posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x11posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x12posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x13posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x14posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x15posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x16posPed")
+newpage 4 4
+title HMS X2- FADC Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc2x1negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x2negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x3negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x4negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x5negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x6negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x7negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x8negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x9negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x10negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x11negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x12negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x13negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x14negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x15negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2x16negPed")
+newpage 4 4
+title HMS X2+ FADC Raw Integrals
+macro Macros/rawdraw_hhodo.C("uhadc2x1posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x2posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x3posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x4posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x5posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x6posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x7posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x8posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x9posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x10posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x11posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x12posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x13posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x14posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x15posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x16posPulseIntRaw")
+newpage 4 4
+title HMS X2- FADC Raw Integrals
+macro Macros/rawdraw_hhodo.C("uhadc2x1negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x2negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x3negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x4negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x5negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x6negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x7negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x8negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x9negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x10negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x11negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x12negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x13negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x14negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x15negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x16negPulseIntRaw")
+newpage 4 4
+title HMS X2+ FADC Integrals
+macro Macros/rawdraw_hhodo.C("uhadc2x1posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x2posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x3posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x4posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x5posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x6posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x7posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x8posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x9posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x10posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x11posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x12posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x13posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x14posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x15posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x16posPulseInt")
+newpage 4 4
+title HMS X2- FADC Integrals
+macro Macros/rawdraw_hhodo.C("uhadc2x1negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x2negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x3negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x4negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x5negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x6negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x7negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x8negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x9negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x10negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x11negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x12negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x13negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x14negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x15negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2x16negPulseInt")
+newpage 4 4
+title HMS X2+ FADC Amplitudes Raw
+macro Macros/rawdraw_hhodo.C("uhadc2x1posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x2posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x3posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x4posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x5posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x6posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x7posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x8posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x9posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x10posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x11posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x12posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x13posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x14posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x15posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x16posPulseAmpRaw")
+newpage 4 4
+title HMS X2- FADC Amplitudes Raw
+macro Macros/rawdraw_hhodo.C("uhadc2x1negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x2negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x3negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x4negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x5negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x6negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x7negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x8negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x9negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x10negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x11negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x12negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x13negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x14negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x15negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x16negPulseAmpRaw")
+newpage 4 4
+title HMS X2+ FADC Amplitudes
+macro Macros/rawdraw_hhodo.C("uhadc2x1posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x2posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x3posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x4posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x5posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x6posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x7posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x8posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x9posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x10posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x11posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x12posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x13posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x14posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x15posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x16posPulseAmp")
+newpage 4 4
+title HMS X2- FADC Amplitudes
+macro Macros/rawdraw_hhodo.C("uhadc2x1negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x2negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x3negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x4negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x5negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x6negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x7negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x8negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x9negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x10negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x11negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x12negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x13negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x14negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x15negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2x16negPulseAmp")
+newpage 4 4
+title HMS X2+ FADC Times Raw
+macro Macros/rawdraw_hhodo.C("uhadc2x1posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x2posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x3posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x4posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x5posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x6posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x7posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x8posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x9posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x10posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x11posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x12posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x13posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x14posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x15posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x16posPulseTimeRaw")
+newpage 4 4
+title HMS X2- FADC Times Raw
+macro Macros/rawdraw_hhodo.C("uhadc2x1negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x2negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x3negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x4negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x5negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x6negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x7negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x8negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x9negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x10negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x11negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x12negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x13negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x14negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x15negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2x16negPulseTimeRaw")
diff --git a/onlineGUI/Config/HMS/HODO/raw_hhodo_2y.cfg b/onlineGUI/Config/HMS/HODO/raw_hhodo_2y.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..b7aeb03e88db40e7eefca639621a1fcde7cb1336
--- /dev/null
+++ b/onlineGUI/Config/HMS/HODO/raw_hhodo_2y.cfg
@@ -0,0 +1,219 @@
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 3 4
+title HMS Y2+ Raw TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc2y1posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y2posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y3posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y4posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y5posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y6posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y7posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y8posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y9posTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y10posTimeRaw")
+newpage 3 4
+title HMS Y2- Raw TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc2y1negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y2negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y3negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y4negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y5negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y6negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y7negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y8negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y9negTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhtdc2y10negTimeRaw")
+newpage 3 4
+title HMS Y2+ TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc2y1posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y2posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y3posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y4posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y5posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y6posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y7posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y8posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y9posTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y10posTime")
+newpage 3 4
+title HMS Y2- TDCs
+macro Macros/rawdraw_hhodo.C("uhtdc2y1negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y2negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y3negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y4negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y5negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y6negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y7negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y8negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y9negTime")
+macro Macros/rawdraw_hhodo.C("uhtdc2y10negTime")
+newpage 3 4
+title HMS Y2+ FADC Raw Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc2y1posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y2posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y3posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y4posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y5posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y6posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y7posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y8posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y9posPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y10posPedRaw")
+newpage 3 4
+title HMS Y2- FADC Raw Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc2y1negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y2negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y3negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y4negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y5negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y6negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y7negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y8negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y9negPedRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y10negPedRaw")
+newpage 3 4
+title HMS Y2+ FADC Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc2y1posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y2posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y3posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y4posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y5posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y6posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y7posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y8posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y9posPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y10posPed")
+newpage 3 4
+title HMS Y2- FADC Pedestals
+macro Macros/rawdraw_hhodo.C("uhadc2y1negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y2negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y3negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y4negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y5negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y6negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y7negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y8negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y9negPed")
+macro Macros/rawdraw_hhodo.C("uhadc2y10negPed")
+newpage 3 4
+title HMS Y2+ FADC Raw Integrals
+macro Macros/rawdraw_hhodo.C("uhadc2y1posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y2posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y3posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y4posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y5posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y6posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y7posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y8posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y9posPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y10posPulseIntRaw")
+newpage 3 4
+title HMS Y2- FADC Raw Integrals
+macro Macros/rawdraw_hhodo.C("uhadc2y1negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y2negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y3negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y4negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y5negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y6negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y7negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y8negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y9negPulseIntRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y10negPulseIntRaw")
+newpage 3 4
+title HMS Y2+ FADC Integrals
+macro Macros/rawdraw_hhodo.C("uhadc2y1posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y2posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y3posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y4posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y5posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y6posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y7posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y8posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y9posPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y10posPulseInt")
+newpage 3 4
+title HMS Y2- FADC Integrals
+macro Macros/rawdraw_hhodo.C("uhadc2y1negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y2negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y3negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y4negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y5negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y6negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y7negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y8negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y9negPulseInt")
+macro Macros/rawdraw_hhodo.C("uhadc2y10negPulseInt")
+newpage 3 4
+title HMS Y2+ FADC Amplitudes Raw
+macro Macros/rawdraw_hhodo.C("uhadc2y1posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y2posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y3posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y4posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y5posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y6posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y7posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y8posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y9posPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y10posPulseAmpRaw")
+newpage 3 4
+title HMS Y2- FADC Amplitudes Raw
+macro Macros/rawdraw_hhodo.C("uhadc2y1negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y2negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y3negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y4negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y5negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y6negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y7negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y8negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y9negPulseAmpRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y10negPulseAmpRaw")
+newpage 3 4
+title HMS Y2+ FADC Amplitudes
+macro Macros/rawdraw_hhodo.C("uhadc2y1posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y2posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y3posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y4posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y5posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y6posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y7posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y8posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y9posPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y10posPulseAmp")
+newpage 3 4
+title HMS Y2- FADC Amplitudes
+macro Macros/rawdraw_hhodo.C("uhadc2y1negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y2negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y3negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y4negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y5negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y6negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y7negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y8negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y9negPulseAmp")
+macro Macros/rawdraw_hhodo.C("uhadc2y10negPulseAmp")
+newpage 3 4
+title HMS Y2+ FADC Times Raw
+macro Macros/rawdraw_hhodo.C("uhadc2y1posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y2posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y3posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y4posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y5posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y6posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y7posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y8posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y9posPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y10posPulseTimeRaw")
+newpage 3 4
+title HMS Y2- FADC Times Raw
+macro Macros/rawdraw_hhodo.C("uhadc2y1negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y2negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y3negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y4negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y5negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y6negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y7negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y8negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y9negPulseTimeRaw")
+macro Macros/rawdraw_hhodo.C("uhadc2y10negPulseTimeRaw")
diff --git a/onlineGUI/Config/HMS/HODO/raw_hhodoana.cfg b/onlineGUI/Config/HMS/HODO/raw_hhodoana.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..bcf996346d6f14b2cbf8353881c26a4f53956477
--- /dev/null
+++ b/onlineGUI/Config/HMS/HODO/raw_hhodoana.cfg
@@ -0,0 +1,130 @@
+#protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 2 2
+title HMS Hodo Nhits
+hhodo_1x_multi
+hhodo_1y_multi
+hhodo_2x_multi
+hhodo_2y_multi
+newpage 2 2
+title HMS Hodo Raw ADC Occupancy
+macro Macros/overlay.C("hhodo_1x_pos_adc_occu","hhodo_1x_neg_adc_occu")
+macro Macros/overlay.C("hhodo_1y_pos_adc_occu","hhodo_1y_neg_adc_occu")
+macro Macros/overlay.C("hhodo_2x_pos_adc_occu","hhodo_2x_neg_adc_occu")
+macro Macros/overlay.C("hhodo_2y_pos_adc_occu","hhodo_2y_neg_adc_occu")
+newpage 2 2
+title HMS Hodo Raw TDC Occupancy
+macro Macros/overlay.C("hhodo_1x_pos_tdc_occu","hhodo_1x_neg_tdc_occu")
+macro Macros/overlay.C("hhodo_1y_pos_tdc_occu","hhodo_1y_neg_tdc_occu")
+macro Macros/overlay.C("hhodo_2x_pos_tdc_occu","hhodo_2x_neg_tdc_occu")
+macro Macros/overlay.C("hhodo_2y_pos_tdc_occu","hhodo_2y_neg_tdc_occu")
+newpage 2 2
+title HMS Hodo Raw Ped PMT+
+hhodo_1x_pos_rawped_vs_pad -type colz
+hhodo_1y_pos_rawped_vs_pad -type colz
+hhodo_2x_pos_rawped_vs_pad -type colz
+hhodo_2y_pos_rawped_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw Ped PMT-
+hhodo_1x_neg_rawped_vs_pad -type colz
+hhodo_1y_neg_rawped_vs_pad -type colz
+hhodo_2x_neg_rawped_vs_pad -type colz
+hhodo_2y_neg_rawped_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw Int PMT+
+hhodo_1x_pos_rawpi_vs_pad -type colz
+hhodo_1y_pos_rawpi_vs_pad -type colz
+hhodo_2x_pos_rawpi_vs_pad -type colz
+hhodo_2y_pos_rawpi_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw Int PMT-
+hhodo_1x_neg_rawpi_vs_pad -type colz
+hhodo_1y_neg_rawpi_vs_pad -type colz
+hhodo_2x_neg_rawpi_vs_pad -type colz
+hhodo_2y_neg_rawpi_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw Peak PMT+
+hhodo_1x_pos_rawpamp_vs_pad -type colz
+hhodo_1y_pos_rawpamp_vs_pad -type colz
+hhodo_2x_pos_rawpamp_vs_pad -type colz
+hhodo_2y_pos_rawpamp_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw Peak PMT-
+hhodo_1x_neg_rawpamp_vs_pad -type colz
+hhodo_1y_neg_rawpamp_vs_pad -type colz
+hhodo_2x_neg_rawpamp_vs_pad -type colz
+hhodo_2y_neg_rawpamp_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw Adc Time PMT+
+hhodo_1x_pos_rawptime_vs_pad -type colz
+hhodo_1y_pos_rawptime_vs_pad -type colz
+hhodo_2x_pos_rawptime_vs_pad -type colz
+hhodo_2y_pos_rawptime_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw ADc Time PMT-
+hhodo_1x_neg_rawptime_vs_pad -type colz
+hhodo_1y_neg_rawptime_vs_pad -type colz
+hhodo_2x_neg_rawptime_vs_pad -type colz
+hhodo_2y_neg_rawptime_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw TDC time PMT+
+hhodo_1x_pos_raw_tdc_time_vs_pad -type colz
+hhodo_1y_pos_raw_tdc_time_vs_pad -type colz
+hhodo_2x_pos_raw_tdc_time_vs_pad -type colz
+hhodo_2y_pos_raw_tdc_time_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Raw  TDC time PMT-
+hhodo_1x_neg_raw_tdc_time_vs_pad -type colz
+hhodo_1y_neg_raw_tdc_time_vs_pad -type colz
+hhodo_2x_neg_raw_tdc_time_vs_pad -type colz
+hhodo_2y_neg_raw_tdc_time_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Ped PMT+
+hhodo_1x_pos_ped_vs_pad -type colz
+hhodo_1y_pos_ped_vs_pad -type colz
+hhodo_2x_pos_ped_vs_pad -type colz
+hhodo_2y_pos_ped_vs_pad -type colz
+newpage 2 2
+title HMS Hodo Ped PMT-
+hhodo_1x_neg_ped_vs_pad -type colz
+hhodo_1y_neg_ped_vs_pad -type colz
+hhodo_2x_neg_ped_vs_pad -type colz
+hhodo_2y_neg_ped_vs_pad -type colz
+newpage 2 2
+title HMS Hodo ADC Int PMT+
+hhodo_1x_pos_pi_vs_pad -type colz
+hhodo_1y_pos_pi_vs_pad -type colz
+hhodo_2x_pos_pi_vs_pad -type colz
+hhodo_2y_pos_pi_vs_pad -type colz
+newpage 2 2
+title HMS Hodo ADC Int PMT-
+hhodo_1x_neg_pi_vs_pad -type colz
+hhodo_1y_neg_pi_vs_pad -type colz
+hhodo_2x_neg_pi_vs_pad -type colz
+hhodo_2y_neg_pi_vs_pad -type colz
+newpage 2 2
+title HMS Hodo ADC Peak PMT+
+hhodo_1x_pos_pamp_vs_pad -type colz
+hhodo_1y_pos_pamp_vs_pad -type colz
+hhodo_2x_pos_pamp_vs_pad -type colz
+hhodo_2y_pos_pamp_vs_pad -type colz
+newpage 2 2
+title HMS Hodo ADc Peak PMT-
+hhodo_1x_neg_pamp_vs_pad -type colz
+hhodo_1y_neg_pamp_vs_pad -type colz
+hhodo_2x_neg_pamp_vs_pad -type colz
+hhodo_2y_neg_pamp_vs_pad -type colz
+newpage 2 2
+title HMS Hodo TDC time PMT+
+hhodo_1x_pos_tdc_time_vs_pad -type colz
+hhodo_1y_pos_tdc_time_vs_pad -type colz
+hhodo_2x_pos_tdc_time_vs_pad -type colz
+hhodo_2y_pos_tdc_time_vs_pad -type colz
+newpage 2 2
+title HMS Hodo  TDC time PMT-
+hhodo_1x_neg_tdc_time_vs_pad -type colz
+hhodo_1y_neg_tdc_time_vs_pad -type colz
+hhodo_2x_neg_tdc_time_vs_pad -type colz
+hhodo_2y_neg_tdc_time_vs_pad -type colz
diff --git a/onlineGUI/Config/HMS/RASTER/simple_raster.cfg b/onlineGUI/Config/HMS/RASTER/simple_raster.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..16bc067346903782d999ad308918dc0af3e47825
--- /dev/null
+++ b/onlineGUI/Config/HMS/RASTER/simple_raster.cfg
@@ -0,0 +1,20 @@
+#protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+protorootfile ../ROOTfiles/hms_raster_simple_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 2 2
+title HMS 1D Raster Raw ADC
+hFRXA
+hFRXB
+hFRYA
+hFRYB
+newpage 2 2
+title HMS 1D Raster (Volts)
+hFRXA_V
+hFRXB_V
+hFRYA_V
+hFRYB_V
+newpage 1 2
+title HMS Hodo Raw Ped PMT+
+hFRA_XvsY -type colz
+hFRB_XvsY -type colz
diff --git a/onlineGUI/Config/SHMS/GEN/hallc_onlana.cfg b/onlineGUI/Config/SHMS/GEN/hallc_onlana.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..56384302b884e474438274e48b30fcc07a2bb144
--- /dev/null
+++ b/onlineGUI/Config/SHMS/GEN/hallc_onlana.cfg
@@ -0,0 +1,191 @@
+protorootfile ../ROOTfiles/shms_replay_XXXXX.root
+guicolor orange
+canvassize 1600 800
+#canvassize 800 800
+newpage 2 2 logz 
+title SHMS Noble Gas Cherenkov
+pngcer_occu -nostat
+pngcer_ped_vs_cntr -nostat
+pngcer_pi_vs_cntr -nostat
+pngcer_amp_vs_cntr -nostat
+newpage 4 3
+title SHMS Drift Chamber Reference Times
+pdc_ref1
+pdc_ref2
+pdc_ref3
+pdc_ref4
+pdc_ref5
+pdc_ref6
+pdc_ref7
+pdc_ref8
+pdc_ref9
+pdc_ref10
+newpage 4 3
+title SHMS Drift Chamber Wire Maps
+pdc1u1_wirenum
+pdc2u1_wirenum
+pdc1u2_wirenum
+pdc2u2_wirenum
+pdc1x1_wirenum
+pdc2x1_wirenum
+pdc1x2_wirenum 
+pdc2x2_wirenum 
+pdc1v1_wirenum
+pdc2v1_wirenum
+pdc1v2_wirenum 
+pdc2v2_wirenum
+newpage 4 3 logz
+title SHMS Drift Chamber TDC Times
+pdc1u1_wirenum_vs_tdc -nostat
+pdc2u1_wirenum_vs_tdc -nostat
+pdc1u2_wirenum_vs_tdc -nostat
+pdc2u2_wirenum_vs_tdc -nostat
+pdc1x1_wirenum_vs_tdc -nostat
+pdc2x1_wirenum_vs_tdc -nostat
+pdc1x2_wirenum_vs_tdc -nostat
+pdc2x2_wirenum_vs_tdc -nostat
+pdc1v1_wirenum_vs_tdc -nostat
+pdc2v1_wirenum_vs_tdc -nostat
+pdc1v2_wirenum_vs_tdc -nostat
+pdc2v2_wirenum_vs_tdc -nostat
+newpage 4 3
+title SHMS Drift Chamber Residuals
+pdc1u1_wirenum_vs_resid -nostat
+pdc2u1_wirenum_vs_resid -nostat
+pdc1u2_wirenum_vs_resid -nostat
+pdc2u2_wirenum_vs_resid -nostat
+pdc1x1_wirenum_vs_resid -nostat
+pdc2x1_wirenum_vs_resid -nostat
+pdc1x2_wirenum_vs_resid -nostat
+pdc2x2_wirenum_vs_resid -nostat
+pdc1v1_wirenum_vs_resid -nostat
+pdc2v1_wirenum_vs_resid -nostat
+pdc1v2_wirenum_vs_resid -nostat
+pdc2v2_wirenum_vs_resid -nostat
+newpage 2 1 logz
+title SHMS Drift Chamber Focal Plane
+pdc_xfp_vs_yxp -nostat
+pdc_xfpp_vs_yxpp -nostat
+newpage 2 3 logz
+title SHMS Hodoscope 1X+ (Left)
+phodo_1x_pos_adc_occu -nostat
+phodo_1x_pos_tdc_occu -nostat
+phodo_1x_pos_ped_vs_pad -nostat
+phodo_1x_pos_pi_vs_pad -nostat
+phodo_1x_pos_pamp_vs_pad -nostat
+phodo_1x_pos_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title SHMS Hodoscope 1X- (Left)
+phodo_1x_neg_adc_occu -nostat
+phodo_1x_neg_tdc_occu -nostat
+phodo_1x_neg_ped_vs_pad -nostat
+phodo_1x_neg_pi_vs_pad -nostat
+phodo_1x_neg_pamp_vs_pad -nostat
+phodo_1x_neg_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title SHMS Hodoscope 1Y+ (Left)
+phodo_1y_pos_adc_occu -nostat
+phodo_1y_pos_tdc_occu -nostat
+phodo_1y_pos_ped_vs_pad -nostat
+phodo_1y_pos_pi_vs_pad -nostat
+phodo_1y_pos_pamp_vs_pad -nostat
+phodo_1y_pos_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title SHMS Hodoscope 1Y- (Left)
+phodo_1y_neg_adc_occu -nostat
+phodo_1y_neg_tdc_occu -nostat
+phodo_1y_neg_ped_vs_pad -nostat
+phodo_1y_neg_pi_vs_pad -nostat
+phodo_1y_neg_pamp_vs_pad -nostat
+phodo_1y_neg_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title SHMS Hodoscope 2X+ (Left)
+phodo_2x_pos_adc_occu -nostat
+phodo_2x_pos_tdc_occu -nostat
+phodo_2x_pos_ped_vs_pad -nostat
+phodo_2x_pos_pi_vs_pad -nostat
+phodo_2x_pos_pamp_vs_pad -nostat
+phodo_2x_pos_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title SHMS Hodoscope 2X- (Left)
+phodo_2x_neg_adc_occu -nostat
+phodo_2x_neg_tdc_occu -nostat
+phodo_2x_neg_ped_vs_pad -nostat
+phodo_2x_neg_pi_vs_pad -nostat
+phodo_2x_neg_pamp_vs_pad -nostat
+phodo_2x_neg_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title SHMS Hodoscope 2Y+ (Left)
+phodo_2y_pos_adc_occu -nostat
+phodo_2y_pos_tdc_occu -nostat
+phodo_2y_pos_ped_vs_pad -nostat
+phodo_2y_pos_pi_vs_pad -nostat
+phodo_2y_pos_pamp_vs_pad -nostat
+phodo_2y_pos_tdc_time_vs_pad -nostat
+newpage 2 3 logz
+title SHMS Hodoscope 2Y- (Left)
+phodo_2y_neg_adc_occu -nostat
+phodo_2y_neg_tdc_occu -nostat
+phodo_2y_neg_ped_vs_pad -nostat
+phodo_2y_neg_pi_vs_pad -nostat
+phodo_2y_neg_pamp_vs_pad -nostat
+phodo_2y_neg_tdc_time_vs_pad -nostat
+newpage 2 2 logz 
+title SHMS Heavy Gas Cherenkov
+phgcer_occu -nostat
+phgcer_ped_vs_cntr -nostat
+phgcer_pi_vs_cntr -nostat
+phgcer_amp_vs_cntr -nostat
+newpage 2 2 logz 
+title SHMS Aerogel Positive (Left)
+paero_pos_occu -nostat
+paero_pos_ped_vs_cntr -nostat
+paero_pos_pi_vs_cntr -nostat
+paero_pos_amp_vs_cntr -nostat
+newpage 2 2 logz
+title SHMS Aerogel Negative (Right)
+paero_neg_occu -nostat
+paero_neg_ped_vs_cntr -nostat 
+paero_neg_pi_vs_cntr -nostat
+paero_neg_amp_vs_cntr -nostat
+newpage 2 2 logz
+title SHMS Pre-Shower Positive (Left)
+pcal_prshwr_pos_occu -nostat
+pcal_prshwr_pos_ped_blk -nostat
+pcal_prshwr_pos_pi_blk -nostat
+pcal_prshwr_pos_amp_blk -nostat
+newpage 2 2 logz
+title SHMS Pre-Shower Negative (Right)
+pcal_prshwr_neg_occu -nostat 
+pcal_prshwr_neg_ped_blk -nostat
+pcal_prshwr_neg_pi_blk -nostat
+pcal_prshwr_neg_amp_blk -nostat
+newpage 2 2 logz
+title SHMS Shower
+pcal_shwr_occu -nostat
+pcal_shwr_ped_blk -nostat
+pcal_shwr_pi_blk -nostat
+pcal_shwr_amp_blk -nostat
+newpage 4 3 logz
+title SHMS HGC/NGC Sums
+ptrig_pngc_sum_pped
+ptrig_pngc_sum_pint
+ptrig_pngc_sum_pamp
+ptrig_pngc_sum_ptime
+ptrig_pngc_sum_tdc
+ptrig_phgc_sum_pped
+ptrig_phgc_sum_pint
+ptrig_phgc_sum_pamp
+ptrig_phgc_sum_ptime
+ptrig_phgc_sum_tdc
+newpage 3 3 logy
+title SHMS Trigger Times
+ptrig_p1x_tdc
+ptrig_p1y_tdc
+ptrig_p2x_tdc
+ptrig_p2y_tdc
+ptrig_p1T_tdc
+ptrig_p2T_tdc
+ptrig_pT1_tdc
+ptrig_pT2_tdc
+ptrig_pT3_tdc
\ No newline at end of file
diff --git a/onlineGUI/Config/SHMS/HODO/good_phodo_2d.cfg b/onlineGUI/Config/SHMS/HODO/good_phodo_2d.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..a3e090af0b9ebd13c10a7e92dd6ce518bd812549
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/good_phodo_2d.cfg
@@ -0,0 +1,367 @@
+#protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 1 1
+title Beta notrack
+macro Macros/gooddraw_2d_phodo.C("hbeta")
+newpage 2 2
+title fptime
+macro Macros/gooddraw_2d_phodo.C("fptime1x")
+macro Macros/gooddraw_2d_phodo.C("fptime1y")
+macro Macros/gooddraw_2d_phodo.C("fptime2x")
+macro Macros/gooddraw_2d_phodo.C("fptime2y")
+newpage 2 2
+title fptime
+macro Macros/gooddraw_2d_phodo.C("fptime1x_pad")
+macro Macros/gooddraw_2d_phodo.C("fptime1y_pad")
+macro Macros/gooddraw_2d_phodo.C("fptime2x_pad")
+macro Macros/gooddraw_2d_phodo.C("fptime2y_pad")
+newpage 4 4
+title X1 Neg ADc v TDC
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1x13")
+newpage 4 4
+title X1 Pos ADc v TDC
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1x13")
+newpage 4 4
+title Y1 Neg ADc v TDC
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg1y13")
+newpage 4 4
+title Y1 Pos ADc v TDC
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos1y13")
+newpage 4 4
+title X2 Neg ADc v TDC
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2x14")
+newpage 4 4
+title X2 Pos ADc v TDC
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2x14")
+newpage 3 4
+title Y2 Neg ADc v TDC
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcneg2y16")
+newpage 3 4
+title Y2 Pos ADc v TDC
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvtdcpos2y16")
+newpage 4 4
+title X1 Eff Neg PMT
+macro Macros/hodo_efficiency.C("uhdidneg1x1","uhshouldneg1x1")
+macro Macros/hodo_efficiency.C("uhdidneg1x2","uhshouldneg1x2")
+macro Macros/hodo_efficiency.C("uhdidneg1x3","uhshouldneg1x3")
+macro Macros/hodo_efficiency.C("uhdidneg1x4","uhshouldneg1x4")
+macro Macros/hodo_efficiency.C("uhdidneg1x5","uhshouldneg1x5")
+macro Macros/hodo_efficiency.C("uhdidneg1x6","uhshouldneg1x6")
+macro Macros/hodo_efficiency.C("uhdidneg1x7","uhshouldneg1x7")
+macro Macros/hodo_efficiency.C("uhdidneg1x8","uhshouldneg1x8")
+macro Macros/hodo_efficiency.C("uhdidneg1x9","uhshouldneg1x9")
+macro Macros/hodo_efficiency.C("uhdidneg1x10","uhshouldneg1x10")
+macro Macros/hodo_efficiency.C("uhdidneg1x11","uhshouldneg1x11")
+macro Macros/hodo_efficiency.C("uhdidneg1x12","uhshouldneg1x12")
+macro Macros/hodo_efficiency.C("uhdidneg1x13","uhshouldneg1x13")
+newpage 4 4
+title X1 Eff Pos PMT
+macro Macros/hodo_efficiency.C("uhdidpos1x1","uhshouldpos1x1")
+macro Macros/hodo_efficiency.C("uhdidpos1x2","uhshouldpos1x2")
+macro Macros/hodo_efficiency.C("uhdidpos1x3","uhshouldpos1x3")
+macro Macros/hodo_efficiency.C("uhdidpos1x4","uhshouldpos1x4")
+macro Macros/hodo_efficiency.C("uhdidpos1x5","uhshouldpos1x5")
+macro Macros/hodo_efficiency.C("uhdidpos1x6","uhshouldpos1x6")
+macro Macros/hodo_efficiency.C("uhdidpos1x7","uhshouldpos1x7")
+macro Macros/hodo_efficiency.C("uhdidpos1x8","uhshouldpos1x8")
+macro Macros/hodo_efficiency.C("uhdidpos1x9","uhshouldpos1x9")
+macro Macros/hodo_efficiency.C("uhdidpos1x10","uhshouldpos1x10")
+macro Macros/hodo_efficiency.C("uhdidpos1x11","uhshouldpos1x11")
+macro Macros/hodo_efficiency.C("uhdidpos1x12","uhshouldpos1x12")
+macro Macros/hodo_efficiency.C("uhdidpos1x13","uhshouldpos1x13")
+newpage 3 4
+title Y1 Eff Neg PMT
+macro Macros/hodo_efficiency.C("uhdidneg1y1","uhshouldneg1y1")
+macro Macros/hodo_efficiency.C("uhdidneg1y2","uhshouldneg1y2")
+macro Macros/hodo_efficiency.C("uhdidneg1y3","uhshouldneg1y3")
+macro Macros/hodo_efficiency.C("uhdidneg1y4","uhshouldneg1y4")
+macro Macros/hodo_efficiency.C("uhdidneg1y5","uhshouldneg1y5")
+macro Macros/hodo_efficiency.C("uhdidneg1y6","uhshouldneg1y6")
+macro Macros/hodo_efficiency.C("uhdidneg1y7","uhshouldneg1y7")
+macro Macros/hodo_efficiency.C("uhdidneg1y8","uhshouldneg1y8")
+macro Macros/hodo_efficiency.C("uhdidneg1y9","uhshouldneg1y9")
+macro Macros/hodo_efficiency.C("uhdidneg1y10","uhshouldneg1y10")
+macro Macros/hodo_efficiency.C("uhdidneg1y11","uhshouldneg1y11")
+macro Macros/hodo_efficiency.C("uhdidneg1y12","uhshouldneg1y12")
+macro Macros/hodo_efficiency.C("uhdidneg1y13","uhshouldneg1y13")
+newpage 3 4
+title Y1 Eff Pos PMT
+macro Macros/hodo_efficiency.C("uhdidpos1y1","uhshouldpos1y1")
+macro Macros/hodo_efficiency.C("uhdidpos1y2","uhshouldpos1y2")
+macro Macros/hodo_efficiency.C("uhdidpos1y3","uhshouldpos1y3")
+macro Macros/hodo_efficiency.C("uhdidpos1y4","uhshouldpos1y4")
+macro Macros/hodo_efficiency.C("uhdidpos1y5","uhshouldpos1y5")
+macro Macros/hodo_efficiency.C("uhdidpos1y6","uhshouldpos1y6")
+macro Macros/hodo_efficiency.C("uhdidpos1y7","uhshouldpos1y7")
+macro Macros/hodo_efficiency.C("uhdidpos1y8","uhshouldpos1y8")
+macro Macros/hodo_efficiency.C("uhdidpos1y9","uhshouldpos1y9")
+macro Macros/hodo_efficiency.C("uhdidpos1y10","uhshouldpos1y10")
+macro Macros/hodo_efficiency.C("uhdidpos1y11","uhshouldpos1y11")
+macro Macros/hodo_efficiency.C("uhdidpos1y12","uhshouldpos1y12")
+macro Macros/hodo_efficiency.C("uhdidpos1y13","uhshouldpos1y13")
+newpage 4 4
+title X2 Eff Neg PMT
+macro Macros/hodo_efficiency.C("uhdidneg2x1","uhshouldneg2x1")
+macro Macros/hodo_efficiency.C("uhdidneg2x2","uhshouldneg2x2")
+macro Macros/hodo_efficiency.C("uhdidneg2x3","uhshouldneg2x3")
+macro Macros/hodo_efficiency.C("uhdidneg2x4","uhshouldneg2x4")
+macro Macros/hodo_efficiency.C("uhdidneg2x5","uhshouldneg2x5")
+macro Macros/hodo_efficiency.C("uhdidneg2x6","uhshouldneg2x6")
+macro Macros/hodo_efficiency.C("uhdidneg2x7","uhshouldneg2x7")
+macro Macros/hodo_efficiency.C("uhdidneg2x8","uhshouldneg2x8")
+macro Macros/hodo_efficiency.C("uhdidneg2x9","uhshouldneg2x9")
+macro Macros/hodo_efficiency.C("uhdidneg2x10","uhshouldneg2x10")
+macro Macros/hodo_efficiency.C("uhdidneg2x11","uhshouldneg2x11")
+macro Macros/hodo_efficiency.C("uhdidneg2x12","uhshouldneg2x12")
+macro Macros/hodo_efficiency.C("uhdidneg2x13","uhshouldneg2x13")
+macro Macros/hodo_efficiency.C("uhdidneg2x14","uhshouldneg2x14")
+newpage 4 4
+title X2 Eff Pos PMT
+macro Macros/hodo_efficiency.C("uhdidpos2x1","uhshouldpos2x1")
+macro Macros/hodo_efficiency.C("uhdidpos2x2","uhshouldpos2x2")
+macro Macros/hodo_efficiency.C("uhdidpos2x3","uhshouldpos2x3")
+macro Macros/hodo_efficiency.C("uhdidpos2x4","uhshouldpos2x4")
+macro Macros/hodo_efficiency.C("uhdidpos2x5","uhshouldpos2x5")
+macro Macros/hodo_efficiency.C("uhdidpos2x6","uhshouldpos2x6")
+macro Macros/hodo_efficiency.C("uhdidpos2x7","uhshouldpos2x7")
+macro Macros/hodo_efficiency.C("uhdidpos2x8","uhshouldpos2x8")
+macro Macros/hodo_efficiency.C("uhdidpos2x9","uhshouldpos2x9")
+macro Macros/hodo_efficiency.C("uhdidpos2x10","uhshouldpos2x10")
+macro Macros/hodo_efficiency.C("uhdidpos2x11","uhshouldpos2x11")
+macro Macros/hodo_efficiency.C("uhdidpos2x12","uhshouldpos2x12")
+macro Macros/hodo_efficiency.C("uhdidpos2x13","uhshouldpos2x13")
+macro Macros/hodo_efficiency.C("uhdidpos2x14","uhshouldpos2x14")
+newpage 3 4
+title Y2 Eff Neg PMT
+macro Macros/hodo_efficiency.C("uhdidneg2y7","uhshouldneg2y7")
+macro Macros/hodo_efficiency.C("uhdidneg2y8","uhshouldneg2y8")
+macro Macros/hodo_efficiency.C("uhdidneg2y9","uhshouldneg2y9")
+macro Macros/hodo_efficiency.C("uhdidneg2y10","uhshouldneg2y10")
+macro Macros/hodo_efficiency.C("uhdidneg2y11","uhshouldneg2y11")
+macro Macros/hodo_efficiency.C("uhdidneg2y12","uhshouldneg2y12")
+macro Macros/hodo_efficiency.C("uhdidneg2y13","uhshouldneg2y13")
+macro Macros/hodo_efficiency.C("uhdidneg2y14","uhshouldneg2y14")
+macro Macros/hodo_efficiency.C("uhdidneg2y15","uhshouldneg2y15")
+macro Macros/hodo_efficiency.C("uhdidneg2y16","uhshouldneg2y16")
+newpage 3 4
+title Y2 Eff Pos PMT
+macro Macros/hodo_efficiency.C("uhdidpos2y7","uhshouldpos2y7")
+macro Macros/hodo_efficiency.C("uhdidpos2y8","uhshouldpos2y8")
+macro Macros/hodo_efficiency.C("uhdidpos2y9","uhshouldpos2y9")
+macro Macros/hodo_efficiency.C("uhdidpos2y10","uhshouldpos2y10")
+macro Macros/hodo_efficiency.C("uhdidpos2y11","uhshouldpos2y11")
+macro Macros/hodo_efficiency.C("uhdidpos2y12","uhshouldpos2y12")
+macro Macros/hodo_efficiency.C("uhdidpos2y13","uhshouldpos2y13")
+macro Macros/hodo_efficiency.C("uhdidpos2y14","uhshouldpos2y14")
+macro Macros/hodo_efficiency.C("uhdidpos2y15","uhshouldpos2y15")
+macro Macros/hodo_efficiency.C("uhdidpos2y16","uhshouldpos2y16")
+newpage 4 4
+title X1 ADC int Pos vs Neg
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1x13")
+newpage 3 4
+title Y1  ADC int Pos vs Neg
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc1y13")
+newpage 4 4
+title X2  ADC int Pos vs Neg
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2x14")
+newpage 3 4
+title Y2  ADC int Pos vs Neg
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcintgtdc2y16")
+newpage 4 4
+title X1 TDC Pos vs Neg
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1x13")
+newpage 3 4
+title Y1 TDC Pos vs Neg
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc1y13")
+newpage 4 4
+title X2 TDC Pos vs Neg
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2x14")
+newpage 3 4
+title Y2 TDC Pos vs Neg
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdc2y16")
diff --git a/onlineGUI/Config/SHMS/HODO/good_phodo_2d_dis.cfg b/onlineGUI/Config/SHMS/HODO/good_phodo_2d_dis.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..15452cad03c74b3d830065deeb6d0eebed63f299
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/good_phodo_2d_dis.cfg
@@ -0,0 +1,293 @@
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title X1+ ADC vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1x13")
+newpage 4 4
+title X1- ADC vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1x13")
+newpage 4 4
+title Y1+ ADC vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos1y13")
+newpage 4 4
+title Y1- ADC vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg1y13")
+newpage 4 4
+title X2+ ADC vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2x14")
+newpage 4 4
+title X2- ADC vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2x14")
+newpage 3 3
+title Y2+ ADC vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdispos2y16")
+newpage 3 3
+title Y2- ADC vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dadcvdisneg2y16")
+newpage 4 4
+title X1+ tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1x13")
+newpage 4 4
+title X1- tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1x13")
+newpage 4 4
+title Y1+ tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos1y13")
+newpage 4 4
+title Y1- tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg1y13")
+newpage 4 4
+title X2+ tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2x14")
+newpage 4 4
+title X2- tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2x14")
+newpage 3 4
+title Y2+ tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdispos2y16")
+newpage 3 4
+title Y2- tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcvdisneg2y16")
+newpage 4 4
+title X1+ tdc diff vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1x13")
+newpage 4 4
+title Y1+ tdc diff vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis1y13")
+newpage 4 4
+title X2+ tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x1")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x2")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x3")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x4")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x5")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x6")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x13")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2x14")
+newpage 3 4
+title Y2+ tdc vs Dis
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y7")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y8")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y9")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y10")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y11")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y12")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y13")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y14")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y15")
+macro Macros/gooddraw_2d_phodo.C("uh2dtdcdiffvdis2y16")
diff --git a/onlineGUI/Config/SHMS/HODO/raw_phodo_1x.cfg b/onlineGUI/Config/SHMS/HODO/raw_phodo_1x.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..bf655d265c8417f32000ebf5cd730a3625a61c1b
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/raw_phodo_1x.cfg
@@ -0,0 +1,273 @@
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title HMS X1+ Raw TDCs
+macro Macros/rawdraw_phodo.C("uhtdc1x1posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x2posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x3posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x4posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x5posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x6posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x7posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x8posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x9posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x10posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x11posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x12posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x13posTimeRaw")
+newpage 4 4
+title HMS X1- Raw TDCs
+macro Macros/rawdraw_phodo.C("uhtdc1x1negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x2negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x3negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x4negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x5negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x6negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x7negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x8negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x9negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x10negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x11negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x12negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1x13negTimeRaw")
+newpage 4 4
+title HMS X1+ TDCs
+macro Macros/rawdraw_phodo.C("uhtdc1x1posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x2posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x3posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x4posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x5posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x6posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x7posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x8posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x9posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x10posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x11posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x12posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x13posTime")
+newpage 4 4
+title HMS X1- TDCs
+macro Macros/rawdraw_phodo.C("uhtdc1x1negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x2negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x3negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x4negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x5negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x6negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x7negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x8negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x9negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x10negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x11negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x12negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1x13negTime")
+newpage 4 4
+title HMS X1+ FADC Raw Pedestals
+macro Macros/rawdraw_phodo.C("uhadc1x1posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x2posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x3posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x4posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x5posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x6posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x7posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x8posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x9posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x10posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x11posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x12posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x13posPedRaw")
+newpage 4 4
+title HMS X1- FADC Raw Pedestals
+macro Macros/rawdraw_phodo.C("uhadc1x1negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x2negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x3negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x4negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x5negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x6negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x7negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x8negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x9negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x10negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x11negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x12negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x13negPedRaw")
+newpage 4 4
+title HMS X1+ FADC Pedestals
+macro Macros/rawdraw_phodo.C("uhadc1x1posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x2posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x3posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x4posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x5posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x6posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x7posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x8posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x9posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x10posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x11posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x12posPed")
+macro Macros/rawdraw_phodo.C("uhadc1x13posPed")
+newpage 4 4
+title HMS X1- FADC Pedestals
+macro Macros/rawdraw_phodo.C("uhadc1x1negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x2negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x3negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x4negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x5negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x6negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x7negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x8negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x9negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x10negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x11negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x12negPed")
+macro Macros/rawdraw_phodo.C("uhadc1x13negPed")
+newpage 4 4
+title HMS X1+ FADC Raw Integrals
+macro Macros/rawdraw_phodo.C("uhadc1x1posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x2posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x3posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x4posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x5posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x6posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x7posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x8posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x9posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x10posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x11posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x12posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x13posPulseIntRaw")
+newpage 4 4
+title HMS X1- FADC Raw Integrals
+macro Macros/rawdraw_phodo.C("uhadc1x1negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x2negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x3negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x4negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x5negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x6negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x7negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x8negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x9negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x10negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x11negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x12negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x13negPulseIntRaw")
+newpage 4 4
+title HMS X1+ FADC Integrals
+macro Macros/rawdraw_phodo.C("uhadc1x1posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x2posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x3posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x4posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x5posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x6posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x7posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x8posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x9posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x10posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x11posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x12posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x13posPulseInt")
+newpage 4 4
+title HMS X1- FADC Integrals
+macro Macros/rawdraw_phodo.C("uhadc1x1negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x2negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x3negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x4negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x5negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x6negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x7negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x8negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x9negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x10negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x11negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x12negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1x13negPulseInt")
+newpage 4 4
+title HMS X1+ FADC Amplitudes Raw
+macro Macros/rawdraw_phodo.C("uhadc1x1posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x2posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x3posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x4posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x5posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x6posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x7posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x8posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x9posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x10posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x11posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x12posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x13posPulseAmpRaw")
+newpage 4 4
+title HMS X1- FADC Amplitudes Raw
+macro Macros/rawdraw_phodo.C("uhadc1x1negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x2negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x3negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x4negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x5negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x6negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x7negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x8negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x9negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x10negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x11negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x12negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x13negPulseAmpRaw")
+newpage 4 4
+title HMS X1+ FADC Amplitudes
+macro Macros/rawdraw_phodo.C("uhadc1x1posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x2posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x3posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x4posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x5posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x6posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x7posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x8posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x9posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x10posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x11posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x12posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x13posPulseAmp")
+newpage 4 4
+title HMS X1- FADC Amplitudes
+macro Macros/rawdraw_phodo.C("uhadc1x1negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x2negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x3negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x4negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x5negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x6negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x7negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x8negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x9negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x10negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x11negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x12negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1x13negPulseAmp")
+newpage 4 4
+title HMS X1+ FADC Times Raw
+macro Macros/rawdraw_phodo.C("uhadc1x1posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x2posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x3posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x4posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x5posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x6posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x7posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x8posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x9posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x10posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x11posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x12posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x13posPulseTimeRaw")
+newpage 4 4
+title HMS X1- FADC Times Raw
+macro Macros/rawdraw_phodo.C("uhadc1x1negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x2negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x3negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x4negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x5negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x6negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x7negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x8negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x9negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x10negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x11negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x12negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1x13negPulseTimeRaw")
diff --git a/onlineGUI/Config/SHMS/HODO/raw_phodo_1y.cfg b/onlineGUI/Config/SHMS/HODO/raw_phodo_1y.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..f96b971fe1dd86373a2965043fbc98d0973ee579
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/raw_phodo_1y.cfg
@@ -0,0 +1,270 @@
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 3 4
+title HMS Y1+ Raw TDCs
+macro Macros/rawdraw_phodo.C("uhtdc1y1posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y2posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y3posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y4posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y5posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y6posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y7posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y8posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y9posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y10posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y11posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y12posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y13posTimeRaw")
+newpage 3 4
+title HMS Y1- Raw TDCs
+macro Macros/rawdraw_phodo.C("uhtdc1y1negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y2negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y3negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y4negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y5negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y6negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y7negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y8negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y9negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y10negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y11negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y12negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc1y13negTimeRaw")
+newpage 3 4
+title HMS Y1+ TDCs
+macro Macros/rawdraw_phodo.C("uhtdc1y1posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y2posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y3posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y4posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y5posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y6posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y7posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y8posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y9posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y10posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y11posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y12posTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y13posTime")
+newpage 3 4
+title HMS Y1- TDCs
+macro Macros/rawdraw_phodo.C("uhtdc1y1negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y2negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y3negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y4negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y5negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y6negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y7negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y8negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y9negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y10negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y11negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y12negTime")
+macro Macros/rawdraw_phodo.C("uhtdc1y13negTime")
+newpage 3 4
+title HMS Y1+ FADC Raw Pedestals
+macro Macros/rawdraw_phodo.C("uhadc1y1posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y2posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y3posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y4posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y5posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y6posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y7posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y8posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y9posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y10posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y11posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y12posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y13posPedRaw")
+newpage 3 4
+title HMS Y1- FADC Raw Pedestals
+macro Macros/rawdraw_phodo.C("uhadc1y1negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y2negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y3negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y4negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y5negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y6negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y7negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y8negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y9negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y10negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y11negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y12negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y13negPedRaw")
+newpage 3 4
+title HMS Y1+ FADC Pedestals
+macro Macros/rawdraw_phodo.C("uhadc1y1posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y2posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y3posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y4posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y5posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y6posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y7posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y8posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y9posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y10posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y11posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y12posPed")
+macro Macros/rawdraw_phodo.C("uhadc1y13posPed")
+newpage 3 4
+title HMS Y1- FADC Pedestals
+macro Macros/rawdraw_phodo.C("uhadc1y1negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y2negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y3negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y4negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y5negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y6negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y7negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y8negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y9negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y10negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y11negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y12negPed")
+macro Macros/rawdraw_phodo.C("uhadc1y13negPed")
+newpage 3 4
+title HMS Y1+ FADC Raw Integrals
+macro Macros/rawdraw_phodo.C("uhadc1y1posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y2posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y3posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y4posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y5posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y6posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y7posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y8posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y9posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y10posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y11posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y12posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y13posPulseIntRaw")
+newpage 3 4
+title HMS Y1- FADC Raw Integrals
+macro Macros/rawdraw_phodo.C("uhadc1y1negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y2negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y3negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y4negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y5negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y6negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y7negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y8negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y9negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y10negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y11negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y12negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y13negPulseIntRaw")
+newpage 3 4
+title HMS Y1+ FADC Integrals
+macro Macros/rawdraw_phodo.C("uhadc1y1posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y2posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y3posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y4posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y5posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y6posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y7posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y8posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y9posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y10posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y11posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y12posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y13posPulseInt")
+newpage 3 4
+title HMS Y1- FADC Integrals
+macro Macros/rawdraw_phodo.C("uhadc1y1negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y2negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y3negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y4negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y5negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y6negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y7negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y8negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y9negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y10negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y11negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y12negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc1y13negPulseInt")
+newpage 3 4
+title HMS Y1+ FADC Amplitudes Raw
+macro Macros/rawdraw_phodo.C("uhadc1y1posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y2posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y3posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y4posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y5posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y6posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y7posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y8posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y9posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y10posPulseAmpRaw")
+newpage 3 4
+title HMS Y1- FADC Amplitudes Raw
+macro Macros/rawdraw_phodo.C("uhadc1y1negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y2negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y3negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y4negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y5negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y6negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y7negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y8negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y9negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y10negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y11negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y12negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y13negPulseAmpRaw")
+newpage 3 4
+title HMS Y1+ FADC Amplitudes
+macro Macros/rawdraw_phodo.C("uhadc1y1posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y2posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y3posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y4posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y5posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y6posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y7posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y8posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y9posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y10posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y11posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y12posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y13posPulseAmp")
+newpage 3 4
+title HMS Y1- FADC Amplitudes
+macro Macros/rawdraw_phodo.C("uhadc1y1negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y2negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y3negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y4negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y5negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y6negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y7negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y8negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y9negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y10negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y11negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y12negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc1y13negPulseAmp")
+newpage 3 4
+title HMS Y1+ FADC Times Raw
+macro Macros/rawdraw_phodo.C("uhadc1y1posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y2posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y3posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y4posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y5posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y6posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y7posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y8posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y9posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y10posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y11posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y12posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y13posPulseTimeRaw")
+newpage 3 4
+title HMS Y1- FADC Times Raw
+macro Macros/rawdraw_phodo.C("uhadc1y1negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y2negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y3negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y4negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y5negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y6negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y7negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y8negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y9negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y10negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y11negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y12negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc1y13negPulseTimeRaw")
diff --git a/onlineGUI/Config/SHMS/HODO/raw_phodo_2d.cfg b/onlineGUI/Config/SHMS/HODO/raw_phodo_2d.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..af177db3407eea245016687c7ac07af4d5fa2b61
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/raw_phodo_2d.cfg
@@ -0,0 +1,306 @@
+#protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title X1 ADC peak Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1x13")
+newpage 4 4
+title Y1  ADC peak Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y1")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y2")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y3")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y4")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y5")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y6")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak1y13")
+newpage 4 4
+title X2  ADC peak Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x13")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2x14")
+newpage 3 4
+title Y2  ADC peak Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y13")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y14")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y15")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcpeak2y16")
+newpage 4 4
+title X1 ADC int Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1x13")
+newpage 4 4
+title Y1  ADC int Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y1")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y2")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y3")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y4")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y5")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y6")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint1y13")
+newpage 4 4
+title X2  ADC int Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x13")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2x14")
+newpage 3 4
+title Y2  ADC int Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y13")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y14")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y15")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcint2y16")
+newpage 3 4
+title Y2  ADC int cut Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y13")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y14")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y15")
+macro Macros/rawdraw_2d_phodo.C("uh2dadcintcut2y16")
+newpage 4 4
+title X1 TDC Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1x13")
+newpage 4 4
+title Y1  TDC Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc1y13")
+newpage 4 4
+title X2  TDC Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x13")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2x14")
+newpage 3 4
+title Y2  TDC Pos vs Neg
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y13")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y14")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y15")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdc2y16")
+newpage 4 4
+title X1-  ADC (pC) vs TDC
+macro Macros/rawdraw_2d_phodo.C("uh2d1x1neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x2neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x3neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x4neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x5neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x6neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x7neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x8neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x9neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x10neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x11neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x12neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x13neg")
+newpage 4 4
+title X1+  ADC (pC) vs TDC
+macro Macros/rawdraw_2d_phodo.C("uh2d1x1pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x2pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x3pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x4pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x5pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x6pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x7pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x8pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x9pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x10pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x11pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x12pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1x13pos")
+newpage 4 4
+title Y1-   ADC (pC) vs TDC
+macro Macros/rawdraw_2d_phodo.C("uh2d1y1neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y2neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y3neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y4neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y5neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y6neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y7neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y8neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y9neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y10neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y11neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y12neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y13neg")
+newpage 4 4
+title Y1+   ADC (pC) vs TDC
+macro Macros/rawdraw_2d_phodo.C("uh2d1y1pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y2pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y3pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y4pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y5pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y6pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y7pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y8pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y9pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y10pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y11pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y12pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d1y13pos")
+newpage 4 4
+title X2-   ADC (pC) vs TDC
+macro Macros/rawdraw_2d_phodo.C("uh2d2x1neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x2neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x3neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x4neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x5neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x6neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x7neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x8neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x9neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x10neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x11neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x12neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x13neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x14neg")
+newpage 4 4
+title X2-   ADC (pC) vs TDC
+macro Macros/rawdraw_2d_phodo.C("uh2d2x1pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x2pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x3pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x4pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x5pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x6pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x7pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x8pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x9pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x10pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x11pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x12pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x13pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2x14pos")
+newpage 3 4
+title Y2-   ADC (pC) vs TDC
+macro Macros/rawdraw_2d_phodo.C("uh2d2y7neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y8neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y9neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y10neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y11neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y12neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y13neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y14neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y15neg")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y16neg")
+newpage 3 4
+title Y2+   ADC (pC) vs TDC
+macro Macros/rawdraw_2d_phodo.C("uh2d2y7pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y8pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y9pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y10pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y11pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y12pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y13pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y14pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y15pos")
+macro Macros/rawdraw_2d_phodo.C("uh2d2y16pos")
diff --git a/onlineGUI/Config/SHMS/HODO/raw_phodo_2d_pad.cfg b/onlineGUI/Config/SHMS/HODO/raw_phodo_2d_pad.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..a2fa99c25b1805a1d2612cb7b3a6f0eb14fdad98
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/raw_phodo_2d_pad.cfg
@@ -0,0 +1,120 @@
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title X1 Neg TDC vs Y1 paddle
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1x13")
+newpage 4 4
+title X1 Pos TDC vs Y1 paddle
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1x13")
+newpage 4 4
+title Y1 Neg TDC vs X1 paddle
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg1y13")
+newpage 4 4
+title Y1 Pos TDC vs X1 paddle
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos1y13")
+newpage 4 4
+title X2 Neg TDC vs Y1 paddle
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x13")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2x14")
+newpage 4 4
+title X2 Pos TDC vs Y1 paddle
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x1")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x2")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x3")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x4")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x5")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x6")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x13")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2x14")
+newpage 3 3
+title Y2 Neg TDC vs X2 paddle
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y13")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y14")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y15")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdisneg2y16")
+newpage 3 3
+title Y2 Pos TDC vs X2 paddle
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y7")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y8")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y9")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y10")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y11")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y12")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y13")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y14")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y15")
+macro Macros/rawdraw_2d_phodo.C("uh2dtdcvdispos2y16")
+
diff --git a/onlineGUI/Config/SHMS/HODO/raw_phodo_2x.cfg b/onlineGUI/Config/SHMS/HODO/raw_phodo_2x.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..8ef90da958cba18dd2ac0829d3cd36486799f1f0
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/raw_phodo_2x.cfg
@@ -0,0 +1,291 @@
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 4 4
+title HMS X2+ Raw TDCs
+macro Macros/rawdraw_phodo.C("uhtdc2x1posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x2posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x3posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x4posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x5posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x6posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x7posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x8posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x9posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x10posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x11posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x12posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x13posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x14posTimeRaw")
+newpage 4 4
+title HMS X2- Raw TDCs
+macro Macros/rawdraw_phodo.C("uhtdc2x1negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x2negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x3negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x4negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x5negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x6negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x7negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x8negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x9negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x10negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x11negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x12negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x13negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2x14negTimeRaw")
+newpage 4 4
+title HMS X2+ TDCs
+macro Macros/rawdraw_phodo.C("uhtdc2x1posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x2posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x3posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x4posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x5posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x6posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x7posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x8posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x9posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x10posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x11posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x12posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x13posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x14posTime")
+newpage 4 4
+title HMS X2- TDCs
+macro Macros/rawdraw_phodo.C("uhtdc2x1negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x2negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x3negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x4negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x5negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x6negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x7negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x8negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x9negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x10negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x11negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x12negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x13negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2x14negTime")
+newpage 4 4
+title HMS X2+ FADC Raw Pedestals
+macro Macros/rawdraw_phodo.C("uhadc2x1posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x2posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x3posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x4posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x5posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x6posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x7posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x8posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x9posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x10posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x11posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x12posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x13posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x14posPedRaw")
+newpage 4 4
+title HMS X2- FADC Raw Pedestals
+macro Macros/rawdraw_phodo.C("uhadc2x1negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x2negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x3negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x4negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x5negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x6negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x7negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x8negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x9negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x10negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x11negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x12negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x13negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x14negPedRaw")
+newpage 4 4
+title HMS X2+ FADC Pedestals
+macro Macros/rawdraw_phodo.C("uhadc2x1posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x2posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x3posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x4posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x5posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x6posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x7posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x8posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x9posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x10posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x11posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x12posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x13posPed")
+macro Macros/rawdraw_phodo.C("uhadc2x14posPed")
+newpage 4 4
+title HMS X2- FADC Pedestals
+macro Macros/rawdraw_phodo.C("uhadc2x1negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x2negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x3negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x4negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x5negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x6negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x7negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x8negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x9negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x10negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x11negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x12negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x13negPed")
+macro Macros/rawdraw_phodo.C("uhadc2x14negPed")
+newpage 4 4
+title HMS X2+ FADC Raw Integrals
+macro Macros/rawdraw_phodo.C("uhadc2x1posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x2posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x3posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x4posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x5posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x6posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x7posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x8posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x9posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x10posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x11posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x12posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x13posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x14posPulseIntRaw")
+newpage 4 4
+title HMS X2- FADC Raw Integrals
+macro Macros/rawdraw_phodo.C("uhadc2x1negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x2negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x3negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x4negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x5negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x6negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x7negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x8negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x9negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x10negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x11negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x12negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x13negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x14negPulseIntRaw")
+newpage 4 4
+title HMS X2+ FADC Integrals
+macro Macros/rawdraw_phodo.C("uhadc2x1posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x2posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x3posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x4posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x5posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x6posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x7posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x8posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x9posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x10posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x11posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x12posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x13posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x14posPulseInt")
+newpage 4 4
+title HMS X2- FADC Integrals
+macro Macros/rawdraw_phodo.C("uhadc2x1negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x2negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x3negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x4negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x5negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x6negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x7negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x8negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x9negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x10negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x11negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x12negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x13negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2x14negPulseInt")
+newpage 4 4
+title HMS X2+ FADC Amplitudes Raw
+macro Macros/rawdraw_phodo.C("uhadc2x1posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x2posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x3posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x4posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x5posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x6posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x7posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x8posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x9posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x10posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x11posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x12posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x13posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x14posPulseAmpRaw")
+newpage 4 4
+title HMS X2- FADC Amplitudes Raw
+macro Macros/rawdraw_phodo.C("uhadc2x1negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x2negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x3negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x4negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x5negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x6negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x7negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x8negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x9negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x10negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x11negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x12negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x13negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x14negPulseAmpRaw")
+newpage 4 4
+title HMS X2+ FADC Amplitudes
+macro Macros/rawdraw_phodo.C("uhadc2x1posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x2posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x3posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x4posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x5posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x6posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x7posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x8posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x9posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x10posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x11posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x12posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x13posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x14posPulseAmp")
+newpage 4 4
+title HMS X2- FADC Amplitudes
+macro Macros/rawdraw_phodo.C("uhadc2x1negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x2negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x3negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x4negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x5negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x6negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x7negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x8negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x9negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x10negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x11negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x12negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x13negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2x14negPulseAmp")
+newpage 4 4
+title HMS X2+ FADC Times Raw
+macro Macros/rawdraw_phodo.C("uhadc2x1posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x2posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x3posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x4posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x5posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x6posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x7posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x8posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x9posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x10posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x11posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x12posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x13posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x14posPulseTimeRaw")
+newpage 4 4
+title HMS X2- FADC Times Raw
+macro Macros/rawdraw_phodo.C("uhadc2x1negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x2negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x3negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x4negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x5negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x6negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x7negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x8negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x9negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x10negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x11negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x12negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x13negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2x14negPulseTimeRaw")
diff --git a/onlineGUI/Config/SHMS/HODO/raw_phodo_2y.cfg b/onlineGUI/Config/SHMS/HODO/raw_phodo_2y.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..c14971fbb9f2a96ec5a609d4e8eccf4abb39f17f
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/raw_phodo_2y.cfg
@@ -0,0 +1,417 @@
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 5 4
+title HMS Y2+ Raw TDCs
+macro Macros/rawdraw_phodo.C("uhtdc2y1posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y2posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y3posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y4posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y5posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y6posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y7posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y8posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y9posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y10posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y11posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y12posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y13posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y14posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y15posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y16posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y17posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y18posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y19posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y20posTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y21posTimeRaw")
+newpage 3 4
+title HMS Y2- Raw TDCs
+macro Macros/rawdraw_phodo.C("uhtdc2y1negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y2negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y3negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y4negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y5negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y6negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y7negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y8negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y9negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y10negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y11negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y12negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y13negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y14negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y15negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y16negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y17negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y18negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y19negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y20negTimeRaw")
+macro Macros/rawdraw_phodo.C("uhtdc2y21negTimeRaw")
+newpage 3 4
+title HMS Y2+ TDCs
+macro Macros/rawdraw_phodo.C("uhtdc2y1posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y2posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y3posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y4posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y5posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y6posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y7posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y8posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y9posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y10posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y11posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y12posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y13posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y14posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y15posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y16posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y17posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y18posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y19posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y20posTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y21posTime")
+newpage 3 4
+title HMS Y2- TDCs
+macro Macros/rawdraw_phodo.C("uhtdc2y1negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y2negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y3negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y4negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y5negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y6negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y7negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y8negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y9negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y10negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y11negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y12negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y13negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y14negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y15negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y16negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y17negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y18negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y19negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y20negTime")
+macro Macros/rawdraw_phodo.C("uhtdc2y21negTime")
+newpage 3 4
+title HMS Y2+ FADC Raw Pedestals
+macro Macros/rawdraw_phodo.C("uhadc2y1posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y2posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y3posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y4posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y5posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y6posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y7posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y8posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y9posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y10posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y11posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y12posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y13posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y14posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y15posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y16posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y17posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y18posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y19posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20posPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y21posPedRaw")
+newpage 3 4
+title HMS Y2- FADC Raw Pedestals
+macro Macros/rawdraw_phodo.C("uhadc2y1negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y2negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y3negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y4negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y5negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y6negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y7negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y8negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y9negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y10negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y11negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y12negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y13negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y14negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y15negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y16negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y17negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y18negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y19negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20negPedRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y21negPedRaw")
+newpage 3 4
+title HMS Y2+ FADC Pedestals
+macro Macros/rawdraw_phodo.C("uhadc2y1posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y2posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y3posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y4posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y5posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y6posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y7posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y8posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y9posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y10posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y11posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y12posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y13posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y14posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y15posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y16posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y17posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y18posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y19posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y20posPed")
+macro Macros/rawdraw_phodo.C("uhadc2y21posPed")
+newpage 3 4
+title HMS Y2- FADC Pedestals
+macro Macros/rawdraw_phodo.C("uhadc2y1negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y2negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y3negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y4negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y5negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y6negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y7negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y8negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y9negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y10negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y11negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y12negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y13negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y14negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y15negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y16negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y17negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y18negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y19negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y20negPed")
+macro Macros/rawdraw_phodo.C("uhadc2y21negPed")
+newpage 3 4
+title HMS Y2+ FADC Raw Integrals
+macro Macros/rawdraw_phodo.C("uhadc2y1posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y2posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y3posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y4posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y5posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y6posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y7posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y8posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y9posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y10posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y11posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y12posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y13posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y14posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y15posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y16posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y17posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y18posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y19posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20posPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y21posPulseIntRaw")
+newpage 3 4
+title HMS Y2- FADC Raw Integrals
+macro Macros/rawdraw_phodo.C("uhadc2y1negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y2negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y3negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y4negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y5negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y6negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y7negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y8negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y9negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y10negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y11negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y12negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y13negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y14negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y15negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y16negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y17negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y18negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y19negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20negPulseIntRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y21negPulseIntRaw")
+newpage 3 4
+title HMS Y2+ FADC Integrals
+macro Macros/rawdraw_phodo.C("uhadc2y1posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y2posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y3posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y4posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y5posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y6posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y7posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y8posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y9posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y10posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y11posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y12posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y13posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y14posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y15posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y16posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y17posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y18posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y19posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y20posPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y21posPulseInt")
+newpage 3 4
+title HMS Y2- FADC Integrals
+macro Macros/rawdraw_phodo.C("uhadc2y1negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y2negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y3negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y4negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y5negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y6negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y7negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y8negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y9negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y10negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y11negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y12negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y13negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y14negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y15negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y16negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y17negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y18negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y19negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y20negPulseInt")
+macro Macros/rawdraw_phodo.C("uhadc2y21negPulseInt")
+newpage 3 4
+title HMS Y2+ FADC Amplitudes Raw
+macro Macros/rawdraw_phodo.C("uhadc2y1posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y2posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y3posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y4posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y5posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y6posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y7posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y8posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y9posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y10posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y11posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y12posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y13posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y14posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y15posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y16posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y17posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y18posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y19posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20posPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20posPulseAmpRaw")
+newpage 3 4
+title HMS Y2- FADC Amplitudes Raw
+macro Macros/rawdraw_phodo.C("uhadc2y1negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y2negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y3negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y4negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y5negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y6negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y7negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y8negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y9negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y10negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y11negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y12negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y13negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y14negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y15negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y16negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y17negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y18negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y19negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20negPulseAmpRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y21negPulseAmpRaw")
+newpage 3 4
+title HMS Y2+ FADC Amplitudes
+macro Macros/rawdraw_phodo.C("uhadc2y1posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y2posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y3posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y4posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y5posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y6posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y7posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y8posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y9posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y10posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y11posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y12posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y13posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y14posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y15posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y16posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y17posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y18posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y19posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y20posPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y21posPulseAmp")
+newpage 3 4
+title HMS Y2- FADC Amplitudes
+macro Macros/rawdraw_phodo.C("uhadc2y1negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y2negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y3negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y4negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y5negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y6negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y7negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y8negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y9negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y10negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y11negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y12negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y13negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y14negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y15negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y16negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y17negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y18negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y19negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y20negPulseAmp")
+macro Macros/rawdraw_phodo.C("uhadc2y21negPulseAmp")
+newpage 3 4
+title HMS Y2+ FADC Times Raw
+macro Macros/rawdraw_phodo.C("uhadc2y1posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y2posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y3posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y4posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y5posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y6posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y7posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y8posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y9posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y10posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y11posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y12posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y13posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y14posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y15posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y16posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y17posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y18posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y19posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20posPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y21posPulseTimeRaw")
+newpage 3 4
+title HMS Y2- FADC Times Raw
+macro Macros/rawdraw_phodo.C("uhadc2y1negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y2negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y3negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y4negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y5negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y6negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y7negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y8negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y9negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y10negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y11negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y12negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y13negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y14negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y15negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y16negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y17negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y18negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y19negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y20negPulseTimeRaw")
+macro Macros/rawdraw_phodo.C("uhadc2y21negPulseTimeRaw")
diff --git a/onlineGUI/Config/SHMS/HODO/raw_phodoana.cfg b/onlineGUI/Config/SHMS/HODO/raw_phodoana.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..758bdd2384bcd630603887c2afbd9035690938db
--- /dev/null
+++ b/onlineGUI/Config/SHMS/HODO/raw_phodoana.cfg
@@ -0,0 +1,130 @@
+#protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+protorootfile ../ROOTfiles/phodo_replay_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 2 2
+title SHMS Hodo Nhits
+phodo_1x_multi
+phodo_1y_multi
+phodo_2x_multi
+phodo_2y_multi
+newpage 2 2
+title SHMS Hodo Raw ADC Occupancy
+macro Macros/overlay.C("phodo_1x_pos_adc_occu","phodo_1x_neg_adc_occu")
+macro Macros/overlay.C("phodo_1y_pos_adc_occu","phodo_1y_neg_adc_occu")
+macro Macros/overlay.C("phodo_2x_pos_adc_occu","phodo_2x_neg_adc_occu")
+macro Macros/overlay.C("phodo_2y_pos_adc_occu","phodo_2y_neg_adc_occu")
+newpage 2 2
+title SHMS Hodo Raw TDC Occupancy
+macro Macros/overlay.C("phodo_1x_pos_tdc_occu","phodo_1x_neg_tdc_occu")
+macro Macros/overlay.C("phodo_1y_pos_tdc_occu","phodo_1y_neg_tdc_occu")
+macro Macros/overlay.C("phodo_2x_pos_tdc_occu","phodo_2x_neg_tdc_occu")
+macro Macros/overlay.C("phodo_2y_pos_tdc_occu","phodo_2y_neg_tdc_occu")
+newpage 2 2
+title SHMS Hodo Raw Ped PMT+
+phodo_1x_pos_rawped_vs_pad -type colz
+phodo_1y_pos_rawped_vs_pad -type colz
+phodo_2x_pos_rawped_vs_pad -type colz
+phodo_2y_pos_rawped_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw Ped PMT-
+phodo_1x_neg_rawped_vs_pad -type colz
+phodo_1y_neg_rawped_vs_pad -type colz
+phodo_2x_neg_rawped_vs_pad -type colz
+phodo_2y_neg_rawped_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw Int PMT+
+phodo_1x_pos_rawpi_vs_pad -type colz
+phodo_1y_pos_rawpi_vs_pad -type colz
+phodo_2x_pos_rawpi_vs_pad -type colz
+phodo_2y_pos_rawpi_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw Int PMT-
+phodo_1x_neg_rawpi_vs_pad -type colz
+phodo_1y_neg_rawpi_vs_pad -type colz
+phodo_2x_neg_rawpi_vs_pad -type colz
+phodo_2y_neg_rawpi_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw Peak PMT+
+phodo_1x_pos_rawpamp_vs_pad -type colz
+phodo_1y_pos_rawpamp_vs_pad -type colz
+phodo_2x_pos_rawpamp_vs_pad -type colz
+phodo_2y_pos_rawpamp_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw Peak PMT-
+phodo_1x_neg_rawpamp_vs_pad -type colz
+phodo_1y_neg_rawpamp_vs_pad -type colz
+phodo_2x_neg_rawpamp_vs_pad -type colz
+phodo_2y_neg_rawpamp_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw Adc Time PMT+
+phodo_1x_pos_rawptime_vs_pad -type colz
+phodo_1y_pos_rawptime_vs_pad -type colz
+phodo_2x_pos_rawptime_vs_pad -type colz
+phodo_2y_pos_rawptime_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw ADc Time PMT-
+phodo_1x_neg_rawptime_vs_pad -type colz
+phodo_1y_neg_rawptime_vs_pad -type colz
+phodo_2x_neg_rawptime_vs_pad -type colz
+phodo_2y_neg_rawptime_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw TDC time PMT+
+phodo_1x_pos_raw_tdc_time_vs_pad -type colz
+phodo_1y_pos_raw_tdc_time_vs_pad -type colz
+phodo_2x_pos_raw_tdc_time_vs_pad -type colz
+phodo_2y_pos_raw_tdc_time_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Raw  TDC time PMT-
+phodo_1x_neg_raw_tdc_time_vs_pad -type colz
+phodo_1y_neg_raw_tdc_time_vs_pad -type colz
+phodo_2x_neg_raw_tdc_time_vs_pad -type colz
+phodo_2y_neg_raw_tdc_time_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Ped PMT+
+phodo_1x_pos_ped_vs_pad -type colz
+phodo_1y_pos_ped_vs_pad -type colz
+phodo_2x_pos_ped_vs_pad -type colz
+phodo_2y_pos_ped_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo Ped PMT-
+phodo_1x_neg_ped_vs_pad -type colz
+phodo_1y_neg_ped_vs_pad -type colz
+phodo_2x_neg_ped_vs_pad -type colz
+phodo_2y_neg_ped_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo ADC Int PMT+
+phodo_1x_pos_pi_vs_pad -type colz
+phodo_1y_pos_pi_vs_pad -type colz
+phodo_2x_pos_pi_vs_pad -type colz
+phodo_2y_pos_pi_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo ADC Int PMT-
+phodo_1x_neg_pi_vs_pad -type colz
+phodo_1y_neg_pi_vs_pad -type colz
+phodo_2x_neg_pi_vs_pad -type colz
+phodo_2y_neg_pi_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo ADC Peak PMT+
+phodo_1x_pos_pamp_vs_pad -type colz
+phodo_1y_pos_pamp_vs_pad -type colz
+phodo_2x_pos_pamp_vs_pad -type colz
+phodo_2y_pos_pamp_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo ADc Peak PMT-
+phodo_1x_neg_pamp_vs_pad -type colz
+phodo_1y_neg_pamp_vs_pad -type colz
+phodo_2x_neg_pamp_vs_pad -type colz
+phodo_2y_neg_pamp_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo TDC time PMT+
+phodo_1x_pos_tdc_time_vs_pad -type colz
+phodo_1y_pos_tdc_time_vs_pad -type colz
+phodo_2x_pos_tdc_time_vs_pad -type colz
+phodo_2y_pos_tdc_time_vs_pad -type colz
+newpage 2 2
+title SHMS Hodo  TDC time PMT-
+phodo_1x_neg_tdc_time_vs_pad -type colz
+phodo_1y_neg_tdc_time_vs_pad -type colz
+phodo_2x_neg_tdc_time_vs_pad -type colz
+phodo_2y_neg_tdc_time_vs_pad -type colz
diff --git a/onlineGUI/Config/SHMS/RASTER/simple_raster.cfg b/onlineGUI/Config/SHMS/RASTER/simple_raster.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..670f32dafed475beeaabc3083fcf3dad9d4a6644
--- /dev/null
+++ b/onlineGUI/Config/SHMS/RASTER/simple_raster.cfg
@@ -0,0 +1,20 @@
+#protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+protorootfile ../ROOTfiles/shms_raster_simple_XXXXX.root
+guicolor lightblue
+canvassize 800 800
+newpage 2 2
+title HMS 1D Raster Raw ADC
+pFRXA
+pFRXB
+pFRYA
+pFRYB
+newpage 2 2
+title HMS 1D Raster (Volts)
+pFRXA_V
+pFRXB_V
+pFRYA_V
+pFRYB_V
+newpage 1 2
+title HMS Hodo Raw Ped PMT+
+pFRA_XvsY -type colz
+pFRB_XvsY -type colz
diff --git a/onlineGUI/Config/kpp.cfg b/onlineGUI/Config/kpp.cfg
new file mode 100755
index 0000000000000000000000000000000000000000..3ba6650a5a7559572616275b4d67227aac2b1327
--- /dev/null
+++ b/onlineGUI/Config/kpp.cfg
@@ -0,0 +1,121 @@
+protorootfile ../ROOTfiles/shms_replay_XXXXX.root
+guicolor orange
+canvassize 1600 800
+#canvassize 800 800
+newpage 3 3
+title Trigger Times
+macro Macros/kpp_analysis.C("h_p1X_tdc")
+macro Macros/kpp_analysis.C("h_p1Y_tdc")
+macro Macros/kpp_analysis.C("h_p2X_tdc")
+macro Macros/kpp_analysis.C("h_p2Y_tdc")
+macro Macros/kpp_analysis.C("h_p1T_tdc")
+macro Macros/kpp_analysis.C("h_p2T_tdc")
+macro Macros/kpp_analysis.C("h_pT1_tdc")
+macro Macros/kpp_analysis.C("h_pT2_tdc")
+macro Macros/kpp_analysis.C("h_pT3_tdc")
+newpage 4 3
+title Hodoscope Plane Reference Times
+macro Macros/kpp_analysis.C("h_p1XmpT2_tdc")
+macro Macros/kpp_analysis.C("h_p1YmpT2_tdc")
+macro Macros/kpp_analysis.C("h_p2XmpT2_tdc")
+macro Macros/kpp_analysis.C("h_p2YmpT2_tdc")
+macro Macros/kpp_analysis.C("h_p1XmpT3_tdc")
+macro Macros/kpp_analysis.C("h_p1YmpT3_tdc")
+macro Macros/kpp_analysis.C("h_p2XmpT3_tdc")
+macro Macros/kpp_analysis.C("h_p2YmpT3_tdc")
+macro Macros/kpp_analysis.C("h_p1TmpT2_tdc")
+macro Macros/kpp_analysis.C("h_p1TmpT3_tdc")
+macro Macros/kpp_analysis.C("h_p2TmpT2_tdc")
+macro Macros/kpp_analysis.C("h_p2TmpT3_tdc")
+newpage 2 2 logz
+title Negative Hodoscope Corrected TDC Times
+macro Macros/kpp_analysis.C("h2_p1X_negTdcCorr")
+macro Macros/kpp_analysis.C("h2_p1Y_negTdcCorr")
+macro Macros/kpp_analysis.C("h2_p2X_negTdcCorr")
+macro Macros/kpp_analysis.C("h2_p2Y_negTdcCorr")
+newpage 2 2 logz
+title Positive Hodoscope Corrected TDC Times
+macro Macros/kpp_analysis.C("h2_p1X_posTdcCorr")
+macro Macros/kpp_analysis.C("h2_p1Y_posTdcCorr")
+macro Macros/kpp_analysis.C("h2_p2X_posTdcCorr")
+macro Macros/kpp_analysis.C("h2_p2Y_posTdcCorr")
+newpage 2 2 logz
+title Negative Hodoscope Pulse Time - TDC Time
+macro Macros/kpp_analysis.C("h2_p1Xneg_pt_tt_diff")
+macro Macros/kpp_analysis.C("h2_p1Yneg_pt_tt_diff")
+macro Macros/kpp_analysis.C("h2_p2Xneg_pt_tt_diff")
+macro Macros/kpp_analysis.C("h2_p2Yneg_pt_tt_diff")
+newpage 2 2 logz
+title Positive Hodoscope Pulse Time - TDC Time
+macro Macros/kpp_analysis.C("h2_p1Xpos_pt_tt_diff")
+macro Macros/kpp_analysis.C("h2_p1Ypos_pt_tt_diff")
+macro Macros/kpp_analysis.C("h2_p2Xpos_pt_tt_diff")
+macro Macros/kpp_analysis.C("h2_p2Ypos_pt_tt_diff")
+newpage 2 2 logz
+title Hodoscope Corrected TDC Time Differences
+macro Macros/kpp_analysis.C("h2_p1X_tdcCorrDiff")
+macro Macros/kpp_analysis.C("h2_p1Y_tdcCorrDiff")
+macro Macros/kpp_analysis.C("h2_p2X_tdcCorrDiff")
+macro Macros/kpp_analysis.C("h2_p2Y_tdcCorrDiff")
+newpage 2 2 
+title Plane Times
+macro Macros/kpp_analysis.C("h_p1X_plTime")
+macro Macros/kpp_analysis.C("h_p1Y_plTime")
+macro Macros/kpp_analysis.C("h_p2X_plTime")
+macro Macros/kpp_analysis.C("h_p2Y_plTime")
+newpage 2 2
+title Focal Plane Times
+macro Macros/kpp_analysis.C("h_p1X_fpTime")
+macro Macros/kpp_analysis.C("h_p1Y_fpTime")
+macro Macros/kpp_analysis.C("h_p2X_fpTime")
+macro Macros/kpp_analysis.C("h_p2Y_fpTime")
+newpage 2 3 logz
+title Aerogel ADC Pulse Times
+macro Macros/kpp_analysis.C("h2_paero_posPulseTime_pT1_diff")
+macro Macros/kpp_analysis.C("h2_paero_negPulseTime_pT1_diff")
+macro Macros/kpp_analysis.C("h2_paero_posPulseTime_pT2_diff")
+macro Macros/kpp_analysis.C("h2_paero_negPulseTime_pT2_diff")
+macro Macros/kpp_analysis.C("h2_paero_posPulseTime_pT3_diff")
+macro Macros/kpp_analysis.C("h2_paero_negPulseTime_pT3_diff")
+newpage 2 3 logz
+title Pre-Shower ADC Pulse Times
+macro Macros/kpp_analysis.C("h2_ppshwr_posPulseTime_pT1_diff")
+macro Macros/kpp_analysis.C("h2_ppshwr_negPulseTime_pT1_diff")
+macro Macros/kpp_analysis.C("h2_ppshwr_posPulseTime_pT2_diff")
+macro Macros/kpp_analysis.C("h2_ppshwr_negPulseTime_pT2_diff")
+macro Macros/kpp_analysis.C("h2_ppshwr_posPulseTime_pT3_diff")
+macro Macros/kpp_analysis.C("h2_ppshwr_negPulseTime_pT3_diff")
+newpage 3 1 logz
+title Shower ADC Pulse Times
+macro Macros/kpp_analysis.C("h2_pshwr_pulseTime_pT1_diff")
+macro Macros/kpp_analysis.C("h2_pshwr_pulseTime_pT2_diff")
+macro Macros/kpp_analysis.C("h2_pshwr_pulseTime_pT3_diff")
+newpage 3 1 logz
+title Heavy Gas ADC Pulse Times
+macro Macros/kpp_analysis.C("h2_phgc_pulseTime_pT1_diff")
+macro Macros/kpp_analysis.C("h2_phgc_pulseTime_pT2_diff")
+macro Macros/kpp_analysis.C("h2_phgc_pulseTime_pT3_diff")
+newpage 3 1 logz
+title Noble Gas ADC Pulse Times
+macro Macros/kpp_analysis.C("h2_pngc_pulseTime_pT1_diff")
+macro Macros/kpp_analysis.C("h2_pngc_pulseTime_pT2_diff")
+macro Macros/kpp_analysis.C("h2_pngc_pulseTime_pT3_diff")
+newpage 3 2
+title Detector ADC Sums
+macro Macros/kpp_analysis.C("h_paero_sum")
+macro Macros/kpp_analysis.C("h_phgc_sum")
+macro Macros/kpp_analysis.C("h_pngc_sum")
+macro Macros/kpp_analysis.C("h_ppshwr_sum")
+macro Macros/kpp_analysis.C("h_pshwr_sum")
+macro Macros/kpp_analysis.C("h_ptotshwr_sum")
+newpage 2 2 logz
+title SHMS Particle Identification
+macro Macros/kpp_analysis.C("h2_pshwr_vs_phgcer")
+macro Macros/kpp_analysis.C("h2_pshwr_vs_pngcer")
+macro Macros/kpp_analysis.C("h2_pshwr_vs_ppshwr")
+macro Macros/kpp_analysis.C("h2_EdivP_vs_P")
+
+
+
+
+
diff --git a/onlineGUI/Config/rawhmshodo.cfg b/onlineGUI/Config/rawhmshodo.cfg
new file mode 100755
index 0000000000000000000000000000000000000000..21ec61899bbd7fcfd511f040fd815120ec9af529
--- /dev/null
+++ b/onlineGUI/Config/rawhmshodo.cfg
@@ -0,0 +1,243 @@
+protorootfile ../ROOTfiles/hhodo_htrig_replay_XXXXX.root
+guicolor lightblue
+canvassize 1600 800
+newpage 4 4
+title HMS X1+ Raw TDCS
+macro Macros/rawdraw.C("uhtdc1x1posTime")
+macro Macros/rawdraw.C("uhtdc1x2posTime")
+macro Macros/rawdraw.C("uhtdc1x3posTime")
+macro Macros/rawdraw.C("uhtdc1x4posTime")
+macro Macros/rawdraw.C("uhtdc1x5posTime")
+macro Macros/rawdraw.C("uhtdc1x6posTime")
+macro Macros/rawdraw.C("uhtdc1x7posTime")
+macro Macros/rawdraw.C("uhtdc1x8posTime")
+macro Macros/rawdraw.C("uhtdc1x9posTime")
+macro Macros/rawdraw.C("uhtdc1x10posTime")
+macro Macros/rawdraw.C("uhtdc1x11posTime")
+macro Macros/rawdraw.C("uhtdc1x12posTime")
+macro Macros/rawdraw.C("uhtdc1x13posTime")
+macro Macros/rawdraw.C("uhtdc1x14posTime")
+macro Macros/rawdraw.C("uhtdc1x15posTime")
+macro Macros/rawdraw.C("uhtdc1x16posTime")
+newpage 4 4
+title HMS X1- Raw TDCS
+macro Macros/rawdraw.C("uhtdc1x1negTime")
+macro Macros/rawdraw.C("uhtdc1x2negTime")
+macro Macros/rawdraw.C("uhtdc1x3negTime")
+macro Macros/rawdraw.C("uhtdc1x4negTime")
+macro Macros/rawdraw.C("uhtdc1x5negTime")
+macro Macros/rawdraw.C("uhtdc1x6negTime")
+macro Macros/rawdraw.C("uhtdc1x7negTime")
+macro Macros/rawdraw.C("uhtdc1x8negTime")
+macro Macros/rawdraw.C("uhtdc1x9negTime")
+macro Macros/rawdraw.C("uhtdc1x10negTime")
+macro Macros/rawdraw.C("uhtdc1x11negTime")
+macro Macros/rawdraw.C("uhtdc1x12negTime")
+macro Macros/rawdraw.C("uhtdc1x13negTime")
+macro Macros/rawdraw.C("uhtdc1x14negTime")
+macro Macros/rawdraw.C("uhtdc1x15negTime")
+macro Macros/rawdraw.C("uhtdc1x16negTime")
+newpage 4 4
+title HMS X1+ Raw ADCS
+macro Macros/rawdraw.C("uhadc1x1posPed")
+macro Macros/rawdraw.C("uhadc1x2posPed")
+macro Macros/rawdraw.C("uhadc1x3posPed")
+macro Macros/rawdraw.C("uhadc1x4posPed")
+macro Macros/rawdraw.C("uhadc1x5posPed")
+macro Macros/rawdraw.C("uhadc1x6posPed")
+macro Macros/rawdraw.C("uhadc1x7posPed")
+macro Macros/rawdraw.C("uhadc1x8posPed")
+macro Macros/rawdraw.C("uhadc1x9posPed")
+macro Macros/rawdraw.C("uhadc1x10posPed")
+macro Macros/rawdraw.C("uhadc1x11posPed")
+macro Macros/rawdraw.C("uhadc1x12posPed")
+macro Macros/rawdraw.C("uhadc1x13posPed")
+macro Macros/rawdraw.C("uhadc1x14posPed")
+macro Macros/rawdraw.C("uhadc1x15posPed")
+macro Macros/rawdraw.C("uhadc1x16posPed")
+newpage 4 4
+title HMS X1- Raw ADCS
+macro Macros/rawdraw.C("uhadc1x1negPed")
+macro Macros/rawdraw.C("uhadc1x2negPed")
+macro Macros/rawdraw.C("uhadc1x3negPed")
+macro Macros/rawdraw.C("uhadc1x4negPed")
+macro Macros/rawdraw.C("uhadc1x5negPed")
+macro Macros/rawdraw.C("uhadc1x6negPed")
+macro Macros/rawdraw.C("uhadc1x7negPed")
+macro Macros/rawdraw.C("uhadc1x8negPed")
+macro Macros/rawdraw.C("uhadc1x9negPed")
+macro Macros/rawdraw.C("uhadc1x10negPed")
+macro Macros/rawdraw.C("uhadc1x11negPed")
+macro Macros/rawdraw.C("uhadc1x12negPed")
+macro Macros/rawdraw.C("uhadc1x13negPed")
+macro Macros/rawdraw.C("uhadc1x14negPed")
+macro Macros/rawdraw.C("uhadc1x15negPed")
+macro Macros/rawdraw.C("uhadc1x16negPed")
+newpage 4 4
+title HMS Y1+ Raw TDCS
+macro Macros/rawdraw.C("uhtdc1y1posTime")
+macro Macros/rawdraw.C("uhtdc1y2posTime")
+macro Macros/rawdraw.C("uhtdc1y3posTime")
+macro Macros/rawdraw.C("uhtdc1y4posTime")
+macro Macros/rawdraw.C("uhtdc1y5posTime")
+macro Macros/rawdraw.C("uhtdc1y6posTime")
+macro Macros/rawdraw.C("uhtdc1y7posTime")
+macro Macros/rawdraw.C("uhtdc1y8posTime")
+macro Macros/rawdraw.C("uhtdc1y9posTime")
+macro Macros/rawdraw.C("uhtdc1y10posTime")
+newpage 4 4
+title HMS Y1- Raw TDCS
+macro Macros/rawdraw.C("uhtdc1y1negTime")
+macro Macros/rawdraw.C("uhtdc1y2negTime")
+macro Macros/rawdraw.C("uhtdc1y3negTime")
+macro Macros/rawdraw.C("uhtdc1y4negTime")
+macro Macros/rawdraw.C("uhtdc1y5negTime")
+macro Macros/rawdraw.C("uhtdc1y6negTime")
+macro Macros/rawdraw.C("uhtdc1y7negTime")
+macro Macros/rawdraw.C("uhtdc1y8negTime")
+macro Macros/rawdraw.C("uhtdc1y9negTime")
+macro Macros/rawdraw.C("uhtdc1y10negTime")
+newpage 4 4
+title HMS Y1+ Raw ADCS
+macro Macros/rawdraw.C("uhadc1y1posPed")
+macro Macros/rawdraw.C("uhadc1y2posPed")
+macro Macros/rawdraw.C("uhadc1y3posPed")
+macro Macros/rawdraw.C("uhadc1y4posPed")
+macro Macros/rawdraw.C("uhadc1y5posPed")
+macro Macros/rawdraw.C("uhadc1y6posPed")
+macro Macros/rawdraw.C("uhadc1y7posPed")
+macro Macros/rawdraw.C("uhadc1y8posPed")
+macro Macros/rawdraw.C("uhadc1y9posPed")
+macro Macros/rawdraw.C("uhadc1y10posPed")
+newpage 4 4
+title HMS Y1- Raw ADCS
+macro Macros/rawdraw.C("uhadc1y1negPed")
+macro Macros/rawdraw.C("uhadc1y2negPed")
+macro Macros/rawdraw.C("uhadc1y3negPed")
+macro Macros/rawdraw.C("uhadc1y4negPed")
+macro Macros/rawdraw.C("uhadc1y5negPed")
+macro Macros/rawdraw.C("uhadc1y6negPed")
+macro Macros/rawdraw.C("uhadc1y7negPed")
+macro Macros/rawdraw.C("uhadc1y8negPed")
+macro Macros/rawdraw.C("uhadc1y9negPed")
+macro Macros/rawdraw.C("uhadc1y10negPed")
+newpage 4 4
+title HMS X2+ Raw TDCS
+macro Macros/rawdraw.C("uhtdc2x1posTime")
+macro Macros/rawdraw.C("uhtdc2x2posTime")
+macro Macros/rawdraw.C("uhtdc2x3posTime")
+macro Macros/rawdraw.C("uhtdc2x4posTime")
+macro Macros/rawdraw.C("uhtdc2x5posTime")
+macro Macros/rawdraw.C("uhtdc2x6posTime")
+macro Macros/rawdraw.C("uhtdc2x7posTime")
+macro Macros/rawdraw.C("uhtdc2x8posTime")
+macro Macros/rawdraw.C("uhtdc2x9posTime")
+macro Macros/rawdraw.C("uhtdc2x10posTime")
+macro Macros/rawdraw.C("uhtdc2x11posTime")
+macro Macros/rawdraw.C("uhtdc2x12posTime")
+macro Macros/rawdraw.C("uhtdc2x13posTime")
+macro Macros/rawdraw.C("uhtdc2x14posTime")
+macro Macros/rawdraw.C("uhtdc2x15posTime")
+macro Macros/rawdraw.C("uhtdc2x16posTime")
+newpage 4 4
+title HMS X2- Raw TDCS
+macro Macros/rawdraw.C("uhtdc2x1negTime")
+macro Macros/rawdraw.C("uhtdc2x2negTime")
+macro Macros/rawdraw.C("uhtdc2x3negTime")
+macro Macros/rawdraw.C("uhtdc2x4negTime")
+macro Macros/rawdraw.C("uhtdc2x5negTime")
+macro Macros/rawdraw.C("uhtdc2x6negTime")
+macro Macros/rawdraw.C("uhtdc2x7negTime")
+macro Macros/rawdraw.C("uhtdc2x8negTime")
+macro Macros/rawdraw.C("uhtdc2x9negTime")
+macro Macros/rawdraw.C("uhtdc2x10negTime")
+macro Macros/rawdraw.C("uhtdc2x11negTime")
+macro Macros/rawdraw.C("uhtdc2x12negTime")
+macro Macros/rawdraw.C("uhtdc2x13negTime")
+macro Macros/rawdraw.C("uhtdc2x14negTime")
+macro Macros/rawdraw.C("uhtdc2x15negTime")
+macro Macros/rawdraw.C("uhtdc2x16negTime")
+newpage 4 4
+title HMS X2+ Raw ADCS
+macro Macros/rawdraw.C("uhadc2x1posPed")
+macro Macros/rawdraw.C("uhadc2x2posPed")
+macro Macros/rawdraw.C("uhadc2x3posPed")
+macro Macros/rawdraw.C("uhadc2x4posPed")
+macro Macros/rawdraw.C("uhadc2x5posPed")
+macro Macros/rawdraw.C("uhadc2x6posPed")
+macro Macros/rawdraw.C("uhadc2x7posPed")
+macro Macros/rawdraw.C("uhadc2x8posPed")
+macro Macros/rawdraw.C("uhadc2x9posPed")
+macro Macros/rawdraw.C("uhadc2x10posPed")
+macro Macros/rawdraw.C("uhadc2x11posPed")
+macro Macros/rawdraw.C("uhadc2x12posPed")
+macro Macros/rawdraw.C("uhadc2x13posPed")
+macro Macros/rawdraw.C("uhadc2x14posPed")
+macro Macros/rawdraw.C("uhadc2x15posPed")
+macro Macros/rawdraw.C("uhadc2x16posPed")
+newpage 4 4
+title HMS X2- Raw ADCS
+macro Macros/rawdraw.C("uhadc2x1negPed")
+macro Macros/rawdraw.C("uhadc2x2negPed")
+macro Macros/rawdraw.C("uhadc2x3negPed")
+macro Macros/rawdraw.C("uhadc2x4negPed")
+macro Macros/rawdraw.C("uhadc2x5negPed")
+macro Macros/rawdraw.C("uhadc2x6negPed")
+macro Macros/rawdraw.C("uhadc2x7negPed")
+macro Macros/rawdraw.C("uhadc2x8negPed")
+macro Macros/rawdraw.C("uhadc2x9negPed")
+macro Macros/rawdraw.C("uhadc2x10negPed")
+macro Macros/rawdraw.C("uhadc2x11negPed")
+macro Macros/rawdraw.C("uhadc2x12negPed")
+macro Macros/rawdraw.C("uhadc2x13negPed")
+macro Macros/rawdraw.C("uhadc2x14negPed")
+macro Macros/rawdraw.C("uhadc2x15negPed")
+macro Macros/rawdraw.C("uhadc2x16negPed")
+newpage 4 4
+title HMS Y2+ Raw TDCS
+macro Macros/rawdraw.C("uhtdc2y1posTime")
+macro Macros/rawdraw.C("uhtdc2y2posTime")
+macro Macros/rawdraw.C("uhtdc2y3posTime")
+macro Macros/rawdraw.C("uhtdc2y4posTime")
+macro Macros/rawdraw.C("uhtdc2y5posTime")
+macro Macros/rawdraw.C("uhtdc2y6posTime")
+macro Macros/rawdraw.C("uhtdc2y7posTime")
+macro Macros/rawdraw.C("uhtdc2y8posTime")
+macro Macros/rawdraw.C("uhtdc2y9posTime")
+macro Macros/rawdraw.C("uhtdc2y10posTime")
+newpage 4 4
+title HMS Y2- Raw TDCS
+macro Macros/rawdraw.C("uhtdc2y1negTime")
+macro Macros/rawdraw.C("uhtdc2y2negTime")
+macro Macros/rawdraw.C("uhtdc2y3negTime")
+macro Macros/rawdraw.C("uhtdc2y4negTime")
+macro Macros/rawdraw.C("uhtdc2y5negTime")
+macro Macros/rawdraw.C("uhtdc2y6negTime")
+macro Macros/rawdraw.C("uhtdc2y7negTime")
+macro Macros/rawdraw.C("uhtdc2y8negTime")
+macro Macros/rawdraw.C("uhtdc2y9negTime")
+macro Macros/rawdraw.C("uhtdc2y10negTime")
+newpage 4 4
+title HMS Y2+ Raw ADCS
+macro Macros/rawdraw.C("uhadc2y1posPed")
+macro Macros/rawdraw.C("uhadc2y2posPed")
+macro Macros/rawdraw.C("uhadc2y3posPed")
+macro Macros/rawdraw.C("uhadc2y4posPed")
+macro Macros/rawdraw.C("uhadc2y5posPed")
+macro Macros/rawdraw.C("uhadc2y6posPed")
+macro Macros/rawdraw.C("uhadc2y7posPed")
+macro Macros/rawdraw.C("uhadc2y8posPed")
+macro Macros/rawdraw.C("uhadc2y9posPed")
+macro Macros/rawdraw.C("uhadc2y10posPed")
+newpage 4 4
+title HMS Y2- Raw ADCS
+macro Macros/rawdraw.C("uhadc2y1negPed")
+macro Macros/rawdraw.C("uhadc2y2negPed")
+macro Macros/rawdraw.C("uhadc2y3negPed")
+macro Macros/rawdraw.C("uhadc2y4negPed")
+macro Macros/rawdraw.C("uhadc2y5negPed")
+macro Macros/rawdraw.C("uhadc2y6negPed")
+macro Macros/rawdraw.C("uhadc2y7negPed")
+macro Macros/rawdraw.C("uhadc2y8negPed")
+macro Macros/rawdraw.C("uhadc2y9negPed")
+macro Macros/rawdraw.C("uhadc2y10negPed")
diff --git a/onlineGUI/Config/standard.cfg b/onlineGUI/Config/standard.cfg
new file mode 100755
index 0000000000000000000000000000000000000000..5057a8d9e28267bbdfc1196729b6b57fad8fdfbf
--- /dev/null
+++ b/onlineGUI/Config/standard.cfg
@@ -0,0 +1,57 @@
+protorootfile ../../engine_comparison/hcana_replay/Rootfiles/replay_baryon_XXXXX.root
+guicolor lightblue
+canvassize 500 800
+
+definecut thtarcut abs(H.tr.tg_th)<0.01
+definecut phtarcut abs(H.tr.tg_ph)<0.01
+definecut ytarcut abs(H.tr.tg_y)<4
+definecut tarcut phtarcut&&thtarcut
+
+newpage 2 2
+title HMS focal plane/target
+H.dc.x:H.dc.y -type scat
+H.tr.tg_y ytarcut -title "Target Position"
+RB.raster.frx:RB.raster.fry -type colz
+H.tr.tg_ph:H.tr.tg_th phtarcut&&thtarcut -type colz -title "Target Xp vs Yp"
+
+newpage 2 3
+title HMS DC Wire Maps (Red=DC2)
+macro    Macros/overlay.C("hdc1x1_wm","hdc2x1_wm")
+macro    Macros/overlay.C("hdc1y1_wm","hdc2y1_wm")
+macro    Macros/overlay.C("hdc1u1_wm","hdc2u1_wm")
+macro    Macros/overlay.C("hdc1v1_wm","hdc2v1_wm")
+macro    Macros/overlay.C("hdc1y2_wm","hdc2y2_wm")
+macro    Macros/overlay.C("hdc1x2_wm","hdc2x2_wm")
+
+newpage 2 3
+title HDC1&2 drift distance (Red=DC2)
+macro    Macros/overlay.C("hdc1x1_dd","hdc2x1_dd")
+macro    Macros/overlay.C("hdc1y1_dd","hdc2y1_dd")
+macro    Macros/overlay.C("hdc1u1_dd","hdc2u1_dd")
+macro    Macros/overlay.C("hdc1v1_dd","hdc2v1_dd")
+macro    Macros/overlay.C("hdc1y2_dd","hdc2y2_dd")
+macro    Macros/overlay.C("hdc1x2_dd","hdc2x2_dd")
+
+
+newpage 2 3
+title HDC1&2 drift time (Red=DC2)
+macro    Macros/overlay.C("hdc1x1_dt","hdc2x1_dt")
+macro    Macros/overlay.C("hdc1y1_dt","hdc2y1_dt")
+macro    Macros/overlay.C("hdc1u1_dt","hdc2u1_dt")
+macro    Macros/overlay.C("hdc1v1_dt","hdc2v1_dt")
+macro    Macros/overlay.C("hdc1y2_dt","hdc2y2_dt")
+macro    Macros/overlay.C("hdc1x2_dt","hdc2x2_dt")
+
+newpage 2 4
+title HMS Hodo Hits
+macro Macros/overlay.C("hpostdc1","hnegtdc1")
+macro Macros/overlay.C("hposadc1","hnegadc1")
+macro Macros/overlay.C("hpostdc2","hnegtdc2")
+macro Macros/overlay.C("hposadc2","hnegadc2")
+macro Macros/overlay.C("hpostdc3","hnegtdc3")
+macro Macros/overlay.C("hposadc3","hnegadc3")
+macro Macros/overlay.C("hpostdc4","hnegtdc4")
+macro Macros/overlay.C("hposadc4","hnegadc4")
+
+
+
diff --git a/onlineGUI/Macros/gooddraw_2d_hhodo.C b/onlineGUI/Macros/gooddraw_2d_hhodo.C
new file mode 100644
index 0000000000000000000000000000000000000000..4c28b069ff3cdfbc98c0e1d0574c08dd8485914a
--- /dev/null
+++ b/onlineGUI/Macros/gooddraw_2d_hhodo.C
@@ -0,0 +1,286 @@
+// UserScript.C
+//
+// Helper macro to build additional histograms
+
+void UserScript()
+{
+
+  const UInt_t NPLANES  = 4;
+  const UInt_t NSIDES   = 2;
+  const UInt_t MAXBARS  = 16;  
+  const UInt_t MAXHITS  = 16*16;  
+  const UInt_t NSIGNALS = 2;
+  const UInt_t NADCSIGNALS = 1;
+  const UInt_t NTDCSIGNALS = 3;
+
+  const TString SPECTROMETER = "H";
+  const TString DETECTOR = "hod";
+
+  const TString plane_names[NPLANES] = {"1x", "1y", "2x", "2y"};
+  const TString plane_check_names[NPLANES] = {"1y", "1x", "2y", "2x"};
+  const UInt_t  nbars[NPLANES] = {16, 10, 16, 10};
+  const UInt_t  nbars_check[NPLANES] = {10, 16, 10, 16};
+  const TString sides[NSIDES] = {"GoodNeg", "GoodPos"};
+  const TString signals[NSIGNALS] = {"Adc", "Tdc"};
+  const TString adc_signals[NADCSIGNALS] = {"PulseInt"};
+  const Double_t adc_min[NADCSIGNALS] = {0};
+  const Double_t adc_max[NADCSIGNALS] = {5000};
+  const Int_t adc_nbins[NADCSIGNALS] = {500};
+  const TString tdc_signals[NTDCSIGNALS] = {"Chan", "TimeCorr", "TimeTOFCorr"};
+  const Double_t tdc_min[NTDCSIGNALS] = {0.,0.,0.};
+  const Double_t tdc_max[NTDCSIGNALS] = {4000.,50.,50.};
+  const Int_t tdc_nbins[NTDCSIGNALS] = {100,500,500};
+ 
+  Double_t adcbit_to_pC = 1.0/(50*4096)*4*1000. ;// 1V/(50 Ohms)/4096*4ns* = .020 pC
+  Double_t adcpeak_to_mV = 1.0/4096.*1000;// 1.0V per 4096 bits
+  Double_t fac_for_disc[4]= {2.0,2.,2.,2.};// Factor to have ADC at FADC match signal at discriminatir assuming split of 2/3 to 1/3( 2Y plane has linear FI/FO not a splitter)
+ 
+  Int_t nhits[NPLANES];
+  Double_t adc_tdc_ymin[4]={20.,20.,20.,20.};
+  Double_t adc_tdc_ymax[4]={45.,45.,45.,45.};
+  Int_t nhits_temp;
+  Double_t paddles[NPLANES][MAXHITS];
+
+
+  Double_t adc_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+  Double_t tdc_values[NPLANES][NSIDES][NTDCSIGNALS][MAXHITS];
+
+
+  //
+  TH2F* htdc_tdc[NPLANES*MAXBARS];
+  TH2F* hadc_adc[NPLANES*MAXBARS];
+  TH2F* hadc_adc_good[NPLANES*MAXBARS];
+  TH2F* hadc_tdc[NPLANES*MAXBARS][2];
+  /*
+  make histogram of plane ADC versus position in perpendicalur plane
+   */
+  TH2F* hadc_dis[NPLANES*MAXBARS][2];
+  Int_t dis_bin[4]={10,16,10,16};
+  Double_t dis_min[4];
+  Double_t dis_max[4];
+  Double_t dis_center_pad1[4]={33.75,-56.25,33.75,-56.25};
+  Double_t dis_sign[4]={-1.,1.,-1.,1.};
+  Double_t dis_space=7.5;
+  //
+  TH2F*   hpadx;
+  TH2F*   hpadxy1;
+  TH2F*   hpady;
+  hpadx= new TH2F("hpadx",";paddle X1;paddle X2",16,1,17,16,1,17);
+  hpadxy1= new TH2F("hpadxy1",";paddle X1;paddle Y1",16,1,17,10,1,11);
+  hpady= new TH2F("hpady",";paddle Y1;paddle Y2",10,1,11,10,1,11);
+  //
+  /*
+Histograms for Neg and Pos PMT efficiencies as function of paddle in other perpendicular plane
+    Each X1 paddle efficiency as function of Y1 paddle.
+    Each Y1 paddle efficiency as function of X1 paddle.
+    Each X2 paddle efficiency as function of Y2 paddle.
+    Each Y2 paddle efficiency as function of X2 paddle.
+Tree has data in which at least one PMT had a good TDC time. 
+If the other PMT did not have a good time then its TDC =-999.
+For each event
+Set good_should=kTRUE if  nhits==1 all planes.
+Loop through all hits in each plane ip=0,3
+  If good_should=kTRUE and tdc_neg_val>0 good_neg[ip][bar]=kTRUE 
+  If good_should=kTRUE and tdc_pos_val>0 good_neg[ip][bar]=kTRUE 
+endloop
+Loop through all planes and all bars in that plane ib=0,nbars[ip]
+  if good_pos[ip][ib] then negative end should have had a hit
+         fill "should" neg PMT histogram with perpendicular paddle  
+  if good_pos[ip][ib] and good_neg[ip][ib] 
+         fill "did"  neg PMT  histogram with perpendicular paddle  
+  if good_neg[ip][ib] then positive end should have had a hit
+         fill "should" pos PMT histogram with perpendicular paddle  
+  if good_pos[ip][ib] and good_neg[ip][ib] 
+         fill "did"  pos PMT  histogram with perpendicular paddle 
+end event
+Efficiency is ratio of did/should which is calculated using hodo_efficiency.C   
+   */
+  TH1F* hgood_neg_should[4][16];
+  TH1F* hgood_pos_should[4][16];
+  TH1F* hgood_neg_did[4][16];
+  TH1F* hgood_pos_did[4][16];
+  //
+  Int_t adc_ihit, tdc_ihit;
+
+  TTree *T=(TTree*)gDirectory->Get("T");
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "TDC 1ns/chan "+plane_names[ip]+i2dbarname+"; Neg ; Pos ";
+	      TString h2dtname="uh2dtdc"+plane_names[ip]+i2dbarname;
+              htdc_tdc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,200,25,75,200,25,75.);
+		TString h2dnegtitle= "Neg PMT Pad  "+plane_names[ip]+i2dbarname+"; plane "+plane_check_names[ip]+" paddles; Counts neg ";
+	        TString h2dnegname="uhdidneg"+plane_names[ip]+i2dbarname;
+                 hgood_neg_did[ip][ibar]= new TH1F(h2dnegname,h2dnegtitle,nbars_check[ip],1,nbars_check[ip]+1);
+		TString h2dnegtitle= "Neg PMT Pad  "+plane_names[ip]+i2dbarname+"; plane "+plane_check_names[ip]+" paddles; Counts neg ";
+	        TString h2dnegname="uhshouldneg"+plane_names[ip]+i2dbarname;
+                 hgood_neg_should[ip][ibar]= new TH1F(h2dnegname,h2dnegtitle,nbars_check[ip],1,nbars_check[ip]+1);
+		TString h2dpostitle= "Pos PMT Pad  "+plane_names[ip]+i2dbarname+"; plane "+plane_check_names[ip]+" paddles;Counts pos ";
+	        TString h2dposname="uhdidpos"+plane_names[ip]+i2dbarname;
+                 hgood_pos_did[ip][ibar]= new TH1F(h2dposname,h2dpostitle,nbars_check[ip],1,nbars_check[ip]+1);
+		TString h2dpostitle="Pos PMT Pad  "+plane_names[ip]+i2dbarname+"; plane "+plane_check_names[ip]+" paddles;Counts pos ";
+	        TString h2dposname="uhshouldpos"+plane_names[ip]+i2dbarname;
+                 hgood_pos_should[ip][ibar]= new TH1F(h2dposname,h2dpostitle,nbars_check[ip],1,nbars_check[ip]+1);
+ 	    }
+  }
+  //
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "ADC Int Amp "+plane_names[ip]+i2dbarname+"; Neg (pC); Pos (pC)";
+	      TString h2dtname="uh2dadcint"+plane_names[ip]+i2dbarname;
+	      hadc_adc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,50,0,100,50,0,100.);
+	      TString h2dttitle= "Good TDC ADC Int Amp "+plane_names[ip]+i2dbarname+"; Neg (pC); Pos (pC)";
+	      TString h2dtname="uh2dadcintgtdc"+plane_names[ip]+i2dbarname;
+	      hadc_adc_good[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,50,0,100,50,0,100.);
+	      TString h2dttitle= "Neg PMT Pad "+plane_names[ip]+i2dbarname+"; Adc (pC);  Time (ns)";
+	      TString h2dtname="uh2dadcvtdcneg"+plane_names[ip]+i2dbarname;
+	      hadc_tdc[ip*MAXBARS+ibar][0]= new TH2F(h2dtname,h2dttitle,50,0,100,50,adc_tdc_ymin[ip],adc_tdc_ymax[ip]);
+	      TString h2dttitle= "Pos PMT Pad "+plane_names[ip]+i2dbarname+"; Adc (pC);  Time (ns)";
+	      TString h2dtname="uh2dadcvtdcpos"+plane_names[ip]+i2dbarname;
+	      hadc_tdc[ip*MAXBARS+ibar][1]= new TH2F(h2dtname,h2dttitle,50,0,100,50,adc_tdc_ymin[ip],adc_tdc_ymax[ip]);
+	      TString h2dttitle= "Neg PMT Pad "+plane_names[ip]+i2dbarname+"; Pos (cm); Adc (pC)";
+	      TString h2dtname="uh2dadcvdisneg"+plane_names[ip]+i2dbarname;
+	      hadc_dis[ip*MAXBARS+ibar][0]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],dis_sign[ip]*dis_center_pad1[ip]-dis_space/2.,-dis_sign[ip]*dis_center_pad1[ip]+dis_space/2.,50,0,100);
+	      TString h2dttitle= "Pos PMT Pad "+plane_names[ip]+i2dbarname+"; Pos (cm); Adc (pC)";
+	      TString h2dtname="uh2dadcvdispos"+plane_names[ip]+i2dbarname;
+	      hadc_dis[ip*MAXBARS+ibar][1]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],dis_sign[ip]*dis_center_pad1[ip]-dis_space/2.,-dis_sign[ip]*dis_center_pad1[ip]+dis_space/2.,50,0,100);
+	    }
+  }
+  // set up branches
+
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	  TString base2_name = SPECTROMETER+"."+DETECTOR+"."+plane_names[ip];
+	  TString ndata_name = "Ndata."+base2_name+".GoodPaddle";
+	  T->SetBranchAddress(ndata_name, &nhits[ip]);
+	  TString paddle_name = base2_name+".GoodPaddle";
+	  T->SetBranchAddress(paddle_name, &paddles[ip][0]);
+	  //s          cout << ip << " " << paddle_name << endl;
+    for(UInt_t iside = 0; iside < NSIDES; iside++) {
+      for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+
+	if(signals[isignal] == "Adc") {  
+	  TString adc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    TString adclist_name = adc_base_name+adc_signals[iadcsignal];
+	    T->SetBranchAddress(adclist_name, &adc_values[ip][iside][iadcsignal][0]);
+	  }
+	}
+	
+	if(signals[isignal] == "Tdc") {  
+	  TString tdc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    TString tdclist_name = tdc_base_name+tdc_signals[itdcsignal];
+	      T->SetBranchAddress(tdclist_name, &tdc_values[ip][iside][itdcsignal][0]);
+	    }
+	}
+      } // isginal
+    } //iside
+  } // ip
+  // Loop over the events, filling the histograms
+  Bool_t good_should;
+  Double_t good_pad[4];
+  Double_t good_adc[4][2];
+  Int_t check_plane[4]={1,0,3,2};
+  Bool_t good_neg[4][16],good_pos[4][16];
+  for(UInt_t iev = 0, N = T->GetEntries(); iev < N; iev++) {
+    T->GetEntry(iev);
+    if (iev%10000==0) cout << " iev = " << iev << endl;
+     // get events with x paddle number equal and y paddle equal
+    //
+       good_should=kFALSE;
+      for(UInt_t ip = 0; ip < NPLANES; ip++){ 
+     for(UInt_t ib = 0; ib < nbars[ip]; ib++){ 
+       good_neg[ip][ib]=kFALSE;
+       good_pos[ip][ib]=kFALSE;
+     }
+     }
+    if (nhits[0]==1&&nhits[1]==1&&nhits[2]==1&&nhits[3]==1) good_should = kTRUE;
+      for(UInt_t ip = 0; ip < NPLANES; ip++){ 
+	//	 cout << iev << " " << ip << " " << nhits[ip]<< endl;
+		for(Int_t ihit = 0; ihit < nhits[ip]; ihit++)  {
+ 		UInt_t bar = TMath::Nint(paddles[ip][ihit]) - 1;
+		Double_t tdc_neg_val = tdc_values[ip][0][1][ihit];
+		Double_t tdc_pos_val =tdc_values[ip][1][1][ihit];
+		Double_t adc_neg_val = adc_values[ip][0][0][ihit]*adcbit_to_pC;
+		Double_t adc_pos_val = adc_values[ip][1][0][ihit]*adcbit_to_pC;
+		//		cout << " " << ihit << " " << bar << " "  << tdc_neg_val << endl;
+		htdc_tdc[ip*MAXBARS+bar]->Fill(tdc_neg_val,tdc_pos_val);
+		//		if (tdc_neg_val > 0 && tdc_pos_val >0) hadc_adc[ip*MAXBARS+bar]->Fill(adc_neg_val,adc_pos_val);
+		hadc_adc[ip*MAXBARS+bar]->Fill(adc_neg_val,adc_pos_val);
+		if (tdc_pos_val>0 && tdc_neg_val>0 ) {
+                  hadc_adc_good[ip*MAXBARS+bar]->Fill(adc_neg_val,adc_pos_val);
+		  hadc_tdc[ip*MAXBARS+bar][0]->Fill(adc_neg_val,tdc_neg_val);
+		  hadc_tdc[ip*MAXBARS+bar][1]->Fill(adc_pos_val,tdc_pos_val);
+		}
+		good_pad[ip]=bar+1;
+                good_adc[ip][0]=adc_neg_val;
+                good_adc[ip][1]=adc_pos_val;
+                if (good_should && tdc_neg_val>0 ) good_neg[ip][bar]=kTRUE;
+                if (good_should && tdc_pos_val>0 ) good_pos[ip][bar]=kTRUE;
+		}
+	}
+      //
+     if (good_should   ) {
+     for(UInt_t ip = 0; ip < NPLANES; ip++){ 
+       //       cout << " ip = " << ip << " " << good_should<< endl;
+	 //	 cout << " pad =  " << good_pad[check_plane[ip]] << " check_plane = " << check_plane[ip] << endl;
+          for(UInt_t ib = 0; ib < nbars[ip]; ib++){ 
+	    //	    cout << ib << " " << good_neg[ip][ib] << " " << good_pos[ip][ib] << endl;
+          if (good_pos[ip][ib]) hgood_neg_should[ip][ib]->Fill(good_pad[check_plane[ip]]);
+          if (good_neg[ip][ib]) hgood_pos_should[ip][ib]->Fill(good_pad[check_plane[ip]]);
+          if (good_neg[ip][ib] && good_pos[ip][ib]) {
+               hgood_neg_did[ip][ib]->Fill(good_pad[check_plane[ip]]);
+               hgood_pos_did[ip][ib]->Fill(good_pad[check_plane[ip]]);
+               hadc_dis[ip*MAXBARS+ib][0]->Fill(dis_center_pad1[ip]+dis_sign[ip]*dis_space*(good_pad[check_plane[ip]]-1),good_adc[ip][0]);
+               hadc_dis[ip*MAXBARS+ib][1]->Fill(dis_center_pad1[ip]+dis_sign[ip]*dis_space*(good_pad[check_plane[ip]]-1),good_adc[ip][1]);
+	  }
+ 	  }
+      }
+     }
+  } // loop over entries
+    //
+  return;
+}
+
+
+
+void gooddraw_2d_hhodo(TString histname) {
+
+  TH1F* h1d;
+  TH2F* h2d;
+
+  h1d = (TH1F*) gDirectory->Get(histname);
+  h2d = (TH2F*) gDirectory->Get(histname);
+  if(!h1d && !h2d) {
+    UserScript();
+    h1d = (TH1F*) gDirectory->Get(histname);
+    h2d = (TH2F*) gDirectory->Get(histname);
+    if(!h1d || !h2d) {
+      cout << "User histogram " << histname << " not found" << endl;
+      exit(1);
+    }
+  }
+  if (h2d) {
+  h2d->SetStats(0);
+  h2d->Draw("colz");
+    h2d->GetXaxis()->SetTitleOffset(.6);
+    h2d->GetXaxis()->SetTitleSize(0.08);
+    h2d->GetYaxis()->SetTitleOffset(.6);
+    h2d->GetYaxis()->SetTitleSize(0.08);
+      }
+  else {
+    cout << "1d  drawing   " << histname << endl;
+  h1d->SetStats(0);
+  h1d->Draw();
+    h1d->GetXaxis()->SetTitleOffset(.6);
+    h1d->GetXaxis()->SetTitleSize(0.08);
+    h1d->GetYaxis()->SetTitleOffset(.6);
+    h1d->GetYaxis()->SetTitleSize(0.08);
+  }
+}
+
diff --git a/onlineGUI/Macros/gooddraw_2d_phodo.C b/onlineGUI/Macros/gooddraw_2d_phodo.C
new file mode 100644
index 0000000000000000000000000000000000000000..e4141adf205e58c53c7e2d26f62b3fe98ac316ff
--- /dev/null
+++ b/onlineGUI/Macros/gooddraw_2d_phodo.C
@@ -0,0 +1,325 @@
+// UserScript.C
+//
+// Helper macro to build additional histograms
+
+void UserScript()
+{
+
+  const UInt_t NPLANES  = 4;
+  const UInt_t NSIDES   = 2;
+  const UInt_t MAXBARS  = 21;  
+  const UInt_t MAXHITS  = 16*16;  
+  const UInt_t NSIGNALS = 2;
+  const UInt_t NADCSIGNALS = 1;
+  const UInt_t NTDCSIGNALS = 3;
+
+  const TString SPECTROMETER = "P";
+  const TString DETECTOR = "hod";
+
+  const TString plane_names[NPLANES] = {"1x", "1y", "2x", "2y"};
+  const TString plane_check_names[NPLANES] = {"1y", "1x", "2y", "2x"};
+  const UInt_t  nbars[NPLANES] = {13, 13, 14, 21};
+  const UInt_t  nbars_check[NPLANES] = {13, 13, 21, 14};
+  const TString sides[NSIDES] = {"GoodNeg", "GoodPos"};
+  const TString signals[NSIGNALS] = {"Adc", "Tdc"};
+  const TString adc_signals[NADCSIGNALS] = {"PulseInt"};
+  const Double_t adc_min[NADCSIGNALS] = {0};
+  const Double_t adc_max[NADCSIGNALS] = {5000};
+  const Int_t adc_nbins[NADCSIGNALS] = {500};
+  const TString tdc_signals[NTDCSIGNALS] = {"Chan", "TimeCorr", "TimeTOFCorr"};
+  const Double_t tdc_min[NTDCSIGNALS] = {0.,0.,0.};
+  const Double_t tdc_max[NTDCSIGNALS] = {4000.,50.,50.};
+  const Int_t tdc_nbins[NTDCSIGNALS] = {100,500,500};
+ 
+  Double_t adcbit_to_pC = 1.0/(50*4096)*4*1000. ;// 1V/(50 Ohms)/4096*4ns* = .020 pC
+  Double_t adcpeak_to_mV = 1.0/4096.*1000;// 1.0V per 4096 bits
+  Double_t fac_for_disc[4]= {2.0,2.,2.,2.};// Factor to have ADC at FADC match signal at discriminatir assuming split of 2/3 to 1/3( 2Y plane has linear FI/FO not a splitter)
+ 
+  Int_t nhits[NPLANES];
+    Double_t adc_tdc_ymin[4]={-20.,-20.,-20.,-20.};
+    Double_t adc_tdc_ymax[4]={45.,45.,70.,70.};
+    Double_t adc_hmin[4]={0.,0.,0.,0.};
+    Double_t adc_hmax[4]={75.,75.,75.,200.};
+    Int_t nhits_temp;
+  Double_t paddles[NPLANES][MAXHITS];
+  const TString opp_plane[4] = {";Y1 plane paddle number; Adc (pC)",";X1 plane paddle number; Adc (pC)",";X1 plane paddle number; Adc (pC)",";X2 plane paddle number; Adc (pC)"};
+  const TString opp_planet[4] = {";Y1 plane paddle number; tdc (ns)",";X1 plane paddle number; tdc (ns)",";X1 plane paddle number; tdc (ns)",";X2 plane paddle number; tdc (ns)"};
+  const TString opp_planetdiff[4] = {";Y1 plane paddle number; tdc diff(ns)",";X1 plane paddle number; tdc diff (ns)",";X1 plane paddle number; tdc diff(ns)",";X2 plane paddle number; tdc diff (ns)"};
+
+
+  Double_t adc_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+  Double_t tdc_values[NPLANES][NSIDES][NTDCSIGNALS][MAXHITS];
+
+
+  //
+  TH2F* htdc_tdc[NPLANES*MAXBARS];
+  TH2F* hadc_adc[NPLANES*MAXBARS];
+  TH2F* hadc_adc_good[NPLANES*MAXBARS];
+  TH2F* hadc_tdc[NPLANES*MAXBARS][2];
+  /*
+  make histogram of plane ADC versus position in perpendicalur plane
+   */
+  TH2F* hadc_dis[NPLANES*MAXBARS][2];
+  TH2F* htdc_dis[NPLANES*MAXBARS][2];
+  TH2F* htdcdiff_dis[NPLANES*MAXBARS];
+  Int_t dis_bin[4]={13,13,13,14};
+  Double_t dis_min[4];
+  Double_t dis_max[4];
+  Double_t dis_center_pad1[4]={-33.75,-56.25,-33.75,-56.25};
+  Double_t dis_sign[4]={1.,1.,1.,1.};
+  Double_t dis_space=7.5;
+   /*
+Histograms for Neg and Pos PMT efficiencies as function of paddle in other perpendicular plane
+    Each X1 paddle efficiency as function of Y1 paddle.
+    Each Y1 paddle efficiency as function of X1 paddle.
+    Each X2 paddle efficiency as function of Y2 paddle.
+    Each Y2 paddle efficiency as function of X2 paddle.
+Tree has data in which at least one PMT had a good TDC time. 
+If the other PMT did not have a good time then its TDC =-999.
+For each event
+Set good_should=kTRUE if  nhits==1 all planes.
+Loop through all hits in each plane ip=0,3
+  If good_should=kTRUE and tdc_neg_val>0 good_neg[ip][bar]=kTRUE 
+  If good_should=kTRUE and tdc_pos_val>0 good_neg[ip][bar]=kTRUE 
+endloop
+Loop through all planes and all bars in that plane ib=0,nbars[ip]
+  if good_pos[ip][ib] then negative end should have had a hit
+         fill "should" neg PMT histogram with perpendicular paddle  
+  if good_pos[ip][ib] and good_neg[ip][ib] 
+         fill "did"  neg PMT  histogram with perpendicular paddle  
+  if good_neg[ip][ib] then positive end should have had a hit
+         fill "should" pos PMT histogram with perpendicular paddle  
+  if good_pos[ip][ib] and good_neg[ip][ib] 
+         fill "did"  pos PMT  histogram with perpendicular paddle 
+end event
+Efficiency is ratio of did/should which is calculated using hodo_efficiency.C   
+   */
+  TH1F* hgood_neg_should[4][MAXBARS];
+  TH1F* hgood_pos_should[4][MAXBARS];
+  TH1F* hgood_neg_did[4][MAXBARS];
+  TH1F* hgood_pos_did[4][MAXBARS];
+  //
+  Int_t adc_ihit, tdc_ihit;
+
+  TTree *T=(TTree*)gDirectory->Get("T");
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "TDC 1ns/chan "+plane_names[ip]+i2dbarname+"; Neg ; Pos ";
+	      TString h2dtname="uh2dtdc"+plane_names[ip]+i2dbarname;
+              htdc_tdc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,100,0,50,100,0,50.);
+		TString h2dnegtitle= "Neg PMT Pad  "+plane_names[ip]+i2dbarname+"; plane "+plane_check_names[ip]+" paddles; Counts neg ";
+	        TString h2dnegname="uhdidneg"+plane_names[ip]+i2dbarname;
+                 hgood_neg_did[ip][ibar]= new TH1F(h2dnegname,h2dnegtitle,nbars_check[ip],1,nbars_check[ip]+1);
+		TString h2dnegtitle= "Neg PMT Pad  "+plane_names[ip]+i2dbarname+"; plane "+plane_check_names[ip]+" paddles; Counts neg ";
+	        TString h2dnegname="uhshouldneg"+plane_names[ip]+i2dbarname;
+                 hgood_neg_should[ip][ibar]= new TH1F(h2dnegname,h2dnegtitle,nbars_check[ip],1,nbars_check[ip]+1);
+		TString h2dpostitle= "Pos PMT Pad  "+plane_names[ip]+i2dbarname+"; plane "+plane_check_names[ip]+" paddles;Counts pos ";
+	        TString h2dposname="uhdidpos"+plane_names[ip]+i2dbarname;
+                 hgood_pos_did[ip][ibar]= new TH1F(h2dposname,h2dpostitle,nbars_check[ip],1,nbars_check[ip]+1);
+		TString h2dpostitle="Pos PMT Pad  "+plane_names[ip]+i2dbarname+"; plane "+plane_check_names[ip]+" paddles;Counts pos ";
+	        TString h2dposname="uhshouldpos"+plane_names[ip]+i2dbarname;
+                 hgood_pos_should[ip][ibar]= new TH1F(h2dposname,h2dpostitle,nbars_check[ip],1,nbars_check[ip]+1);
+ 	    }
+  }
+  //
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "ADC Int Amp "+plane_names[ip]+i2dbarname+"; Neg (pC); Pos (pC)";
+	      TString h2dtname="uh2dadcint"+plane_names[ip]+i2dbarname;
+	      hadc_adc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,50,adc_hmin[ip],adc_hmax[ip],50,adc_hmin[ip],adc_hmax[ip]);
+	      TString h2dttitle= "Good TDC ADC Int Amp "+plane_names[ip]+i2dbarname+"; Neg (pC); Pos (pC)";
+	      TString h2dtname="uh2dadcintgtdc"+plane_names[ip]+i2dbarname;
+	      hadc_adc_good[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,50,adc_hmin[ip],adc_hmax[ip],50,adc_hmin[ip],adc_hmax[ip]);
+	      TString h2dttitle= "Neg PMT Pad "+plane_names[ip]+i2dbarname+"; Adc (pC);  Time (ns)";
+	      TString h2dtname="uh2dadcvtdcneg"+plane_names[ip]+i2dbarname;
+	      hadc_tdc[ip*MAXBARS+ibar][0]= new TH2F(h2dtname,h2dttitle,50,adc_hmin[ip],adc_hmax[ip],50,adc_tdc_ymin[ip],adc_tdc_ymax[ip]);
+	      TString h2dttitle= "Pos PMT Pad "+plane_names[ip]+i2dbarname+"; Adc (pC);  Time (ns)";
+	      TString h2dtname="uh2dadcvtdcpos"+plane_names[ip]+i2dbarname;
+	      hadc_tdc[ip*MAXBARS+ibar][1]= new TH2F(h2dtname,h2dttitle,50,adc_hmin[ip],adc_hmax[ip],50,adc_tdc_ymin[ip],adc_tdc_ymax[ip]);
+	      TString h2dttitle= "Neg PMT Pad "+plane_names[ip]+i2dbarname+opp_plane[ip];
+	      TString h2dtname="uh2dadcvdisneg"+plane_names[ip]+i2dbarname;
+	      hadc_dis[ip*MAXBARS+ibar][0]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],1,dis_bin[ip]+1,50,0,adc_hmax[ip]);
+	      TString h2dttitle= "Pos PMT Pad "+plane_names[ip]+i2dbarname+opp_plane[ip];
+	      TString h2dtname="uh2dadcvdispos"+plane_names[ip]+i2dbarname;
+	      hadc_dis[ip*MAXBARS+ibar][1]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],1,dis_bin[ip]+1,50,0,adc_hmax[ip]);
+	      TString h2dttitle= "Neg PMT Pad "+plane_names[ip]+i2dbarname+opp_planet[ip];
+	      TString h2dtname="uh2dtdcvdisneg"+plane_names[ip]+i2dbarname;
+	      htdc_dis[ip*MAXBARS+ibar][0]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],1,dis_bin[ip]+1,40,-80,80);
+	      TString h2dttitle= "Pos PMT Pad "+plane_names[ip]+i2dbarname+opp_planet[ip];
+	      TString h2dtname="uh2dtdcvdispos"+plane_names[ip]+i2dbarname;
+	      htdc_dis[ip*MAXBARS+ibar][1]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],1,dis_bin[ip]+1,40,-80,80);
+	      TString h2dttitle= "PMT Pad "+plane_names[ip]+i2dbarname+opp_planetdiff[ip];
+	      TString h2dtname="uh2dtdcdiffvdis"+plane_names[ip]+i2dbarname;
+	      htdcdiff_dis[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],1,dis_bin[ip]+1,40,-20,20);
+	    }
+  }
+  // set up branches
+          Double_t betanotrack;
+	  TString beta_name = SPECTROMETER+"."+DETECTOR+".betanotrack";
+	  T->SetBranchAddress(beta_name, &betanotrack);
+          TH1F* hbeta= new TH1F("hbeta","; Beta ;COunts",150,-1.5,1.5);
+          Double_t fptime[4];
+	  TString fpname = SPECTROMETER+"."+DETECTOR+".1x.fptime";
+	  T->SetBranchAddress(fpname, &fptime[0]);
+	  TString fpname = SPECTROMETER+"."+DETECTOR+".1y.fptime";
+	  T->SetBranchAddress(fpname, &fptime[1]);
+	  TString fpname = SPECTROMETER+"."+DETECTOR+".2x.fptime";
+	  T->SetBranchAddress(fpname, &fptime[2]);
+	  TString fpname = SPECTROMETER+"."+DETECTOR+".2y.fptime";
+	  T->SetBranchAddress(fpname, &fptime[3]);
+          TH1F* hfptime[4];
+          hfptime[0]= new TH1F("fptime1x","; fptime 1x ;COunts",50,0,50);
+          hfptime[1]= new TH1F("fptime1y","; fptime 1y ;COunts",50,0,50);
+          hfptime[2]= new TH1F("fptime2x","; fptime 2x ;COunts",50,0,50);
+          hfptime[3]= new TH1F("fptime2y","; fptime 2y ;COunts",50,0,50);
+          TH2F* hfptime_pad[4];
+          hfptime_pad[0]= new TH2F("fptime1x_pad","; fptime 1x ;Paddle",50,0,50,14,0,14);
+          hfptime_pad[1]= new TH2F("fptime1y_pad","; fptime 1y ;Paddle",50,0,50,14,0,14);
+          hfptime_pad[2]= new TH2F("fptime2x_pad","; fptime 2x ;Paddle",50,0,50,15,0,15);
+          hfptime_pad[3]= new TH2F("fptime2y_pad","; fptime 2y ;Paddle",50,0,50,22,0,22);
+
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	  TString base2_name = SPECTROMETER+"."+DETECTOR+"."+plane_names[ip];
+	  TString ndata_name = "Ndata."+base2_name+".GoodPaddle";
+	  T->SetBranchAddress(ndata_name, &nhits[ip]);
+	  TString paddle_name = base2_name+".GoodPaddle";
+	  T->SetBranchAddress(paddle_name, &paddles[ip][0]);
+	  //s          cout << ip << " " << paddle_name << endl;
+    for(UInt_t iside = 0; iside < NSIDES; iside++) {
+      for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+
+	if(signals[isignal] == "Adc") {  
+	  TString adc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    TString adclist_name = adc_base_name+adc_signals[iadcsignal];
+	    T->SetBranchAddress(adclist_name, &adc_values[ip][iside][iadcsignal][0]);
+	  }
+	}
+	
+	if(signals[isignal] == "Tdc") {  
+	  TString tdc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    TString tdclist_name = tdc_base_name+tdc_signals[itdcsignal];
+	      T->SetBranchAddress(tdclist_name, &tdc_values[ip][iside][itdcsignal][0]);
+	    }
+	}
+      } // isginal
+    } //iside
+  } // ip
+  // Loop over the events, filling the histograms
+  Bool_t good_should;
+  Double_t good_pad[4];
+  Double_t good_adc[4][2];
+  Double_t good_tdc[4][2];
+  Int_t check_plane[4]={1,0,0,2};
+  Bool_t good_neg[4][MAXBARS],good_pos[4][MAXBARS];
+  for(UInt_t iev = 0, N = T->GetEntries(); iev < N; iev++) {
+    T->GetEntry(iev);
+    if (iev%10000==0) cout << " iev = " << iev << endl;
+     // get events with x paddle number equal and y paddle equal
+    //
+       good_should=kFALSE;
+      for(UInt_t ip = 0; ip < NPLANES; ip++){ 
+     for(UInt_t ib = 0; ib < nbars[ip]; ib++){ 
+       good_neg[ip][ib]=kFALSE;
+       good_pos[ip][ib]=kFALSE;
+     }
+     }
+    if (nhits[0]==1&&nhits[1]==1&&nhits[2]==1&&nhits[3]<=1) good_should = kTRUE;
+    if ( good_should)  hbeta->Fill(betanotrack);
+      for(UInt_t ip = 0; ip < NPLANES; ip++){ 
+		  if ( good_should) hfptime[ip]->Fill(fptime[ip]);
+	//		 cout << iev << " plane = " << ip+1 << " nhits =  " << nhits[ip]<< endl;
+		for(Int_t ihit = 0; ihit < nhits[ip]; ihit++)  {
+ 		UInt_t bar = TMath::Nint(paddles[ip][ihit]) - 1;
+		Double_t tdc_neg_val = tdc_values[ip][0][1][ihit];
+		Double_t tdc_pos_val =tdc_values[ip][1][1][ihit];
+		Double_t adc_neg_val = adc_values[ip][0][0][ihit]*adcbit_to_pC;
+		Double_t adc_pos_val = adc_values[ip][1][0][ihit]*adcbit_to_pC;
+		//	cout << " " << ihit << " " << bar << " "  << tdc_neg_val << endl;
+		hadc_adc[ip*MAXBARS+bar]->Fill(adc_neg_val,adc_pos_val);
+		if (good_should && tdc_pos_val>0 && tdc_neg_val>0 && adc_neg_val > 5. &&  adc_pos_val > 5. ) {
+		  htdc_tdc[ip*MAXBARS+bar]->Fill(tdc_neg_val,tdc_pos_val);
+                  hadc_adc_good[ip*MAXBARS+bar]->Fill(adc_neg_val,adc_pos_val);
+		  hadc_tdc[ip*MAXBARS+bar][0]->Fill(adc_neg_val,tdc_neg_val);
+		  hadc_tdc[ip*MAXBARS+bar][1]->Fill(adc_pos_val,tdc_neg_val);
+                  hfptime_pad[ip]->Fill(fptime[ip],float(bar+1));
+		}
+		good_pad[ip]=bar+1;
+                good_adc[ip][0]=adc_neg_val;
+                good_adc[ip][1]=adc_pos_val;
+                good_tdc[ip][0]=tdc_neg_val;
+                good_tdc[ip][1]=tdc_pos_val;
+                if (good_should && tdc_pos_val>0 && tdc_neg_val>0&& adc_neg_val > 5. &&  adc_pos_val > 5.  ) good_neg[ip][bar]=kTRUE;
+                if (good_should && tdc_pos_val>0  && tdc_neg_val>0&& adc_neg_val > 5. &&  adc_pos_val > 5.  ) good_pos[ip][bar]=kTRUE;
+		}
+	}
+      //
+     if (good_should   ) {
+     for(UInt_t ip = 0; ip < NPLANES; ip++){ 
+       //       cout << " ip = " << ip << " " << good_should<< endl;
+	 //	 cout << " pad =  " << good_pad[check_plane[ip]] << " check_plane = " << check_plane[ip] << endl;
+          for(UInt_t ib = 0; ib < nbars[ip]; ib++){ 
+	    //	    cout << ib << " " << good_neg[ip][ib] << " " << good_pos[ip][ib] << endl;
+          if (good_pos[ip][ib]) hgood_neg_should[ip][ib]->Fill(good_pad[check_plane[ip]]);
+          if (good_neg[ip][ib]) hgood_pos_should[ip][ib]->Fill(good_pad[check_plane[ip]]);
+          if (good_neg[ip][ib] && good_pos[ip][ib]) {
+               hgood_neg_did[ip][ib]->Fill(good_pad[check_plane[ip]]);
+               hgood_pos_did[ip][ib]->Fill(good_pad[check_plane[ip]]);
+               hadc_dis[ip*MAXBARS+ib][0]->Fill(good_pad[check_plane[ip]],good_adc[ip][0]);
+               hadc_dis[ip*MAXBARS+ib][1]->Fill(good_pad[check_plane[ip]],good_adc[ip][1]);
+               htdc_dis[ip*MAXBARS+ib][0]->Fill(good_pad[check_plane[ip]],good_tdc[ip][0]);
+               htdc_dis[ip*MAXBARS+ib][1]->Fill(good_pad[check_plane[ip]],good_tdc[ip][1]);
+               htdcdiff_dis[ip*MAXBARS+ib]->Fill(good_pad[check_plane[ip]],good_tdc[ip][1]-good_tdc[ip][0]);
+	  }
+ 	  }
+      }
+     }
+  } // loop over entries
+    //
+  return;
+}
+
+
+
+void gooddraw_2d_phodo(TString histname) {
+
+  TH1F* h1d;
+  TH2F* h2d;
+
+  h1d = (TH1F*) gDirectory->Get(histname);
+  h2d = (TH2F*) gDirectory->Get(histname);
+  if(!h1d && !h2d) {
+    UserScript();
+    h1d = (TH1F*) gDirectory->Get(histname);
+    h2d = (TH2F*) gDirectory->Get(histname);
+    if(!h1d || !h2d) {
+      cout << "User histogram " << histname << " not found" << endl;
+      exit(1);
+    }
+  }
+  if (h2d) {
+  h2d->SetStats(0);
+  h2d->Draw("colz");
+    h2d->GetXaxis()->SetTitleOffset(.6);
+    h2d->GetXaxis()->SetTitleSize(0.08);
+    h2d->GetYaxis()->SetTitleOffset(.6);
+    h2d->GetYaxis()->SetTitleSize(0.08);
+      }
+  else {
+    cout << "1d  drawing   " << histname << endl;
+  h1d->SetStats(0);
+  h1d->Draw();
+    h1d->GetXaxis()->SetTitleOffset(.6);
+    h1d->GetXaxis()->SetTitleSize(0.08);
+    h1d->GetYaxis()->SetTitleOffset(.6);
+    h1d->GetYaxis()->SetTitleSize(0.08);
+  }
+}
+
diff --git a/onlineGUI/Macros/hodo_efficiency.C b/onlineGUI/Macros/hodo_efficiency.C
new file mode 100644
index 0000000000000000000000000000000000000000..a8dd7cd05650568810c5b3b285d45705d3183eea
--- /dev/null
+++ b/onlineGUI/Macros/hodo_efficiency.C
@@ -0,0 +1,24 @@
+void hodo_efficiency(TString hist1name, TString hist2name){
+  TH1F* H1;
+  TH1F* H2;
+  
+  H1 = (TH1F*) gDirectory->Get(hist1name);
+  H2 = (TH1F*) gDirectory->Get(hist2name);
+  if (H1 && H2) {
+    H1->Sumw2();
+    H2->Sumw2();
+    TH1F* Hratio=(TH1F*)H1->Clone();
+    Hratio->Divide(H1,H2,1,1,"B");
+    Hratio->SetStats(0);
+    Hratio->SetMinimum(0.95);
+    Hratio->SetMaximum(1.05);
+    Hratio->Draw("EP");
+    Hratio->GetXaxis()->SetTitleOffset(.6);
+    Hratio->GetXaxis()->SetTitleSize(0.08);
+    Hratio->GetYaxis()->SetTitleOffset(.6);
+    Hratio->GetYaxis()->SetTitleSize(0.08);
+  } else {
+    if (!H1) cout << " Histogram " << hist1name << " does not exist" << endl;
+    if (!H2) cout << " Histogram " << hist2name << " does not exist" << endl;
+  }
+}
diff --git a/onlineGUI/Macros/kpp_analysis.C b/onlineGUI/Macros/kpp_analysis.C
new file mode 100644
index 0000000000000000000000000000000000000000..b4b866a212265b8564e1421fc09620b8d843ce03
--- /dev/null
+++ b/onlineGUI/Macros/kpp_analysis.C
@@ -0,0 +1,686 @@
+
+void UserScript() {
+
+  // Declare constants
+  static const Double_t clk2tdc     = 0.100;
+  static const Double_t clk2adc     = 0.0625;
+  static const UInt_t   ndcRefTimes = 10;
+
+  static const UInt_t nbars_1x = 13;
+  static const UInt_t nbars_1y = 13;
+  static const UInt_t nbars_2x = 14;
+  static const UInt_t nbars_2y = 21;
+
+  static const UInt_t nshwr_blks      = 224;
+  static const UInt_t npos_pshwr_blks = 14;
+  static const UInt_t nneg_pshwr_blks = 14;
+
+  static const UInt_t nhgc_pmts = 4;
+  static const UInt_t nngc_pmts = 4;
+
+  static const UInt_t npos_aero_pmts = 7;
+  static const UInt_t nneg_aero_pmts = 7;
+
+  static const UInt_t maxTdcHits = 128;
+  static const UInt_t maxAdcHits = 4;
+
+  static const Double_t pshwr_adc2GeV = 0.001;
+  static const Double_t shwr_adc2GeV  = 0.0005;
+
+  static const Double_t hgc_adc2npe = 1./205.;
+  static const Double_t ngc_adc2npe = 1./150.;
+
+  static const Double_t aero_adc2npe = 1./500.;
+
+  static const UInt_t maxNumTracks = 10;
+
+  // =:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:
+
+  // Declare variables
+  Double_t p1X_tdcTime, p1Y_tdcTime, p2X_tdcTime, p2Y_tdcTime;
+  Double_t p1T_tdcTime, p2T_tdcTime;
+  Double_t pT1_tdcTime, pT2_tdcTime, pT3_tdcTime;
+  Double_t pDCREF_tdcTime[ndcRefTimes];
+
+  // Hodoscope hits
+  Int_t    p1X_negAdcHits, p1Y_negAdcHits, p2X_negAdcHits, p2Y_negAdcHits;
+  Int_t    p1X_negTdcHits, p1Y_negTdcHits, p2X_negTdcHits, p2Y_negTdcHits;
+  Double_t p1X_negAdcPaddle[maxAdcHits*nbars_1x], p1Y_negAdcPaddle[maxAdcHits*nbars_1y];
+  Double_t p2X_negAdcPaddle[maxAdcHits*nbars_2x], p2Y_negAdcPaddle[maxAdcHits*nbars_2y];
+  Double_t p1X_negTdcPaddle[maxTdcHits*nbars_1x], p1Y_negTdcPaddle[maxTdcHits*nbars_1y];
+  Double_t p2X_negTdcPaddle[maxTdcHits*nbars_2x], p2Y_negTdcPaddle[maxTdcHits*nbars_2y];
+  Double_t p1X_negAdcPulseTime[maxAdcHits*nbars_1x], p1Y_negAdcPulseTime[maxAdcHits*nbars_1y];
+  Double_t p2X_negAdcPulseTime[maxAdcHits*nbars_2x], p2Y_negAdcPulseTime[maxAdcHits*nbars_2y];
+  Double_t p1X_negTdcTime[maxTdcHits*nbars_1x], p1Y_negTdcTime[maxTdcHits*nbars_1y];
+  Double_t p2X_negTdcTime[maxTdcHits*nbars_2x], p2Y_negTdcTime[maxTdcHits*nbars_2y];
+  Int_t    p1X_posAdcHits, p1Y_posAdcHits, p2X_posAdcHits, p2Y_posAdcHits;
+  Int_t    p1X_posTdcHits, p1Y_posTdcHits, p2X_posTdcHits, p2Y_posTdcHits;
+  Double_t p1X_posAdcPaddle[maxAdcHits*nbars_1x], p1Y_posAdcPaddle[maxAdcHits*nbars_1y];
+  Double_t p2X_posAdcPaddle[maxAdcHits*nbars_2x], p2Y_posAdcPaddle[maxAdcHits*nbars_2y];
+  Double_t p1X_posTdcPaddle[maxTdcHits*nbars_1x], p1Y_posTdcPaddle[maxTdcHits*nbars_1y];
+  Double_t p2X_posTdcPaddle[maxTdcHits*nbars_2x], p2Y_posTdcPaddle[maxTdcHits*nbars_2y];
+  Double_t p1X_posAdcPulseTime[maxAdcHits*nbars_1x], p1Y_posAdcPulseTime[maxAdcHits*nbars_1y];
+  Double_t p2X_posAdcPulseTime[maxAdcHits*nbars_2x], p2Y_posAdcPulseTime[maxAdcHits*nbars_2y];
+  Double_t p1X_posTdcTime[maxTdcHits*nbars_1x], p1Y_posTdcTime[maxTdcHits*nbars_1y];
+  Double_t p2X_posTdcTime[maxTdcHits*nbars_2x], p2Y_posTdcTime[maxTdcHits*nbars_2y];
+
+  // "Good" hodo hits
+  Int_t    p1X_nGoodHodoHits, p1Y_nGoodHodoHits, p2X_nGoodHodoHits, p2Y_nGoodHodoHits;
+  Double_t p1X_goodPaddle[maxAdcHits*nbars_1x], p1Y_goodPaddle[maxAdcHits*nbars_1y];
+  Double_t p2X_goodPaddle[maxAdcHits*nbars_2x], p2Y_goodPaddle[maxAdcHits*nbars_2y];
+  Double_t p1X_goodNegTdcTimeCorr[maxTdcHits*nbars_1x], p1Y_goodNegTdcTimeCorr[maxTdcHits*nbars_1y];
+  Double_t p2X_goodNegTdcTimeCorr[maxTdcHits*nbars_2x], p2Y_goodNegTdcTimeCorr[maxTdcHits*nbars_2y];
+  Double_t p1X_goodPosTdcTimeCorr[maxTdcHits*nbars_1x], p1Y_goodPosTdcTimeCorr[maxTdcHits*nbars_1y];
+  Double_t p2X_goodPosTdcTimeCorr[maxTdcHits*nbars_2x], p2Y_goodPosTdcTimeCorr[maxTdcHits*nbars_2y];
+
+  // Hodoscope focal plane times
+  Double_t p1X_fpTime, p1Y_fpTime, p2X_fpTime, p2Y_fpTime;
+  Double_t p1X_plTime, p1Y_plTime, p2X_plTime, p2Y_plTime;
+
+  // Aerogel ADC
+  Int_t paero_posHits, paero_negHits;
+  Double_t paero_posPmt[maxAdcHits*npos_aero_pmts], paero_negPmt[maxAdcHits*nneg_aero_pmts];
+  Double_t paero_posPulseTime[maxAdcHits*npos_aero_pmts], paero_negPulseTime[maxAdcHits*nneg_aero_pmts];
+  Double_t paero_posPulseInt[maxAdcHits*npos_aero_pmts], paero_negPulseInt[maxAdcHits*nneg_aero_pmts];
+
+  // Pre-Shower ADC
+  Int_t ppshwr_posHits, ppshwr_negHits;
+  Double_t ppshwr_posPmt[maxAdcHits*npos_pshwr_blks], ppshwr_negPmt[maxAdcHits*nneg_pshwr_blks];
+  Double_t ppshwr_posPulseTime[maxAdcHits*npos_pshwr_blks], ppshwr_negPulseTime[maxAdcHits*nneg_pshwr_blks];
+  Double_t ppshwr_posPulseInt[maxAdcHits*npos_pshwr_blks], ppshwr_negPulseInt[maxAdcHits*nneg_pshwr_blks];
+
+  // Shower ADC
+  Int_t pshwr_hits;
+  Double_t pshwr_pmt[maxAdcHits*nshwr_blks], pshwr_pulseTime[maxAdcHits*nshwr_blks];
+  Double_t pshwr_pulseInt[maxAdcHits*nshwr_blks];
+
+  // Heavy gas Cherenkov ADC
+  Int_t phgc_hits;
+  Double_t phgc_pmt[maxAdcHits*nhgc_pmts], phgc_pulseTime[maxAdcHits*nhgc_pmts];
+  Double_t phgc_pulseInt[maxAdcHits*nhgc_pmts];
+
+  // Noble gas Cherenkov ADC
+  Int_t pngc_hits;
+  Double_t pngc_pmt[maxAdcHits*nngc_pmts], pngc_pulseTime[maxAdcHits*nngc_pmts];
+  Double_t pngc_pulseInt[maxAdcHits*nngc_pmts];
+
+  // Tracking information
+  Int_t ntracks;
+  Double_t trk_pmag[maxNumTracks];
+
+  Long64_t nentries;
+
+  // =:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:
+
+  // Declare Histos
+  TH1F *h_p1X_tdc, *h_p1Y_tdc, *h_p2X_tdc, *h_p2Y_tdc;
+  TH1F *h_p1T_tdc, *h_p2T_tdc;
+  TH1F *h_pT1_tdc, *h_pT2_tdc, *h_pT3_tdc;
+  TH1F *h_p1XmpT2_tdc, *h_p1YmpT2_tdc, *h_p2XmpT2_tdc, *h_p2YmpT2_tdc;
+  TH1F *h_p1XmpT3_tdc, *h_p1YmpT3_tdc, *h_p2XmpT3_tdc, *h_p2YmpT3_tdc;
+  TH1F *h_p1TmpT2_tdc, *h_p2TmpT2_tdc, *h_p1TmpT3_tdc, *h_p2TmpT3_tdc;
+  TH1F *h_pDCREF_tdc[ndcRefTimes];
+
+  TH2F *h2_p1Xneg_pt_tt_diff, *h2_p1Yneg_pt_tt_diff, *h2_p2Xneg_pt_tt_diff, *h2_p2Yneg_pt_tt_diff;
+  TH2F *h2_p1Xpos_pt_tt_diff, *h2_p1Ypos_pt_tt_diff, *h2_p2Xpos_pt_tt_diff, *h2_p2Ypos_pt_tt_diff;
+
+  TH1F *h_p1X_fpTime, *h_p1Y_fpTime, *h_p2X_fpTime, *h_p2Y_fpTime;
+  TH1F *h_p1X_plTime, *h_p1Y_plTime, *h_p2X_plTime, *h_p2Y_plTime;
+
+  TH2F *h2_p1X_negTdcCorr, *h2_p1Y_negTdcCorr, *h2_p2X_negTdcCorr, *h2_p2Y_negTdcCorr;
+  TH2F *h2_p1X_posTdcCorr, *h2_p1Y_posTdcCorr, *h2_p2X_posTdcCorr, *h2_p2Y_posTdcCorr;
+  TH2F *h2_p1X_tdcCorrDiff, *h2_p1Y_tdcCorrDiff, *h2_p2X_tdcCorrDiff, *h2_p2Y_tdcCorrDiff;
+
+  TH2F *h2_paero_posPulseTime_pT1_diff, *h2_paero_negPulseTime_pT1_diff;
+  TH2F *h2_paero_posPulseTime_pT2_diff, *h2_paero_negPulseTime_pT2_diff;
+  TH2F *h2_paero_posPulseTime_pT3_diff, *h2_paero_negPulseTime_pT3_diff;
+
+  TH2F *h2_ppshwr_posPulseTime_pT1_diff, *h2_ppshwr_negPulseTime_pT1_diff;
+  TH2F *h2_ppshwr_posPulseTime_pT2_diff, *h2_ppshwr_negPulseTime_pT2_diff;
+  TH2F *h2_ppshwr_posPulseTime_pT3_diff, *h2_ppshwr_negPulseTime_pT3_diff;
+
+  TH2F *h2_pshwr_pulseTime_pT1_diff;
+  TH2F *h2_pshwr_pulseTime_pT2_diff;
+  TH2F *h2_pshwr_pulseTime_pT3_diff;
+
+  TH2F *h2_phgc_pulseTime_pT1_diff;
+  TH2F *h2_phgc_pulseTime_pT2_diff;
+  TH2F *h2_phgc_pulseTime_pT3_diff;
+
+  TH2F *h2_pngc_pulseTime_pT1_diff;
+  TH2F *h2_pngc_pulseTime_pT2_diff;
+  TH2F *h2_pngc_pulseTime_pT3_diff;
+
+  TH2F *h2_pshwr_vs_phgcer, *h2_pshwr_vs_pngcer, *h2_pshwr_vs_ppshwr;
+  TH1F *h_paero_sum, *h_ppshwr_sum, *h_pshwr_sum, *h_ptotshwr_sum, *h_phgc_sum, *h_pngc_sum;
+
+  TH2F *h2_EdivP_vs_P;
+
+  // =:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:
+
+  // Declare trees
+  TTree *T = (TTree*) gDirectory->Get("T");
+
+  // Acquire the number of entries
+  nentries = T->GetEntries();
+
+  // Acquire the branches
+  // Trigger time information
+  T->SetBranchAddress("T.shms.p1X_tdcTime", &p1X_tdcTime);
+  T->SetBranchAddress("T.shms.p1Y_tdcTime", &p1Y_tdcTime);
+  T->SetBranchAddress("T.shms.p2X_tdcTime", &p2X_tdcTime);
+  T->SetBranchAddress("T.shms.p2Y_tdcTime", &p2Y_tdcTime);
+  T->SetBranchAddress("T.shms.p1T_tdcTime", &p1T_tdcTime);
+  T->SetBranchAddress("T.shms.p2T_tdcTime", &p2T_tdcTime);
+  T->SetBranchAddress("T.shms.pT1_tdcTime", &pT1_tdcTime);
+  T->SetBranchAddress("T.shms.pT2_tdcTime", &pT2_tdcTime);
+  T->SetBranchAddress("T.shms.pT3_tdcTime", &pT3_tdcTime);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  // DC reference times
+  for (UInt_t iref = 0; iref < ndcRefTimes; iref++)
+    T->SetBranchAddress(Form("T.shms.pDCREF%d_tdcTime", iref+1), &pDCREF_tdcTime[iref]);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  // Hodoscope focal plane time calculation
+  T->SetBranchAddress("P.hod.1x.fptime", &p1X_fpTime);
+  T->SetBranchAddress("P.hod.1y.fptime", &p1Y_fpTime);
+  T->SetBranchAddress("P.hod.2x.fptime", &p2X_fpTime);
+  T->SetBranchAddress("P.hod.2y.fptime", &p2Y_fpTime);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  // Hodoscope ADC information
+  T->SetBranchAddress("Ndata.P.hod.1x.negAdcCounter", &p1X_negAdcHits);
+  T->SetBranchAddress("Ndata.P.hod.1y.negAdcCounter", &p1Y_negAdcHits);
+  T->SetBranchAddress("Ndata.P.hod.2x.negAdcCounter", &p2X_negAdcHits);
+  T->SetBranchAddress("Ndata.P.hod.2y.negAdcCounter", &p2Y_negAdcHits);
+  T->SetBranchAddress("P.hod.1x.negAdcCounter", p1X_negAdcPaddle);
+  T->SetBranchAddress("P.hod.1y.negAdcCounter", p1Y_negAdcPaddle);
+  T->SetBranchAddress("P.hod.2x.negAdcCounter", p2X_negAdcPaddle);
+  T->SetBranchAddress("P.hod.2y.negAdcCounter", p2Y_negAdcPaddle);
+  T->SetBranchAddress("P.hod.1x.negAdcPulseTimeRaw", p1X_negAdcPulseTime);
+  T->SetBranchAddress("P.hod.1y.negAdcPulseTimeRaw", p1Y_negAdcPulseTime);
+  T->SetBranchAddress("P.hod.2x.negAdcPulseTimeRaw", p2X_negAdcPulseTime);
+  T->SetBranchAddress("P.hod.2y.negAdcPulseTimeRaw", p2Y_negAdcPulseTime);
+  T->SetBranchAddress("Ndata.P.hod.1x.posAdcCounter", &p1X_posAdcHits);
+  T->SetBranchAddress("Ndata.P.hod.1y.posAdcCounter", &p1Y_posAdcHits);
+  T->SetBranchAddress("Ndata.P.hod.2x.posAdcCounter", &p2X_posAdcHits);
+  T->SetBranchAddress("Ndata.P.hod.2y.posAdcCounter", &p2Y_posAdcHits);
+  T->SetBranchAddress("P.hod.1x.posAdcCounter", p1X_posAdcPaddle);
+  T->SetBranchAddress("P.hod.1y.posAdcCounter", p1Y_posAdcPaddle);
+  T->SetBranchAddress("P.hod.2x.posAdcCounter", p2X_posAdcPaddle);
+  T->SetBranchAddress("P.hod.2y.posAdcCounter", p2Y_posAdcPaddle);
+  T->SetBranchAddress("P.hod.1x.posAdcPulseTimeRaw", p1X_posAdcPulseTime);
+  T->SetBranchAddress("P.hod.1y.posAdcPulseTimeRaw", p1Y_posAdcPulseTime);
+  T->SetBranchAddress("P.hod.2x.posAdcPulseTimeRaw", p2X_posAdcPulseTime);
+  T->SetBranchAddress("P.hod.2y.posAdcPulseTimeRaw", p2Y_posAdcPulseTime);
+  // Hodoscope TDC information
+  T->SetBranchAddress("Ndata.P.hod.1x.negTdcCounter", &p1X_negTdcHits);
+  T->SetBranchAddress("Ndata.P.hod.1y.negTdcCounter", &p1Y_negTdcHits);
+  T->SetBranchAddress("Ndata.P.hod.2x.negTdcCounter", &p2X_negTdcHits);
+  T->SetBranchAddress("Ndata.P.hod.2y.negTdcCounter", &p2Y_negTdcHits);
+  T->SetBranchAddress("P.hod.1x.negTdcCounter", p1X_negTdcPaddle);
+  T->SetBranchAddress("P.hod.1y.negTdcCounter", p1Y_negTdcPaddle);
+  T->SetBranchAddress("P.hod.2x.negTdcCounter", p2X_negTdcPaddle);
+  T->SetBranchAddress("P.hod.2y.negTdcCounter", p2Y_negTdcPaddle);
+  T->SetBranchAddress("P.hod.1x.negTdcTime", p1X_negTdcTime);
+  T->SetBranchAddress("P.hod.1y.negTdcTime", p1Y_negTdcTime);
+  T->SetBranchAddress("P.hod.2x.negTdcTime", p2X_negTdcTime);
+  T->SetBranchAddress("P.hod.2y.negTdcTime", p2Y_negTdcTime);
+  T->SetBranchAddress("Ndata.P.hod.1x.posTdcCounter", &p1X_posTdcHits);
+  T->SetBranchAddress("Ndata.P.hod.1y.posTdcCounter", &p1Y_posTdcHits);
+  T->SetBranchAddress("Ndata.P.hod.2x.posTdcCounter", &p2X_posTdcHits);
+  T->SetBranchAddress("Ndata.P.hod.2y.posTdcCounter", &p2Y_posTdcHits);
+  T->SetBranchAddress("P.hod.1x.posTdcCounter", p1X_posTdcPaddle);
+  T->SetBranchAddress("P.hod.1y.posTdcCounter", p1Y_posTdcPaddle);
+  T->SetBranchAddress("P.hod.2x.posTdcCounter", p2X_posTdcPaddle);
+  T->SetBranchAddress("P.hod.2y.posTdcCounter", p2Y_posTdcPaddle);
+  T->SetBranchAddress("P.hod.1x.posTdcTime", p1X_posTdcTime);
+  T->SetBranchAddress("P.hod.1y.posTdcTime", p1Y_posTdcTime);
+  T->SetBranchAddress("P.hod.2x.posTdcTime", p2X_posTdcTime);
+  T->SetBranchAddress("P.hod.2y.posTdcTime", p2Y_posTdcTime);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  // "Good" hodoscope hits
+  // Hodoscope corrected times (not corrected for TOF to focal plane)
+  T->SetBranchAddress("Ndata.P.hod.1x.GoodPaddle", &p1X_nGoodHodoHits);
+  T->SetBranchAddress("Ndata.P.hod.1y.GoodPaddle", &p1Y_nGoodHodoHits);
+  T->SetBranchAddress("Ndata.P.hod.2x.GoodPaddle", &p2X_nGoodHodoHits);
+  T->SetBranchAddress("Ndata.P.hod.2y.GoodPaddle", &p2Y_nGoodHodoHits);
+  T->SetBranchAddress("P.hod.1x.GoodPaddle", p1X_goodPaddle);
+  T->SetBranchAddress("P.hod.1y.GoodPaddle", p1Y_goodPaddle);
+  T->SetBranchAddress("P.hod.2x.GoodPaddle", p2X_goodPaddle);
+  T->SetBranchAddress("P.hod.2y.GoodPaddle", p2Y_goodPaddle);
+  T->SetBranchAddress("P.hod.1x.GoodNegTdcTimeCorr", p1X_goodNegTdcTimeCorr);
+  T->SetBranchAddress("P.hod.1y.GoodNegTdcTimeCorr", p1Y_goodNegTdcTimeCorr);
+  T->SetBranchAddress("P.hod.2x.GoodNegTdcTimeCorr", p2X_goodNegTdcTimeCorr);
+  T->SetBranchAddress("P.hod.2y.GoodNegTdcTimeCorr", p2Y_goodNegTdcTimeCorr);
+  T->SetBranchAddress("P.hod.1x.GoodPosTdcTimeCorr", p1X_goodPosTdcTimeCorr);
+  T->SetBranchAddress("P.hod.1y.GoodPosTdcTimeCorr", p1Y_goodPosTdcTimeCorr);
+  T->SetBranchAddress("P.hod.2x.GoodPosTdcTimeCorr", p2X_goodPosTdcTimeCorr);
+  T->SetBranchAddress("P.hod.2y.GoodPosTdcTimeCorr", p2Y_goodPosTdcTimeCorr);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  T->SetBranchAddress("Ndata.P.aero.negAdcCounter", &paero_negHits);
+  T->SetBranchAddress("Ndata.P.aero.posAdcCounter", &paero_posHits);
+  T->SetBranchAddress("P.aero.negAdcCounter", paero_negPmt);
+  T->SetBranchAddress("P.aero.posAdcCounter", paero_posPmt);
+  T->SetBranchAddress("P.aero.negAdcPulseTimeRaw", paero_negPulseTime);
+  T->SetBranchAddress("P.aero.posAdcPulseTimeRaw", paero_posPulseTime);
+  T->SetBranchAddress("P.aero.negAdcPulseInt", paero_negPulseInt);
+  T->SetBranchAddress("P.aero.posAdcPulseInt", paero_posPulseInt);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  T->SetBranchAddress("Ndata.P.cal.pr.negAdcCounter", &ppshwr_negHits);
+  T->SetBranchAddress("Ndata.P.cal.pr.posAdcCounter", &ppshwr_posHits);
+  T->SetBranchAddress("P.cal.pr.negAdcCounter", ppshwr_negPmt);
+  T->SetBranchAddress("P.cal.pr.posAdcCounter", ppshwr_posPmt);
+  T->SetBranchAddress("P.cal.pr.negAdcPulseTimeRaw", ppshwr_negPulseTime);
+  T->SetBranchAddress("P.cal.pr.posAdcPulseTimeRaw", ppshwr_posPulseTime);
+  T->SetBranchAddress("P.cal.pr.negAdcPulseInt", ppshwr_negPulseInt);
+  T->SetBranchAddress("P.cal.pr.posAdcPulseInt", ppshwr_posPulseInt);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  T->SetBranchAddress("Ndata.P.cal.fly.adcCounter", &pshwr_hits);
+  T->SetBranchAddress("P.cal.fly.adcCounter", pshwr_pmt);
+  T->SetBranchAddress("P.cal.fly.adcPulseTimeRaw", pshwr_pulseTime);
+  T->SetBranchAddress("P.cal.fly.adcPulseInt", pshwr_pulseInt);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  T->SetBranchAddress("Ndata.P.hgcer.adcCounter", &phgc_hits);
+  T->SetBranchAddress("P.hgcer.adcCounter", phgc_pmt);
+  T->SetBranchAddress("P.hgcer.adcPulseTimeRaw", phgc_pulseTime);
+  T->SetBranchAddress("P.hgcer.adcPulseInt", phgc_pulseInt);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  T->SetBranchAddress("Ndata.P.ngcer.adcCounter", &pngc_hits);
+  T->SetBranchAddress("P.ngcer.adcCounter", pngc_pmt);
+  T->SetBranchAddress("P.ngcer.adcPulseTimeRaw", pngc_pulseTime);
+  T->SetBranchAddress("P.ngcer.adcPulseInt", pngc_pulseInt);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  T->SetBranchAddress("Ndata.P.tr.p", &ntracks);
+  T->SetBranchAddress("P.tr.p", trk_pmag);
+
+  // =:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:
+
+  // Create histos
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h_p1X_tdc = new TH1F("h_p1X_tdc", "S1X Coincidence Time; TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  h_p1Y_tdc = new TH1F("h_p1Y_tdc", "S1Y Coincidence Time; TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  h_p2X_tdc = new TH1F("h_p2X_tdc", "S2X Coincidence Time; TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  h_p2Y_tdc = new TH1F("h_p2Y_tdc", "S2Y Coincidence Time; TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  h_p1T_tdc = new TH1F("h_p1T_tdc", "S1X/S1Y Coincidence Time; TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  h_p2T_tdc = new TH1F("h_p2T_tdc", "S2X/S2Y Coincidence Time; TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  h_pT1_tdc = new TH1F("h_pT1_tdc", "Hodoscope Trigger (Slot 20 Channel 15); TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  h_pT2_tdc = new TH1F("h_pT2_tdc", "Hodoscope Trigger (Slot 19 Channel 31); TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  h_pT3_tdc = new TH1F("h_pT3_tdc", "Hodoscope Trigger (Slot 19 Channel 38); TDC Time (ns); Counts / 1 ns", 300, 0, 300);
+  for (UInt_t iref = 0; iref < ndcRefTimes; iref++)
+    h_pDCREF_tdc[iref] = new TH1F(Form("h_pDCREF%d_tdc", iref+1), Form("DC Reference Time %d; TDC Time (ns); Counts / 1 ns", iref+1), 200, 400, 600);
+  h_p1XmpT2_tdc = new TH1F("h_p1XmpT2_tdc", "Hodoscope Trigger (Slot 19 Channel 31) - S1X; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p1YmpT2_tdc = new TH1F("h_p1YmpT2_tdc", "Hodoscope Trigger (Slot 19 Channel 31) - S1Y; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p2XmpT2_tdc = new TH1F("h_p2XmpT2_tdc", "Hodoscope Trigger (Slot 19 Channel 31) - S2X; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p2YmpT2_tdc = new TH1F("h_p2YmpT2_tdc", "Hodoscope Trigger (Slot 19 Channel 31) - S2Y; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p1TmpT2_tdc = new TH1F("h_p1TmpT2_tdc", "Hodoscope Trigger (Slot 19 Channel 31) - S1; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p2TmpT2_tdc = new TH1F("h_p2TmpT2_tdc", "Hodoscope Trigger (Slot 19 Channel 31) - S2; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p1XmpT3_tdc = new TH1F("h_p1XmpT3_tdc", "Hodoscope Trigger (Slot 19 Channel 38) - S1X; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p1YmpT3_tdc = new TH1F("h_p1YmpT3_tdc", "Hodoscope Trigger (Slot 19 Channel 38) - S1Y; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p2XmpT3_tdc = new TH1F("h_p2XmpT3_tdc", "Hodoscope Trigger (Slot 19 Channel 38) - S2X; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p2YmpT3_tdc = new TH1F("h_p2YmpT3_tdc", "Hodoscope Trigger (Slot 19 Channel 38) - S2Y; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p1TmpT3_tdc = new TH1F("h_p1TmpT3_tdc", "Hodoscope Trigger (Slot 19 Channel 38) - S1; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+  h_p2TmpT3_tdc = new TH1F("h_p2TmpT3_tdc", "Hodoscope Trigger (Slot 19 Channel 38) - S2; TDC Time (ns); Counts / 1 ns", 150, 0, 150);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_p1Xneg_pt_tt_diff = new TH2F("h2_p1Xneg_pt_tt_diff", "S1X- Pulse Time - TDC Time; Pulse Time - TDC Time (ns); Counts / 1 ns", nbars_1x, 0.5, nbars_1x + 0.5, 300, 0, 300);
+  h2_p1Yneg_pt_tt_diff = new TH2F("h2_p1Yneg_pt_tt_diff", "S1Y- Pulse Time - TDC Time; Pulse Time - TDC Time (ns); Counts / 1 ns", nbars_1y, 0.5, nbars_1y + 0.5, 300, 0, 300);
+  h2_p2Xneg_pt_tt_diff = new TH2F("h2_p2Xneg_pt_tt_diff", "S2X- Pulse Time - TDC Time; Pulse Time - TDC Time (ns); Counts / 1 ns", nbars_2x, 0.5, nbars_2x + 0.5, 300, 0, 300);
+  h2_p2Yneg_pt_tt_diff = new TH2F("h2_p2Yneg_pt_tt_diff", "S2Y- Pulse Time - TDC Time; Pulse Time - TDC Time (ns); Counts / 1 ns", nbars_2y, 0.5, nbars_2y + 0.5, 300, 0, 300);
+  h2_p1Xpos_pt_tt_diff = new TH2F("h2_p1Xpos_pt_tt_diff", "S1X- Pulse Time - TDC Time; Pulse Time - TDC Time (ns); Counts / 1 ns", nbars_1x, 0.5, nbars_1x + 0.5, 300, 0, 300);
+  h2_p1Ypos_pt_tt_diff = new TH2F("h2_p1Ypos_pt_tt_diff", "S1Y- Pulse Time - TDC Time; Pulse Time - TDC Time (ns); Counts / 1 ns", nbars_1y, 0.5, nbars_1y + 0.5, 300, 0, 300);
+  h2_p2Xpos_pt_tt_diff = new TH2F("h2_p2Xpos_pt_tt_diff", "S2X- Pulse Time - TDC Time; Pulse Time - TDC Time (ns); Counts / 1 ns", nbars_2x, 0.5, nbars_2x + 0.5, 300, 0, 300);
+  h2_p2Ypos_pt_tt_diff = new TH2F("h2_p2Ypos_pt_tt_diff", "S2Y- Pulse Time - TDC Time; Pulse Time - TDC Time (ns); Counts / 1 ns", nbars_2y, 0.5, nbars_2y + 0.5, 300, 0, 300);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h_p1X_fpTime = new TH1F("h_p1X_fpTime", "S1X Focal Plane Time; TDC Time (ns); Counts / 1ns", 100, 0, 100);
+  h_p1Y_fpTime = new TH1F("h_p1Y_fpTime", "S1Y Focal Plane Time; TDC Time (ns); Counts / 1ns", 100, 0, 100);
+  h_p2X_fpTime = new TH1F("h_p2X_fpTime", "S2X Focal Plane Time; TDC Time (ns); Counts / 1ns", 100, 0, 100);
+  h_p2Y_fpTime = new TH1F("h_p2Y_fpTime", "S2Y Focal Plane Time; TDC Time (ns); Counts / 1ns", 100, 0, 100);
+
+  h_p1X_plTime = new TH1F("h_p1X_plTime", "S1X Plane Time; TDC Time (ns); Counts / 1ns", 120, -20, 100);
+  h_p1Y_plTime = new TH1F("h_p1Y_plTime", "S1Y Plane Time; TDC Time (ns); Counts / 1ns", 120, -20, 100);
+  h_p2X_plTime = new TH1F("h_p2X_plTime", "S2X Plane Time; TDC Time (ns); Counts / 1ns", 120, -20, 100);
+  h_p2Y_plTime = new TH1F("h_p2Y_plTime", "S2Y Plane Time; TDC Time (ns); Counts / 1ns", 120, -20, 100);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_p1X_negTdcCorr = new TH2F("h2_p1X_negTdcCorr", "S1X- Corrected TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_1x, 0.5, nbars_1x + 0.5, 200, -100, 100);
+  h2_p1Y_negTdcCorr = new TH2F("h2_p1Y_negTdcCorr", "S1Y- Corrected TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_1y, 0.5, nbars_1y + 0.5, 200, -100, 100);
+  h2_p2X_negTdcCorr = new TH2F("h2_p2X_negTdcCorr", "S2X- Corrected TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_2x, 0.5, nbars_2x + 0.5, 200, -100, 100);
+  h2_p2Y_negTdcCorr = new TH2F("h2_p2Y_negTdcCorr", "S2Y- Corrected TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_2y, 0.5, nbars_2y + 0.5, 200, -100, 100);
+  h2_p1X_posTdcCorr = new TH2F("h2_p1X_posTdcCorr", "S1X+ Corrected TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_1x, 0.5, nbars_1x + 0.5, 200, -100, 100);
+  h2_p1Y_posTdcCorr = new TH2F("h2_p1Y_posTdcCorr", "S1Y+ Corrected TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_1y, 0.5, nbars_1y + 0.5, 200, -100, 100);
+  h2_p2X_posTdcCorr = new TH2F("h2_p2X_posTdcCorr", "S2X+ Corrected TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_2x, 0.5, nbars_2x + 0.5, 200, -100, 100);
+  h2_p2Y_posTdcCorr = new TH2F("h2_p2Y_posTdcCorr", "S2Y+ Corrected TDC Time vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_2y, 0.5, nbars_2y + 0.5, 200, -100, 100);
+  h2_p1X_tdcCorrDiff = new TH2F("h2_p1X_tdcCorrDiff", "S1X-/S1X+ Corrected TDC Time Difference vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_1x, 0.5, nbars_1x + 0.5, 100, -50, 50);
+  h2_p1Y_tdcCorrDiff = new TH2F("h2_p1Y_tdcCorrDiff", "S1Y-/S1Y+ Corrected TDC Time Difference vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_1y, 0.5, nbars_1y + 0.5, 100, -50, 50);
+  h2_p2X_tdcCorrDiff = new TH2F("h2_p2X_tdcCorrDiff", "S2X-/S2X+ Corrected TDC Time Difference vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_2x, 0.5, nbars_2x + 0.5, 100, -50, 50);
+  h2_p2Y_tdcCorrDiff = new TH2F("h2_p2Y_tdcCorrDiff", "S2Y-/S2Y+ Corrected TDC Time Difference vs. Paddle Number; Paddle Number; TDC Time (ns)", nbars_2y, 0.5, nbars_2y + 0.5, 100, -50, 50);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_paero_negPulseTime_pT1_diff = new TH2F("h2_paero_negPulseTime_pT1_diff", "SHMS Negative Aerogel ADC Pulse Time - T1; PMT Number; ADC Pulse Time - Trigger 1 Time (ns)", nneg_aero_pmts, 0.5, nneg_aero_pmts + 0.5, 300, -300, 0);
+  h2_paero_negPulseTime_pT2_diff = new TH2F("h2_paero_negPulseTime_pT2_diff", "SHMS Negative Aerogel ADC Pulse Time - T2; PMT Number; ADC Pulse Time - Trigger 2 Time (ns)", nneg_aero_pmts, 0.5, nneg_aero_pmts + 0.5, 300, -300, 0);
+  h2_paero_negPulseTime_pT3_diff = new TH2F("h2_paero_negPulseTime_pT3_diff", "SHMS Negative Aerogel ADC Pulse Time - T3; PMT Number; ADC Pulse Time - Trigger 3 Time (ns)", nneg_aero_pmts, 0.5, nneg_aero_pmts + 0.5, 300, -300, 0);
+  h2_paero_posPulseTime_pT1_diff = new TH2F("h2_paero_posPulseTime_pT1_diff", "SHMS Positive Aerogel ADC Pulse Time - T1; PMT Number; ADC Pulse Time - Trigger 1 Time (ns)", npos_aero_pmts, 0.5, npos_aero_pmts + 0.5, 300, -300, 0);
+  h2_paero_posPulseTime_pT2_diff = new TH2F("h2_paero_posPulseTime_pT2_diff", "SHMS Positive Aerogel ADC Pulse Time - T2; PMT Number; ADC Pulse Time - Trigger 2 Time (ns)", npos_aero_pmts, 0.5, npos_aero_pmts + 0.5, 300, -300, 0);
+  h2_paero_posPulseTime_pT3_diff = new TH2F("h2_paero_posPulseTime_pT3_diff", "SHMS Positive Aerogel ADC Pulse Time - T3; PMT Number; ADC Pulse Time - Trigger 3 Time (ns)", npos_aero_pmts, 0.5, npos_aero_pmts + 0.5, 300, -300, 0);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_ppshwr_negPulseTime_pT1_diff = new TH2F("h2_ppshwr_negPulseTime_pT1_diff", "SHMS Negative Pre Shower ADC Pulse Time - T1; PMT Number; ADC Pulse Time - Trigger 1 Time (ns)", nneg_pshwr_blks, 0.5, nneg_pshwr_blks + 0.5, 300, -300, 0);
+  h2_ppshwr_negPulseTime_pT2_diff = new TH2F("h2_ppshwr_negPulseTime_pT2_diff", "SHMS Negative Pre Shower ADC Pulse Time - T2; PMT Number; ADC Pulse Time - Trigger 2 Time (ns)", nneg_pshwr_blks, 0.5, nneg_pshwr_blks + 0.5, 300, -300, 0);
+  h2_ppshwr_negPulseTime_pT3_diff = new TH2F("h2_ppshwr_negPulseTime_pT3_diff", "SHMS Negative Pre Shower ADC Pulse Time - T3; PMT Number; ADC Pulse Time - Trigger 3 Time (ns)", nneg_pshwr_blks, 0.5, nneg_pshwr_blks + 0.5, 300, -300, 0);
+  h2_ppshwr_posPulseTime_pT1_diff = new TH2F("h2_ppshwr_posPulseTime_pT1_diff", "SHMS Positive Pre Shower ADC Pulse Time - T1; PMT Number; ADC Pulse Time - Trigger 1 Time (ns)", npos_pshwr_blks, 0.5, npos_pshwr_blks + 0.5, 300, -300, 0);
+  h2_ppshwr_posPulseTime_pT2_diff = new TH2F("h2_ppshwr_posPulseTime_pT2_diff", "SHMS Positive Pre Shower ADC Pulse Time - T2; PMT Number; ADC Pulse Time - Trigger 2 Time (ns)", npos_pshwr_blks, 0.5, npos_pshwr_blks + 0.5, 300, -300, 0);
+  h2_ppshwr_posPulseTime_pT3_diff = new TH2F("h2_ppshwr_posPulseTime_pT3_diff", "SHMS Positive Pre Shower ADC Pulse Time - T3; PMT Number; ADC Pulse Time - Trigger 3 Time (ns)", npos_pshwr_blks, 0.5, npos_pshwr_blks + 0.5, 300, -300, 0);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_pshwr_pulseTime_pT1_diff = new TH2F("h2_pshwr_pulseTime_pT1_diff", "SHMS Shower ADC Pulse Time - T1; PMT Number; ADC Pulse Time - Trigger 1 Time (ns)", nshwr_blks, 0.5, nshwr_blks + 0.5, 300, -300, 0);
+  h2_pshwr_pulseTime_pT2_diff = new TH2F("h2_pshwr_pulseTime_pT2_diff", "SHMS Shower ADC Pulse Time - T2; PMT Number; ADC Pulse Time - Trigger 2 Time (ns)", nshwr_blks, 0.5, nshwr_blks + 0.5, 300, -300, 0);
+  h2_pshwr_pulseTime_pT3_diff = new TH2F("h2_pshwr_pulseTime_pT3_diff", "SHMS Shower ADC Pulse Time - T3; PMT Number; ADC Pulse Time - Trigger 3 Time (ns)", nshwr_blks, 0.5, nshwr_blks + 0.5, 300, -300, 0);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_phgc_pulseTime_pT1_diff = new TH2F("h2_phgc_pulseTime_pT1_diff", "SHMS Heavy Gas Cherenkov ADC Pulse Time - T1; PMT Number; ADC Pulse Time - Trigger 1 Time (ns)", nhgc_pmts, 0.5, nhgc_pmts + 0.5, 300, -300, 0);
+  h2_phgc_pulseTime_pT2_diff = new TH2F("h2_phgc_pulseTime_pT2_diff", "SHMS Heavy Gas Cherenkov ADC Pulse Time - T2; PMT Number; ADC Pulse Time - Trigger 2 Time (ns)", nhgc_pmts, 0.5, nhgc_pmts + 0.5, 300, -300, 0);
+  h2_phgc_pulseTime_pT3_diff = new TH2F("h2_phgc_pulseTime_pT3_diff", "SHMS Heavy Gas Cherenkov ADC Pulse Time - T3; PMT Number; ADC Pulse Time - Trigger 3 Time (ns)", nhgc_pmts, 0.5, nhgc_pmts + 0.5, 300, -300, 0);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_pngc_pulseTime_pT1_diff = new TH2F("h2_pngc_pulseTime_pT1_diff", "SHMS Noble Gas Cherenkov ADC Pulse Time - T1; PMT Number; ADC Pulse Time - Trigger 1 Time (ns)", nngc_pmts, 0.5, nngc_pmts + 0.5, 300, -300, 0);
+  h2_pngc_pulseTime_pT2_diff = new TH2F("h2_pngc_pulseTime_pT2_diff", "SHMS Noble Gas Cherenkov ADC Pulse Time - T2; PMT Number; ADC Pulse Time - Trigger 2 Time (ns)", nngc_pmts, 0.5, nngc_pmts + 0.5, 300, -300, 0);
+  h2_pngc_pulseTime_pT3_diff = new TH2F("h2_pngc_pulseTime_pT3_diff", "SHMS Noble Gas Cherenkov ADC Pulse Time - T3; PMT Number; ADC Pulse Time - Trigger 3 Time (ns)", nngc_pmts, 0.5, nngc_pmts + 0.5, 300, -300, 0);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_pshwr_vs_phgcer = new TH2F ("h2_pshwr_vs_phgcer", "SHMS Shower vs. Heavy Gas Cherenkov; Number of HGC Photoelectrons / 1 Photoelectron; Shower Energy / 1 MeV", 500, 0, 500, 4000, 0, 4);
+  h2_pshwr_vs_pngcer = new TH2F ("h2_pshwr_vs_pngcer", "SHMS Shower vs. Noble Gas Cherenkov; Number of NGC Photoelectrons / 1 Photoelectron; Shower Energy / 1 MeV", 500, 0, 500, 4000, 0, 4);
+  h2_pshwr_vs_ppshwr = new TH2F ("h2_pshwr_vs_ppshwr", "SHMS Shower vs. Pre-Shower; Pre-Shower Energy / 1 MeV; Shower Energy / 1 MeV", 4000, 0, 4, 4000, 0, 4);
+  h_paero_sum = new TH1F ("h_paero_sum", "SHMS Number of Aerogrel Photoelectrons; Number of Aerogel Photoelectrons; Counts / 1 Photoelectron", 500, 0, 500);
+  h_ppshwr_sum = new TH1F ("h_ppshwr_sum", "SHMS Pre-Shower Energy; Pre-Shower Energy; Counts / 10 MeV", 4000, 0, 4);
+  h_pshwr_sum = new TH1F ("h_pshwr_sum", "SHMS Shower Energy; Shower Energy; Counts / 10 MeV", 4000, 0, 4);
+  h_ptotshwr_sum = new TH1F ("h_ptotshwr_sum", "SHMS Total Shower Energy; Total Shower Energy; Counts / 10 MeV", 1200, 0, 12);
+  h_phgc_sum = new TH1F ("h_phgc_sum", "SHMS Number of HGC Photoelectrons; Number of HGC Photoelectrons; Counts / 1 Photoelectron", 500, 0, 500);
+  h_pngc_sum = new TH1F ("h_pngc_sum", "SHMS Number of NGC Photoelectrons; Number of NGC Photoelectrons; Counts / 1 Photoelectron", 500, 0, 500);
+
+  // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//
+
+  h2_EdivP_vs_P = new TH2F ("h2_EdivP_vs_P", "SHMS E/p vs. p; p (geV); E/p", 600, 0, 6, 100, 0, 1);
+
+  // =:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:
+
+  // Loop of entries in tree
+  for(UInt_t ievent = 0; ievent < nentries; ievent++) {
+
+    T->GetEntry(ievent);
+
+    // cout << "========================" << endl;
+    // cout << "Event Number = " << ievent << endl;
+    // cout << "========================" << endl;
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    // Fill "good" hit histos
+    for (UInt_t igoodhit = 0; igoodhit < p1X_nGoodHodoHits; igoodhit++) {
+      h2_p1X_negTdcCorr->Fill(p1X_goodPaddle[igoodhit], p1X_goodNegTdcTimeCorr[igoodhit]);
+      h2_p1X_posTdcCorr->Fill(p1X_goodPaddle[igoodhit], p1X_goodPosTdcTimeCorr[igoodhit]);
+      h2_p1X_tdcCorrDiff->Fill(p1X_goodPaddle[igoodhit], p1X_goodPosTdcTimeCorr[igoodhit] - p1X_goodNegTdcTimeCorr[igoodhit]);
+      if (TMath::Abs(p1X_goodPosTdcTimeCorr[igoodhit] - p1X_goodNegTdcTimeCorr[igoodhit]) > 0.1) continue;
+      h_p1X_plTime->Fill(p1X_goodPosTdcTimeCorr[igoodhit]);
+    }
+    for (UInt_t igoodhit = 0; igoodhit < p1Y_nGoodHodoHits; igoodhit++) {
+      h2_p1Y_negTdcCorr->Fill(p1Y_goodPaddle[igoodhit], p1Y_goodNegTdcTimeCorr[igoodhit]);
+      h2_p1Y_posTdcCorr->Fill(p1Y_goodPaddle[igoodhit], p1Y_goodPosTdcTimeCorr[igoodhit]);
+      h2_p1Y_tdcCorrDiff->Fill(p1Y_goodPaddle[igoodhit], p1Y_goodPosTdcTimeCorr[igoodhit] - p1Y_goodNegTdcTimeCorr[igoodhit]);
+      if (TMath::Abs(p1Y_goodPosTdcTimeCorr[igoodhit] - p1Y_goodNegTdcTimeCorr[igoodhit]) > 0.1) continue;
+      h_p1Y_plTime->Fill(p1Y_goodPosTdcTimeCorr[igoodhit]);
+    }
+    for (UInt_t igoodhit = 0; igoodhit < p2X_nGoodHodoHits; igoodhit++) {
+      h2_p2X_negTdcCorr->Fill(p2X_goodPaddle[igoodhit], p2X_goodNegTdcTimeCorr[igoodhit]);
+      h2_p2X_posTdcCorr->Fill(p2X_goodPaddle[igoodhit], p2X_goodPosTdcTimeCorr[igoodhit]);
+      h2_p2X_tdcCorrDiff->Fill(p2X_goodPaddle[igoodhit], p2X_goodPosTdcTimeCorr[igoodhit] - p2X_goodNegTdcTimeCorr[igoodhit]);
+      if (TMath::Abs(p2X_goodPosTdcTimeCorr[igoodhit] - p2X_goodNegTdcTimeCorr[igoodhit]) > 0.1) continue;
+      h_p2X_plTime->Fill(p2X_goodPosTdcTimeCorr[igoodhit]);
+    }
+    for (UInt_t igoodhit = 0; igoodhit < p2Y_nGoodHodoHits; igoodhit++) {
+      h2_p2Y_negTdcCorr->Fill(p2Y_goodPaddle[igoodhit], p2Y_goodNegTdcTimeCorr[igoodhit]);
+      h2_p2Y_posTdcCorr->Fill(p2Y_goodPaddle[igoodhit], p2Y_goodPosTdcTimeCorr[igoodhit]);
+      h2_p2Y_tdcCorrDiff->Fill(p2Y_goodPaddle[igoodhit], p2Y_goodPosTdcTimeCorr[igoodhit] - p2Y_goodNegTdcTimeCorr[igoodhit]);
+      if (TMath::Abs(p2Y_goodPosTdcTimeCorr[igoodhit] - p2Y_goodNegTdcTimeCorr[igoodhit]) > 0.1) continue;
+      h_p2Y_plTime->Fill(p2Y_goodPosTdcTimeCorr[igoodhit]);
+    }
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    // Fill pulse/tdc time difference histos
+
+    // cout << "Num of ADC Hits = " << p1X_negAdcHits << endl;
+    // cout << "ADC Paddle Number = " << p1X_negAdcPaddle[iadchit] << endl;
+    // cout << "Num of TDC Hits = " << p1X_negTdcHits << endl;
+    // cout << "TDC Paddle Number = " << p1X_negTdcPaddle[itdchit] << endl;
+
+    for (UInt_t iadchit = 0; iadchit < p1X_negAdcHits; iadchit++) {
+      for (UInt_t itdchit = 0; itdchit < p1X_negTdcHits; itdchit++) {
+	if (p1X_negAdcPaddle[iadchit] != p1X_negTdcPaddle[itdchit]) continue;
+	h2_p1Xneg_pt_tt_diff->Fill(p1X_negAdcPaddle[iadchit], p1X_negAdcPulseTime[iadchit]*clk2adc - p1X_negTdcTime[itdchit]*clk2tdc);
+      }
+    }
+    for (UInt_t iadchit = 0; iadchit < p1Y_negAdcHits; iadchit++) {
+      for (UInt_t itdchit = 0; itdchit < p1Y_negTdcHits; itdchit++) {
+	if (p1Y_negAdcPaddle[iadchit] != p1Y_negTdcPaddle[itdchit]) continue;
+	h2_p1Yneg_pt_tt_diff->Fill(p1Y_negAdcPaddle[iadchit], p1Y_negAdcPulseTime[iadchit]*clk2adc - p1Y_negTdcTime[itdchit]*clk2tdc);
+      }
+    }
+    for (UInt_t iadchit = 0; iadchit < p2X_negAdcHits; iadchit++) {
+      for (UInt_t itdchit = 0; itdchit < p2X_negTdcHits; itdchit++) {
+	if (p2X_negAdcPaddle[iadchit] != p2X_negTdcPaddle[itdchit]) continue;
+	h2_p2Xneg_pt_tt_diff->Fill(p2X_negAdcPaddle[iadchit], p2X_negAdcPulseTime[iadchit]*clk2adc - p2X_negTdcTime[itdchit]*clk2tdc);
+      }
+    }
+    for (UInt_t iadchit = 0; iadchit < p2Y_negAdcHits; iadchit++) {
+      for (UInt_t itdchit = 0; itdchit < p2Y_negTdcHits; itdchit++) {
+	if (p2Y_negAdcPaddle[iadchit] != p2Y_negTdcPaddle[itdchit]) continue;
+	h2_p2Yneg_pt_tt_diff->Fill(p2Y_negAdcPaddle[iadchit], p2Y_negAdcPulseTime[iadchit]*clk2adc - p2Y_negTdcTime[itdchit]*clk2tdc);
+      }
+    }
+    for (UInt_t iadchit = 0; iadchit < p1X_posAdcHits; iadchit++) {
+      for (UInt_t itdchit = 0; itdchit < p1X_posTdcHits; itdchit++) {
+	if (p1X_posAdcPaddle[iadchit] != p1X_posTdcPaddle[itdchit]) continue;
+	h2_p1Xpos_pt_tt_diff->Fill(p1X_posAdcPaddle[iadchit], p1X_posAdcPulseTime[iadchit]*clk2adc - p1X_posTdcTime[itdchit]*clk2tdc);
+      }
+    }
+    for (UInt_t iadchit = 0; iadchit < p1Y_posAdcHits; iadchit++) {
+      for (UInt_t itdchit = 0; itdchit < p1Y_posTdcHits; itdchit++) {
+	if (p1Y_nGoodHodoHits < 1) continue;
+	if (p1Y_posAdcPaddle[iadchit] != p1Y_posTdcPaddle[itdchit]) continue;
+	h2_p1Ypos_pt_tt_diff->Fill(p1Y_posAdcPaddle[iadchit], p1Y_posAdcPulseTime[iadchit]*clk2adc - p1Y_posTdcTime[itdchit]*clk2tdc);
+      }
+    }
+    for (UInt_t iadchit = 0; iadchit < p2X_posAdcHits; iadchit++) {
+      for (UInt_t itdchit = 0; itdchit < p2X_posTdcHits; itdchit++) {
+	if (p2X_posAdcPaddle[iadchit] != p2X_posTdcPaddle[itdchit]) continue;
+	h2_p2Xpos_pt_tt_diff->Fill(p2X_posAdcPaddle[iadchit], p2X_posAdcPulseTime[iadchit]*clk2adc - p2X_posTdcTime[itdchit]*clk2tdc);
+      }
+    }
+    for (UInt_t iadchit = 0; iadchit < p2Y_posAdcHits; iadchit++) {
+      for (UInt_t itdchit = 0; itdchit < p2Y_posTdcHits; itdchit++) {
+	if (p2Y_posAdcPaddle[iadchit] != p2Y_posTdcPaddle[itdchit]) continue;
+	h2_p2Ypos_pt_tt_diff->Fill(p2Y_posAdcPaddle[iadchit], p2Y_posAdcPulseTime[iadchit]*clk2adc - p2Y_posTdcTime[itdchit]*clk2tdc);
+      }
+    }
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    // Fill trigger time histos
+    if (p1X_tdcTime != 0.0) h_p1X_tdc->Fill(p1X_tdcTime*clk2tdc);
+    if (p1Y_tdcTime != 0.0) h_p1Y_tdc->Fill(p1Y_tdcTime*clk2tdc);
+    if (p2X_tdcTime != 0.0) h_p2X_tdc->Fill(p2X_tdcTime*clk2tdc);
+    if (p2Y_tdcTime != 0.0) h_p2Y_tdc->Fill(p2Y_tdcTime*clk2tdc);
+    if (p1T_tdcTime != 0.0) h_p1T_tdc->Fill(p1T_tdcTime*clk2tdc);
+    if (p2T_tdcTime != 0.0) h_p2T_tdc->Fill(p2T_tdcTime*clk2tdc);
+
+    h_pT1_tdc->Fill(pT1_tdcTime*clk2tdc);
+    h_pT2_tdc->Fill(pT2_tdcTime*clk2tdc);
+    h_pT3_tdc->Fill(pT3_tdcTime*clk2tdc);
+
+    for (UInt_t iref = 0; iref < ndcRefTimes; iref++)
+      h_pDCREF_tdc[iref]->Fill(pDCREF_tdcTime[iref]*clk2tdc);
+
+    if (p1X_tdcTime != 0.0) h_p1XmpT2_tdc->Fill((pT2_tdcTime - p1X_tdcTime)*clk2tdc);
+    if (p1Y_tdcTime != 0.0) h_p1YmpT2_tdc->Fill((pT2_tdcTime - p1Y_tdcTime)*clk2tdc);
+    if (p2X_tdcTime != 0.0) h_p2XmpT2_tdc->Fill((pT2_tdcTime - p2X_tdcTime)*clk2tdc);
+    if (p2Y_tdcTime != 0.0) h_p2YmpT2_tdc->Fill((pT2_tdcTime - p2Y_tdcTime)*clk2tdc);
+    if (p1T_tdcTime != 0.0) h_p1TmpT2_tdc->Fill((pT2_tdcTime - p1T_tdcTime)*clk2tdc);
+    if (p2T_tdcTime != 0.0) h_p2TmpT2_tdc->Fill((pT2_tdcTime - p2T_tdcTime)*clk2tdc);
+
+    if (p1X_tdcTime != 0.0) h_p1XmpT3_tdc->Fill((pT3_tdcTime - p1X_tdcTime)*clk2tdc);
+    if (p1Y_tdcTime != 0.0) h_p1YmpT3_tdc->Fill((pT3_tdcTime - p1Y_tdcTime)*clk2tdc);
+    if (p2X_tdcTime != 0.0) h_p2XmpT3_tdc->Fill((pT3_tdcTime - p2X_tdcTime)*clk2tdc);
+    if (p2Y_tdcTime != 0.0) h_p2YmpT3_tdc->Fill((pT3_tdcTime - p2Y_tdcTime)*clk2tdc);
+    if (p1T_tdcTime != 0.0) h_p1TmpT3_tdc->Fill((pT3_tdcTime - p1T_tdcTime)*clk2tdc);
+    if (p2T_tdcTime != 0.0) h_p2TmpT3_tdc->Fill((pT3_tdcTime - p2T_tdcTime)*clk2tdc);
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    h_p1X_fpTime->Fill(p1X_fpTime); h_p1Y_fpTime->Fill(p1Y_fpTime);
+    h_p2X_fpTime->Fill(p2X_fpTime); h_p2Y_fpTime->Fill(p2Y_fpTime);
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    Double_t paero_sum = 0.0;
+    for (UInt_t iaerohit = 0; iaerohit < paero_negHits; iaerohit++) {
+      h2_paero_negPulseTime_pT1_diff->Fill(paero_negPmt[iaerohit], paero_negPulseTime[iaerohit]*clk2adc - pT1_tdcTime*clk2tdc);
+      h2_paero_negPulseTime_pT2_diff->Fill(paero_negPmt[iaerohit], paero_negPulseTime[iaerohit]*clk2adc - pT2_tdcTime*clk2tdc);
+      h2_paero_negPulseTime_pT3_diff->Fill(paero_negPmt[iaerohit], paero_negPulseTime[iaerohit]*clk2adc - pT3_tdcTime*clk2tdc);
+      paero_sum += paero_negPulseInt[iaerohit]*aero_adc2npe;
+    }
+    for (UInt_t iaerohit = 0; iaerohit < paero_posHits; iaerohit++) {
+      h2_paero_posPulseTime_pT1_diff->Fill(paero_posPmt[iaerohit], paero_posPulseTime[iaerohit]*clk2adc - pT1_tdcTime*clk2tdc);
+      h2_paero_posPulseTime_pT2_diff->Fill(paero_posPmt[iaerohit], paero_posPulseTime[iaerohit]*clk2adc - pT2_tdcTime*clk2tdc);
+      h2_paero_posPulseTime_pT3_diff->Fill(paero_posPmt[iaerohit], paero_posPulseTime[iaerohit]*clk2adc - pT3_tdcTime*clk2tdc);
+      paero_sum += paero_posPulseInt[iaerohit]*aero_adc2npe;
+    }
+    if (paero_sum != 0.0) h_paero_sum->Fill(paero_sum);
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    Double_t ppshwr_sum = 0.0;
+    for (UInt_t ipshwrhit = 0; ipshwrhit < ppshwr_negHits; ipshwrhit++) {
+      h2_ppshwr_negPulseTime_pT1_diff->Fill(ppshwr_negPmt[ipshwrhit], ppshwr_negPulseTime[ipshwrhit]*clk2adc - pT1_tdcTime*clk2tdc);
+      h2_ppshwr_negPulseTime_pT2_diff->Fill(ppshwr_negPmt[ipshwrhit], ppshwr_negPulseTime[ipshwrhit]*clk2adc - pT2_tdcTime*clk2tdc);
+      h2_ppshwr_negPulseTime_pT3_diff->Fill(ppshwr_negPmt[ipshwrhit], ppshwr_negPulseTime[ipshwrhit]*clk2adc - pT3_tdcTime*clk2tdc);
+      ppshwr_sum += ppshwr_negPulseInt[ipshwrhit]*pshwr_adc2GeV;
+    }
+    for (UInt_t ipshwrhit = 0; ipshwrhit < ppshwr_posHits; ipshwrhit++) {
+      h2_ppshwr_posPulseTime_pT1_diff->Fill(ppshwr_posPmt[ipshwrhit], ppshwr_posPulseTime[ipshwrhit]*clk2adc - pT1_tdcTime*clk2tdc);
+      h2_ppshwr_posPulseTime_pT2_diff->Fill(ppshwr_posPmt[ipshwrhit], ppshwr_posPulseTime[ipshwrhit]*clk2adc - pT2_tdcTime*clk2tdc);
+      h2_ppshwr_posPulseTime_pT3_diff->Fill(ppshwr_posPmt[ipshwrhit], ppshwr_posPulseTime[ipshwrhit]*clk2adc - pT3_tdcTime*clk2tdc);
+      ppshwr_sum += ppshwr_posPulseInt[ipshwrhit]*pshwr_adc2GeV;
+    }
+    if (ppshwr_sum != 0.0) h_ppshwr_sum->Fill(ppshwr_sum);
+
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    Double_t pshwr_sum = 0.0;
+    for (UInt_t ishwrhit = 0; ishwrhit < pshwr_hits; ishwrhit++) {
+      h2_pshwr_pulseTime_pT1_diff->Fill(pshwr_pmt[ishwrhit], pshwr_pulseTime[ishwrhit]*clk2adc - pT1_tdcTime*clk2tdc);
+      h2_pshwr_pulseTime_pT2_diff->Fill(pshwr_pmt[ishwrhit], pshwr_pulseTime[ishwrhit]*clk2adc - pT2_tdcTime*clk2tdc);
+      h2_pshwr_pulseTime_pT3_diff->Fill(pshwr_pmt[ishwrhit], pshwr_pulseTime[ishwrhit]*clk2adc - pT3_tdcTime*clk2tdc);
+      pshwr_sum += pshwr_pulseInt[ishwrhit]*shwr_adc2GeV;
+    }
+    if (pshwr_sum != 0.0) h_pshwr_sum->Fill(pshwr_sum);
+    if ((ppshwr_sum + pshwr_sum) != 0.0) h_ptotshwr_sum->Fill(ppshwr_sum + pshwr_sum);
+    if (ppshwr_sum != 0.0 && pshwr_sum != 0.0) {
+      h2_pshwr_vs_ppshwr->Fill(ppshwr_sum, pshwr_sum);   
+    }
+    
+    for (UInt_t itrack = 0; itrack < ntracks; itrack++)
+      if (trk_pmag != 0.0 && ntracks == 1) h2_EdivP_vs_P->Fill(trk_pmag[0], (ppshwr_sum + pshwr_sum)/trk_pmag[0]);
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    Double_t phgc_sum = 0.0;
+    for (UInt_t ihgchit = 0; ihgchit < phgc_hits; ihgchit++) {
+      h2_phgc_pulseTime_pT1_diff->Fill(phgc_pmt[ihgchit], phgc_pulseTime[ihgchit]*clk2adc - pT1_tdcTime*clk2tdc);
+      h2_phgc_pulseTime_pT2_diff->Fill(phgc_pmt[ihgchit], phgc_pulseTime[ihgchit]*clk2adc - pT2_tdcTime*clk2tdc);
+      h2_phgc_pulseTime_pT3_diff->Fill(phgc_pmt[ihgchit], phgc_pulseTime[ihgchit]*clk2adc - pT3_tdcTime*clk2tdc);
+      phgc_sum += phgc_pulseInt[ihgchit]*hgc_adc2npe;
+    }
+    if (phgc_sum != 0.0) h_phgc_sum->Fill(phgc_sum);
+    if (phgc_sum != 0.0 && (ppshwr_sum + pshwr_sum) != 0.0) h2_pshwr_vs_phgcer->Fill(phgc_sum, ppshwr_sum + pshwr_sum);
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    Double_t pngc_sum = 0.0;
+    for (UInt_t ingchit = 0; ingchit < pngc_hits; ingchit++) {
+      h2_pngc_pulseTime_pT1_diff->Fill(pngc_pmt[ingchit], pngc_pulseTime[ingchit]*clk2adc - pT1_tdcTime*clk2tdc);
+      h2_pngc_pulseTime_pT2_diff->Fill(pngc_pmt[ingchit], pngc_pulseTime[ingchit]*clk2adc - pT2_tdcTime*clk2tdc);
+      h2_pngc_pulseTime_pT3_diff->Fill(pngc_pmt[ingchit], pngc_pulseTime[ingchit]*clk2adc - pT3_tdcTime*clk2tdc);
+      pngc_sum += pngc_pulseInt[ingchit]*ngc_adc2npe;
+    }
+    if (pngc_sum != 0.0) h_pngc_sum->Fill(pngc_sum);
+    if (pngc_sum != 0.0 && (ppshwr_sum + pshwr_sum) != 0.0) h2_pshwr_vs_pngcer->Fill(pngc_sum, ppshwr_sum + pshwr_sum);
+
+    // ==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==//==
+
+    if ((ievent)%1000 == 0)
+      cout << "ievent = " << ievent << endl;
+
+  }  // Entries loop
+}  // UserScript function
+
+void kpp_analysis(TString histname) {
+
+  // Grab the histo
+  TH1F *h1d;
+  TH2F *h2d;
+
+  h1d = dynamic_cast <TH1F*> (gDirectory->Get(histname));
+  h2d = dynamic_cast <TH2F*> (gDirectory->Get(histname));
+
+  // Grab histo directly if it does not already exist
+  if(!h1d && !h2d) {
+    UserScript();
+    h1d = (TH1F*) (gDirectory->Get(histname));
+    h2d = (TH2F*) (gDirectory->Get(histname));
+    // Throw error
+    if(!h1d || !h2d) {
+      cout << "User histogram " << histname << " not found" << endl;
+      exit(1);
+    }
+  }
+  //else
+  if (h2d) {
+    h2d->SetStats(0);
+    h2d->Draw("colz");
+  }
+  else {
+    h1d->SetStats(0);
+    h1d->Draw();
+  }
+}  // kpp_analysis function
diff --git a/onlineGUI/Macros/overlay.C b/onlineGUI/Macros/overlay.C
new file mode 100755
index 0000000000000000000000000000000000000000..ac7f038903b18602e4f67416b16dbcb274f6aca1
--- /dev/null
+++ b/onlineGUI/Macros/overlay.C
@@ -0,0 +1,54 @@
+void overlay(TString hist1name, TString hist2name, Bool_t golden=false,TString samestr=""){
+  TH1F* H1;
+  TH1F* H2;
+  
+  H1 = (TH1F*) gDirectory->Get(hist1name);
+  H2 = (TH1F*) gDirectory->Get(hist2name);
+  if (H1 && H2) {
+  if(golden){
+    H1->SetLineColor(30);
+    H1->SetFillColor(30);
+    H1->SetFillStyle(3027);
+    H2->SetLineColor(46);
+    H2->SetFillColor(46);
+    H2->SetFillStyle(3027);
+  } else {
+    H1->SetLineColor(4);
+    H2->SetLineColor(2);
+    H1->SetStats(0);
+    H2->SetStats(0);
+    H1->SetMinimum(0);
+    H2->SetMinimum(0);
+  }
+
+  if(golden){
+    if(!samestr.Contains("sames")) samestr += "sames";
+    H1->Draw(samestr);
+    H2->Draw(samestr);
+  } else {
+    if(!golden && !samestr.Contains("sames")){
+      // pick which hist to draw first:
+      if(H1->GetMaximum() > H2->GetMaximum()){
+	H1->Draw(samestr);
+	if(!samestr.Contains("sames")) samestr += "sames";
+	H2->Draw(samestr);
+      } else {
+	H2->Draw(samestr);
+	if(!samestr.Contains("sames")) samestr += "sames";
+	H1->Draw(samestr);
+      }
+    } else {
+      H1->Draw(samestr);
+      if(!samestr.Contains("sames")) samestr += "sames";
+      H2->Draw(samestr);
+    H2->GetXaxis()->SetTitleOffset(.6);
+    H2->GetXaxis()->SetTitleSize(0.08);
+    H2->GetYaxis()->SetTitleOffset(.6);
+    H2->GetYaxis()->SetTitleSize(0.08);
+    }
+  }
+  } else {
+    if (!H1) cout << " Histogram " << hist1name << " does not exist" << endl;
+    if (!H2) cout << " Histogram " << hist2name << " does not exist" << endl;
+  }
+}
diff --git a/onlineGUI/Macros/rawdraw.C b/onlineGUI/Macros/rawdraw.C
new file mode 100755
index 0000000000000000000000000000000000000000..f05e820f02efe5d8ee8270fbffafc593d0d37022
--- /dev/null
+++ b/onlineGUI/Macros/rawdraw.C
@@ -0,0 +1,265 @@
+// UserScript.C
+//
+// Helper macro to build additional histograms
+
+void UserScript()
+{
+
+  const UInt_t NPLANES  = 4;
+  const UInt_t NSIDES   = 2;
+  const UInt_t MAXBARS  = 16;
+  const UInt_t NSIGNALS = 2;
+  const UInt_t NADCSIGNALS = 2;
+  const UInt_t NTDCSIGNALS = 2;
+
+  const TString SPECTROMETER = "H";
+  const TString DETECTOR = "hod";
+
+  const TString plane_names[NPLANES] = {"1x", "1y", "2x", "2y"};
+  const UInt_t  nbars[NPLANES] = {16, 10, 16, 10};
+  const TString sides[NSIDES] = {"neg", "pos"};
+  const TString signals[NSIGNALS] = {"Adc", "Tdc"};
+  const TString adc_signals[NADCSIGNALS] = {"Ped", "PedRaw"};
+  const TString tdc_signals[NTDCSIGNALS] = {"Time", "TimeRaw"};
+  
+  const Double_t ADC_MIN    = 0.0;
+  const Double_t ADC_MAX    = 25000.0;
+  const Int_t    ADC_NBINS  = 2500;
+  const Double_t TDC_MIN    = -8000.0;
+  const Double_t TDC_MAX    = 8000.0;
+  const Int_t    TDC_NBINS  = 1600;
+
+  Int_t nadchits[NPLANES][NSIDES][NSIGNALS];
+  Int_t ntdchits[NPLANES][NSIDES][NSIGNALS];
+
+  Double_t adc_paddles[NPLANES][NSIDES][NSIGNALS][MAXBARS];
+  Double_t tdc_paddles[NPLANES][NSIDES][NSIGNALS][MAXBARS];
+
+  Double_t ped_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  Double_t pedraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+
+  Double_t tdc_values[NPLANES][NSIDES][NTDCSIGNALS][MAXBARS];
+  Double_t tdcraw_values[NPLANES][NSIDES][NTDCSIGNALS][MAXBARS];
+
+  TH1F* hadc[NPLANES*NSIDES*NADCSIGNALS*MAXBARS];
+  TH1F* htdc[NPLANES*NSIDES*NTDCSIGNALS*MAXBARS];
+
+  Int_t adc_ihit, tdc_ihit;
+
+  TTree *T=(TTree*)gDirectory->Get("T");
+
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+    for(UInt_t iside = 0; iside < NSIDES; iside++) {
+      for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+
+	if(signals[isignal] == "Adc") {  
+	  TString adc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString adc_ndata_name = "Ndata."+adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_ndata_name, &nadchits[ip][iside][isignal]);
+	  TString adc_paddle_name = adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_paddle_name, &adc_paddles[ip][iside][isignal][0]);
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    if (adc_signals[iadcsignal] == "Ped") {
+	      TString pedlist_name = adc_base_name+"Ped";
+	      T->SetBranchAddress(pedlist_name, &ped_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PedRaw") {
+	      TString pedrawlist_name = adc_base_name+"PedRaw";
+	      T->SetBranchAddress(pedrawlist_name, &pedraw_values[ip][iside][iadcsignal][0]);
+	    }
+	  }
+	}
+
+	if(signals[isignal] == "Tdc") {  
+	  TString tdc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString tdc_ndata_name = "Ndata."+tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_ndata_name, &ntdchits[ip][iside][isignal]);
+	  TString tdc_paddle_name = tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_paddle_name, &tdc_paddles[ip][iside][isignal][0]);
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    if (tdc_signals[itdcsignal] == "Time") {
+	      TString tdclist_name = tdc_base_name+"Time";
+	      T->SetBranchAddress(tdclist_name, &tdc_values[ip][iside][itdcsignal][0]);
+	    }
+	    if (tdc_signals[itdcsignal] == "TimeRaw") {
+	      TString tdcrawlist_name = tdc_base_name+"TimeRaw";
+	      T->SetBranchAddress(tdcrawlist_name, &tdcraw_values[ip][iside][itdcsignal][0]);
+	    }
+	  }
+	}
+
+	// Create histograms
+	// ADC and TDC histogram for each 
+	if(signals[isignal] == "Adc") {
+	  UInt_t nadcbins  = ADC_NBINS;
+	  Double_t hadcmin = ADC_MIN;
+	  Double_t hadcmax = ADC_MAX;
+	} 
+	if(signals[isignal] == "Tdc") {
+	  UInt_t ntdcbins  = TDC_NBINS;
+	  Double_t htdcmin = TDC_MIN;
+	  Double_t htdcmax = TDC_MAX;
+	}
+	
+	if(signals[isignal] == "Adc") {
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      UInt_t hadcindex = ip*NSIDES*NADCSIGNALS*MAXBARS
+		+iside*NADCSIGNALS*MAXBARS+iadcsignal*MAXBARS+ibar;
+	      TString iadcbarname = Form("%d",ibar+1);
+	      TString adctitle= "hadc"+plane_names[ip]+iadcbarname+sides[iside]
+		+" "+adc_signals[iadcsignal];
+	      TString adcname="uhadc"+plane_names[ip]+iadcbarname+sides[iside]+
+		adc_signals[iadcsignal];
+	      
+	      hadc[hadcindex]=new TH1F(adcname, adctitle, nadcbins, hadcmin, hadcmax);
+	    }
+	  }
+	}
+
+	if(signals[isignal] == "Tdc") {
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      UInt_t htdcindex = ip*NSIDES*NTDCSIGNALS*MAXBARS
+		+iside*NTDCSIGNALS*MAXBARS+itdcsignal*MAXBARS+ibar;
+	      TString itdcbarname = Form("%d",ibar+1);
+	      TString tdctitle= "htdc"+plane_names[ip]+itdcbarname+sides[iside]
+		+" "+tdc_signals[itdcsignal];
+	      TString tdcname="uhtdc"+plane_names[ip]+itdcbarname+sides[iside]+
+		tdc_signals[itdcsignal];
+	  
+	      htdc[htdcindex]=new TH1F(tdcname, tdctitle, ntdcbins, htdcmin, htdcmax);
+	    }
+	  }
+	}
+	
+      }
+    }
+  }
+
+  // Loop over the events, filling the histograms
+  for(UInt_t iev = 0, N = T->GetEntries(); iev < N; iev++) {
+    T->GetEntry(iev);
+
+    cout << "**************************" << endl;
+    cout << "Event Number = " << iev << endl;
+    cout << "**************************" << endl;
+
+    for(UInt_t ip = 0; ip < NPLANES; ip++){
+      for(UInt_t iside = 0; iside < NSIDES; iside++) {
+	for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+     
+	  if(signals[isignal] == "Adc") {
+	    for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+
+	      UInt_t hadcindex_base = ip*NSIDES*NADCSIGNALS*MAXBARS
+		+iside*NADCSIGNALS*MAXBARS+iadcsignal*MAXBARS;
+
+	      cout << "============= ADC =============" << endl;
+	      cout << "ip = " << ip << ", iside = " << iside << ", iadcsignal = " << iadcsignal << ", hadcindex_base = " << hadcindex_base << endl;
+
+	      cout << "nadchits = " << nadchits[ip][iside][isignal] << endl;
+
+ 	      for(Int_t adc_ihit = 0; adc_ihit < nadchits[ip][iside][isignal]; adc_ihit++) {
+
+		//UInt_t ibar = TMath::Nint(paddles[ip][iside][isignal][adc_ihit]) - 1;
+		UInt_t ibar = TMath::Nint(adc_paddles[ip][iside][isignal][adc_ihit]) - 1;
+
+		cout << "ibar = " << ibar << ", adc_ihit = " << adc_ihit << endl;
+
+		cout << "level 1" << endl;
+			
+		if (adc_signals[iadcsignal] == "Ped") {  
+		  Double_t pedval = ped_values[ip][iside][iadcsignal][adc_ihit];
+		}
+
+		cout << "level 2" << endl;
+
+		if (adc_signals[iadcsignal] == "PedRaw") { 
+		  Double_t pedrawval = pedraw_values[ip][iside][iadcsignal][adc_ihit];
+		}
+		
+		cout << "level 3" << endl;
+
+		// if (hadcindex_base == 0 && ibar == 0) UInt_t hadcindex = 1;
+		// else UInt_t hadcindex = hadcindex_base + ibar;
+
+		UInt_t hadcindex = hadcindex_base + ibar;
+
+		cout << "hadcindex = " << hadcindex << endl;
+
+		if (adc_signals[iadcsignal] == "Ped") {
+		  cout << "pedval = " << pedval << endl;
+		  hadc[hadcindex]->Fill(pedval);
+		}
+		if (adc_signals[iadcsignal] == "PedRaw") {
+		  cout << "pedrawval = " << pedrawval << endl;
+		  hadc[hadcindex]->Fill(pedrawval);
+		}
+
+	      }
+	    }
+	  }
+
+	  if(signals[isignal] == "Tdc") {
+	    for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+
+	      UInt_t htdcindex_base = ip*NSIDES*NTDCSIGNALS*MAXBARS
+		+iside*NTDCSIGNALS*MAXBARS+itdcsignal*MAXBARS;
+
+	      cout << "============= TDC =============" << endl;
+	      cout << "ip = " << ip << ", iside = " << iside << ", itdcsignal = " << itdcsignal << ", htdcindex_base = " << htdcindex_base << endl;
+
+	      cout << "ntdchits = " << ntdchits[ip][iside][isignal] << endl;
+
+	      for(Int_t tdc_ihit = 0; tdc_ihit < ntdchits[ip][iside][isignal]; tdc_ihit++) {
+
+		UInt_t ibar = TMath::Nint(tdc_paddles[ip][iside][isignal][tdc_ihit]) - 1;
+
+		cout << "ibar = " << ibar << endl;
+
+		Double_t tdcval = tdc_values[ip][iside][itdcsignal][tdc_ihit];
+		Double_t tdcrawval = tdcraw_values[ip][iside][itdcsignal][tdc_ihit];
+		UInt_t htdcindex = htdcindex_base + ibar;
+
+		cout << "htdcindex = " << htdcindex << endl;
+
+		if (tdc_signals[itdcsignal] == "Time") {
+		  cout << "Time = " << tdcval << endl;
+		  htdc[htdcindex]->Fill(tdcval);
+		}
+		if (tdc_signals[itdcsignal] == "TimeRaw") {
+		  cout << "RawTime = " << tdcrawval << endl;
+		  htdc[htdcindex]->Fill(tdcrawval);
+		}
+	      }
+	    }
+	  }
+
+	}
+      }
+    }
+  }
+
+  return;
+
+}
+
+void rawdraw(TString histname) {
+
+  TH1F* h;
+
+  h = (TH1F*) gDirectory->Get(histname);
+  if(!h) {
+    UserScript();
+    h = (TH1F*) gDirectory->Get(histname);
+    if(!h) {
+      cout << "User histogram " << histname << " not found" << endl;
+      exit(1);
+    }
+  }
+  h->Draw();
+}
+
diff --git a/onlineGUI/Macros/rawdraw_2d_hhodo.C b/onlineGUI/Macros/rawdraw_2d_hhodo.C
new file mode 100644
index 0000000000000000000000000000000000000000..980b0a4021b15891423e7136ff32b714f11eebda
--- /dev/null
+++ b/onlineGUI/Macros/rawdraw_2d_hhodo.C
@@ -0,0 +1,275 @@
+// UserScript.C
+//
+// Helper macro to build additional histograms
+
+void UserScript()
+{
+
+  const UInt_t NPLANES  = 4;
+  const UInt_t NSIDES   = 2;
+  const UInt_t MAXBARS  = 16;  // FIX ME: Parameter should be 16
+  const UInt_t NSIGNALS = 2;
+  const UInt_t NADCSIGNALS = 7;
+  const UInt_t NTDCSIGNALS = 2;
+  const UInt_t MAXHITS=16*16;
+
+  const TString SPECTROMETER = "H";
+  const TString DETECTOR = "hod";
+
+  const TString plane_names[NPLANES] = {"1x", "1y", "2x", "2y"};
+  const UInt_t  nbars[NPLANES] = {16, 10, 16, 10};
+  const TString sides[NSIDES] = {"neg", "pos"};
+  const TString signals[NSIGNALS] = {"Adc", "Tdc"};
+  const TString adc_signals[NADCSIGNALS] = {"Ped", "PedRaw", "PulseInt", "PulseIntRaw", 
+					    "PulseAmp", "PulseAmpRaw", "PulseTimeRaw"};
+  const TString tdc_signals[NTDCSIGNALS] = {"Time", "TimeRaw"};
+  
+  Double_t adcbit_to_pC = 1.0/(50*4096)*4*1000. ;// 1V/(50 Ohms)/4096*4ns* = .020 pC
+  cout << adcbit_to_pC << endl;
+  Int_t nadchits[NPLANES][NSIDES][NSIGNALS];
+  Int_t ntdchits[NPLANES][NSIDES][NSIGNALS];
+
+  Double_t adc_paddles[NPLANES][NSIDES][NSIGNALS][MAXHITS];
+  Double_t tdc_paddles[NPLANES][NSIDES][NSIGNALS][MAXHITS];
+
+  Double_t ped_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+  Double_t pedraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+
+  Double_t int_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+  Double_t intraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+  
+  Double_t amp_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+  Double_t ampraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+  
+  Double_t ptraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+
+  Double_t tdc_values[NPLANES][NSIDES][NTDCSIGNALS][MAXHITS];
+  Double_t tdcraw_values[NPLANES][NSIDES][NTDCSIGNALS][MAXHITS];
+
+  TH2F* htdc_adc[NPLANES*NSIDES*MAXBARS];
+  TH2F* htdc_tdc[NPLANES*MAXBARS];
+  TH2F* hadc_adc[NPLANES*MAXBARS];
+  TH2F* hadcint_adcint[NPLANES*MAXBARS];
+  TH2F* hatdc_atdc[NPLANES*MAXBARS];
+  TH2F* hadc_atdc[NPLANES*NSIDES*MAXBARS];
+  Int_t adc_ihit, tdc_ihit;
+
+  TTree *T=(TTree*)gDirectory->Get("T");
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "TDC 0.1ns/chan "+plane_names[ip]+i2dbarname+"; Neg ; Pos ";
+	      TString h2dtname="uh2dtdc"+plane_names[ip]+i2dbarname;
+              htdc_tdc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,100,-1000,-500,100,-1000,-500.);
+	    }
+  }
+  //
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "ADC Peak Amp "+plane_names[ip]+i2dbarname+"; Neg (mV); Pos (mV)";
+	      TString h2dtname="uh2dadcpeak"+plane_names[ip]+i2dbarname;
+	      //             hadc_adc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,500,-200,5800,500,-200,5800.);
+	                 hadc_adc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,160,0,800,160,0,800.);
+	      TString h2dttitle= "ADC Int Amp "+plane_names[ip]+i2dbarname+"; Neg (pC); Pos (pC)";
+	      TString h2dtname="uh2dadcint"+plane_names[ip]+i2dbarname;
+	                 hadcint_adcint[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,50,0,100,50,0,100.);
+	    }
+  }
+  //
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "h2dadctdc"+plane_names[ip]+i2dbarname;
+	      TString h2dtname="uh2dadctdc"+plane_names[ip]+i2dbarname;
+              hatdc_atdc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,100,1000,2000,100,1000,2000.);
+	    }
+  }
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+    for(UInt_t iside = 0; iside < NSIDES; iside++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      UInt_t h2dindex = ip*NSIDES*MAXBARS+iside*MAXBARS+ibar;
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dtitle= "ADC (pc) vs TDC (0.1ns/chan) "+plane_names[ip]+i2dbarname+sides[iside];
+	      TString h2dname="uh2d"+plane_names[ip]+i2dbarname+sides[iside];
+	      TString h2datitle= "h2dadcAtdc"+plane_names[ip]+i2dbarname+sides[iside];
+	      TString h2daname="uh2dadcAtdc"+plane_names[ip]+i2dbarname+sides[iside];
+              if ( h2dindex < NPLANES*NSIDES*MAXBARS) {
+              htdc_adc[h2dindex]= new TH2F(h2dname,h2dtitle,200,-1000,-500,50,0.,100.);
+              hadc_atdc[h2dindex]= new TH2F(h2daname,h2datitle,50,0,100.,300,1000,2000.);
+	      //	      cout << " index = " << h2dindex << " " << h2dname << endl;
+              } else {
+                cout << " index = " << h2dindex << " too large" << endl;
+	      }
+	    }
+      for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+
+	if(signals[isignal] == "Adc") {  
+	  TString adc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString adc_ndata_name = "Ndata."+adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_ndata_name, &nadchits[ip][iside][isignal]);
+	  TString adc_paddle_name = adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_paddle_name, &adc_paddles[ip][iside][isignal][0]);
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    if (adc_signals[iadcsignal] == "Ped") {
+	      TString pedlist_name = adc_base_name+"Ped";
+	      T->SetBranchAddress(pedlist_name, &ped_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PedRaw") {
+	      TString pedrawlist_name = adc_base_name+"PedRaw";
+	      T->SetBranchAddress(pedrawlist_name, &pedraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseInt") {   
+	      TString intlist_name = adc_base_name+"PulseInt";
+	      T->SetBranchAddress(intlist_name, &int_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseIntRaw") {
+	      TString intrawlist_name = adc_base_name+"PulseIntRaw";
+	      T->SetBranchAddress(intrawlist_name, &intraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseAmp") {   
+	      TString amplist_name = adc_base_name+"PulseAmp";
+	      T->SetBranchAddress(amplist_name, &amp_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseAmpRaw") {
+	      TString amprawlist_name = adc_base_name+"PulseAmpRaw";
+	      T->SetBranchAddress(amprawlist_name, &ampraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseTimeRaw") {
+	      TString ptrawlist_name = adc_base_name+"PulseTimeRaw";
+	      T->SetBranchAddress(ptrawlist_name, &ptraw_values[ip][iside][iadcsignal][0]);
+	    }
+	  }
+	}
+	
+	if(signals[isignal] == "Tdc") {  
+	  TString tdc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString tdc_ndata_name = "Ndata."+tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_ndata_name, &ntdchits[ip][iside][isignal]);
+	  TString tdc_paddle_name = tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_paddle_name, &tdc_paddles[ip][iside][isignal][0]);
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    if (tdc_signals[itdcsignal] == "Time") {
+	      TString tdclist_name = tdc_base_name+"Time";
+	      T->SetBranchAddress(tdclist_name, &tdc_values[ip][iside][itdcsignal][0]);
+	    }
+	    if (tdc_signals[itdcsignal] == "TimeRaw") {
+	      TString tdcrawlist_name = tdc_base_name+"TimeRaw";
+	      T->SetBranchAddress(tdcrawlist_name, &tdcraw_values[ip][iside][itdcsignal][0]);
+	    }
+	  }
+	}
+
+      }
+    }
+  }
+
+  // Loop over the events, filling the histograms
+  cout << " looping over data " << endl;
+  for(UInt_t iev = 0, N = T->GetEntries(); iev < N; iev++) {
+    if (iev%10000==0) cout << " iev = " << iev << endl;
+    T->GetEntry(iev);
+    //
+    Double_t tdcbar_save=-1;
+        for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	  //       cout << iev << " " << ip << " " << ntdchits[ip][0][1]<< " " << ntdchits[ip][1][1] << endl;
+		for(Int_t tdc1_ihit = 0; tdc1_ihit < ntdchits[ip][0][1]; tdc1_ihit++)  {
+ 		UInt_t tdc1bar = TMath::Nint(tdc_paddles[ip][0][1][tdc1_ihit]) - 1;
+		Double_t tdc1val = tdc_values[ip][0][0][tdc1_ihit];
+		for(Int_t tdc2_ihit = 0; tdc2_ihit < ntdchits[ip][1][1]; tdc2_ihit++)  {
+		  UInt_t tdc2bar = TMath::Nint(tdc_paddles[ip][1][1][tdc2_ihit]) - 1;
+		  Double_t tdc2val =tdc_values[ip][1][0][tdc2_ihit];
+		  //                  cout << iev << " " << tdc1_ihit << " " << tdc1val << " " << tdc1bar << " tdc 2 = " << tdc2_ihit << " " << tdc2val   << " " << tdc2bar << endl;
+		  if ( tdc2bar == tdc1bar) htdc_tdc[ip*MAXBARS+tdc1bar]->Fill(tdc1val,tdc2val);
+                  if ( ip==3 && tdc2bar == tdc1bar) tdcbar_save=tdc2bar;
+		}
+		}
+	}
+        for(UInt_t ip = 0; ip < NPLANES; ip++) {
+		//
+		for(Int_t adc1_ihit = 0; adc1_ihit < nadchits[ip][0][0]; adc1_ihit++)  {
+ 		UInt_t adc1bar = TMath::Nint(adc_paddles[ip][0][0][adc1_ihit]) - 1;
+		Double_t adc1val = int_values[ip][0][2][adc1_ihit]*adcbit_to_pC;
+		Double_t adc1pval = amp_values[ip][0][4][adc1_ihit];
+		Double_t adc1tval = ptraw_values[ip][0][6][adc1_ihit];
+		for(Int_t adc2_ihit = 0; adc2_ihit < nadchits[ip][1][0]; adc2_ihit++)  {
+		  UInt_t adc2bar = TMath::Nint(adc_paddles[ip][1][0][adc2_ihit]) - 1;
+		  Double_t adc2val =int_values[ip][1][2][adc2_ihit]*adcbit_to_pC;
+		  Double_t adc2pval =amp_values[ip][1][4][adc2_ihit];
+		  Double_t adc2tval =ptraw_values[ip][1][6][adc2_ihit];
+		  //            cout << iev << " " << adc1_ihit << " " << adc1tval << " " << adc1bar << " adc 2 = " << adc2_ihit << " " << adc2tval   << " " << adc2bar << endl;
+		  if ( adc2bar == adc1bar ) hadc_adc[ip*MAXBARS+adc1bar]->Fill(adc1pval*.244*2,adc2pval*.244*2);
+		  if ( adc2bar == adc1bar ) hadcint_adcint[ip*MAXBARS+adc1bar]->Fill(adc1val,adc2val);
+		  if ( adc2bar == adc1bar) hatdc_atdc[ip*MAXBARS+adc1bar]->Fill(adc1tval,adc2tval);
+		}
+		}
+	}
+    //
+
+     //
+     for(UInt_t ip = 0; ip < NPLANES; ip++) {
+      for(UInt_t iside = 0; iside < NSIDES; iside++) {
+	//
+	      UInt_t hindex_base = ip*NSIDES*MAXBARS+iside*MAXBARS;
+		for(Int_t tdc1_ihit = 0; tdc1_ihit < ntdchits[ip][iside][1]; tdc1_ihit++)  {
+ 		UInt_t tdc1bar = TMath::Nint(tdc_paddles[ip][iside][1][tdc1_ihit]) - 1;
+		Double_t tdc1val = tdc_values[ip][0][0][tdc1_ihit];
+		for(Int_t adc2_ihit = 0; adc2_ihit < nadchits[ip][iside][0]; adc2_ihit++)  {
+		  UInt_t adc2bar = TMath::Nint(adc_paddles[ip][iside][0][adc2_ihit]) - 1;
+		  Double_t adc2val =int_values[ip][iside][2][adc2_ihit];
+		  //                  cout << iev << " " << tdc1_ihit << " " << tdc1val << " " << tdc1bar << " tdc 2 = " << tdc2_ihit << " " << tdc2val   << " " << tdc2bar << endl;
+		  if (tdc1bar==adc2bar) htdc_adc[hindex_base+adc2bar]->Fill(tdc1val,adc2val*adcbit_to_pC);
+		}
+		}
+	//
+      }
+     }
+    
+  }
+  return;
+}
+
+void rawdraw_2d_hhodo(TString histname) {
+
+  TH1F* h;
+
+  h = (TH1F*) gDirectory->Get(histname);
+  if(!h) {
+    UserScript();
+    h = (TH1F*) gDirectory->Get(histname);
+    if(!h) {
+      cout << "User histogram " << histname << " not found" << endl;
+      exit(1);
+    }
+  }
+  TLine *pline = new TLine(0,30.,800.,30.);
+  TLine *pline2 = new TLine(30,0.,30.,800.);
+  // cout << histname.Contains("adcpeak") << endl;
+  h->SetStats(0);
+  h->Draw("colz");
+  if (histname.Contains("adcpeak")) {
+    pline->Draw();
+    pline->SetLineColor(2);
+    pline->SetLineWidth(3);
+    pline2->Draw();
+    pline2->SetLineColor(2);
+    pline2->SetLineWidth(3);
+    h->GetXaxis()->SetTitleOffset(.6);
+    h->GetXaxis()->SetTitleSize(0.08);
+    h->GetYaxis()->SetTitleOffset(.6);
+    h->GetYaxis()->SetTitleSize(0.08);
+  }
+  if (histname.Contains("adcint")) {
+    h->GetXaxis()->SetTitleOffset(.6);
+    h->GetXaxis()->SetTitleSize(0.08);
+    h->GetYaxis()->SetTitleOffset(.6);
+    h->GetYaxis()->SetTitleSize(0.08);
+  }
+}
+
diff --git a/onlineGUI/Macros/rawdraw_2d_phodo.C b/onlineGUI/Macros/rawdraw_2d_phodo.C
new file mode 100644
index 0000000000000000000000000000000000000000..c9232e0f98bb051ca492b4666c0843ebe22d5304
--- /dev/null
+++ b/onlineGUI/Macros/rawdraw_2d_phodo.C
@@ -0,0 +1,377 @@
+// UserScript.C
+//
+// Helper macro to build additional histograms
+
+void UserScript()
+{
+  const UInt_t NPLANES  = 4;
+  const UInt_t NSIDES   = 2;
+  const UInt_t MAXBARS  = 21;  // FIX ME: Parameter should be 16
+  const UInt_t NSIGNALS = 2;
+  const UInt_t NADCSIGNALS = 7;
+  const UInt_t NTDCSIGNALS = 2;
+  const UInt_t MAXHITS=128*16;
+
+  const TString SPECTROMETER = "P";
+  const TString DETECTOR = "hod";
+
+  const TString plane_names[NPLANES] = {"1x", "1y", "2x", "2y"};
+  const UInt_t  nbars[NPLANES] = {13, 13, 14, 21};
+  const TString sides[NSIDES] = {"neg", "pos"};
+  const TString signals[NSIGNALS] = {"Adc", "Tdc"};
+  const TString adc_signals[NADCSIGNALS] = {"Ped", "PedRaw", "PulseInt", "PulseIntRaw", 
+					    "PulseAmp", "PulseAmpRaw", "PulseTimeRaw"};
+  const TString tdc_signals[NTDCSIGNALS] = {"Time", "TimeRaw"};
+  
+  Double_t adcbit_to_pC = 1.0/(50*4096)*4*1000. ;// 1V/(50 Ohms)/4096*4ns* = .020 pC
+  Double_t adcpeak_to_mV = 1.0/4096.*1000;// 1.0V per 4096 bits
+  Double_t fac_for_disc[4]= {2.0,2.,2.,1.};// Factor to have ADC at FADC match signal at discriminatir assuming split of 2/3 to 1/3( 2Y plane has linear FI/FO not a splitter)
+  cout << adcbit_to_pC << endl;
+  Int_t nadchits[NPLANES][NSIDES];
+  Int_t ntdchits[NPLANES][NSIDES];
+
+  Double_t adc_paddles[NPLANES][NSIDES][MAXHITS];
+  Double_t tdc_paddles[NPLANES][NSIDES][MAXHITS];
+
+  Double_t adc_values[NPLANES][NSIDES][NADCSIGNALS][MAXHITS];
+  Double_t tdc_values[NPLANES][NSIDES][NTDCSIGNALS][MAXHITS];
+
+  TH2F* htdc_adc[NPLANES*NSIDES*MAXBARS];
+  TH2F* htdc_dis[NPLANES*MAXBARS][2];
+  Int_t dis_bin[4]={13,13,13,14};
+  Double_t dis_min[4];
+  Double_t dis_max[4];
+  Double_t dis_center_pad1[4]={-33.75,-56.25,-33.75,-56.25};
+  Double_t dis_sign[4]={1.,1.,1.,1.};
+  Double_t dis_space=7.5;
+  Int_t pair_pl[4]={1,0,0,2};
+  Double_t dis_tdc_min[4]={-1600.,-1700.,-1800.,-1900.};
+  Double_t dis_tdc_max[4]={-1100.,-1200.,-1400.,-1100.};
+  const TString opp_plane[4] = {";Y1 plane paddle number; Tdc (.1/chan)",";X1 plane paddle number;Tdc (.1/chan) ",";X1 plane paddle number;Tdc (.1/chan) ",";X2 plane paddle number;Tdc (.1/chan) "};
+  Double_t htdc_tdc_min1[4]={-1600.,-1700.,-1800.,-1900.};
+  Double_t htdc_tdc_max1[4]={-1100.,-1300.,-1400.,-1100.};
+  Double_t htdc_tdc_min2[4]={-1500.,-1700.,-1800.,-1900.};
+  Double_t htdc_tdc_max2[4]={-1200.,-1300.,-1400.,-1100.};
+  Int_t htdc_tdc_bin1[4];
+  Int_t htdc_tdc_bin2[4];
+  Double_t htdc_adc_min1[4]={-1500.,-1700.,-1800.,-1900.};
+  Double_t htdc_adc_max1[4]={-1200.,-1300.,-1400.,-1100.};
+  Double_t htdc_adc_min2[4]={0.,0.,0.,0.};
+  Double_t htdc_adc_max2[4]={250.,250.,250.,250.};
+  Int_t htdc_adc_bin1[4];
+  Int_t htdc_adc_bin2[4];
+  TH2F* htdc_tdc[NPLANES*MAXBARS];
+  TH2F* hadc_adc[NPLANES*MAXBARS];
+  TH2F* hadcint_adcint[NPLANES*MAXBARS];
+  TH2F* hadc_adc_cut[NPLANES*MAXBARS];
+  TH2F* hadcint_adcint_cut[NPLANES*MAXBARS];
+  TH2F* hatdc_atdc[NPLANES*MAXBARS];
+  TH2F* hadc_atdc[NPLANES*NSIDES*MAXBARS];
+  TH2F* hnhits_negtdc_paddle[NPLANES];
+  TH2F* hnhits_postdc_paddle[NPLANES];
+  Int_t adc_ihit, tdc_ihit;
+
+  TTree *T=(TTree*)gDirectory->Get("T");
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	      TString h2dttitle= "Neg TDC nhits vs paddle Plane "+plane_names[ip]+"; Paddle ; Nhits ";
+	      TString h2dtname="uh1dnegtdcNhitsPad"+plane_names[ip];
+              hnhits_negtdc_paddle[ip]= new TH2F(h2dtname,h2dttitle,nbars[ip],1,nbars[ip]+1,10,0,10);
+	      TString h2dttitle= "Pos TDC nhits vs paddle Plane "+plane_names[ip]+"; Paddle ; Nhits ";
+	      TString h2dtname="uh1dpostdcNhitsPad"+plane_names[ip];
+              hnhits_postdc_paddle[ip]= new TH2F(h2dtname,h2dttitle,nbars[ip],1,nbars[ip]+1,10,0,10);
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "TDC 0.1ns/chan "+plane_names[ip]+i2dbarname+"; Neg ; Pos ";
+	      TString h2dtname="uh2dtdc"+plane_names[ip]+i2dbarname;
+              htdc_tdc_bin1[ip]=(htdc_tdc_max1[ip]-htdc_tdc_min1[ip])/10.;
+              htdc_tdc_bin2[ip]=(htdc_tdc_max2[ip]-htdc_tdc_min2[ip])/10.;
+              htdc_tdc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,htdc_tdc_bin1[ip],htdc_tdc_min1[ip],htdc_tdc_max1[ip],htdc_tdc_bin2[ip],htdc_tdc_min2[ip],htdc_tdc_max2[ip]);
+	      TString h2dttitle= "Neg PMT Pad "+plane_names[ip]+i2dbarname+opp_plane[ip];
+	      TString h2dtname="uh2dtdcvdisneg"+plane_names[ip]+i2dbarname;
+	      htdc_dis[ip*MAXBARS+ibar][0]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],1,dis_bin[ip]+1,(dis_tdc_max[ip]-dis_tdc_min[ip])/10,dis_tdc_min[ip],dis_tdc_max[ip]);
+	      TString h2dttitle= "Pos PMT Pad "+plane_names[ip]+i2dbarname+opp_plane[ip];
+	      TString h2dtname="uh2dtdcvdispos"+plane_names[ip]+i2dbarname;
+	      htdc_dis[ip*MAXBARS+ibar][1]= new TH2F(h2dtname,h2dttitle,dis_bin[ip],1,dis_bin[ip]+1,(dis_tdc_max[ip]-dis_tdc_min[ip])/10,dis_tdc_min[ip],dis_tdc_max[ip]);
+	    }
+  }
+  //
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "ADC Peak Amp "+plane_names[ip]+i2dbarname+"; Neg (mV); Pos (mV)";
+	      TString h2dtname="uh2dadcpeak"+plane_names[ip]+i2dbarname;
+	      //             hadc_adc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,500,-200,5800,500,-200,5800.);
+	                 hadc_adc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,160,0,800,160,0,800.);
+	      TString h2dtname="uh2dadcpeakcut"+plane_names[ip]+i2dbarname;
+	      //             hadc_adc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,500,-200,5800,500,-200,5800.);
+	                 hadc_adc_cut[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,160,0,800,160,0,800.);
+	      TString h2dttitle= "ADC Int Amp "+plane_names[ip]+i2dbarname+"; Neg (pC); Pos (pC)";
+	      TString h2dtname="uh2dadcint"+plane_names[ip]+i2dbarname;
+	                 hadcint_adcint[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,50,0,100,50,0,100.);
+	      TString h2dtname="uh2dadcintcut"+plane_names[ip]+i2dbarname;
+	                 hadcint_adcint_cut[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,50,0,100,50,0,100.);
+	    }
+  }
+  //
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dttitle= "h2dadctdc"+plane_names[ip]+i2dbarname;
+	      TString h2dtname="uh2dadctdc"+plane_names[ip]+i2dbarname;
+              hatdc_atdc[ip*MAXBARS+ibar]= new TH2F(h2dtname,h2dttitle,100,1000,2000,100,1000,2000.);
+	    }
+  }
+  //
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+    for(UInt_t iside = 0; iside < NSIDES; iside++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      UInt_t h2dindex = ip*NSIDES*MAXBARS+iside*MAXBARS+ibar;
+	      TString i2dbarname = Form("%d",ibar+1);
+	      TString h2dtitle= "ADC peak (mV) vs TDC (0.1ns/chan) "+plane_names[ip]+i2dbarname+sides[iside];
+	      TString h2dname="uh2d"+plane_names[ip]+i2dbarname+sides[iside];
+	      TString h2datitle= "h2dadcAtdc"+plane_names[ip]+i2dbarname+sides[iside];
+	      TString h2daname="uh2dadcAtdc"+plane_names[ip]+i2dbarname+sides[iside];
+              if ( h2dindex < NPLANES*NSIDES*MAXBARS) {
+              htdc_adc_bin1[ip]=(htdc_adc_max1[ip]-htdc_adc_min1[ip])/10.;
+              htdc_adc_bin2[ip]=(htdc_adc_max2[ip]-htdc_adc_min2[ip])/2.;
+		htdc_adc[h2dindex]= new TH2F(h2dname,h2dtitle,htdc_adc_bin1[ip],htdc_adc_min1[ip],htdc_adc_max1[ip],htdc_adc_bin2[ip],htdc_adc_min2[ip],htdc_adc_max2[ip]);
+              hadc_atdc[h2dindex]= new TH2F(h2daname,h2datitle,50,0,100.,300,1000,2000.);
+	      //	      cout << " index = " << h2dindex << " " << h2dname << endl;
+              } else {
+                cout << " index = " << h2dindex << " too large" << endl;
+	      }
+	    }
+      for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+
+	if(signals[isignal] == "Adc") {  
+	  TString adc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString adc_ndata_name = "Ndata."+adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_ndata_name, &nadchits[ip][iside]);
+	  TString adc_paddle_name = adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_paddle_name, &adc_paddles[ip][iside][0]);
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    if (adc_signals[iadcsignal] == "Ped") {
+	      TString pedlist_name = adc_base_name+"Ped";
+	      T->SetBranchAddress(pedlist_name, &adc_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PedRaw") {
+	      TString pedrawlist_name = adc_base_name+"PedRaw";
+	      T->SetBranchAddress(pedrawlist_name, &adc_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseInt") {   
+	      TString intlist_name = adc_base_name+"PulseInt";
+	      T->SetBranchAddress(intlist_name, &adc_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseIntRaw") {
+	      TString intrawlist_name = adc_base_name+"PulseIntRaw";
+	      T->SetBranchAddress(intrawlist_name, &adc_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseAmp") {   
+	      TString amplist_name = adc_base_name+"PulseAmp";
+	      T->SetBranchAddress(amplist_name, &adc_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseAmpRaw") {
+	      TString amprawlist_name = adc_base_name+"PulseAmpRaw";
+	      T->SetBranchAddress(amprawlist_name, &adc_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseTimeRaw") {
+	      TString ptrawlist_name = adc_base_name+"PulseTimeRaw";
+	      T->SetBranchAddress(ptrawlist_name, &adc_values[ip][iside][iadcsignal][0]);
+	    }
+	  }
+	}
+	
+	if(signals[isignal] == "Tdc") {  
+	  TString tdc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString tdc_ndata_name = "Ndata."+tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_ndata_name, &ntdchits[ip][iside]);
+	  TString tdc_paddle_name = tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_paddle_name, &tdc_paddles[ip][iside][0]);
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    if (tdc_signals[itdcsignal] == "Time") {
+	      TString tdclist_name = tdc_base_name+"Time";
+	      T->SetBranchAddress(tdclist_name, &tdc_values[ip][iside][itdcsignal][0]);
+	    }
+	    if (tdc_signals[itdcsignal] == "TimeRaw") {
+	      TString tdcrawlist_name = tdc_base_name+"TimeRaw";
+	      T->SetBranchAddress(tdcrawlist_name, &tdc_values[ip][iside][itdcsignal][0]);
+	    }
+	  }
+	}
+
+      }
+    }
+  }
+
+  // Loop over the events, filling the histograms
+  //  cout << " looping over data " << endl;
+  Double_t good_pad[4];
+  Double_t good_adc[4][2];
+  Bool_t good_neg[4][MAXBARS],good_pos[4][MAXBARS];
+  for(UInt_t iev = 0, N = T->GetEntries(); iev < N; iev++) {
+    if (iev%1000==0) cout << " iev = " << iev << endl;
+    //       cout << " get entry = " << iev << endl;
+    T->GetEntry(iev);
+    Double_t tdcbarx1_save=-1;
+    Double_t tdcbarx2_save=-10;
+    Double_t tdcbary1_save=-1;
+    Double_t tdcbary2_save=-10;
+     /*
+      for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	  Double_t nhits_neg[21]={0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.};
+	  Double_t nhits_pos[21]={0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.};
+ 		for(Int_t tdc3_ihit = 0; tdc3_ihit < ntdchits[ip][0]; tdc3_ihit++)  {
+ 		UInt_t tdc3bar = TMath::Nint(tdc_paddles[ip][0][1][tdc3_ihit]) - 1;
+                nhits_neg[tdc3bar]++;
+		}
+		for(Int_t tdc4_ihit = 0; tdc4_ihit < ntdchits[ip][1]; tdc4_ihit++)  {
+ 		UInt_t tdc4bar = TMath::Nint(tdc_paddles[ip][1][1][tdc4_ihit]) - 1;
+                nhits_pos[tdc4bar]++;
+		}
+                for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+ 		  hnhits_negtdc_paddle[ip]->Fill(float(ibar+1),nhits_neg[ibar]);
+ 		  hnhits_postdc_paddle[ip]->Fill(float(ibar+1),nhits_pos[ibar]);
+		}
+       }
+    */
+    //    cout << " start nplane loop" << endl;
+    //   if (ntdchits[0][0]==1&&ntdchits[0][1]==1&&ntdchits[1][0]==1&&ntdchits[1][1]==1&&ntdchits[2][0]==1&&ntdchits[2][1]==1) {
+      if (ntdchits[0][0]==1&&ntdchits[0][1]==1) {
+    // if (1==1) {
+       for(UInt_t ip = 0; ip < NPLANES; ip++) {
+	 //	 	        cout << iev << " " << ip << " " << ntdchits[ip][0]<< " " << ntdchits[ip][1] << endl;
+		for(Int_t tdc1_ihit = 0; tdc1_ihit < ntdchits[ip][0]; tdc1_ihit++)  {
+ 		UInt_t tdc1bar = TMath::Nint(tdc_paddles[ip][0][tdc1_ihit]) - 1;
+		Double_t tdc1val = tdc_values[ip][0][0][tdc1_ihit];
+		for(Int_t tdc2_ihit = 0; tdc2_ihit < ntdchits[ip][1]; tdc2_ihit++)  {
+		  UInt_t tdc2bar = TMath::Nint(tdc_paddles[ip][1][tdc2_ihit]) - 1;
+		  Double_t tdc2val =tdc_values[ip][1][0][tdc2_ihit];
+		  //		                cout << iev << " " << tdc1_ihit << " " << tdc1val << " " << tdc1bar << " tdc 2 = " << tdc2_ihit << " " << tdc2val   << " " << tdc2bar << endl;
+		  if ( tdc2bar == tdc1bar) htdc_tdc[ip*MAXBARS+tdc1bar]->Fill(tdc1val,tdc2val);
+                  if ( ip==0 && tdc2bar == tdc1bar) tdcbarx1_save=tdc2bar;
+                  if ( ip==1 && tdc2bar == tdc1bar) tdcbary1_save=tdc2bar;
+                  if ( ip==2 && tdc2bar == tdc1bar) tdcbarx2_save=tdc2bar;
+                  if ( ip==3 && tdc2bar == tdc1bar) tdcbary2_save=tdc2bar;
+		}
+		}
+		  //
+		for(Int_t tdc1_ihit = 0; tdc1_ihit < ntdchits[ip][0]; tdc1_ihit++)  {
+ 		UInt_t tdc1bar = TMath::Nint(tdc_paddles[ip][0][tdc1_ihit]) - 1;
+		Double_t tdc1val = tdc_values[ip][0][0][tdc1_ihit];
+		for(Int_t tdc3_ihit = 0; tdc3_ihit < ntdchits[pair_pl[ip]][0]; tdc3_ihit++)  {
+ 		UInt_t tdc3bar = TMath::Nint(tdc_paddles[pair_pl[ip]][0][tdc3_ihit]) - 1;
+		for(Int_t tdc4_ihit = 0; tdc4_ihit < ntdchits[pair_pl[ip]][1]; tdc4_ihit++)  {
+		  UInt_t tdc4bar = TMath::Nint(tdc_paddles[pair_pl[ip]][1][tdc4_ihit]) - 1;
+		  if (tdc3bar == tdc4bar) htdc_dis[ip*MAXBARS+tdc1bar][0]->Fill(float(tdc4bar+1),tdc1val);
+		}}		  
+		}
+		//
+		  //
+		for(Int_t tdc2_ihit = 0; tdc2_ihit < ntdchits[ip][1]; tdc2_ihit++)  {
+ 		UInt_t tdc2bar = TMath::Nint(tdc_paddles[ip][1][tdc2_ihit]) - 1;
+		Double_t tdc2val = tdc_values[ip][1][0][tdc2_ihit];
+		for(Int_t tdc3_ihit = 0; tdc3_ihit < ntdchits[pair_pl[ip]][0]; tdc3_ihit++)  {
+ 		UInt_t tdc3bar = TMath::Nint(tdc_paddles[pair_pl[ip]][0][tdc3_ihit]) - 1;
+		for(Int_t tdc4_ihit = 0; tdc4_ihit < ntdchits[pair_pl[ip]][1]; tdc4_ihit++)  {
+		  UInt_t tdc4bar = TMath::Nint(tdc_paddles[pair_pl[ip]][1][tdc4_ihit]) - 1;
+		  if (tdc3bar == tdc4bar) htdc_dis[ip*MAXBARS+tdc2bar][1]->Fill(float(tdc4bar+1),tdc2val);
+		}}		  
+		}
+		//
+	}
+    
+        for(UInt_t ip = 0; ip < NPLANES; ip++) {
+		//
+		for(Int_t adc1_ihit = 0; adc1_ihit < nadchits[ip][0]; adc1_ihit++)  {
+ 		UInt_t adc1bar = TMath::Nint(adc_paddles[ip][0][adc1_ihit]) - 1;
+		Double_t adc1val = adc_values[ip][0][2][adc1_ihit]*adcbit_to_pC;
+		Double_t adc1pval = adc_values[ip][0][4][adc1_ihit]*adcpeak_to_mV*fac_for_disc[ip];
+		Double_t adc1tval = adc_values[ip][0][6][adc1_ihit];
+		for(Int_t adc2_ihit = 0; adc2_ihit < nadchits[ip][1]; adc2_ihit++)  {
+		  UInt_t adc2bar = TMath::Nint(adc_paddles[ip][1][adc2_ihit]) - 1;
+		  Double_t adc2val =adc_values[ip][1][2][adc2_ihit]*adcbit_to_pC;
+		  Double_t adc2pval =adc_values[ip][1][4][adc2_ihit]*adcpeak_to_mV*fac_for_disc[ip];
+		  Double_t adc2tval =adc_values[ip][1][6][adc2_ihit];
+		  if (ip*MAXBARS+adc1bar > NPLANES*MAXBARS)           cout << iev << " " << adc1_ihit << " " << adc1tval << " " << adc1bar << " adc 2 = " << adc2_ihit << " " << adc2tval   << " " << adc2bar << endl;
+		  //		          cout << iev << " " << adc1_ihit << " " << adc1tval << " " << adc1bar << " adc 2 = " << adc2_ihit << " " << adc2tval   << " " << adc2bar << endl;
+		  if ( adc2bar == adc1bar) hadc_adc[ip*MAXBARS+adc1bar]->Fill(adc1pval,adc2pval);
+		  if ( adc2bar == adc1bar && TMath::Abs(tdcbarx1_save-tdcbarx2_save)<2) hadc_adc_cut[ip*MAXBARS+adc1bar]->Fill(adc1pval,adc2pval);
+		  if ( adc2bar == adc1bar) hadcint_adcint[ip*MAXBARS+adc1bar]->Fill(adc1val,adc2val);
+		  if ( adc2bar == adc1bar && TMath::Abs(tdcbarx1_save-tdcbarx2_save)<2) hadcint_adcint_cut[ip*MAXBARS+adc1bar]->Fill(adc1val,adc2val);
+		  if ( adc2bar == adc1bar) hatdc_atdc[ip*MAXBARS+adc1bar]->Fill(adc1tval,adc2tval);
+		}
+		}
+	}
+    //
+
+     //
+     for(UInt_t ip = 0; ip < NPLANES; ip++) {
+      for(UInt_t iside = 0; iside < NSIDES; iside++) {
+	//
+	      UInt_t hindex_base = ip*NSIDES*MAXBARS+iside*MAXBARS;
+	      //		cout << " pl = " << ip+1 << " side = " << iside << " number of adc hits = " << nadchits[ip][iside] << " number of tdc hits = " << nadchits[ip][iside] << endl;
+		for(Int_t tdc1_ihit = 0; tdc1_ihit < ntdchits[ip][iside]; tdc1_ihit++)  {
+ 		UInt_t tdc1bar = TMath::Nint(tdc_paddles[ip][iside][tdc1_ihit]) - 1;
+		Double_t tdc1val = tdc_values[ip][iside][0][tdc1_ihit];
+		for(Int_t adc2_ihit = 0; adc2_ihit < nadchits[ip][iside]; adc2_ihit++)  {
+		  UInt_t adc2bar = TMath::Nint(adc_paddles[ip][iside][adc2_ihit]) - 1;
+		  Double_t adc2val =adc_values[ip][iside][4][adc2_ihit]*adcpeak_to_mV;
+		  //	  Double_t adc2val =adc_values[ip][iside][2][adc2_ihit]*adcbit_to_pC;
+		 
+		  if (hindex_base+adc2bar > NPLANES*NSIDES*MAXBARS)                    cout  << " adc2bar too large " << tdc1_ihit << " " << tdc1val << " " << tdc1bar << " adc 2 = " << adc2_ihit << " " << adc2val   << " " << adc2bar << endl;
+		  //	                          cout << iev << " " << tdc1_ihit << " " << tdc1val << " " << tdc1bar << " adc 2 = " << adc2_ihit << " " << adc2val   << " " << adc2bar << endl;
+		  if (tdc1bar==adc2bar) htdc_adc[hindex_base+adc2bar]->Fill(tdc1val,adc2val);
+		}
+		}
+	//
+      }
+     }
+    }
+     //     cout  << " finish event = " << iev << endl; 
+  }
+  return;
+}
+
+void rawdraw_2d_phodo(TString histname) {
+
+  TH1F* h;
+
+  h = (TH1F*) gDirectory->Get(histname);
+  if(!h) {
+    UserScript();
+    h = (TH1F*) gDirectory->Get(histname);
+    if(!h) {
+      cout << "User histogram " << histname << " not found" << endl;
+      exit(1);
+    }
+  }
+  TLine *pline = new TLine(0,30.,800.,30.);
+  TLine *pline2 = new TLine(30,0.,30.,800.);
+  // cout << histname.Contains("adcpeak") << endl;
+  h->SetStats(0);
+  h->Draw("colz");
+  if (histname.Contains("adcpeak")) {
+    pline->Draw();
+    pline->SetLineColor(2);
+    pline->SetLineWidth(3);
+    pline2->Draw();
+    pline2->SetLineColor(2);
+    pline2->SetLineWidth(3);
+    h->GetXaxis()->SetTitleOffset(.6);
+    h->GetXaxis()->SetTitleSize(0.08);
+    h->GetYaxis()->SetTitleOffset(.6);
+    h->GetYaxis()->SetTitleSize(0.08);
+  }
+  if (histname.Contains("adcint")) {
+    h->GetXaxis()->SetTitleOffset(.6);
+    h->GetXaxis()->SetTitleSize(0.08);
+    h->GetYaxis()->SetTitleOffset(.6);
+    h->GetYaxis()->SetTitleSize(0.08);
+  }
+}
+
diff --git a/onlineGUI/Macros/rawdraw_hhodo.C b/onlineGUI/Macros/rawdraw_hhodo.C
new file mode 100755
index 0000000000000000000000000000000000000000..56d013a30097424f200ccb9aa639d14357500246
--- /dev/null
+++ b/onlineGUI/Macros/rawdraw_hhodo.C
@@ -0,0 +1,349 @@
+// UserScript.C
+//
+// Helper macro to build additional histograms
+
+void UserScript()
+{
+
+  const UInt_t NPLANES  = 4;
+  const UInt_t NSIDES   = 2;
+  const UInt_t MAXBARS  = 32;  // FIX ME: Parameter should be 16
+  const UInt_t NSIGNALS = 2;
+  const UInt_t NADCSIGNALS = 7;
+  const UInt_t NTDCSIGNALS = 2;
+
+  const TString SPECTROMETER = "H";
+  const TString DETECTOR = "hod";
+
+  const TString plane_names[NPLANES] = {"1x", "1y", "2x", "2y"};
+  const UInt_t  nbars[NPLANES] = {16, 10, 16, 10};
+  const TString sides[NSIDES] = {"neg", "pos"};
+  const TString signals[NSIGNALS] = {"Adc", "Tdc"};
+  const TString adc_signals[NADCSIGNALS] = {"Ped", "PedRaw", "PulseInt", "PulseIntRaw", 
+					    "PulseAmp", "PulseAmpRaw", "PulseTimeRaw"};
+  const TString tdc_signals[NTDCSIGNALS] = {"Time", "TimeRaw"};
+  
+  const Double_t ADCPED_MIN   = 400.0;
+  const Double_t ADCPED_MAX   = 600.0;
+  const Int_t    ADCPED_NBINS = 200;
+
+  const Double_t ADCPEDRAW_MIN   = 1700.0;
+  const Double_t ADCPEDRAW_MAX   = 2300.0;
+  const Int_t    ADCPEDRAW_NBINS = 600;
+
+  const Double_t ADCINT_MIN   = 0.0;
+  const Double_t ADCINT_MAX   = 25000.0;
+  const Int_t    ADCINT_NBINS = 2500;
+
+  const Double_t ADCINTRAW_MIN   = 0.0;
+  const Double_t ADCINTRAW_MAX   = 25000.0;
+  const Int_t    ADCINTRAW_NBINS = 2500;
+
+  const Double_t ADCAMP_MIN   = 0.0;
+  const Double_t ADCAMP_MAX   = 4100.0;
+  const Int_t    ADCAMP_NBINS = 410;
+
+  const Double_t ADCAMPRAW_MIN   = 0.0;
+  const Double_t ADCAMPRAW_MAX   = 4100.0;
+  const Int_t    ADCAMPRAW_NBINS = 410;
+
+  const Double_t ADCPTRAW_MIN   = 500.0;
+  const Double_t ADCPTRAW_MAX   = 2500.0;
+  const Int_t    ADCPTRAW_NBINS = 200;
+
+  const Double_t TDC_MIN   = -1200.0;
+  const Double_t TDC_MAX   = -800.0;
+  const Int_t    TDC_NBINS = 40;
+
+  const Double_t RAWTDC_MIN   = 3250.0;
+  const Double_t RAWTDC_MAX   = 4250.0;
+  const Int_t    RAWTDC_NBINS = 100;
+
+  Int_t nadchits[NPLANES][NSIDES][NSIGNALS];
+  Int_t ntdchits[NPLANES][NSIDES][NSIGNALS];
+
+  Double_t adc_paddles[NPLANES][NSIDES][NSIGNALS][MAXBARS];
+  Double_t tdc_paddles[NPLANES][NSIDES][NSIGNALS][MAXBARS];
+
+  Double_t ped_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  Double_t pedraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+
+  Double_t int_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  Double_t intraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  
+  Double_t amp_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  Double_t ampraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  
+  Double_t ptraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+
+  Double_t tdc_values[NPLANES][NSIDES][NTDCSIGNALS][MAXBARS];
+  Double_t tdcraw_values[NPLANES][NSIDES][NTDCSIGNALS][MAXBARS];
+
+  TH1F* hadc[NPLANES*NSIDES*NADCSIGNALS*MAXBARS];
+  TH1F* htdc[NPLANES*NSIDES*NTDCSIGNALS*MAXBARS];
+
+  Int_t adc_ihit, tdc_ihit;
+
+  TTree *T=(TTree*)gDirectory->Get("T");
+
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+    for(UInt_t iside = 0; iside < NSIDES; iside++) {
+      for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+
+	if(signals[isignal] == "Adc") {  
+	  TString adc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString adc_ndata_name = "Ndata."+adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_ndata_name, &nadchits[ip][iside][isignal]);
+	  TString adc_paddle_name = adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_paddle_name, &adc_paddles[ip][iside][isignal][0]);
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    if (adc_signals[iadcsignal] == "Ped") {
+	      TString pedlist_name = adc_base_name+"Ped";
+	      T->SetBranchAddress(pedlist_name, &ped_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PedRaw") {
+	      TString pedrawlist_name = adc_base_name+"PedRaw";
+	      T->SetBranchAddress(pedrawlist_name, &pedraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseInt") {   
+	      TString intlist_name = adc_base_name+"PulseInt";
+	      T->SetBranchAddress(intlist_name, &int_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseIntRaw") {
+	      TString intrawlist_name = adc_base_name+"PulseIntRaw";
+	      T->SetBranchAddress(intrawlist_name, &intraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseAmp") {   
+	      TString amplist_name = adc_base_name+"PulseAmp";
+	      T->SetBranchAddress(amplist_name, &amp_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseAmpRaw") {
+	      TString amprawlist_name = adc_base_name+"PulseAmpRaw";
+	      T->SetBranchAddress(amprawlist_name, &ampraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseTimeRaw") {
+	      TString ptrawlist_name = adc_base_name+"PulseTimeRaw";
+	      T->SetBranchAddress(ptrawlist_name, &ptraw_values[ip][iside][iadcsignal][0]);
+	    }
+	  }
+	}
+	
+	if(signals[isignal] == "Tdc") {  
+	  TString tdc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString tdc_ndata_name = "Ndata."+tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_ndata_name, &ntdchits[ip][iside][isignal]);
+	  TString tdc_paddle_name = tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_paddle_name, &tdc_paddles[ip][iside][isignal][0]);
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    if (tdc_signals[itdcsignal] == "Time") {
+	      TString tdclist_name = tdc_base_name+"Time";
+	      T->SetBranchAddress(tdclist_name, &tdc_values[ip][iside][itdcsignal][0]);
+	    }
+	    if (tdc_signals[itdcsignal] == "TimeRaw") {
+	      TString tdcrawlist_name = tdc_base_name+"TimeRaw";
+	      T->SetBranchAddress(tdcrawlist_name, &tdcraw_values[ip][iside][itdcsignal][0]);
+	    }
+	  }
+	}
+
+	if(signals[isignal] == "Adc") {
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      UInt_t hadcindex = ip*NSIDES*NADCSIGNALS*MAXBARS
+		+iside*NADCSIGNALS*MAXBARS+iadcsignal*MAXBARS+ibar;
+	      TString iadcbarname = Form("%d",ibar+1);
+	      TString adctitle= "hadc"+plane_names[ip]+iadcbarname+sides[iside]
+		+" "+adc_signals[iadcsignal];
+	      TString adcname="uhadc"+plane_names[ip]+iadcbarname+sides[iside]+
+		adc_signals[iadcsignal];
+
+	      if (adc_signals[iadcsignal] == "Ped") {
+		UInt_t   nadcbins = ADCPED_NBINS;
+		Double_t hadcmin  = ADCPED_MIN;
+		Double_t hadcmax  = ADCPED_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PedRaw") {
+		UInt_t   nadcbins = ADCPEDRAW_NBINS;
+		Double_t hadcmin  = ADCPEDRAW_MIN;
+		Double_t hadcmax  = ADCPEDRAW_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseInt") {
+		UInt_t   nadcbins = ADCINT_NBINS;
+		Double_t hadcmin  = ADCINT_MIN;
+		Double_t hadcmax  = ADCINT_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseIntRaw") {
+		UInt_t   nadcbins = ADCINTRAW_NBINS;
+		Double_t hadcmin  = ADCINTRAW_MIN;
+		Double_t hadcmax  = ADCINTRAW_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseAmp") {
+		UInt_t   nadcbins = ADCAMP_NBINS;
+		Double_t hadcmin  = ADCAMP_MIN;
+		Double_t hadcmax  = ADCAMP_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseAmpRaw") {
+		UInt_t   nadcbins = ADCAMPRAW_NBINS;
+		Double_t hadcmin  = ADCAMPRAW_MIN;
+		Double_t hadcmax  = ADCAMPRAW_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseTimeRaw") {
+		UInt_t   nadcbins = ADCPTRAW_NBINS;
+		Double_t hadcmin  = ADCPTRAW_MIN;
+		Double_t hadcmax  = ADCPTRAW_MAX;
+	      }
+	      hadc[hadcindex]=new TH1F(adcname, adctitle, nadcbins, hadcmin, hadcmax);
+	    }
+	  }
+	}
+
+	if(signals[isignal] == "Tdc") {
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      UInt_t htdcindex = ip*NSIDES*NTDCSIGNALS*MAXBARS
+		+iside*NTDCSIGNALS*MAXBARS+itdcsignal*MAXBARS+ibar;
+	      TString itdcbarname = Form("%d",ibar+1);
+	      TString tdctitle= "htdc"+plane_names[ip]+itdcbarname+sides[iside]
+		+" "+tdc_signals[itdcsignal];
+	      TString tdcname="uhtdc"+plane_names[ip]+itdcbarname+sides[iside]+
+		tdc_signals[itdcsignal];
+
+	      if (tdc_signals[itdcsignal] == "TimeRaw") {
+		UInt_t   ntdcbins = RAWTDC_NBINS;
+		Double_t htdcmin  = RAWTDC_MIN;
+		Double_t htdcmax  = RAWTDC_MAX;
+	      }
+	      if (tdc_signals[itdcsignal] == "Time") {
+		UInt_t   ntdcbins = TDC_NBINS;
+		Double_t htdcmin  = TDC_MIN;
+		Double_t htdcmax  = TDC_MAX;
+	      }
+	      htdc[htdcindex]=new TH1F(tdcname, tdctitle, ntdcbins, htdcmin, htdcmax);
+	    }
+	  }
+	}
+      }
+    }
+  }
+
+  // Loop over the events, filling the histograms
+  for(UInt_t iev = 0, N = T->GetEntries(); iev < N; iev++) {
+    T->GetEntry(iev);
+
+     for(UInt_t ip = 0; ip < NPLANES; ip++) {
+      for(UInt_t iside = 0; iside < NSIDES; iside++) {
+	for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+     
+	  if(signals[isignal] == "Adc") {
+	    for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+
+	      UInt_t hadcindex_base = ip*NSIDES*NADCSIGNALS*MAXBARS
+		+iside*NADCSIGNALS*MAXBARS+iadcsignal*MAXBARS;
+
+	      for(Int_t adc_ihit = 0; adc_ihit < nadchits[ip][iside][isignal]; adc_ihit++) {
+
+		UInt_t ibar = TMath::Nint(adc_paddles[ip][iside][isignal][adc_ihit]) - 1;
+
+		if (adc_signals[iadcsignal] == "Ped")
+		  Double_t pedval = ped_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PedRaw")  
+		  Double_t pedrawval = pedraw_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseInt")
+		  Double_t intval = int_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseIntRaw")  
+		  Double_t intrawval = intraw_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseAmp")
+		  Double_t ampval = amp_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseAmpRaw")  
+		  Double_t amprawval = ampraw_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseTimeRaw")  
+		  Double_t ptrawval = ptraw_values[ip][iside][iadcsignal][adc_ihit];
+		
+		UInt_t hadcindex = hadcindex_base + ibar;
+
+		// cout << "hadcindex = " << hadcindex << endl;
+
+                if (hadcindex < NPLANES*NSIDES*NADCSIGNALS*MAXBARS) {
+		  if (adc_signals[iadcsignal] == "Ped") {
+		    // cout << "pedval = " << pedval << endl;
+		    hadc[hadcindex]->Fill(pedval);
+		  }
+		  if (adc_signals[iadcsignal] == "PedRaw") {
+		    // cout << "pedrawval = " << pedrawval << endl;
+		    hadc[hadcindex]->Fill(pedrawval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseInt") {
+		    // cout << "intval = " << intval << endl;
+		    hadc[hadcindex]->Fill(intval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseIntRaw") {
+		    // cout << "intrawval = " << intrawval << endl;
+		    hadc[hadcindex]->Fill(intrawval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseAmp") {
+		    // cout << "ampval = " << ampval << endl;
+		    hadc[hadcindex]->Fill(ampval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseAmpRaw") {
+		    // cout << "amprawval = " << amprawval << endl;
+		    hadc[hadcindex]->Fill(amprawval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseTimeRaw") {
+		    // cout << "ptrawval = " << ptrawval << endl;
+		    hadc[hadcindex]->Fill(ptrawval);
+		  }
+		}
+	      }
+	    }
+	  }
+
+	  if(signals[isignal] == "Tdc") {
+	    for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+
+	      UInt_t htdcindex_base = ip*NSIDES*NTDCSIGNALS*MAXBARS
+		+iside*NTDCSIGNALS*MAXBARS+itdcsignal*MAXBARS;
+
+	      for(Int_t tdc_ihit = 0; tdc_ihit < ntdchits[ip][iside][isignal]; tdc_ihit++) {
+
+		UInt_t ibar = TMath::Nint(tdc_paddles[ip][iside][isignal][tdc_ihit]) - 1;
+
+		Double_t tdcval = tdc_values[ip][iside][itdcsignal][tdc_ihit];
+		Double_t tdcrawval = tdcraw_values[ip][iside][itdcsignal][tdc_ihit];
+		UInt_t htdcindex = htdcindex_base + ibar;
+
+		if (tdc_signals[itdcsignal] == "Time") {
+		  // cout << "Time = " << tdcval << endl;
+		  htdc[htdcindex]->Fill(tdcval);
+		}
+		if (tdc_signals[itdcsignal] == "TimeRaw") {
+		  // cout << "RawTime = " << tdcrawval << endl;
+		  htdc[htdcindex]->Fill(tdcrawval);
+		}
+	      }
+	    }
+	  }
+	}
+      }
+    }
+  }
+  return;
+}
+
+void rawdraw_hhodo(TString histname) {
+
+  TH1F* h;
+
+  h = (TH1F*) gDirectory->Get(histname);
+  if(!h) {
+    UserScript();
+    h = (TH1F*) gDirectory->Get(histname);
+    if(!h) {
+      cout << "User histogram " << histname << " not found" << endl;
+      exit(1);
+    }
+  }
+  h->Draw();
+}
+
diff --git a/onlineGUI/Macros/rawdraw_phodo.C b/onlineGUI/Macros/rawdraw_phodo.C
new file mode 100755
index 0000000000000000000000000000000000000000..077221f423146deef4dc87337d0dcf4126d51aa7
--- /dev/null
+++ b/onlineGUI/Macros/rawdraw_phodo.C
@@ -0,0 +1,349 @@
+// UserScript.C
+//
+// Helper macro to build additional histograms
+
+void UserScript()
+{
+
+  const UInt_t NPLANES  = 4;
+  const UInt_t NSIDES   = 2;
+  const UInt_t MAXBARS  = 100;  // FIX ME: Parameter should be 21
+  const UInt_t NSIGNALS = 2;
+  const UInt_t NADCSIGNALS = 7;
+  const UInt_t NTDCSIGNALS = 2;
+
+  const TString SPECTROMETER = "P";
+  const TString DETECTOR = "hod";
+
+  const TString plane_names[NPLANES] = {"1x", "1y", "2x", "2y"};
+  const UInt_t  nbars[NPLANES] = {13, 13, 14, 21};
+  const TString sides[NSIDES] = {"neg", "pos"};
+  const TString signals[NSIGNALS] = {"Adc", "Tdc"};
+  const TString adc_signals[NADCSIGNALS] = {"Ped", "PedRaw", "PulseInt", "PulseIntRaw", 
+					    "PulseAmp", "PulseAmpRaw", "PulseTimeRaw"};
+  const TString tdc_signals[NTDCSIGNALS] = {"Time", "TimeRaw"};
+  
+  const Double_t ADCPED_MIN   = 400.0;
+  const Double_t ADCPED_MAX   = 600.0;
+  const Int_t    ADCPED_NBINS = 200;
+
+  const Double_t ADCPEDRAW_MIN   = 1700.0;
+  const Double_t ADCPEDRAW_MAX   = 2300.0;
+  const Int_t    ADCPEDRAW_NBINS = 600;
+
+  const Double_t ADCINT_MIN   = 0.0;
+  const Double_t ADCINT_MAX   = 25000.0;
+  const Int_t    ADCINT_NBINS = 2500;
+
+  const Double_t ADCINTRAW_MIN   = 0.0;
+  const Double_t ADCINTRAW_MAX   = 25000.0;
+  const Int_t    ADCINTRAW_NBINS = 2500;
+
+  const Double_t ADCAMP_MIN   = 0.0;
+  const Double_t ADCAMP_MAX   = 4100.0;
+  const Int_t    ADCAMP_NBINS = 410;
+
+  const Double_t ADCAMPRAW_MIN   = 0.0;
+  const Double_t ADCAMPRAW_MAX   = 4100.0;
+  const Int_t    ADCAMPRAW_NBINS = 410;
+
+  const Double_t ADCPTRAW_MIN   = 500.0;
+  const Double_t ADCPTRAW_MAX   = 2500.0;
+  const Int_t    ADCPTRAW_NBINS = 200;
+
+  const Double_t TDC_MIN   = -1800.0;
+  const Double_t TDC_MAX   = -600.0;
+  const Int_t    TDC_NBINS = 120;
+
+  const Double_t RAWTDC_MIN   = 4000.0;
+  const Double_t RAWTDC_MAX   = 7000.0;
+  const Int_t    RAWTDC_NBINS = 300;
+
+  Int_t nadchits[NPLANES][NSIDES][NSIGNALS];
+  Int_t ntdchits[NPLANES][NSIDES][NSIGNALS];
+
+  Double_t adc_paddles[NPLANES][NSIDES][NSIGNALS][MAXBARS];
+  Double_t tdc_paddles[NPLANES][NSIDES][NSIGNALS][MAXBARS];
+
+  Double_t ped_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  Double_t pedraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+
+  Double_t int_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  Double_t intraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  
+  Double_t amp_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  Double_t ampraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+  
+  Double_t ptraw_values[NPLANES][NSIDES][NADCSIGNALS][MAXBARS];
+
+  Double_t tdc_values[NPLANES][NSIDES][NTDCSIGNALS][MAXBARS];
+  Double_t tdcraw_values[NPLANES][NSIDES][NTDCSIGNALS][MAXBARS];
+
+  TH1F* hadc[NPLANES*NSIDES*NADCSIGNALS*MAXBARS];
+  TH1F* htdc[NPLANES*NSIDES*NTDCSIGNALS*MAXBARS];
+
+  Int_t adc_ihit, tdc_ihit;
+
+  TTree *T=(TTree*)gDirectory->Get("T");
+
+  for(UInt_t ip = 0; ip < NPLANES; ip++) {
+    for(UInt_t iside = 0; iside < NSIDES; iside++) {
+      for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+
+	if(signals[isignal] == "Adc") {  
+	  TString adc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString adc_ndata_name = "Ndata."+adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_ndata_name, &nadchits[ip][iside][isignal]);
+	  TString adc_paddle_name = adc_base_name+"Counter";
+	  T->SetBranchAddress(adc_paddle_name, &adc_paddles[ip][iside][isignal][0]);
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    if (adc_signals[iadcsignal] == "Ped") {
+	      TString pedlist_name = adc_base_name+"Ped";
+	      T->SetBranchAddress(pedlist_name, &ped_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PedRaw") {
+	      TString pedrawlist_name = adc_base_name+"PedRaw";
+	      T->SetBranchAddress(pedrawlist_name, &pedraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseInt") {   
+	      TString intlist_name = adc_base_name+"PulseInt";
+	      T->SetBranchAddress(intlist_name, &int_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseIntRaw") {
+	      TString intrawlist_name = adc_base_name+"PulseIntRaw";
+	      T->SetBranchAddress(intrawlist_name, &intraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseAmp") {   
+	      TString amplist_name = adc_base_name+"PulseAmp";
+	      T->SetBranchAddress(amplist_name, &amp_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseAmpRaw") {
+	      TString amprawlist_name = adc_base_name+"PulseAmpRaw";
+	      T->SetBranchAddress(amprawlist_name, &ampraw_values[ip][iside][iadcsignal][0]);
+	    }
+	    if (adc_signals[iadcsignal] == "PulseTimeRaw") {
+	      TString ptrawlist_name = adc_base_name+"PulseTimeRaw";
+	      T->SetBranchAddress(ptrawlist_name, &ptraw_values[ip][iside][iadcsignal][0]);
+	    }
+	  }
+	}
+	
+	if(signals[isignal] == "Tdc") {  
+	  TString tdc_base_name = SPECTROMETER+"."+DETECTOR+"."+
+	    plane_names[ip]+"."+sides[iside]+signals[isignal];
+	  TString tdc_ndata_name = "Ndata."+tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_ndata_name, &ntdchits[ip][iside][isignal]);
+	  TString tdc_paddle_name = tdc_base_name+"Counter";
+	  T->SetBranchAddress(tdc_paddle_name, &tdc_paddles[ip][iside][isignal][0]);
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    if (tdc_signals[itdcsignal] == "Time") {
+	      TString tdclist_name = tdc_base_name+"Time";
+	      T->SetBranchAddress(tdclist_name, &tdc_values[ip][iside][itdcsignal][0]);
+	    }
+	    if (tdc_signals[itdcsignal] == "TimeRaw") {
+	      TString tdcrawlist_name = tdc_base_name+"TimeRaw";
+	      T->SetBranchAddress(tdcrawlist_name, &tdcraw_values[ip][iside][itdcsignal][0]);
+	    }
+	  }
+	}
+
+	if(signals[isignal] == "Adc") {
+	  for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      UInt_t hadcindex = ip*NSIDES*NADCSIGNALS*MAXBARS
+		+iside*NADCSIGNALS*MAXBARS+iadcsignal*MAXBARS+ibar;
+	      TString iadcbarname = Form("%d",ibar+1);
+	      TString adctitle= "hadc"+plane_names[ip]+iadcbarname+sides[iside]
+		+" "+adc_signals[iadcsignal];
+	      TString adcname="uhadc"+plane_names[ip]+iadcbarname+sides[iside]+
+		adc_signals[iadcsignal];
+
+	      if (adc_signals[iadcsignal] == "Ped") {
+		UInt_t   nadcbins = ADCPED_NBINS;
+		Double_t hadcmin  = ADCPED_MIN;
+		Double_t hadcmax  = ADCPED_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PedRaw") {
+		UInt_t   nadcbins = ADCPEDRAW_NBINS;
+		Double_t hadcmin  = ADCPEDRAW_MIN;
+		Double_t hadcmax  = ADCPEDRAW_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseInt") {
+		UInt_t   nadcbins = ADCINT_NBINS;
+		Double_t hadcmin  = ADCINT_MIN;
+		Double_t hadcmax  = ADCINT_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseIntRaw") {
+		UInt_t   nadcbins = ADCINTRAW_NBINS;
+		Double_t hadcmin  = ADCINTRAW_MIN;
+		Double_t hadcmax  = ADCINTRAW_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseAmp") {
+		UInt_t   nadcbins = ADCAMP_NBINS;
+		Double_t hadcmin  = ADCAMP_MIN;
+		Double_t hadcmax  = ADCAMP_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseAmpRaw") {
+		UInt_t   nadcbins = ADCAMPRAW_NBINS;
+		Double_t hadcmin  = ADCAMPRAW_MIN;
+		Double_t hadcmax  = ADCAMPRAW_MAX;
+	      }
+	      if (adc_signals[iadcsignal] == "PulseTimeRaw") {
+		UInt_t   nadcbins = ADCPTRAW_NBINS;
+		Double_t hadcmin  = ADCPTRAW_MIN;
+		Double_t hadcmax  = ADCPTRAW_MAX;
+	      }
+	      hadc[hadcindex]=new TH1F(adcname, adctitle, nadcbins, hadcmin, hadcmax);
+	    }
+	  }
+	}
+
+	if(signals[isignal] == "Tdc") {
+	  for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+	    for(UInt_t ibar = 0; ibar < nbars[ip]; ibar++) {
+	      UInt_t htdcindex = ip*NSIDES*NTDCSIGNALS*MAXBARS
+		+iside*NTDCSIGNALS*MAXBARS+itdcsignal*MAXBARS+ibar;
+	      TString itdcbarname = Form("%d",ibar+1);
+	      TString tdctitle= "htdc"+plane_names[ip]+itdcbarname+sides[iside]
+		+" "+tdc_signals[itdcsignal];
+	      TString tdcname="uhtdc"+plane_names[ip]+itdcbarname+sides[iside]+
+		tdc_signals[itdcsignal];
+
+	      if (tdc_signals[itdcsignal] == "TimeRaw") {
+		UInt_t   ntdcbins = RAWTDC_NBINS;
+		Double_t htdcmin  = RAWTDC_MIN;
+		Double_t htdcmax  = RAWTDC_MAX;
+	      }
+	      if (tdc_signals[itdcsignal] == "Time") {
+		UInt_t   ntdcbins = TDC_NBINS;
+		Double_t htdcmin  = TDC_MIN;
+		Double_t htdcmax  = TDC_MAX;
+	      }
+	      htdc[htdcindex]=new TH1F(tdcname, tdctitle, ntdcbins, htdcmin, htdcmax);
+	    }
+	  }
+	}
+      }
+    }
+  }
+
+  // Loop over the events, filling the histograms
+  for(UInt_t iev = 0, N = T->GetEntries(); iev < N; iev++) {
+    T->GetEntry(iev);
+
+     for(UInt_t ip = 0; ip < NPLANES; ip++) {
+      for(UInt_t iside = 0; iside < NSIDES; iside++) {
+	for(UInt_t isignal = 0; isignal < NSIGNALS; isignal++) {
+     
+	  if(signals[isignal] == "Adc") {
+	    for (UInt_t iadcsignal = 0; iadcsignal < NADCSIGNALS; iadcsignal++) {
+
+	      UInt_t hadcindex_base = ip*NSIDES*NADCSIGNALS*MAXBARS
+		+iside*NADCSIGNALS*MAXBARS+iadcsignal*MAXBARS;
+
+	      for(Int_t adc_ihit = 0; adc_ihit < nadchits[ip][iside][isignal]; adc_ihit++) {
+
+		UInt_t ibar = TMath::Nint(adc_paddles[ip][iside][isignal][adc_ihit]) - 1;
+
+		if (adc_signals[iadcsignal] == "Ped")
+		  Double_t pedval = ped_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PedRaw")  
+		  Double_t pedrawval = pedraw_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseInt")
+		  Double_t intval = int_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseIntRaw")  
+		  Double_t intrawval = intraw_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseAmp")
+		  Double_t ampval = amp_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseAmpRaw")  
+		  Double_t amprawval = ampraw_values[ip][iside][iadcsignal][adc_ihit];
+		if (adc_signals[iadcsignal] == "PulseTimeRaw")  
+		  Double_t ptrawval = ptraw_values[ip][iside][iadcsignal][adc_ihit];
+		
+		UInt_t hadcindex = hadcindex_base + ibar;
+
+		// cout << "hadcindex = " << hadcindex << endl;
+		
+		if (hadcindex < NPLANES*NSIDES*NADCSIGNALS*MAXBARS) {
+		  if (adc_signals[iadcsignal] == "Ped") {
+		    // cout << "pedval = " << pedval << endl;
+		    hadc[hadcindex]->Fill(pedval);
+		  }
+		  if (adc_signals[iadcsignal] == "PedRaw") {
+		    // cout << "pedrawval = " << pedrawval << endl;
+		    hadc[hadcindex]->Fill(pedrawval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseInt") {
+		    // cout << "intval = " << intval << endl;
+		    hadc[hadcindex]->Fill(intval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseIntRaw") {
+		    // cout << "intrawval = " << intrawval << endl;
+		    hadc[hadcindex]->Fill(intrawval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseAmp") {
+		    // cout << "ampval = " << ampval << endl;
+		    hadc[hadcindex]->Fill(ampval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseAmpRaw") {
+		    // cout << "amprawval = " << amprawval << endl;
+		    hadc[hadcindex]->Fill(amprawval);
+		  }
+		  if (adc_signals[iadcsignal] == "PulseTimeRaw") {
+		    // cout << "ptrawval = " << ptrawval << endl;
+		    hadc[hadcindex]->Fill(ptrawval);
+		  }
+		}
+	      }
+	    }
+	  }
+
+	  if(signals[isignal] == "Tdc") {
+	    for (UInt_t itdcsignal = 0; itdcsignal < NTDCSIGNALS; itdcsignal++) {
+
+	      UInt_t htdcindex_base = ip*NSIDES*NTDCSIGNALS*MAXBARS
+		+iside*NTDCSIGNALS*MAXBARS+itdcsignal*MAXBARS;
+
+	      for(Int_t tdc_ihit = 0; tdc_ihit < ntdchits[ip][iside][isignal]; tdc_ihit++) {
+
+		UInt_t ibar = TMath::Nint(tdc_paddles[ip][iside][isignal][tdc_ihit]) - 1;
+
+		Double_t tdcval = tdc_values[ip][iside][itdcsignal][tdc_ihit];
+		Double_t tdcrawval = tdcraw_values[ip][iside][itdcsignal][tdc_ihit];
+		UInt_t htdcindex = htdcindex_base + ibar;
+
+		if (tdc_signals[itdcsignal] == "Time") {
+		  // cout << "Time = " << tdcval << endl;
+		  htdc[htdcindex]->Fill(tdcval);
+		}
+		if (tdc_signals[itdcsignal] == "TimeRaw") {
+		  // cout << "RawTime = " << tdcrawval << endl;
+		  htdc[htdcindex]->Fill(tdcrawval);
+		}
+	      }
+	    }
+	  }
+	}
+      }
+    }
+  }
+  return;
+}
+
+void rawdraw_phodo(TString histname) {
+
+  TH1F* h;
+
+  h = (TH1F*) gDirectory->Get(histname);
+  if(!h) {
+    UserScript();
+    h = (TH1F*) gDirectory->Get(histname);
+    if(!h) {
+      cout << "User histogram " << histname << " not found" << endl;
+      exit(1);
+    }
+  }
+  h->Draw();
+}
+
diff --git a/onlineGUI/README.md b/onlineGUI/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..2f31aaf6a437de08a428959212c5741bb10b23d6
--- /dev/null
+++ b/onlineGUI/README.md
@@ -0,0 +1,37 @@
+onlineGUI
+============================================
+This is the GUI that is used for the monitoring of online replay.
+
+Directory structure
+----------------------
+* Config : directory with the  onlineGUI configuration files
+  *Files in Config:
+    *HMS/HODO/raw_hhodoana.cfg (Plots standard  hisotgrams in DEF-files/HMS/HODO/hhodoana.def )
+    *SHMS/HODO/raw_phodoana.cfg (Plots standard  hisotgrams in DEF-files/SHMS/HODO/phodoana.def )
+    *HMS/HODO/raw_hhodo_2d.cfg (2d plots of Good HMS Hodoscope data, efficiency plots)
+    *HMS/HODO/good_hhodo_2d.cfg (2d plots of Good HMS Hodoscope data, efficiency plots)
+    *SHMS/HODO/good_phodo_2d.cfg (2d of Good SHMS Hodoscope data, efficiency plots)
+* Macros : directory with root macros that can be called by the onlineGUI code
+  * Files in Macro: 
+    * overlay.C (script to overlay 2 histograms)
+    * rawdraw_2d_hhodo.C ( Used by raw_hhodo_2d.cfg)
+    * rawdraw_2d_phodo.C ( Used by raw_phodo_2d.cfg)
+    * gooddraw_2d_hhodo.C ( Used by good_hhodo_2d.cfg)
+    * gooddraw_2d_phodo.C ( Used by good_phodo_2d.cfg)
+    * hodo_efficiency.C ( Used by good_phodo_2d.cfg,good_hhodo_2d.cfg)
+* onlineGUI_v1.2.1: directory with the online.c and other files.
+
+Compiling code
+----------------------
+* In onlineGUI_v1.2.1 directory type: make
+* executable "online" is created in the onlineGUI directory
+
+Documentation and Running the code
+----------------
+* The pdf file  guiHOWTO2007.pdf documents how to use the code
+* One method to run the code is:
+  * online -f Config/hmsdc.cfg -r 60
+  * "60" is the run number
+  * This assumes that hmsdc.cfg as a line such as:protorootfile ../ROOTfiles/hms1190_XXXXX.root
+
+
diff --git a/onlineGUI/onlineGUI_v1.2.1/Makefile b/onlineGUI/onlineGUI_v1.2.1/Makefile
index 51e80b0e909f6a955809afbd7f12e4ce13258f4d..0fee22ee598a73e7de8941dbaf5d256ca0a8a547 100644
--- a/onlineGUI/onlineGUI_v1.2.1/Makefile
+++ b/onlineGUI/onlineGUI_v1.2.1/Makefile
@@ -1,6 +1,6 @@
 # Makefile for standalone version of panguin/onlineGUI
-#  - B. Moffit 
-# 
+#  - B. Moffit
+#
 
 # Choose the compiler.
 GCC=g++
@@ -10,14 +10,15 @@ ifdef INSURE
   GLD=insure
 endif
 
+ROOTMVERSION  = $(shell root-config --version | cut -f1 -d.)
 ROOTLIBS      = $(shell root-config --libs)
 ROOTGLIBS     = $(shell root-config --glibs)
 INCLUDES      = -I$(ROOTSYS)/include
 CXX           = $(GCC)
 CXXFLAGS      = -Wall -fno-exceptions -fPIC $(INCLUDES) -fpermissive
 LD            = $(GLD)
-LDFLAGS       = 
-SOFLAGS       = -shared 
+LDFLAGS       =
+SOFLAGS       = -shared
 GLIBS         = $(ROOTGLIBS) -L/usr/X11R6/lib -lXpm -lX11
 LIBS          = $(GLIBS) $(ROOTLIBS) $(ROOTGLIBS)
 
@@ -25,9 +26,13 @@ MAKEDEPEND    = $(GCC)
 
 ALL_LIBS = $(LIBS)
 
-
 CXXFLAGS += -DSTANDALONE
 
+ifeq ($(ROOTMVERSION), 6)
+	CXXFLAGS += -std=c++11
+	MAKEDEPEND += -std=c++11
+endif
+
 # Insert extra headers needed by GetRootFileName.C or GetRunNumber.C
 ifdef PAN_SRC_PATH
 	PANSRCPATH = $(PAN_SRC_PATH)
@@ -42,7 +47,7 @@ endif
 
 SRC = online.C
 DEPS = $(SRC:.C=.d)
-OBJS = $(SRC:.C=.o) 
+OBJS = $(SRC:.C=.o)
 HEAD = $(SRC:.C=.h)
 
 # Make the dictionary
@@ -54,12 +59,12 @@ PROGS = online
 install: all
 	 mv $(PROGS) ../
 
-all: $(PROGS) 
+all: $(PROGS)
 
-$(PROGS): $(OBJS) $(SRC) $(HEAD) 
+$(PROGS): $(OBJS) $(SRC) $(HEAD)
 	rm -f $@
 	@echo "Generating" $@
-	$(LD) $(CXXFLAGS) -o $@ $(OBJS) $(ALL_LIBS) 
+	$(LD) $(CXXFLAGS) -o $@ $(OBJS) $(ALL_LIBS)
 
 # Dictionary
 onlineDict.C: $(DOBJS) onlineLinkDef.h
@@ -71,7 +76,7 @@ clean:
 	rm -f *.o core *~ *.d *.tar *.so  *Dict* $(PROGS)
 
 realclean:  clean
-	rm -f *.d ../$(PROGS) 
+	rm -f *.d ../$(PROGS)
 
 .SUFFIXES:
 .SUFFIXES: .c .cc .cpp .C .o .d
@@ -87,5 +92,3 @@ realclean:  clean
 	      [ -s $@ ] || rm -f $@'
 
 -include $(DEPS)
-
-
diff --git a/onlineGUI/onlineGUI_v1.2.1/guiHOWTO2007.pdf b/onlineGUI/onlineGUI_v1.2.1/guiHOWTO2007.pdf
deleted file mode 100644
index 254bcfaefa1a588802bf9009961886d572a65bc0..0000000000000000000000000000000000000000
Binary files a/onlineGUI/onlineGUI_v1.2.1/guiHOWTO2007.pdf and /dev/null differ
diff --git a/onlineGUI/onlineGUI_v1.2.1/online.C b/onlineGUI/onlineGUI_v1.2.1/online.C
old mode 100644
new mode 100755
index f397908e1f0cb7ef8f917569505d9618375ddb51..ad2a619c2e447bd6203e770daae9bd0ca470571f
--- a/onlineGUI/onlineGUI_v1.2.1/online.C
+++ b/onlineGUI/onlineGUI_v1.2.1/online.C
@@ -1,2015 +1,2083 @@
-///////////////////////////////////////////////////////////////////
-//  Macro to help with online analysis
-//    B. Moffit (moffit@jlab.org)
-//    - Originally written in Oct. 2003
-//  Documentation and updates available at:
-//    http://www.jlab.org/~moffit/onlineGUI/
-//
-
-#include "online.h"
-#include <string>
-#include <fstream>
-#include <iostream>
-#include <list>
-#include <TMath.h>
-#include <TBranch.h>
-#include <TGClient.h>
-#include <TCanvas.h>
-#include <TStyle.h>
-#include <TROOT.h>
-#include <TGImageMap.h>
-#include <TGFileDialog.h>
-#include <TKey.h>
-#include <TObjString.h>
-#include <TSystem.h>
-#include <TLatex.h>
-#include <TText.h>
-#include <TGraph.h>
-#include "GetRootFileName.C"
-#include "GetRunNumber.C"
-#include "TPaveText.h"
-#ifdef STANDALONE
-#include <TApplication.h>
-#endif
-// #define DEBUGGETFILEOBJECTS
-// #define DEBUGPARSE
-// #define DEBUG
-//#define DEBUG2
-//#define NOISY
-//#define INTERNALSTYLE
-
-TString guiDirectory = "onlineGUI_v1.2.1/";
-
-///////////////////////////////////////////////////////////////////
-//  Class: OnlineConfig
-//
-//     Utility class that reads in a text file (.cfg) and
-//     stores it's contents.
-//
-//
-
-OnlineConfig::OnlineConfig() 
-{
-  // Constructor.  Without an argument, will use default "standard" config
-  fMonitor = kFALSE;
-  OnlineConfig("standard");
-}
-
-OnlineConfig::OnlineConfig(TString anatype) 
-{
-  // Constructor.  Takes the config anatype as the only argument.
-  //  Loads up the configuration file, and stores it's contents for access.
-  
-  confFileName = anatype;
-  if(!confFileName.Contains(".cfg"))
-    confFileName += ".cfg";
-  fMonitor = kFALSE;
-  fFoundCfg = kFALSE;
-
-  // Attempt to find the config file in specified (first argument,
-  // relative or absolute) location, then in guiDirectory
-  fConfFile = new ifstream(confFileName.Data());
-  if ( ! (*fConfFile) ) {
-    cerr << "OnlineConfig() WARNING: config file " << confFileName.Data()
-         << " does not exist" << endl;
-    cerr << " Checking the " << guiDirectory << " directory" << endl;
-    confFileName.Prepend(guiDirectory+"/");
-    fConfFile = new ifstream(confFileName.Data());
-    if ( ! (*fConfFile) ) {
-      // Didn't find it... load up the default config
-      confFileName = guiDirectory+"/default.cfg";
-      cout << "OnlineConfig()  Trying " << confFileName.Data() 
-	   << " as default configuration." << endl
-	   << " (May be ok.)" << endl;
-      fConfFile = new ifstream(confFileName.Data());
-      if ( ! (*fConfFile) ) {
-	cerr << "OnlineConfig() WARNING: no file "
-	     << confFileName.Data() <<endl;
-	cerr << "You need a configuration to run.  Ask an expert."<<endl;
-	fFoundCfg = kFALSE;
-	//      return;
-      } else {
-	fFoundCfg = kTRUE;
-      }
-    } else {
-      fFoundCfg = kTRUE;
-    }
-  } else {
-    fFoundCfg = kTRUE;
-  }
-
-  if(fFoundCfg) {
-  clog << "GUI Configuration loading from " 
-       << confFileName.Data() << endl;
-  }
-
-  ParseFile();
-
-  // Load up a user configurable style (if it exists)
-  TString styleFile = guiDirectory+"onlineGUI_Style.C";
-  if(!gSystem->AccessPathName(styleFile))
-     gROOT->Macro(styleFile);
-
-  fConfFile->close();
-  delete fConfFile;
-
-}
-
-void OnlineConfig::ParseFile() 
-{
-  // Reads in the Config File, and makes the proper calls to put
-  //  the information contained into memory.
-
-  if(!fFoundCfg) {
-    return;
-  }
-
-  TString comment = "#";
-  vector<TString> strvect;
-  TString sinput, sline;
-  while (sline.ReadLine(*fConfFile)) {
-    strvect.clear();
-    // Strip away leading and trailing spaces.
-    sline = sline.Strip(TString::kBoth,' ');
-    // If the line starts with a comment, skip it.
-    if(sline.BeginsWith(comment)) continue;
-    // If the line contains a comment, split it up into two and keep
-    // the uncommented (first) part
-    if(sline.Contains(comment)) {
-      TObjArray *tmpoarr = sline.Tokenize(comment);
-      TObjString *tmpostr = (TObjString*)tmpoarr->First();
-      sline = tmpostr->GetString().Strip(TString::kTrailing,' ');
-      delete tmpoarr;
-    }
-    // Now split up the line according to 's and spaces.  This is for
-    // looking for the histogram using it's title (which may contain
-    // spaces) instead of its name.
-    if(sline.Contains("'")) {
-      TObjArray *tmpoarr = sline.Tokenize("'");
-      Bool_t quote_on_odd = kTRUE;
-      if(!(sline.BeginsWith("'"))) quote_on_odd=kFALSE;
-      TIterator *next = tmpoarr->MakeIterator();
-      TObjString *tmpostr; Bool_t odd=kTRUE;
-      while((tmpostr=(TObjString*)next->Next())!=NULL) {
-	if((quote_on_odd&&odd) || (!quote_on_odd&&!odd)) {
-	  strvect.push_back(tmpostr->GetString());
-	  odd = !odd;
-	} else {
-	  TObjArray *tmpoarr2 = tmpostr->GetString().Tokenize(" ");
-	  TIterator *next2 = tmpoarr2->MakeIterator();
-	  TObjString *tmpostr2;
-	  while((tmpostr2=(TObjString*)next2->Next())!=NULL) {
-	    strvect.push_back(tmpostr2->GetString());
-	  }
-	  delete tmpoarr2;
-	  odd = !odd;
-	}
-      }
-      delete tmpoarr;
-    } else { // No 's.. just split according to spaces
-      TObjArray *tmpoarr2 = sline.Tokenize(" ");
-      TIterator *next2 = tmpoarr2->MakeIterator();
-      TObjString *tmpostr2;
-      while((tmpostr2=(TObjString*)next2->Next())!=NULL) {
-	strvect.push_back(tmpostr2->GetString());
-      }
-      delete tmpoarr2;
-    }
-    sConfFile.push_back(strvect);
-    
-}
-
-#ifdef DEBUGPARSE
-  for(UInt_t ii=0; ii<sConfFile.size(); ii++) {
-    cout << "Line " << ii << endl << "  ";
-    for(UInt_t jj=0; jj<sConfFile[ii].size(); jj++) 
-      cout << sConfFile[ii][jj] << " ";
-    cout << endl;
-  }
-#endif
-
-  cout << "     " << sConfFile.size() << " lines read from " 
-       << confFileName << endl;
-  
-}
-
-Bool_t OnlineConfig::ParseConfig() 
-{
-  //  Goes through each line of the config [must have been ParseFile()'d]
-  //   and interprets.
-
-  if(!fFoundCfg) {
-    return kFALSE;
-  }
-
-  UInt_t command_cnt=0;
-  UInt_t j=0;
-  Bool_t hasMultiPlots=kFALSE;
-  // If statement for each high level command (cut, newpage, etc)
-  for(UInt_t i=0;i<sConfFile.size();i++) {
-    // "newpage" command
-    if(sConfFile[i][0] == "newpage") {
-      // sConfFile[i] is first of pair
-      for(j=i+1;j<sConfFile.size();j++) {
-	if(sConfFile[j][0] != "newpage") {
-	  // Count how many commands within the page
-	  command_cnt++;
-	} else break;
-      }
-      pageInfo.push_back(make_pair(i,command_cnt));
-      i += command_cnt;
-      command_cnt=0;
-    }
-    if(sConfFile[i][0] == "watchfile") {
-      fMonitor = kTRUE;
-    }
-    if(sConfFile[i][0] == "definecut") {
-      if(sConfFile[i].size()>3) {
-	cerr << "cut command has too many arguments" << endl;
-	continue;
-      }
-      TCut tempCut(sConfFile[i][1],sConfFile[i][2]);
-      cutList.push_back(tempCut);
-    }
-    if(sConfFile[i][0] == "rootfile") {
-      if(sConfFile[i].size() != 2) {
-	cerr << "WARNING: rootfile command does not have the "
-	     << "correct number of arguments"
-	     << endl;
-	continue;
-      }
-      if(!rootfilename.IsNull()) {
-	cerr << "WARNING: too many rootfile's defined. " 
-	     << " Will only use the first one." 
-	     << endl;
-	continue;
-      }
-      rootfilename = sConfFile[i][1];
-    }
-    if(sConfFile[i][0] == "goldenrootfile") {
-      if(sConfFile[i].size() != 2) {
-	cerr << "WARNING: goldenfile command does not have the "
-	     << "correct number of arguments"
-	     << endl;
-	continue;
-      }
-      if(!goldenrootfilename.IsNull()) {
-	cerr << "WARNING: too many goldenrootfile's defined. " 
-	     << " Will only use the first one." 
-	     << endl;
-	continue;
-      }
-      goldenrootfilename = sConfFile[i][1];
-    }
-    if(sConfFile[i][0] == "protorootfile") {
-      if(sConfFile[i].size() != 2) {
-	cerr << "WARNING: protorootfile command does not have the "
-	     << "correct number of arguments"
-	     << endl;
-	continue;
-      }
-      if(!protorootfile.IsNull()) {
-	cerr << "WARNING: too many protorootfile's defined. " 
-	     << " Will only use the first one." 
-	     << endl;
-	continue;
-      }
-      protorootfile = sConfFile[i][1];
-    }
-    if(sConfFile[i][0] == "guicolor") {
-      if(sConfFile[i].size() != 2) {
-	cerr << "WARNING: guicolor command does not have the "
-	     << "correct number of arguments (needs 1)"
-	     << endl;
-	continue;
-      }
-      if(!guicolor.IsNull()) {
-	cerr << "WARNING: too many guicolor's defined. " 
-	     << " Will only use the first one." 
-	     << endl;
-	continue;
-      }
-      guicolor = sConfFile[i][1];
-    }
-    if(sConfFile[i][0] == "plotsdir") {
-      if(sConfFile[i].size() != 2) {
-	cerr << "WARNING: plotsdir command does not have the "
-	     << "correct number of arguments (needs 1)"
-	     << endl;
-	continue;
-      }
-      if(!plotsdir.IsNull()) {
-	cerr << "WARNING: too many plotdir's defined. " 
-	     << " Will only use the first one." 
-	     << endl;
-	continue;
-      }
-      plotsdir = sConfFile[i][1];
-    }
-    if(sConfFile[i][0] == "multiplot") {
-      hasMultiPlots = kTRUE;
-    }
-
-  }
-
-  if(hasMultiPlots) {
-    if(!ParseForMultiPlots()) {
-      cerr << "ParseForMultiPlots() Failed" << endl;
-    }
-  }
-
-#ifdef NOISY
-  for(UInt_t i=0; i<GetPageCount(); i++) {
-    cout << "Page " << i << " (" << GetPageTitle(i) << ")"
-	 << " will draw " << GetDrawCount(i) 
-	 << " histograms." << endl;
-  }
-#endif
-
-  cout << "Number of pages defined = " << GetPageCount() << endl;
-  cout << "Number of cuts defined = " << cutList.size() << endl;
-
-  if (fMonitor) 
-    cout << "Will periodically update plots" << endl;
-  if(!goldenrootfilename.IsNull()) {
-    cout << "Will compare chosen histrograms with the golden rootfile: " 
-	 << endl 
-	 << goldenrootfilename << endl;
-  }
-
-  return kTRUE;
-
-}
-
-Bool_t OnlineConfig::ParseForMultiPlots() {
-  // Parse through each line of sConfFile,
-  // and replace each "multiplot" command with a real draw entry
-
-  vector < vector <TString> > newConfFile;
-  for(UInt_t iter=0;iter<sConfFile.size();iter++) {
-    if(sConfFile[iter][0]=="multiplot") {
-      // First argument is the low limit, 
-      // second argument is the high limit
-      UInt_t lolimit = (UInt_t)sConfFile[iter][1].Atoi();
-      UInt_t hilimit = (UInt_t)sConfFile[iter][2].Atoi();
-      
-      // For the rest of the line, replace all of the XXXXX's
-      // with an iteration from lolimit to hilimit.
-      for(UInt_t imult=lolimit;imult<=hilimit;imult++) {
-	vector <TString> newline;
-	for(UInt_t ielem=3; ielem<sConfFile[iter].size();ielem++) {
-	  TString origString = sConfFile[iter][ielem];
-	  TString newString = origString;
-	  newString.ReplaceAll("XXXXX",Form("%d",imult));
-	  newline.push_back(newString);
-	}
-	newConfFile.push_back(newline);
-      }
-    } else {
-      newConfFile.push_back(sConfFile[iter]);
-    }
-  }
-
-#ifdef DEBUG
-  for(UInt_t iter=0;iter<newConfFile.size();iter++) {
-    for(UInt_t iline=0;iline<newConfFile[iter].size();iline++) {
-      cout << newConfFile[iter][iline] << " ";
-    }
-    cout << endl;
-  }
-#endif
-
-  // Out with the old, in with the new.
-  sConfFile.clear();
-  sConfFile = newConfFile;
-
-  // Now need to recalculate pageInfo.
-  UInt_t command_cnt=0;
-  UInt_t j=0;
-
-  pageInfo.clear();
-  // If statement for each high level command (cut, newpage, etc)
-  for(UInt_t i=0;i<sConfFile.size();i++) {
-    // "newpage" command
-    if(sConfFile[i][0] == "newpage") {
-      // sConfFile[i] is first of pair
-      for(j=i+1;j<sConfFile.size();j++) {
-	if(sConfFile[j][0] != "newpage") {
-	  // Count how many commands within the page
-	  command_cnt++;
-	} else break;
-      }
-      pageInfo.push_back(make_pair(i,command_cnt));
-      i += command_cnt;
-      command_cnt=0;
-    }
-  }
-
-  return kTRUE;
-
-}
-
-TCut OnlineConfig::GetDefinedCut(TString ident) {
-  // Returns the defined cut, according to the identifier
-
-  for(UInt_t i=0; i<cutList.size(); i++) {
-    if((TString)cutList[i].GetName() == ident.Data()) {
-      TCut tempCut = cutList[i].GetTitle();
-      return tempCut;
-    }
-  }
-  return "";
-}
-
-vector <TString> OnlineConfig::GetCutIdent() {
-  // Returns a vector of the cut identifiers, specified in config
-  vector <TString> out;
-
-  for(UInt_t i=0; i<cutList.size(); i++) {
-    out.push_back(cutList[i].GetName());
-  }
-
-  return out;
-}
-
-Bool_t OnlineConfig::IsLogx(UInt_t page) {
-// Check if last word on line is "logx"
-
-  UInt_t page_index = pageInfo[page].first;
-  Int_t word_index = sConfFile[page_index].size()-1;
-  if (word_index <= 0) return kFALSE;
-  TString option = sConfFile[page_index][word_index];  
-  if(option == "logx") return kTRUE;
-  return kFALSE;
-
-}
-
-Bool_t OnlineConfig::IsLogy(UInt_t page) {
-// Check if last word on line is "logy"
-
-  UInt_t page_index = pageInfo[page].first;
-  Int_t word_index = sConfFile[page_index].size()-1;
-  if (word_index <= 0) return kFALSE;
-  TString option = sConfFile[page_index][word_index];  
-  if(option == "logy") return kTRUE;
-  return kFALSE;
-
-}
-
-Bool_t OnlineConfig::IsLogz(UInt_t page) {
-// Check if last word on line is "logz"
-
-  UInt_t page_index = pageInfo[page].first;
-  Int_t word_index = sConfFile[page_index].size()-1;
-  if (word_index <= 0) return kFALSE;
-  TString option = sConfFile[page_index][word_index];  
-  if(option == "logz") return kTRUE;
-  return kFALSE;
-
-}
-
-
-pair <UInt_t, UInt_t> OnlineConfig::GetPageDim(UInt_t page) 
-{
-  // If defined in the config, will return those dimensions
-  //  for the indicated page.  Otherwise, will return the
-  //  calculated dimensions required to fit all histograms.
-
-  pair <UInt_t, UInt_t> outDim;
-
-  // This is the page index in sConfFile.
-  UInt_t page_index = pageInfo[page].first;
-  
-  UInt_t size1 = 2;
-  if (IsLogy(page)) size1 = 3;  // last word is "logy"
-  
-  // If the dimensions are defined, return them.
-  if(sConfFile[page_index].size()>size1-1) {
-    if(sConfFile[page_index].size() == size1) {
-      outDim = make_pair(UInt_t(atoi(sConfFile[page_index][1])),
-		       UInt_t(atoi(sConfFile[page_index][1])));
-      return outDim;
-    } else if (sConfFile[page_index].size() == size1+1) {
-      outDim = make_pair(UInt_t(atoi(sConfFile[page_index][1])),
-		       UInt_t(atoi(sConfFile[page_index][2])));
-      return outDim;
-    } else {
-      cout << "Warning: newpage command has too many arguments. "
-	   << "Will automatically determine dimensions of page."
-	   << endl;
-    }
-  }
-  
-  // If not defined, return the "default."
-  UInt_t draw_count = GetDrawCount(page);
-  UInt_t dim = UInt_t(TMath::Nint(sqrt(Double_t(draw_count+1))));
-  outDim = make_pair(dim,dim);
-
-  return outDim;
-}
-
-TString OnlineConfig::GetPageTitle(UInt_t page) 
-{
-  // Returns the title of the page.
-  //  if it is not defined in the config, then return "Page #"
-
-  TString title;
-
-  UInt_t iter_command = pageInfo[page].first+1;
-
-  for(UInt_t i=0; i<pageInfo[page].second; i++) { // go through each command
-    if(sConfFile[iter_command+i][0] == "title") { 
-      // Combine the strings, and return it
-      for (UInt_t j=1; j<sConfFile[iter_command+i].size(); j++) {
-	title += sConfFile[iter_command+i][j];
-	title += " ";
-      }
-      title.Chop();
-      return title;
-    }
-  }
-  title = "Page "; title += page;
-  return title;
-}
-
-vector <UInt_t> OnlineConfig::GetDrawIndex(UInt_t page) 
-{
-  // Returns an index of where to find the draw commands within a page
-  //  within the sConfFile vector
-
-  vector <UInt_t> index;
-  UInt_t iter_command = pageInfo[page].first+1;
-
-  for(UInt_t i=0; i<pageInfo[page].second; i++) {
-    if(sConfFile[iter_command+i][0] != "title") {
-      index.push_back(iter_command+i);
-    }
-  }
-
-  return index;
-}
-
-UInt_t OnlineConfig::GetDrawCount(UInt_t page) 
-{
-  // Returns the number of histograms that have been request for this page
-  UInt_t draw_count=0;
-
-  for(UInt_t i=0; i<pageInfo[page].second; i++) {
-    if(sConfFile[pageInfo[page].first+i+1][0] != "title") draw_count++;
-  }
-
-  return draw_count;
-
-}
-
-drawcommand OnlineConfig::GetDrawCommand(UInt_t page, UInt_t nCommand)
-{
-  // Returns the vector of strings pertaining to a specific page, and 
-  //   draw command from the config.
-  // Return vector of TStrings:
-  //  0: variable
-  //  1: cut - only for Tree variables
-  //  2: type
-  //  3: title 
-  //  4: treename - only for Tree variables
-  //  5: nostat
-  //  6: noshowgolden  - only for Histograms
-  //  This should probably be replaced with an actual structure
-
-  drawcommand out_command;
-  vector <UInt_t> command_vector = GetDrawIndex(page);
-  UInt_t index = command_vector[nCommand];
-
-#ifdef DEBUG
-  cout << "OnlineConfig::GetDrawCommand(" << page << "," 
-       << nCommand << ")" << endl;
-#endif
-
-  // First line is the variable
-  if(sConfFile[index].size()>=1) {
-    out_command.variable = sConfFile[index][0];
-  }
-  if(sConfFile[index].size()>=2) {
-    if((sConfFile[index][1] != "-type") &&
-       (sConfFile[index][1] != "-title") &&
-       (sConfFile[index][1] != "-tree") &&
-       (sConfFile[index][1] != "-noshowgolden") &&
-       (sConfFile[index][1] != "-nostat"))
-      {
-    if(out_command.variable=="macro") {
-      out_command.macro = sConfFile[index][1];
-    } else {
-      out_command.cut = sConfFile[index][1];
-    }
-      }
-  }
-
-  // Now go through the rest of that line..
-  for (UInt_t i=1; i<sConfFile[index].size(); i++) {
-    if(sConfFile[index][i]=="-type") {
-      out_command.type = sConfFile[index][i+1];
-      i = i+1;
-    } else if(sConfFile[index][i]=="-title") {
-      // Put the entire title, surrounded by quotes, as one TString
-      TString title;
-      UInt_t j=0;
-      for(j=i+1; j<sConfFile[index].size(); j++) {
-	TString word = sConfFile[index][j];
-	if( (word.BeginsWith("\"")) && (word.EndsWith("\"")) ) {
-	  title = word.ReplaceAll("\"","");
-	  out_command.title = title;
-	  i = j;
-	  break;
-	} else if(word.BeginsWith("\"")) {
-	  title = word.ReplaceAll("\"","");
-	} else if(word.EndsWith("\"")) {
-	  title += " " + word.ReplaceAll("\"","");
-	  out_command.title = title;
-	  i = j;
-	  break;
-	} else {
-	  title += " " + word;
-	}
-      }
-      // If we got here, and out_command.title is null... then just copy the contents
-      // of "title" to out_command.title (taking out any "'s along the way)
-      if(out_command.title.IsNull())
-	out_command.title = title.ReplaceAll("\"","");
-    } else if(sConfFile[index][i]=="-tree") {
-      out_command.treename = sConfFile[index][i+1];
-      i = i+1;
-    } else if(sConfFile[index][i]=="-nostat") {
-      out_command.nostat = "nostat";
-    } else if(sConfFile[index][i]=="-noshowgolden") {
-      out_command.noshowgolden = "noshowgolden";
-    }
-    
-
-#ifdef DEBUG
-    cout << endl;
-#endif
-  }
-#ifdef DEBUG
-  cout << sConfFile[index].size() << ": ";
-  for(UInt_t i=0; i<sConfFile[index].size(); i++) {
-    cout << sConfFile[index][i] << " ";
-  }
-  cout << endl;
-#endif
-  return out_command;
-}
-
-vector <TString> OnlineConfig::SplitString(TString instring,TString delim) 
-{
-  // Utility to split up a string on the deliminator.
-  //  returns a vector of strings.
-
-  vector <TString> v;
-
-  TString remainingString = instring;
-  TString tempstring = instring;
-  int i;
-
-  while (remainingString.Index(delim) != -1) {
-    i = remainingString.Index(delim);
-    tempstring.Remove(i);
-    v.push_back(tempstring);
-    remainingString.Remove(0,i+1);
-    while(remainingString.Index(delim) == 0) {
-      remainingString.Remove(0,1);
-    }
-    tempstring = remainingString;
-    // Cut out the rest, if it's a comment (starts with #)
-    if(TString(remainingString.Strip(TString::kLeading,' ')).BeginsWith("#")) {
-      tempstring = "";
-      break;
-    }
-  }
-
-  while(tempstring.EndsWith(delim)) {
-    tempstring.Chop();
-  }
-  
-  if(!tempstring.IsNull()) v.push_back(tempstring);
-
-  return v;
-}
-
-void OnlineConfig::OverrideRootFile(UInt_t runnumber) 
-{
-  // Override the ROOT file defined in the cfg file If
-  // protorootfile is used, construct filename using it, otherwise
-  // uses a helper macro "GetRootFileName.C(UInt_t runnumber)
-
-  if(!protorootfile.IsNull()) {
-    TString rn = "";
-    rn += runnumber;
-    protorootfile.ReplaceAll("XXXXX",rn.Data());
-    rootfilename = protorootfile;
-  } else {
-    rootfilename = GetRootFileName(runnumber);
-  }
-
-  cout << "Overridden File name: " << rootfilename << endl;
-}
-
-///////////////////////////////////////////////////////////////////
-//  Class: OnlineGUI
-//
-//    Creates a GUI to display the commands used in OnlineConfig
-//
-//
-
-OnlineGUI::OnlineGUI(OnlineConfig& config, Bool_t printonly,UInt_t RunNum):
-  runNumber(RunNum),
-  timer(0),
-  fFileAlive(kFALSE)
-{
-  // Constructor.  Get the config pointer, and make the GUI.
-
-  fConfig = &config;
-
-  if(printonly) {
-    fPrintOnly=kTRUE;
-    PrintPages();
-  } else {
-    fPrintOnly=kFALSE;
-    CreateGUI(gClient->GetRoot(),200,200);
-  }
-}
-
-void OnlineGUI::CreateGUI(const TGWindow *p, UInt_t w, UInt_t h) 
-{
-  
-  // Open the RootFile.  Die if it doesn't exist.
-  //  unless we're watching a file.
-  fRootFile.RootFile = new TFile(fConfig->GetRootFile(),"READ");
-  if(!fRootFile.RootFile->IsOpen()) {
-    cout << "ERROR:  rootfile: " << fConfig->GetRootFile()
-	 << " does not exist"
-	 << endl;
-    if(fConfig->IsMonitor()) {
-      cout << "Will wait... hopefully.." << endl;
-    } else {
-#ifdef STANDALONE
-      gApplication->Terminate();
-#else
-      return;
-#endif
-    }
-  } else {
-    fFileAlive = kTRUE;
-    ObtainRunNumber();
-    // Open the Root Trees.  Give a warning if it's not there..
-    GetFileObjects(&fRootFile);
-    GetRootTree(&fRootFile);
-    GetTreeVars(&fRootFile);
-    for(UInt_t i=0; i<fRootFile.RootTree.size(); i++) {
-      if(fRootFile.RootTree[i]==0) {
-	fRootFile.RootTree.erase(fRootFile.RootTree.begin() + i);
-      }
-    }
-
-  }
-  TString goldenfilename=fConfig->GetGoldenFile();
-  if(!goldenfilename.IsNull()) {
-    fGoldenFile.RootFile = new TFile(goldenfilename,"READ");
-    if(!fGoldenFile.RootFile->IsOpen()) {
-      cout << "ERROR: goldenrootfile: " << goldenfilename
-	   << " does not exist.  Oh well, no comparison plots."
-	   << endl;
-      doGolden = kFALSE;
-      fGoldenFile.RootFile=NULL;
-    } else {
-      // Open the Root Trees.  Give a warning if it's not there..
-      GetFileObjects(&fGoldenFile);
-      GetRootTree(&fGoldenFile);
-      GetTreeVars(&fGoldenFile);
-      for(UInt_t i=0; i<fGoldenFile.RootTree.size(); i++) {
-        if(fGoldenFile.RootTree[i]==0) {
-	  fGoldenFile.RootTree.erase(fGoldenFile.RootTree.begin() + i);
-        }
-      }
-      doGolden = kTRUE;
-    }
-  } else {
-    doGolden=kFALSE;
-    fGoldenFile.RootFile=NULL;
-  }
-
-
-  // Create the main frame
-  fMain = new TGMainFrame(p,w,h);
-  fMain->Connect("CloseWindow()", "OnlineGUI", this, "MyCloseWindow()");
-  ULong_t lightgreen, lightblue, red, mainguicolor;
-  gClient->GetColorByName("lightgreen",lightgreen);
-  gClient->GetColorByName("lightblue",lightblue);
-  gClient->GetColorByName("red",red);
-
-  Bool_t good_color=kFALSE; 
-  TString usercolor = fConfig->GetGuiColor();
-  if(!usercolor.IsNull()) {
-    good_color = gClient->GetColorByName(usercolor,mainguicolor);
-  }
-
-  if(!good_color) {
-    if(!usercolor.IsNull()) {
-      cout << "Bad guicolor (" << usercolor << ").. using default." << endl;
-    }
-    if(fConfig->IsMonitor()) {
-      // Default background color for Online Monitor
-      mainguicolor = lightgreen;
-    } else {
-      // Default background color for Normal Online Display
-      mainguicolor = lightblue;
-    }
-  }
-
-  fMain->SetBackgroundColor(mainguicolor);
-
-  // Top frame, to hold page buttons and canvas
-  fTopframe = new TGHorizontalFrame(fMain,200,200);
-  fTopframe->SetBackgroundColor(mainguicolor);
-  fMain->AddFrame(fTopframe, new TGLayoutHints(kLHintsExpandX 
-                                              | kLHintsExpandY,10,10,10,1));
-
-  // Create a verticle frame widget with radio buttons
-  //  This will hold the page buttons
-  vframe = new TGVerticalFrame(fTopframe,40,200);
-  vframe->SetBackgroundColor(mainguicolor);
-  TString buff;
-  for(UInt_t i=0; i<fConfig->GetPageCount(); i++) {
-    buff = fConfig->GetPageTitle(i);
-    fRadioPage[i] = new TGRadioButton(vframe,buff,i);
-    fRadioPage[i]->SetBackgroundColor(mainguicolor);
-  }
-
-  fRadioPage[0]->SetState(kButtonDown);
-  current_page = 0;
-
-  for (UInt_t i=0; i<fConfig->GetPageCount(); i++) {
-    vframe->AddFrame(fRadioPage[i], 
-		     new TGLayoutHints(kLHintsLeft |
-				       kLHintsCenterY,5,5,3,4));
-    fRadioPage[i]->Connect("Pressed()", "OnlineGUI", this, "DoRadio()");
-  }
-  if(!fConfig->IsMonitor()) {
-    wile = 
-      new TGPictureButton(vframe,
-			  gClient->GetPicture(guiDirectory+"/defaultPic.xpm"));
-    wile->Connect("Pressed()","OnlineGUI", this,"DoDraw()");
-  } else {
-    wile = 
-      new TGPictureButton(vframe,
-			  gClient->GetPicture(guiDirectory+"/panguin.xpm"));
-    wile->Connect("Pressed()","OnlineGUI", this,"DoDrawClear(&fRootFile)");
-  }
-  wile->SetBackgroundColor(mainguicolor);
-
-  vframe->AddFrame(wile,
-		   new TGLayoutHints(kLHintsBottom|kLHintsLeft,5,10,4,2));
-
-
-  fTopframe->AddFrame(vframe,
-		      new TGLayoutHints(kLHintsCenterX|
-					kLHintsCenterY,2,2,2,2));
-  
-  // Create canvas widget
-  fEcanvas = new TRootEmbeddedCanvas("Ecanvas", fTopframe, 800, 600);
-  fEcanvas->SetBackgroundColor(mainguicolor);
-  fTopframe->AddFrame(fEcanvas, new TGLayoutHints(kLHintsExpandY,10,10,10,1));
-  fCanvas = fEcanvas->GetCanvas();
-
-  // Create the bottom frame.  Contains control buttons
-  fBottomFrame = new TGHorizontalFrame(fMain,1200,200);
-  fBottomFrame->SetBackgroundColor(mainguicolor);
-  fMain->AddFrame(fBottomFrame, new TGLayoutHints(kLHintsExpandX,10,10,10,10));
-  
-  // Create a horizontal frame widget with buttons
-  hframe = new TGHorizontalFrame(fBottomFrame,1200,40);
-  hframe->SetBackgroundColor(mainguicolor);
-  fBottomFrame->AddFrame(hframe,new TGLayoutHints(kLHintsExpandX,200,20,2,2));
-
-  fPrev = new TGTextButton(hframe,"Prev");
-  fPrev->SetBackgroundColor(mainguicolor);
-  fPrev->Connect("Clicked()","OnlineGUI",this,"DrawPrev()");
-  hframe->AddFrame(fPrev, new TGLayoutHints(kLHintsCenterX,5,5,1,1));
-
-  fNext = new TGTextButton(hframe,"Next");
-  fNext->SetBackgroundColor(mainguicolor);
-  fNext->Connect("Clicked()","OnlineGUI",this,"DrawNext()");
-  hframe->AddFrame(fNext, new TGLayoutHints(kLHintsCenterX,5,5,1,1));
-
-  fExit = new TGTextButton(hframe,"Exit GUI");
-  fExit->SetBackgroundColor(red);
-  fExit->Connect("Clicked()","OnlineGUI",this,"CloseGUI()");
-
-  hframe->AddFrame(fExit, new TGLayoutHints(kLHintsCenterX,5,5,1,1));
-  
-  TString Buff;
-  if(runNumber==0) {
-    Buff = "";
-  } else {
-    Buff = "Run #";
-    Buff += runNumber;
-  }
-  TGString labelBuff(Buff);
-  
-  fRunNumber = new TGLabel(hframe,Buff);
-  fRunNumber->SetBackgroundColor(mainguicolor);
-  hframe->AddFrame(fRunNumber,new TGLayoutHints(kLHintsCenterX,5,5,1,1));
-
-  fPrint = new TGTextButton(hframe,"Print To &File");
-  fPrint->SetBackgroundColor(mainguicolor);
-  fPrint->Connect("Clicked()","OnlineGUI",this,"PrintToFile()");
-  hframe->AddFrame(fPrint, new TGLayoutHints(kLHintsCenterX,5,5,1,1));
-
-
-  // Set a name to the main frame
-  if(fConfig->IsMonitor()) {
-    fMain->SetWindowName("Parity ANalysis GUI moNitor");
-  } else {
-    fMain->SetWindowName("Online Analysis GUI");
-  }
-
-  // Map all sub windows to main frame
-  fMain->MapSubwindows();
-  
-  // Initialize the layout algorithm
-  fMain->Resize(fMain->GetDefaultSize());
-  
-  // Map main frame
-  fMain->MapWindow();
-
-#ifdef DEBUG
-  fMain->Print();
-#endif
-
-  if(fFileAlive) DoDraw();
-
-  if(fConfig->IsMonitor()) {
-    timer = new TTimer();
-    if(fFileAlive) {
-      timer->Connect(timer,"Timeout()","OnlineGUI",this,"TimerUpdate()");
-    } else {
-      timer->Connect(timer,"Timeout()","OnlineGUI",this,"CheckRootFile()");
-    }
-    timer->Start(UPDATETIME);
-  }
-
-}
-
-void OnlineGUI::DoDraw() 
-{
-  // The main Drawing Routine.
-
-#ifdef INTERNALSTYLE
-  gStyle->SetOptStat(1110);
-  gStyle->SetStatFontSize(0.1);
-#endif
-  if (fConfig->IsLogx(current_page)) {
-    gStyle->SetOptLogx(1);
-  } else {
-    gStyle->SetOptLogx(0);
-  }
-  if (fConfig->IsLogy(current_page)) {
-    gStyle->SetOptLogy(1);
-  } else {
-    gStyle->SetOptLogy(0);
-  }
-  if (fConfig->IsLogz(current_page)) {
-    gStyle->SetOptLogz(1);
-  } else {
-    gStyle->SetOptLogz(0);
-  }
-#ifdef INTERNALSTYLE
-  gStyle->SetTitleH(0.10);
-  gStyle->SetTitleW(0.40);
-//   gStyle->SetLabelSize(0.10,"X");
-//   gStyle->SetLabelSize(0.10,"Y");
-  gStyle->SetLabelSize(0.05,"X");
-  gStyle->SetLabelSize(0.05,"Y");
-  gStyle->SetPadLeftMargin(0.14);
-  gStyle->SetNdivisions(505,"X");
-  gStyle->SetNdivisions(404,"Y");
-  gStyle->SetPalette(1);
-  gROOT->ForceStyle();
-#endif
-
-  // Determine the dimensions of the canvas..
-  UInt_t draw_count = fConfig->GetDrawCount(current_page);
-#ifdef INTERNALSTYLE
-  if(draw_count>=8) {
-    gStyle->SetLabelSize(0.08,"X");
-    gStyle->SetLabelSize(0.08,"Y");
-  }
-#endif
-//   Int_t dim = Int_t(round(sqrt(double(draw_count))));
-  pair <UInt_t,UInt_t> dim = fConfig->GetPageDim(current_page);
-
-#ifdef DEBUG
-  cout << "Dimensions: " << dim.first << "X" 
-       << dim.second << endl;
-#endif  
-
-  // Create a nice clean canvas.
-  fCanvas->Clear();
-  fCanvas->Divide(dim.first,dim.second);
-
-  drawcommand thiscommand;
-  // Draw the histograms.
-  for(UInt_t i=0; i<draw_count; i++) {    
-    thiscommand = fConfig->GetDrawCommand(current_page,i);
-    thiscommand = fileObject2command(thiscommand,&fRootFile);
-    fCanvas->cd(i+1);
-    if (thiscommand.variable == "macro") {
-      MacroDraw(thiscommand);
-    } else if (thiscommand.objtype.Contains("TH")) {
-      HistDraw(thiscommand);
-    } else if (thiscommand.objtype.Contains("TCanvas")) {
-      CanvasDraw(thiscommand,i+1);
-    } else if (thiscommand.objtype.Contains("TGraph")) {
-      GraphDraw(thiscommand);
-    } else { // otherwise... assume that the objtype is a branch from a tree
-      TreeDraw(thiscommand);
-    }
-  }
-      
-  fCanvas->cd();
-  fCanvas->Update();
-
-  if(!fPrintOnly) {
-    CheckPageButtons();
-  }
-
-}
-
-void OnlineGUI::DrawNext()
-{
-  // Handler for the "Next" button.
-  fRadioPage[current_page]->SetState(kButtonUp);
-  // The following line triggers DoRadio()
-  fRadioPage[current_page+1]->SetState(kButtonDown,true);
-  
-}
-
-void OnlineGUI::DrawPrev()
-{
-  // Handler for the "Prev" button.
-  fRadioPage[current_page]->SetState(kButtonUp);
-  // The following line triggers DoRadio()
-  fRadioPage[current_page-1]->SetState(kButtonDown,true);
-  
-}
-
-void OnlineGUI::DoRadio()
-{
-  // Handle the radio buttons
-  //  Find out which button has been pressed..
-  //   turn off the previous button...
-  //   then draw the appropriate page.
-  // This routine also handles the Draw from the Prev/Next buttons
-  //   - makes a call to DoDraw()
-
-  UInt_t pagecount = fConfig->GetPageCount();
-  TGButton *btn = (TGButton *) gTQSender;
-  UInt_t id = btn->WidgetId();
-  
-  if (id <= pagecount) {  
-    fRadioPage[current_page]->SetState(kButtonUp);
-  }
-
-  current_page = id;
-  if(!fConfig->IsMonitor()) DoDraw();
-
-}
-
-void OnlineGUI::CheckPageButtons() 
-{
-  // Checks the current page to see if it's the first or last page.
-  //  If so... turn off the appropriate button.
-  //  If not.. turn on both buttons.
-
-  if(current_page==0) {
-    fPrev->SetState(kButtonDisabled);
-    if(fConfig->GetPageCount()!=1)
-      fNext->SetState(kButtonUp);
-  } else if(current_page==fConfig->GetPageCount()-1) {
-    fNext->SetState(kButtonDisabled);
-    if(fConfig->GetPageCount()!=1)
-      fPrev->SetState(kButtonUp);
-  } else {
-    fPrev->SetState(kButtonUp);
-    fNext->SetState(kButtonUp);
-  }
-}
-
-void OnlineGUI::GetFileObjects(RootFileObject* fLocalRootFileObj)
-{
-  // Utility to find all of the objects within a File (TTree, TH1F, etc).
-  //  The pair stored in the vector is <ObjName, ObjType>
-  //  For histograms, the title is also stored 
-  //    (in case the the name is not very descriptive... like when
-  //    using h2root)
-  //  If there's no good keys.. do nothing.
-#ifdef DEBUGGETFILEOBJECTS
-  cout << "Keys = " << fLocalRootFileObj->RootFile->ReadKeys() << endl;
-#endif
-  if(fLocalRootFileObj->RootFile->ReadKeys()==0) {
-    fLocalRootFileObj->fUpdate = kFALSE;
-//     delete fLocalRootFileObj->RootFile;
-//     fLocalRootFileObj->RootFile = 0;
-//     CheckRootFile();
-    return;
-  }
-  fLocalRootFileObj->vfileObjects.clear();
-
-  TIter next( (fLocalRootFileObj->RootFile)->GetListOfKeys() );
-  TKey *key = new TKey();
-
-  // Do the search
-  while((key=(TKey*)next())!=0) {
-#ifdef DEBUGGETFILEOBJECTS
-    cout << "Key = " << key << endl;    
-#endif
-    TString objname = key->GetName();
-    TString objtype = key->GetClassName();
-    TString objtitle = key->GetTitle();
-#ifdef DEBUGGETFILEOBJECTS
-    cout << objname << " " << objtype << endl;
-#endif
-
-    if(objtype.Contains("TDirectory")) {
-      TDirectory *thisdir = (TDirectory*)fLocalRootFileObj->RootFile->Get(objname);
-      TIter nextInDir(thisdir->GetListOfKeys());
-      TKey *innerkey = new TKey();
-      while((innerkey=(TKey*)nextInDir())!=0) {
-	      TString iobjname = innerkey->GetName();
-	      TString iobjtype = innerkey->GetClassName();
-	      TString iobjtitle = innerkey->GetTitle();
-	      TString iobjdir = objname;
-#ifdef DEBUGGETFILEOBJECTS
-	      cout << iobjname << " " << iobjtype << endl;
-#endif
-	      fileObject thisObject;
-	      thisObject.name = iobjname;
-	      thisObject.type = iobjtype;
-	      thisObject.title = iobjtitle;
-	      thisObject.directory = objname;
-	      fLocalRootFileObj->vfileObjects.push_back(thisObject);
-	    }
-    } else {
-      fileObject thisObject;
-      thisObject.name = objname;
-      thisObject.type = objtype;
-      thisObject.title = objtitle;
-      thisObject.directory = "";
-      fLocalRootFileObj->vfileObjects.push_back(thisObject);
-    }
-      
-  }
-  fLocalRootFileObj->fUpdate = kTRUE;
-  delete key;
-}
-
-void OnlineGUI::GetTreeVars(RootFileObject* fLocalRootFileObj) 
-{
-  // Utility to find all of the variables (leaf's/branches) within a
-  // Specified TTree and put them within the TreeVars vector.
-  fLocalRootFileObj->TreeVars.clear();
-  TObjArray *branchList;
-  vector <TString> currentTree;
-
-  for(UInt_t i=0; i<fLocalRootFileObj->RootTree.size(); i++) {
-    currentTree.clear();
-    branchList = fLocalRootFileObj->RootTree[i]->GetListOfBranches();
-    TIter next(branchList);
-    TBranch *brc;
-
-    while((brc=(TBranch*)next())!=0) {
-      TString found = brc->GetName();
-      // Not sure if the line below is so smart...
-      currentTree.push_back(found);
-    }
-    fLocalRootFileObj->TreeVars.push_back(currentTree);
-  }
-#ifdef DEBUG2
-  for(UInt_t iTree=0; iTree<fLocalRootFileObj->TreeVars.size(); iTree++) {
-  cout << "In Tree " << iTree << ": " << endl;
-    for(UInt_t i=0; i<fLocalRootFileObj->TreeVars[iTree].size(); i++) {
-      cout << fLocalRootFileObj->TreeVars[iTree][i] << endl;
-    }
-  }
-#endif
-}
-
-
-void OnlineGUI::GetRootTree(RootFileObject* fLocalRootFileObj ) {
-  // Utility to search a ROOT File for ROOT Trees
-  // Fills the RootTree vector
-  fLocalRootFileObj->RootTree.clear();
-
-  list <TString> found;
-  for(UInt_t i=0; i<fLocalRootFileObj->vfileObjects.size(); i++) {
-#ifdef DEBUGGETROOTTREE
-    cout << "Object = " << fLocalRootFileObj->vfileObjects[i].type <<
-      "     Name = " << fLocalRootFileObj->vfileObjects[i].name << endl;
-#endif
-    if(fLocalRootFileObj->vfileObjects[i].type.Contains("TTree"))
-       found.push_back(fLocalRootFileObj->vfileObjects[i].name);
-  }
-
-  // Remove duplicates, then insert into fLocalRootFileObj->RootTree
-  found.unique();
-  UInt_t nTrees = found.size();
-
-  for(UInt_t i=0; i<nTrees; i++) {
-    fLocalRootFileObj->RootTree.push_back( (TTree*) fLocalRootFileObj->RootFile->Get(found.front()) );
-    found.pop_front();
-  }  
-  // Initialize the TreeEntries vector
-  fLocalRootFileObj->TreeEntries.clear();
-  for(UInt_t i=0;i<fLocalRootFileObj->RootTree.size();i++) {
-    fLocalRootFileObj->TreeEntries.push_back(0);
-  }
-  
-}
-
-UInt_t OnlineGUI::GetTreeIndex(TString var, RootFileObject* fLocalRootFileObj ) {
-  // Utility to find out which Tree (in fRootFile.RootTree) has the specified
-  // variable "var".  If the variable is a collection of Tree
-  // variables (e.g. bcm1:lumi1), will only check the first
-  // (e.g. bcm1).  
-  // Returns the correct index.  if not found returns an index 1
-  // larger than fRootFile.RootTree.size()
-
-  //  This is for 2d draws... look for the first only
-  if(var.Contains(":")) {
-    TString first_var = fConfig->SplitString(var,":")[0];
-    var = first_var;
-  }
-
-  //  This is for variables with multiple dimensions.
-  if(var.Contains("[")) {
-    TString first_var = fConfig->SplitString(var,"[")[0];
-    var = first_var;
-  }
-
-  for(UInt_t iTree=0; iTree<fLocalRootFileObj->TreeVars.size(); iTree++) {
-    for(UInt_t ivar=0; ivar<fLocalRootFileObj->TreeVars[iTree].size(); ivar++) {
-      if(var == fLocalRootFileObj->TreeVars[iTree][ivar]) return iTree;
-    }
-  }
-
-  return fLocalRootFileObj->RootTree.size()+1;
-}
-
-UInt_t OnlineGUI::GetTreeIndexFromName(TString name, RootFileObject* fLocalRootFileObj) {
-  // Called by TreeDraw().  Tries to find the Tree index provided the
-  //  name.  If it doesn't match up, return a number that's one larger
-  //  than the number of found trees.
-  for(UInt_t iTree=0; iTree<fLocalRootFileObj->RootTree.size(); iTree++) {
-    TString treename = fLocalRootFileObj->RootTree[iTree]->GetName();
-    if(name == treename) {
-      return iTree;
-    }
-  }
-
-  return fLocalRootFileObj->RootTree.size()+1;
-}
-
-void OnlineGUI::MacroDraw(drawcommand command) {
-  // Called by DoDraw(), this will make a call to the defined macro, and
-  //  plot it in it's own pad.  One plot per macro, please.
-
-  if(command.macro.IsNull()) {
-    cout << "macro command doesn't contain a macro to execute" << endl;
-    return;
-  }
-
-  if(doGolden) fRootFile.RootFile->cd();
-  gROOT->Macro(command.macro);
-  
-}
-
-void OnlineGUI::CanvasDraw(drawcommand command,UInt_t padnum) {
-  // Called by DoDraw(), this will draw the TCanvas in the current Canvas
-  
-  TString rootversion = gROOT->GetVersion();
-  TString slash = "/";
-  TString rootversion_cut = (fConfig->SplitString(rootversion,slash))[0];
-  Double_t ver_num = rootversion_cut.Atof();
-  if(ver_num<5.16) {
-    TString badstring = "TCanvas Drawing Unsupported in ROOT v"+rootversion;
-    BadDraw(badstring);
-    return;
-  }
-
-  TDirectory *fDir;
-  if(command.directory.IsNull()) {
-    fDir = 0;
-  } else {
-    fDir = (TDirectory*)fRootFile.RootFile->Get(command.directory);
-  }
-  
-  if(fDir) fDir->cd();
-  fRootFile.RootFile->cd();
-  TCanvas *tcanv = (TCanvas*)fRootFile.RootFile->Get(command.objname);
-  fCanvas->cd(padnum);
-  tcanv->DrawClonePad();
-  delete tcanv;
-  
-}
-
-void OnlineGUI::GraphDraw(drawcommand command) {
-  // Called by DoDraw(), this will draw the TCanvas in the current Canvas
-  
-  TString rootversion = gROOT->GetVersion();
-  fRootFile.RootFile->cd();
-  TDirectory *fDir;
-  if(command.directory.IsNull()) {
-    fDir = 0;
-  } else {
-    fDir = (TDirectory*)fRootFile.RootFile->Get(command.directory);
-  }
-  
-  if(fDir) fDir->cd();
-  TGraph *thisgraph = (TGraph*)fRootFile.RootFile->Get(command.objname);
-  TString drawopt = command.type;
-  if(drawopt.IsNull()) drawopt = "AP";
-  if(!command.title.IsNull()) thisgraph->SetTitle(command.title);
-  thisgraph->Draw(drawopt);
-  
-}
-
-
-void OnlineGUI::DoDrawClear(RootFileObject* fLocalRootFileObj) {
-  // Utility to grab the number of entries in each tree.  This info is
-  // then used, if watching a file, to "clear" the TreeDraw
-  // histograms, and begin looking at new data.
-  for(UInt_t i=0; i<fLocalRootFileObj->TreeEntries.size(); i++) {
-    fLocalRootFileObj->TreeEntries[i] = (Int_t) fLocalRootFileObj->RootTree[i]->GetEntries();
-  }
-  
-
-}
-
-void OnlineGUI::TimerUpdate() {
-  // Called periodically by the timer, if "watchfile" is indicated
-  // in the config.  Reloads the ROOT file, and updates the current page.
-#ifdef DEBUG
-  cout << "Update Now" << endl;
-#endif
-
-  if(fRootFile.RootFile->IsZombie() || (fRootFile.RootFile->GetSize() == -1)
-     || (fRootFile.RootFile->ReadKeys()==0)) {
-    cout << "New run not yet available.  Waiting..." << endl;
-    fRootFile.RootFile->Close();
-    delete fRootFile.RootFile;
-    fRootFile.RootFile = 0;
-    timer->Reset();
-    timer->Disconnect();
-    timer->Connect(timer,"Timeout()","OnlineGUI",this,"CheckRootFile()");
-    return;
-  }
-  for(UInt_t i=0; i<fRootFile.RootTree.size(); i++) {
-    fRootFile.RootTree[i]->Refresh();
-  }
-  DoDraw();
-  timer->Reset();
-
-}
-
-void OnlineGUI::BadDraw(TString errMessage) {
-  // Routine to display (in Pad) why a particular draw method has
-  // failed.
-  TPaveText *pt = new TPaveText(0.1,0.1,0.9,0.9,"brNDC");
-  pt->SetBorderSize(3);
-  pt->SetFillColor(10);
-  pt->SetTextAlign(22);
-  pt->SetTextFont(72);
-  pt->SetTextColor(2);
-  pt->AddText(errMessage.Data());
-  pt->Draw();
-//   cout << errMessage << endl;
-
-}
-
-
-void OnlineGUI::CheckRootFile() {
-  // Check the path to the rootfile (should follow symbolic links)
-  // ... If found:
-  //   Reopen new root file, 
-  //   Reconnect the timer to TimerUpdate()
-
-  if(gSystem->AccessPathName(fConfig->GetRootFile())==0) {
-    cout << "Found the new run" << endl;
-    if(OpenRootFile()==0) {
-      timer->Reset();
-      timer->Disconnect();
-      timer->Connect(timer,"Timeout()","OnlineGUI",this,"TimerUpdate()");
-    }
-  } else {
-    TString rnBuff = "Waiting for run";
-    fRunNumber->SetText(rnBuff.Data());
-    hframe->Layout();
-  }
-
-}
-
-Int_t OnlineGUI::OpenRootFile() {
-
-
-  fRootFile.RootFile = new TFile(fConfig->GetRootFile(),"READ");
-  if(fRootFile.RootFile->IsZombie() || (fRootFile.RootFile->GetSize() == -1)
-     || (fRootFile.RootFile->ReadKeys()==0)) {
-    cout << "New run not yet available.  Waiting..." << endl;
-    fRootFile.RootFile->Close();
-    delete fRootFile.RootFile;
-    fRootFile.RootFile = 0;
-    timer->Reset();
-    timer->Disconnect();
-    timer->Connect(timer,"Timeout()","OnlineGUI",this,"CheckRootFile()");
-    return -1;
-  }
-
-  // Update the runnumber
-  ObtainRunNumber();
-  if(runNumber != 0) {
-    TString rnBuff = "Run #";
-    rnBuff += runNumber;
-    fRunNumber->SetText(rnBuff.Data());
-    hframe->Layout();
-  }
-
-  // Open the Root Trees.  Give a warning if it's not there..
-  GetFileObjects(&fRootFile);
-  if (fRootFile.fUpdate) { // Only do this stuff if there are valid keys
-    GetRootTree(&fRootFile);
-    GetTreeVars(&fRootFile);
-    for(UInt_t i=0; i<fRootFile.RootTree.size(); i++) {
-      if(fRootFile.RootTree[i]==0) {
-	fRootFile.RootTree.erase(fRootFile.RootTree.begin() + i);
-      }
-    }
-    DoDraw();
-  } else {
-    return -1;
-  }
-  return 0;
-
-}
-
-void OnlineGUI::HistDraw(drawcommand command) {
-  // Called by DoDraw(), this will plot a histogram.
-
-  Bool_t showGolden=kFALSE;
-  if(doGolden) showGolden=kTRUE;
-  Bool_t showStat=kTRUE;
-  TString htitle;
-
-  if(command.noshowgolden=="noshowgolden") 
-    showGolden = kFALSE;
-  if(command.nostat=="nostat")
-      showStat=kFALSE;
-  htitle = command.title;
-
-  TString type=command.type;
-  TDirectory *fDir;
-  
-  if(command.directory.IsNull()) {
-    fDir = 0;
-  } else {
-    fDir = (TDirectory*)fRootFile.RootFile->Get(command.directory);
-  }
-  
-  // Determine dimensionality of histogram, then draw it
-  if(command.objtype.Contains("TH1")) {
-    // Operation for TH1
-    fRootFile.RootFile->cd();
-    if(fDir) fDir->cd();
-    fRootFile.mytemp1d = (TH1D*)gDirectory->Get(command.objname);
-    if(!fRootFile.mytemp1d) BadDraw(command.variable+" not found");
-    if(fRootFile.mytemp1d->GetEntries()==0) {
-      BadDraw("Empty Histogram");
-    } else {
-      if(showGolden) {
-	fGoldenFile.RootFile->cd();
-	if(fDir) fDir->cd();
-	fGoldenFile.mytemp1d = (TH1D*)gDirectory->Get(command.objname);
-	fGoldenFile.mytemp1d->SetLineColor(30);
-	fGoldenFile.mytemp1d->SetFillColor(30);
-	Int_t fillstyle=3027;
-	if(fPrintOnly) fillstyle=3010;
-	fGoldenFile.mytemp1d->SetFillStyle(fillstyle);
-	fRootFile.mytemp1d->SetStats(showStat);
-	fGoldenFile.mytemp1d->SetStats(kFALSE);
-	fGoldenFile.mytemp1d->Draw();
-	if(!htitle.IsNull()) fGoldenFile.mytemp1d->SetTitle(htitle);
-	fRootFile.mytemp1d->Draw("sames"+type);
-      } else {
-	fRootFile.mytemp1d->SetStats(showStat);
-	if(!htitle.IsNull()) fRootFile.mytemp1d->SetTitle(htitle);
-	fRootFile.mytemp1d->Draw(type);
-      }
-    }
-    return;
-  }
-
-  if(command.objtype.Contains("TH2")) {
-    // Operation for TH2
-    if(!showGolden) fRootFile.RootFile->cd();
-    if(fDir) fDir->cd();
-    fRootFile.mytemp2d = (TH2D*)gDirectory->Get(command.objname);
-    if(fRootFile.mytemp2d->GetEntries()==0) {
-      BadDraw("Empty Histogram");
-    } else {
-      if(showGolden) {
-	fGoldenFile.RootFile->cd();
-	if(fDir) fDir->cd();
-	fGoldenFile.mytemp2d = (TH2D*)gDirectory->Get(command.objname);
-	fGoldenFile.mytemp2d->SetMarkerColor(2);
-	fRootFile.mytemp2d->SetStats(showStat);
-	fGoldenFile.mytemp2d->SetStats(kFALSE);
-	fGoldenFile.mytemp2d->Draw(type);
-	if(!htitle.IsNull()) fGoldenFile.mytemp2d->SetTitle(htitle);
-	fRootFile.mytemp2d->Draw("sames"+type);
-      } else {
-	fRootFile.mytemp2d->SetStats(showStat);
-	if(!htitle.IsNull()) fGoldenFile.mytemp2d->SetTitle(htitle);
-	fRootFile.mytemp2d->Draw(type);
-      }
-    }
-    return;
-  }
-
-  if(command.objtype.Contains("TH3")) {
-    // Operation for TH3
-    if(!showGolden) fRootFile.RootFile->cd();
-    if(fDir) fDir->cd();
-    fRootFile.mytemp3d = (TH3D*)gDirectory->Get(command.objname);
-    if(fRootFile.mytemp3d->GetEntries()==0) {
-      BadDraw("Empty Histogram");
-    } else {
-      fRootFile.mytemp3d->Draw();
-      if(showGolden) {
-	fGoldenFile.RootFile->cd();
-	if(fDir) fDir->cd();
-	fGoldenFile.mytemp3d = (TH3D*)gDirectory->Get(command.objname);
-	fGoldenFile.mytemp3d->SetMarkerColor(2);
-	fRootFile.mytemp3d->SetStats(showStat);
-	fGoldenFile.mytemp3d->SetStats(kFALSE);
-	fGoldenFile.mytemp3d->Draw(type);
-	if(!htitle.IsNull()) fGoldenFile.mytemp3d->SetTitle(htitle);
-	fRootFile.mytemp3d->Draw("sames"+type);
-      } else {
-	fRootFile.mytemp3d->SetStats(showStat);
-	if(!htitle.IsNull()) fGoldenFile.mytemp3d->SetTitle(htitle);
-	fRootFile.mytemp3d->Draw(type);
-      }
-    }
-    return;
-  }
-  
-}
-
-drawcommand OnlineGUI::fileObject2command(drawcommand command, RootFileObject* fLocalRootFileObj) {
-  // Fill in gaps in the drawcommand with items from the
-  // vfileObject.  This elimates the need for duplicate code in
-  // the different *Draw routines.
-  for(UInt_t i=0; i<fLocalRootFileObj->vfileObjects.size(); i++) {
-    if(fLocalRootFileObj->vfileObjects[i].name==command.variable ||
-       fLocalRootFileObj->vfileObjects[i].title==command.variable ) {
-      command.objname = fLocalRootFileObj->vfileObjects[i].name;
-      command.objtitle = fLocalRootFileObj->vfileObjects[i].title;
-      command.objtype = fLocalRootFileObj->vfileObjects[i].type;
-      command.directory = fLocalRootFileObj->vfileObjects[i].directory;
-#ifdef DEBUGf2command
-      cout << command.directory << " " 
-	   << command.objtype  << " " 
-	   << command.objname 
-	   << endl;
-#endif
-      return command;
-    }
-  }
-  return command;
-  
-
-}
-
-void OnlineGUI::TreeDraw(drawcommand command) {
-  // Called by DoDraw(), this will plot a Tree Variable
-
-  TString var = command.variable;
-  Bool_t showGolden=kFALSE;
-  if(doGolden) showGolden=kTRUE;
-
-  Bool_t showStat=kTRUE;
-  if(command.nostat=="nostat") showStat=kFALSE;
-
-  //TObject *hobj;
-
-  // Combine the cuts (definecuts and specific cuts)
-  TCut cut = "";
-  TString tempCut;
-  if(!command.cut.IsNull()) {
-    tempCut = command.cut;
-    vector <TString> cutIdents = fConfig->GetCutIdent();
-    for(UInt_t i=0; i<cutIdents.size(); i++) {
-      if(tempCut.Contains(cutIdents[i])) {
-	TString cut_found = (TString)fConfig->GetDefinedCut(cutIdents[i]);
-	tempCut.ReplaceAll(cutIdents[i],cut_found);
-      }
-    }
-    cut = (TCut)tempCut;
-  }
-
-  // Determine which Tree the variable comes from, then draw it.
-  UInt_t iTree;
-  if(command.treename.IsNull()) {
-    iTree = GetTreeIndex(var,&fRootFile);
-  } else {
-    iTree = GetTreeIndexFromName(command.treename,&fRootFile);
-  }
-  TString drawopt = command.type;
-  Int_t errcode=0;
-  if(drawopt.IsNull() && var.Contains(":")) drawopt = "cont";
-  if(drawopt=="scat") drawopt = "";
-
-  fRootFile.RootFile->cd();
-  if (iTree <= fRootFile.RootTree.size() ) {
-    TObjArray* tok = var.Tokenize(">()");
-    TString myvar   = ((TObjString*)tok->First())->GetString();
-    TString hname   = "h";
-    TString histdef = ((TObjString*)tok->Last())->GetString();
-    if(tok->GetEntries() == 1) histdef = "";        // ie "var[0]"
-    if(tok->GetEntries() == 2) {
-      if(! histdef.Contains(",") ) {             // ie "var[0]>>h1"
-        hname = histdef;
-        histdef = "";
-      }
-    }
-    if(tok->GetEntries() == 3) hname = ((TObjString*)tok->At(1))->GetString();  // ie "var[0]>>h1(100,0,100)"
-    delete tok;
-    TString tmp = var + tempCut;
-    hname = Form("%s_%u",hname.Data(),tmp.Hash());      // unique id so caching histos works
-
-    errcode=1;
-    TObject *hobj  = gDirectory->Get(hname);
-    if(hobj == NULL) {
-      errcode = fRootFile.RootTree[iTree]->Draw(myvar+">>"+hname+"("+histdef+")",cut,drawopt,
-				     1000000000,fRootFile.TreeEntries[iTree]);
-      hobj = gDirectory->Get(hname);
-    }
-    TH1F *mainhist = (TH1F*)hobj;
-    mainhist->Draw(drawopt);
-    //tmp = myvar+">>"+hname+"("+histdef+")";
-    //printf("hist: '%s',  opt: '%s',  \"%s\"\n", hname.Data(), drawopt.Data(),tmp.Data());
-
-    if(errcode==-1) {
-      BadDraw(var+" not found");
-    } else if (errcode!=0) {
-      TString htype = hobj->ClassName();
-      if(! htype.Contains("TH1F") ) {
-        //printf("skipping.\n");
-        showGolden=kFALSE;
-      }
-      if(showGolden) {
-        errcode=1;
-        TString goldname = "gold"+hname;
-        TH1F *goldhist = (TH1F*)gDirectory->Get(goldname);
-        if(goldhist == NULL) {
-          goldhist = (TH1F*)mainhist->Clone(hname);
-          goldhist->SetName(goldname);
-          errcode = fGoldenFile.RootTree[iTree]->Project(goldname,myvar,cut);
-        }
-        if(errcode>0) {
-          goldhist->SetFillColor(30);
-	  Int_t fillstyle=3027;
-	  if(fPrintOnly) fillstyle=3010;
-	  goldhist->SetFillStyle(fillstyle);
-          goldhist->Draw(drawopt);
-          mainhist->SetFillColor(0);
-          mainhist->SetFillStyle(1001);
-          mainhist->Draw("same");
-          if(!command.title.IsNull()) goldhist->SetTitle(command.title);
-          if(!showStat)               goldhist->SetStats(kFALSE);
-        }
-      } else {
-        if(!command.title.IsNull()) mainhist->SetTitle(command.title);
-        if(!showStat)               mainhist->SetStats(kFALSE);
-      }
-    } else {
-      BadDraw("Empty Histogram");
-    }
-  } else {
-    BadDraw(var+" not found");
-    if (fConfig->IsMonitor()){
-      // Maybe we missed it... look again.  I dont like the code
-      // below... maybe I can come up with something better
-      GetFileObjects(&fRootFile);
-      GetRootTree(&fRootFile);
-      GetTreeVars(&fRootFile);
-    }
-  }
-
-}
-
-void OnlineGUI::ObtainRunNumber()
-{
-  // Utility to obtain the runnumber through a helper macro
-  //  "GetRunNumber.C"
-  
-  if (runNumber==0) runNumber = GetRunNumber();
-#ifdef DEBUG
-  cout << "Runnumber from file: " << runNumber << endl;
-#endif
-}
-
-void OnlineGUI::PrintToFile()
-{
-  // Routine to print the current page to a File.
-  //  A file dialog pop's up to request the file name.
-  fCanvas = fEcanvas->GetCanvas();
-  gStyle->SetPaperSize(20,24);
-  static TString dir("printouts");
-  TGFileInfo fi;
-  const char *myfiletypes[] = 
-    { "All files","*",
-      "PostScript files","*.ps",
-      "Encapsulated PostScript files","*.eps",
-      "GIF files","*.gif",
-      "JPG files","*.jpg",
-      0,               0 };
-  fi.fFileTypes = myfiletypes;
-  fi.fIniDir    = StrDup(dir.Data());
-
-  new TGFileDialog(gClient->GetRoot(), fMain, kFDSave, &fi);
-  if(fi.fFilename!=NULL) fCanvas->Print(fi.fFilename);
-}
-
-void OnlineGUI::PrintPages() {
-  // Routine to go through each defined page, and print the output to 
-  // a postscript file. (good for making sample histograms).
-  
-  // Open the RootFile
-    //  unless we're watching a file.
-  fRootFile.RootFile = new TFile(fConfig->GetRootFile(),"READ");
-  if(!fRootFile.RootFile->IsOpen()) {
-    cout << "ERROR:  rootfile: " << fConfig->GetRootFile()
-	 << " does not exist"
-	 << endl;
-#ifdef STANDALONE
-    gApplication->Terminate();
-#else
-    return;
-#endif
-  } else {
-    fFileAlive = kTRUE;
-    ObtainRunNumber();
-    // Open the Root Trees.  Give a warning if it's not there..
-    GetFileObjects(&fRootFile);
-    GetRootTree(&fRootFile);
-    GetTreeVars(&fRootFile);
-    for(UInt_t i=0; i<fRootFile.RootTree.size(); i++) {
-      if(fRootFile.RootTree[i]==0) {
-	fRootFile.RootTree.erase(fRootFile.RootTree.begin() + i);
-      }
-    }
-    
-  }
-  TString goldenfilename=fConfig->GetGoldenFile();
-  if(!goldenfilename.IsNull()) {
-    fGoldenFile.RootFile = new TFile(goldenfilename,"READ");
-    if(!fGoldenFile.RootFile->IsOpen()) {
-      cout << "ERROR: goldenrootfile: " << goldenfilename
-	   << " does not exist.  Oh well, no comparison plots."
-	   << endl;
-      doGolden = kFALSE;
-      fGoldenFile.RootFile=NULL;
-    } else {
-      // Open the Root Trees.  Give a warning if it's not there..
-      GetFileObjects(&fGoldenFile);
-      GetRootTree(&fGoldenFile);
-      GetTreeVars(&fGoldenFile);
-      for(UInt_t i=0; i<fGoldenFile.RootTree.size(); i++) {
-        if(fGoldenFile.RootTree[i]==0) {
-	  fGoldenFile.RootTree.erase(fGoldenFile.RootTree.begin() + i);
-        }
-      }
-      doGolden = kTRUE;
-    }
-  } else {
-    doGolden=kFALSE;
-    fGoldenFile.RootFile=NULL;
-  }
-
-  // I'm not sure exactly how this works.  But it does.
-  fCanvas = new TCanvas("fCanvas","trythis",850,1100);
-//   TCanvas *maincanvas = new TCanvas("maincanvas","whatever",850,1100);
-//   maincanvas->SetCanvas(fCanvas);
-  TLatex *lt = new TLatex();
-
-  TString plotsdir = fConfig->GetPlotsDir();
-  Bool_t useJPG = kFALSE;
-  if(!plotsdir.IsNull()) useJPG = kTRUE;
-
-  TString filename = "summaryplots";
-  if(runNumber!=0) {
-    filename += "_";
-    filename += runNumber;
-  }
-  if(useJPG) {
-    filename.Prepend(plotsdir+"/");
-    filename += "_pageXXXX.jpg";
-  }
-  else filename += ".ps";
-
-  TString pagehead = "Summary Plots";
-  if(runNumber!=0) {
-    pagehead += "(Run #";
-    pagehead += runNumber;
-    pagehead += ")";
-  }
-  pagehead += ": ";
-
-  gStyle->SetPalette(1);
-  gStyle->SetTitleX(0.15);
-  gStyle->SetTitleY(0.9);
-  gStyle->SetPadBorderMode(0);
-  gStyle->SetHistLineColor(1);
-  gStyle->SetHistFillColor(1);
-  if(!useJPG) fCanvas->Print(filename+"[");
-  TString origFilename = filename;
-  for(UInt_t i=0; i<fConfig->GetPageCount(); i++) {
-    current_page=i;
-    DoDraw();
-    TString pagename = pagehead + fConfig->GetPageTitle(current_page);
-    lt->SetTextSize(0.025);
-    lt->DrawLatex(0.05,0.98,pagename);
-    if(useJPG) {
-      filename = origFilename;
-      filename.ReplaceAll("XXXX",Form("%d",current_page));
-      cout << "Printing page " << current_page 
-	   << " to file = " << filename << endl;
-    }
-    fCanvas->Print(filename);
-  }
-  if(!useJPG) fCanvas->Print(filename+"]");
-  
-#ifdef STANDALONE
-  gApplication->Terminate();
-#endif
-}
-
-void OnlineGUI::MyCloseWindow()
-{
-  fMain->SendCloseMessage();
-  cout << "OnlineGUI Closed." << endl;
-  if(timer!=NULL) {
-    timer->Stop();
-    delete timer;
-  }
-  delete fPrint;
-  delete fExit;
-  delete fRunNumber;
-  delete fPrev;
-  delete fNext;
-  delete wile;
-  for(UInt_t i=0; i<fConfig->GetPageCount(); i++) 
-    delete fRadioPage[i];
-  delete hframe;
-  delete fEcanvas;
-  delete fBottomFrame;
-  delete vframe;
-  delete fTopframe;
-  delete fMain;
-  if(fGoldenFile.RootFile!=NULL) delete fGoldenFile.RootFile;
-  if(fRootFile.RootFile!=NULL) delete fRootFile.RootFile;
-  delete fConfig;
-
-#ifdef STANDALONE
-  gApplication->Terminate();
-#endif
-}
-
-void OnlineGUI::CloseGUI() 
-{
-  // Routine to take care of the Exit GUI button
-  fMain->SendCloseMessage();
-}
-
-OnlineGUI::~OnlineGUI()
-{
-  //  fMain->SendCloseMessage();
-  if(timer!=NULL) {
-    timer->Stop();
-    delete timer;
-  }
-  delete fPrint;
-  delete fExit;
-  delete fRunNumber;
-  delete fPrev;
-  delete fNext;
-  delete wile;
-  for(UInt_t i=0; i<fConfig->GetPageCount(); i++) 
-    delete fRadioPage[i];
-  delete hframe;
-  delete fEcanvas;
-  delete vframe;
-  delete fBottomFrame;
-  delete fTopframe;
-  delete fMain;
-  if(fGoldenFile.RootFile!=NULL) delete fGoldenFile.RootFile;
-  if(fRootFile.RootFile!=NULL) delete fRootFile.RootFile;
-  delete fConfig;
-}
-
-void online(TString type="standard",UInt_t run=0,Bool_t printonly=kFALSE) 
-{
-  // "main" routine.  Run this at the ROOT commandline.
-
-  if(printonly) {
-    if(!gROOT->IsBatch()) {
-#ifdef STANDALONE
-      gROOT->SetBatch();
-#else
-      cout << "Sorry... the print summary plots option only works "
-	   << "in BATCH mode." << endl;
-      return;
-#endif
-    }
-  }
-
-  OnlineConfig *fconfig = new OnlineConfig(type);
-    //    OnlineConfig *fconfig = new OnlineConfig("halla");
-
-  if(!fconfig->ParseConfig()) {
-#ifdef STANDALONE
-    gApplication->Terminate();
-#else
-    return;
-#endif
-  }
-
-  if(run!=0) fconfig->OverrideRootFile(run);
-
-  new OnlineGUI(*fconfig,printonly,run);
-
-}
-
-#ifdef STANDALONE
-void Usage()
-{
-  cerr << "Usage: online [-r] [-f] [-P]"
-       << endl;
-  cerr << "Options:" << endl;
-  cerr << "  -r : runnumber" << endl;
-  cerr << "  -f : configuration file" << endl;
-  cerr << "  -P : Only Print Summary Plots" << endl;
-  cerr << endl;
-
-}
-
-int main(int argc, char **argv)
-{
-  TString type="default";
-  UInt_t run=0;
-  Bool_t printonly=kFALSE;
-  Bool_t showedUsage=kFALSE;
-
-  TApplication theApp("App",&argc,argv,NULL,-1);
-
-  for(Int_t i=1;i<theApp.Argc();i++)
-    {
-      TString sArg = theApp.Argv(i);
-      if(sArg=="-f") {
-	type = theApp.Argv(++i);
-	cout << " File specifier: "
-	     <<  type << endl;
-      } else if (sArg=="-r") {
-	run = atoi(theApp.Argv(++i));
-	cout << " Runnumber: "
-	     << run << endl;
-      } else if (sArg=="-P") {
-	printonly = kTRUE;
-	cout <<  " PrintOnly" << endl;
-      } else if (sArg=="-h") {
-	if(!showedUsage) Usage();
-	showedUsage=kTRUE;
-	return 0;
-      } else {
-	cerr << "\"" << sArg << "\"" << " not recognized.  Ignored." << endl;
-	if(!showedUsage) Usage();
-	showedUsage=kTRUE;
-      }
-    }
-
-  online(type,run,printonly);
-  theApp.Run();
-
-  return 0;
-}
-
-#endif
+///////////////////////////////////////////////////////////////////
+//  Macro to help with online analysis
+//    B. Moffit (moffit@jlab.org)
+//    - Originally written in Oct. 2003
+//  Documentation and updates available at:
+//    http://www.jlab.org/~moffit/onlineGUI/
+//
+
+#include "online.h"
+#include <string>
+#include <fstream>
+#include <iostream>
+#include <list>
+#include <TMath.h>
+#include <TBranch.h>
+#include <TGClient.h>
+#include <TCanvas.h>
+#include <TStyle.h>
+#include <TROOT.h>
+#include <TGImageMap.h>
+#include <TGFileDialog.h>
+#include <TKey.h>
+#include <TObjString.h>
+#include <TSystem.h>
+#include <TLatex.h>
+#include <TText.h>
+#include <TGraph.h>
+#include "GetRootFileName.C"
+#include "GetRunNumber.C"
+#include "TPaveText.h"
+#ifdef STANDALONE
+#include <TApplication.h>
+#endif
+// #define DEBUGGETFILEOBJECTS
+// #define DEBUGPARSE
+// #define DEBUG
+//#define DEBUG2
+//#define NOISY
+//#define INTERNALSTYLE
+
+//TString guiDirectory = "onlineGUI_v1.2.1/";
+TString guiDirectory = "./";
+
+///////////////////////////////////////////////////////////////////
+//  Class: OnlineConfig
+//
+//     Utility class that reads in a text file (.cfg) and
+//     stores it's contents.
+//
+//
+
+OnlineConfig::OnlineConfig()
+{
+  // Constructor.  Without an argument, will use default "standard" config
+  fMonitor = kFALSE;
+  OnlineConfig("standard");
+}
+
+OnlineConfig::OnlineConfig(TString anatype)
+{
+  // Constructor.  Takes the config anatype as the only argument.
+  //  Loads up the configuration file, and stores it's contents for access.
+
+  confFileName = anatype;
+  configfilestart=anatype;
+  if(!confFileName.Contains(".cfg"))
+    confFileName += ".cfg";
+  fMonitor = kFALSE;
+  fFoundCfg = kFALSE;
+
+  // Attempt to find the config file in specified (first argument,
+  // relative or absolute) location, then in guiDirectory
+  fConfFile = new ifstream(confFileName.Data());
+  if ( ! (*fConfFile) ) {
+    cerr << "OnlineConfig() WARNING: config file " << confFileName.Data()
+         << " does not exist" << endl;
+    cerr << " Checking the " << guiDirectory << " directory" << endl;
+    confFileName.Prepend(guiDirectory+"/");
+    fConfFile = new ifstream(confFileName.Data());
+    if ( ! (*fConfFile) ) {
+      // Didn't find it... load up the default config
+      confFileName = guiDirectory+"/default.cfg";
+      cout << "OnlineConfig()  Trying " << confFileName.Data()
+	   << " as default configuration." << endl
+	   << " (May be ok.)" << endl;
+      fConfFile = new ifstream(confFileName.Data());
+      if ( ! (*fConfFile) ) {
+	cerr << "OnlineConfig() WARNING: no file "
+	     << confFileName.Data() <<endl;
+	cerr << "You need a configuration to run.  Ask an expert."<<endl;
+	fFoundCfg = kFALSE;
+	//      return;
+      } else {
+	fFoundCfg = kTRUE;
+      }
+    } else {
+      fFoundCfg = kTRUE;
+    }
+  } else {
+    fFoundCfg = kTRUE;
+  }
+
+  if(fFoundCfg) {
+  clog << "GUI Configuration loading from "
+       << confFileName.Data() << endl;
+  }
+
+  ParseFile();
+
+  // Load up a user configurable style (if it exists)
+  TString styleFile = guiDirectory+"onlineGUI_Style.C";
+  if(!gSystem->AccessPathName(styleFile))
+     gROOT->Macro(styleFile);
+
+  fConfFile->close();
+  delete fConfFile;
+
+}
+
+void OnlineConfig::ParseFile()
+{
+  // Reads in the Config File, and makes the proper calls to put
+  //  the information contained into memory.
+
+  if(!fFoundCfg) {
+    return;
+  }
+
+  TString comment = "#";
+  vector<TString> strvect;
+  TString sinput, sline;
+  while (sline.ReadLine(*fConfFile)) {
+    strvect.clear();
+    // Strip away leading and trailing spaces.
+    sline = sline.Strip(TString::kBoth,' ');
+    // If the line starts with a comment, skip it.
+    if(sline.BeginsWith(comment)) continue;
+    // If the line contains a comment, split it up into two and keep
+    // the uncommented (first) part
+    if(sline.Contains(comment)) {
+      TObjArray *tmpoarr = sline.Tokenize(comment);
+      TObjString *tmpostr = (TObjString*)tmpoarr->First();
+      sline = tmpostr->GetString().Strip(TString::kTrailing,' ');
+      delete tmpoarr;
+    }
+    // Now split up the line according to 's and spaces.  This is for
+    // looking for the histogram using it's title (which may contain
+    // spaces) instead of its name.
+    if(sline.Contains("'")) {
+      TObjArray *tmpoarr = sline.Tokenize("'");
+      Bool_t quote_on_odd = kTRUE;
+      if(!(sline.BeginsWith("'"))) quote_on_odd=kFALSE;
+      TIterator *next = tmpoarr->MakeIterator();
+      TObjString *tmpostr; Bool_t odd=kTRUE;
+      while((tmpostr=(TObjString*)next->Next())!=NULL) {
+	if((quote_on_odd&&odd) || (!quote_on_odd&&!odd)) {
+	  strvect.push_back(tmpostr->GetString());
+	  odd = !odd;
+	} else {
+	  TObjArray *tmpoarr2 = tmpostr->GetString().Tokenize(" ");
+	  TIterator *next2 = tmpoarr2->MakeIterator();
+	  TObjString *tmpostr2;
+	  while((tmpostr2=(TObjString*)next2->Next())!=NULL) {
+	    strvect.push_back(tmpostr2->GetString());
+	  }
+	  delete tmpoarr2;
+	  odd = !odd;
+	}
+      }
+      delete tmpoarr;
+    } else { // No 's.. just split according to spaces
+      TObjArray *tmpoarr2 = sline.Tokenize(" ");
+      TIterator *next2 = tmpoarr2->MakeIterator();
+      TObjString *tmpostr2;
+      while((tmpostr2=(TObjString*)next2->Next())!=NULL) {
+	strvect.push_back(tmpostr2->GetString());
+      }
+      delete tmpoarr2;
+    }
+    sConfFile.push_back(strvect);
+
+}
+
+#ifdef DEBUGPARSE
+  for(UInt_t ii=0; ii<sConfFile.size(); ii++) {
+    cout << "Line " << ii << endl << "  ";
+    for(UInt_t jj=0; jj<sConfFile[ii].size(); jj++)
+      cout << sConfFile[ii][jj] << " ";
+    cout << endl;
+  }
+#endif
+
+  cout << "     " << sConfFile.size() << " lines read from "
+       << confFileName << endl;
+
+}
+
+Bool_t OnlineConfig::ParseConfig()
+{
+  //  Goes through each line of the config [must have been ParseFile()'d]
+  //   and interprets.
+
+  if(!fFoundCfg) {
+    return kFALSE;
+  }
+
+  UInt_t command_cnt=0;
+  UInt_t j=0;
+  Bool_t hasMultiPlots=kFALSE;
+  canvaswidth = 800;		// Default canvas size
+  canvasheight = 600;
+  // If statement for each high level command (cut, newpage, etc)
+  for(UInt_t i=0;i<sConfFile.size();i++) {
+    // "newpage" command
+    if(sConfFile[i][0] == "newpage") {
+      // sConfFile[i] is first of pair
+      for(j=i+1;j<sConfFile.size();j++) {
+	if(sConfFile[j][0] != "newpage") {
+	  // Count how many commands within the page
+	  command_cnt++;
+	} else break;
+      }
+      pageInfo.push_back(make_pair(i,command_cnt));
+      i += command_cnt;
+      command_cnt=0;
+    }
+    if(sConfFile[i][0] == "watchfile") {
+      fMonitor = kTRUE;
+    }
+    if(sConfFile[i][0] == "definecut") {
+      if(sConfFile[i].size()>3) {
+	cerr << "cut command has too many arguments" << endl;
+	continue;
+      }
+      TCut tempCut(sConfFile[i][1],sConfFile[i][2]);
+      cutList.push_back(tempCut);
+    }
+    if(sConfFile[i][0] == "rootfile") {
+      if(sConfFile[i].size() != 2) {
+	cerr << "WARNING: rootfile command does not have the "
+	     << "correct number of arguments"
+	     << endl;
+	continue;
+      }
+      if(!rootfilename.IsNull()) {
+	cerr << "WARNING: too many rootfile's defined. "
+	     << " Will only use the first one."
+	     << endl;
+	continue;
+      }
+      rootfilename = sConfFile[i][1];
+    }
+    if(sConfFile[i][0] == "goldenrootfile") {
+      if(sConfFile[i].size() != 2) {
+	cerr << "WARNING: goldenfile command does not have the "
+	     << "correct number of arguments"
+	     << endl;
+	continue;
+      }
+      if(!goldenrootfilename.IsNull()) {
+	cerr << "WARNING: too many goldenrootfile's defined. "
+	     << " Will only use the first one."
+	     << endl;
+	continue;
+      }
+      goldenrootfilename = sConfFile[i][1];
+    }
+    if(sConfFile[i][0] == "protorootfile") {
+      if(sConfFile[i].size() != 2) {
+	cerr << "WARNING: protorootfile command does not have the "
+	     << "correct number of arguments"
+	     << endl;
+	continue;
+      }
+      if(!protorootfile.IsNull()) {
+	cerr << "WARNING: too many protorootfile's defined. "
+	     << " Will only use the first one."
+	     << endl;
+	continue;
+      }
+      protorootfile = sConfFile[i][1];
+    }
+    if(sConfFile[i][0] == "guicolor") {
+      if(sConfFile[i].size() != 2) {
+	cerr << "WARNING: guicolor command does not have the "
+	     << "correct number of arguments (needs 1)"
+	     << endl;
+	continue;
+      }
+      if(!guicolor.IsNull()) {
+	cerr << "WARNING: too many guicolor's defined. "
+	     << " Will only use the first one."
+	     << endl;
+	continue;
+      }
+      guicolor = sConfFile[i][1];
+    }
+    if(sConfFile[i][0] == "canvassize") {
+      if(sConfFile[i].size() != 3) {
+	cerr << "WARNING: canvassize command does not have the "
+	     << "correct number of arguments (needs 2)"
+	     << endl;
+	continue;
+      }
+      canvaswidth = UInt_t(atoi(sConfFile[i][1]));
+      canvasheight = UInt_t(atoi(sConfFile[i][2]));
+    }
+    if(sConfFile[i][0] == "plotsdir") {
+      if(sConfFile[i].size() != 2) {
+	cerr << "WARNING: plotsdir command does not have the "
+	     << "correct number of arguments (needs 1)"
+	     << endl;
+	continue;
+      }
+      if(!plotsdir.IsNull()) {
+	cerr << "WARNING: too many plotdir's defined. "
+	     << " Will only use the first one."
+	     << endl;
+	continue;
+      }
+      plotsdir = sConfFile[i][1];
+    }
+    if(sConfFile[i][0] == "multiplot") {
+      hasMultiPlots = kTRUE;
+    }
+
+  }
+
+  if(hasMultiPlots) {
+    if(!ParseForMultiPlots()) {
+      cerr << "ParseForMultiPlots() Failed" << endl;
+    }
+  }
+
+#ifdef NOISY
+  for(UInt_t i=0; i<GetPageCount(); i++) {
+    cout << "Page " << i << " (" << GetPageTitle(i) << ")"
+	 << " will draw " << GetDrawCount(i)
+	 << " histograms." << endl;
+  }
+#endif
+
+  cout << "Number of pages defined = " << GetPageCount() << endl;
+  cout << "Number of cuts defined = " << cutList.size() << endl;
+
+  if (fMonitor)
+    cout << "Will periodically update plots" << endl;
+  if(!goldenrootfilename.IsNull()) {
+    cout << "Will compare chosen histrograms with the golden rootfile: "
+	 << endl
+	 << goldenrootfilename << endl;
+  }
+
+  return kTRUE;
+
+}
+
+Bool_t OnlineConfig::ParseForMultiPlots() {
+  // Parse through each line of sConfFile,
+  // and replace each "multiplot" command with a real draw entry
+
+  vector < vector <TString> > newConfFile;
+  for(UInt_t iter=0;iter<sConfFile.size();iter++) {
+    if(sConfFile[iter][0]=="multiplot") {
+      // First argument is the low limit,
+      // second argument is the high limit
+      UInt_t lolimit = (UInt_t)sConfFile[iter][1].Atoi();
+      UInt_t hilimit = (UInt_t)sConfFile[iter][2].Atoi();
+
+      // For the rest of the line, replace all of the XXXXX's
+      // with an iteration from lolimit to hilimit.
+      for(UInt_t imult=lolimit;imult<=hilimit;imult++) {
+	vector <TString> newline;
+	for(UInt_t ielem=3; ielem<sConfFile[iter].size();ielem++) {
+	  TString origString = sConfFile[iter][ielem];
+	  TString newString = origString;
+	  newString.ReplaceAll("XXXXX",Form("%d",imult));
+	  newline.push_back(newString);
+	}
+	newConfFile.push_back(newline);
+      }
+    } else {
+      newConfFile.push_back(sConfFile[iter]);
+    }
+  }
+
+#ifdef DEBUG
+  for(UInt_t iter=0;iter<newConfFile.size();iter++) {
+    for(UInt_t iline=0;iline<newConfFile[iter].size();iline++) {
+      cout << newConfFile[iter][iline] << " ";
+    }
+    cout << endl;
+  }
+#endif
+
+  // Out with the old, in with the new.
+  sConfFile.clear();
+  sConfFile = newConfFile;
+
+  // Now need to recalculate pageInfo.
+  UInt_t command_cnt=0;
+  UInt_t j=0;
+
+  pageInfo.clear();
+  // If statement for each high level command (cut, newpage, etc)
+  for(UInt_t i=0;i<sConfFile.size();i++) {
+    // "newpage" command
+    if(sConfFile[i][0] == "newpage") {
+      // sConfFile[i] is first of pair
+      for(j=i+1;j<sConfFile.size();j++) {
+	if(sConfFile[j][0] != "newpage") {
+	  // Count how many commands within the page
+	  command_cnt++;
+	} else break;
+      }
+      pageInfo.push_back(make_pair(i,command_cnt));
+      i += command_cnt;
+      command_cnt=0;
+    }
+  }
+
+  return kTRUE;
+
+}
+
+TCut OnlineConfig::GetDefinedCut(TString ident) {
+  // Returns the defined cut, according to the identifier
+
+  for(UInt_t i=0; i<cutList.size(); i++) {
+    if((TString)cutList[i].GetName() == ident.Data()) {
+      TCut tempCut = cutList[i].GetTitle();
+      return tempCut;
+    }
+  }
+  return "";
+}
+
+vector <TString> OnlineConfig::GetCutIdent() {
+  // Returns a vector of the cut identifiers, specified in config
+  vector <TString> out;
+
+  for(UInt_t i=0; i<cutList.size(); i++) {
+    out.push_back(cutList[i].GetName());
+  }
+
+  return out;
+}
+
+Bool_t OnlineConfig::IsLogx(UInt_t page) {
+// Check if last word on line is "logx"
+
+  UInt_t page_index = pageInfo[page].first;
+  Int_t word_index = sConfFile[page_index].size()-1;
+  if (word_index <= 0) return kFALSE;
+  TString option = sConfFile[page_index][word_index];
+  if(option == "logx") return kTRUE;
+  return kFALSE;
+
+}
+
+Bool_t OnlineConfig::IsLogy(UInt_t page) {
+// Check if last word on line is "logy"
+
+  UInt_t page_index = pageInfo[page].first;
+  Int_t word_index = sConfFile[page_index].size()-1;
+  if (word_index <= 0) return kFALSE;
+  TString option = sConfFile[page_index][word_index];
+  if(option == "logy") return kTRUE;
+  return kFALSE;
+
+}
+
+Bool_t OnlineConfig::IsLogz(UInt_t page) {
+// Check if last word on line is "logz"
+
+  UInt_t page_index = pageInfo[page].first;
+  Int_t word_index = sConfFile[page_index].size()-1;
+  if (word_index <= 0) return kFALSE;
+  TString option = sConfFile[page_index][word_index];
+  if(option == "logz") return kTRUE;
+  return kFALSE;
+
+}
+
+
+pair <UInt_t, UInt_t> OnlineConfig::GetPageDim(UInt_t page)
+{
+  // If defined in the config, will return those dimensions
+  //  for the indicated page.  Otherwise, will return the
+  //  calculated dimensions required to fit all histograms.
+
+  pair <UInt_t, UInt_t> outDim;
+
+  // This is the page index in sConfFile.
+  UInt_t page_index = pageInfo[page].first;
+
+  UInt_t size1 = 2;
+
+  if (IsLogx(page)) size1 = 3;  // last word is "logy"
+  if (IsLogy(page)) size1 = 3;  // last word is "logy"
+  if (IsLogz(page)) size1 = 3;  // last word is "logy"
+
+  // If the dimensions are defined, return them.
+  if(sConfFile[page_index].size()>size1-1) {
+    if(sConfFile[page_index].size() == size1) {
+      outDim = make_pair(UInt_t(atoi(sConfFile[page_index][1])),
+		       UInt_t(atoi(sConfFile[page_index][1])));
+      return outDim;
+    } else if (sConfFile[page_index].size() == size1+1) {
+      outDim = make_pair(UInt_t(atoi(sConfFile[page_index][1])),
+		       UInt_t(atoi(sConfFile[page_index][2])));
+      return outDim;
+    } else {
+      cout << "Warning: newpage command has too many arguments. "
+	   << "Will automatically determine dimensions of page."
+	   << endl;
+    }
+  }
+
+  // If not defined, return the "default."
+  UInt_t draw_count = GetDrawCount(page);
+  UInt_t dim = UInt_t(TMath::Nint(sqrt(double(draw_count+1))));
+  outDim = make_pair(dim,dim);
+
+  return outDim;
+}
+
+TString OnlineConfig::GetPageTitle(UInt_t page)
+{
+  // Returns the title of the page.
+  //  if it is not defined in the config, then return "Page #"
+
+  TString title;
+
+  UInt_t iter_command = pageInfo[page].first+1;
+
+  for(UInt_t i=0; i<pageInfo[page].second; i++) { // go through each command
+    if(sConfFile[iter_command+i][0] == "title") {
+      // Combine the strings, and return it
+      for (UInt_t j=1; j<sConfFile[iter_command+i].size(); j++) {
+	title += sConfFile[iter_command+i][j];
+	title += " ";
+      }
+      title.Chop();
+      return title;
+    }
+  }
+  title = "Page "; title += page;
+  return title;
+}
+
+vector <UInt_t> OnlineConfig::GetDrawIndex(UInt_t page)
+{
+  // Returns an index of where to find the draw commands within a page
+  //  within the sConfFile vector
+
+  vector <UInt_t> index;
+  UInt_t iter_command = pageInfo[page].first+1;
+
+  for(UInt_t i=0; i<pageInfo[page].second; i++) {
+    if(sConfFile[iter_command+i][0] != "title") {
+      index.push_back(iter_command+i);
+    }
+  }
+
+  return index;
+}
+
+UInt_t OnlineConfig::GetDrawCount(UInt_t page)
+{
+  // Returns the number of histograms that have been request for this page
+  UInt_t draw_count=0;
+
+  for(UInt_t i=0; i<pageInfo[page].second; i++) {
+    if(sConfFile[pageInfo[page].first+i+1][0] != "title") draw_count++;
+  }
+
+  return draw_count;
+
+}
+
+drawcommand OnlineConfig::GetDrawCommand(UInt_t page, UInt_t nCommand)
+{
+  // Returns the vector of strings pertaining to a specific page, and
+  //   draw command from the config.
+  // Return vector of TStrings:
+  //  0: variable
+  //  1: cut - only for Tree variables
+  //  2: type
+  //  3: title
+  //  4: treename - only for Tree variables
+  //  5: nostat
+  //  6: noshowgolden  - only for Histograms
+  //  This should probably be replaced with an actual structure
+
+  drawcommand out_command;
+  vector <UInt_t> command_vector = GetDrawIndex(page);
+  UInt_t index = command_vector[nCommand];
+
+#ifdef DEBUG
+  cout << "OnlineConfig::GetDrawCommand(" << page << ","
+       << nCommand << ")" << endl;
+#endif
+
+  // First line is the variable
+  if(sConfFile[index].size()>=1) {
+    out_command.variable = sConfFile[index][0];
+  }
+  if(sConfFile[index].size()>=2) {
+    if((sConfFile[index][1] != "-type") &&
+       (sConfFile[index][1] != "-title") &&
+       (sConfFile[index][1] != "-tree") &&
+       (sConfFile[index][1] != "-noshowgolden") &&
+       (sConfFile[index][1] != "-nostat")) {
+      if(out_command.variable=="macro") {
+	out_command.macro = sConfFile[index][1];
+      } else {
+	out_command.cut = sConfFile[index][1];
+      }
+    }
+  }
+
+  // Now go through the rest of that line..
+  for (UInt_t i=1; i<sConfFile[index].size(); i++) {
+    if(sConfFile[index][i]=="-type") {
+      out_command.type = sConfFile[index][i+1];
+      i = i+1;
+    } else if(sConfFile[index][i]=="-title") {
+      // Put the entire title, surrounded by quotes, as one TString
+      TString title;
+      UInt_t j=0;
+      for(j=i+1; j<sConfFile[index].size(); j++) {
+	TString word = sConfFile[index][j];
+	if( (word.BeginsWith("\"")) && (word.EndsWith("\"")) ) {
+	  title = word.ReplaceAll("\"","");
+	  out_command.title = title;
+	  i = j;
+	  break;
+	} else if(word.BeginsWith("\"")) {
+	  title = word.ReplaceAll("\"","");
+	} else if(word.EndsWith("\"")) {
+	  title += " " + word.ReplaceAll("\"","");
+	  out_command.title = title;
+	  i = j;
+	  break;
+	} else {
+	  title += " " + word;
+	}
+      }
+      // If we got here, and out_command.title is null... then just copy the contents
+      // of "title" to out_command.title (taking out any "'s along the way)
+      if(out_command.title.IsNull())
+	out_command.title = title.ReplaceAll("\"","");
+    } else if(sConfFile[index][i]=="-tree") {
+      out_command.treename = sConfFile[index][i+1];
+      i = i+1;
+    } else if(sConfFile[index][i]=="-nostat") {
+      out_command.nostat = "nostat";
+    } else if(sConfFile[index][i]=="-noshowgolden") {
+      out_command.noshowgolden = "noshowgolden";
+    }
+
+
+#ifdef DEBUG
+    cout << endl;
+#endif
+  }
+#ifdef DEBUG
+  cout << sConfFile[index].size() << ": ";
+  for(UInt_t i=0; i<sConfFile[index].size(); i++) {
+    cout << sConfFile[index][i] << " ";
+  }
+  cout << endl;
+#endif
+  return out_command;
+}
+
+vector <TString> OnlineConfig::SplitString(TString instring,TString delim)
+{
+  // Utility to split up a string on the deliminator.
+  //  returns a vector of strings.
+
+  vector <TString> v;
+
+  TString remainingString = instring;
+  TString tempstring = instring;
+  int i;
+
+  while (remainingString.Index(delim) != -1) {
+    i = remainingString.Index(delim);
+    tempstring.Remove(i);
+    v.push_back(tempstring);
+    remainingString.Remove(0,i+1);
+    while(remainingString.Index(delim) == 0) {
+      remainingString.Remove(0,1);
+    }
+    tempstring = remainingString;
+    // Cut out the rest, if it's a comment (starts with #)
+    if(TString(remainingString.Strip(TString::kLeading,' ')).BeginsWith("#")) {
+      tempstring = "";
+      break;
+    }
+  }
+
+  while(tempstring.EndsWith(delim)) {
+    tempstring.Chop();
+  }
+
+  if(!tempstring.IsNull()) v.push_back(tempstring);
+
+  return v;
+}
+
+void OnlineConfig::OverrideRootFile(UInt_t runnumber)
+{
+  // Override the ROOT file defined in the cfg file If
+  // protorootfile is used, construct filename using it, otherwise
+  // uses a helper macro "GetRootFileName.C(UInt_t runnumber)
+
+  if(!protorootfile.IsNull()) {
+    TString rn = "";
+    rn += runnumber;
+    protorootfile.ReplaceAll("XXXXX",rn.Data());
+    rootfilename = protorootfile;
+  } else {
+    rootfilename = GetRootFileName(runnumber);
+  }
+
+  cout << "Overridden File name: " << rootfilename << endl;
+}
+
+///////////////////////////////////////////////////////////////////
+//  Class: OnlineGUI
+//
+//    Creates a GUI to display the commands used in OnlineConfig
+//
+//
+
+OnlineGUI::OnlineGUI(OnlineConfig& config, Bool_t printonly, Bool_t rootonly,UInt_t RunNum):
+  runNumber(RunNum),
+  timer(0),
+  fFileAlive(kFALSE)
+{
+  // Constructor.  Get the config pointer, and make the GUI.
+
+  fConfig = &config;
+
+  if(printonly || rootonly) {
+    fPrintOnly=kTRUE;
+    PrintPages();
+  } else {
+    fPrintOnly=kFALSE;
+    CreateGUI(gClient->GetRoot(),200,200);
+  }
+}
+
+void OnlineGUI::CreateGUI(const TGWindow *p, UInt_t w, UInt_t h)
+{
+
+  // Open the RootFile.  Die if it doesn't exist.
+  //  unless we're watching a file.
+  fRootFile.RootFile = new TFile(fConfig->GetRootFile(),"READ");
+  if(!fRootFile.RootFile->IsOpen()) {
+    cout << "ERROR:  rootfile: " << fConfig->GetRootFile()
+	 << " does not exist"
+	 << endl;
+    if(fConfig->IsMonitor()) {
+      cout << "Will wait... hopefully.." << endl;
+    } else {
+#ifdef STANDALONE
+      gApplication->Terminate();
+#else
+      return;
+#endif
+    }
+  } else {
+    fFileAlive = kTRUE;
+    ObtainRunNumber();
+    // Open the Root Trees.  Give a warning if it's not there..
+    GetFileObjects(&fRootFile);
+    GetRootTree(&fRootFile);
+    GetTreeVars(&fRootFile);
+    for(UInt_t i=0; i<fRootFile.RootTree.size(); i++) {
+      if(fRootFile.RootTree[i]==0) {
+	fRootFile.RootTree.erase(fRootFile.RootTree.begin() + i);
+      }
+    }
+
+  }
+  TString goldenfilename=fConfig->GetGoldenFile();
+  if(!goldenfilename.IsNull()) {
+    fGoldenFile.RootFile = new TFile(goldenfilename,"READ");
+    if(!fGoldenFile.RootFile->IsOpen()) {
+      cout << "ERROR: goldenrootfile: " << goldenfilename
+	   << " does not exist.  Oh well, no comparison plots."
+	   << endl;
+      doGolden = kFALSE;
+      fGoldenFile.RootFile=NULL;
+    } else {
+      // Open the Root Trees.  Give a warning if it's not there..
+      GetFileObjects(&fGoldenFile);
+      GetRootTree(&fGoldenFile);
+      GetTreeVars(&fGoldenFile);
+      for(UInt_t i=0; i<fGoldenFile.RootTree.size(); i++) {
+        if(fGoldenFile.RootTree[i]==0) {
+	  fGoldenFile.RootTree.erase(fGoldenFile.RootTree.begin() + i);
+        }
+      }
+      doGolden = kTRUE;
+    }
+  } else {
+    doGolden=kFALSE;
+    fGoldenFile.RootFile=NULL;
+  }
+
+
+  // Create the main frame
+  fMain = new TGMainFrame(p,w,h);
+  fMain->Connect("CloseWindow()", "OnlineGUI", this, "MyCloseWindow()");
+  ULong_t lightgreen, lightblue, red, mainguicolor;
+  gClient->GetColorByName("lightgreen",lightgreen);
+  gClient->GetColorByName("lightblue",lightblue);
+  gClient->GetColorByName("red",red);
+
+  UInt_t canvas_width = fConfig->GetCanvasWidth();
+  UInt_t canvas_height = fConfig->GetCanvasHeight();
+
+  Bool_t good_color=kFALSE;
+  TString usercolor = fConfig->GetGuiColor();
+  if(!usercolor.IsNull()) {
+    good_color = gClient->GetColorByName(usercolor,mainguicolor);
+  }
+
+  if(!good_color) {
+    if(!usercolor.IsNull()) {
+      cout << "Bad guicolor (" << usercolor << ").. using default." << endl;
+    }
+    if(fConfig->IsMonitor()) {
+      // Default background color for Online Monitor
+      mainguicolor = lightgreen;
+    } else {
+      // Default background color for Normal Online Display
+      mainguicolor = lightblue;
+    }
+  }
+
+  fMain->SetBackgroundColor(mainguicolor);
+
+  // Top frame, to hold page buttons and canvas
+  fTopframe = new TGHorizontalFrame(fMain,200,200);
+  fTopframe->SetBackgroundColor(mainguicolor);
+  fMain->AddFrame(fTopframe, new TGLayoutHints(kLHintsExpandX
+                                              | kLHintsExpandY,10,10,10,1));
+
+  // Create a verticle frame widget with radio buttons
+  //  This will hold the page buttons
+  vframe = new TGVerticalFrame(fTopframe,40,200);
+  vframe->SetBackgroundColor(mainguicolor);
+  TString buff;
+  for(UInt_t i=0; i<fConfig->GetPageCount(); i++) {
+    buff = fConfig->GetPageTitle(i);
+    fRadioPage[i] = new TGRadioButton(vframe,buff,i);
+    fRadioPage[i]->SetBackgroundColor(mainguicolor);
+  }
+
+  fRadioPage[0]->SetState(kButtonDown);
+  current_page = 0;
+
+  for (UInt_t i=0; i<fConfig->GetPageCount(); i++) {
+    vframe->AddFrame(fRadioPage[i],
+		     new TGLayoutHints(kLHintsLeft |
+				       kLHintsCenterY,5,5,3,4));
+    fRadioPage[i]->Connect("Pressed()", "OnlineGUI", this, "DoRadio()");
+  }
+  if(!fConfig->IsMonitor()) {
+    wile =
+      new TGPictureButton(vframe,
+			  gClient->GetPicture(guiDirectory+"/hcsmall.png"));
+    wile->Connect("Pressed()","OnlineGUI", this,"DoDraw()");
+  } else {
+    wile =
+      new TGPictureButton(vframe,
+			  gClient->GetPicture(guiDirectory+"/panguin.xpm"));
+    wile->Connect("Pressed()","OnlineGUI", this,"DoDrawClear(&fRootFile)");
+  }
+  wile->SetBackgroundColor(mainguicolor);
+
+  vframe->AddFrame(wile,
+		   new TGLayoutHints(kLHintsBottom|kLHintsLeft,5,10,4,2));
+
+
+  fTopframe->AddFrame(vframe,
+		      new TGLayoutHints(kLHintsCenterX|
+					kLHintsCenterY,2,2,2,2));
+
+  // Create canvas widget
+  fEcanvas = new TRootEmbeddedCanvas("Ecanvas", fTopframe, canvas_width, canvas_height);
+  fEcanvas->SetBackgroundColor(mainguicolor);
+  fTopframe->AddFrame(fEcanvas, new TGLayoutHints(kLHintsExpandY,10,10,10,1));
+  fCanvas = fEcanvas->GetCanvas();
+
+  // Create the bottom frame.  Contains control buttons
+  fBottomFrame = new TGHorizontalFrame(fMain,canvas_width+400,200);
+  fBottomFrame->SetBackgroundColor(mainguicolor);
+  fMain->AddFrame(fBottomFrame, new TGLayoutHints(kLHintsExpandX,10,10,10,10));
+
+  // Create a horizontal frame widget with buttons
+  hframe = new TGHorizontalFrame(fBottomFrame,canvas_width+400,40);
+  hframe->SetBackgroundColor(mainguicolor);
+  fBottomFrame->AddFrame(hframe,new TGLayoutHints(kLHintsExpandX,200,20,2,2));
+
+  fPrev = new TGTextButton(hframe,"Prev");
+  fPrev->SetBackgroundColor(mainguicolor);
+  fPrev->Connect("Clicked()","OnlineGUI",this,"DrawPrev()");
+  hframe->AddFrame(fPrev, new TGLayoutHints(kLHintsCenterX,5,5,1,1));
+
+  fNext = new TGTextButton(hframe,"Next");
+  fNext->SetBackgroundColor(mainguicolor);
+  fNext->Connect("Clicked()","OnlineGUI",this,"DrawNext()");
+  hframe->AddFrame(fNext, new TGLayoutHints(kLHintsCenterX,5,5,1,1));
+
+  fExit = new TGTextButton(hframe,"Exit GUI");
+  fExit->SetBackgroundColor(red);
+  fExit->Connect("Clicked()","OnlineGUI",this,"CloseGUI()");
+
+  hframe->AddFrame(fExit, new TGLayoutHints(kLHintsCenterX,5,5,1,1));
+
+  TString Buff;
+  if(runNumber==0) {
+    Buff = "";
+  } else {
+    Buff = "Run #";
+    Buff += runNumber;
+  }
+  TGString labelBuff(Buff);
+
+  fRunNumber = new TGLabel(hframe,Buff);
+  fRunNumber->SetBackgroundColor(mainguicolor);
+  hframe->AddFrame(fRunNumber,new TGLayoutHints(kLHintsCenterX,5,5,1,1));
+
+  fPrint = new TGTextButton(hframe,"Print To &File");
+  fPrint->SetBackgroundColor(mainguicolor);
+  fPrint->Connect("Clicked()","OnlineGUI",this,"PrintToFile()");
+  hframe->AddFrame(fPrint, new TGLayoutHints(kLHintsCenterX,5,5,1,1));
+
+
+  // Set a name to the main frame
+  if(fConfig->IsMonitor()) {
+    fMain->SetWindowName("Parity ANalysis GUI moNitor");
+  } else {
+    fMain->SetWindowName("Online Analysis GUI");
+  }
+
+  // Map all sub windows to main frame
+  fMain->MapSubwindows();
+
+  // Initialize the layout algorithm
+  fMain->Resize(fMain->GetDefaultSize());
+
+  // Map main frame
+  fMain->MapWindow();
+
+#ifdef DEBUG
+  fMain->Print();
+#endif
+
+  if(fFileAlive) DoDraw();
+
+  if(fConfig->IsMonitor()) {
+    timer = new TTimer();
+    if(fFileAlive) {
+      timer->Connect(timer,"Timeout()","OnlineGUI",this,"TimerUpdate()");
+    } else {
+      timer->Connect(timer,"Timeout()","OnlineGUI",this,"CheckRootFile()");
+    }
+    timer->Start(UPDATETIME);
+  }
+
+}
+
+void OnlineGUI::DoDraw()
+{
+  // The main Drawing Routine.
+
+#ifdef INTERNALSTYLE
+  gStyle->SetOptStat(1110);
+  gStyle->SetStatFontSize(0.1);
+#endif
+  if (fConfig->IsLogx(current_page)) {
+    gStyle->SetOptLogx(1);
+  } else {
+    gStyle->SetOptLogx(0);
+  }
+  if (fConfig->IsLogy(current_page)) {
+    gStyle->SetOptLogy(1);
+  } else {
+    gStyle->SetOptLogy(0);
+  }
+  if (fConfig->IsLogz(current_page)) {
+    gStyle->SetOptLogz(1);
+  } else {
+    gStyle->SetOptLogz(0);
+  }
+#ifdef INTERNALSTYLE
+  gStyle->SetTitleH(0.10);
+  gStyle->SetTitleW(0.40);
+//   gStyle->SetLabelSize(0.10,"X");
+//   gStyle->SetLabelSize(0.10,"Y");
+  gStyle->SetLabelSize(0.05,"X");
+  gStyle->SetLabelSize(0.05,"Y");
+  gStyle->SetPadLeftMargin(0.14);
+  gStyle->SetNdivisions(505,"X");
+  gStyle->SetNdivisions(404,"Y");
+  gStyle->SetPalette(1);
+  gROOT->ForceStyle();
+#endif
+
+  // Determine the dimensions of the canvas..
+  UInt_t draw_count = fConfig->GetDrawCount(current_page);
+#ifdef INTERNALSTYLE
+  if(draw_count>=8) {
+    gStyle->SetLabelSize(0.08,"X");
+    gStyle->SetLabelSize(0.08,"Y");
+  }
+#endif
+//   Int_t dim = Int_t(round(sqrt(double(draw_count))));
+  pair <UInt_t,UInt_t> dim = fConfig->GetPageDim(current_page);
+
+#ifdef DEBUG
+  cout << "Dimensions: " << dim.first << "X"
+       << dim.second << endl;
+#endif
+
+  // Create a nice clean canvas.
+  fCanvas->Clear();
+  fCanvas->Divide(dim.first,dim.second);
+
+  drawcommand thiscommand;
+  // Draw the histograms.
+  for(UInt_t i=0; i<draw_count; i++) {
+    thiscommand = fConfig->GetDrawCommand(current_page,i);
+    thiscommand = fileObject2command(thiscommand,&fRootFile);
+    fCanvas->cd(i+1);
+    if (thiscommand.variable == "macro") {
+      MacroDraw(thiscommand);
+    } else if (thiscommand.objtype.Contains("TH")) {
+      HistDraw(thiscommand);
+    } else if (thiscommand.objtype.Contains("TCanvas")) {
+      CanvasDraw(thiscommand,i+1);
+    } else if (thiscommand.objtype.Contains("TGraph")) {
+      GraphDraw(thiscommand);
+    } else { // otherwise... assume that the objtype is a branch from a tree
+      TreeDraw(thiscommand);
+    }
+  }
+
+  fCanvas->cd();
+  fCanvas->Update();
+
+  if(!fPrintOnly) {
+    CheckPageButtons();
+  }
+
+}
+
+void OnlineGUI::DrawNext()
+{
+  // Handler for the "Next" button.
+  fRadioPage[current_page]->SetState(kButtonUp);
+  // The following line triggers DoRadio()
+  fRadioPage[current_page+1]->SetState(kButtonDown,true);
+
+}
+
+void OnlineGUI::DrawPrev()
+{
+  // Handler for the "Prev" button.
+  fRadioPage[current_page]->SetState(kButtonUp);
+  // The following line triggers DoRadio()
+  fRadioPage[current_page-1]->SetState(kButtonDown,true);
+
+}
+
+void OnlineGUI::DoRadio()
+{
+  // Handle the radio buttons
+  //  Find out which button has been pressed..
+  //   turn off the previous button...
+  //   then draw the appropriate page.
+  // This routine also handles the Draw from the Prev/Next buttons
+  //   - makes a call to DoDraw()
+
+  UInt_t pagecount = fConfig->GetPageCount();
+  TGButton *btn = (TGButton *) gTQSender;
+  UInt_t id = btn->WidgetId();
+
+  if (id <= pagecount) {
+    fRadioPage[current_page]->SetState(kButtonUp);
+  }
+
+  current_page = id;
+  if(!fConfig->IsMonitor()) DoDraw();
+
+}
+
+void OnlineGUI::CheckPageButtons()
+{
+  // Checks the current page to see if it's the first or last page.
+  //  If so... turn off the appropriate button.
+  //  If not.. turn on both buttons.
+
+  if(current_page==0) {
+    fPrev->SetState(kButtonDisabled);
+    if(fConfig->GetPageCount()!=1)
+      fNext->SetState(kButtonUp);
+  } else if(current_page==fConfig->GetPageCount()-1) {
+    fNext->SetState(kButtonDisabled);
+    if(fConfig->GetPageCount()!=1)
+      fPrev->SetState(kButtonUp);
+  } else {
+    fPrev->SetState(kButtonUp);
+    fNext->SetState(kButtonUp);
+  }
+}
+
+void OnlineGUI::GetFileObjects(RootFileObject* fLocalRootFileObj)
+{
+  // Utility to find all of the objects within a File (TTree, TH1F, etc).
+  //  The pair stored in the vector is <ObjName, ObjType>
+  //  For histograms, the title is also stored
+  //    (in case the the name is not very descriptive... like when
+  //    using h2root)
+  //  If there's no good keys.. do nothing.
+#ifdef DEBUGGETFILEOBJECTS
+  cout << "Keys = " << fLocalRootFileObj->RootFile->ReadKeys() << endl;
+#endif
+  if(fLocalRootFileObj->RootFile->ReadKeys()==0) {
+    fLocalRootFileObj->fUpdate = kFALSE;
+//     delete fLocalRootFileObj->RootFile;
+//     fLocalRootFileObj->RootFile = 0;
+//     CheckRootFile();
+    return;
+  }
+  fLocalRootFileObj->vfileObjects.clear();
+
+  TIter next( (fLocalRootFileObj->RootFile)->GetListOfKeys() );
+  TKey *key = new TKey();
+
+  // Do the search
+  while((key=(TKey*)next())!=0) {
+#ifdef DEBUGGETFILEOBJECTS
+    cout << "Key = " << key << endl;
+#endif
+    TString objname = key->GetName();
+    TString objtype = key->GetClassName();
+    TString objtitle = key->GetTitle();
+#ifdef DEBUGGETFILEOBJECTS
+    cout << objname << " " << objtype << endl;
+#endif
+
+    if(objtype.Contains("TDirectory")) {
+      TDirectory *thisdir = (TDirectory*)fLocalRootFileObj->RootFile->Get(objname);
+      TIter nextInDir(thisdir->GetListOfKeys());
+      TKey *innerkey = new TKey();
+      while((innerkey=(TKey*)nextInDir())!=0) {
+	      TString iobjname = innerkey->GetName();
+	      TString iobjtype = innerkey->GetClassName();
+	      TString iobjtitle = innerkey->GetTitle();
+	      TString iobjdir = objname;
+#ifdef DEBUGGETFILEOBJECTS
+	      cout << iobjname << " " << iobjtype << endl;
+#endif
+	      fileObject thisObject;
+	      thisObject.name = iobjname;
+	      thisObject.type = iobjtype;
+	      thisObject.title = iobjtitle;
+	      thisObject.directory = objname;
+	      fLocalRootFileObj->vfileObjects.push_back(thisObject);
+	    }
+    } else {
+      fileObject thisObject;
+      thisObject.name = objname;
+      thisObject.type = objtype;
+      thisObject.title = objtitle;
+      thisObject.directory = "";
+      fLocalRootFileObj->vfileObjects.push_back(thisObject);
+    }
+
+  }
+  fLocalRootFileObj->fUpdate = kTRUE;
+  delete key;
+}
+
+void OnlineGUI::GetTreeVars(RootFileObject* fLocalRootFileObj)
+{
+  // Utility to find all of the variables (leaf's/branches) within a
+  // Specified TTree and put them within the TreeVars vector.
+  fLocalRootFileObj->TreeVars.clear();
+  TObjArray *branchList;
+  vector <TString> currentTree;
+
+  for(UInt_t i=0; i<fLocalRootFileObj->RootTree.size(); i++) {
+    currentTree.clear();
+    branchList = fLocalRootFileObj->RootTree[i]->GetListOfBranches();
+    TIter next(branchList);
+    TBranch *brc;
+
+    while((brc=(TBranch*)next())!=0) {
+      TString found = brc->GetName();
+      // Not sure if the line below is so smart...
+      currentTree.push_back(found);
+    }
+    fLocalRootFileObj->TreeVars.push_back(currentTree);
+  }
+#ifdef DEBUG2
+  for(UInt_t iTree=0; iTree<fLocalRootFileObj->TreeVars.size(); iTree++) {
+  cout << "In Tree " << iTree << ": " << endl;
+    for(UInt_t i=0; i<fLocalRootFileObj->TreeVars[iTree].size(); i++) {
+      cout << fLocalRootFileObj->TreeVars[iTree][i] << endl;
+    }
+  }
+#endif
+}
+
+
+void OnlineGUI::GetRootTree(RootFileObject* fLocalRootFileObj ) {
+  // Utility to search a ROOT File for ROOT Trees
+  // Fills the RootTree vector
+  fLocalRootFileObj->RootTree.clear();
+
+  list <TString> found;
+  for(UInt_t i=0; i<fLocalRootFileObj->vfileObjects.size(); i++) {
+#ifdef DEBUGGETROOTTREE
+    cout << "Object = " << fLocalRootFileObj->vfileObjects[i].type <<
+      "     Name = " << fLocalRootFileObj->vfileObjects[i].name << endl;
+#endif
+    if(fLocalRootFileObj->vfileObjects[i].type.Contains("TTree"))
+       found.push_back(fLocalRootFileObj->vfileObjects[i].name);
+  }
+
+  // Remove duplicates, then insert into fLocalRootFileObj->RootTree
+  found.unique();
+  UInt_t nTrees = found.size();
+
+  for(UInt_t i=0; i<nTrees; i++) {
+    fLocalRootFileObj->RootTree.push_back( (TTree*) fLocalRootFileObj->RootFile->Get(found.front()) );
+    found.pop_front();
+  }
+  // Initialize the TreeEntries vector
+  fLocalRootFileObj->TreeEntries.clear();
+  for(UInt_t i=0;i<fLocalRootFileObj->RootTree.size();i++) {
+    fLocalRootFileObj->TreeEntries.push_back(0);
+  }
+
+}
+
+UInt_t OnlineGUI::GetTreeIndex(TString var, RootFileObject* fLocalRootFileObj ) {
+  // Utility to find out which Tree (in fRootFile.RootTree) has the specified
+  // variable "var".  If the variable is a collection of Tree
+  // variables (e.g. bcm1:lumi1), will only check the first
+  // (e.g. bcm1).
+  // Returns the correct index.  if not found returns an index 1
+  // larger than fRootFile.RootTree.size()
+
+  //  This is for 2d draws... look for the first only
+  if(var.Contains(":")) {
+    TString first_var = fConfig->SplitString(var,":")[0];
+    var = first_var;
+  }
+
+  //  This is for variables with multiple dimensions.
+  if(var.Contains("[")) {
+    TString first_var = fConfig->SplitString(var,"[")[0];
+    var = first_var;
+  }
+
+  for(UInt_t iTree=0; iTree<fLocalRootFileObj->TreeVars.size(); iTree++) {
+    for(UInt_t ivar=0; ivar<fLocalRootFileObj->TreeVars[iTree].size(); ivar++) {
+      if(var == fLocalRootFileObj->TreeVars[iTree][ivar]) return iTree;
+    }
+  }
+
+  return fLocalRootFileObj->RootTree.size()+1;
+}
+
+UInt_t OnlineGUI::GetTreeIndexFromName(TString name, RootFileObject* fLocalRootFileObj) {
+  // Called by TreeDraw().  Tries to find the Tree index provided the
+  //  name.  If it doesn't match up, return a number that's one larger
+  //  than the number of found trees.
+  for(UInt_t iTree=0; iTree<fLocalRootFileObj->RootTree.size(); iTree++) {
+    TString treename = fLocalRootFileObj->RootTree[iTree]->GetName();
+    if(name == treename) {
+      return iTree;
+    }
+  }
+
+  return fLocalRootFileObj->RootTree.size()+1;
+}
+
+void OnlineGUI::MacroDraw(drawcommand command) {
+  // Called by DoDraw(), this will make a call to the defined macro, and
+  //  plot it in it's own pad.  One plot per macro, please.
+
+  if(command.macro.IsNull()) {
+    cout << "macro command doesn't contain a macro to execute" << endl;
+    return;
+  }
+
+  if(doGolden) fRootFile.RootFile->cd();
+  gROOT->Macro(command.macro);
+
+}
+
+void OnlineGUI::CanvasDraw(drawcommand command,UInt_t padnum) {
+  // Called by DoDraw(), this will draw the TCanvas in the current Canvas
+
+  TString rootversion = gROOT->GetVersion();
+  TString slash = "/";
+  TString rootversion_cut = (fConfig->SplitString(rootversion,slash))[0];
+  Double_t ver_num = rootversion_cut.Atof();
+  if(ver_num<5.16) {
+    TString badstring = "TCanvas Drawing Unsupported in ROOT v"+rootversion;
+    BadDraw(badstring);
+    return;
+  }
+
+  TDirectory *fDir;
+  if(command.directory.IsNull()) {
+    fDir = 0;
+  } else {
+    fDir = (TDirectory*)fRootFile.RootFile->Get(command.directory);
+  }
+
+  if(fDir) fDir->cd();
+  fRootFile.RootFile->cd();
+  TCanvas *tcanv = (TCanvas*)fRootFile.RootFile->Get(command.objname);
+  fCanvas->cd(padnum);
+  tcanv->DrawClonePad();
+  delete tcanv;
+
+}
+
+void OnlineGUI::GraphDraw(drawcommand command) {
+  // Called by DoDraw(), this will draw the TCanvas in the current Canvas
+
+  TString rootversion = gROOT->GetVersion();
+  fRootFile.RootFile->cd();
+  TDirectory *fDir;
+  if(command.directory.IsNull()) {
+    fDir = 0;
+  } else {
+    fDir = (TDirectory*)fRootFile.RootFile->Get(command.directory);
+  }
+
+  if(fDir) fDir->cd();
+  TGraph *thisgraph = (TGraph*)fRootFile.RootFile->Get(command.objname);
+  TString drawopt = command.type;
+  if(drawopt.IsNull()) drawopt = "AP";
+  if(!command.title.IsNull()) thisgraph->SetTitle(command.title);
+  thisgraph->Draw(drawopt);
+
+}
+
+
+void OnlineGUI::DoDrawClear(RootFileObject* fLocalRootFileObj) {
+  // Utility to grab the number of entries in each tree.  This info is
+  // then used, if watching a file, to "clear" the TreeDraw
+  // histograms, and begin looking at new data.
+  for(UInt_t i=0; i<fLocalRootFileObj->TreeEntries.size(); i++) {
+    fLocalRootFileObj->TreeEntries[i] = (Int_t) fLocalRootFileObj->RootTree[i]->GetEntries();
+  }
+
+
+}
+
+void OnlineGUI::TimerUpdate() {
+  // Called periodically by the timer, if "watchfile" is indicated
+  // in the config.  Reloads the ROOT file, and updates the current page.
+#ifdef DEBUG
+  cout << "Update Now" << endl;
+#endif
+
+  if(fRootFile.RootFile->IsZombie() || (fRootFile.RootFile->GetSize() == -1)
+     || (fRootFile.RootFile->ReadKeys()==0)) {
+    cout << "New run not yet available.  Waiting..." << endl;
+    fRootFile.RootFile->Close();
+    delete fRootFile.RootFile;
+    fRootFile.RootFile = 0;
+    timer->Reset();
+    timer->Disconnect();
+    timer->Connect(timer,"Timeout()","OnlineGUI",this,"CheckRootFile()");
+    return;
+  }
+  for(UInt_t i=0; i<fRootFile.RootTree.size(); i++) {
+    fRootFile.RootTree[i]->Refresh();
+  }
+  DoDraw();
+  timer->Reset();
+
+}
+
+void OnlineGUI::BadDraw(TString errMessage) {
+  // Routine to display (in Pad) why a particular draw method has
+  // failed.
+  TPaveText *pt = new TPaveText(0.1,0.1,0.9,0.9,"brNDC");
+  pt->SetBorderSize(3);
+  pt->SetFillColor(10);
+  pt->SetTextAlign(22);
+  pt->SetTextFont(72);
+  pt->SetTextColor(2);
+  pt->AddText(errMessage.Data());
+  pt->Draw();
+//   cout << errMessage << endl;
+
+}
+
+
+void OnlineGUI::CheckRootFile() {
+  // Check the path to the rootfile (should follow symbolic links)
+  // ... If found:
+  //   Reopen new root file,
+  //   Reconnect the timer to TimerUpdate()
+
+  if(gSystem->AccessPathName(fConfig->GetRootFile())==0) {
+    cout << "Found the new run" << endl;
+    if(OpenRootFile()==0) {
+      timer->Reset();
+      timer->Disconnect();
+      timer->Connect(timer,"Timeout()","OnlineGUI",this,"TimerUpdate()");
+    }
+  } else {
+    TString rnBuff = "Waiting for run";
+    fRunNumber->SetText(rnBuff.Data());
+    hframe->Layout();
+  }
+
+}
+
+Int_t OnlineGUI::OpenRootFile() {
+
+
+  fRootFile.RootFile = new TFile(fConfig->GetRootFile(),"READ");
+  if(fRootFile.RootFile->IsZombie() || (fRootFile.RootFile->GetSize() == -1)
+     || (fRootFile.RootFile->ReadKeys()==0)) {
+    cout << "New run not yet available.  Waiting..." << endl;
+    fRootFile.RootFile->Close();
+    delete fRootFile.RootFile;
+    fRootFile.RootFile = 0;
+    timer->Reset();
+    timer->Disconnect();
+    timer->Connect(timer,"Timeout()","OnlineGUI",this,"CheckRootFile()");
+    return -1;
+  }
+
+  // Update the runnumber
+  ObtainRunNumber();
+  if(runNumber != 0) {
+    TString rnBuff = "Run #";
+    rnBuff += runNumber;
+    fRunNumber->SetText(rnBuff.Data());
+    hframe->Layout();
+  }
+
+  // Open the Root Trees.  Give a warning if it's not there..
+  GetFileObjects(&fRootFile);
+  if (fRootFile.fUpdate) { // Only do this stuff if there are valid keys
+    GetRootTree(&fRootFile);
+    GetTreeVars(&fRootFile);
+    for(UInt_t i=0; i<fRootFile.RootTree.size(); i++) {
+      if(fRootFile.RootTree[i]==0) {
+	fRootFile.RootTree.erase(fRootFile.RootTree.begin() + i);
+      }
+    }
+    DoDraw();
+  } else {
+    return -1;
+  }
+  return 0;
+
+}
+
+void OnlineGUI::HistDraw(drawcommand command) {
+  // Called by DoDraw(), this will plot a histogram.
+
+  Bool_t showGolden=kFALSE;
+  if(doGolden) showGolden=kTRUE;
+  Bool_t showStat=kTRUE;
+  TString htitle;
+
+  if(command.noshowgolden=="noshowgolden")
+    showGolden = kFALSE;
+  if(command.nostat=="nostat")
+      showStat=kFALSE;
+  htitle = command.title;
+
+  TString type=command.type;
+  TDirectory *fDir;
+
+  if(command.directory.IsNull()) {
+    fDir = 0;
+  } else {
+    fDir = (TDirectory*)fRootFile.RootFile->Get(command.directory);
+  }
+
+  // Determine dimensionality of histogram, then draw it
+  if(command.objtype.Contains("TH1")) {
+    // Operation for TH1
+    fRootFile.RootFile->cd();
+    if(fDir) fDir->cd();
+    fRootFile.mytemp1d = (TH1D*)gDirectory->Get(command.objname);
+    if(!fRootFile.mytemp1d) BadDraw(command.variable+" not found");
+    if(fRootFile.mytemp1d->GetEntries()==0) {
+      BadDraw("Empty Histogram");
+    } else {
+      if(showGolden) {
+	fGoldenFile.RootFile->cd();
+	if(fDir) fDir->cd();
+	fGoldenFile.mytemp1d = (TH1D*)gDirectory->Get(command.objname);
+	fGoldenFile.mytemp1d->SetLineColor(30);
+	fGoldenFile.mytemp1d->SetFillColor(30);
+	Int_t fillstyle=3027;
+	if(fPrintOnly) fillstyle=3010;
+	fGoldenFile.mytemp1d->SetFillStyle(fillstyle);
+	fRootFile.mytemp1d->SetStats(showStat);
+	fGoldenFile.mytemp1d->SetStats(kFALSE);
+	fGoldenFile.mytemp1d->Draw();
+	if(!htitle.IsNull()) fGoldenFile.mytemp1d->SetTitle(htitle);
+	fRootFile.mytemp1d->Draw("sames"+type);
+      } else {
+	fRootFile.mytemp1d->SetStats(showStat);
+	if(!htitle.IsNull()) fRootFile.mytemp1d->SetTitle(htitle);
+	fRootFile.mytemp1d->Draw(type);
+      }
+    }
+    return;
+  }
+
+  if(command.objtype.Contains("TH2")) {
+    // Operation for TH2
+    if(!showGolden) fRootFile.RootFile->cd();
+    if(fDir) fDir->cd();
+    fRootFile.mytemp2d = (TH2D*)gDirectory->Get(command.objname);
+    if(fRootFile.mytemp2d->GetEntries()==0) {
+      BadDraw("Empty Histogram");
+    } else {
+      if(showGolden) {
+	fGoldenFile.RootFile->cd();
+	if(fDir) fDir->cd();
+	fGoldenFile.mytemp2d = (TH2D*)gDirectory->Get(command.objname);
+	fGoldenFile.mytemp2d->SetMarkerColor(2);
+	fRootFile.mytemp2d->SetStats(showStat);
+	fGoldenFile.mytemp2d->SetStats(kFALSE);
+	fGoldenFile.mytemp2d->Draw(type);
+	if(!htitle.IsNull()) fGoldenFile.mytemp2d->SetTitle(htitle);
+	fRootFile.mytemp2d->Draw("sames"+type);
+      } else {
+	fRootFile.mytemp2d->SetStats(showStat);
+	if(!htitle.IsNull()) fGoldenFile.mytemp2d->SetTitle(htitle);
+	fRootFile.mytemp2d->Draw(type);
+	fRootFile.mytemp2d->Draw("colz");
+      }
+    }
+    return;
+  }
+
+  if(command.objtype.Contains("TH3")) {
+    // Operation for TH3
+    if(!showGolden) fRootFile.RootFile->cd();
+    if(fDir) fDir->cd();
+    fRootFile.mytemp3d = (TH3D*)gDirectory->Get(command.objname);
+    if(fRootFile.mytemp3d->GetEntries()==0) {
+      BadDraw("Empty Histogram");
+    } else {
+      fRootFile.mytemp3d->Draw();
+      if(showGolden) {
+	fGoldenFile.RootFile->cd();
+	if(fDir) fDir->cd();
+	fGoldenFile.mytemp3d = (TH3D*)gDirectory->Get(command.objname);
+	fGoldenFile.mytemp3d->SetMarkerColor(2);
+	fRootFile.mytemp3d->SetStats(showStat);
+	fGoldenFile.mytemp3d->SetStats(kFALSE);
+	fGoldenFile.mytemp3d->Draw(type);
+	if(!htitle.IsNull()) fGoldenFile.mytemp3d->SetTitle(htitle);
+	fRootFile.mytemp3d->Draw("sames"+type);
+      } else {
+	fRootFile.mytemp3d->SetStats(showStat);
+	if(!htitle.IsNull()) fGoldenFile.mytemp3d->SetTitle(htitle);
+	fRootFile.mytemp3d->Draw(type);
+      }
+    }
+    return;
+  }
+
+}
+
+drawcommand OnlineGUI::fileObject2command(drawcommand command, RootFileObject* fLocalRootFileObj) {
+  // Fill in gaps in the drawcommand with items from the
+  // vfileObject.  This elimates the need for duplicate code in
+  // the different *Draw routines.
+  for(UInt_t i=0; i<fLocalRootFileObj->vfileObjects.size(); i++) {
+    if(fLocalRootFileObj->vfileObjects[i].name==command.variable ||
+       fLocalRootFileObj->vfileObjects[i].title==command.variable ) {
+      command.objname = fLocalRootFileObj->vfileObjects[i].name;
+      command.objtitle = fLocalRootFileObj->vfileObjects[i].title;
+      command.objtype = fLocalRootFileObj->vfileObjects[i].type;
+      command.directory = fLocalRootFileObj->vfileObjects[i].directory;
+#ifdef DEBUGf2command
+      cout << command.directory << " "
+	   << command.objtype  << " "
+	   << command.objname
+	   << endl;
+#endif
+      return command;
+    }
+  }
+  return command;
+
+
+}
+
+void OnlineGUI::TreeDraw(drawcommand command) {
+  // Called by DoDraw(), this will plot a Tree Variable
+
+  TString var = command.variable;
+  Bool_t showGolden=kFALSE;
+  if(doGolden) showGolden=kTRUE;
+
+  Bool_t showStat=kTRUE;
+  if(command.nostat=="nostat") showStat=kFALSE;
+
+  //TObject *hobj;
+
+  // Combine the cuts (definecuts and specific cuts)
+  TCut cut = "";
+  TString tempCut;
+  if(!command.cut.IsNull()) {
+    tempCut = command.cut;
+    vector <TString> cutIdents = fConfig->GetCutIdent();
+    for(UInt_t i=0; i<cutIdents.size(); i++) {
+      if(tempCut.Contains(cutIdents[i])) {
+	TString cut_found = (TString)fConfig->GetDefinedCut(cutIdents[i]);
+	tempCut.ReplaceAll(cutIdents[i],cut_found);
+      }
+    }
+    cut = (TCut)tempCut;
+  }
+
+  // Determine which Tree the variable comes from, then draw it.
+  UInt_t iTree;
+  if(command.treename.IsNull()) {
+    iTree = GetTreeIndex(var,&fRootFile);
+  } else {
+    iTree = GetTreeIndexFromName(command.treename,&fRootFile);
+  }
+  TString drawopt = command.type;
+  Int_t errcode=0;
+  if(drawopt.IsNull() && var.Contains(":")) drawopt = "cont";
+  if(drawopt=="scat") drawopt = "";
+
+  fRootFile.RootFile->cd();
+  if (iTree <= fRootFile.RootTree.size() ) {
+    TObjArray* tok = var.Tokenize(">()");
+    TString myvar   = ((TObjString*)tok->First())->GetString();
+    TString hname   = "h";
+    TString histdef = ((TObjString*)tok->Last())->GetString();
+    if(tok->GetEntries() == 1) histdef = "";        // ie "var[0]"
+    if(tok->GetEntries() == 2) {
+      if(! histdef.Contains(",") ) {             // ie "var[0]>>h1"
+        hname = histdef;
+        histdef = "";
+      }
+    }
+    if(tok->GetEntries() == 3) hname = ((TObjString*)tok->At(1))->GetString();  // ie "var[0]>>h1(100,0,100)"
+    delete tok;
+    TString tmp = var + tempCut;
+    hname = Form("%s_%u",hname.Data(),tmp.Hash());      // unique id so caching histos works
+
+    errcode=1;
+    TObject *hobj  = gDirectory->Get(hname);
+    if(hobj == NULL) {
+      errcode = fRootFile.RootTree[iTree]->Draw(myvar+">>"+hname+"("+histdef+")",cut,drawopt,
+				     1000000000,fRootFile.TreeEntries[iTree]);
+      hobj = gDirectory->Get(hname);
+    }
+    TH1F *mainhist = (TH1F*)hobj;
+    mainhist->Draw(drawopt);
+    //tmp = myvar+">>"+hname+"("+histdef+")";
+    //printf("hist: '%s',  opt: '%s',  \"%s\"\n", hname.Data(), drawopt.Data(),tmp.Data());
+
+    if(errcode==-1) {
+      BadDraw(var+" not found");
+    } else if (errcode!=0) {
+      TString htype = hobj->ClassName();
+      if(! htype.Contains("TH1F") ) {
+        //printf("skipping.\n");
+        showGolden=kFALSE;
+      }
+      if(showGolden) {
+        errcode=1;
+        TString goldname = "gold"+hname;
+        TH1F *goldhist = (TH1F*)gDirectory->Get(goldname);
+        if(goldhist == NULL) {
+          goldhist = (TH1F*)mainhist->Clone(hname);
+          goldhist->SetName(goldname);
+          errcode = fGoldenFile.RootTree[iTree]->Project(goldname,myvar,cut);
+        }
+        if(errcode>0) {
+          goldhist->SetFillColor(30);
+	  Int_t fillstyle=3027;
+	  if(fPrintOnly) fillstyle=3010;
+	  goldhist->SetFillStyle(fillstyle);
+          goldhist->Draw(drawopt);
+          mainhist->SetFillColor(0);
+          mainhist->SetFillStyle(1001);
+          mainhist->Draw("same");
+          if(!command.title.IsNull()) goldhist->SetTitle(command.title);
+          if(!showStat)               goldhist->SetStats(kFALSE);
+        }
+      } else {
+        if(!command.title.IsNull()) mainhist->SetTitle(command.title);
+        if(!showStat)               mainhist->SetStats(kFALSE);
+      }
+    } else {
+      BadDraw("Empty Histogram");
+    }
+  } else {
+    BadDraw(var+" not found");
+    if (fConfig->IsMonitor()){
+      // Maybe we missed it... look again.  I dont like the code
+      // below... maybe I can come up with something better
+      GetFileObjects(&fRootFile);
+      GetRootTree(&fRootFile);
+      GetTreeVars(&fRootFile);
+    }
+  }
+
+}
+
+void OnlineGUI::ObtainRunNumber()
+{
+  // Utility to obtain the runnumber through a helper macro
+  //  "GetRunNumber.C"
+
+  if (runNumber==0) runNumber = GetRunNumber();
+#ifdef DEBUG
+  cout << "Runnumber from file: " << runNumber << endl;
+#endif
+}
+
+void OnlineGUI::PrintToFile()
+{
+  // Routine to print the current page to a File.
+  //  A file dialog pop's up to request the file name.
+  fCanvas = fEcanvas->GetCanvas();
+  gStyle->SetPaperSize(20,24);
+  static TString dir(".");
+  TGFileInfo fi;
+  const char *myfiletypes[] =
+    { "All files","*",
+      "PDF files","*.pdf",
+      "PNG files","*.png",
+      "GIF files","*.gif",
+      "JPG files","*.jpg",
+      0,               0 };
+  fi.fFileTypes = myfiletypes;
+  fi.fIniDir    = StrDup(dir.Data());
+  cout << " INitiail = " << fi.fIniDir << endl;
+  new TGFileDialog(gClient->GetRoot(), fMain, kFDSave, &fi);
+  if(fi.fFilename!=NULL) {
+    fCanvas->Print(fi.fFilename);
+  }
+}
+
+void OnlineGUI::PrintPages() {
+  // Routine to go through each defined page, and print the output to
+  // a postscript file. (good for making sample histograms).
+
+  // Open the RootFile
+    //  unless we're watching a file.
+  fRootFile.RootFile = new TFile(fConfig->GetRootFile(),"READ");
+  if(!fRootFile.RootFile->IsOpen()) {
+    cout << "ERROR:  rootfile: " << fConfig->GetRootFile()
+	 << " does not exist"
+	 << endl;
+#ifdef STANDALONE
+    gApplication->Terminate();
+#else
+    return;
+#endif
+  } else {
+    fFileAlive = kTRUE;
+    ObtainRunNumber();
+    // Open the Root Trees.  Give a warning if it's not there..
+    GetFileObjects(&fRootFile);
+    GetRootTree(&fRootFile);
+    GetTreeVars(&fRootFile);
+    for(UInt_t i=0; i<fRootFile.RootTree.size(); i++) {
+      if(fRootFile.RootTree[i]==0) {
+	fRootFile.RootTree.erase(fRootFile.RootTree.begin() + i);
+      }
+    }
+
+  }
+  TString goldenfilename=fConfig->GetGoldenFile();
+  if(!goldenfilename.IsNull()) {
+    fGoldenFile.RootFile = new TFile(goldenfilename,"READ");
+    if(!fGoldenFile.RootFile->IsOpen()) {
+      cout << "ERROR: goldenrootfile: " << goldenfilename
+	   << " does not exist.  Oh well, no comparison plots."
+	   << endl;
+      doGolden = kFALSE;
+      fGoldenFile.RootFile=NULL;
+    } else {
+      // Open the Root Trees.  Give a warning if it's not there..
+      GetFileObjects(&fGoldenFile);
+      GetRootTree(&fGoldenFile);
+      GetTreeVars(&fGoldenFile);
+      for(UInt_t i=0; i<fGoldenFile.RootTree.size(); i++) {
+        if(fGoldenFile.RootTree[i]==0) {
+	  fGoldenFile.RootTree.erase(fGoldenFile.RootTree.begin() + i);
+        }
+      }
+      doGolden = kTRUE;
+    }
+  } else {
+    doGolden=kFALSE;
+    fGoldenFile.RootFile=NULL;
+  }
+
+  // I'm not sure exactly how this works.  But it does.
+  fCanvas = new TCanvas("fCanvas","trythis",850,1100);
+//   TCanvas *maincanvas = new TCanvas("maincanvas","whatever",850,1100);
+//   maincanvas->SetCanvas(fCanvas);
+  TLatex *lt = new TLatex();
+
+  TString plotsdir = fConfig->GetPlotsDir();
+  Bool_t useJPG = kFALSE;
+  if(!plotsdir.IsNull()) useJPG = kTRUE;
+
+  //  TString filename = "summaryplots";
+  TString ConfigStartAll=fConfig->GetConfigStart();
+  TObjArray *tx= ConfigStartAll.Tokenize("/");
+  TString temp=((TObjString *)(tx->At(tx->GetEntries()-1)))->String();
+  Ssiz_t pos=temp.Index(".cfg");
+  TString filename=temp(0,pos);
+  if(runNumber!=0) {
+    filename += "_";
+    filename += runNumber;
+  }
+  if(useJPG) {
+    filename.Prepend(plotsdir+"/");
+    filename += "_pageXXXX.jpg";
+  }
+  else filename += ".pdf";
+
+  TString pagehead = "Summary Plots";
+  if(runNumber!=0) {
+    pagehead += "(Run #";
+    pagehead += runNumber;
+    pagehead += ")";
+  }
+  pagehead += ": ";
+
+  gStyle->SetPalette(1);
+  gStyle->SetTitleX(0.5);
+  gStyle->SetTitleY(0.95);
+  gStyle->SetPadBorderMode(0);
+  gStyle->SetHistLineColor(1);
+  gStyle->SetHistFillColor(1);
+  cout << filename << endl;
+  if(!useJPG) fCanvas->Print(filename+"[");
+  TString origFilename = filename;
+  for(UInt_t i=0; i<fConfig->GetPageCount(); i++) {
+    current_page=i;
+    DoDraw();
+    TString pagename = pagehead + fConfig->GetPageTitle(current_page);
+    lt->SetTextSize(0.025);
+    lt->DrawLatex(0.05,0.98,pagename);
+    if(useJPG) {
+      filename = origFilename;
+      filename.ReplaceAll("XXXX",Form("%d",current_page));
+      cout << "Printing page " << current_page
+	   << " to file = " << filename << endl;
+    }
+    fCanvas->Print(filename);
+  }
+  if(!useJPG) fCanvas->Print(filename+"]");
+  //
+
+  cout << "Writing histograms to root file '" << filename << "'." << endl;
+
+  filename.Resize(filename.Last('.'));
+  filename += ".root";
+  TFile* hroot = new TFile(filename,"recreate");
+
+  UInt_t pageCount = fConfig->GetPageCount();
+  for (UInt_t iPage=0; iPage<pageCount; ++iPage) {
+    UInt_t drawCount = fConfig->GetDrawCount(iPage);
+    for (UInt_t iDraw=0; iDraw<drawCount; ++iDraw) {
+      TString macro = fConfig->GetDrawCommand(iPage, iDraw).macro;
+      if (macro != "") {
+        TString histName = macro.Remove(0, macro.First('\"')+1);
+        histName.Resize(macro.First('\"'));
+
+        fRootFile.RootFile->cd();
+        TH1F* h1f = dynamic_cast<TH1F*>(gDirectory->Get(histName));
+        TH2F* h2f = dynamic_cast<TH2F*>(gDirectory->Get(histName));
+        hroot->cd();
+
+        if (h1f) h1f->Write();
+        else if (h2f) h2f->Write();
+        else cout << histName << " not found!" << endl;
+      }
+    }
+  }
+
+  hroot->Write();
+  hroot->Close();
+  delete hroot;
+
+  cout << "Root file '" << filename << "' done." << endl;
+
+  //
+#ifdef STANDALONE
+  gApplication->Terminate();
+#endif
+}
+
+void OnlineGUI::MyCloseWindow()
+{
+  fMain->SendCloseMessage();
+  cout << "OnlineGUI Closed." << endl;
+  if(timer!=NULL) {
+    timer->Stop();
+    delete timer;
+  }
+  delete fPrint;
+  delete fExit;
+  delete fRunNumber;
+  delete fPrev;
+  delete fNext;
+  delete wile;
+  for(UInt_t i=0; i<fConfig->GetPageCount(); i++)
+    delete fRadioPage[i];
+  delete hframe;
+  delete fEcanvas;
+  delete fBottomFrame;
+  delete vframe;
+  delete fTopframe;
+  delete fMain;
+  if(fGoldenFile.RootFile!=NULL) delete fGoldenFile.RootFile;
+  if(fRootFile.RootFile!=NULL) delete fRootFile.RootFile;
+  delete fConfig;
+
+#ifdef STANDALONE
+  gApplication->Terminate();
+#endif
+}
+
+void OnlineGUI::CloseGUI()
+{
+  // Routine to take care of the Exit GUI button
+  fMain->SendCloseMessage();
+}
+
+OnlineGUI::~OnlineGUI()
+{
+  //  fMain->SendCloseMessage();
+  if(timer!=NULL) {
+    timer->Stop();
+    delete timer;
+  }
+  delete fPrint;
+  delete fExit;
+  delete fRunNumber;
+  delete fPrev;
+  delete fNext;
+  delete wile;
+  for(UInt_t i=0; i<fConfig->GetPageCount(); i++)
+    delete fRadioPage[i];
+  delete hframe;
+  delete fEcanvas;
+  delete vframe;
+  delete fBottomFrame;
+  delete fTopframe;
+  delete fMain;
+  if(fGoldenFile.RootFile!=NULL) delete fGoldenFile.RootFile;
+  if(fRootFile.RootFile!=NULL) delete fRootFile.RootFile;
+  delete fConfig;
+}
+
+void online(TString type="standard",UInt_t run=0,Bool_t printonly=kFALSE,Bool_t rootonly=kFALSE)
+{
+  // "main" routine.  Run this at the ROOT commandline.
+
+  if(printonly || rootonly) {
+    if(!gROOT->IsBatch()) {
+#ifdef STANDALONE
+      gROOT->SetBatch();
+#else
+      cout << "Sorry... the print summary plots option only works "
+	   << "in BATCH mode." << endl;
+      return;
+#endif
+    }
+  }
+
+  OnlineConfig *fconfig = new OnlineConfig(type);
+    //    OnlineConfig *fconfig = new OnlineConfig("halla");
+
+  if(!fconfig->ParseConfig()) {
+#ifdef STANDALONE
+    gApplication->Terminate();
+#else
+    return;
+#endif
+  }
+
+  if(run!=0) fconfig->OverrideRootFile(run);
+
+  new OnlineGUI(*fconfig,printonly,rootonly,run);
+
+}
+
+#ifdef STANDALONE
+void Usage()
+{
+  cerr << "Usage: online [-r] [-f] [-P]"
+       << endl;
+  cerr << "Options:" << endl;
+  cerr << "  -r : runnumber" << endl;
+  cerr << "  -f : configuration file" << endl;
+  cerr << "  -P : Only Print Summary Plots" << endl;
+  cerr << "  -R : Only Rootfile " << endl;
+  cerr << endl;
+
+}
+
+int main(int argc, char **argv)
+{
+  TString type="default";
+  UInt_t run=0;
+  Bool_t printonly=kFALSE;
+  Bool_t rootonly=kFALSE;
+  Bool_t showedUsage=kFALSE;
+
+  TApplication theApp("App",&argc,argv,NULL,-1);
+
+  for(Int_t i=1;i<theApp.Argc();i++)
+    {
+      TString sArg = theApp.Argv(i);
+      if(sArg=="-f") {
+	type = theApp.Argv(++i);
+	cout << " File specifier: "
+	     <<  type << endl;
+      } else if (sArg=="-r") {
+	run = atoi(theApp.Argv(++i));
+	cout << " Runnumber: "
+	     << run << endl;
+      } else if (sArg=="-P") {
+	printonly = kTRUE;
+	cout <<  " PrintOnly" << endl;
+      } else if (sArg=="-R") {
+	rootonly = kTRUE;
+	cout <<  " RootOnly" << endl;
+      } else if (sArg=="-h") {
+	if(!showedUsage) Usage();
+	showedUsage=kTRUE;
+	return 0;
+      } else {
+	cerr << "\"" << sArg << "\"" << " not recognized.  Ignored." << endl;
+	if(!showedUsage) Usage();
+	showedUsage=kTRUE;
+      }
+    }
+
+  online(type,run,printonly,rootonly);
+  theApp.Run();
+
+  return 0;
+}
+
+#endif
diff --git a/onlineGUI/onlineGUI_v1.2.1/online.h b/onlineGUI/onlineGUI_v1.2.1/online.h
old mode 100644
new mode 100755
index 186e0128c4d4dd0bb966805e86333968630def4c..6e6e10e220f806dc7db08995040dd1e31c12359a
--- a/onlineGUI/onlineGUI_v1.2.1/online.h
+++ b/onlineGUI/onlineGUI_v1.2.1/online.h
@@ -1,172 +1,179 @@
-///////////////////////////////////////////////////////////////////
-//  Macro to help with online analysis
-//    B. Moffit (moffit@jlab.org)
-//    - Originally written in Oct. 2003
-//  Documentation and updates available at:
-//    http://www.jlab.org/~moffit/onlineGUI/
-//
-
-#include <TTree.h>
-#include <TFile.h>
-#include <TGButton.h>
-#include <TGFrame.h>
-#include <TRootEmbeddedCanvas.h>
-#include "TGLabel.h"
-#include "TGString.h"
-#include <RQ_OBJECT.h>
-#include <TQObject.h>
-#include <vector>
-#include <TString.h>
-#include <TCut.h>
-#include <TTimer.h>
-#include "TH1.h"
-#include "TH2.h"
-#include "TH3.h"
-
-#define UPDATETIME 2000
-
-using namespace std;
-
-/* TTree *raw; */
-/* TFile *file; */
-struct fileObject {
-  TString name;
-  TString title;
-  TString type;
-  TString directory;
-};
-
-struct RootFileObject {
-  TFile*                            RootFile;
-  vector <TTree*>                   RootTree;
-  vector <Int_t>                    TreeEntries;
-  vector < vector <TString> >       TreeVars;
-  Bool_t                            fUpdate;
-  TH1D                             *mytemp1d;
-  TH2D                             *mytemp2d;
-  TH3D                             *mytemp3d;
-  vector <fileObject>               vfileObjects;
-};
-
-struct drawcommand {
-  TString variable;
-  TString cut;
-  TString type;
-  TString title;
-  TString treename;
-  TString nostat;
-  TString noshowgolden;
-  TString macro;
-  TString directory;
-  TString objname;
-  TString objtype;
-  TString objtitle;
-};
-
-class OnlineConfig {
-  RQ_OBJECT("OnlineConfig");
-  // Class that takes care of the config file
-private:
-  TString confFileName;                   // config filename
-  ifstream *fConfFile;                    // original config file
-  void ParseFile();
-  vector < vector <TString> > sConfFile;  // the config file, in memory
-  // pageInfo is the vector of the pages containing the sConfFile index
-  //   and how many commands issued within that page (title, 1d, etc.)
-  TString rootfilename;  //  Just the name
-  TString goldenrootfilename; // Golden rootfile for comparisons
-  TString protorootfile; // Prototype for getting the rootfilename
-  TString guicolor; // User's choice of background color
-  TString plotsdir; // Where to store sample plots.. automatically stored as .jpg's).
-  vector < pair <UInt_t,UInt_t> > pageInfo; 
-  vector <TCut> cutList; 
-  vector <UInt_t> GetDrawIndex(UInt_t);
-  Bool_t fFoundCfg;
-  Bool_t fMonitor;
-  Bool_t ParseForMultiPlots();
-
-public:
-  OnlineConfig();
-  OnlineConfig(TString);
-  Bool_t ParseConfig();
-  TString GetRootFile() { return rootfilename; };
-  TString GetGoldenFile() { return goldenrootfilename; };
-  TString GetGuiColor() { return guicolor; };
-  TString GetPlotsDir() { return plotsdir; };
-  TCut GetDefinedCut(TString ident);
-  vector <TString> GetCutIdent();
-  // Page utilites
-  UInt_t  GetPageCount() { return pageInfo.size(); };
-  pair <UInt_t,UInt_t> GetPageDim(UInt_t);
-  Bool_t IsLogx(UInt_t page);
-  Bool_t IsLogy(UInt_t page);
-  Bool_t IsLogz(UInt_t page);
-  TString GetPageTitle(UInt_t);
-  UInt_t GetDrawCount(UInt_t);           // Number of histograms in a page
-  drawcommand GetDrawCommand(UInt_t,UInt_t);
-  vector <TString> SplitString(TString,TString);
-  void OverrideRootFile(UInt_t);
-  Bool_t IsMonitor() { return fMonitor; };
-};
-
-class OnlineGUI {
-  // Class that takes care of the GUI
-  RQ_OBJECT("OnlineGUI")
-private:
-	//UInt_t fRunNum;
-  TGMainFrame                      *fMain;
-  TGHorizontalFrame                *fTopframe;
-  TGVerticalFrame                  *vframe;
-  TGRadioButton                    *fRadioPage[50];
-  TGPictureButton                  *wile;
-  TRootEmbeddedCanvas              *fEcanvas;
-  TGHorizontalFrame                *fBottomFrame;
-  TGHorizontalFrame                *hframe;
-  TGTextButton                     *fNext;
-  TGTextButton                     *fPrev;
-  TGTextButton                     *fExit;
-  TGLabel                          *fRunNumber;
-  TGTextButton                     *fPrint;
-  TCanvas                          *fCanvas; // Present Embedded canvas
-  OnlineConfig                     *fConfig;
-  UInt_t                            current_page;
-  RootFileObject                    fRootFile;
-  RootFileObject                    fGoldenFile;
-  Bool_t                            doGolden;
-  UInt_t                            runNumber;
-  TTimer                           *timer;
-  Bool_t                            fPrintOnly;
-  Bool_t                            fFileAlive;
-
-public:
-  OnlineGUI(OnlineConfig&,Bool_t,UInt_t RunNum=0);
-  void CreateGUI(const TGWindow *p, UInt_t w, UInt_t h);
-  virtual ~OnlineGUI();
-  void DoDraw();
-  void DrawPrev();
-  void DrawNext();
-  void DoRadio();
-  void CheckPageButtons();
-  // Specific Draw Methods
-  void GetFileObjects(RootFileObject *r);
-  void GetTreeVars(RootFileObject *r);
-  void GetRootTree(RootFileObject *r);
-  UInt_t GetTreeIndex(TString,RootFileObject *r);
-  UInt_t GetTreeIndexFromName(TString, RootFileObject *r);
-  drawcommand fileObject2command(drawcommand,RootFileObject *r);
-  void TreeDraw(drawcommand); 
-  void HistDraw(drawcommand);
-  void MacroDraw(drawcommand);
-  void CanvasDraw(drawcommand,UInt_t);
-  void GraphDraw(drawcommand);
-  void DoDrawClear(RootFileObject *r);
-  void TimerUpdate();
-  void BadDraw(TString);
-  void CheckRootFile();
-  Int_t OpenRootFile();
-  void ObtainRunNumber();
-  void PrintToFile();
-  void PrintPages();
-  void MyCloseWindow();
-  void CloseGUI();
-};
+///////////////////////////////////////////////////////////////////
+//  Macro to help with online analysis
+//    B. Moffit (moffit@jlab.org)
+//    - Originally written in Oct. 2003
+//  Documentation and updates available at:
+//    http://www.jlab.org/~moffit/onlineGUI/
+//
+
+#include <TTree.h>
+#include <TFile.h>
+#include <TGButton.h>
+#include <TGFrame.h>
+#include <TRootEmbeddedCanvas.h>
+#include "TGLabel.h"
+#include "TGString.h"
+#include <RQ_OBJECT.h>
+#include <TQObject.h>
+#include <vector>
+#include <TString.h>
+#include <TCut.h>
+#include <TTimer.h>
+#include "TH1.h"
+#include "TH2.h"
+#include "TH3.h"
+
+#define UPDATETIME 2000
+
+using namespace std;
+
+/* TTree *raw; */
+/* TFile *file; */
+struct fileObject {
+  TString name;
+  TString title;
+  TString type;
+  TString directory;
+};
+
+struct RootFileObject {
+  TFile*                            RootFile;
+  vector <TTree*>                   RootTree;
+  vector <Int_t>                    TreeEntries;
+  vector < vector <TString> >       TreeVars;
+  Bool_t                            fUpdate;
+  TH1D                             *mytemp1d;
+  TH2D                             *mytemp2d;
+  TH3D                             *mytemp3d;
+  vector <fileObject>               vfileObjects;
+};
+
+struct drawcommand {
+  TString variable;
+  TString cut;
+  TString type;
+  TString title;
+  TString treename;
+  TString nostat;
+  TString noshowgolden;
+  TString macro;
+  TString directory;
+  TString objname;
+  TString objtype;
+  TString objtitle;
+};
+
+class OnlineConfig {
+  RQ_OBJECT("OnlineConfig");
+  // Class that takes care of the config file
+private:
+  TString confFileName;                   // config filename
+  ifstream *fConfFile;                    // original config file
+  void ParseFile();
+  vector < vector <TString> > sConfFile;  // the config file, in memory
+  // pageInfo is the vector of the pages containing the sConfFile index
+  //   and how many commands issued within that page (title, 1d, etc.)
+  TString rootfilename;  //  Just the name
+  TString goldenrootfilename; // Golden rootfile for comparisons
+  TString protorootfile; // Prototype for getting the rootfilename
+  TString configfilestart; // 
+  TString guicolor; // User's choice of background color
+  TString plotsdir; // Where to store sample plots.. automatically stored as .jpg's).
+  UInt_t canvaswidth; // Width of histogram canvas
+  UInt_t canvasheight; // Width of histogram canvas
+  vector < pair <UInt_t,UInt_t> > pageInfo; 
+  vector <TCut> cutList; 
+  vector <UInt_t> GetDrawIndex(UInt_t);
+  Bool_t fFoundCfg;
+  Bool_t fMonitor;
+  Bool_t ParseForMultiPlots();
+
+public:
+  OnlineConfig();
+  OnlineConfig(TString);
+  Bool_t ParseConfig();
+  TString GetRootFile() { return rootfilename; };
+  TString GetGoldenFile() { return goldenrootfilename; };
+  TString GetGuiColor() { return guicolor; };
+  TString GetPlotsDir() { return plotsdir; };
+  TCut GetDefinedCut(TString ident);
+  vector <TString> GetCutIdent();
+  // Page utilites
+  UInt_t  GetPageCount() { return pageInfo.size(); };
+  pair <UInt_t,UInt_t> GetPageDim(UInt_t);
+  Bool_t IsLogx(UInt_t page);
+  Bool_t IsLogy(UInt_t page);
+  Bool_t IsLogz(UInt_t page);
+  TString GetPageTitle(UInt_t);
+  UInt_t GetDrawCount(UInt_t);           // Number of histograms in a page
+  drawcommand GetDrawCommand(UInt_t,UInt_t);
+  vector <TString> SplitString(TString,TString);
+  void OverrideRootFile(UInt_t);
+  Bool_t IsMonitor() { return fMonitor; };
+  UInt_t GetCanvasWidth() { return canvaswidth; };
+  UInt_t GetCanvasHeight() { return canvasheight; };
+  TString GetConfigStart() {return configfilestart;}; // 
+};
+
+class OnlineGUI {
+  // Class that takes care of the GUI
+  RQ_OBJECT("OnlineGUI")
+private:
+	//UInt_t fRunNum;
+  TGMainFrame                      *fMain;
+  TGHorizontalFrame                *fTopframe;
+  TGVerticalFrame                  *vframe;
+  TGRadioButton                    *fRadioPage[50];
+  TGPictureButton                  *wile;
+  TRootEmbeddedCanvas              *fEcanvas;
+  TGHorizontalFrame                *fBottomFrame;
+  TGHorizontalFrame                *hframe;
+  TGTextButton                     *fNext;
+  TGTextButton                     *fPrev;
+  TGTextButton                     *fExit;
+  TGLabel                          *fRunNumber;
+  TGTextButton                     *fPrint;
+  TCanvas                          *fCanvas; // Present Embedded canvas
+  OnlineConfig                     *fConfig;
+  UInt_t                            current_page;
+  RootFileObject                    fRootFile;
+  RootFileObject                    fGoldenFile;
+  Bool_t                            doGolden;
+  UInt_t                            runNumber;
+  TTimer                           *timer;
+  Bool_t                            fPrintOnly;
+  Bool_t                            fRootOnly;
+  Bool_t                            fFileAlive;
+
+public:
+  OnlineGUI(OnlineConfig&,Bool_t,Bool_t,UInt_t RunNum=0);
+  void CreateGUI(const TGWindow *p, UInt_t w, UInt_t h);
+  virtual ~OnlineGUI();
+  void DoDraw();
+  void DrawPrev();
+  void DrawNext();
+  void DoRadio();
+  void CheckPageButtons();
+  // Specific Draw Methods
+  void GetFileObjects(RootFileObject *r);
+  void GetTreeVars(RootFileObject *r);
+  void GetRootTree(RootFileObject *r);
+  UInt_t GetTreeIndex(TString,RootFileObject *r);
+  UInt_t GetTreeIndexFromName(TString, RootFileObject *r);
+  drawcommand fileObject2command(drawcommand,RootFileObject *r);
+  void TreeDraw(drawcommand); 
+  void HistDraw(drawcommand);
+  void MacroDraw(drawcommand);
+  void CanvasDraw(drawcommand,UInt_t);
+  void GraphDraw(drawcommand);
+  void DoDrawClear(RootFileObject *r);
+  void TimerUpdate();
+  void BadDraw(TString);
+  void CheckRootFile();
+  Int_t OpenRootFile();
+  void ObtainRunNumber();
+  void PrintToFile();
+  void PrintPages();
+  void MyCloseWindow();
+  void CloseGUI();
+};
diff --git a/onlineGUI/onlineGUI_v1.2.1/onlineDict.C b/onlineGUI/onlineGUI_v1.2.1/onlineDict.C
deleted file mode 100644
index eaf7eebd870dbfa0fc21b6485255fffca0d789cf..0000000000000000000000000000000000000000
--- a/onlineGUI/onlineGUI_v1.2.1/onlineDict.C
+++ /dev/null
@@ -1,2058 +0,0 @@
-//
-// File generated by /apps/root/PRO/root/bin/rootcint at Mon Dec  5 11:52:05 2016
-
-// Do NOT change. Changes will be lost next time file is generated
-//
-
-#define R__DICTIONARY_FILENAME onlineDict
-#include "RConfig.h" //rootcint 4834
-#if !defined(R__ACCESS_IN_SYMBOL)
-//Break the privacy of classes -- Disabled for the moment
-#define private public
-#define protected public
-#endif
-
-// Since CINT ignores the std namespace, we need to do so in this file.
-namespace std {} using namespace std;
-#include "onlineDict.h"
-
-#include "TClass.h"
-#include "TBuffer.h"
-#include "TMemberInspector.h"
-#include "TInterpreter.h"
-#include "TVirtualMutex.h"
-#include "TError.h"
-
-#ifndef G__ROOT
-#define G__ROOT
-#endif
-
-#include "RtypesImp.h"
-#include "TIsAProxy.h"
-#include "TFileMergeInfo.h"
-
-// Direct notice to TROOT of the dictionary's loading.
-namespace {
-   static struct DictInit {
-      DictInit() {
-         ROOT::RegisterModule();
-      }
-   } __TheDictionaryInitializer;
-}
-
-// START OF SHADOWS
-
-namespace ROOTShadow {
-   namespace Shadow {
-   } // of namespace Shadow
-} // of namespace ROOTShadow
-// END OF SHADOWS
-
-namespace ROOTDict {
-   void OnlineConfig_ShowMembers(void *obj, TMemberInspector &R__insp);
-   static void OnlineConfig_Dictionary();
-   static void *new_OnlineConfig(void *p = 0);
-   static void *newArray_OnlineConfig(Long_t size, void *p);
-   static void delete_OnlineConfig(void *p);
-   static void deleteArray_OnlineConfig(void *p);
-   static void destruct_OnlineConfig(void *p);
-
-   // Function generating the singleton type initializer
-   static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::OnlineConfig*)
-   {
-      ::OnlineConfig *ptr = 0;
-      static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(::OnlineConfig),0);
-      static ::ROOT::TGenericClassInfo 
-         instance("OnlineConfig", "./online.h", 66,
-                  typeid(::OnlineConfig), ::ROOT::DefineBehavior(ptr, ptr),
-                  0, &OnlineConfig_Dictionary, isa_proxy, 0,
-                  sizeof(::OnlineConfig) );
-      instance.SetNew(&new_OnlineConfig);
-      instance.SetNewArray(&newArray_OnlineConfig);
-      instance.SetDelete(&delete_OnlineConfig);
-      instance.SetDeleteArray(&deleteArray_OnlineConfig);
-      instance.SetDestructor(&destruct_OnlineConfig);
-      return &instance;
-   }
-   ROOT::TGenericClassInfo *GenerateInitInstance(const ::OnlineConfig*)
-   {
-      return GenerateInitInstanceLocal((::OnlineConfig*)0);
-   }
-   // Static variable to force the class initialization
-   static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::OnlineConfig*)0x0); R__UseDummy(_R__UNIQUE_(Init));
-
-   // Dictionary for non-ClassDef classes
-   static void OnlineConfig_Dictionary() {
-      ::ROOTDict::GenerateInitInstanceLocal((const ::OnlineConfig*)0x0)->GetClass();
-   }
-
-} // end of namespace ROOTDict
-
-namespace ROOTDict {
-   void OnlineGUI_ShowMembers(void *obj, TMemberInspector &R__insp);
-   static void OnlineGUI_Dictionary();
-   static void delete_OnlineGUI(void *p);
-   static void deleteArray_OnlineGUI(void *p);
-   static void destruct_OnlineGUI(void *p);
-
-   // Function generating the singleton type initializer
-   static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::OnlineGUI*)
-   {
-      ::OnlineGUI *ptr = 0;
-      static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(::OnlineGUI),0);
-      static ::ROOT::TGenericClassInfo 
-         instance("OnlineGUI", "./online.h", 112,
-                  typeid(::OnlineGUI), ::ROOT::DefineBehavior(ptr, ptr),
-                  0, &OnlineGUI_Dictionary, isa_proxy, 0,
-                  sizeof(::OnlineGUI) );
-      instance.SetDelete(&delete_OnlineGUI);
-      instance.SetDeleteArray(&deleteArray_OnlineGUI);
-      instance.SetDestructor(&destruct_OnlineGUI);
-      return &instance;
-   }
-   ROOT::TGenericClassInfo *GenerateInitInstance(const ::OnlineGUI*)
-   {
-      return GenerateInitInstanceLocal((::OnlineGUI*)0);
-   }
-   // Static variable to force the class initialization
-   static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::OnlineGUI*)0x0); R__UseDummy(_R__UNIQUE_(Init));
-
-   // Dictionary for non-ClassDef classes
-   static void OnlineGUI_Dictionary() {
-      ::ROOTDict::GenerateInitInstanceLocal((const ::OnlineGUI*)0x0)->GetClass();
-   }
-
-} // end of namespace ROOTDict
-
-namespace ROOTDict {
-   // Wrapper around operator delete
-   static void delete_OnlineGUI(void *p) {
-      delete ((::OnlineGUI*)p);
-   }
-   static void deleteArray_OnlineGUI(void *p) {
-      delete [] ((::OnlineGUI*)p);
-   }
-   static void destruct_OnlineGUI(void *p) {
-      typedef ::OnlineGUI current_t;
-      ((current_t*)p)->~current_t();
-   }
-} // end of namespace ROOTDict for class ::OnlineGUI
-
-namespace ROOTDict {
-   // Wrappers around operator new
-   static void *new_OnlineConfig(void *p) {
-      return  p ? ::new((::ROOT::TOperatorNewHelper*)p) ::OnlineConfig : new ::OnlineConfig;
-   }
-   static void *newArray_OnlineConfig(Long_t nElements, void *p) {
-      return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::OnlineConfig[nElements] : new ::OnlineConfig[nElements];
-   }
-   // Wrapper around operator delete
-   static void delete_OnlineConfig(void *p) {
-      delete ((::OnlineConfig*)p);
-   }
-   static void deleteArray_OnlineConfig(void *p) {
-      delete [] ((::OnlineConfig*)p);
-   }
-   static void destruct_OnlineConfig(void *p) {
-      typedef ::OnlineConfig current_t;
-      ((current_t*)p)->~current_t();
-   }
-} // end of namespace ROOTDict for class ::OnlineConfig
-
-/********************************************************
-* onlineDict.C
-* CAUTION: DON'T CHANGE THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED
-*          FROM HEADER FILES LISTED IN G__setup_cpp_environmentXXX().
-*          CHANGE THOSE HEADER FILES AND REGENERATE THIS FILE.
-********************************************************/
-
-#ifdef G__MEMTEST
-#undef malloc
-#undef free
-#endif
-
-#if defined(__GNUC__) && __GNUC__ >= 4 && ((__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ >= 1) || (__GNUC_MINOR__ >= 3))
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
-
-extern "C" void G__cpp_reset_tagtableonlineDict();
-
-extern "C" void G__set_cpp_environmentonlineDict() {
-  G__cpp_reset_tagtableonlineDict();
-}
-#include <new>
-extern "C" int G__cpp_dllrevonlineDict() { return(30051515); }
-
-/*********************************************************
-* Member function Interface Method
-*********************************************************/
-
-/* OnlineConfig */
-static int G__onlineDict_704_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 85, (long) ((const OnlineConfig*) G__getstructoffset())->GetListOfSignals());
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->Connect((const char*) G__int(libp->para[0]), (const char*) G__int(libp->para[1])
-, (void*) G__int(libp->para[2]), (const char*) G__int(libp->para[3])));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   switch (libp->paran) {
-   case 3:
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->Disconnect((const char*) G__int(libp->para[0]), (void*) G__int(libp->para[1])
-, (const char*) G__int(libp->para[2])));
-      break;
-   case 2:
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->Disconnect((const char*) G__int(libp->para[0]), (void*) G__int(libp->para[1])));
-      break;
-   case 1:
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->Disconnect((const char*) G__int(libp->para[0])));
-      break;
-   case 0:
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->Disconnect());
-      break;
-   }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   switch (libp->paran) {
-   case 2:
-      ((OnlineConfig*) G__getstructoffset())->HighPriority((const char*) G__int(libp->para[0]), (const char*) G__int(libp->para[1]));
-      G__setnull(result7);
-      break;
-   case 1:
-      ((OnlineConfig*) G__getstructoffset())->HighPriority((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-      break;
-   }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   switch (libp->paran) {
-   case 2:
-      ((OnlineConfig*) G__getstructoffset())->LowPriority((const char*) G__int(libp->para[0]), (const char*) G__int(libp->para[1]));
-      G__setnull(result7);
-      break;
-   case 1:
-      ((OnlineConfig*) G__getstructoffset())->LowPriority((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-      break;
-   }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   const int imax = 6, dmax = 8, umax = 50;
-   int objsize, type, i, icnt = 0, dcnt = 0, ucnt = 0;
-   G__value *pval;
-   G__int64 lval[imax] = {0};
-   double dval[dmax] = {0};
-   union { G__int64 lval; double dval; } u[umax] = {{0}};
-   lval[icnt] = G__getstructoffset(); icnt++; // this pointer
-   for (i = 0; i < libp->paran; i++) {
-      type = G__value_get_type(&libp->para[i]);
-      pval = &libp->para[i];
-      if (isupper(type))
-         objsize = G__LONGALLOC;
-      else
-         objsize = G__sizeof(pval);
-      switch (type) {
-         case 'c': case 'b': case 's': case 'r': objsize = sizeof(int); break;
-         case 'f': objsize = sizeof(double); break;
-      }
-#ifdef G__VAARG_PASS_BY_REFERENCE
-      if (objsize > G__VAARG_PASS_BY_REFERENCE) {
-         if (pval->ref > 0x1000) {
-            if (icnt < imax) {
-               lval[icnt] = pval->ref; icnt++;
-            } else {
-               u[ucnt].lval = pval->ref; ucnt++;
-            }
-         } else {
-            if (icnt < imax) {
-               lval[icnt] = G__int(*pval); icnt++;
-            } else {
-               u[ucnt].lval = G__int(*pval); ucnt++;
-            }
-         }
-         type = 'z';
-      }
-#endif
-      switch (type) {
-         case 'n': case 'm':
-            if (icnt < imax) {
-               lval[icnt] = (G__int64)G__Longlong(*pval); icnt++;
-            } else {
-               u[ucnt].lval = (G__int64)G__Longlong(*pval); ucnt++;
-            } break;
-         case 'f': case 'd':
-            if (dcnt < dmax) {
-               dval[dcnt] = G__double(*pval); dcnt++;
-            } else {
-               u[ucnt].dval = G__double(*pval); ucnt++;
-            } break;
-         case 'z': break;
-         case 'u':
-            if (objsize >= 16) {
-               memcpy(&u[ucnt].lval, (void*)pval->obj.i, objsize);
-               ucnt += objsize/8;
-               break;
-            }
-            // objsize < 16 -> fall through
-         case 'g': case 'c': case 'b': case 'r': case 's': case 'h': case 'i':
-         case 'k': case 'l':
-         default:
-            if (icnt < imax) {
-               lval[icnt] = G__int(*pval); icnt++;
-            } else {
-               u[ucnt].lval = G__int(*pval); ucnt++;
-            } break;
-      }
-      if (ucnt >= 50) printf("EmitVA: more than 56 var args\n");
-   }
-      ((OnlineConfig*) G__getstructoffset())->EmitVA((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]), dval[0], dval[1], dval[2], dval[3], dval[4], dval[5], dval[6], dval[7], lval[3], lval[4], lval[5], u[0].lval, u[1].lval, u[2].lval, u[3].lval, u[4].lval, u[5].lval, u[6].lval, u[7].lval, u[8].lval, u[9].lval, u[10].lval, u[11].lval, u[12].lval, u[13].lval, u[14].lval, u[15].lval, u[16].lval, u[17].lval, u[18].lval, u[19].lval, u[20].lval, u[21].lval, u[22].lval, u[23].lval, u[24].lval, u[25].lval, u[26].lval, u[27].lval, u[28].lval, u[29].lval, u[30].lval, u[31].lval, u[32].lval, u[33].lval, u[34].lval, u[35].lval, u[36].lval, u[37].lval, u[38].lval, u[39].lval, u[40].lval, u[41].lval, u[42].lval, u[43].lval, u[44].lval, u[45].lval, u[46].lval, u[47].lval, u[48].lval, u[49].lval);
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (const char*) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Long_t*) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Double_t) G__double(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Long_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Long64_t) G__Longlong(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (ULong64_t) G__ULonglong(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Char_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (UChar_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Short_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (UShort_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (UInt_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (ULong_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Float_t) G__double(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Destroyed();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->ChangedBy((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->Message((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   OnlineConfig* p = NULL;
-   char* gvp = (char*) G__getgvp();
-   int n = G__getaryconstruct();
-   if (n) {
-     if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
-       p = new OnlineConfig[n];
-     } else {
-       p = new((void*) gvp) OnlineConfig[n];
-     }
-   } else {
-     if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
-       p = new OnlineConfig;
-     } else {
-       p = new((void*) gvp) OnlineConfig;
-     }
-   }
-   result7->obj.i = (long) p;
-   result7->ref = (long) p;
-   G__set_tagnum(result7,G__get_linked_tagnum(&G__onlineDictLN_OnlineConfig));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   OnlineConfig* p = NULL;
-   char* gvp = (char*) G__getgvp();
-   //m: 1
-   if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
-     p = new OnlineConfig(*((TString*) G__int(libp->para[0])));
-   } else {
-     p = new((void*) gvp) OnlineConfig(*((TString*) G__int(libp->para[0])));
-   }
-   result7->obj.i = (long) p;
-   result7->ref = (long) p;
-   G__set_tagnum(result7,G__get_linked_tagnum(&G__onlineDictLN_OnlineConfig));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->ParseConfig());
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         TString* pobj;
-         TString xobj = ((OnlineConfig*) G__getstructoffset())->GetRootFile();
-         pobj = new TString(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_33(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         TString* pobj;
-         TString xobj = ((OnlineConfig*) G__getstructoffset())->GetGoldenFile();
-         pobj = new TString(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_34(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         TString* pobj;
-         TString xobj = ((OnlineConfig*) G__getstructoffset())->GetGuiColor();
-         pobj = new TString(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_35(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         TString* pobj;
-         TString xobj = ((OnlineConfig*) G__getstructoffset())->GetPlotsDir();
-         pobj = new TString(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_36(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         TCut* pobj;
-         TCut xobj = ((OnlineConfig*) G__getstructoffset())->GetDefinedCut(*((TString*) G__int(libp->para[0])));
-         pobj = new TCut(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_37(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         vector<TString>* pobj;
-         vector<TString> xobj = ((OnlineConfig*) G__getstructoffset())->GetCutIdent();
-         pobj = new vector<TString>(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_38(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 104, (long) ((OnlineConfig*) G__getstructoffset())->GetPageCount());
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_39(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         pair<UInt_t,UInt_t>* pobj;
-         pair<UInt_t,UInt_t> xobj = ((OnlineConfig*) G__getstructoffset())->GetPageDim((UInt_t) G__int(libp->para[0]));
-         pobj = new pair<UInt_t,UInt_t>(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_40(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->IsLogx((UInt_t) G__int(libp->para[0])));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_41(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->IsLogy((UInt_t) G__int(libp->para[0])));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_42(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->IsLogz((UInt_t) G__int(libp->para[0])));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_43(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         TString* pobj;
-         TString xobj = ((OnlineConfig*) G__getstructoffset())->GetPageTitle((UInt_t) G__int(libp->para[0]));
-         pobj = new TString(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_44(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 104, (long) ((OnlineConfig*) G__getstructoffset())->GetDrawCount((UInt_t) G__int(libp->para[0])));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_45(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         drawcommand* pobj;
-         drawcommand xobj = ((OnlineConfig*) G__getstructoffset())->GetDrawCommand((UInt_t) G__int(libp->para[0]), (UInt_t) G__int(libp->para[1]));
-         pobj = new drawcommand(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_46(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         vector<TString>* pobj;
-         vector<TString> xobj = ((OnlineConfig*) G__getstructoffset())->SplitString(*((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])));
-         pobj = new vector<TString>(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_47(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineConfig*) G__getstructoffset())->OverrideRootFile((UInt_t) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_704_0_48(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 103, (long) ((OnlineConfig*) G__getstructoffset())->IsMonitor());
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-// automatic destructor
-typedef OnlineConfig G__TOnlineConfig;
-static int G__onlineDict_704_0_49(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   char* gvp = (char*) G__getgvp();
-   long soff = G__getstructoffset();
-   int n = G__getaryconstruct();
-   //
-   //has_a_delete: 0
-   //has_own_delete1arg: 0
-   //has_own_delete2arg: 0
-   //
-   if (!soff) {
-     return(1);
-   }
-   if (n) {
-     if (gvp == (char*)G__PVOID) {
-       delete[] (OnlineConfig*) soff;
-     } else {
-       G__setgvp((long) G__PVOID);
-       for (int i = n - 1; i >= 0; --i) {
-         ((OnlineConfig*) (soff+(sizeof(OnlineConfig)*i)))->~G__TOnlineConfig();
-       }
-       G__setgvp((long)gvp);
-     }
-   } else {
-     if (gvp == (char*)G__PVOID) {
-       delete (OnlineConfig*) soff;
-     } else {
-       G__setgvp((long) G__PVOID);
-       ((OnlineConfig*) (soff))->~G__TOnlineConfig();
-       G__setgvp((long)gvp);
-     }
-   }
-   G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-
-/* OnlineGUI */
-static int G__onlineDict_714_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 85, (long) ((const OnlineGUI*) G__getstructoffset())->GetListOfSignals());
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 103, (long) ((OnlineGUI*) G__getstructoffset())->Connect((const char*) G__int(libp->para[0]), (const char*) G__int(libp->para[1])
-, (void*) G__int(libp->para[2]), (const char*) G__int(libp->para[3])));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   switch (libp->paran) {
-   case 3:
-      G__letint(result7, 103, (long) ((OnlineGUI*) G__getstructoffset())->Disconnect((const char*) G__int(libp->para[0]), (void*) G__int(libp->para[1])
-, (const char*) G__int(libp->para[2])));
-      break;
-   case 2:
-      G__letint(result7, 103, (long) ((OnlineGUI*) G__getstructoffset())->Disconnect((const char*) G__int(libp->para[0]), (void*) G__int(libp->para[1])));
-      break;
-   case 1:
-      G__letint(result7, 103, (long) ((OnlineGUI*) G__getstructoffset())->Disconnect((const char*) G__int(libp->para[0])));
-      break;
-   case 0:
-      G__letint(result7, 103, (long) ((OnlineGUI*) G__getstructoffset())->Disconnect());
-      break;
-   }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   switch (libp->paran) {
-   case 2:
-      ((OnlineGUI*) G__getstructoffset())->HighPriority((const char*) G__int(libp->para[0]), (const char*) G__int(libp->para[1]));
-      G__setnull(result7);
-      break;
-   case 1:
-      ((OnlineGUI*) G__getstructoffset())->HighPriority((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-      break;
-   }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   switch (libp->paran) {
-   case 2:
-      ((OnlineGUI*) G__getstructoffset())->LowPriority((const char*) G__int(libp->para[0]), (const char*) G__int(libp->para[1]));
-      G__setnull(result7);
-      break;
-   case 1:
-      ((OnlineGUI*) G__getstructoffset())->LowPriority((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-      break;
-   }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   const int imax = 6, dmax = 8, umax = 50;
-   int objsize, type, i, icnt = 0, dcnt = 0, ucnt = 0;
-   G__value *pval;
-   G__int64 lval[imax] = {0};
-   double dval[dmax] = {0};
-   union { G__int64 lval; double dval; } u[umax] = {{0}};
-   lval[icnt] = G__getstructoffset(); icnt++; // this pointer
-   for (i = 0; i < libp->paran; i++) {
-      type = G__value_get_type(&libp->para[i]);
-      pval = &libp->para[i];
-      if (isupper(type))
-         objsize = G__LONGALLOC;
-      else
-         objsize = G__sizeof(pval);
-      switch (type) {
-         case 'c': case 'b': case 's': case 'r': objsize = sizeof(int); break;
-         case 'f': objsize = sizeof(double); break;
-      }
-#ifdef G__VAARG_PASS_BY_REFERENCE
-      if (objsize > G__VAARG_PASS_BY_REFERENCE) {
-         if (pval->ref > 0x1000) {
-            if (icnt < imax) {
-               lval[icnt] = pval->ref; icnt++;
-            } else {
-               u[ucnt].lval = pval->ref; ucnt++;
-            }
-         } else {
-            if (icnt < imax) {
-               lval[icnt] = G__int(*pval); icnt++;
-            } else {
-               u[ucnt].lval = G__int(*pval); ucnt++;
-            }
-         }
-         type = 'z';
-      }
-#endif
-      switch (type) {
-         case 'n': case 'm':
-            if (icnt < imax) {
-               lval[icnt] = (G__int64)G__Longlong(*pval); icnt++;
-            } else {
-               u[ucnt].lval = (G__int64)G__Longlong(*pval); ucnt++;
-            } break;
-         case 'f': case 'd':
-            if (dcnt < dmax) {
-               dval[dcnt] = G__double(*pval); dcnt++;
-            } else {
-               u[ucnt].dval = G__double(*pval); ucnt++;
-            } break;
-         case 'z': break;
-         case 'u':
-            if (objsize >= 16) {
-               memcpy(&u[ucnt].lval, (void*)pval->obj.i, objsize);
-               ucnt += objsize/8;
-               break;
-            }
-            // objsize < 16 -> fall through
-         case 'g': case 'c': case 'b': case 'r': case 's': case 'h': case 'i':
-         case 'k': case 'l':
-         default:
-            if (icnt < imax) {
-               lval[icnt] = G__int(*pval); icnt++;
-            } else {
-               u[ucnt].lval = G__int(*pval); ucnt++;
-            } break;
-      }
-      if (ucnt >= 50) printf("EmitVA: more than 56 var args\n");
-   }
-      ((OnlineGUI*) G__getstructoffset())->EmitVA((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]), dval[0], dval[1], dval[2], dval[3], dval[4], dval[5], dval[6], dval[7], lval[3], lval[4], lval[5], u[0].lval, u[1].lval, u[2].lval, u[3].lval, u[4].lval, u[5].lval, u[6].lval, u[7].lval, u[8].lval, u[9].lval, u[10].lval, u[11].lval, u[12].lval, u[13].lval, u[14].lval, u[15].lval, u[16].lval, u[17].lval, u[18].lval, u[19].lval, u[20].lval, u[21].lval, u[22].lval, u[23].lval, u[24].lval, u[25].lval, u[26].lval, u[27].lval, u[28].lval, u[29].lval, u[30].lval, u[31].lval, u[32].lval, u[33].lval, u[34].lval, u[35].lval, u[36].lval, u[37].lval, u[38].lval, u[39].lval, u[40].lval, u[41].lval, u[42].lval, u[43].lval, u[44].lval, u[45].lval, u[46].lval, u[47].lval, u[48].lval, u[49].lval);
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (const char*) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Long_t*) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Double_t) G__double(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Long_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Long64_t) G__Longlong(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (ULong64_t) G__ULonglong(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Char_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (UChar_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Short_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (UShort_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (UInt_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (ULong_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Emit((const char*) G__int(libp->para[0]), (Float_t) G__double(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Destroyed();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->ChangedBy((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->Message((const char*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   OnlineGUI* p = NULL;
-   char* gvp = (char*) G__getgvp();
-   switch (libp->paran) {
-   case 3:
-     //m: 3
-     if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
-       p = new OnlineGUI(
-*(OnlineConfig*) libp->para[0].ref, (Bool_t) G__int(libp->para[1])
-, (UInt_t) G__int(libp->para[2]));
-     } else {
-       p = new((void*) gvp) OnlineGUI(
-*(OnlineConfig*) libp->para[0].ref, (Bool_t) G__int(libp->para[1])
-, (UInt_t) G__int(libp->para[2]));
-     }
-     break;
-   case 2:
-     //m: 2
-     if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
-       p = new OnlineGUI(*(OnlineConfig*) libp->para[0].ref, (Bool_t) G__int(libp->para[1]));
-     } else {
-       p = new((void*) gvp) OnlineGUI(*(OnlineConfig*) libp->para[0].ref, (Bool_t) G__int(libp->para[1]));
-     }
-     break;
-   }
-   result7->obj.i = (long) p;
-   result7->ref = (long) p;
-   G__set_tagnum(result7,G__get_linked_tagnum(&G__onlineDictLN_OnlineGUI));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->CreateGUI((TGWindow*) G__int(libp->para[0]), (UInt_t) G__int(libp->para[1])
-, (UInt_t) G__int(libp->para[2]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->DoDraw();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->DrawPrev();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->DrawNext();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->DoRadio();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->CheckPageButtons();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_33(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->GetFileObjects((RootFileObject*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_34(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->GetTreeVars((RootFileObject*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_35(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->GetRootTree((RootFileObject*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_36(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 104, (long) ((OnlineGUI*) G__getstructoffset())->GetTreeIndex(*((TString*) G__int(libp->para[0])), (RootFileObject*) G__int(libp->para[1])));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_37(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 104, (long) ((OnlineGUI*) G__getstructoffset())->GetTreeIndexFromName(*((TString*) G__int(libp->para[0])), (RootFileObject*) G__int(libp->para[1])));
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_38(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      {
-         drawcommand* pobj;
-         drawcommand xobj = ((OnlineGUI*) G__getstructoffset())->fileObject2command(*((drawcommand*) G__int(libp->para[0])), (RootFileObject*) G__int(libp->para[1]));
-         pobj = new drawcommand(xobj);
-         result7->obj.i = (long) ((void*) pobj);
-         result7->ref = result7->obj.i;
-         G__store_tempobject(*result7);
-      }
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_39(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->TreeDraw(*((drawcommand*) G__int(libp->para[0])));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_40(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->HistDraw(*((drawcommand*) G__int(libp->para[0])));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_41(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->MacroDraw(*((drawcommand*) G__int(libp->para[0])));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_42(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->CanvasDraw(*((drawcommand*) G__int(libp->para[0])), (UInt_t) G__int(libp->para[1]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_43(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->GraphDraw(*((drawcommand*) G__int(libp->para[0])));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_44(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->DoDrawClear((RootFileObject*) G__int(libp->para[0]));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_45(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->TimerUpdate();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_46(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->BadDraw(*((TString*) G__int(libp->para[0])));
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_47(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->CheckRootFile();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_48(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      G__letint(result7, 105, (long) ((OnlineGUI*) G__getstructoffset())->OpenRootFile());
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_49(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->ObtainRunNumber();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_50(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->PrintToFile();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_51(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->PrintPages();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_52(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->MyCloseWindow();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-static int G__onlineDict_714_0_53(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-      ((OnlineGUI*) G__getstructoffset())->CloseGUI();
-      G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-// automatic destructor
-typedef OnlineGUI G__TOnlineGUI;
-static int G__onlineDict_714_0_54(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
-{
-   char* gvp = (char*) G__getgvp();
-   long soff = G__getstructoffset();
-   int n = G__getaryconstruct();
-   //
-   //has_a_delete: 0
-   //has_own_delete1arg: 0
-   //has_own_delete2arg: 0
-   //
-   if (!soff) {
-     return(1);
-   }
-   if (n) {
-     if (gvp == (char*)G__PVOID) {
-       delete[] (OnlineGUI*) soff;
-     } else {
-       G__setgvp((long) G__PVOID);
-       for (int i = n - 1; i >= 0; --i) {
-         ((OnlineGUI*) (soff+(sizeof(OnlineGUI)*i)))->~G__TOnlineGUI();
-       }
-       G__setgvp((long)gvp);
-     }
-   } else {
-     if (gvp == (char*)G__PVOID) {
-       delete (OnlineGUI*) soff;
-     } else {
-       G__setgvp((long) G__PVOID);
-       ((OnlineGUI*) (soff))->~G__TOnlineGUI();
-       G__setgvp((long)gvp);
-     }
-   }
-   G__setnull(result7);
-   return(1 || funcname || hash || result7 || libp) ;
-}
-
-
-/* Setting up global function */
-
-/*********************************************************
-* Member function Stub
-*********************************************************/
-
-/* OnlineConfig */
-
-/* OnlineGUI */
-
-/*********************************************************
-* Global function Stub
-*********************************************************/
-
-/*********************************************************
-* Get size of pointer to member function
-*********************************************************/
-class G__Sizep2memfunconlineDict {
- public:
-  G__Sizep2memfunconlineDict(): p(&G__Sizep2memfunconlineDict::sizep2memfunc) {}
-    size_t sizep2memfunc() { return(sizeof(p)); }
-  private:
-    size_t (G__Sizep2memfunconlineDict::*p)();
-};
-
-size_t G__get_sizep2memfunconlineDict()
-{
-  G__Sizep2memfunconlineDict a;
-  G__setsizep2memfunc((int)a.sizep2memfunc());
-  return((size_t)a.sizep2memfunc());
-}
-
-
-/*********************************************************
-* virtual base class offset calculation interface
-*********************************************************/
-
-   /* Setting up class inheritance */
-
-/*********************************************************
-* Inheritance information setup/
-*********************************************************/
-extern "C" void G__cpp_setup_inheritanceonlineDict() {
-
-   /* Setting up class inheritance */
-}
-
-/*********************************************************
-* typedef information setup/
-*********************************************************/
-extern "C" void G__cpp_setup_typetableonlineDict() {
-
-   /* Setting up typedef entry */
-   G__search_typename2("Char_t",99,-1,0,-1);
-   G__setnewtype(-1,"Signed Character 1 byte (char)",0);
-   G__search_typename2("UChar_t",98,-1,0,-1);
-   G__setnewtype(-1,"Unsigned Character 1 byte (unsigned char)",0);
-   G__search_typename2("Short_t",115,-1,0,-1);
-   G__setnewtype(-1,"Signed Short integer 2 bytes (short)",0);
-   G__search_typename2("UShort_t",114,-1,0,-1);
-   G__setnewtype(-1,"Unsigned Short integer 2 bytes (unsigned short)",0);
-   G__search_typename2("Int_t",105,-1,0,-1);
-   G__setnewtype(-1,"Signed integer 4 bytes (int)",0);
-   G__search_typename2("UInt_t",104,-1,0,-1);
-   G__setnewtype(-1,"Unsigned integer 4 bytes (unsigned int)",0);
-   G__search_typename2("Long_t",108,-1,0,-1);
-   G__setnewtype(-1,"Signed long integer 8 bytes (long)",0);
-   G__search_typename2("ULong_t",107,-1,0,-1);
-   G__setnewtype(-1,"Unsigned long integer 8 bytes (unsigned long)",0);
-   G__search_typename2("Float_t",102,-1,0,-1);
-   G__setnewtype(-1,"Float 4 bytes (float)",0);
-   G__search_typename2("Double_t",100,-1,0,-1);
-   G__setnewtype(-1,"Double 8 bytes",0);
-   G__search_typename2("Bool_t",103,-1,0,-1);
-   G__setnewtype(-1,"Boolean (0=false, 1=true) (bool)",0);
-   G__search_typename2("Long64_t",110,-1,0,-1);
-   G__setnewtype(-1,"Portable signed long integer 8 bytes",0);
-   G__search_typename2("ULong64_t",109,-1,0,-1);
-   G__setnewtype(-1,"Portable unsigned long integer 8 bytes",0);
-   G__search_typename2("vector<ROOT::TSchemaHelper>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<TVirtualArray*>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("iterator<std::bidirectional_iterator_tag,TObject*,std::ptrdiff_t,const TObject**,const TObject*&>",117,G__get_linked_tagnum(&G__onlineDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,std::ptrdiff_t,const TObject**,const TObject*&>",117,G__get_linked_tagnum(&G__onlineDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("iterator<bidirectional_iterator_tag,TObject*>",117,G__get_linked_tagnum(&G__onlineDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,long>",117,G__get_linked_tagnum(&G__onlineDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,long,const TObject**>",117,G__get_linked_tagnum(&G__onlineDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("map<std::string,TObjArray*>",117,G__get_linked_tagnum(&G__onlineDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("map<string,TObjArray*>",117,G__get_linked_tagnum(&G__onlineDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("map<string,TObjArray*>",117,G__get_linked_tagnum(&G__onlineDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("map<string,TObjArray*,less<string> >",117,G__get_linked_tagnum(&G__onlineDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("pair<UInt_t,Int_t>",117,G__get_linked_tagnum(&G__onlineDictLN_pairlEunsignedsPintcOintgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<std::pair<UInt_t,Int_t> >",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<pair<UInt_t,Int_t> >",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<pair<unsigned int,int> >",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("TVectorT<Float_t>",117,G__get_linked_tagnum(&G__onlineDictLN_TVectorTlEfloatgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("TVectorT<Double_t>",117,G__get_linked_tagnum(&G__onlineDictLN_TVectorTlEdoublegR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("TMatrixTBase<Float_t>",117,G__get_linked_tagnum(&G__onlineDictLN_TMatrixTBaselEfloatgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("TMatrixTBase<Double_t>",117,G__get_linked_tagnum(&G__onlineDictLN_TMatrixTBaselEdoublegR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<TTree*>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlETTreemUcOallocatorlETTreemUgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlETTreemUcOallocatorlETTreemUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETTreemUcOallocatorlETTreemUgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlETTreemUcOallocatorlETTreemUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETTreemUcOallocatorlETTreemUgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<Int_t>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEintcOallocatorlEintgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEintcOallocatorlEintgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEintcOallocatorlEintgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEintcOallocatorlEintgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEintcOallocatorlEintgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<int>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEintcOallocatorlEintgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<TString>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlETStringcOallocatorlETStringgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlETStringcOallocatorlETStringgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETStringcOallocatorlETStringgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlETStringcOallocatorlETStringgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETStringcOallocatorlETStringgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<vector<TString> >",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<vector<TString,allocator<TString> > >",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<fileObject>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEfileObjectcOallocatorlEfileObjectgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEfileObjectcOallocatorlEfileObjectgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEfileObjectcOallocatorlEfileObjectgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEfileObjectcOallocatorlEfileObjectgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEfileObjectcOallocatorlEfileObjectgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("pair<UInt_t,UInt_t>",117,G__get_linked_tagnum(&G__onlineDictLN_pairlEunsignedsPintcOunsignedsPintgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<pair<UInt_t,UInt_t> >",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<pair<unsigned int,unsigned int> >",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<TCut>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlETCutcOallocatorlETCutgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlETCutcOallocatorlETCutgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETCutcOallocatorlETCutgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__onlineDictLN_reverse_iteratorlEvectorlETCutcOallocatorlETCutgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETCutcOallocatorlETCutgRsPgR));
-   G__setnewtype(-1,NULL,0);
-   G__search_typename2("vector<UInt_t>",117,G__get_linked_tagnum(&G__onlineDictLN_vectorlEunsignedsPintcOallocatorlEunsignedsPintgRsPgR),0,-1);
-   G__setnewtype(-1,NULL,0);
-}
-
-/*********************************************************
-* Data Member information setup/
-*********************************************************/
-
-   /* Setting up class,struct,union tag member variable */
-
-   /* OnlineConfig */
-static void G__setup_memvarOnlineConfig(void) {
-   G__tag_memvar_setup(G__get_linked_tagnum(&G__onlineDictLN_OnlineConfig));
-   { OnlineConfig *p; p=(OnlineConfig*)0x1000; if (p) { }
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_TQObjSender),-1,-1,4,"fQObject=",0,(char*)NULL);
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_TString),-1,-1,4,"confFileName=",0,"config filename");
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_basic_ifstreamlEcharcOchar_traitslEchargRsPgR),G__defined_typename("ifstream"),-1,4,"fConfFile=",0,"original config file");
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgR),G__defined_typename("vector<vector<TString> >"),-1,4,"sConfFile=",0,"the config file, in memory");
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_TString),-1,-1,4,"rootfilename=",0,"Just the name");
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_TString),-1,-1,4,"goldenrootfilename=",0,"Golden rootfile for comparisons");
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_TString),-1,-1,4,"protorootfile=",0,"Prototype for getting the rootfilename");
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_TString),-1,-1,4,"guicolor=",0,"User's choice of background color");
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_TString),-1,-1,4,"plotsdir=",0,"Where to store sample plots.. automatically stored as .jpg's).");
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgR),G__defined_typename("vector<pair<UInt_t,UInt_t> >"),-1,4,"pageInfo=",0,(char*)NULL);
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_vectorlETCutcOallocatorlETCutgRsPgR),G__defined_typename("vector<TCut>"),-1,4,"cutList=",0,(char*)NULL);
-   G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,4,"fFoundCfg=",0,(char*)NULL);
-   G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,4,"fMonitor=",0,(char*)NULL);
-   }
-   G__tag_memvar_reset();
-}
-
-
-   /* OnlineGUI */
-static void G__setup_memvarOnlineGUI(void) {
-   G__tag_memvar_setup(G__get_linked_tagnum(&G__onlineDictLN_OnlineGUI));
-   { OnlineGUI *p; p=(OnlineGUI*)0x1000; if (p) { }
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_TQObjSender),-1,-1,4,"fQObject=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGMainFrame),-1,-1,4,"fMain=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGHorizontalFrame),-1,-1,4,"fTopframe=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGVerticalFrame),-1,-1,4,"vframe=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGRadioButton),-1,-1,4,"fRadioPage[50]=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGPictureButton),-1,-1,4,"wile=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TRootEmbeddedCanvas),-1,-1,4,"fEcanvas=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGHorizontalFrame),-1,-1,4,"fBottomFrame=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGHorizontalFrame),-1,-1,4,"hframe=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGTextButton),-1,-1,4,"fNext=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGTextButton),-1,-1,4,"fPrev=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGTextButton),-1,-1,4,"fExit=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGLabel),-1,-1,4,"fRunNumber=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TGTextButton),-1,-1,4,"fPrint=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TCanvas),-1,-1,4,"fCanvas=",0,"Present Embedded canvas");
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_OnlineConfig),-1,-1,4,"fConfig=",0,(char*)NULL);
-   G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,4,"current_page=",0,(char*)NULL);
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_RootFileObject),-1,-1,4,"fRootFile=",0,(char*)NULL);
-   G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__onlineDictLN_RootFileObject),-1,-1,4,"fGoldenFile=",0,(char*)NULL);
-   G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,4,"doGolden=",0,(char*)NULL);
-   G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,4,"runNumber=",0,(char*)NULL);
-   G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__onlineDictLN_TTimer),-1,-1,4,"timer=",0,(char*)NULL);
-   G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,4,"fPrintOnly=",0,(char*)NULL);
-   G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,4,"fFileAlive=",0,(char*)NULL);
-   G__memvar_setup((void*)0,108,0,0,-1,-1,-1,4,"G__virtualinfo=",0,(char*)NULL);
-   }
-   G__tag_memvar_reset();
-}
-
-extern "C" void G__cpp_setup_memvaronlineDict() {
-}
-/***********************************************************
-************************************************************
-************************************************************
-************************************************************
-************************************************************
-************************************************************
-************************************************************
-***********************************************************/
-
-/*********************************************************
-* Member function information setup for each class
-*********************************************************/
-static void G__setup_memfuncOnlineConfig(void) {
-   /* OnlineConfig */
-   G__tag_memfunc_setup(G__get_linked_tagnum(&G__onlineDictLN_OnlineConfig));
-   G__memfunc_setup("GetListOfSignals",1602,G__onlineDict_704_0_1, 85, G__get_linked_tagnum(&G__onlineDictLN_TList), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Connect",714,G__onlineDict_704_0_2, 103, -1, G__defined_typename("Bool_t"), 0, 4, 1, 1, 0, 
-"C - - 10 - sig C - - 10 - cl "
-"Y - - 0 - rcvr C - - 10 - slt", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Disconnect",1034,G__onlineDict_704_0_3, 103, -1, G__defined_typename("Bool_t"), 0, 3, 1, 1, 0, 
-"C - - 10 '0' sig Y - - 0 '0' rcvr "
-"C - - 10 '0' slt", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("HighPriority",1250,G__onlineDict_704_0_4, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal_name C - - 10 '0' slot_name", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("LowPriority",1172,G__onlineDict_704_0_5, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal_name C - - 10 '0' slot_name", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("EmitVA",550,G__onlineDict_704_0_6, 121, -1, -1, 0, 2, 8, 1, 0, 
-"C - - 10 - signal i - 'Int_t' 0 - nargs", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_7, 121, -1, -1, 0, 1, 1, 1, 0, "C - - 10 - signal", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_8, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal C - - 10 - params", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_9, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal L - 'Long_t' 0 - paramArr", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_10, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal d - 'Double_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_11, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal l - 'Long_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_12, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal n - 'Long64_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_13, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal m - 'ULong64_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_14, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal g - 'Bool_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_15, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal c - 'Char_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_16, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal b - 'UChar_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_17, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal s - 'Short_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_18, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal r - 'UShort_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_19, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal i - 'Int_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_20, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal h - 'UInt_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_21, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal k - 'ULong_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_704_0_22, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal f - 'Float_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Destroyed",947,G__onlineDict_704_0_23, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("ChangedBy",869,G__onlineDict_704_0_24, 121, -1, -1, 0, 1, 1, 1, 0, "C - - 10 - method", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Message",709,G__onlineDict_704_0_25, 121, -1, -1, 0, 1, 1, 1, 0, "C - - 10 - msg", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("ParseFile",891,(G__InterfaceMethod) NULL, 121, -1, -1, 0, 0, 1, 4, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetDrawIndex",1190,(G__InterfaceMethod) NULL, 117, G__get_linked_tagnum(&G__onlineDictLN_vectorlEunsignedsPintcOallocatorlEunsignedsPintgRsPgR), G__defined_typename("vector<UInt_t>"), 0, 1, 1, 4, 0, "h - 'UInt_t' 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("ParseForMultiPlots",1855,(G__InterfaceMethod) NULL, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 4, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("OnlineConfig",1211,G__onlineDict_704_0_29, 105, G__get_linked_tagnum(&G__onlineDictLN_OnlineConfig), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("OnlineConfig",1211,G__onlineDict_704_0_30, 105, G__get_linked_tagnum(&G__onlineDictLN_OnlineConfig), -1, 0, 1, 1, 1, 0, "u 'TString' - 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("ParseConfig",1105,G__onlineDict_704_0_31, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetRootFile",1092,G__onlineDict_704_0_32, 117, G__get_linked_tagnum(&G__onlineDictLN_TString), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetGoldenFile",1273,G__onlineDict_704_0_33, 117, G__get_linked_tagnum(&G__onlineDictLN_TString), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetGuiColor",1092,G__onlineDict_704_0_34, 117, G__get_linked_tagnum(&G__onlineDictLN_TString), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetPlotsDir",1105,G__onlineDict_704_0_35, 117, G__get_linked_tagnum(&G__onlineDictLN_TString), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetDefinedCut",1275,G__onlineDict_704_0_36, 117, G__get_linked_tagnum(&G__onlineDictLN_TCut), -1, 0, 1, 1, 1, 0, "u 'TString' - 0 - ident", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetCutIdent",1088,G__onlineDict_704_0_37, 117, G__get_linked_tagnum(&G__onlineDictLN_vectorlETStringcOallocatorlETStringgRsPgR), G__defined_typename("vector<TString>"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetPageCount",1190,G__onlineDict_704_0_38, 104, -1, G__defined_typename("UInt_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetPageDim",951,G__onlineDict_704_0_39, 117, G__get_linked_tagnum(&G__onlineDictLN_pairlEunsignedsPintcOunsignedsPintgR), G__defined_typename("pair<UInt_t,UInt_t>"), 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("IsLogx",598,G__onlineDict_704_0_40, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - page", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("IsLogy",599,G__onlineDict_704_0_41, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - page", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("IsLogz",600,G__onlineDict_704_0_42, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - page", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetPageTitle",1183,G__onlineDict_704_0_43, 117, G__get_linked_tagnum(&G__onlineDictLN_TString), -1, 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetDrawCount",1207,G__onlineDict_704_0_44, 104, -1, G__defined_typename("UInt_t"), 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - -", "Number of histograms in a page", (void*) NULL, 0);
-   G__memfunc_setup("GetDrawCommand",1389,G__onlineDict_704_0_45, 117, G__get_linked_tagnum(&G__onlineDictLN_drawcommand), -1, 0, 2, 1, 1, 0, 
-"h - 'UInt_t' 0 - - h - 'UInt_t' 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("SplitString",1155,G__onlineDict_704_0_46, 117, G__get_linked_tagnum(&G__onlineDictLN_vectorlETStringcOallocatorlETStringgRsPgR), G__defined_typename("vector<TString>"), 0, 2, 1, 1, 0, 
-"u 'TString' - 0 - - u 'TString' - 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("OverrideRootFile",1636,G__onlineDict_704_0_47, 121, -1, -1, 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("IsMonitor",932,G__onlineDict_704_0_48, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   // automatic destructor
-   G__memfunc_setup("~OnlineConfig", 1337, G__onlineDict_704_0_49, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 0);
-   G__tag_memfunc_reset();
-}
-
-static void G__setup_memfuncOnlineGUI(void) {
-   /* OnlineGUI */
-   G__tag_memfunc_setup(G__get_linked_tagnum(&G__onlineDictLN_OnlineGUI));
-   G__memfunc_setup("GetListOfSignals",1602,G__onlineDict_714_0_1, 85, G__get_linked_tagnum(&G__onlineDictLN_TList), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Connect",714,G__onlineDict_714_0_2, 103, -1, G__defined_typename("Bool_t"), 0, 4, 1, 1, 0, 
-"C - - 10 - sig C - - 10 - cl "
-"Y - - 0 - rcvr C - - 10 - slt", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Disconnect",1034,G__onlineDict_714_0_3, 103, -1, G__defined_typename("Bool_t"), 0, 3, 1, 1, 0, 
-"C - - 10 '0' sig Y - - 0 '0' rcvr "
-"C - - 10 '0' slt", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("HighPriority",1250,G__onlineDict_714_0_4, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal_name C - - 10 '0' slot_name", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("LowPriority",1172,G__onlineDict_714_0_5, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal_name C - - 10 '0' slot_name", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("EmitVA",550,G__onlineDict_714_0_6, 121, -1, -1, 0, 2, 8, 1, 0, 
-"C - - 10 - signal i - 'Int_t' 0 - nargs", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_7, 121, -1, -1, 0, 1, 1, 1, 0, "C - - 10 - signal", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_8, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal C - - 10 - params", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_9, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal L - 'Long_t' 0 - paramArr", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_10, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal d - 'Double_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_11, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal l - 'Long_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_12, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal n - 'Long64_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_13, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal m - 'ULong64_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_14, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal g - 'Bool_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_15, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal c - 'Char_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_16, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal b - 'UChar_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_17, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal s - 'Short_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_18, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal r - 'UShort_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_19, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal i - 'Int_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_20, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal h - 'UInt_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_21, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal k - 'ULong_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Emit",399,G__onlineDict_714_0_22, 121, -1, -1, 0, 2, 1, 1, 0, 
-"C - - 10 - signal f - 'Float_t' 0 - param", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Destroyed",947,G__onlineDict_714_0_23, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("ChangedBy",869,G__onlineDict_714_0_24, 121, -1, -1, 0, 1, 1, 1, 0, "C - - 10 - method", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("Message",709,G__onlineDict_714_0_25, 121, -1, -1, 0, 1, 1, 1, 0, "C - - 10 - msg", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("OnlineGUI",842,G__onlineDict_714_0_26, 105, G__get_linked_tagnum(&G__onlineDictLN_OnlineGUI), -1, 0, 3, 1, 1, 0, 
-"u 'OnlineConfig' - 1 - - g - 'Bool_t' 0 - - "
-"h - 'UInt_t' 0 '0' RunNum", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("CreateGUI",825,G__onlineDict_714_0_27, 121, -1, -1, 0, 3, 1, 1, 0, 
-"U 'TGWindow' - 10 - p h - 'UInt_t' 0 - w "
-"h - 'UInt_t' 0 - h", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("DoDraw",577,G__onlineDict_714_0_28, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("DrawPrev",811,G__onlineDict_714_0_29, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("DrawNext",813,G__onlineDict_714_0_30, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("DoRadio",674,G__onlineDict_714_0_31, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("CheckPageButtons",1610,G__onlineDict_714_0_32, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetFileObjects",1386,G__onlineDict_714_0_33, 121, -1, -1, 0, 1, 1, 1, 0, "U 'RootFileObject' - 0 - r", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetTreeVars",1100,G__onlineDict_714_0_34, 121, -1, -1, 0, 1, 1, 1, 0, "U 'RootFileObject' - 0 - r", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetRootTree",1108,G__onlineDict_714_0_35, 121, -1, -1, 0, 1, 1, 1, 0, "U 'RootFileObject' - 0 - r", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetTreeIndex",1192,G__onlineDict_714_0_36, 104, -1, G__defined_typename("UInt_t"), 0, 2, 1, 1, 0, 
-"u 'TString' - 0 - - U 'RootFileObject' - 0 - r", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GetTreeIndexFromName",1981,G__onlineDict_714_0_37, 104, -1, G__defined_typename("UInt_t"), 0, 2, 1, 1, 0, 
-"u 'TString' - 0 - - U 'RootFileObject' - 0 - r", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("fileObject2command",1800,G__onlineDict_714_0_38, 117, G__get_linked_tagnum(&G__onlineDictLN_drawcommand), -1, 0, 2, 1, 1, 0, 
-"u 'drawcommand' - 0 - - U 'RootFileObject' - 0 - r", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("TreeDraw",798,G__onlineDict_714_0_39, 121, -1, -1, 0, 1, 1, 1, 0, "u 'drawcommand' - 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("HistDraw",806,G__onlineDict_714_0_40, 121, -1, -1, 0, 1, 1, 1, 0, "u 'drawcommand' - 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("MacroDraw",896,G__onlineDict_714_0_41, 121, -1, -1, 0, 1, 1, 1, 0, "u 'drawcommand' - 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("CanvasDraw",1002,G__onlineDict_714_0_42, 121, -1, -1, 0, 2, 1, 1, 0, 
-"u 'drawcommand' - 0 - - h - 'UInt_t' 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("GraphDraw",896,G__onlineDict_714_0_43, 121, -1, -1, 0, 1, 1, 1, 0, "u 'drawcommand' - 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("DoDrawClear",1064,G__onlineDict_714_0_44, 121, -1, -1, 0, 1, 1, 1, 0, "U 'RootFileObject' - 0 - r", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("TimerUpdate",1124,G__onlineDict_714_0_45, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("BadDraw",661,G__onlineDict_714_0_46, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TString' - 0 - -", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("CheckRootFile",1282,G__onlineDict_714_0_47, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("OpenRootFile",1206,G__onlineDict_714_0_48, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("ObtainRunNumber",1531,G__onlineDict_714_0_49, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("PrintToFile",1104,G__onlineDict_714_0_50, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("PrintPages",1021,G__onlineDict_714_0_51, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("MyCloseWindow",1332,G__onlineDict_714_0_52, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   G__memfunc_setup("CloseGUI",731,G__onlineDict_714_0_53, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
-   // automatic destructor
-   G__memfunc_setup("~OnlineGUI", 968, G__onlineDict_714_0_54, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1);
-   G__tag_memfunc_reset();
-}
-
-
-/*********************************************************
-* Member function information setup
-*********************************************************/
-extern "C" void G__cpp_setup_memfunconlineDict() {
-}
-
-/*********************************************************
-* Global variable information setup for each class
-*********************************************************/
-static void G__cpp_setup_global0() {
-
-   /* Setting up global variables */
-   G__resetplocal();
-
-}
-
-static void G__cpp_setup_global1() {
-}
-
-static void G__cpp_setup_global2() {
-}
-
-static void G__cpp_setup_global3() {
-}
-
-static void G__cpp_setup_global4() {
-}
-
-static void G__cpp_setup_global5() {
-
-   G__resetglobalenv();
-}
-extern "C" void G__cpp_setup_globalonlineDict() {
-  G__cpp_setup_global0();
-  G__cpp_setup_global1();
-  G__cpp_setup_global2();
-  G__cpp_setup_global3();
-  G__cpp_setup_global4();
-  G__cpp_setup_global5();
-}
-
-/*********************************************************
-* Global function information setup for each class
-*********************************************************/
-static void G__cpp_setup_func0() {
-   G__lastifuncposition();
-
-}
-
-static void G__cpp_setup_func1() {
-}
-
-static void G__cpp_setup_func2() {
-}
-
-static void G__cpp_setup_func3() {
-}
-
-static void G__cpp_setup_func4() {
-}
-
-static void G__cpp_setup_func5() {
-}
-
-static void G__cpp_setup_func6() {
-}
-
-static void G__cpp_setup_func7() {
-}
-
-static void G__cpp_setup_func8() {
-}
-
-static void G__cpp_setup_func9() {
-}
-
-static void G__cpp_setup_func10() {
-}
-
-static void G__cpp_setup_func11() {
-}
-
-static void G__cpp_setup_func12() {
-}
-
-static void G__cpp_setup_func13() {
-}
-
-static void G__cpp_setup_func14() {
-}
-
-static void G__cpp_setup_func15() {
-}
-
-static void G__cpp_setup_func16() {
-}
-
-static void G__cpp_setup_func17() {
-}
-
-static void G__cpp_setup_func18() {
-}
-
-static void G__cpp_setup_func19() {
-}
-
-static void G__cpp_setup_func20() {
-}
-
-static void G__cpp_setup_func21() {
-}
-
-static void G__cpp_setup_func22() {
-}
-
-static void G__cpp_setup_func23() {
-}
-
-static void G__cpp_setup_func24() {
-}
-
-static void G__cpp_setup_func25() {
-}
-
-static void G__cpp_setup_func26() {
-}
-
-static void G__cpp_setup_func27() {
-}
-
-static void G__cpp_setup_func28() {
-}
-
-static void G__cpp_setup_func29() {
-}
-
-static void G__cpp_setup_func30() {
-}
-
-static void G__cpp_setup_func31() {
-}
-
-static void G__cpp_setup_func32() {
-}
-
-static void G__cpp_setup_func33() {
-
-   G__resetifuncposition();
-}
-
-extern "C" void G__cpp_setup_funconlineDict() {
-  G__cpp_setup_func0();
-  G__cpp_setup_func1();
-  G__cpp_setup_func2();
-  G__cpp_setup_func3();
-  G__cpp_setup_func4();
-  G__cpp_setup_func5();
-  G__cpp_setup_func6();
-  G__cpp_setup_func7();
-  G__cpp_setup_func8();
-  G__cpp_setup_func9();
-  G__cpp_setup_func10();
-  G__cpp_setup_func11();
-  G__cpp_setup_func12();
-  G__cpp_setup_func13();
-  G__cpp_setup_func14();
-  G__cpp_setup_func15();
-  G__cpp_setup_func16();
-  G__cpp_setup_func17();
-  G__cpp_setup_func18();
-  G__cpp_setup_func19();
-  G__cpp_setup_func20();
-  G__cpp_setup_func21();
-  G__cpp_setup_func22();
-  G__cpp_setup_func23();
-  G__cpp_setup_func24();
-  G__cpp_setup_func25();
-  G__cpp_setup_func26();
-  G__cpp_setup_func27();
-  G__cpp_setup_func28();
-  G__cpp_setup_func29();
-  G__cpp_setup_func30();
-  G__cpp_setup_func31();
-  G__cpp_setup_func32();
-  G__cpp_setup_func33();
-}
-
-/*********************************************************
-* Class,struct,union,enum tag information setup
-*********************************************************/
-/* Setup class/struct taginfo */
-G__linked_taginfo G__onlineDictLN_TString = { "TString" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlEunsignedsPintcOallocatorlEunsignedsPintgRsPgR = { "vector<unsigned int,allocator<unsigned int> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_basic_ifstreamlEcharcOchar_traitslEchargRsPgR = { "basic_ifstream<char,char_traits<char> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR = { "vector<ROOT::TSchemaHelper,allocator<ROOT::TSchemaHelper> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR = { "reverse_iterator<vector<ROOT::TSchemaHelper,allocator<ROOT::TSchemaHelper> >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TList = { "TList" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TTimer = { "TTimer" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR = { "vector<TVirtualArray*,allocator<TVirtualArray*> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<TVirtualArray*,allocator<TVirtualArray*> >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR = { "iterator<bidirectional_iterator_tag,TObject*,long,const TObject**,const TObject*&>" , 115 , -1 };
-G__linked_taginfo G__onlineDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR = { "map<string,TObjArray*,less<string>,allocator<pair<const string,TObjArray*> > >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TCut = { "TCut" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TQObjSender = { "TQObjSender" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TGWindow = { "TGWindow" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_pairlEunsignedsPintcOintgR = { "pair<unsigned int,int>" , 115 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgR = { "vector<pair<unsigned int,int>,allocator<pair<unsigned int,int> > >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<pair<unsigned int,int>,allocator<pair<unsigned int,int> > >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TGTextButton = { "TGTextButton" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TGVerticalFrame = { "TGVerticalFrame" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TGHorizontalFrame = { "TGHorizontalFrame" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TGMainFrame = { "TGMainFrame" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TGPictureButton = { "TGPictureButton" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TGRadioButton = { "TGRadioButton" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TCanvas = { "TCanvas" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TRootEmbeddedCanvas = { "TRootEmbeddedCanvas" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TGLabel = { "TGLabel" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TVectorTlEfloatgR = { "TVectorT<float>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TVectorTlEdoublegR = { "TVectorT<double>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TMatrixTBaselEfloatgR = { "TMatrixTBase<float>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_TMatrixTBaselEdoublegR = { "TMatrixTBase<double>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_RootFileObject = { "RootFileObject" , 115 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlETTreemUcOallocatorlETTreemUgRsPgR = { "vector<TTree*,allocator<TTree*> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlETTreemUcOallocatorlETTreemUgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<TTree*,allocator<TTree*> >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlEintcOallocatorlEintgRsPgR = { "vector<int,allocator<int> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlEintcOallocatorlEintgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<int,allocator<int> >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlETStringcOallocatorlETStringgRsPgR = { "vector<TString,allocator<TString> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlETStringcOallocatorlETStringgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<TString,allocator<TString> >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgR = { "vector<vector<TString,allocator<TString> >,allocator<vector<TString,allocator<TString> > > >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<vector<TString,allocator<TString> >,allocator<vector<TString,allocator<TString> > > >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlEfileObjectcOallocatorlEfileObjectgRsPgR = { "vector<fileObject,allocator<fileObject> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlEfileObjectcOallocatorlEfileObjectgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<fileObject,allocator<fileObject> >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_drawcommand = { "drawcommand" , 115 , -1 };
-G__linked_taginfo G__onlineDictLN_OnlineConfig = { "OnlineConfig" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_pairlEunsignedsPintcOunsignedsPintgR = { "pair<unsigned int,unsigned int>" , 115 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgR = { "vector<pair<unsigned int,unsigned int>,allocator<pair<unsigned int,unsigned int> > >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<pair<unsigned int,unsigned int>,allocator<pair<unsigned int,unsigned int> > >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_vectorlETCutcOallocatorlETCutgRsPgR = { "vector<TCut,allocator<TCut> >" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_reverse_iteratorlEvectorlETCutcOallocatorlETCutgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<TCut,allocator<TCut> >::iterator>" , 99 , -1 };
-G__linked_taginfo G__onlineDictLN_OnlineGUI = { "OnlineGUI" , 99 , -1 };
-
-/* Reset class/struct taginfo */
-extern "C" void G__cpp_reset_tagtableonlineDict() {
-  G__onlineDictLN_TString.tagnum = -1 ;
-  G__onlineDictLN_vectorlEunsignedsPintcOallocatorlEunsignedsPintgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_basic_ifstreamlEcharcOchar_traitslEchargRsPgR.tagnum = -1 ;
-  G__onlineDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_TList.tagnum = -1 ;
-  G__onlineDictLN_TTimer.tagnum = -1 ;
-  G__onlineDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR.tagnum = -1 ;
-  G__onlineDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_TCut.tagnum = -1 ;
-  G__onlineDictLN_TQObjSender.tagnum = -1 ;
-  G__onlineDictLN_TGWindow.tagnum = -1 ;
-  G__onlineDictLN_pairlEunsignedsPintcOintgR.tagnum = -1 ;
-  G__onlineDictLN_vectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_TGTextButton.tagnum = -1 ;
-  G__onlineDictLN_TGVerticalFrame.tagnum = -1 ;
-  G__onlineDictLN_TGHorizontalFrame.tagnum = -1 ;
-  G__onlineDictLN_TGMainFrame.tagnum = -1 ;
-  G__onlineDictLN_TGPictureButton.tagnum = -1 ;
-  G__onlineDictLN_TGRadioButton.tagnum = -1 ;
-  G__onlineDictLN_TCanvas.tagnum = -1 ;
-  G__onlineDictLN_TRootEmbeddedCanvas.tagnum = -1 ;
-  G__onlineDictLN_TGLabel.tagnum = -1 ;
-  G__onlineDictLN_TVectorTlEfloatgR.tagnum = -1 ;
-  G__onlineDictLN_TVectorTlEdoublegR.tagnum = -1 ;
-  G__onlineDictLN_TMatrixTBaselEfloatgR.tagnum = -1 ;
-  G__onlineDictLN_TMatrixTBaselEdoublegR.tagnum = -1 ;
-  G__onlineDictLN_RootFileObject.tagnum = -1 ;
-  G__onlineDictLN_vectorlETTreemUcOallocatorlETTreemUgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlETTreemUcOallocatorlETTreemUgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_vectorlEintcOallocatorlEintgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlEintcOallocatorlEintgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_vectorlETStringcOallocatorlETStringgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlETStringcOallocatorlETStringgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_vectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_vectorlEfileObjectcOallocatorlEfileObjectgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlEfileObjectcOallocatorlEfileObjectgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_drawcommand.tagnum = -1 ;
-  G__onlineDictLN_OnlineConfig.tagnum = -1 ;
-  G__onlineDictLN_pairlEunsignedsPintcOunsignedsPintgR.tagnum = -1 ;
-  G__onlineDictLN_vectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_vectorlETCutcOallocatorlETCutgRsPgR.tagnum = -1 ;
-  G__onlineDictLN_reverse_iteratorlEvectorlETCutcOallocatorlETCutgRsPgRcLcLiteratorgR.tagnum = -1 ;
-  G__onlineDictLN_OnlineGUI.tagnum = -1 ;
-}
-
-
-extern "C" void G__cpp_setup_tagtableonlineDict() {
-
-   /* Setting up class,struct,union tag entry */
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TString);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlEunsignedsPintcOallocatorlEunsignedsPintgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_basic_ifstreamlEcharcOchar_traitslEchargRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TList);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TTimer);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TCut);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TQObjSender);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TGWindow);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_pairlEunsignedsPintcOintgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOintgRcOallocatorlEpairlEunsignedsPintcOintgRsPgRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TGTextButton);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TGVerticalFrame);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TGHorizontalFrame);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TGMainFrame);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TGPictureButton);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TGRadioButton);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TCanvas);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TRootEmbeddedCanvas);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TGLabel);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TVectorTlEfloatgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TVectorTlEdoublegR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TMatrixTBaselEfloatgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_TMatrixTBaselEdoublegR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_RootFileObject);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlETTreemUcOallocatorlETTreemUgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlETTreemUcOallocatorlETTreemUgRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlEintcOallocatorlEintgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlEintcOallocatorlEintgRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlETStringcOallocatorlETStringgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlETStringcOallocatorlETStringgRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlEvectorlETStringcOallocatorlETStringgRsPgRcOallocatorlEvectorlETStringcOallocatorlETStringgRsPgRsPgRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlEfileObjectcOallocatorlEfileObjectgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlEfileObjectcOallocatorlEfileObjectgRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_drawcommand);
-   G__tagtable_setup(G__get_linked_tagnum_fwd(&G__onlineDictLN_OnlineConfig),sizeof(OnlineConfig),-1,33024,(char*)NULL,G__setup_memvarOnlineConfig,G__setup_memfuncOnlineConfig);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_pairlEunsignedsPintcOunsignedsPintgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlEpairlEunsignedsPintcOunsignedsPintgRcOallocatorlEpairlEunsignedsPintcOunsignedsPintgRsPgRsPgRcLcLiteratorgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_vectorlETCutcOallocatorlETCutgRsPgR);
-   G__get_linked_tagnum_fwd(&G__onlineDictLN_reverse_iteratorlEvectorlETCutcOallocatorlETCutgRsPgRcLcLiteratorgR);
-   G__tagtable_setup(G__get_linked_tagnum_fwd(&G__onlineDictLN_OnlineGUI),sizeof(OnlineGUI),-1,33792,(char*)NULL,G__setup_memvarOnlineGUI,G__setup_memfuncOnlineGUI);
-}
-extern "C" void G__cpp_setuponlineDict(void) {
-  G__check_setup_version(30051515,"G__cpp_setuponlineDict()");
-  G__set_cpp_environmentonlineDict();
-  G__cpp_setup_tagtableonlineDict();
-
-  G__cpp_setup_inheritanceonlineDict();
-
-  G__cpp_setup_typetableonlineDict();
-
-  G__cpp_setup_memvaronlineDict();
-
-  G__cpp_setup_memfunconlineDict();
-  G__cpp_setup_globalonlineDict();
-  G__cpp_setup_funconlineDict();
-
-   if(0==G__getsizep2memfunc()) G__get_sizep2memfunconlineDict();
-  return;
-}
-class G__cpp_setup_initonlineDict {
-  public:
-    G__cpp_setup_initonlineDict() { G__add_setup_func("onlineDict",(G__incsetup)(&G__cpp_setuponlineDict)); G__call_setup_funcs(); }
-   ~G__cpp_setup_initonlineDict() { G__remove_setup_func("onlineDict"); }
-};
-G__cpp_setup_initonlineDict G__cpp_setup_initializeronlineDict;
-