diff --git a/scripts/rez_HB1A.py b/scripts/rez_HB1A.py
index ec13714..d6f427f 100644
--- a/scripts/rez_HB1A.py
+++ b/scripts/rez_HB1A.py
@@ -1,11 +1,30 @@
import matplotlib.pyplot as plt
from tavi.data.tavi import TAVI
+from tavi.instrument.resolution.cooper_nathans import CN
from tavi.plotter import Plot2D
+from tavi.sample.xtal import Xtal
+
+instrument_config_json_path = "./test_data/IPTS9879_HB1A_exp978/hb1a.json"
+tas = CN(SPICE_CONVENTION=True)
+tas.load_instrument_params_from_json(instrument_config_json_path)
+
+ei = 14.450292
+ef = ei
+R0 = False
+
+sample_json_path = "./test_data/IPTS9879_HB1A_exp978/si.json"
+sample = Xtal.from_json(sample_json_path)
+tas.mount_sample(sample)
+
+rez1_l = tas.cooper_nathans(hkl_list=(1, 1, 1), ei=ei, ef=ef, R0=R0, projection=((1, 1, 0), (0, 0, 1), (1, -1, 0)))
+rez1_l.plot_ellipses()
+# rez1_q = tas.cooper_nathans(hkl_list=(0, 0, 0.5), ei=ei, ef=ef, R0=R0, projection=None)
+# ----------------------- load data ----------------------------
tavi = TAVI()
-path_to_spice_folder = "./test_data/exp978/"
+path_to_spice_folder = "./test_data/IPTS9879_HB1A_exp978/exp978/"
tavi.load_spice_data_from_disk(path_to_spice_folder)
# -------------- Si (111) 40'-40'-40'-80' -----------------
@@ -21,7 +40,7 @@
p1 = Plot2D()
-p1.add_contour(si_111_1, cmap="turbo", vmin=0, vmax=1.2e4)
+p1.add_contour(si_111_1, cmap="turbo", vmin=0, vmax=2.5e4)
p1.title = sg1.name
p1.ylim = [0.97, 1.03]
p1.xlim = [0.97, 1.03]
@@ -44,7 +63,7 @@
p2 = Plot2D()
-p2.add_contour(si_111_2, cmap="turbo", vmin=0, vmax=1300)
+p2.add_contour(si_111_2, cmap="turbo", vmin=0, vmax=3500)
p2.title = sg2.name
# p2.ylim = [0.97, 1.03]
# p2.xlim = [0.97, 1.03]
diff --git a/src/tavi/data/fit.py b/src/tavi/data/fit.py
index fc4872e..b237c79 100644
--- a/src/tavi/data/fit.py
+++ b/src/tavi/data/fit.py
@@ -106,53 +106,31 @@ def add_background(
prefix = f"b{self._num_backgrounds}_"
self._background_models.append(Fit1D._add_model(model, prefix, nan_policy=self.nan_policy))
- @staticmethod
- def _get_param_names(models) -> list[list[str]]:
- params = []
- for model in models:
- params.append(model.param_names)
- return params
-
- @property
- def signal_param_names(self):
- """Get parameter names of all signals"""
- return Fit1D._get_param_names(self._signal_models)
-
- @property
- def background_param_names(self):
- """Get parameter names of all backgrounds"""
- return Fit1D._get_param_names(self._background_models)
+ # @staticmethod
+ # def _get_param_names(models) -> list[list[str]]:
+ # params = []
+ # for model in models:
+ # params.append(model.param_names)
+ # return params
+
+ # @property
+ # def signal_param_names(self):
+ # """Get parameter names of all signals"""
+ # return Fit1D._get_param_names(self._signal_models)
+
+ # @property
+ # def background_param_names(self):
+ # """Get parameter names of all backgrounds"""
+ # return Fit1D._get_param_names(self._background_models)
- # TODO
@property
- def params(self) -> dict[str, dict]:
+ def params(self) -> Parameters:
"""Get fitting parameters as a dictionary with the model prefix being the key"""
- all_pars = self.guess() if self._parameters is None else self._parameters
- params_names = Fit1D._get_param_names(self._signal_models + self._background_models)
-
- params_dict = {}
- for names in params_names:
- if len(names) < 1:
- raise ValueError(f"Should have at least 1 parameter in {names}.")
- prefix, _ = names[0].split("_")
- param_dict = {}
- for param_name in names:
- param = all_pars[param_name]
- param_dict.update(
- {
- "name": param.name,
- "value": param.value,
- "vary": param.vary,
- "min": param.min,
- "max": param.max,
- "expr": param.expr,
- }
- )
-
- params_dict.update({prefix: param_dict})
-
- return params_dict
+ if self._parameters is None:
+ self._parameters = self.guess()
+
+ return self._parameters
def guess(self) -> Parameters:
"""Guess fitting parameters' values
@@ -173,13 +151,18 @@ def model(self):
compposite_model = np.sum(self._signal_models + self._background_models)
return compposite_model
- def x_to_plot(self, num_of_pts: Optional[int] = 100):
- if num_of_pts is None:
- x_to_plot = self.x
- elif isinstance(num_of_pts, int):
- x_to_plot = np.linspace(self.x.min(), self.x.max(), num=num_of_pts)
- else:
- raise ValueError(f"num_of_points={num_of_pts} needs to be an integer.")
+ def x_to_plot(
+ self,
+ min: Optional[float] = None,
+ max: Optional[float] = None,
+ num_of_pts: int = 100,
+ ):
+ if min is None:
+ min = self.x.min()
+ if max is None:
+ max = self.x.max()
+ x_to_plot = np.linspace(min, max, num=num_of_pts)
+
return x_to_plot
def eval(self, pars: Parameters, x: np.ndarray) -> np.ndarray:
diff --git a/src/tavi/plotter.py b/src/tavi/plotter.py
index 219d5c4..1027ade 100644
--- a/src/tavi/plotter.py
+++ b/src/tavi/plotter.py
@@ -87,6 +87,7 @@ def _add_fit_from_fitting(self, fit_data: Fit1D, num_of_pts: Optional[int] = 100
for key, val in kwargs.items():
data.fmt.update({key: val})
+ # TODO
def add_fit(
self, fit_data: Union[tuple[np.ndarray, np.ndarray], Fit1D], num_of_pts: Optional[int] = 100, **kwargs
):
@@ -98,6 +99,7 @@ def add_fit(
else:
raise ValueError(f"Invalid input fit_data={fit_data}")
+ # TODO
def add_fit_components(self, fit_data: Fit1D, num_of_pts: Optional[int] = 100, **kwargs):
if isinstance(fit_data, Fit1D) and (result := fit_data.result) is not None:
x = fit_data.x_to_plot(num_of_pts)
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html b/test_data/Bi_CTAX/exp25/Calibration/index.html
new file mode 100644
index 0000000..b3267f4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html@C=D;O=A b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=D;O=A
new file mode 100644
index 0000000..aa7efc3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=D;O=A
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html@C=D;O=D b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=D;O=D
new file mode 100644
index 0000000..105ab60
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=D;O=D
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html@C=M;O=A b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=M;O=A
new file mode 100644
index 0000000..884e2dc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=M;O=A
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html@C=M;O=D b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=M;O=D
new file mode 100644
index 0000000..105ab60
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=M;O=D
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html@C=N;O=A b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=N;O=A
new file mode 100644
index 0000000..b3267f4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=N;O=A
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html@C=N;O=D b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=N;O=D
new file mode 100644
index 0000000..105ab60
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=N;O=D
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html@C=S;O=A b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=S;O=A
new file mode 100644
index 0000000..e23dbbc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=S;O=A
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/Bi_CTAX/exp25/Calibration/index.html@C=S;O=D b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=S;O=D
new file mode 100644
index 0000000..105ab60
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Calibration/index.html@C=S;O=D
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Calibration
+
+
+Index of /user_data/cg4c/exp25/Calibration
+
+
diff --git a/test_data/exp978/CountLog.txt b/test_data/Bi_CTAX/exp25/CountLog.txt
similarity index 100%
rename from test_data/exp978/CountLog.txt
rename to test_data/Bi_CTAX/exp25/CountLog.txt
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0001.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0001.dat
new file mode 100644
index 0000000..cefeb24
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0001.dat
@@ -0,0 +1,70 @@
+# scan = 1
+# date = 10/24/2011
+# time = 10:34:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_100518AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 376.000 23079.000 0.181 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 0.7246 0.7246 0.5449 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 56.2000 10.000 412.000 22656.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 0.7263 0.7263 0.5485 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 56.4000 10.000 359.000 22868.000 0.179 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 0.7280 0.7280 0.5521 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 56.6000 10.000 405.000 22821.000 0.179 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 0.7297 0.7297 0.5557 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 56.8000 10.000 369.000 22464.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 0.7314 0.7314 0.5593 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 57.0000 10.000 388.000 22642.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 0.7331 0.7331 0.5629 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 57.2000 10.000 389.000 22583.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 0.7347 0.7347 0.5665 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 57.4000 10.000 382.000 22422.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 0.7364 0.7364 0.5701 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 57.6000 10.000 390.000 22619.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 0.7380 0.7380 0.5738 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 57.8000 10.000 372.000 22635.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 0.7396 0.7396 0.5774 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 58.0000 10.000 403.000 22551.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 0.7413 0.7413 0.5811 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 58.2000 10.000 398.000 22446.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 0.7429 0.7429 0.5847 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 58.4000 10.000 383.000 22358.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 0.7445 0.7445 0.5884 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 58.6000 10.000 396.000 22248.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 0.7461 0.7461 0.5921 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 58.8000 10.000 443.000 22482.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 0.7477 0.7477 0.5958 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 59.0000 10.000 551.000 22341.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 0.7492 0.7492 0.5995 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 59.2000 10.000 916.000 22333.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 0.7508 0.7508 0.6032 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 59.4000 10.000 1202.000 22207.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 0.7524 0.7524 0.6069 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 59.6000 10.000 1554.000 22449.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 0.7539 0.7539 0.6106 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 59.8000 10.000 1489.000 22431.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5487 0.7554 0.7554 0.6143 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 60.0000 10.000 1328.000 22316.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5534 0.7570 0.7570 0.6181 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 22 60.2000 10.000 1101.000 22147.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5581 0.7585 0.7585 0.6218 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 23 60.4000 10.000 825.000 22463.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5628 0.7600 0.7600 0.6256 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 24 60.6000 10.000 698.000 22156.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5674 0.7615 0.7615 0.6293 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 25 60.8000 10.000 417.000 22418.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5721 0.7630 0.7630 0.6331 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 26 61.0000 10.000 375.000 22277.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5768 0.7645 0.7645 0.6368 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 27 61.2000 10.000 392.000 22465.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5815 0.7660 0.7660 0.6406 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 28 61.4000 10.000 413.000 22647.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5861 0.7674 0.7674 0.6444 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 29 61.6000 10.000 369.000 22484.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5908 0.7689 0.7689 0.6482 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 30 61.8000 10.000 366.000 22474.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5954 0.7703 0.7703 0.6520 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 31 62.0000 10.000 388.000 22251.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6001 0.7718 0.7718 0.6558 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 32 62.2000 10.000 366.000 22225.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6047 0.7732 0.7732 0.6596 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 33 62.4000 10.000 382.000 22398.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6094 0.7746 0.7746 0.6634 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 34 62.6000 10.000 397.000 22237.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6140 0.7760 0.7760 0.6673 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 35 62.8000 10.000 378.000 22460.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6186 0.7774 0.7774 0.6711 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 36 63.0000 10.000 384.000 22244.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6233 0.7788 0.7788 0.6749 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 20156
+# Center of Mass = 59.585721+/-0.593674
+# Full Width Half-Maximum = 3.484004+/-0.169856
+# 10:41:17 AM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0002.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0002.dat
new file mode 100644
index 0000000..ff27394
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0002.dat
@@ -0,0 +1,65 @@
+# scan = 2
+# date = 10/24/2011
+# time = 10:41:17 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan s2 67 73 0.2
+# builtin_command = scan s2 67 73 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1,0,0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_100518AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 67.0000 10.000 369.000 22635.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7147 0.8046 0.8046 0.7531 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 67.2000 10.000 374.000 22253.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7193 0.8058 0.8058 0.7571 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 67.4000 10.000 405.000 22290.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7238 0.8070 0.8070 0.7611 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 67.6000 10.000 338.000 22139.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7283 0.8081 0.8081 0.7651 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 67.8000 10.000 377.000 22387.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7328 0.8093 0.8093 0.7691 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 68.0000 10.000 367.000 22349.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7373 0.8104 0.8104 0.7731 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 68.2000 10.000 404.000 22244.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7418 0.8116 0.8116 0.7771 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 68.4000 10.000 422.000 22431.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7463 0.8127 0.8127 0.7811 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 68.6000 10.000 387.000 22569.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7507 0.8138 0.8138 0.7851 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 68.8000 10.000 422.000 22401.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7552 0.8149 0.8149 0.7891 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 69.0000 10.000 416.000 22409.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7597 0.8160 0.8160 0.7931 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 69.2000 10.000 472.000 22382.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7642 0.8171 0.8171 0.7972 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 69.4000 10.000 551.000 22396.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7686 0.8182 0.8182 0.8012 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 69.6000 10.000 633.000 22443.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7731 0.8193 0.8193 0.8053 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 69.8000 10.000 801.000 22384.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7775 0.8203 0.8203 0.8093 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 70.0000 10.000 973.000 22329.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7820 0.8214 0.8214 0.8134 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 70.2000 10.000 1034.000 22131.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7864 0.8224 0.8224 0.8174 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 70.4000 10.000 957.000 22173.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7908 0.8234 0.8234 0.8215 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 70.6000 10.000 778.000 22297.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7953 0.8245 0.8245 0.8255 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 70.8000 10.000 734.000 22610.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7997 0.8255 0.8255 0.8296 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 71.0000 10.000 563.000 22581.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8041 0.8265 0.8265 0.8337 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 22 71.2000 10.000 441.000 22235.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8085 0.8274 0.8274 0.8378 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 23 71.4000 10.000 406.000 22484.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8129 0.8284 0.8284 0.8419 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 24 71.6000 10.000 386.000 22302.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8173 0.8294 0.8294 0.8460 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 25 71.8000 10.000 414.000 22163.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8217 0.8304 0.8304 0.8500 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 26 72.0000 10.000 355.000 22367.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8261 0.8313 0.8313 0.8542 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 27 72.2000 10.000 352.000 22015.000 0.172 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8305 0.8322 0.8322 0.8583 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 28 72.4000 10.000 403.000 22365.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8349 0.8332 0.8332 0.8624 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 29 72.6000 10.000 371.000 22304.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8392 0.8341 0.8341 0.8665 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 30 72.8000 10.000 410.000 22090.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8436 0.8350 0.8350 0.8706 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 31 73.0000 10.000 409.000 22659.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 15724
+# Center of Mass = 70.056487+/-0.790200
+# Full Width Half-Maximum = 3.153882+/-0.253397
+# 10:47:09 AM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0003.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0003.dat
new file mode 100644
index 0000000..4600066
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0003.dat
@@ -0,0 +1,55 @@
+# scan = 3
+# date = 10/24/2011
+# time = 10:56:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel a1 -2 2 0.2
+# builtin_command = scan a1 @(a1)+-2 @(a1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration using polyethelyne sample, open-80 mode
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = a1
+# def_y = detector
+# col_headers =
+# Pt. a1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 140.9286 10.000 24.000 22398.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 141.1286 10.000 24.000 22734.000 0.178 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 141.3286 10.000 49.000 22389.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 141.5286 10.000 58.000 22469.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 141.7286 10.000 102.000 22247.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 141.9286 10.000 181.000 22420.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 142.1286 10.000 256.000 22338.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 142.3286 10.000 344.000 22488.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 142.5286 10.000 459.000 22318.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 142.7286 10.000 476.000 22753.000 0.178 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 142.9286 10.000 506.000 22354.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 143.1286 10.000 480.000 22209.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 143.3286 10.000 442.000 22433.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 143.5286 10.000 351.000 22388.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 143.7286 10.000 286.000 22466.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 143.9286 10.000 222.000 22197.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 144.1286 10.000 127.000 22523.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 144.3286 10.000 78.000 22319.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 144.5286 10.000 70.000 22483.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 144.7286 10.000 38.000 22532.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 144.9286 10.000 30.000 22077.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 4603
+# Center of Mass = 142.970312+/-2.980185
+# Full Width Half-Maximum = 1.471671+/-1.158943
+# 11:00:48 AM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0004.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0004.dat
new file mode 100644
index 0000000..95ca1fe
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0004.dat
@@ -0,0 +1,75 @@
+# scan = 4
+# date = 10/24/2011
+# time = 11:04:36 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel a2 -5 5 0.25
+# builtin_command = scan a2 @(a2)+-5 @(a2)+5 0.250000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration using polyethelyne sample, open-80 mode
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = a2
+# def_y = detector
+# col_headers =
+# Pt. a2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -79.1428 10.000 4.000 22394.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5045 0.2376 0.6493 1.5272 5.0000 4.4771 0.5229 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 -78.8928 10.000 2.000 22382.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5062 0.2383 0.6510 1.5235 5.0000 4.5009 0.4991 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 -78.6428 10.000 8.000 22334.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5080 0.2389 0.6527 1.5198 5.0000 4.5249 0.4751 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 -78.3928 10.000 11.000 22446.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5099 0.2395 0.6545 1.5160 5.0000 4.5491 0.4509 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 -78.1428 10.000 17.000 22518.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5117 0.2402 0.6562 1.5122 5.0000 4.5735 0.4265 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 -77.8928 10.000 26.000 22251.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5136 0.2408 0.6580 1.5084 5.0000 4.5982 0.4018 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 -77.6428 10.000 38.000 22378.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5154 0.2415 0.6598 1.5045 5.0000 4.6232 0.3768 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 -77.3928 10.000 70.000 22426.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5173 0.2421 0.6616 1.5007 5.0000 4.6484 0.3516 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 -77.1428 10.000 101.000 22434.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5193 0.2428 0.6634 1.4967 5.0000 4.6738 0.3262 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 -76.8928 10.000 149.000 22530.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5212 0.2435 0.6652 1.4928 5.0000 4.6995 0.3005 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 -76.6428 10.000 219.000 22453.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5232 0.2441 0.6670 1.4888 5.0000 4.7255 0.2745 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 -76.3928 10.000 258.000 22430.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5252 0.2448 0.6689 1.4849 5.0000 4.7517 0.2483 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 -76.1428 10.000 326.000 22331.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5272 0.2455 0.6707 1.4808 5.0000 4.7782 0.2218 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 -75.8928 10.000 359.000 22243.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5292 0.2462 0.6726 1.4768 5.0000 4.8049 0.1951 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 -75.6428 10.000 412.000 22179.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5313 0.2469 0.6745 1.4727 5.0000 4.8320 0.1680 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 -75.3928 10.000 441.000 22287.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5334 0.2476 0.6764 1.4686 5.0000 4.8593 0.1407 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 -75.1428 10.000 483.000 22200.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5355 0.2483 0.6783 1.4645 5.0000 4.8868 0.1132 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 -74.8928 10.000 471.000 22192.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5376 0.2490 0.6802 1.4603 5.0000 4.9147 0.0853 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 -74.6428 10.000 505.000 22430.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5398 0.2497 0.6822 1.4561 5.0000 4.9428 0.0572 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 -74.3928 10.000 482.000 22715.000 0.178 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5420 0.2504 0.6842 1.4519 5.0000 4.9713 0.0287 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 -74.1428 10.000 492.000 22632.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 22 -73.8928 10.000 509.000 22423.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5465 0.2519 0.6881 1.4433 5.0000 5.0290 -0.0290 301.5690 1.4000 0.0000 0.0000 300.000
+ 23 -73.6428 10.000 505.000 22389.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5487 0.2526 0.6901 1.4390 5.0000 5.0584 -0.0584 301.5690 1.4000 0.0000 0.0000 300.000
+ 24 -73.3928 10.000 518.000 22429.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5510 0.2533 0.6921 1.4346 5.0000 5.0880 -0.0880 301.5690 1.4000 0.0000 0.0000 300.000
+ 25 -73.1428 10.000 501.000 22181.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5533 0.2541 0.6942 1.4302 5.0000 5.1179 -0.1179 301.5690 1.4000 0.0000 0.0000 300.000
+ 26 -72.8928 10.000 442.000 22372.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5557 0.2548 0.6962 1.4258 5.0000 5.1482 -0.1482 301.5690 1.4000 0.0000 0.0000 300.000
+ 27 -72.6428 10.000 403.000 22118.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5581 0.2556 0.6983 1.4213 5.0000 5.1788 -0.1788 301.5690 1.4000 0.0000 0.0000 300.000
+ 28 -72.3928 10.000 329.000 22605.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5605 0.2564 0.7004 1.4168 5.0000 5.2097 -0.2097 301.5690 1.4000 0.0000 0.0000 300.000
+ 29 -72.1428 10.000 305.000 22475.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5629 0.2571 0.7025 1.4123 5.0000 5.2409 -0.2409 301.5690 1.4000 0.0000 0.0000 300.000
+ 30 -71.8928 10.000 244.000 22478.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5654 0.2579 0.7046 1.4077 5.0000 5.2725 -0.2725 301.5690 1.4000 0.0000 0.0000 300.000
+ 31 -71.6428 10.000 187.000 22569.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5679 0.2587 0.7067 1.4031 5.0000 5.3043 -0.3043 301.5690 1.4000 0.0000 0.0000 300.000
+ 32 -71.3928 10.000 146.000 22283.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5704 0.2595 0.7088 1.3985 5.0000 5.3366 -0.3366 301.5690 1.4000 0.0000 0.0000 300.000
+ 33 -71.1428 10.000 83.000 22228.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5730 0.2602 0.7110 1.3938 5.0000 5.3692 -0.3692 301.5690 1.4000 0.0000 0.0000 300.000
+ 34 -70.8928 10.000 68.000 22275.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5756 0.2610 0.7132 1.3891 5.0000 5.4021 -0.4021 301.5690 1.4000 0.0000 0.0000 300.000
+ 35 -70.6428 10.000 42.000 22413.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5782 0.2618 0.7154 1.3844 5.0000 5.4354 -0.4354 301.5690 1.4000 0.0000 0.0000 300.000
+ 36 -70.3928 10.000 19.000 22326.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5808 0.2627 0.7176 1.3796 5.0000 5.4690 -0.4690 301.5690 1.4000 0.0000 0.0000 300.000
+ 37 -70.1428 10.000 11.000 22521.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5835 0.2635 0.7198 1.3748 5.0000 5.5031 -0.5031 301.5690 1.4000 0.0000 0.0000 300.000
+ 38 -69.8928 10.000 7.000 22285.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5862 0.2643 0.7221 1.3700 5.0000 5.5374 -0.5374 301.5690 1.4000 0.0000 0.0000 300.000
+ 39 -69.6428 10.000 6.000 22278.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5890 0.2651 0.7243 1.3651 5.0000 5.5722 -0.5722 301.5690 1.4000 0.0000 0.0000 300.000
+ 40 -69.3928 10.000 6.000 22375.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5918 0.2660 0.7266 1.3602 5.0000 5.6074 -0.6074 301.5690 1.4000 0.0000 0.0000 300.000
+ 41 -69.1428 10.000 4.000 22498.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5946 0.2668 0.7289 1.3552 5.0000 5.6429 -0.6429 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 9209
+# Center of Mass = -74.172146+/-1.093199
+# Full Width Half-Maximum = 3.172024+/-0.355746
+# 11:12:27 AM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0005.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0005.dat
new file mode 100644
index 0000000..b2fab47
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0005.dat
@@ -0,0 +1,67 @@
+# scan = 5
+# date = 10/24/2011
+# time = 11:15:13 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan ei 4.2 5.8 0.05
+# builtin_command = scan ei 4.2 5.8 0.05
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration using polyethelyne sample, open-80 mode
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 15.000000
+# def_x = ei
+# def_y = detector
+# col_headers =
+# Pt. ei time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q h k l ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 4.2000 15.000 39.000 35117.000 0.275 105.2242 138.8738 -82.2523 0.6500 0.0000 36.6200 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4840 0.2511 0.6861 1.2030 5.0000 -0.8000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 4.2500 15.000 29.000 35012.000 0.274 104.6188 139.1683 -81.6633 0.6500 0.0000 36.5160 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4877 0.2511 0.6861 1.2189 5.0000 -0.7500 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 4.3000 15.000 39.000 35464.000 0.278 103.9973 139.4564 -81.0872 0.6500 0.0000 36.4080 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4913 0.2511 0.6861 1.2348 5.0000 -0.7000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 4.3500 15.000 34.000 35012.000 0.274 103.4059 139.7383 -80.5234 0.6500 0.0000 36.3040 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4950 0.2511 0.6861 1.2505 5.0000 -0.6500 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 4.4000 15.000 39.000 35430.000 0.277 102.8211 140.0142 -79.9715 0.6500 0.0000 36.2000 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4987 0.2511 0.6861 1.2662 5.0000 -0.6000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 4.4500 15.000 34.000 35418.000 0.277 102.2429 140.2844 -79.4312 0.6500 0.0000 36.0960 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5024 0.2511 0.6861 1.2818 5.0000 -0.5500 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 4.5000 15.000 38.000 36316.000 0.284 101.6712 140.5490 -78.9019 0.6500 0.0000 35.9920 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5062 0.2511 0.6861 1.2972 5.0000 -0.5000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 4.5500 15.000 46.000 36111.000 0.283 101.1058 140.8084 -78.3833 0.6500 0.0000 35.8880 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5099 0.2511 0.6861 1.3126 5.0000 -0.4500 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 4.6000 15.000 45.000 36330.000 0.284 100.5466 141.0625 -77.8751 0.6500 0.0000 35.7840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5137 0.2511 0.6861 1.3280 5.0000 -0.4000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 4.6500 15.000 52.000 36650.000 0.287 100.0148 141.3116 -77.3768 0.6500 0.0000 35.6840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5175 0.2511 0.6861 1.3432 5.0000 -0.3500 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 4.7000 15.000 51.000 36389.000 0.285 99.4886 141.5559 -76.8882 0.6500 0.0000 35.5840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5212 0.2511 0.6861 1.3583 5.0000 -0.3000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 4.7500 15.000 72.000 36572.000 0.286 98.9472 141.7955 -76.4090 0.6500 0.0000 35.4800 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5250 0.2511 0.6861 1.3734 5.0000 -0.2500 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 4.8000 15.000 138.000 36993.000 0.290 98.4321 142.0306 -75.9388 0.6500 0.0000 35.3800 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5289 0.2511 0.6861 1.3884 5.0000 -0.2000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 4.8500 15.000 359.000 36327.000 0.284 97.9224 142.2614 -75.4773 0.6500 0.0000 35.2800 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5327 0.2511 0.6861 1.4033 5.0000 -0.1500 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 4.9000 15.000 671.000 35461.000 0.278 97.4379 142.4878 -75.0243 0.6500 0.0000 35.1840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5365 0.2511 0.6861 1.4181 5.0000 -0.1000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 4.9500 15.000 813.000 34311.000 0.269 96.9384 142.7102 -74.5796 0.6500 0.0000 35.0840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5404 0.2511 0.6861 1.4329 5.0000 -0.0500 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 5.0000 15.000 713.000 33574.000 0.263 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 5.0500 15.000 700.000 32909.000 0.258 95.9741 143.1431 -73.7137 0.6500 0.0000 34.8880 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5481 0.2511 0.6861 1.4622 5.0000 0.0500 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 5.1000 15.000 611.000 32395.000 0.254 95.5087 143.3539 -73.2922 0.6500 0.0000 34.7920 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5520 0.2511 0.6861 1.4767 5.0000 0.1000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 5.1500 15.000 476.000 32898.000 0.258 95.0287 143.5610 -72.8779 0.6500 0.0000 34.6920 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5558 0.2511 0.6861 1.4912 5.0000 0.1500 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 5.2000 15.000 342.000 33418.000 0.262 94.5724 143.7646 -72.4708 0.6500 0.0000 34.5960 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5597 0.2511 0.6861 1.5056 5.0000 0.2000 301.5690 1.4000 0.0000 0.0000 300.000
+ 22 5.2500 15.000 197.000 34041.000 0.267 94.1205 143.9648 -72.0704 0.6500 0.0000 34.5000 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5636 0.2511 0.6861 1.5199 5.0000 0.2500 301.5690 1.4000 0.0000 0.0000 300.000
+ 23 5.3000 15.000 121.000 33986.000 0.266 93.6729 144.1616 -71.6767 0.6500 0.0000 34.4040 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5675 0.2511 0.6861 1.5342 5.0000 0.3000 301.5690 1.4000 0.0000 0.0000 300.000
+ 24 5.3500 15.000 89.000 34081.000 0.267 93.2479 144.3552 -71.2896 0.6500 0.0000 34.3120 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5715 0.2511 0.6861 1.5484 5.0000 0.3500 301.5690 1.4000 0.0000 0.0000 300.000
+ 25 5.4000 15.000 67.000 34284.000 0.268 92.8086 144.5457 -70.9087 0.6500 0.0000 34.2160 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5754 0.2511 0.6861 1.5625 5.0000 0.4000 301.5690 1.4000 0.0000 0.0000 300.000
+ 26 5.4500 15.000 49.000 34074.000 0.267 92.3733 144.7330 -70.5340 0.6500 0.0000 34.1200 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5793 0.2511 0.6861 1.5766 5.0000 0.4500 301.5690 1.4000 0.0000 0.0000 300.000
+ 27 5.5000 15.000 43.000 33960.000 0.266 91.9600 144.9174 -70.1652 0.6500 0.0000 34.0280 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5833 0.2511 0.6861 1.5906 5.0000 0.5000 301.5690 1.4000 0.0000 0.0000 300.000
+ 28 5.5500 15.000 61.000 34344.000 0.269 91.5504 145.0989 -69.8022 0.6500 0.0000 33.9360 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5872 0.2511 0.6861 1.6045 5.0000 0.5500 301.5690 1.4000 0.0000 0.0000 300.000
+ 29 5.6000 15.000 46.000 34170.000 0.268 91.1444 145.2776 -69.4449 0.6500 0.0000 33.8440 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5912 0.2511 0.6861 1.6184 5.0000 0.6000 301.5690 1.4000 0.0000 0.0000 300.000
+ 30 5.6500 15.000 40.000 34641.000 0.271 90.7246 145.4534 -69.0931 0.6500 0.0000 33.7480 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5951 0.2511 0.6861 1.6322 5.0000 0.6500 301.5690 1.4000 0.0000 0.0000 300.000
+ 31 5.7000 15.000 45.000 35106.000 0.275 90.3259 145.6266 -68.7467 0.6500 0.0000 33.6560 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5991 0.2511 0.6861 1.6459 5.0000 0.7000 301.5690 1.4000 0.0000 0.0000 300.000
+ 32 5.7500 15.000 37.000 35163.000 0.275 89.9478 145.7972 -68.4055 0.6500 0.0000 33.5680 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6031 0.2511 0.6861 1.6596 5.0000 0.7500 301.5690 1.4000 0.0000 0.0000 300.000
+ 33 5.8000 15.000 42.000 35468.000 0.278 89.5558 145.9653 -68.0694 0.6500 0.0000 33.4760 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6070 0.2511 0.6861 1.6733 5.0000 0.8000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 6178
+# Center of Mass = 5.025915+/-0.090483
+# Full Width Half-Maximum = 0.494804+/-0.025573
+# 11:29:06 AM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0006.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0006.dat
new file mode 100644
index 0000000..ac170ba
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0006.dat
@@ -0,0 +1,35 @@
+# scan = 6
+# date = 10/24/2011
+# time = 11:39:01 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 15.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 35.0000 3.315 2710.000 7424.000 0.058 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2973 0.8123 -0.2198 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 2710
+# Center of Mass = 35.000000+/-0.950820
+# Full Width Half-Maximum = 0.000000+/-NaN
+# 11:39:06 AM 10/24/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0007.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0007.dat
new file mode 100644
index 0000000..751a087
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0007.dat
@@ -0,0 +1,55 @@
+# scan = 7
+# date = 10/24/2011
+# time = 11:39:14 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 35.0000 1.000 854.000 2285.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2973 0.8123 -0.2198 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 35.1000 1.000 1053.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2973 0.8122 -0.2251 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 35.2000 1.000 1535.000 2305.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2973 0.8121 -0.2303 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 35.3000 1.000 2534.000 2308.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2972 0.8120 -0.2355 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 35.4000 1.000 4239.000 2078.000 0.016 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2972 0.8119 -0.2407 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 35.5000 1.000 7392.000 2240.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2971 0.8118 -0.2459 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 35.6000 1.000 13696.000 2231.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2971 0.8117 -0.2512 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 35.7000 1.000 24550.000 2253.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2970 0.8115 -0.2564 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 35.8000 1.000 42713.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2970 0.8114 -0.2616 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 35.9000 1.000 65658.000 2318.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2970 0.8113 -0.2668 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 36.0000 1.000 83217.000 2213.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2969 0.8112 -0.2720 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 36.1000 1.000 87382.000 2203.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2969 0.8110 -0.2772 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 36.2000 1.000 79484.000 2203.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2968 0.8109 -0.2825 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 36.3000 1.000 57339.000 2278.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2968 0.8108 -0.2877 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 36.4000 1.000 28781.000 2295.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2967 0.8106 -0.2929 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 36.5000 1.000 12576.000 2315.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2967 0.8105 -0.2981 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 36.6000 1.000 5800.000 2247.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2966 0.8103 -0.3033 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 36.7000 1.000 3474.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2966 0.8102 -0.3085 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 36.8000 1.000 2464.000 2262.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2965 0.8100 -0.3137 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 36.9000 1.000 1731.000 2248.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2964 0.8099 -0.3189 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 37.0000 1.000 1338.000 2282.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2964 0.8097 -0.3241 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 527810
+# Center of Mass = 36.059531+/-0.070194
+# Full Width Half-Maximum = 0.531463+/-0.029750
+# 11:39:47 AM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0008.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0008.dat
new file mode 100644
index 0000000..0bcdc61
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0008.dat
@@ -0,0 +1,51 @@
+# scan = 8
+# date = 10/24/2011
+# time = 11:40:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel sgl -4 4 0.5
+# builtin_command = scan sgl @(sgl)+-4 @(sgl)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 1751.000 2286.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3734 0.7525 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 -3.5000 1.000 8587.000 2254.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3640 0.7600 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 -3.0000 1.000 17082.000 2183.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3545 0.7675 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 -2.5000 1.000 28780.000 2154.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3449 0.7749 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 -2.0000 1.000 42528.000 2228.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3354 0.7823 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 -1.5000 1.000 55166.000 2234.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3258 0.7896 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 -1.0000 1.000 65015.000 2217.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3162 0.7968 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 -0.5000 1.000 75999.000 2281.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3065 0.8040 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 0.0000 1.000 87733.000 2198.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2969 0.8111 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 0.5000 1.000 99428.000 2209.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2872 0.8181 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 1.0000 1.000 108331.000 2328.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2775 0.8251 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 1.5000 1.000 112513.000 2126.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2678 0.8320 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 2.0000 1.000 113855.000 2263.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2580 0.8389 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 2.5000 1.000 113332.000 2292.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2483 0.8457 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 3.0000 1.000 109205.000 2186.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2385 0.8524 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 3.5000 1.000 102632.000 2210.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2287 0.8591 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 4.0000 1.000 92936.000 2177.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2189 0.8657 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 1234873
+# Center of Mass = 1.186641+/-0.002270
+# Full Width Half-Maximum = 3.768106+/-0.003266
+# 11:41:21 AM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0009.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0009.dat
new file mode 100644
index 0000000..57a4c27
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0009.dat
@@ -0,0 +1,55 @@
+# scan = 9
+# date = 10/24/2011
+# time = 11:41:41 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.5950 35.0636 1.000 30.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5439 0.2504 0.8142 -0.2672 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 59.7950 35.1636 1.000 48.000 2253.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5486 0.2512 0.8167 -0.2681 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 59.9950 35.2636 1.000 100.000 2236.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5533 0.2520 0.8192 -0.2689 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 60.1950 35.3636 1.000 391.000 2254.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5580 0.2527 0.8216 -0.2697 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 60.3950 35.4636 1.000 1676.000 2191.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5626 0.2535 0.8241 -0.2705 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 60.5950 35.5636 1.000 7555.000 2257.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5673 0.2542 0.8266 -0.2713 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 60.7950 35.6636 1.000 27471.000 2218.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5720 0.2550 0.8290 -0.2721 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 60.9950 35.7636 1.000 63957.000 2286.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5767 0.2558 0.8315 -0.2729 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 61.1950 35.8636 1.000 97367.000 2362.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5814 0.2565 0.8340 -0.2737 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 61.3950 35.9636 1.000 117023.000 2283.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5860 0.2573 0.8364 -0.2745 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 61.5950 36.0636 1.000 114667.000 2243.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2580 0.8389 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 61.7950 36.1636 1.000 86483.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5953 0.2588 0.8413 -0.2761 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 61.9950 36.2636 1.000 44097.000 2298.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6000 0.2595 0.8438 -0.2770 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 62.1950 36.3636 1.000 15004.000 2288.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6046 0.2603 0.8462 -0.2778 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 62.3950 36.4636 1.000 3922.000 2222.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6093 0.2610 0.8487 -0.2786 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 62.5950 36.5636 1.000 849.000 2266.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6139 0.2618 0.8511 -0.2794 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 62.7950 36.6636 1.000 213.000 2232.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6185 0.2625 0.8536 -0.2802 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 62.9950 36.7636 1.000 63.000 2250.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6232 0.2633 0.8560 -0.2810 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 63.1950 36.8636 1.000 25.000 2156.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6278 0.2640 0.8585 -0.2818 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 63.3950 36.9636 1.000 5.000 2191.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6324 0.2648 0.8609 -0.2826 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 63.5950 37.0636 1.000 6.000 2166.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6370 0.2655 0.8633 -0.2834 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 580952
+# Center of Mass = 61.449044+/-0.114016
+# Full Width Half-Maximum = 0.740155+/-0.065025
+# 11:42:31 AM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0010.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0010.dat
new file mode 100644
index 0000000..3fa9c82
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0010.dat
@@ -0,0 +1,55 @@
+# scan = 10
+# date = 10/24/2011
+# time = 12:14:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0.5 0 2) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -7.4864 1.000 89.000 2224.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5115 0.0000 1.9734 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 -7.3864 1.000 123.000 2293.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5104 0.0000 1.9761 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 -7.2864 1.000 209.000 2252.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5092 0.0000 1.9788 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 -7.1864 1.000 303.000 2223.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5081 0.0000 1.9814 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 -7.0864 1.000 522.000 2238.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5069 0.0000 1.9841 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 -6.9864 1.000 1014.000 2200.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5058 0.0000 1.9868 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 -6.8864 1.000 1882.000 2231.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5046 0.0000 1.9894 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 -6.7864 1.000 3114.000 2321.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5035 0.0000 1.9921 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 -6.6864 1.000 5677.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5023 0.0000 1.9947 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 -6.5864 1.000 9074.000 2282.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5012 0.0000 1.9974 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 -6.4864 1.000 12473.000 2209.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 -6.3864 1.000 14317.000 2174.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4988 0.0000 2.0026 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 -6.2864 1.000 10700.000 2271.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4977 0.0000 2.0052 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 -6.1864 1.000 4977.000 2310.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4965 0.0000 2.0079 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 -6.0864 1.000 1923.000 2245.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4954 0.0000 2.0105 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 -5.9864 1.000 909.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4942 0.0000 2.0131 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 -5.8864 1.000 512.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4930 0.0000 2.0157 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 -5.7864 1.000 340.000 2193.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4919 0.0000 2.0183 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 -5.6864 1.000 237.000 2211.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4907 0.0000 2.0208 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 -5.5864 1.000 177.000 2291.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4895 0.0000 2.0234 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 -5.4864 1.000 150.000 2227.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4883 0.0000 2.0260 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 68722
+# Center of Mass = -6.454335+/-0.034832
+# Full Width Half-Maximum = 0.487963+/-0.014814
+# 12:14:49 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0011.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0011.dat
new file mode 100644
index 0000000..1495c17
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0011.dat
@@ -0,0 +1,55 @@
+# scan = 11
+# date = 10/24/2011
+# time = 12:17:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0.5 0 2) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 2.9963 1.000 2.000 2282.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5144 0.0000 2.4733 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 3.0963 1.000 2.000 2295.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5130 0.0000 2.4760 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 3.1963 1.000 3.000 2180.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5115 0.0000 2.4787 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 3.2963 1.000 4.000 2277.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5101 0.0000 2.4814 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 3.3963 1.000 5.000 2287.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5087 0.0000 2.4841 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 3.4963 1.000 6.000 2209.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5072 0.0000 2.4868 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 3.5963 1.000 3.000 2282.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5058 0.0000 2.4894 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 3.6963 1.000 5.000 2263.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5043 0.0000 2.4921 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 3.7963 1.000 5.000 2277.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5029 0.0000 2.4947 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 3.8963 1.000 3.000 2224.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5014 0.0000 2.4974 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 3.9963 1.000 5.000 2290.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5000 0.0000 2.5000 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 4.0963 1.000 1.000 2143.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4986 0.0000 2.5026 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 4.1963 1.000 1.000 2304.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4971 0.0000 2.5052 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 4.2963 1.000 2.000 2214.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4956 0.0000 2.5079 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 4.3963 1.000 2.000 2236.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4942 0.0000 2.5105 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 4.4963 1.000 3.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4927 0.0000 2.5131 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 4.5963 1.000 3.000 2250.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4913 0.0000 2.5156 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 4.6963 1.000 2.000 2272.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4898 0.0000 2.5182 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 4.7963 1.000 3.000 2235.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4884 0.0000 2.5208 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 4.8963 1.000 3.000 2209.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4869 0.0000 2.5234 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 4.9963 1.000 2.000 2253.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4854 0.0000 2.5259 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 65
+# Center of Mass = 3.911685+/-0.689802
+# Full Width Half-Maximum = 1.142322+/-0.321263
+# 12:17:44 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0012.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0012.dat
new file mode 100644
index 0000000..5698e5d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0012.dat
@@ -0,0 +1,75 @@
+# scan = 12
+# date = 10/24/2011
+# time = 2:37:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -2 2 0.1
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.0000 1.000 149.000 2352.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0665 0.0401 2.9868 5.0000 5.0000 0.0000 297.1750 296.6180 301.0190 294.1250 300.000
+ 2 31.1000 1.000 186.000 2350.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0648 0.0401 2.9873 5.0000 5.0000 0.0000 297.1820 296.6200 301.0400 294.0610 300.000
+ 3 31.2000 1.000 195.000 2397.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0630 0.0401 2.9877 5.0000 5.0000 0.0000 297.1820 296.6190 301.0610 294.1970 300.000
+ 4 31.3000 1.000 217.000 2297.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0613 0.0401 2.9881 5.0000 5.0000 0.0000 297.1870 296.6210 301.0770 294.1520 300.000
+ 5 31.4000 1.000 216.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0596 0.0401 2.9886 5.0000 5.0000 0.0000 297.1890 296.6220 301.0890 294.2150 300.000
+ 6 31.5000 1.000 324.000 2330.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0578 0.0401 2.9890 5.0000 5.0000 0.0000 297.1910 296.6220 301.1010 294.2820 300.000
+ 7 31.6000 1.000 326.000 2360.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0561 0.0401 2.9894 5.0000 5.0000 0.0000 297.1940 296.6240 301.1120 294.3030 300.000
+ 8 31.7000 1.000 348.000 2346.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0544 0.0401 2.9898 5.0000 5.0000 0.0000 297.2010 296.6270 301.1180 294.2120 300.000
+ 9 31.8000 1.000 407.000 2340.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0526 0.0401 2.9902 5.0000 5.0000 0.0000 297.2040 296.6280 301.1260 294.2420 300.000
+ 10 31.9000 1.000 471.000 2315.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0509 0.0401 2.9905 5.0000 5.0000 0.0000 297.2080 296.6300 301.1330 294.2510 300.000
+ 11 32.0000 1.000 615.000 2270.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0492 0.0401 2.9909 5.0000 5.0000 0.0000 297.2100 296.6300 301.1360 294.3000 300.000
+ 12 32.1000 1.000 716.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0474 0.0401 2.9913 5.0000 5.0000 0.0000 297.2140 296.6320 301.1370 294.2930 300.000
+ 13 32.2000 1.000 953.000 2388.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0457 0.0401 2.9916 5.0000 5.0000 0.0000 297.2190 296.6350 301.1390 294.2470 300.000
+ 14 32.3000 1.000 1299.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0440 0.0401 2.9920 5.0000 5.0000 0.0000 297.2200 296.6350 301.1410 294.3160 300.000
+ 15 32.4000 1.000 1645.000 2323.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0422 0.0401 2.9923 5.0000 5.0000 0.0000 297.2250 296.6370 301.1380 294.2920 300.000
+ 16 32.5000 1.000 2284.000 2346.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0405 0.0401 2.9926 5.0000 5.0000 0.0000 297.2280 296.6380 301.1360 294.3440 300.000
+ 17 32.6000 1.000 3569.000 2359.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0388 0.0401 2.9929 5.0000 5.0000 0.0000 297.2330 296.6400 301.1310 294.2950 300.000
+ 18 32.7000 1.000 6293.000 2427.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0370 0.0401 2.9932 5.0000 5.0000 0.0000 297.2380 296.6420 301.1240 294.2420 300.000
+ 19 32.8000 1.000 13057.000 2268.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0353 0.0401 2.9935 5.0000 5.0000 0.0000 297.2420 296.6440 301.1180 294.2340 300.000
+ 20 32.9000 1.000 30044.000 2260.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0336 0.0401 2.9938 5.0000 5.0000 0.0000 297.2440 296.6440 301.1110 294.3160 300.000
+ 21 33.0000 1.000 55587.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0318 0.0401 2.9941 5.0000 5.0000 0.0000 297.2460 296.6450 301.1010 294.3600 300.000
+ 22 33.1000 1.000 76345.000 2363.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0301 0.0401 2.9944 5.0000 5.0000 0.0000 297.2490 296.6470 301.0900 294.3550 300.000
+ 23 33.2000 1.000 85243.000 2313.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0284 0.0401 2.9946 5.0000 5.0000 0.0000 297.2530 296.6490 301.0820 294.3080 300.000
+ 24 33.3000 1.000 75607.000 2281.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0266 0.0401 2.9949 5.0000 5.0000 0.0000 297.2550 296.6500 301.0710 294.3570 300.000
+ 25 33.4000 1.000 50622.000 2373.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0249 0.0401 2.9951 5.0000 5.0000 0.0000 297.2570 296.6500 301.0600 294.3780 300.000
+ 26 33.5000 1.000 25086.000 2341.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0232 0.0401 2.9953 5.0000 5.0000 0.0000 297.2610 296.6520 301.0490 294.3670 300.000
+ 27 33.6000 1.000 11087.000 2244.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0214 0.0401 2.9956 5.0000 5.0000 0.0000 297.2660 296.6540 301.0320 294.3100 300.000
+ 28 33.7000 1.000 5148.000 2331.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0197 0.0401 2.9958 5.0000 5.0000 0.0000 297.2690 296.6560 301.0180 294.3010 300.000
+ 29 33.8000 1.000 2988.000 2393.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0180 0.0401 2.9960 5.0000 5.0000 0.0000 297.2730 296.6570 301.0050 294.3080 300.000
+ 30 33.9000 1.000 1823.000 2399.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0162 0.0401 2.9962 5.0000 5.0000 0.0000 297.2760 296.6580 300.9970 294.3560 300.000
+ 31 34.0000 1.000 1300.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0145 0.0401 2.9964 5.0000 5.0000 0.0000 297.2790 296.6590 300.9860 294.3690 300.000
+ 32 34.1000 1.000 946.000 2339.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0128 0.0400 2.9965 5.0000 5.0000 0.0000 297.2800 296.6600 300.9700 294.4100 300.000
+ 33 34.2000 1.000 751.000 2326.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0110 0.0400 2.9967 5.0000 5.0000 0.0000 297.2830 296.6620 300.9550 294.3820 300.000
+ 34 34.3000 1.000 596.000 2363.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0093 0.0400 2.9969 5.0000 5.0000 0.0000 297.2850 296.6630 300.9390 294.4200 300.000
+ 35 34.4000 1.000 468.000 2328.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0076 0.0400 2.9970 5.0000 5.0000 0.0000 297.2870 296.6640 300.9220 294.4730 300.000
+ 36 34.5000 1.000 377.000 2325.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0058 0.0400 2.9972 5.0000 5.0000 0.0000 297.2890 296.6650 300.9040 294.4600 300.000
+ 37 34.6000 1.000 264.000 2170.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0041 0.0400 2.9973 5.0000 5.0000 0.0000 297.2920 296.6670 300.8830 294.4400 300.000
+ 38 34.7000 1.000 243.000 2340.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0024 0.0400 2.9974 5.0000 5.0000 0.0000 297.2950 296.6680 300.8590 294.4280 300.000
+ 39 34.8000 1.000 207.000 2342.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0006 0.0400 2.9975 5.0000 5.0000 0.0000 297.2970 296.6690 300.8390 294.4700 300.000
+ 40 34.9000 1.000 161.000 2374.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0011 0.0400 2.9976 5.0000 5.0000 0.0000 297.2990 296.6700 300.8180 294.4700 300.000
+ 41 35.0000 1.000 166.000 2264.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0028 0.0400 2.9977 5.0000 5.0000 0.0000 297.3020 296.6710 300.7990 294.4630 300.000
+# Sum of Counts = 458329
+# Center of Mass = 33.182004+/-0.069317
+# Full Width Half-Maximum = 0.601226+/-0.024001
+# 2:39:07 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0013.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0013.dat
new file mode 100644
index 0000000..7f785df
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0013.dat
@@ -0,0 +1,48 @@
+# scan = 13
+# date = 10/24/2011
+# time = 2:39:33 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel sgl -4 4 0.5
+# builtin_command = scan sgl @(sgl)+-4 @(sgl)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 113013.000 2260.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0119 0.1200 2.9801 5.0000 5.0000 0.0000 297.3920 296.7130 300.1450 292.8870 300.000
+ 2 -3.5000 1.000 119076.000 2348.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0068 0.1101 2.9827 5.0000 5.0000 0.0000 297.4130 296.7150 300.0780 292.4000 300.000
+ 3 -3.0000 1.000 122225.000 2287.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0018 0.1001 2.9851 5.0000 5.0000 0.0000 297.4130 296.7160 300.0280 292.4440 300.000
+ 4 -2.5000 1.000 121463.000 2250.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0033 0.0901 2.9872 5.0000 5.0000 0.0000 297.4150 296.7190 299.9800 292.5650 300.000
+ 5 -2.0000 1.000 118967.000 2218.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0084 0.0801 2.9891 5.0000 5.0000 0.0000 297.4200 296.7210 299.9290 292.7360 300.000
+ 6 -1.5000 1.000 114379.000 2327.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0134 0.0701 2.9908 5.0000 5.0000 0.0000 297.4190 296.7230 299.8680 292.7030 300.000
+ 7 -1.0000 1.000 105385.000 2273.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0185 0.0601 2.9923 5.0000 5.0000 0.0000 297.4240 296.7240 299.8300 292.4910 300.000
+ 8 -0.4999 1.000 96327.000 2326.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0235 0.0501 2.9936 5.0000 5.0000 0.0000 297.4260 296.7240 299.7860 292.4170 300.000
+ 9 0.0000 1.000 85262.000 2265.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0285 0.0401 2.9946 5.0000 5.0000 0.0000 297.4250 296.7240 299.7510 292.5380 300.000
+ 10 0.5000 1.000 73826.000 2276.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0336 0.0301 2.9954 5.0000 5.0000 0.0000 297.4240 296.7240 299.7020 292.5740 300.000
+ 11 1.0000 1.000 63085.000 2362.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0386 0.0200 2.9960 5.0000 5.0000 0.0000 297.4230 296.7260 299.6550 292.4720 300.000
+ 12 1.5000 1.000 50105.000 2287.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0436 0.0100 2.9963 5.0000 5.0000 0.0000 297.4360 296.7290 299.5990 292.2520 300.000
+ 13 2.0000 1.000 33237.000 2304.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0486 0.0000 2.9964 5.0000 5.0000 0.0000 297.4340 296.7300 299.5590 292.4340 300.000
+ 14 2.6906 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0556 -0.0138 2.9962 5.0000 5.0000 0.0000 297.4310 296.7320 299.5220 292.5400 300.000
+# Sum of Counts = 1216350
+# Center of Mass = -1.529627+/-0.002488
+# Full Width Half-Maximum = 3.378042+/-0.002990
+# 2:40:34 PM 10/24/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0014.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0014.dat
new file mode 100644
index 0000000..681a630
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0014.dat
@@ -0,0 +1,75 @@
+# scan = 14
+# date = 10/24/2011
+# time = 2:40:56 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -2 2 0.1
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.1898 1.000 412.000 2270.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0355 0.0950 2.9793 5.0000 5.0000 0.0000 297.4380 296.7480 299.3030 293.1210 300.000
+ 2 31.2898 1.000 461.000 2314.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0338 0.0950 2.9797 5.0000 5.0000 0.0000 297.4360 296.7480 299.3270 293.2980 300.000
+ 3 31.3898 1.000 514.000 2258.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0321 0.0950 2.9801 5.0000 5.0000 0.0000 297.4350 296.7490 299.3440 293.3790 300.000
+ 4 31.4898 1.000 616.000 2263.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0303 0.0949 2.9805 5.0000 5.0000 0.0000 297.4320 296.7470 299.3520 293.4830 300.000
+ 5 31.5898 1.000 617.000 2266.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0286 0.0949 2.9809 5.0000 5.0000 0.0000 297.4300 296.7470 299.3670 293.4950 300.000
+ 6 31.6898 1.000 766.000 2254.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0269 0.0949 2.9813 5.0000 5.0000 0.0000 297.4300 296.7470 299.3780 293.5150 300.000
+ 7 31.7898 1.000 779.000 2276.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0251 0.0949 2.9817 5.0000 5.0000 0.0000 297.4280 296.7470 299.3840 293.5330 300.000
+ 8 31.8898 1.000 975.000 2332.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0234 0.0949 2.9821 5.0000 5.0000 0.0000 297.4280 296.7470 299.3960 293.5650 300.000
+ 9 31.9898 1.000 1193.000 2326.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0217 0.0949 2.9825 5.0000 5.0000 0.0000 297.4290 296.7480 299.4050 293.6150 300.000
+ 10 32.0898 1.000 1339.000 2325.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0199 0.0949 2.9828 5.0000 5.0000 0.0000 297.4270 296.7490 299.4140 293.6560 300.000
+ 11 32.1898 1.000 1777.000 2325.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0182 0.0949 2.9832 5.0000 5.0000 0.0000 297.4290 296.7500 299.4290 293.6140 300.000
+ 12 32.2898 1.000 2168.000 2304.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0165 0.0949 2.9835 5.0000 5.0000 0.0000 297.4290 296.7500 299.4460 293.6570 300.000
+ 13 32.3898 1.000 2981.000 2168.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0147 0.0949 2.9839 5.0000 5.0000 0.0000 297.4310 296.7510 299.4650 293.6330 300.000
+ 14 32.4898 1.000 4062.000 2211.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0130 0.0949 2.9842 5.0000 5.0000 0.0000 297.4310 296.7510 299.4900 293.6760 300.000
+ 15 32.5898 1.000 6581.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0113 0.0949 2.9845 5.0000 5.0000 0.0000 297.4330 296.7520 299.5220 293.6900 300.000
+ 16 32.6898 1.000 11495.000 2299.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0096 0.0949 2.9848 5.0000 5.0000 0.0000 297.4330 296.7530 299.5510 293.7190 300.000
+ 17 32.7898 1.000 23324.000 2229.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0078 0.0949 2.9851 5.0000 5.0000 0.0000 297.4330 296.7530 299.5810 293.7510 300.000
+ 18 32.8898 1.000 50397.000 2271.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0061 0.0949 2.9854 5.0000 5.0000 0.0000 297.4350 296.7540 299.6080 293.7200 300.000
+ 19 32.9898 1.000 86480.000 2353.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0044 0.0949 2.9857 5.0000 5.0000 0.0000 297.4360 296.7550 299.6420 293.7660 300.000
+ 20 33.0898 1.000 113087.000 2283.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0026 0.0949 2.9860 5.0000 5.0000 0.0000 297.4370 296.7560 299.6730 293.8000 300.000
+ 21 33.1898 1.000 122375.000 2325.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0009 0.0949 2.9862 5.0000 5.0000 0.0000 297.4390 296.7560 299.7100 293.7830 300.000
+ 22 33.2898 1.000 110732.000 2318.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0008 0.0949 2.9865 5.0000 5.0000 0.0000 297.4410 296.7580 299.7470 293.7610 300.000
+ 23 33.3898 1.000 77335.000 2352.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0026 0.0949 2.9867 5.0000 5.0000 0.0000 297.4430 296.7590 299.7830 293.7670 300.000
+ 24 33.4898 1.000 39598.000 2198.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0043 0.0948 2.9869 5.0000 5.0000 0.0000 297.4450 296.7600 299.8210 293.7410 300.000
+ 25 33.5898 1.000 18485.000 2228.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0060 0.0948 2.9872 5.0000 5.0000 0.0000 297.4480 296.7610 299.8570 293.7470 300.000
+ 26 33.6898 1.000 9174.000 2172.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0078 0.0948 2.9874 5.0000 5.0000 0.0000 297.4490 296.7620 299.9030 293.7710 300.000
+ 27 33.7898 1.000 5030.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0095 0.0948 2.9876 5.0000 5.0000 0.0000 297.4520 296.7640 299.9430 293.7430 300.000
+ 28 33.8898 1.000 3271.000 2307.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0112 0.0948 2.9878 5.0000 5.0000 0.0000 297.4530 296.7640 299.9850 293.7990 300.000
+ 29 33.9898 1.000 2187.000 2309.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0130 0.0948 2.9880 5.0000 5.0000 0.0000 297.4550 296.7660 300.0290 293.8290 300.000
+ 30 34.0898 1.000 1531.000 2333.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0147 0.0948 2.9882 5.0000 5.0000 0.0000 297.4580 296.7670 300.0670 293.8180 300.000
+ 31 34.1898 1.000 1168.000 2350.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0164 0.0948 2.9883 5.0000 5.0000 0.0000 297.4610 296.7680 300.1170 293.7950 300.000
+ 32 34.2898 1.000 949.000 2256.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0182 0.0948 2.9885 5.0000 5.0000 0.0000 297.4650 296.7700 300.1590 293.7860 300.000
+ 33 34.3898 1.000 691.000 2236.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0199 0.0948 2.9886 5.0000 5.0000 0.0000 297.4660 296.7700 300.2080 293.8770 300.000
+ 34 34.4898 1.000 606.000 2321.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0216 0.0948 2.9888 5.0000 5.0000 0.0000 297.4690 296.7720 300.2600 293.8510 300.000
+ 35 34.5898 1.000 477.000 2313.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0233 0.0947 2.9889 5.0000 5.0000 0.0000 297.4720 296.7740 300.3060 293.8560 300.000
+ 36 34.6898 1.000 386.000 2262.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0251 0.0947 2.9890 5.0000 5.0000 0.0000 297.4740 296.7740 300.3540 293.9180 300.000
+ 37 34.7898 1.000 308.000 2181.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0268 0.0947 2.9892 5.0000 5.0000 0.0000 297.4780 296.7760 300.3950 293.8910 300.000
+ 38 34.8898 1.000 265.000 2276.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0285 0.0947 2.9893 5.0000 5.0000 0.0000 297.4810 296.7770 300.4400 293.9110 300.000
+ 39 34.9898 1.000 239.000 2286.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0303 0.0947 2.9894 5.0000 5.0000 0.0000 297.4840 296.7790 300.4780 293.9020 300.000
+ 40 35.0898 1.000 182.000 2296.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0320 0.0947 2.9894 5.0000 5.0000 0.0000 297.4880 296.7800 300.5190 293.9260 300.000
+ 41 35.1898 1.000 142.000 2273.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0337 0.0947 2.9895 5.0000 5.0000 0.0000 297.4910 296.7820 300.5570 293.9550 300.000
+# Sum of Counts = 705155
+# Center of Mass = 33.165887+/-0.055857
+# Full Width Half-Maximum = 0.632224+/-0.018959
+# 2:42:03 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0015.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0015.dat
new file mode 100644
index 0000000..e302342
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0015.dat
@@ -0,0 +1,75 @@
+# scan = 15
+# date = 10/24/2011
+# time = 2:42:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = th2th -2 2 0.1
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.100000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.4490 32.1749 1.000 9.000 2238.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5404 0.0011 0.0921 2.8980 5.0000 5.0000 0.0000 297.5320 296.8010 300.8990 293.9700 300.000
+ 2 59.5490 32.2249 1.000 22.000 2323.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5428 0.0011 0.0922 2.9025 5.0000 5.0000 0.0000 297.5400 296.8040 300.9130 293.9360 300.000
+ 3 59.6490 32.2749 1.000 21.000 2296.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5451 0.0011 0.0924 2.9069 5.0000 5.0000 0.0000 297.5470 296.8070 300.9280 293.8800 300.000
+ 4 59.7490 32.3249 1.000 31.000 2221.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5475 0.0011 0.0925 2.9113 5.0000 5.0000 0.0000 297.5540 296.8100 300.9420 293.8290 300.000
+ 5 59.8490 32.3749 1.000 43.000 2278.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5498 0.0011 0.0926 2.9157 5.0000 5.0000 0.0000 297.5590 296.8120 300.9590 293.8830 300.000
+ 6 59.9490 32.4249 1.000 62.000 2302.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5522 0.0011 0.0928 2.9202 5.0000 5.0000 0.0000 297.5630 296.8140 300.9740 293.9230 300.000
+ 7 60.0490 32.4749 1.000 89.000 2330.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5545 0.0011 0.0929 2.9246 5.0000 5.0000 0.0000 297.5710 296.8170 300.9590 293.8540 300.000
+ 8 60.1490 32.5249 1.000 174.000 2276.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5569 0.0011 0.0931 2.9290 5.0000 5.0000 0.0000 297.5750 296.8190 300.9650 293.8630 300.000
+ 9 60.2490 32.5749 1.000 256.000 2316.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5592 0.0011 0.0932 2.9334 5.0000 5.0000 0.0000 297.5740 296.8180 300.9910 293.9490 300.000
+ 10 60.3490 32.6249 1.000 584.000 2196.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5616 0.0011 0.0933 2.9378 5.0000 5.0000 0.0000 297.5790 296.8210 300.9930 293.9090 300.000
+ 11 60.4490 32.6749 1.000 1474.000 2301.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5639 0.0011 0.0935 2.9422 5.0000 5.0000 0.0000 297.5800 296.8210 301.0140 293.9640 300.000
+ 12 60.5490 32.7249 1.000 3553.000 2343.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5662 0.0011 0.0936 2.9466 5.0000 5.0000 0.0000 297.5860 296.8240 300.9940 293.9010 300.000
+ 13 60.6490 32.7749 1.000 8441.000 2312.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5686 0.0011 0.0938 2.9510 5.0000 5.0000 0.0000 297.5910 296.8260 301.0060 293.9010 300.000
+ 14 60.7490 32.8249 1.000 17808.000 2291.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5709 0.0011 0.0939 2.9554 5.0000 5.0000 0.0000 297.5990 296.8290 300.9960 293.8790 300.000
+ 15 60.8490 32.8749 1.000 32427.000 2234.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5733 0.0011 0.0940 2.9598 5.0000 5.0000 0.0000 297.6030 296.8300 300.9940 293.8940 300.000
+ 16 60.9490 32.9249 1.000 51580.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5756 0.0011 0.0942 2.9642 5.0000 5.0000 0.0000 297.6080 296.8330 300.9800 293.8820 300.000
+ 17 61.0490 32.9749 1.000 71614.000 2284.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5779 0.0011 0.0943 2.9686 5.0000 5.0000 0.0000 297.6130 296.8340 300.9770 294.0220 300.000
+ 18 61.1490 33.0249 1.000 91426.000 2246.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5803 0.0011 0.0945 2.9730 5.0000 5.0000 0.0000 297.6110 296.8350 300.9730 293.9940 300.000
+ 19 61.2490 33.0749 1.000 106392.000 2339.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5826 0.0011 0.0946 2.9774 5.0000 5.0000 0.0000 297.6140 296.8360 300.9530 293.9520 300.000
+ 20 61.3490 33.1249 1.000 116948.000 2292.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5849 0.0012 0.0947 2.9818 5.0000 5.0000 0.0000 297.6160 296.8380 300.9480 293.9640 300.000
+ 21 61.4490 33.1749 1.000 121972.000 2216.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0012 0.0949 2.9862 5.0000 5.0000 0.0000 297.6180 296.8390 300.9380 293.9440 300.000
+ 22 61.5490 33.2249 1.000 120343.000 2273.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5896 0.0012 0.0950 2.9906 5.0000 5.0000 0.0000 297.6250 296.8420 300.9110 293.8860 300.000
+ 23 61.6490 33.2749 1.000 112258.000 2237.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5919 0.0012 0.0951 2.9949 5.0000 5.0000 0.0000 297.6330 296.8450 300.8930 293.8730 300.000
+ 24 61.7490 33.3249 1.000 96021.000 2295.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5943 0.0012 0.0953 2.9993 5.0000 5.0000 0.0000 297.6300 296.8430 300.9000 293.9780 300.000
+ 25 61.8490 33.3749 1.000 75050.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5966 0.0012 0.0954 3.0037 5.0000 5.0000 0.0000 297.6320 296.8440 300.8930 293.9460 300.000
+ 26 61.9490 33.4249 1.000 52275.000 2315.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5989 0.0012 0.0956 3.0081 5.0000 5.0000 0.0000 297.6330 296.8440 300.8890 294.0000 300.000
+ 27 62.0490 33.4749 1.000 32411.000 2174.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6012 0.0012 0.0957 3.0124 5.0000 5.0000 0.0000 297.6350 296.8450 300.8780 294.0500 300.000
+ 28 62.1490 33.5249 1.000 17639.000 2237.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6036 0.0012 0.0958 3.0168 5.0000 5.0000 0.0000 297.6380 296.8470 300.8540 294.0580 300.000
+ 29 62.2490 33.5749 1.000 9023.000 2375.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6059 0.0012 0.0960 3.0212 5.0000 5.0000 0.0000 297.6410 296.8490 300.8480 294.0930 300.000
+ 30 62.3490 33.6249 1.000 4451.000 2275.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6082 0.0012 0.0961 3.0255 5.0000 5.0000 0.0000 297.6420 296.8490 300.8440 294.0390 300.000
+ 31 62.4490 33.6749 1.000 2174.000 2305.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6105 0.0012 0.0963 3.0299 5.0000 5.0000 0.0000 297.6430 296.8500 300.8250 294.1130 300.000
+ 32 62.5490 33.7249 1.000 1033.000 2363.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6128 0.0012 0.0964 3.0343 5.0000 5.0000 0.0000 297.6430 296.8510 300.7940 294.1350 300.000
+ 33 62.6490 33.7749 1.000 520.000 2307.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6152 0.0012 0.0965 3.0386 5.0000 5.0000 0.0000 297.6450 296.8520 300.7700 294.0900 300.000
+ 34 62.7490 33.8249 1.000 258.000 2382.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6175 0.0012 0.0967 3.0430 5.0000 5.0000 0.0000 297.6490 296.8540 300.7440 294.0540 300.000
+ 35 62.8490 33.8749 1.000 132.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6198 0.0012 0.0968 3.0473 5.0000 5.0000 0.0000 297.6530 296.8560 300.7140 294.0460 300.000
+ 36 62.9490 33.9249 1.000 56.000 2272.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6221 0.0012 0.0970 3.0517 5.0000 5.0000 0.0000 297.6560 296.8590 300.6820 294.0300 300.000
+ 37 63.0490 33.9749 1.000 39.000 2265.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6244 0.0012 0.0971 3.0560 5.0000 5.0000 0.0000 297.6620 296.8620 300.6460 294.0440 300.000
+ 38 63.1490 34.0249 1.000 21.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6267 0.0012 0.0972 3.0604 5.0000 5.0000 0.0000 297.6650 296.8630 300.6250 294.0210 300.000
+ 39 63.2490 34.0749 1.000 16.000 2292.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6290 0.0012 0.0974 3.0647 5.0000 5.0000 0.0000 297.6640 296.8630 300.6150 294.0410 300.000
+ 40 63.3490 34.1249 1.000 14.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6313 0.0012 0.0975 3.0691 5.0000 5.0000 0.0000 297.6690 296.8660 300.5810 294.0330 300.000
+ 41 63.4490 34.1749 1.000 11.000 2312.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6336 0.0012 0.0976 3.0734 5.0000 5.0000 0.0000 297.6700 296.8660 300.5630 294.0460 300.000
+# Sum of Counts = 1148671
+# Center of Mass = 61.455430+/-0.081093
+# Full Width Half-Maximum = 0.709564+/-0.033497
+# 2:43:42 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0016.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0016.dat
new file mode 100644
index 0000000..9ec6730
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0016.dat
@@ -0,0 +1,75 @@
+# scan = 16
+# date = 10/24/2011
+# time = 2:58:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -2 2 0.1
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0.5 0 2) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.010837,0.005083,-0.084043,-0.253548,-0.126774,0.003600,0.000518,0.219788,0.004020
+# mode = 0
+# plane_normal = 0.047781,0.000000,0.998858
+# ubconf = UB24Oct2011_25015PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 62.8000 1.000 30.000 2297.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4779 0.0000 2.0486 5.0000 5.0000 0.0000 298.3790 297.2700 300.4510 293.8110 300.000
+ 2 62.9000 1.000 31.000 2289.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4790 0.0000 2.0460 5.0000 5.0000 0.0000 298.3800 297.2710 300.4310 293.8070 300.000
+ 3 63.0000 1.000 41.000 2291.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4802 0.0000 2.0435 5.0000 5.0000 0.0000 298.3800 297.2720 300.4180 293.8590 300.000
+ 4 63.1000 1.000 50.000 2297.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4814 0.0000 2.0410 5.0000 5.0000 0.0000 298.3810 297.2730 300.4010 293.8200 300.000
+ 5 63.2000 1.000 49.000 2287.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4826 0.0000 2.0385 5.0000 5.0000 0.0000 298.3830 297.2740 300.3750 293.7510 300.000
+ 6 63.3000 1.000 58.000 2320.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4838 0.0000 2.0359 5.0000 5.0000 0.0000 298.3860 297.2740 300.3610 293.7790 300.000
+ 7 63.4000 1.000 94.000 2336.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4850 0.0000 2.0334 5.0000 5.0000 0.0000 298.3840 297.2730 300.3480 293.8560 300.000
+ 8 63.5000 1.000 78.000 2330.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4861 0.0000 2.0308 5.0000 5.0000 0.0000 298.3810 297.2730 300.3320 293.9220 300.000
+ 9 63.6000 1.000 114.000 2253.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4873 0.0000 2.0283 5.0000 5.0000 0.0000 298.3800 297.2730 300.3130 293.9820 300.000
+ 10 63.7000 1.000 137.000 2228.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4885 0.0000 2.0257 5.0000 5.0000 0.0000 298.3790 297.2740 300.3020 293.9620 300.000
+ 11 63.8000 1.000 173.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4897 0.0000 2.0231 5.0000 5.0000 0.0000 298.3810 297.2760 300.2800 293.9110 300.000
+ 12 63.9000 1.000 237.000 2292.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4908 0.0000 2.0205 5.0000 5.0000 0.0000 298.3820 297.2770 300.2560 293.9010 300.000
+ 13 64.0000 1.000 274.000 2328.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4920 0.0000 2.0179 5.0000 5.0000 0.0000 298.3820 297.2770 300.2410 293.8820 300.000
+ 14 64.1000 1.000 430.000 2327.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4932 0.0000 2.0154 5.0000 5.0000 0.0000 298.3820 297.2760 300.2290 293.9340 300.000
+ 15 64.2000 1.000 729.000 2285.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4943 0.0000 2.0128 5.0000 5.0000 0.0000 298.3810 297.2770 300.2150 293.9060 300.000
+ 16 64.3000 1.000 1435.000 2330.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4955 0.0000 2.0102 5.0000 5.0000 0.0000 298.3790 297.2760 300.2020 293.9900 300.000
+ 17 64.4000 1.000 3256.000 2231.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4967 0.0000 2.0075 5.0000 5.0000 0.0000 298.3820 297.2780 300.1850 293.8710 300.000
+ 18 64.5000 1.000 7491.000 2315.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4978 0.0000 2.0049 5.0000 5.0000 0.0000 298.3800 297.2780 300.1690 293.9440 300.000
+ 19 64.6000 1.000 12713.000 2345.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4990 0.0000 2.0023 5.0000 5.0000 0.0000 298.3820 297.2780 300.1520 293.8880 300.000
+ 20 64.7000 1.000 14242.000 2234.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5001 0.0000 1.9997 5.0000 5.0000 0.0000 298.3820 297.2790 300.1320 293.8570 300.000
+ 21 64.8000 1.000 9690.000 2329.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5013 0.0000 1.9971 5.0000 5.0000 0.0000 298.3810 297.2790 300.1170 293.9590 300.000
+ 22 64.9000 1.000 4667.000 2326.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5025 0.0000 1.9944 5.0000 5.0000 0.0000 298.3800 297.2790 300.1000 293.9780 300.000
+ 23 65.0000 1.000 2180.000 2341.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5036 0.0000 1.9918 5.0000 5.0000 0.0000 298.3800 297.2800 300.0820 293.9570 300.000
+ 24 65.1000 1.000 1148.000 2240.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5048 0.0000 1.9891 5.0000 5.0000 0.0000 298.3790 297.2800 300.0630 294.0240 300.000
+ 25 65.2000 1.000 605.000 2245.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5059 0.0000 1.9865 5.0000 5.0000 0.0000 298.3800 297.2810 300.0490 293.9900 300.000
+ 26 65.3000 1.000 354.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5071 0.0000 1.9838 5.0000 5.0000 0.0000 298.3800 297.2810 300.0340 294.0110 300.000
+ 27 65.4000 1.000 261.000 2237.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5082 0.0000 1.9811 5.0000 5.0000 0.0000 298.3780 297.2800 300.0180 294.0760 300.000
+ 28 65.5000 1.000 175.000 2200.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5094 0.0000 1.9784 5.0000 5.0000 0.0000 298.3780 297.2810 300.0070 294.0590 300.000
+ 29 65.6000 1.000 116.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5105 0.0000 1.9758 5.0000 5.0000 0.0000 298.3800 297.2810 299.9900 293.9850 300.000
+ 30 65.7000 1.000 91.000 2283.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5116 0.0000 1.9731 5.0000 5.0000 0.0000 298.3790 297.2820 299.9760 294.0070 300.000
+ 31 65.8000 1.000 79.000 2281.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5128 0.0000 1.9704 5.0000 5.0000 0.0000 298.3820 297.2830 299.9550 293.9310 300.000
+ 32 65.9000 1.000 55.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5139 0.0000 1.9677 5.0000 5.0000 0.0000 298.3800 297.2830 299.9430 294.0150 300.000
+ 33 66.0000 1.000 42.000 2246.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5151 0.0000 1.9650 5.0000 5.0000 0.0000 298.3790 297.2840 299.9300 294.0400 300.000
+ 34 66.1000 1.000 31.000 2210.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5162 0.0000 1.9623 5.0000 5.0000 0.0000 298.3810 297.2840 299.9120 294.0010 300.000
+ 35 66.2000 1.000 30.000 2338.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5173 0.0000 1.9595 5.0000 5.0000 0.0000 298.3790 297.2840 299.8990 294.0510 300.000
+ 36 66.3000 1.000 21.000 2285.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5185 0.0000 1.9568 5.0000 5.0000 0.0000 298.3770 297.2840 299.8830 294.1000 300.000
+ 37 66.4000 1.000 22.000 2349.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5196 0.0000 1.9541 5.0000 5.0000 0.0000 298.3790 297.2850 299.8620 294.0160 300.000
+ 38 66.5000 1.000 12.000 2294.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5207 0.0000 1.9514 5.0000 5.0000 0.0000 298.3780 297.2850 299.8490 294.0180 300.000
+ 39 66.6000 1.000 14.000 2366.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5219 0.0000 1.9486 5.0000 5.0000 0.0000 298.3800 297.2860 299.8270 293.9670 300.000
+ 40 66.7000 1.000 14.000 2250.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5230 0.0000 1.9459 5.0000 5.0000 0.0000 298.3820 297.2860 299.8220 293.9110 300.000
+ 41 66.8000 1.000 12.000 2299.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5241 0.0000 1.9431 5.0000 5.0000 0.0000 298.3790 297.2860 299.8110 294.0190 300.000
+# Sum of Counts = 61281
+# Center of Mass = 64.669674+/-0.369449
+# Full Width Half-Maximum = 0.567740+/-0.118385
+# 2:59:23 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0017.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0017.dat
new file mode 100644
index 0000000..2a7644d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0017.dat
@@ -0,0 +1,51 @@
+# scan = 17
+# date = 10/24/2011
+# time = 3:01:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel sgu -4 4 0.5
+# builtin_command = scan sgu @(sgu)+-4 @(sgu)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0.5 0 2) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253548,0.126774,0.003600,-0.000518,-0.219788,0.004020
+# mode = 0
+# plane_normal = 0.028751,0.000000,0.601027
+# ubconf = UB24Oct2011_30108PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 7352.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5177 -0.0424 2.0048 5.0000 5.0000 0.0000 298.4410 297.3230 300.6020 293.2090 300.000
+ 2 -3.5000 1.000 8081.000 2316.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5156 -0.0371 2.0043 5.0000 5.0000 0.0000 298.4380 297.3250 300.6500 293.4110 300.000
+ 3 -3.0000 1.000 8595.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5135 -0.0318 2.0037 5.0000 5.0000 0.0000 298.4410 297.3270 300.6930 293.5290 300.000
+ 4 -2.5000 1.000 9479.000 2369.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5114 -0.0265 2.0031 5.0000 5.0000 0.0000 298.4440 297.3290 300.7250 293.5250 300.000
+ 5 -2.0000 1.000 10795.000 2266.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5092 -0.0212 2.0025 5.0000 5.0000 0.0000 298.4500 297.3310 300.7470 293.3960 300.000
+ 6 -1.5000 1.000 12409.000 2198.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5070 -0.0159 2.0019 5.0000 5.0000 0.0000 298.4560 297.3330 300.7700 293.3610 300.000
+ 7 -1.0000 1.000 13260.000 2229.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5047 -0.0106 2.0012 5.0000 5.0000 0.0000 298.4640 297.3350 300.7870 293.2790 300.000
+ 8 -0.5000 1.000 13723.000 2242.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5024 -0.0053 2.0006 5.0000 5.0000 0.0000 298.4690 297.3370 300.8070 293.3380 300.000
+ 9 0.0000 1.000 14478.000 2363.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 298.4730 297.3390 300.8160 293.2590 300.000
+ 10 0.5001 1.000 14947.000 2308.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4976 0.0053 1.9994 5.0000 5.0000 0.0000 298.4770 297.3410 300.8160 293.2540 300.000
+ 11 1.0000 1.000 14710.000 2303.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4952 0.0106 1.9987 5.0000 5.0000 0.0000 298.4800 297.3420 300.8160 293.3480 300.000
+ 12 1.5000 1.000 14245.000 2242.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4927 0.0160 1.9981 5.0000 5.0000 0.0000 298.4820 297.3430 300.8010 293.3800 300.000
+ 13 2.0000 1.000 13055.000 2229.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4901 0.0213 1.9974 5.0000 5.0000 0.0000 298.4810 297.3440 300.7820 293.4860 300.000
+ 14 2.5000 1.000 11644.000 2301.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4876 0.0266 1.9968 5.0000 5.0000 0.0000 298.4850 297.3460 300.7660 293.3920 300.000
+ 15 3.0000 1.000 9433.000 2238.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4850 0.0319 1.9961 5.0000 5.0000 0.0000 298.4880 297.3480 300.7480 293.3550 300.000
+ 16 3.5000 1.000 7648.000 2254.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4823 0.0372 1.9955 5.0000 5.0000 0.0000 298.4930 297.3510 300.7300 293.3030 300.000
+ 17 4.0000 1.000 6019.000 2175.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4796 0.0426 1.9948 5.0000 5.0000 0.0000 298.4990 297.3510 300.7010 293.2930 300.000
+# Sum of Counts = 189873
+# Center of Mass = 0.054860+/-0.004974
+# Full Width Half-Maximum = 4.332064+/-0.008978
+# 3:02:37 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0018.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0018.dat
new file mode 100644
index 0000000..21d422a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0018.dat
@@ -0,0 +1,51 @@
+# scan = 18
+# date = 10/24/2011
+# time = 3:04:38 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel sgu -4 4 0.5
+# builtin_command = scan sgu @(sgu)+-4 @(sgu)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253548,0.126774,0.003600,-0.000518,-0.219788,0.004020
+# mode = 0
+# plane_normal = 0.028751,0.000000,0.601027
+# ubconf = UB24Oct2011_30108PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 104268.000 2248.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0018 -0.0033 3.0000 5.0000 5.0000 0.0000 298.5230 297.3970 299.4360 293.3980 300.000
+ 2 -3.5000 1.000 108194.000 2357.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0015 -0.0029 3.0000 5.0000 5.0000 0.0000 298.5140 297.3880 299.5130 293.3520 300.000
+ 3 -3.0000 1.000 111875.000 2221.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0013 -0.0025 3.0000 5.0000 5.0000 0.0000 298.5150 297.3860 299.5200 293.2660 300.000
+ 4 -2.5000 1.000 115109.000 2221.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0011 -0.0021 3.0000 5.0000 5.0000 0.0000 298.5140 297.3860 299.5290 293.2820 300.000
+ 5 -2.0000 1.000 117165.000 2218.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0008 -0.0017 3.0000 5.0000 5.0000 0.0000 298.5130 297.3870 299.5260 293.2500 300.000
+ 6 -1.5000 1.000 119795.000 2411.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0006 -0.0013 3.0000 5.0000 5.0000 0.0000 298.5150 297.3870 299.5250 293.1940 300.000
+ 7 -1.0000 1.000 121866.000 2367.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0004 -0.0008 3.0000 5.0000 5.0000 0.0000 298.5160 297.3870 299.5370 293.1740 300.000
+ 8 -0.5000 1.000 122726.000 2219.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0002 -0.0004 3.0000 5.0000 5.0000 0.0000 298.5160 297.3880 299.5310 293.1490 300.000
+ 9 0.0000 1.000 122056.000 2294.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 298.5170 297.3880 299.5580 293.1220 300.000
+ 10 0.5000 1.000 121004.000 2329.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0002 0.0004 3.0000 5.0000 5.0000 0.0000 298.5160 297.3890 299.5740 293.0990 300.000
+ 11 1.0000 1.000 118563.000 2234.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0004 0.0009 3.0000 5.0000 5.0000 0.0000 298.5160 297.3890 299.6000 293.1330 300.000
+ 12 1.5000 1.000 115752.000 2290.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0006 0.0013 3.0000 5.0000 5.0000 0.0000 298.5130 297.3890 299.6480 293.1940 300.000
+ 13 2.0000 1.000 112136.000 2306.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0008 0.0017 3.0000 5.0000 5.0000 0.0000 298.5140 297.3890 299.6860 293.1790 300.000
+ 14 2.5000 1.000 108198.000 2321.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0009 0.0022 3.0000 5.0000 5.0000 0.0000 298.5160 297.3900 299.7400 293.2350 300.000
+ 15 3.0000 1.000 103532.000 2360.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0011 0.0026 3.0000 5.0000 5.0000 0.0000 298.5170 297.3910 299.8020 293.1770 300.000
+ 16 3.5000 1.000 97458.000 2288.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0013 0.0031 3.0000 5.0000 5.0000 0.0000 298.5200 297.3930 299.8570 293.1170 300.000
+ 17 4.0000 1.000 89903.000 2296.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0014 0.0036 3.0000 5.0000 5.0000 0.0000 298.5230 297.3940 299.9220 293.1300 300.000
+# Sum of Counts = 1909600
+# Center of Mass = -0.082546+/-0.001715
+# Full Width Half-Maximum = 4.733324+/-0.003009
+# 3:05:51 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0019.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0019.dat
new file mode 100644
index 0000000..00676a5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0019.dat
@@ -0,0 +1,55 @@
+# scan = 19
+# date = 10/24/2011
+# time = 3:19:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 32.1784 1.000 1211.000 1559.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 298.8000 297.6080 299.9060 293.4230 300.000
+ 2 32.2784 1.000 1593.000 1562.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 298.8010 297.6080 299.9000 293.3860 300.000
+ 3 32.3784 1.000 2093.000 1531.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 298.8010 297.6090 299.8880 293.3550 300.000
+ 4 32.4784 1.000 3167.000 1482.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 298.8010 297.6090 299.8710 293.3410 300.000
+ 5 32.5784 1.000 4979.000 1577.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 298.8000 297.6090 299.8530 293.3860 300.000
+ 6 32.6784 1.000 9431.000 1545.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 298.7980 297.6090 299.8380 293.4150 300.000
+ 7 32.7784 1.000 20300.000 1571.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 298.7960 297.6100 299.8230 293.4360 300.000
+ 8 32.8784 1.000 42527.000 1472.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 298.7940 297.6090 299.8210 293.5310 300.000
+ 9 32.9784 1.000 71004.000 1557.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 298.7960 297.6090 299.8040 293.4180 300.000
+ 10 33.0784 1.000 92248.000 1560.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 298.7960 297.6090 299.7890 293.4040 300.000
+ 11 33.1784 1.000 96512.000 1550.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 298.7950 297.6090 299.7860 293.3880 300.000
+ 12 33.2784 1.000 80378.000 1575.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 298.7960 297.6100 299.7720 293.3720 300.000
+ 13 33.3784 1.000 49979.000 1509.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 298.7960 297.6100 299.7670 293.3750 300.000
+ 14 33.4784 1.000 23689.000 1542.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 298.7950 297.6100 299.7570 293.3980 300.000
+ 15 33.5784 1.000 10902.000 1557.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 298.7960 297.6100 299.7420 293.3720 300.000
+ 16 33.6784 1.000 5381.000 1500.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 298.7940 297.6100 299.7210 293.4380 300.000
+ 17 33.7784 1.000 3090.000 1589.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 298.7910 297.6110 299.7050 293.4740 300.000
+ 18 33.8784 1.000 1886.000 1588.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 298.7930 297.6110 299.6910 293.3910 300.000
+ 19 33.9784 1.000 1254.000 1623.000 0.013 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 298.7930 297.6100 299.6670 293.3900 300.000
+ 20 34.0784 1.000 998.000 1612.000 0.013 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 298.7920 297.6100 299.6560 293.4040 300.000
+ 21 34.1784 1.000 724.000 1514.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 298.7910 297.6100 299.6440 293.4360 300.000
+# Sum of Counts = 523346
+# Center of Mass = 33.139131+/-0.064784
+# Full Width Half-Maximum = 0.494318+/-0.027664
+# 3:19:47 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0020.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0020.dat
new file mode 100644
index 0000000..4edd099
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0020.dat
@@ -0,0 +1,55 @@
+# scan = 20
+# date = 10/24/2011
+# time = 3:20:06 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.4563 32.1784 1.000 8.000 1457.000 0.011 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5406 0.0000 0.0000 2.9115 5.0000 5.0000 0.0000 298.7800 297.6100 299.5730 293.5700 300.000
+ 2 59.6563 32.2784 1.000 14.000 1528.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5453 0.0000 0.0000 2.9204 5.0000 5.0000 0.0000 298.7800 297.6090 299.5590 293.4790 300.000
+ 3 59.8563 32.3784 1.000 30.000 1567.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5500 0.0000 0.0000 2.9292 5.0000 5.0000 0.0000 298.7810 297.6100 299.5520 293.4080 300.000
+ 4 60.0563 32.4784 1.000 76.000 1570.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5547 0.0000 0.0000 2.9381 5.0000 5.0000 0.0000 298.7810 297.6100 299.5560 293.4070 300.000
+ 5 60.2563 32.5784 1.000 364.000 1557.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5594 0.0000 0.0000 2.9470 5.0000 5.0000 0.0000 298.7820 297.6100 299.5540 293.3280 300.000
+ 6 60.4563 32.6784 1.000 1756.000 1586.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5641 0.0000 0.0000 2.9558 5.0000 5.0000 0.0000 298.7820 297.6100 299.5520 293.3560 300.000
+ 7 60.6563 32.7784 1.000 8001.000 1582.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5688 0.0000 0.0000 2.9647 5.0000 5.0000 0.0000 298.7810 297.6110 299.5500 293.3440 300.000
+ 8 60.8563 32.8784 1.000 26543.000 1522.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5734 0.0000 0.0000 2.9735 5.0000 5.0000 0.0000 298.7830 297.6110 299.5510 293.3630 300.000
+ 9 61.0563 32.9784 1.000 56695.000 1520.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5781 0.0000 0.0000 2.9824 5.0000 5.0000 0.0000 298.7810 297.6110 299.5630 293.4320 300.000
+ 10 61.2563 33.0784 1.000 84843.000 1563.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5828 0.0000 0.0000 2.9912 5.0000 5.0000 0.0000 298.7800 297.6110 299.5710 293.4560 300.000
+ 11 61.4563 33.1784 1.000 95834.000 1576.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 298.7800 297.6120 299.5660 293.4380 300.000
+ 12 61.6563 33.2784 1.000 83642.000 1503.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5921 0.0000 0.0000 3.0088 5.0000 5.0000 0.0000 298.7800 297.6130 299.5790 293.3790 300.000
+ 13 61.8563 33.3784 1.000 50594.000 1512.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5968 0.0000 0.0000 3.0176 5.0000 5.0000 0.0000 298.7790 297.6130 299.6090 293.3920 300.000
+ 14 62.0563 33.4784 1.000 18253.000 1558.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6014 0.0000 0.0000 3.0264 5.0000 5.0000 0.0000 298.7800 297.6120 299.6370 293.4130 300.000
+ 15 62.2563 33.5784 1.000 5152.000 1489.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6061 0.0000 0.0000 3.0352 5.0000 5.0000 0.0000 298.7790 297.6130 299.6530 293.4790 300.000
+ 16 62.4563 33.6784 1.000 1193.000 1465.000 0.011 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6107 0.0000 0.0000 3.0439 5.0000 5.0000 0.0000 298.7780 297.6130 299.6720 293.4750 300.000
+ 17 62.6563 33.7784 1.000 334.000 1546.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6153 0.0000 0.0000 3.0527 5.0000 5.0000 0.0000 298.7790 297.6130 299.7050 293.4390 300.000
+ 18 62.8563 33.8784 1.000 100.000 1518.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6200 0.0000 0.0000 3.0614 5.0000 5.0000 0.0000 298.7790 297.6130 299.7420 293.4220 300.000
+ 19 63.0563 33.9784 1.000 30.000 1506.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6246 0.0000 0.0000 3.0702 5.0000 5.0000 0.0000 298.7800 297.6140 299.7610 293.4670 300.000
+ 20 63.2563 34.0784 1.000 11.000 1591.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6292 0.0000 0.0000 3.0789 5.0000 5.0000 0.0000 298.7810 297.6140 299.7890 293.4310 300.000
+ 21 63.4563 34.1784 1.000 6.000 1551.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6338 0.0000 0.0000 3.0876 5.0000 5.0000 0.0000 298.7800 297.6140 299.8280 293.4310 300.000
+# Sum of Counts = 433479
+# Center of Mass = 61.432058+/-0.131956
+# Full Width Half-Maximum = 0.697913+/-0.076434
+# 3:20:58 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0021.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0021.dat
new file mode 100644
index 0000000..1c3919d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0021.dat
@@ -0,0 +1,41 @@
+# scan = 21
+# date = 10/24/2011
+# time = 3:33:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -3.25 -1.75 0.25 preset mcu 1
+# builtin_command = scan h 0 k 0 l 3.4 e -3.25 -1.75 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for some LA phonon in (003) along Z
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -3.2500 60.011 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.8167 59.3780 -2.7387 0.5000 0.0000 0.0000 152.0120 -55.9760 1.7991 5.0000 8.2500 298.9650 297.7520 300.6240 293.7400 300.000
+ 2 0.0000 0.0000 3.4000 -3.0000 59.796 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.1173 60.1649 -2.7387 0.5000 0.0000 0.0000 151.5388 -56.9223 1.7991 5.0000 8.0000 298.9750 297.7610 300.1600 293.5460 300.000
+ 3 0.0000 0.0000 3.4000 -2.7500 60.107 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.4279 60.9622 -2.7387 0.5000 0.0000 0.0000 151.0407 -57.9186 1.7991 5.0000 7.7500 298.9590 297.7640 299.6840 293.5760 300.000
+ 4 0.0000 0.0000 3.4000 -2.5000 59.711 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 61.7710 -2.7387 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7991 5.0000 7.5000 298.9430 297.7640 299.7590 293.5940 300.000
+ 5 0.0000 0.0000 3.4000 -2.2500 59.892 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.0831 62.5922 -2.7387 0.5000 0.0000 0.0000 149.9599 -60.0803 1.7991 5.0000 7.2500 298.9730 297.7790 300.6350 293.7860 300.000
+ 6 0.0000 0.0000 3.4000 -2.0000 60.172 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4298 63.4268 -2.7387 0.5000 0.0000 0.0000 149.3716 -61.2567 1.7991 5.0000 7.0000 299.0110 297.7950 300.6120 293.7120 300.000
+ 7 0.0000 0.0000 3.4000 -1.7500 60.313 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.7906 64.2762 -2.7387 0.5000 0.0000 0.0000 148.7471 -62.5057 1.7991 5.0000 6.7500 299.0150 297.8040 300.1240 293.8020 300.000
+# Sum of Counts = 66
+# Center of Mass = -2.412879+/-0.425239
+# Full Width Half-Maximum = 1.078342+/-0.384634
+# 3:40:45 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0022.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0022.dat
new file mode 100644
index 0000000..a4dc890
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0022.dat
@@ -0,0 +1,43 @@
+# scan = 22
+# date = 10/24/2011
+# time = 3:42:51 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -1.75 0.25 0.25 preset mcu 1
+# builtin_command = scan h 0 k 0 l 3.4 e -1.75 0.25 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for some LA phonon in (003) along Z
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -1.7500 60.539 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.7906 64.2762 -2.7387 0.5000 0.0000 0.0000 148.7471 -62.5057 1.7991 5.0000 6.7500 299.0150 297.8180 300.6110 293.8550 300.000
+ 2 0.0000 0.0000 3.4000 -1.5000 60.216 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1670 65.1418 -2.7387 0.5000 0.0000 0.0000 148.0824 -63.8352 1.7991 5.0000 6.5000 299.0490 297.8350 300.6370 293.9170 300.000
+ 3 0.0000 0.0000 3.4000 -1.2500 60.190 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.5603 66.0250 -2.7387 0.5000 0.0000 0.0000 147.3729 -65.2542 1.7991 5.0000 6.2500 299.0550 297.8420 300.1740 293.8530 300.000
+ 4 0.0000 0.0000 3.4000 -1.0000 60.101 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9718 66.9275 -2.7387 0.5000 0.0000 0.0000 146.6133 -66.7735 1.7991 5.0000 6.0000 299.0420 297.8420 299.7010 293.8280 300.000
+ 5 0.0000 0.0000 3.4000 -0.7500 60.061 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.4034 67.8513 -2.7387 0.5000 0.0000 0.0000 145.7973 -68.4055 1.7991 5.0000 5.7500 299.0160 297.8410 299.6870 293.8830 300.000
+ 6 0.0000 0.0000 3.4000 -0.5000 59.989 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8567 68.7985 -2.7387 0.5000 0.0000 0.0000 144.9174 -70.1652 1.7991 5.0000 5.5000 299.0440 297.8540 300.5930 293.9430 300.000
+ 7 0.0000 0.0000 3.4000 -0.2500 59.939 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.3339 69.7717 -2.7387 0.5000 0.0000 0.0000 143.9648 -72.0704 1.7991 5.0000 5.2500 299.0760 297.8690 300.6300 293.9610 300.000
+ 8 0.0000 0.0000 3.4000 0.0000 60.462 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8370 70.7737 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.7991 5.0000 5.0000 299.0860 297.8770 300.1850 293.9020 300.000
+ 9 0.0000 0.0000 3.4000 0.2500 60.147 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.3688 71.8078 -2.7387 0.5000 0.0000 0.0000 141.7955 -76.4090 1.7991 5.0000 4.7500 299.0640 297.8750 299.7270 294.0280 300.000
+# Sum of Counts = 126
+# Center of Mass = -0.972222+/-0.137229
+# Full Width Half-Maximum = 1.389048+/-0.151368
+# 3:52:27 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0023.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0023.dat
new file mode 100644
index 0000000..c33705f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0023.dat
@@ -0,0 +1,45 @@
+# scan = 23
+# date = 10/24/2011
+# time = 3:55:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.5 e -2.6 -0.6 0.2 preset mcu 2
+# builtin_command = scan h 0 k 0 l 3.5 e -2.6 -0.6 0.2 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for some LA phonon in (003) along Z
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.5000 -2.6000 120.540 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.6632 63.5438 -2.7387 0.5000 0.0000 0.0000 150.7289 -58.5423 1.8520 5.0000 7.6000 299.1150 297.9060 300.3300 294.0230 300.000
+ 2 0.0000 0.0000 3.5000 -2.4000 120.034 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.7054 64.2112 -2.7387 0.5000 0.0000 0.0000 150.2968 -59.4063 1.8520 5.0000 7.4000 299.0820 297.9070 299.6100 294.0740 300.000
+ 3 0.0000 0.0000 3.5000 -2.2000 119.974 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7557 64.8880 -2.7387 0.5000 0.0000 0.0000 149.8450 -60.3101 1.8520 5.0000 7.2000 299.1170 297.9220 300.6390 293.9860 300.000
+ 4 0.0000 0.0000 3.5000 -2.0000 119.972 23.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.8148 65.5747 -2.7387 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8520 5.0000 7.0000 299.1310 297.9360 299.9770 293.9600 300.000
+ 5 0.0000 0.0000 3.5000 -1.8000 120.198 28.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.8832 66.2721 -2.7387 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8520 5.0000 6.8000 299.0990 297.9340 299.9050 293.9280 300.000
+ 6 0.0000 0.0000 3.5000 -1.6000 120.787 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.9617 66.9810 -2.7387 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8520 5.0000 6.6000 299.1510 297.9580 300.5540 294.1200 300.000
+ 7 0.0000 0.0000 3.5000 -1.4000 120.826 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.0508 67.7021 -2.7387 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8520 5.0000 6.4000 299.1300 297.9600 299.6740 294.0550 300.000
+ 8 0.0000 0.0000 3.5000 -1.2000 121.273 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.1514 68.4365 -2.7387 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8520 5.0000 6.2000 299.1420 297.9670 300.5740 294.0410 300.000
+ 9 0.0000 0.0000 3.5000 -1.0000 120.635 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.2641 69.1851 -2.7387 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8520 5.0000 6.0000 299.1740 297.9840 300.1550 294.0950 300.000
+ 10 0.0000 0.0000 3.5000 -0.8000 120.734 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.3899 69.9490 -2.7387 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8520 5.0000 5.8000 299.1370 297.9780 299.6580 294.0110 300.000
+ 11 0.0000 0.0000 3.5000 -0.6000 120.390 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.5296 70.7296 -2.7387 0.5000 0.0000 0.0000 145.2774 -69.4449 1.8520 5.0000 5.6000 299.1940 297.9980 300.6510 294.1290 300.000
+# Sum of Counts = 136
+# Center of Mass = -1.783824+/-0.221712
+# Full Width Half-Maximum = 1.133506+/-0.155970
+# 4:18:06 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0024.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0024.dat
new file mode 100644
index 0000000..a5e4437
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0024.dat
@@ -0,0 +1,43 @@
+# scan = 24
+# date = 10/24/2011
+# time = 4:23:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 2.6 e -2.5 -0.5 0.25 preset mcu 1
+# builtin_command = scan h 0 k 0 l 2.6 e -2.5 -0.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = check focusing condition for LA in (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 2.6000 -2.5000 60.251 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 11.6899 45.5422 -2.7387 0.5000 0.0000 0.0000 150.5152 -58.9695 1.3758 5.0000 7.5000 299.2040 298.0270 299.8760 294.0330 300.000
+ 2 0.0000 0.0000 2.6000 -2.2500 60.431 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.3325 46.2434 -2.7387 0.5000 0.0000 0.0000 149.9599 -60.0804 1.3758 5.0000 7.2500 299.1900 298.0220 299.5830 293.8010 300.000
+ 3 0.0000 0.0000 2.6000 -2.0000 60.226 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.9842 46.9444 -2.7387 0.5000 0.0000 0.0000 149.3717 -61.2567 1.3758 5.0000 7.0000 299.1970 298.0230 300.2450 293.8660 300.000
+ 4 0.0000 0.0000 2.6000 -1.7500 59.831 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.6466 47.6452 -2.7387 0.5000 0.0000 0.0000 148.7470 -62.5057 1.3758 5.0000 6.7500 299.2280 298.0360 300.7120 294.0520 300.000
+ 5 0.0000 0.0000 2.6000 -1.5000 60.240 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.3213 48.3463 -2.7387 0.5000 0.0000 0.0000 148.0824 -63.8352 1.3758 5.0000 6.5000 299.2420 298.0450 300.4100 294.0000 300.000
+ 6 0.0000 0.0000 2.6000 -1.2500 60.436 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.0100 49.0478 -2.7387 0.5000 0.0000 0.0000 147.3729 -65.2542 1.3758 5.0000 6.2500 299.2270 298.0450 299.9340 294.2010 300.000
+ 7 0.0000 0.0000 2.6000 -1.0000 60.192 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.7146 49.7501 -2.7387 0.5000 0.0000 0.0000 146.6133 -66.7735 1.3758 5.0000 6.0000 299.2020 298.0400 299.6170 294.1720 300.000
+ 8 0.0000 0.0000 2.6000 -0.7500 60.227 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.4372 50.4534 -2.7387 0.5000 0.0000 0.0000 145.7973 -68.4055 1.3758 5.0000 5.7500 299.1960 298.0410 300.0320 294.1220 300.000
+ 9 0.0000 0.0000 2.6000 -0.5000 60.761 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.1798 51.1576 -2.7387 0.5000 0.0000 0.0000 144.9174 -70.1652 1.3758 5.0000 5.5000 299.2290 298.0530 300.6600 294.1540 300.000
+# Sum of Counts = 148
+# Center of Mass = -1.608108+/-0.192090
+# Full Width Half-Maximum = 1.075153+/-0.146889
+# 4:33:12 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0025.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0025.dat
new file mode 100644
index 0000000..9af223d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0025.dat
@@ -0,0 +1,40 @@
+# scan = 25
+# date = 10/24/2011
+# time = 4:37:48 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3 e -6.5 -5.25 0.25 preset mcu 2
+# builtin_command = scan h 0 k 0 l 3 e -6.5 -5.25 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = checking optical modes at Gamma (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -6.5000 120.787 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.7355 41.9552 -2.7387 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5874 5.0000 11.5000 299.2480 298.0720 300.5640 294.0680 300.000
+ 2 0.0000 0.0000 3.0000 -6.2500 120.698 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.3248 42.6742 -2.7387 0.5000 0.0000 0.0000 156.3046 -47.3907 1.5874 5.0000 11.2500 299.2320 298.0730 299.7600 294.2420 300.000
+ 3 0.0000 0.0000 3.0000 -6.0000 120.702 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.9176 43.3919 -2.7387 0.5000 0.0000 0.0000 156.0200 -47.9596 1.5874 5.0000 11.0000 299.2230 298.0730 300.3760 294.1080 300.000
+ 4 0.0000 0.0000 3.0000 -5.7500 120.818 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.5130 44.1085 -2.7387 0.5000 0.0000 0.0000 155.7252 -48.5496 1.5874 5.0000 10.7500 299.2600 298.0890 300.2560 294.1230 300.000
+ 5 0.0000 0.0000 3.0000 -5.5000 120.947 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.8898 44.8245 -2.7387 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5874 5.0000 10.5000 299.2220 298.0820 299.6270 294.2080 300.000
+ 6 0.0000 0.0000 3.0000 -5.2500 120.780 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.2916 45.5404 -2.7387 0.5000 0.0000 0.0000 155.1010 -49.7981 1.5874 5.0000 10.2500 299.2570 298.0940 300.6500 294.1770 300.000
+# Sum of Counts = 38
+# Center of Mass = -5.809211+/-1.334653
+# Full Width Half-Maximum = 0.884324+/-1.159458
+# 4:50:32 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0026.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0026.dat
new file mode 100644
index 0000000..d10f693
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0026.dat
@@ -0,0 +1,41 @@
+# scan = 26
+# date = 10/24/2011
+# time = 4:53:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3 e -8.5 -7.0 0.25 preset mcu 2
+# builtin_command = scan h 0 k 0 l 3 e -8.5 -7.0 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = checking optical modes at Gamma (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -8.5000 120.915 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2607 36.0902 -2.7387 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5874 5.0000 13.5000 299.2390 298.1000 300.3640 294.1620 300.000
+ 2 0.0000 0.0000 3.0000 -8.2500 121.187 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7871 36.8392 -2.7387 0.5000 0.0000 0.0000 158.2657 -43.4686 1.5874 5.0000 13.2500 299.2810 298.1150 300.2870 294.1900 300.000
+ 3 0.0000 0.0000 3.0000 -8.0000 121.173 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3252 37.5825 -2.7387 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5874 5.0000 13.0000 299.2460 298.1100 299.6380 294.2330 300.000
+ 4 0.0000 0.0000 3.0000 -7.7500 121.438 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8737 38.3208 -2.7387 0.5000 0.0000 0.0000 157.8214 -44.3571 1.5874 5.0000 12.7500 299.2710 298.1170 300.6080 294.2970 300.000
+ 5 0.0000 0.0000 3.0000 -7.5000 120.629 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.4316 39.0545 -2.7387 0.5000 0.0000 0.0000 157.5889 -44.8224 1.5874 5.0000 12.5000 299.2770 298.1260 300.0270 294.2380 300.000
+ 6 0.0000 0.0000 3.0000 -7.2500 121.398 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.9977 39.7843 -2.7387 0.5000 0.0000 0.0000 157.3487 -45.3025 1.5874 5.0000 12.2500 299.2440 298.1160 299.8230 294.2180 300.000
+ 7 0.0000 0.0000 3.0000 -7.0000 121.149 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.5710 40.5106 -2.7387 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5874 5.0000 12.0000 299.2910 298.1320 300.5200 294.2740 300.000
+# Sum of Counts = 55
+# Center of Mass = -7.763636+/-1.482258
+# Full Width Half-Maximum = 1.080480+/-1.230422
+# 5:07:40 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0027.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0027.dat
new file mode 100644
index 0000000..a574e78
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0027.dat
@@ -0,0 +1,45 @@
+# scan = 27
+# date = 10/24/2011
+# time = 5:14:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.2 k 0 l 3 e -3.0 -0.5 0.25 preset mcu 1
+# builtin_command = scan h 0.2 k 0 l 3 e -3.0 -0.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = checking for TA modes in (003) along (h00)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.2000 0.0000 3.0000 -3.0000 60.734 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3046 53.2541 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.6192 5.0000 8.0000 299.2810 298.1390 300.1070 293.5680 300.000
+ 2 0.2000 0.0000 3.0000 -2.7500 60.540 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.7221 54.0018 -2.7386 0.5000 0.0000 0.0000 151.0407 -57.9186 1.6192 5.0000 7.7500 299.3150 298.1490 300.6450 293.6740 300.000
+ 3 0.2000 0.0000 3.0000 -2.5000 60.431 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.1491 54.7558 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6192 5.0000 7.5000 299.3290 298.1560 300.3820 293.6780 300.000
+ 4 0.2000 0.0000 3.0000 -2.2500 59.956 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.5866 55.5167 -2.7386 0.5000 0.0000 0.0000 149.9599 -60.0802 1.6192 5.0000 7.2500 299.3270 298.1570 299.9870 293.5650 300.000
+ 5 0.2000 0.0000 3.0000 -2.0000 60.478 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.0357 56.2852 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.6192 5.0000 7.0000 299.2970 298.1490 299.6450 293.7500 300.000
+ 6 0.2000 0.0000 3.0000 -1.7500 60.690 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4978 57.0622 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.6192 5.0000 6.7500 299.2770 298.1450 299.9610 294.1080 300.000
+ 7 0.2000 0.0000 3.0000 -1.5000 60.410 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.9740 57.8486 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6192 5.0000 6.5000 299.3100 298.1530 300.6040 294.0720 300.000
+ 8 0.2000 0.0000 3.0000 -1.2500 60.504 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.4660 58.6451 -2.7386 0.5000 0.0000 0.0000 147.3728 -65.2542 1.6192 5.0000 6.2500 299.3240 298.1600 300.4670 294.2420 300.000
+ 9 0.2000 0.0000 3.0000 -1.0000 60.413 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 38.9751 59.4530 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6192 5.0000 6.0000 299.3160 298.1630 300.0440 294.1280 300.000
+ 10 0.2000 0.0000 3.0000 -0.7500 60.455 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 40.5032 60.2733 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4056 1.6192 5.0000 5.7500 299.2910 298.1560 299.7050 294.3410 300.000
+ 11 0.2000 0.0000 3.0000 -0.5000 60.421 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.0520 61.1072 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6192 5.0000 5.5000 299.2770 298.1510 299.8090 294.2420 300.000
+# Sum of Counts = 70
+# Center of Mass = -2.360714+/-0.404388
+# Full Width Half-Maximum = 1.097516+/-0.286751
+# 5:26:34 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0028.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0028.dat
new file mode 100644
index 0000000..c5e77d8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0028.dat
@@ -0,0 +1,46 @@
+# scan = 28
+# date = 10/24/2011
+# time = 5:37:41 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.2 k 0 l 3 e -3.25 -1.6 0.15 preset mcu 2
+# builtin_command = scan h 0.2 k 0 l 3 e -3.25 -1.6 0.15 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = checking for TA modes in (003) along (h00)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.2000 0.0000 3.0000 -3.2500 120.837 24.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.8954 52.5120 -2.7386 0.5000 0.0000 0.0000 152.0120 -55.9760 1.6192 5.0000 8.2500 299.3280 298.1730 300.6000 294.1540 300.000
+ 2 0.2000 0.0000 3.0000 -3.1000 121.687 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7399 52.9566 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.6192 5.0000 8.1000 299.3390 298.1800 300.0820 294.2680 300.000
+ 3 0.2000 0.0000 3.0000 -2.9500 121.447 37.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.5874 53.4032 -2.7386 0.5000 0.0000 0.0000 151.4411 -57.1174 1.6192 5.0000 7.9500 299.3050 298.1700 299.7010 294.0570 300.000
+ 4 0.2000 0.0000 3.0000 -2.8000 120.506 31.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.4379 53.8518 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6192 5.0000 7.8000 299.3490 298.1830 300.6130 294.2140 300.000
+ 5 0.2000 0.0000 3.0000 -2.6500 120.897 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.2918 54.3026 -2.7386 0.5000 0.0000 0.0000 150.8338 -58.3322 1.6192 5.0000 7.6500 299.3430 298.1860 299.9250 294.1920 300.000
+ 6 0.2000 0.0000 3.0000 -2.5000 121.076 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.1491 54.7558 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6192 5.0000 7.5000 299.3050 298.1750 300.0210 294.4180 300.000
+ 7 0.2000 0.0000 3.0000 -2.3500 121.268 27.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.0103 55.2114 -2.7386 0.5000 0.0000 0.0000 150.1858 -59.6284 1.6192 5.0000 7.3500 299.3490 298.1890 300.4270 294.4040 300.000
+ 8 0.2000 0.0000 3.0000 -2.2000 121.645 39.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.8754 55.6698 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.6192 5.0000 7.2000 299.3250 298.1820 299.7090 294.4140 300.000
+ 9 0.2000 0.0000 3.0000 -2.0500 121.475 41.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.7449 56.1309 -2.7386 0.5000 0.0000 0.0000 149.4921 -61.0158 1.6192 5.0000 7.0500 299.3260 298.1810 300.4570 294.3750 300.000
+ 10 0.2000 0.0000 3.0000 -1.9000 121.270 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6189 56.5950 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.6192 5.0000 6.9000 299.3510 298.1910 300.1990 294.2810 300.000
+ 11 0.2000 0.0000 3.0000 -1.7500 121.250 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4978 57.0622 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.6192 5.0000 6.7500 299.3070 298.1800 299.7130 294.6510 300.000
+ 12 0.2000 0.0000 3.0000 -1.6000 121.293 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.3817 57.5328 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.6192 5.0000 6.6000 299.3480 298.1910 300.5470 294.3130 300.000
+# Sum of Counts = 277
+# Center of Mass = -2.523285+/-0.216183
+# Full Width Half-Maximum = 0.920228+/-0.139183
+# 6:02:43 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0029.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0029.dat
new file mode 100644
index 0000000..a5ad09f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0029.dat
@@ -0,0 +1,39 @@
+# scan = 29
+# date = 10/24/2011
+# time = 6:08:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e 1.0 2.0 0.2 preset mcu 1
+# builtin_command = scan h 0 k 0 l 3.4 e 1.0 2.0 0.2 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = check LA phonon (0,0,3.4) phonon creation side
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 1.0000 60.084 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1660 75.1455 -2.7386 0.5000 0.0000 0.0000 137.6264 -84.7472 1.7991 5.0000 4.0000 299.3490 298.2010 299.8310 294.5270 300.000
+ 2 0.0000 0.0000 3.4000 1.2000 60.635 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.5055 76.1085 -2.7386 0.5000 0.0000 0.0000 136.2534 -87.4932 1.7991 5.0000 3.8000 299.3320 298.1910 299.6410 294.3550 300.000
+ 3 0.0000 0.0000 3.4000 1.4000 60.605 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 46.8750 77.1093 -2.7386 0.5000 0.0000 0.0000 134.7310 -90.5379 1.7991 5.0000 3.6000 299.3390 298.1920 300.3120 294.4390 300.000
+ 4 0.0000 0.0000 3.4000 1.6000 61.089 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.2774 78.1526 -2.7386 0.5000 0.0000 0.0000 133.0285 -93.9430 1.7991 5.0000 3.4000 299.3610 298.2020 300.5520 294.4850 300.000
+ 5 0.0000 0.0000 3.4000 1.8000 11.291 0.000 17185.000 0.188 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.7160 79.2441 -2.7386 0.5000 0.0000 0.0000 131.1045 -97.7912 1.7991 5.0000 3.2000 299.3680 298.2050 300.2120 294.3900 300.000
+# Sum of Counts = 19
+# Center of Mass = 1.252632+/-0.409623
+# Full Width Half-Maximum = 0.446594+/-0.419480
+# 6:13:14 PM 10/24/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0030.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0030.dat
new file mode 100644
index 0000000..9ee300e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0030.dat
@@ -0,0 +1,40 @@
+# scan = 30
+# date = 10/24/2011
+# time = 6:13:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 2.6 e 1.0 2.0 0.2 preset mcu 1
+# builtin_command = scan h 0 k 0 l 2.6 e 1.0 2.0 0.2 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = check LA phonon (0,0,3.4) phonon creation side
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 2.6000 1.0000 60.631 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.2122 55.4080 -2.7386 0.5000 0.0000 0.0000 137.6264 -84.7472 1.3758 5.0000 4.0000 299.3480 298.2040 299.8520 294.4460 300.000
+ 2 0.0000 0.0000 2.6000 1.2000 60.794 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.7832 55.9764 -2.7386 0.5000 0.0000 0.0000 136.2533 -87.4932 1.3758 5.0000 3.8000 299.3300 298.1940 299.6410 294.3950 300.000
+ 3 0.0000 0.0000 2.6000 1.4000 60.840 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.3852 56.5439 -2.7386 0.5000 0.0000 0.0000 134.7310 -90.5379 1.3758 5.0000 3.6000 299.3400 298.1920 300.2410 294.2790 300.000
+ 4 0.0000 0.0000 2.6000 1.6000 60.745 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0216 57.1101 -2.7386 0.5000 0.0000 0.0000 133.0285 -93.9430 1.3758 5.0000 3.4000 299.3690 298.1990 300.5630 294.3400 300.000
+ 5 0.0000 0.0000 2.6000 1.8000 60.777 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.6963 57.6738 -2.7386 0.5000 0.0000 0.0000 131.1045 -97.7911 1.3758 5.0000 3.2000 299.3690 298.2050 300.2450 294.4490 300.000
+ 6 0.0000 0.0000 2.6000 2.0000 60.463 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.4134 58.2336 -2.7386 0.5000 0.0000 0.0000 128.9018 -102.1965 1.3758 5.0000 3.0000 299.3540 298.2030 299.8290 294.3100 300.000
+# Sum of Counts = 41
+# Center of Mass = 1.551220+/-0.346460
+# Full Width Half-Maximum = 0.659818+/-0.294180
+# 6:20:39 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0031.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0031.dat
new file mode 100644
index 0000000..b859351
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0031.dat
@@ -0,0 +1,43 @@
+# scan = 31
+# date = 10/24/2011
+# time = 7:34:02 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.4 e -2.5 -0.5 0.25 preset mcu 1
+# builtin_command = scan h -1 k 0 l 2.4 e -2.5 -0.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Check LA phonon at (0,0,0.4) in (-1,0,2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.4000 -2.5000 61.083 87.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2634 71.4834 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0385 5.0000 7.5000 299.3180 298.1540 300.1470 296.2460 300.000
+ 2 -1.0000 0.0000 2.4000 -2.2500 60.914 145.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0229 72.4073 -2.7386 0.5000 0.0000 0.0000 149.9598 -60.0802 2.0385 5.0000 7.2500 299.3480 298.1620 300.5550 296.2990 300.000
+ 3 -1.0000 0.0000 2.4000 -2.0000 61.016 775.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7672 73.3533 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2568 2.0385 5.0000 7.0000 299.3920 298.1790 300.2830 294.5680 300.000
+ 4 -1.0000 0.0000 2.4000 -1.7500 60.876 529.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.4954 74.3233 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 2.0385 5.0000 6.7500 299.4260 298.1820 299.8800 293.6970 300.000
+ 5 -1.0000 0.0000 2.4000 -1.5000 60.956 579.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2059 75.3194 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0385 5.0000 6.5000 299.3930 298.1760 299.6250 293.9800 300.000
+ 6 -1.0000 0.0000 2.4000 -1.2500 60.945 173.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8975 76.3442 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 2.0385 5.0000 6.2500 299.3980 298.1710 300.1450 293.7720 300.000
+ 7 -1.0000 0.0000 2.4000 -1.0000 60.922 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5685 77.4005 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0385 5.0000 6.0000 299.4140 298.1770 300.6320 294.2200 300.000
+ 8 -1.0000 0.0000 2.4000 -0.7500 60.874 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2172 78.4914 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 2.0385 5.0000 5.7500 299.4370 298.1830 300.3550 293.8800 300.000
+ 9 -1.0000 0.0000 2.4000 -0.5000 60.920 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.8416 79.6208 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.0385 5.0000 5.5000 299.4230 298.1830 299.9670 293.8730 300.000
+# Sum of Counts = 2390
+# Center of Mass = -1.751151+/-0.051190
+# Full Width Half-Maximum = 0.720366+/-0.037169
+# 7:43:57 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0032.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0032.dat
new file mode 100644
index 0000000..d961980
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0032.dat
@@ -0,0 +1,50 @@
+# scan = 32
+# date = 10/24/2011
+# time = 7:46:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.4 e -2.5 -1.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.4 e -2.5 -1.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Check LA phonon at (0,0,0.4) in (-1,0,2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.4000 -2.5000 30.338 47.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2634 71.4834 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0385 5.0000 7.5000 299.3510 298.1540 300.6910 296.3280 300.000
+ 2 -1.0000 0.0000 2.4000 -2.4000 30.311 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7690 71.8504 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.0385 5.0000 7.4000 299.3590 298.1580 300.6270 296.3670 300.000
+ 3 -1.0000 0.0000 2.4000 -2.3000 30.649 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2722 72.2208 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0385 5.0000 7.3000 299.3630 298.1610 300.4550 296.3530 300.000
+ 4 -1.0000 0.0000 2.4000 -2.2000 30.410 90.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7730 72.5947 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.0385 5.0000 7.2000 299.3610 298.1610 300.2470 296.3750 300.000
+ 5 -1.0000 0.0000 2.4000 -2.1000 30.613 215.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2714 72.9722 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0385 5.0000 7.1000 299.3550 298.1600 300.0580 296.3530 300.000
+ 6 -1.0000 0.0000 2.4000 -2.0000 30.571 388.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7672 73.3533 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0385 5.0000 7.0000 299.3510 298.1590 299.8220 296.1590 300.000
+ 7 -1.0000 0.0000 2.4000 -1.9000 30.518 484.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2605 73.7383 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0385 5.0000 6.9000 299.3510 298.1620 299.6670 295.3670 300.000
+ 8 -1.0000 0.0000 2.4000 -1.8000 30.559 318.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7511 74.1272 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0385 5.0000 6.8000 299.3550 298.1630 299.6370 294.7790 300.000
+ 9 -1.0000 0.0000 2.4000 -1.7000 30.381 197.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.2389 74.5203 -2.7386 0.5000 0.0000 0.0000 148.6174 -62.7649 2.0385 5.0000 6.7000 299.3770 298.1630 299.8800 294.2510 300.000
+ 10 -1.0000 0.0000 2.4000 -1.6000 30.454 203.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7239 74.9177 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.0385 5.0000 6.6000 299.3900 298.1650 300.3230 294.1360 300.000
+ 11 -1.0000 0.0000 2.4000 -1.5000 30.354 296.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2059 75.3194 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0385 5.0000 6.5000 299.3990 298.1690 300.5900 294.3570 300.000
+ 12 -1.0000 0.0000 2.4000 -1.4000 30.556 338.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6849 75.7257 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.0385 5.0000 6.4000 299.4040 298.1700 300.6330 294.5940 300.000
+ 13 -1.0000 0.0000 2.4000 -1.3000 30.490 145.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1608 76.1368 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0385 5.0000 6.3000 299.4090 298.1750 300.4930 294.5240 300.000
+ 14 -1.0000 0.0000 2.4000 -1.2000 30.365 82.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.6334 76.5528 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0385 5.0000 6.2000 299.4120 298.1750 300.3050 294.5460 300.000
+ 15 -1.0000 0.0000 2.4000 -1.1000 30.899 48.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1026 76.9740 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1531 2.0385 5.0000 6.1000 299.4070 298.1740 300.0660 294.5400 300.000
+ 16 -1.0000 0.0000 2.4000 -1.0000 30.361 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5685 77.4005 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0385 5.0000 6.0000 299.3980 298.1710 299.8810 294.5510 300.000
+# Sum of Counts = 2941
+# Center of Mass = -1.745087+/-0.045864
+# Full Width Half-Maximum = 0.619288+/-0.025420
+# 7:55:09 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0033.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0033.dat
new file mode 100644
index 0000000..5931dca
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0033.dat
@@ -0,0 +1,49 @@
+# scan = 33
+# date = 10/24/2011
+# time = 8:31:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.1 e -1.0 0.4 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.1 e -1.0 0.4 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.1000 -1.0000 15.099 219.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6080 73.1638 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9435 5.0000 6.0000 299.2420 296.2450 300.0390 294.4320 300.000
+ 2 -1.0000 0.0000 2.1000 -0.9000 15.323 373.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0598 73.5682 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.9435 5.0000 5.9000 299.1890 296.2430 300.1480 295.9020 300.000
+ 3 -1.0000 0.0000 2.1000 -0.8000 15.293 678.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.5081 73.9773 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.9435 5.0000 5.8000 299.1800 296.2540 300.0310 296.0050 300.000
+ 4 -1.0000 0.0000 2.1000 -0.7000 15.219 1044.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9528 74.3915 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.9435 5.0000 5.7000 299.1740 296.2670 299.8790 295.9490 300.000
+ 5 -1.0000 0.0000 2.1000 -0.6000 15.293 1727.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.3937 74.8109 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.9435 5.0000 5.6000 299.1670 296.2770 299.7600 295.9910 300.000
+ 6 -1.0000 0.0000 2.1000 -0.5000 15.239 2064.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.8307 75.2358 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.9435 5.0000 5.5000 299.1600 296.2880 299.6370 295.9710 300.000
+ 7 -1.0000 0.0000 2.1000 -0.4000 15.497 5233.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2638 75.6663 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.9435 5.0000 5.4000 299.1520 296.2990 299.5540 295.9600 300.000
+ 8 -1.0000 0.0000 2.1000 -0.3000 15.065 20134.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6926 76.1028 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 1.9435 5.0000 5.3000 299.1440 296.3110 299.5670 295.8460 300.000
+ 9 -1.0000 0.0000 2.1000 -0.2000 15.256 4549.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1171 76.5455 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 1.9435 5.0000 5.2000 299.1410 296.3230 299.7010 295.8440 300.000
+ 10 -1.0000 0.0000 2.1000 -0.1000 15.359 1358.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.5372 76.9947 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 1.9435 5.0000 5.1000 299.1410 296.3370 299.9510 295.7540 300.000
+ 11 -1.0000 0.0000 2.1000 0.0000 15.270 491.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9526 77.4506 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 1.9435 5.0000 5.0000 299.1470 296.3510 300.2680 295.7140 300.000
+ 12 -1.0000 0.0000 2.1000 0.1000 15.179 384.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3632 77.9137 -2.7386 0.5000 0.0000 0.0000 142.4878 -75.0243 1.9435 5.0000 4.9000 299.1540 296.3640 300.5550 295.8140 300.000
+ 13 -1.0000 0.0000 2.1000 0.2000 15.378 472.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7687 78.3842 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 1.9435 5.0000 4.8000 299.1640 296.3810 300.7440 295.8680 300.000
+ 14 -1.0000 0.0000 2.1000 0.3000 15.284 674.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1691 78.8624 -2.7386 0.5000 0.0000 0.0000 141.5559 -76.8882 1.9435 5.0000 4.7000 299.1720 296.3960 300.7990 295.8600 300.000
+ 15 -1.0000 0.0000 2.1000 0.4000 15.269 862.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5640 79.3489 -2.7386 0.5000 0.0000 0.0000 141.0625 -77.8750 1.9435 5.0000 4.6000 299.1800 296.4110 300.7830 295.8070 300.000
+# Sum of Counts = 40262
+# Center of Mass = -0.307866+/-0.002419
+# Full Width Half-Maximum = 0.429226+/-0.002987
+# 8:36:09 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0034.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0034.dat
new file mode 100644
index 0000000..978e86f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0034.dat
@@ -0,0 +1,52 @@
+# scan = 34
+# date = 10/24/2011
+# time = 8:36:09 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.2 e -1.3 0.4 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.2 e -1.3 0.4 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.2000 -1.3000 15.285 238.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.1964 73.3122 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9743 5.0000 6.3000 299.1850 296.4310 300.6640 296.0370 300.000
+ 2 -1.0000 0.0000 2.2000 -1.2000 15.119 309.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6619 73.7110 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9743 5.0000 6.2000 299.1870 296.4460 300.5480 296.0090 300.000
+ 3 -1.0000 0.0000 2.2000 -1.1000 15.436 521.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1242 74.1143 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9743 5.0000 6.1000 299.1870 296.4580 300.4180 295.9730 300.000
+ 4 -1.0000 0.0000 2.2000 -1.0000 15.243 689.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5832 74.5224 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9743 5.0000 6.0000 299.1840 296.4700 300.2830 295.9690 300.000
+ 5 -1.0000 0.0000 2.2000 -0.9000 15.127 490.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.0388 74.9354 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.9743 5.0000 5.9000 299.1840 296.4840 300.1260 295.8140 300.000
+ 6 -1.0000 0.0000 2.2000 -0.8000 15.297 491.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.4907 75.3535 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.9743 5.0000 5.8000 299.1770 296.4910 300.0040 295.9430 300.000
+ 7 -1.0000 0.0000 2.2000 -0.7000 15.340 1763.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9390 75.7770 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.9743 5.0000 5.7000 299.1860 296.5060 299.7850 295.5080 300.000
+ 8 -1.0000 0.0000 2.2000 -0.6000 15.195 570.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3835 76.2060 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.9743 5.0000 5.6000 299.2090 296.5290 299.4340 294.3460 300.000
+ 9 -1.0000 0.0000 2.2000 -0.5000 15.253 210.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8240 76.6408 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.9743 5.0000 5.5000 299.1910 296.5350 299.4470 294.8400 300.000
+ 10 -1.0000 0.0000 2.2000 -0.4000 15.215 85.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2605 77.0817 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.9743 5.0000 5.4000 299.1710 296.5380 299.4940 295.2720 300.000
+ 11 -1.0000 0.0000 2.2000 -0.3000 15.213 45.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.6927 77.5288 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.9743 5.0000 5.3000 299.1650 296.5520 299.4510 294.7160 300.000
+ 12 -1.0000 0.0000 2.2000 -0.2000 15.467 47.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1205 77.9826 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 1.9743 5.0000 5.2000 299.1650 296.5580 299.6910 295.1600 300.000
+ 13 -1.0000 0.0000 2.2000 -0.1000 15.408 53.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.5438 78.4432 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 1.9743 5.0000 5.1000 299.1710 296.5750 299.9010 294.5740 300.000
+ 14 -1.0000 0.0000 2.2000 0.0000 15.260 68.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.9624 78.9111 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 1.9743 5.0000 5.0000 299.1660 296.5790 300.3550 295.4320 300.000
+ 15 -1.0000 0.0000 2.2000 0.1000 15.203 41.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.3760 79.3865 -2.7386 0.5000 0.0000 0.0000 142.4877 -75.0243 1.9743 5.0000 4.9000 299.1910 296.6010 300.4820 294.7290 300.000
+ 16 -1.0000 0.0000 2.2000 0.2000 15.150 49.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7846 79.8698 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 1.9743 5.0000 4.8000 299.1980 296.6090 300.7080 295.2360 300.000
+ 17 -1.0000 0.0000 2.2000 0.3000 15.283 30.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.1879 80.3614 -2.7386 0.5000 0.0000 0.0000 141.5559 -76.8882 1.9743 5.0000 4.7000 299.1950 296.6220 300.7540 295.3710 300.000
+ 18 -1.0000 0.0000 2.2000 0.4000 15.243 44.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5857 80.8617 -2.7386 0.5000 0.0000 0.0000 141.0625 -77.8750 1.9743 5.0000 4.6000 299.2030 296.6320 300.7590 295.5330 300.000
+# Sum of Counts = 5743
+# Center of Mass = -0.779889+/-0.015104
+# Full Width Half-Maximum = 0.612384+/-0.012074
+# 8:41:50 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0035.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0035.dat
new file mode 100644
index 0000000..871f02a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0035.dat
@@ -0,0 +1,80 @@
+# scan = 35
+# date = 10/24/2011
+# time = 8:41:50 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -6.5 -2.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -6.5 -2.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -6.5000 30.513 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.3152 61.1862 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.1060 5.0000 11.5000 299.1890 296.6570 300.5500 296.0550 300.000
+ 2 -1.0000 0.0000 2.6000 -6.4000 30.440 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.8837 61.4809 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.1060 5.0000 11.4000 299.1860 296.6740 300.2940 296.0140 300.000
+ 3 -1.0000 0.0000 2.6000 -6.3000 30.475 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.4515 61.7768 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.1060 5.0000 11.3000 299.1790 296.6900 300.0520 295.9730 300.000
+ 4 -1.0000 0.0000 2.6000 -6.2000 30.534 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.0186 62.0739 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.1060 5.0000 11.2000 299.1660 296.7050 299.8320 296.0030 300.000
+ 5 -1.0000 0.0000 2.6000 -6.1000 30.355 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5850 62.3722 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.1060 5.0000 11.1000 299.1520 296.7170 299.6150 295.9450 300.000
+ 6 -1.0000 0.0000 2.6000 -6.0000 30.414 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.1505 62.6718 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.1060 5.0000 11.0000 299.1370 296.7290 299.5730 295.9190 300.000
+ 7 -1.0000 0.0000 2.6000 -5.9000 30.685 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.7153 62.9727 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.1060 5.0000 10.9000 299.1310 296.7430 299.8840 295.9590 300.000
+ 8 -1.0000 0.0000 2.6000 -5.8000 30.685 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2792 63.2749 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.1060 5.0000 10.8000 299.1430 296.7620 300.4550 295.9800 300.000
+ 9 -1.0000 0.0000 2.6000 -5.7000 30.240 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.8424 63.5785 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.1060 5.0000 10.7000 299.1600 296.7830 300.7960 295.9920 300.000
+ 10 -1.0000 0.0000 2.6000 -5.6000 30.440 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.4046 63.8836 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.1060 5.0000 10.6000 299.1720 296.8030 300.8030 295.9940 300.000
+ 11 -1.0000 0.0000 2.6000 -5.5000 30.344 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.9658 64.1901 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.1060 5.0000 10.5000 299.1790 296.8220 300.6530 296.0010 300.000
+ 12 -1.0000 0.0000 2.6000 -5.4000 30.470 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.5262 64.4981 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.1060 5.0000 10.4000 299.1830 296.8390 300.4330 295.9850 300.000
+ 13 -1.0000 0.0000 2.6000 -5.3000 30.193 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0855 64.8076 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.1060 5.0000 10.3000 299.1770 296.8530 300.1970 295.9800 300.000
+ 14 -1.0000 0.0000 2.6000 -5.2000 30.443 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6438 65.1187 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.1060 5.0000 10.2000 299.1690 296.8650 299.9470 295.9820 300.000
+ 15 -1.0000 0.0000 2.6000 -5.1000 30.544 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.2011 65.4315 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.1060 5.0000 10.1000 299.1560 296.8760 299.7230 295.9340 300.000
+ 16 -1.0000 0.0000 2.6000 -5.0000 30.290 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.7573 65.7459 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.1060 5.0000 10.0000 299.1430 296.8870 299.5730 295.8280 300.000
+ 17 -1.0000 0.0000 2.6000 -4.9000 30.511 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3124 66.0621 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.1060 5.0000 9.9000 299.1370 296.8990 299.6290 295.5920 300.000
+ 18 -1.0000 0.0000 2.6000 -4.8000 30.402 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8663 66.3800 -2.7386 0.5000 0.0000 0.0000 154.4956 -51.0086 2.1060 5.0000 9.8000 299.1320 296.9100 300.1140 295.8020 300.000
+ 19 -1.0000 0.0000 2.6000 -4.7000 30.552 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.4190 66.6998 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.1060 5.0000 9.7000 299.1440 296.9260 300.6070 295.8740 300.000
+ 20 -1.0000 0.0000 2.6000 -4.6000 30.667 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.9705 67.0214 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.1060 5.0000 9.6000 299.1600 296.9460 300.7800 295.8510 300.000
+ 21 -1.0000 0.0000 2.6000 -4.5000 30.578 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.5207 67.3450 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.1060 5.0000 9.5000 299.1740 296.9630 300.6980 295.8040 300.000
+ 22 -1.0000 0.0000 2.6000 -4.4000 30.454 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0696 67.6706 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.1060 5.0000 9.4000 299.1800 296.9790 300.4950 295.7530 300.000
+ 23 -1.0000 0.0000 2.6000 -4.3000 30.273 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6172 67.9982 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.1060 5.0000 9.3000 299.1730 296.9900 300.3100 295.9160 300.000
+ 24 -1.0000 0.0000 2.6000 -4.2000 30.422 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.1634 68.3279 -2.7386 0.5000 0.0000 0.0000 153.6150 -52.7696 2.1060 5.0000 9.2000 299.1680 297.0010 300.0620 295.8750 300.000
+ 25 -1.0000 0.0000 2.6000 -4.1000 30.462 58.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.7082 68.6597 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.1060 5.0000 9.1000 299.1600 297.0110 299.8270 295.7810 300.000
+ 26 -1.0000 0.0000 2.6000 -4.0000 30.351 65.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.2514 68.9938 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 2.1060 5.0000 9.0000 299.1520 297.0190 299.6310 295.6020 300.000
+ 27 -1.0000 0.0000 2.6000 -3.9000 30.663 61.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7932 69.3302 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 2.1060 5.0000 8.9000 299.1350 297.0240 299.5720 295.6780 300.000
+ 28 -1.0000 0.0000 2.6000 -3.8000 30.688 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3334 69.6690 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.1060 5.0000 8.8000 299.1290 297.0330 299.8460 295.6670 300.000
+ 29 -1.0000 0.0000 2.6000 -3.7000 30.490 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8720 70.0102 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.1060 5.0000 8.7000 299.1390 297.0450 300.3500 295.6980 300.000
+ 30 -1.0000 0.0000 2.6000 -3.6000 30.448 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4090 70.3538 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.1060 5.0000 8.6000 299.1510 297.0600 300.6780 295.7830 300.000
+ 31 -1.0000 0.0000 2.6000 -3.5000 30.568 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.9443 70.7001 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0757 2.1060 5.0000 8.5000 299.1640 297.0760 300.7440 295.7840 300.000
+ 32 -1.0000 0.0000 2.6000 -3.4000 30.193 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.4778 71.0490 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.1060 5.0000 8.4000 299.1740 297.0910 300.5910 295.7110 300.000
+ 33 -1.0000 0.0000 2.6000 -3.3000 30.309 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.0095 71.4007 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.1060 5.0000 8.3000 299.1770 297.1030 300.3780 295.6550 300.000
+ 34 -1.0000 0.0000 2.6000 -3.2000 30.558 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.5394 71.7552 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.1060 5.0000 8.2000 299.1740 297.1130 300.1440 295.6510 300.000
+ 35 -1.0000 0.0000 2.6000 -3.1000 30.531 43.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0673 72.1126 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.1060 5.0000 8.1000 299.1630 297.1200 299.9080 295.6600 300.000
+ 36 -1.0000 0.0000 2.6000 -3.0000 30.483 90.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.5933 72.4729 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.1060 5.0000 8.0000 299.1500 297.1250 299.7070 295.7090 300.000
+ 37 -1.0000 0.0000 2.6000 -2.9000 30.356 192.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.1172 72.8364 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.1060 5.0000 7.9000 299.1820 297.1470 299.2860 294.3310 300.000
+ 38 -1.0000 0.0000 2.6000 -2.8000 30.700 263.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6391 73.2031 -2.7386 0.5000 0.0000 0.0000 151.1423 -57.7152 2.1060 5.0000 7.8000 299.1740 297.1520 299.4950 294.3340 300.000
+ 39 -1.0000 0.0000 2.6000 -2.7000 30.365 159.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1589 73.5731 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.1060 5.0000 7.7000 299.1350 297.1470 300.3550 295.6720 300.000
+ 40 -1.0000 0.0000 2.6000 -2.6000 30.395 132.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6764 73.9464 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.1060 5.0000 7.6000 299.1590 297.1620 300.7740 295.6950 300.000
+ 41 -1.0000 0.0000 2.6000 -2.5000 30.391 131.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1917 74.3234 -2.7386 0.5000 0.0000 0.0000 150.5150 -58.9695 2.1060 5.0000 7.5000 299.1750 297.1780 300.8750 295.6900 300.000
+ 42 -1.0000 0.0000 2.6000 -2.4000 30.555 107.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7046 74.7039 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.1060 5.0000 7.4000 299.1830 297.1880 300.7570 295.7840 300.000
+ 43 -1.0000 0.0000 2.6000 -2.3000 30.498 119.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2151 75.0882 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.1060 5.0000 7.3000 299.1880 297.2000 300.5500 295.7250 300.000
+ 44 -1.0000 0.0000 2.6000 -2.2000 30.411 110.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.7232 75.4763 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.1060 5.0000 7.2000 299.1880 297.2090 300.3040 295.7150 300.000
+ 45 -1.0000 0.0000 2.6000 -2.1000 30.488 52.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2286 75.8685 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7779 2.1060 5.0000 7.1000 299.1800 297.2160 300.0620 295.7540 300.000
+ 46 -1.0000 0.0000 2.6000 -2.0000 30.440 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 299.1700 297.2220 299.8180 295.6700 300.000
+# Sum of Counts = 1890
+# Center of Mass = -2.972116+/-0.098219
+# Full Width Half-Maximum = 1.504505+/-0.054302
+# 9:07:36 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0036.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0036.dat
new file mode 100644
index 0000000..f902e33
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0036.dat
@@ -0,0 +1,77 @@
+# scan = 36
+# date = 10/24/2011
+# time = 9:07:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -7.2 -3.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -7.2 -3.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -7.2000 30.600 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.7064 63.1626 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.2130 5.0000 12.2000 299.1500 297.2230 299.5830 295.8880 300.000
+ 2 -1.0000 0.0000 2.9000 -7.1000 30.788 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2950 63.4554 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.2130 5.0000 12.1000 299.1350 297.2250 299.6710 295.9140 300.000
+ 3 -1.0000 0.0000 2.9000 -7.0000 30.406 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.8829 63.7494 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.2130 5.0000 12.0000 299.1370 297.2320 300.0960 295.8750 300.000
+ 4 -1.0000 0.0000 2.9000 -6.9000 30.658 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4702 64.0447 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.2130 5.0000 11.9000 299.1520 297.2440 300.5720 295.9700 300.000
+ 5 -1.0000 0.0000 2.9000 -6.8000 30.450 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0568 64.3412 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.2130 5.0000 11.8000 299.1660 297.2580 300.7720 295.9870 300.000
+ 6 -1.0000 0.0000 2.9000 -6.7000 30.438 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6427 64.6390 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.2130 5.0000 11.7000 299.1760 297.2700 300.7170 295.9380 300.000
+ 7 -1.0000 0.0000 2.9000 -6.6000 30.725 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.2278 64.9381 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.2130 5.0000 11.6000 299.1800 297.2780 300.5590 295.9880 300.000
+ 8 -1.0000 0.0000 2.9000 -6.5000 30.653 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.8122 65.2385 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.2130 5.0000 11.5000 299.1790 297.2870 300.3330 295.8900 300.000
+ 9 -1.0000 0.0000 2.9000 -6.4000 30.274 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3957 65.5404 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.2130 5.0000 11.4000 299.1740 297.2920 300.1000 295.9320 300.000
+ 10 -1.0000 0.0000 2.9000 -6.3000 30.162 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.9784 65.8436 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.2130 5.0000 11.3000 299.1640 297.2960 299.8770 295.9360 300.000
+ 11 -1.0000 0.0000 2.9000 -6.2000 30.311 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5603 66.1484 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.2130 5.0000 11.2000 299.1520 297.2980 299.6750 295.8830 300.000
+ 12 -1.0000 0.0000 2.9000 -6.1000 30.461 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.1412 66.4546 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 2.2130 5.0000 11.1000 299.1390 297.3010 299.5850 295.8290 300.000
+ 13 -1.0000 0.0000 2.9000 -6.0000 30.520 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7213 66.7624 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.2130 5.0000 11.0000 299.1280 297.3050 299.7680 295.8480 300.000
+ 14 -1.0000 0.0000 2.9000 -5.9000 30.588 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.3005 67.0718 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.2130 5.0000 10.9000 299.1370 297.3130 300.2280 295.8380 300.000
+ 15 -1.0000 0.0000 2.9000 -5.8000 30.375 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8786 67.3828 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 2.2130 5.0000 10.8000 299.1490 297.3240 300.6260 295.8830 300.000
+ 16 -1.0000 0.0000 2.9000 -5.7000 30.377 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4558 67.6954 -2.7386 0.5000 0.0000 0.0000 155.6647 -48.6702 2.2130 5.0000 10.7000 299.1650 297.3350 300.7270 295.8500 300.000
+ 17 -1.0000 0.0000 2.9000 -5.6000 30.592 68.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.0319 68.0098 -2.7386 0.5000 0.0000 0.0000 155.5429 -48.9142 2.2130 5.0000 10.6000 299.1740 297.3440 300.6220 295.8100 300.000
+ 18 -1.0000 0.0000 2.9000 -5.5000 30.455 56.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.6070 68.3259 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.2130 5.0000 10.5000 299.1790 297.3530 300.4250 295.7500 300.000
+ 19 -1.0000 0.0000 2.9000 -5.4000 30.388 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1810 68.6439 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.2130 5.0000 10.4000 299.1750 297.3580 300.1930 295.6650 300.000
+ 20 -1.0000 0.0000 2.9000 -5.3000 30.537 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7539 68.9636 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.2130 5.0000 10.3000 299.1690 297.3610 299.9830 295.7120 300.000
+ 21 -1.0000 0.0000 2.9000 -5.2000 30.301 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3256 69.2854 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 2.2130 5.0000 10.2000 299.1580 297.3640 299.7640 295.6780 300.000
+ 22 -1.0000 0.0000 2.9000 -5.1000 30.441 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8961 69.6090 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.2130 5.0000 10.1000 299.1460 297.3640 299.6070 295.7330 300.000
+ 23 -1.0000 0.0000 2.9000 -5.0000 30.419 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4654 69.9347 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.2130 5.0000 10.0000 299.1330 297.3660 299.6370 295.7310 300.000
+ 24 -1.0000 0.0000 2.9000 -4.9000 30.174 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0334 70.2624 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.2130 5.0000 9.9000 299.1310 297.3700 299.9870 295.6990 300.000
+ 25 -1.0000 0.0000 2.9000 -4.8000 30.265 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6002 70.5922 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.2130 5.0000 9.8000 299.1400 297.3770 300.4740 295.7600 300.000
+ 26 -1.0000 0.0000 2.9000 -4.7000 30.565 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.1656 70.9242 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.2130 5.0000 9.7000 299.1570 297.3870 300.7020 295.6680 300.000
+ 27 -1.0000 0.0000 2.9000 -4.6000 30.106 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7297 71.2585 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.2130 5.0000 9.6000 299.1720 297.3980 300.7000 295.6520 300.000
+ 28 -1.0000 0.0000 2.9000 -4.5000 30.688 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2923 71.5951 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2130 5.0000 9.5000 299.1770 297.4060 300.5350 295.6490 300.000
+ 29 -1.0000 0.0000 2.9000 -4.4000 30.250 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8535 71.9340 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.2130 5.0000 9.4000 299.1780 297.4110 300.3260 295.6520 300.000
+ 30 -1.0000 0.0000 2.9000 -4.3000 30.607 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4132 72.2754 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2130 5.0000 9.3000 299.1710 297.4150 300.1130 295.7320 300.000
+ 31 -1.0000 0.0000 2.9000 -4.2000 30.288 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.9714 72.6192 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2130 5.0000 9.2000 299.1620 297.4180 299.8550 295.6960 300.000
+ 32 -1.0000 0.0000 2.9000 -4.1000 30.266 61.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.5280 72.9656 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2130 5.0000 9.1000 299.1480 297.4180 299.6700 295.6330 300.000
+ 33 -1.0000 0.0000 2.9000 -4.0000 30.345 100.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0830 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 299.1770 297.4330 299.3240 294.3740 300.000
+ 34 -1.0000 0.0000 2.9000 -3.9000 30.420 110.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6363 73.6665 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2130 5.0000 8.9000 299.1320 297.4190 299.8590 295.6190 300.000
+ 35 -1.0000 0.0000 2.9000 -3.8000 30.634 96.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1880 74.0211 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2130 5.0000 8.8000 299.1380 297.4270 300.4150 295.7160 300.000
+ 36 -1.0000 0.0000 2.9000 -3.7000 30.481 72.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7378 74.3786 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2130 5.0000 8.7000 299.1640 297.4420 300.6800 295.3790 300.000
+ 37 -1.0000 0.0000 2.9000 -3.6000 30.400 70.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2859 74.7390 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2130 5.0000 8.6000 299.1750 297.4480 300.7870 295.6450 300.000
+ 38 -1.0000 0.0000 2.9000 -3.5000 30.371 101.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8321 75.1025 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2130 5.0000 8.5000 299.2250 297.4710 300.3960 294.3890 300.000
+ 39 -1.0000 0.0000 2.9000 -3.4000 30.585 75.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3764 75.4692 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2130 5.0000 8.4000 299.1820 297.4600 300.4880 295.7300 300.000
+ 40 -1.0000 0.0000 2.9000 -3.3000 30.586 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.9188 75.8391 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2130 5.0000 8.3000 299.1810 297.4630 300.2320 295.6530 300.000
+ 41 -1.0000 0.0000 2.9000 -3.2000 30.371 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4592 76.2123 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1616 2.2130 5.0000 8.2000 299.1670 297.4650 300.0120 295.8140 300.000
+ 42 -1.0000 0.0000 2.9000 -3.1000 30.460 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9974 76.5890 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 2.2130 5.0000 8.1000 299.1550 297.4650 299.7970 295.7500 300.000
+ 43 -1.0000 0.0000 2.9000 -3.0000 30.278 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5336 76.9692 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.2130 5.0000 8.0000 299.1450 297.4630 299.6240 295.6920 300.000
+# Sum of Counts = 1268
+# Center of Mass = -4.375868+/-0.176019
+# Full Width Half-Maximum = 1.989722+/-0.081939
+# 9:31:23 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0037.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0037.dat
new file mode 100644
index 0000000..e0dd09a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0037.dat
@@ -0,0 +1,79 @@
+# scan = 37
+# date = 10/24/2011
+# time = 9:31:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -7.9000 30.454 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0598 65.3850 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3259 5.0000 12.9000 299.1300 297.4620 299.7070 295.9170 300.000
+ 2 -1.0000 0.0000 3.2000 -7.8000 30.461 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6669 65.6762 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.3259 5.0000 12.8000 299.1310 297.4640 300.1280 295.9350 300.000
+ 3 -1.0000 0.0000 3.2000 -7.7000 30.282 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2736 65.9686 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.3259 5.0000 12.7000 299.1430 297.4710 300.5730 295.9790 300.000
+ 4 -1.0000 0.0000 3.2000 -7.6000 30.398 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.8796 66.2622 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.3259 5.0000 12.6000 299.1560 297.4790 300.7340 296.0010 300.000
+ 5 -1.0000 0.0000 3.2000 -7.5000 30.418 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4850 66.5572 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.3259 5.0000 12.5000 299.1660 297.4860 300.6740 295.9760 300.000
+ 6 -1.0000 0.0000 3.2000 -7.4000 30.193 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0897 66.8534 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.3259 5.0000 12.4000 299.1700 297.4920 300.5050 295.9550 300.000
+ 7 -1.0000 0.0000 3.2000 -7.3000 30.445 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6936 67.1510 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.3259 5.0000 12.3000 299.1690 297.4970 300.3080 295.9480 300.000
+ 8 -1.0000 0.0000 3.2000 -7.2000 30.250 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2968 67.4500 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.3259 5.0000 12.2000 299.1630 297.4990 300.0580 295.9260 300.000
+ 9 -1.0000 0.0000 3.2000 -7.1000 30.449 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8993 67.7504 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.3259 5.0000 12.1000 299.1560 297.5000 299.8560 295.8680 300.000
+ 10 -1.0000 0.0000 3.2000 -7.0000 30.116 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5010 68.0522 -2.7386 0.5000 0.0000 0.0000 157.1006 -45.7986 2.3259 5.0000 12.0000 299.1440 297.5000 299.6580 295.7720 300.000
+ 11 -1.0000 0.0000 3.2000 -6.9000 30.357 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1018 68.3555 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3259 5.0000 11.9000 299.1280 297.5000 299.5940 295.7440 300.000
+ 12 -1.0000 0.0000 3.2000 -6.8000 30.415 39.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7018 68.6602 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3259 5.0000 11.8000 299.1210 297.4990 299.8060 295.7390 300.000
+ 13 -1.0000 0.0000 3.2000 -6.7000 30.234 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3010 68.9666 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3259 5.0000 11.7000 299.1300 297.5040 300.2670 295.6930 300.000
+ 14 -1.0000 0.0000 3.2000 -6.6000 30.157 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8992 69.2746 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3259 5.0000 11.6000 299.1430 297.5110 300.6360 295.7520 300.000
+ 15 -1.0000 0.0000 3.2000 -6.5000 30.430 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4966 69.5841 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3259 5.0000 11.5000 299.1550 297.5180 300.7080 295.7940 300.000
+ 16 -1.0000 0.0000 3.2000 -6.4000 30.019 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0930 69.8954 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.3259 5.0000 11.4000 299.1620 297.5250 300.6160 295.8550 300.000
+ 17 -1.0000 0.0000 3.2000 -6.3000 30.202 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6884 70.2083 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.3259 5.0000 11.3000 299.1640 297.5280 300.4260 295.8490 300.000
+ 18 -1.0000 0.0000 3.2000 -6.2000 30.386 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2829 70.5230 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3259 5.0000 11.2000 299.1630 297.5330 300.2240 295.8120 300.000
+ 19 -1.0000 0.0000 3.2000 -6.1000 30.648 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8763 70.8395 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3259 5.0000 11.1000 299.1600 297.5340 299.9740 295.6530 300.000
+ 20 -1.0000 0.0000 3.2000 -5.9999 30.418 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4687 71.1579 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9597 2.3259 5.0000 10.9999 299.1510 297.5330 299.7580 295.6180 300.000
+ 21 -1.0000 0.0000 3.2000 -5.9000 30.300 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0600 71.4781 -2.7386 0.5000 0.0000 0.0000 155.9034 -48.1930 2.3259 5.0000 10.9000 299.1370 297.5300 299.6170 295.6500 300.000
+ 22 -1.0000 0.0000 3.2000 -5.8000 30.639 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6502 71.8003 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3259 5.0000 10.8000 299.1250 297.5310 299.6310 295.5960 300.000
+ 23 -1.0000 0.0000 3.2000 -5.7000 30.450 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2392 72.1244 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3259 5.0000 10.7000 299.1220 297.5310 299.9810 295.6820 300.000
+ 24 -1.0000 0.0000 3.2000 -5.6000 30.372 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.8271 72.4507 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3259 5.0000 10.6000 299.1310 297.5360 300.4630 295.8010 300.000
+ 25 -1.0000 0.0000 3.2000 -5.5000 30.471 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4138 72.7790 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3259 5.0000 10.5000 299.1460 297.5430 300.7020 295.7490 300.000
+ 26 -1.0000 0.0000 3.2000 -5.4000 30.317 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9992 73.1094 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3259 5.0000 10.4000 299.1600 297.5490 300.6920 295.7110 300.000
+ 27 -1.0000 0.0000 3.2000 -5.3000 30.357 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5834 73.4421 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3259 5.0000 10.3000 299.1690 297.5560 300.5280 295.6460 300.000
+ 28 -1.0000 0.0000 3.2000 -5.2000 30.415 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1662 73.7770 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3259 5.0000 10.2000 299.1650 297.5580 300.3330 295.7340 300.000
+ 29 -1.0000 0.0000 3.2000 -5.1000 30.569 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7478 74.1142 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.3259 5.0000 10.1000 299.1580 297.5590 300.1330 295.8220 300.000
+ 30 -1.0000 0.0000 3.2000 -5.0000 30.732 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3280 74.4538 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3259 5.0000 10.0000 299.1490 297.5590 299.8930 295.7330 300.000
+ 31 -1.0000 0.0000 3.2000 -4.8999 30.354 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9067 74.7959 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 2.3259 5.0000 9.9000 299.1410 297.5580 299.6860 295.5890 300.000
+ 32 -1.0000 0.0000 3.2000 -4.8000 30.375 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.4840 75.1405 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3259 5.0000 9.8000 299.1290 297.5550 299.6010 295.7080 300.000
+ 33 -1.0000 0.0000 3.2000 -4.7000 30.367 46.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.0599 75.4876 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3259 5.0000 9.7000 299.1170 297.5540 299.7550 295.7220 300.000
+ 34 -1.0000 0.0000 3.2000 -4.6000 30.326 59.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.6342 75.8374 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5759 2.3259 5.0000 9.6000 299.1250 297.5570 300.2160 295.6470 300.000
+ 35 -1.0000 0.0000 3.2000 -4.5000 30.499 74.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2070 76.1900 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3259 5.0000 9.5000 299.1420 297.5630 300.6220 295.6630 300.000
+ 36 -1.0000 0.0000 3.2000 -4.4000 30.426 51.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7781 76.5453 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3259 5.0000 9.4000 299.1530 297.5700 300.7340 295.7720 300.000
+ 37 -1.0000 0.0000 3.2000 -4.3000 30.293 52.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3476 76.9035 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 2.3259 5.0000 9.3000 299.1610 297.5760 300.6480 295.7450 300.000
+ 38 -1.0000 0.0000 3.2000 -4.2000 30.458 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9154 77.2647 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3259 5.0000 9.2000 299.1630 297.5790 300.4670 295.8010 300.000
+ 39 -1.0000 0.0000 3.2000 -4.1000 30.412 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.4815 77.6289 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0814 2.3259 5.0000 9.1000 299.1610 297.5820 300.2390 295.7850 300.000
+ 40 -1.0000 0.0000 3.2000 -4.0000 30.521 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.0458 77.9962 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3259 5.0000 9.0000 299.1780 297.5920 299.8760 295.0140 300.000
+ 41 -1.0000 0.0000 3.2000 -3.9000 30.443 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6083 78.3668 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.3259 5.0000 8.9000 299.1500 297.5820 299.7900 295.6270 300.000
+ 42 -1.0000 0.0000 3.2000 -3.8000 30.380 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1689 78.7406 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.3259 5.0000 8.8000 299.1490 297.5840 299.5640 295.3550 300.000
+ 43 -1.0000 0.0000 3.2000 -3.7000 30.241 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7276 79.1179 -2.7386 0.5000 0.0000 0.0000 152.8069 -54.3860 2.3259 5.0000 8.7000 299.1230 297.5780 299.6290 295.6880 300.000
+ 44 -1.0000 0.0000 3.2000 -3.6000 30.218 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.2842 79.4987 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3259 5.0000 8.6000 299.1610 297.5930 299.6260 294.3610 300.000
+ 45 -1.0000 0.0000 3.2000 -3.5000 30.246 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.8389 79.8830 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3259 5.0000 8.5000 299.1270 297.5810 300.4020 295.7490 300.000
+# Sum of Counts = 989
+# Center of Mass = -5.435081+/-0.247327
+# Full Width Half-Maximum = 2.381369+/-0.105500
+# 9:56:07 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0038.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0038.dat
new file mode 100644
index 0000000..d318fe5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0038.dat
@@ -0,0 +1,77 @@
+# scan = 38
+# date = 10/24/2011
+# time = 9:56:08 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.2000 30.557 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8852 68.9950 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.4439 5.0000 13.2000 299.1470 297.5870 300.7860 295.9670 300.000
+ 2 -1.0000 0.0000 3.5000 -8.1000 30.240 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.5072 69.2901 -2.7386 0.5000 0.0000 0.0000 158.1351 -43.7295 2.4439 5.0000 13.1000 299.1590 297.5930 300.7580 295.9880 300.000
+ 3 -1.0000 0.0000 3.5000 -8.0000 30.491 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1284 69.5865 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.4439 5.0000 13.0000 299.1640 297.5980 300.6020 295.9350 300.000
+ 4 -1.0000 0.0000 3.5000 -7.9000 30.370 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.7488 69.8843 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.4439 5.0000 12.9000 299.1660 297.6040 300.3830 295.8200 300.000
+ 5 -1.0000 0.0000 3.5000 -7.8000 30.329 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3686 70.1836 -2.7386 0.5000 0.0000 0.0000 157.8670 -44.2658 2.4439 5.0000 12.8000 299.1660 297.6050 300.1770 295.8260 300.000
+ 6 -1.0000 0.0000 3.5000 -7.7000 30.220 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.9876 70.4843 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.4439 5.0000 12.7000 299.2000 297.6220 299.6540 294.3930 300.000
+ 7 -1.0000 0.0000 3.5000 -7.6000 30.386 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.6058 70.7866 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.4439 5.0000 12.6000 299.1480 297.6040 299.7610 295.6180 300.000
+ 8 -1.0000 0.0000 3.5000 -7.5000 30.236 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2231 71.0903 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.4439 5.0000 12.5000 299.1410 297.6020 299.6630 295.5280 300.000
+ 9 -1.0000 0.0000 3.5000 -7.4000 30.354 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8396 71.3956 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.4439 5.0000 12.4000 299.1320 297.6000 299.7420 295.5060 300.000
+ 10 -1.0000 0.0000 3.5000 -7.3000 30.365 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4553 71.7026 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.4439 5.0000 12.3000 299.1290 297.6010 300.0650 295.5920 300.000
+ 11 -1.0000 0.0000 3.5000 -7.2000 30.266 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0701 72.0111 -2.7386 0.5000 0.0000 0.0000 157.2997 -45.4004 2.4439 5.0000 12.2000 299.1400 297.6040 300.3900 295.6660 300.000
+ 12 -1.0000 0.0000 3.5000 -7.1000 30.283 33.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6840 72.3214 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.4439 5.0000 12.1000 299.1470 297.6080 300.5300 295.6330 300.000
+ 13 -1.0000 0.0000 3.5000 -7.0000 30.349 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2970 72.6334 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.4439 5.0000 12.0000 299.1540 297.6130 300.4630 295.7010 300.000
+ 14 -1.0000 0.0000 3.5000 -6.9000 30.210 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9090 72.9471 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.4439 5.0000 11.9000 299.1890 297.6300 300.0620 294.5610 300.000
+ 15 -1.0000 0.0000 3.5000 -6.8000 30.403 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5200 73.2626 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2073 2.4439 5.0000 11.8000 299.1500 297.6150 300.1290 295.7690 300.000
+ 16 -1.0000 0.0000 3.5000 -6.7000 30.202 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1301 73.5800 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.4439 5.0000 11.7000 299.1440 297.6170 299.8990 295.6830 300.000
+ 17 -1.0000 0.0000 3.5000 -6.6000 30.446 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7391 73.8993 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6274 2.4439 5.0000 11.6000 299.1340 297.6140 299.7160 295.6840 300.000
+ 18 -1.0000 0.0000 3.5000 -6.5000 30.279 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3470 74.2205 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.4439 5.0000 11.5000 299.1220 297.6100 299.5970 295.6420 300.000
+ 19 -1.0000 0.0000 3.5000 -6.4000 30.183 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9539 74.5437 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.4439 5.0000 11.4000 299.1140 297.6090 299.6790 295.5600 300.000
+ 20 -1.0000 0.0000 3.5000 -6.3000 30.068 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5596 74.8689 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.4439 5.0000 11.3000 299.1290 297.6150 299.9750 295.1280 300.000
+ 21 -1.0000 0.0000 3.5000 -6.2000 30.209 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1642 75.1962 -2.7386 0.5000 0.0000 0.0000 156.2484 -47.5028 2.4439 5.0000 11.2000 299.1270 297.6140 300.5530 295.7620 300.000
+ 22 -1.0000 0.0000 3.5000 -6.1000 30.179 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7677 75.5257 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.4439 5.0000 11.1000 299.1410 297.6200 300.7710 295.7250 300.000
+ 23 -1.0000 0.0000 3.5000 -5.9999 30.494 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.3699 75.8573 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9597 2.4439 5.0000 10.9999 299.1780 297.6390 300.5570 294.8560 300.000
+ 24 -1.0000 0.0000 3.5000 -5.9000 30.277 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9710 76.1912 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.4439 5.0000 10.9000 299.1780 297.6350 300.5310 295.4380 300.000
+ 25 -1.0000 0.0000 3.5000 -5.8000 29.995 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5707 76.5273 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.4439 5.0000 10.8000 299.1700 297.6360 300.3350 295.6360 300.000
+ 26 -1.0000 0.0000 3.5000 -5.7000 30.343 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1692 76.8658 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.4439 5.0000 10.7000 299.1550 297.6330 300.1470 295.7290 300.000
+ 27 -1.0000 0.0000 3.5000 -5.6000 30.251 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7663 77.2068 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.4439 5.0000 10.6000 299.1460 297.6320 299.9340 295.7910 300.000
+ 28 -1.0000 0.0000 3.5000 -5.5000 30.408 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.3621 77.5502 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.4439 5.0000 10.5000 299.1340 297.6310 299.7240 295.7870 300.000
+ 29 -1.0000 0.0000 3.5000 -5.4000 30.067 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.9565 77.8961 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.4439 5.0000 10.4000 299.1210 297.6270 299.6050 295.7950 300.000
+ 30 -1.0000 0.0000 3.5000 -5.3000 30.087 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5495 78.2447 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.4439 5.0000 10.3000 299.1130 297.6240 299.6820 295.6870 300.000
+ 31 -1.0000 0.0000 3.5000 -5.2000 30.232 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1410 78.5959 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.4439 5.0000 10.2000 299.1350 297.6340 299.9340 295.0170 300.000
+ 32 -1.0000 0.0000 3.5000 -5.1000 30.387 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7310 78.9498 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.4439 5.0000 10.1000 299.1320 297.6310 300.5390 295.6640 300.000
+ 33 -1.0000 0.0000 3.5000 -5.0000 30.457 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3195 79.3066 -2.7386 0.5000 0.0000 0.0000 154.7700 -50.4597 2.4439 5.0000 10.0000 299.1450 297.6350 300.7670 295.7960 300.000
+ 34 -1.0000 0.0000 3.5000 -4.9000 30.493 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9064 79.6663 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.4439 5.0000 9.9000 299.1560 297.6420 300.7260 295.7860 300.000
+ 35 -1.0000 0.0000 3.5000 -4.8000 30.272 41.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.4917 80.0289 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.4439 5.0000 9.8000 299.1630 297.6470 300.5780 295.7520 300.000
+ 36 -1.0000 0.0000 3.5000 -4.7000 30.282 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0753 80.3946 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.4439 5.0000 9.7000 299.1680 297.6500 300.3580 295.7260 300.000
+ 37 -1.0000 0.0000 3.5000 -4.6000 30.465 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.6572 80.7634 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5758 2.4439 5.0000 9.6000 299.1630 297.6510 300.1250 295.6760 300.000
+ 38 -1.0000 0.0000 3.5000 -4.5000 30.279 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.2374 81.1354 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.4439 5.0000 9.5000 299.1570 297.6490 299.9170 295.6300 300.000
+ 39 -1.0000 0.0000 3.5000 -4.4000 30.435 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8158 81.5108 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.4439 5.0000 9.4000 299.1450 297.6450 299.7280 295.6700 300.000
+ 40 -1.0000 0.0000 3.5000 -4.3000 30.210 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.3924 81.8895 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.4439 5.0000 9.3000 299.1330 297.6420 299.6040 295.6260 300.000
+ 41 -1.0000 0.0000 3.5000 -4.2000 30.420 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9671 82.2717 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.4439 5.0000 9.2000 299.1230 297.6390 299.7100 295.7030 300.000
+ 42 -1.0000 0.0000 3.5000 -4.1000 30.212 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.5399 82.6575 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.4439 5.0000 9.1000 299.1220 297.6400 300.1070 295.7000 300.000
+ 43 -1.0000 0.0000 3.5000 -4.0000 30.341 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.1107 83.0470 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.4439 5.0000 9.0000 299.1370 297.6470 300.5170 295.6080 300.000
+# Sum of Counts = 839
+# Center of Mass = -6.064957+/-0.299239
+# Full Width Half-Maximum = 2.497990+/-0.122606
+# 10:19:42 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0039.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0039.dat
new file mode 100644
index 0000000..9e6e0af
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0039.dat
@@ -0,0 +1,79 @@
+# scan = 39
+# date = 10/24/2011
+# time = 10:19:43 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.8)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.8000 -7.9000 30.149 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6093 74.6442 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5663 5.0000 12.9000 299.1550 297.6530 300.6980 295.7180 300.000
+ 2 -1.0000 0.0000 3.8000 -7.8000 30.252 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2389 74.9540 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5663 5.0000 12.8000 299.1650 297.6560 300.6080 295.7030 300.000
+ 3 -1.0000 0.0000 3.8000 -7.7000 30.568 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8677 75.2656 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5663 5.0000 12.7000 299.1690 297.6600 300.4320 295.6330 300.000
+ 4 -1.0000 0.0000 3.8000 -7.6000 30.250 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4955 75.5789 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5663 5.0000 12.6000 299.1670 297.6590 300.2140 295.6550 300.000
+ 5 -1.0000 0.0000 3.8000 -7.5000 30.191 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1223 75.8940 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5663 5.0000 12.5000 299.1540 297.6570 300.0080 295.7900 300.000
+ 6 -1.0000 0.0000 3.8000 -7.4000 30.146 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7482 76.2110 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5663 5.0000 12.4000 299.1430 297.6560 299.7920 295.8230 300.000
+ 7 -1.0000 0.0000 3.8000 -7.3000 30.401 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3730 76.5298 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5663 5.0000 12.3000 299.1300 297.6510 299.6450 295.7950 300.000
+ 8 -1.0000 0.0000 3.8000 -7.2000 30.329 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9969 76.8507 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5663 5.0000 12.2000 299.1210 297.6490 299.6180 295.7170 300.000
+ 9 -1.0000 0.0000 3.8000 -7.1000 29.926 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6197 77.1735 -2.7386 0.5000 0.0000 0.0000 157.2008 -45.5982 2.5663 5.0000 12.1000 299.1170 297.6480 299.9080 295.7520 300.000
+ 10 -1.0000 0.0000 3.8000 -7.0000 30.446 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2414 77.4984 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5663 5.0000 12.0000 299.1270 297.6520 300.3750 295.6920 300.000
+ 11 -1.0000 0.0000 3.8000 -6.9000 30.078 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8620 77.8253 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5663 5.0000 11.9000 299.1450 297.6580 300.6580 295.6950 300.000
+ 12 -1.0000 0.0000 3.8000 -6.8000 30.032 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.4815 78.1544 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2073 2.5663 5.0000 11.8000 299.1530 297.6630 300.6910 295.7810 300.000
+ 13 -1.0000 0.0000 3.8000 -6.7000 30.310 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.0999 78.4856 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 2.5663 5.0000 11.7000 299.1600 297.6670 300.5710 295.7840 300.000
+ 14 -1.0000 0.0000 3.8000 -6.6000 30.232 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7170 78.8191 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5663 5.0000 11.6000 299.1610 297.6690 300.3750 295.7320 300.000
+ 15 -1.0000 0.0000 3.8000 -6.5000 30.304 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3330 79.1549 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5663 5.0000 11.5000 299.1590 297.6690 300.1550 295.7410 300.000
+ 16 -1.0000 0.0000 3.8000 -6.4000 29.953 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9477 79.4930 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.5663 5.0000 11.4000 299.1530 297.6690 299.9360 295.6740 300.000
+ 17 -1.0000 0.0000 3.8000 -6.3000 30.287 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5611 79.8336 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5663 5.0000 11.3000 299.1420 297.6650 299.7460 295.6690 300.000
+ 18 -1.0000 0.0000 3.8000 -6.2000 30.267 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.1732 80.1766 -2.7386 0.5000 0.0000 0.0000 156.2484 -47.5028 2.5663 5.0000 11.2000 299.1270 297.6610 299.6070 295.6800 300.000
+ 19 -1.0000 0.0000 3.8000 -6.1000 30.307 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.7841 80.5220 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5663 5.0000 11.1000 299.1170 297.6590 299.6770 295.7080 300.000
+ 20 -1.0000 0.0000 3.8000 -6.0000 30.448 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.3935 80.8701 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5663 5.0000 11.0000 299.1170 297.6580 300.0340 295.7200 300.000
+ 21 -1.0000 0.0000 3.8000 -5.9000 30.245 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.0016 81.2208 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5663 5.0000 10.9000 299.1280 297.6610 300.4810 295.7190 300.000
+ 22 -1.0000 0.0000 3.8000 -5.8000 30.370 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.6082 81.5743 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5663 5.0000 10.8000 299.1430 297.6680 300.6790 295.8150 300.000
+ 23 -1.0000 0.0000 3.8000 -5.7000 30.351 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.2134 81.9305 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5663 5.0000 10.7000 299.1530 297.6730 300.6460 295.8060 300.000
+ 24 -1.0000 0.0000 3.8000 -5.6000 30.181 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8170 82.2896 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5663 5.0000 10.6000 299.1590 297.6750 300.5120 295.8320 300.000
+ 25 -1.0000 0.0000 3.8000 -5.5000 30.267 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.4192 82.6515 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5663 5.0000 10.5000 299.1550 297.6770 300.3040 295.8390 300.000
+ 26 -1.0000 0.0000 3.8000 -5.4000 30.448 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.0197 83.0165 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.5663 5.0000 10.4000 299.1520 297.6780 300.0810 295.8210 300.000
+ 27 -1.0000 0.0000 3.8000 -5.3000 30.428 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.6186 83.3846 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.5663 5.0000 10.3000 299.1440 297.6760 299.8640 295.7260 300.000
+ 28 -1.0000 0.0000 3.8000 -5.2000 30.131 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2159 83.7558 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.5663 5.0000 10.2000 299.1340 297.6730 299.6830 295.7100 300.000
+ 29 -1.0000 0.0000 3.8000 -5.1000 30.379 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.8115 84.1302 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.5663 5.0000 10.1000 299.1220 297.6680 299.6060 295.7070 300.000
+ 30 -1.0000 0.0000 3.8000 -5.0000 30.462 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.4054 84.5080 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.5663 5.0000 10.0000 299.1140 297.6660 299.7750 295.7080 300.000
+ 31 -1.0000 0.0000 3.8000 -4.9000 30.228 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.9975 84.8892 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.5663 5.0000 9.9000 299.1220 297.6680 300.2400 295.7470 300.000
+ 32 -1.0000 0.0000 3.8000 -4.8000 30.276 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5878 85.2739 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.5663 5.0000 9.8000 299.1350 297.6730 300.6210 295.8180 300.000
+ 33 -1.0000 0.0000 3.8000 -4.7000 30.274 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1762 85.6622 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.5663 5.0000 9.7000 299.1480 297.6780 300.7230 295.8040 300.000
+ 34 -1.0000 0.0000 3.8000 -4.6000 30.188 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7627 86.0542 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.5663 5.0000 9.6000 299.1600 297.6840 300.6200 295.7870 300.000
+ 35 -1.0000 0.0000 3.8000 -4.5000 30.352 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3472 86.4500 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.5663 5.0000 9.5000 299.1610 297.6850 300.4440 295.8100 300.000
+ 36 -1.0000 0.0000 3.8000 -4.4000 30.452 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.9297 86.8498 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.5663 5.0000 9.4000 299.1570 297.6860 300.2330 295.8390 300.000
+ 37 -1.0000 0.0000 3.8000 -4.3000 30.164 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.5102 87.2535 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.5663 5.0000 9.3000 299.1530 297.6840 300.0060 295.7960 300.000
+ 38 -1.0000 0.0000 3.8000 -4.2000 29.992 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.0885 87.6614 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.5663 5.0000 9.2000 299.1430 297.6830 299.7960 295.7810 300.000
+ 39 -1.0000 0.0000 3.8000 -4.1000 30.183 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.6647 88.0736 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.5663 5.0000 9.1000 299.1290 297.6800 299.6340 295.7320 300.000
+ 40 -1.0000 0.0000 3.8000 -4.0000 30.217 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.2386 88.4902 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.5663 5.0000 9.0000 299.1260 297.6780 299.5850 295.6100 300.000
+ 41 -1.0000 0.0000 3.8000 -3.9000 30.288 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.1898 88.9113 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.5663 5.0000 8.9000 299.1180 297.6760 299.8990 295.6680 300.000
+ 42 -1.0000 0.0000 3.8000 -3.8000 30.099 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.6205 89.3370 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.5663 5.0000 8.8000 299.1280 297.6790 300.3900 295.7470 300.000
+ 43 -1.0000 0.0000 3.8000 -3.7000 30.410 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.0536 89.7676 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.5663 5.0000 8.7000 299.1420 297.6830 300.6510 295.8090 300.000
+ 44 -1.0000 0.0000 3.8000 -3.6000 30.291 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.4892 90.2032 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.5663 5.0000 8.6000 299.1510 297.6870 300.6870 295.8340 300.000
+ 45 -1.0000 0.0000 3.8000 -3.5000 30.583 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.9274 90.6438 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.5663 5.0000 8.5000 299.1600 297.6910 300.5640 295.8360 300.000
+# Sum of Counts = 747
+# Center of Mass = -5.744177+/-0.300592
+# Full Width Half-Maximum = 2.453315+/-0.119968
+# 10:44:20 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0040.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0040.dat
new file mode 100644
index 0000000..61caa28
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0040.dat
@@ -0,0 +1,48 @@
+# scan = 40
+# date = 10/24/2011
+# time = 10:44:21 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.3 e -2.3 -1.0 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.3 e -2.3 -1.0 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.3)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.3000 -2.3000 15.171 21.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.3213 70.8576 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0059 5.0000 7.3000 299.1770 297.6970 300.1180 295.2370 300.000
+ 2 -1.0000 0.0000 2.3000 -2.2000 15.104 30.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8180 71.2250 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3102 2.0059 5.0000 7.2000 299.1610 297.6920 300.1000 295.8350 300.000
+ 3 -1.0000 0.0000 2.3000 -2.1000 15.163 33.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3125 71.5957 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0059 5.0000 7.1000 299.1540 297.6920 299.9770 295.7810 300.000
+ 4 -1.0000 0.0000 2.3000 -2.0000 15.168 54.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8045 71.9700 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0059 5.0000 7.0000 299.1540 297.6930 299.8510 295.6440 300.000
+ 5 -1.0000 0.0000 2.3000 -1.9000 15.330 49.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2940 72.3478 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0059 5.0000 6.9000 299.1520 297.6920 299.7690 295.4680 300.000
+ 6 -1.0000 0.0000 2.3000 -1.8000 15.134 68.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7808 72.7294 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0059 5.0000 6.8000 299.1810 297.7030 299.4460 294.4450 300.000
+ 7 -1.0000 0.0000 2.3000 -1.7000 15.027 95.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2650 73.1149 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7650 2.0059 5.0000 6.7000 299.1380 297.6870 299.6070 295.4420 300.000
+ 8 -1.0000 0.0000 2.3000 -1.6000 15.028 189.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7463 73.5044 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.0059 5.0000 6.6000 299.1310 297.6850 299.6510 295.5560 300.000
+ 9 -1.0000 0.0000 2.3000 -1.5000 15.058 330.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2247 73.8981 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0059 5.0000 6.5000 299.1220 297.6830 299.7770 295.6320 300.000
+ 10 -1.0000 0.0000 2.3000 -1.4000 15.327 378.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7002 74.2961 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 2.0059 5.0000 6.4000 299.1310 297.6860 299.9160 295.4420 300.000
+ 11 -1.0000 0.0000 2.3000 -1.3000 15.229 213.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1726 74.6986 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0059 5.0000 6.3000 299.1440 297.6860 300.1610 295.5240 300.000
+ 12 -1.0000 0.0000 2.3000 -1.2000 15.244 178.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.6418 75.1057 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0059 5.0000 6.2000 299.1300 297.6860 300.4530 295.7490 300.000
+ 13 -1.0000 0.0000 2.3000 -1.1000 15.068 373.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.1077 75.5177 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.0059 5.0000 6.1000 299.1420 297.6900 300.5810 295.6380 300.000
+ 14 -1.0000 0.0000 2.3000 -1.0000 15.284 273.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5702 75.9347 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0059 5.0000 6.0000 299.1830 297.7080 300.4240 294.4890 300.000
+# Sum of Counts = 2284
+# Center of Mass = -1.387478+/-0.041523
+# Full Width Half-Maximum = 0.592572+/-0.025516
+# 10:48:52 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0041.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0041.dat
new file mode 100644
index 0000000..a721c70
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0041.dat
@@ -0,0 +1,55 @@
+# scan = 41
+# date = 10/24/2011
+# time = 10:48:52 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.5 e -3.0 -1.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.5 e -3.0 -1.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.5000 -3.0000 30.368 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6410 71.0618 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0719 5.0000 8.0000 299.1970 297.7110 300.3360 294.0360 300.000
+ 2 -1.0000 0.0000 2.5000 -2.9000 30.317 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.1611 71.4192 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.0719 5.0000 7.9000 299.1650 297.6980 300.5440 295.8620 300.000
+ 3 -1.0000 0.0000 2.5000 -2.8000 30.331 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.6792 71.7798 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0719 5.0000 7.8000 299.1670 297.7010 300.3460 295.8230 300.000
+ 4 -1.0000 0.0000 2.5000 -2.7000 30.296 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1952 72.1434 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0719 5.0000 7.7000 299.1590 297.7000 300.1390 295.7880 300.000
+ 5 -1.0000 0.0000 2.5000 -2.6000 30.323 92.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7090 72.5102 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.0719 5.0000 7.6000 299.1530 297.6980 299.9230 295.7500 300.000
+ 6 -1.0000 0.0000 2.5000 -2.5000 30.127 189.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2206 72.8804 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0719 5.0000 7.5000 299.1450 297.6970 299.7200 295.5690 300.000
+ 7 -1.0000 0.0000 2.5000 -2.4000 30.515 321.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7300 73.2540 -2.7386 0.5000 0.0000 0.0000 150.2967 -59.4063 2.0719 5.0000 7.4000 299.1330 297.6920 299.6080 295.6810 300.000
+ 8 -1.0000 0.0000 2.5000 -2.3000 30.282 288.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2370 73.6311 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0719 5.0000 7.3000 299.1340 297.6940 299.6150 295.2030 300.000
+ 9 -1.0000 0.0000 2.5000 -2.2000 30.432 186.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7416 74.0119 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.0719 5.0000 7.2000 299.1250 297.6910 300.1100 295.5760 300.000
+ 10 -1.0000 0.0000 2.5000 -2.1000 29.981 155.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.2436 74.3965 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0719 5.0000 7.1000 299.1380 297.6940 300.5630 295.6830 300.000
+ 11 -1.0000 0.0000 2.5000 -2.0000 30.250 136.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7431 74.7850 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0719 5.0000 7.0000 299.1530 297.7000 300.7250 295.7270 300.000
+ 12 -1.0000 0.0000 2.5000 -1.9000 30.224 165.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2399 75.1776 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0719 5.0000 6.9000 299.1670 297.7060 300.6500 295.6190 300.000
+ 13 -1.0000 0.0000 2.5000 -1.8000 30.408 191.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.7340 75.5743 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0719 5.0000 6.8000 299.1660 297.7070 300.5050 295.7480 300.000
+ 14 -1.0000 0.0000 2.5000 -1.7000 30.142 89.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2253 75.9755 -2.7386 0.5000 0.0000 0.0000 148.6174 -62.7649 2.0719 5.0000 6.7000 299.1660 297.7090 300.2920 295.7190 300.000
+ 15 -1.0000 0.0000 2.5000 -1.6000 30.093 64.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7136 76.3811 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.0719 5.0000 6.6000 299.1620 297.7090 300.0750 295.6910 300.000
+ 16 -1.0000 0.0000 2.5000 -1.5000 30.300 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1990 76.7914 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0719 5.0000 6.5000 299.1530 297.7080 299.8400 295.7320 300.000
+ 17 -1.0000 0.0000 2.5000 -1.4000 30.288 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.6813 77.2066 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.0719 5.0000 6.4000 299.1420 297.7030 299.6590 295.7460 300.000
+ 18 -1.0000 0.0000 2.5000 -1.3000 30.228 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1603 77.6269 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0719 5.0000 6.3000 299.1250 297.6980 299.6070 295.7700 300.000
+ 19 -1.0000 0.0000 2.5000 -1.2000 30.429 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6361 78.0523 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0719 5.0000 6.2000 299.1640 297.7120 299.5250 294.1950 300.000
+ 20 -1.0000 0.0000 2.5000 -1.1000 30.475 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1084 78.4832 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1531 2.0719 5.0000 6.1000 299.1280 297.6980 300.3540 295.7100 300.000
+ 21 -1.0000 0.0000 2.5000 -1.0000 30.311 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5773 78.9198 -2.7386 0.5000 0.0000 0.0000 146.6132 -66.7735 2.0719 5.0000 6.0000 299.1480 297.7050 300.7630 295.7910 300.000
+# Sum of Counts = 2082
+# Center of Mass = -2.155572+/-0.067272
+# Full Width Half-Maximum = 0.718896+/-0.033547
+# 11:00:35 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0042.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0042.dat
new file mode 100644
index 0000000..8ab221d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0042.dat
@@ -0,0 +1,47 @@
+# scan = 42
+# date = 10/24/2011
+# time = 11:31:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.5 k 0 l 2 e -4.5 -2.0 0.2 preset mcu 0.5
+# builtin_command = scan h 0.5 k 0 l 2 e -4.5 -2.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at X point in (0.5, 0, 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.5000 0.0000 2.0000 -4.5000 30.671 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6422 37.9992 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.3250 5.0000 9.5000 299.1780 297.7460 300.0920 295.5530 300.000
+ 2 0.5000 0.0000 2.0000 -4.3000 30.370 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.9911 38.5759 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 1.3250 5.0000 9.3000 299.1820 297.7450 299.8670 295.3870 300.000
+ 3 0.5000 0.0000 2.0000 -4.1000 30.654 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.3375 39.1494 -2.7386 0.5000 0.0000 0.0000 153.4591 -53.0813 1.3250 5.0000 9.1000 299.1650 297.7400 299.6860 295.4850 300.000
+ 4 0.5000 0.0000 2.0000 -3.9000 30.590 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.6822 39.7200 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.3250 5.0000 8.9000 299.1430 297.7340 299.6270 295.7420 300.000
+ 5 0.5000 0.0000 2.0000 -3.7000 30.102 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.0258 40.2878 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.3250 5.0000 8.7000 299.1350 297.7310 299.7990 295.6880 300.000
+ 6 0.5000 0.0000 2.0000 -3.5000 30.515 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 40.3693 40.8532 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.3250 5.0000 8.5000 299.1480 297.7350 300.1830 295.6130 300.000
+ 7 0.5000 0.0000 2.0000 -3.3000 30.239 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.7133 41.4162 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.3250 5.0000 8.3000 299.1640 297.7390 300.5350 295.5860 300.000
+ 8 0.5000 0.0000 2.0000 -3.1000 30.506 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 43.0585 41.9770 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.3250 5.0000 8.1000 299.1660 297.7420 300.6510 295.7640 300.000
+ 9 0.5000 0.0000 2.0000 -2.9000 30.339 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.4057 42.5360 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.3250 5.0000 7.9000 299.1820 297.7490 300.5080 295.4970 300.000
+ 10 0.5000 0.0000 2.0000 -2.7000 30.212 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.7557 43.0931 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.3250 5.0000 7.7000 299.1820 297.7490 300.3770 295.6360 300.000
+ 11 0.5000 0.0000 2.0000 -2.5000 30.645 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1092 43.6485 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.3250 5.0000 7.5000 299.1790 297.7480 300.1740 295.6190 300.000
+ 12 0.5000 0.0000 2.0000 -2.3000 30.346 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.4671 44.2025 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.3250 5.0000 7.3000 299.1740 297.7470 299.9470 295.6310 300.000
+ 13 0.5000 0.0000 2.0000 -2.1000 30.309 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.8300 44.7550 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.3250 5.0000 7.1000 299.1610 297.7440 299.7480 295.6580 300.000
+# Sum of Counts = 40
+# Center of Mass = -3.305000+/-0.743657
+# Full Width Half-Maximum = 1.048761+/-0.434732
+# 11:39:19 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0043.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0043.dat
new file mode 100644
index 0000000..44941c5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0043.dat
@@ -0,0 +1,48 @@
+# scan = 43
+# date = 10/24/2011
+# time = 11:40:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -4.5 -1.9 0.2 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 0 e -4.5 -1.9 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at X point in (1.5, 0, 0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -4.5000 30.071 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9806 78.9338 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3918 5.0000 9.5000 299.1460 297.7390 300.4340 295.7150 300.000
+ 2 1.5000 0.0000 0.0000 -4.3000 30.566 51.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.8311 79.6692 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 2.3918 5.0000 9.3000 299.1600 297.7430 300.6760 295.8130 300.000
+ 3 1.5000 0.0000 0.0000 -4.1000 30.198 71.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.6888 80.4176 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0814 2.3918 5.0000 9.1000 299.1920 297.7560 300.5140 295.0500 300.000
+ 4 1.5000 0.0000 0.0000 -3.9000 30.155 110.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.5541 81.1797 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.3918 5.0000 8.9000 299.1930 297.7570 300.4440 295.4410 300.000
+ 5 1.5000 0.0000 0.0000 -3.7000 30.303 117.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.4273 81.9564 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.3918 5.0000 8.7000 299.1950 297.7580 300.2740 295.4880 300.000
+ 6 1.5000 0.0000 0.0000 -3.5000 30.319 86.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.3089 82.7486 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3918 5.0000 8.5000 299.1730 297.7520 300.0940 295.7440 300.000
+ 7 1.5000 0.0000 0.0000 -3.3000 30.507 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.1994 83.5572 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.3918 5.0000 8.3000 299.1700 297.7530 299.8950 295.8330 300.000
+ 8 1.5000 0.0000 0.0000 -3.1000 30.409 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.0992 84.3832 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.3918 5.0000 8.1000 299.1560 297.7470 299.7510 295.7980 300.000
+ 9 1.5000 0.0000 0.0000 -2.9000 30.330 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.0089 85.2277 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.3918 5.0000 7.9000 299.1430 297.7440 299.6770 295.7800 300.000
+ 10 1.5000 0.0000 0.0000 -2.7000 30.283 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.9290 86.0921 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1244 2.3918 5.0000 7.7000 299.1350 297.7420 299.8000 295.8020 300.000
+ 11 1.5000 0.0000 0.0000 -2.5000 30.351 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.8602 86.9777 -2.7386 0.5000 0.0000 0.0000 150.5151 -58.9695 2.3918 5.0000 7.5000 299.1360 297.7420 300.1070 295.8050 300.000
+ 12 1.5000 0.0000 0.0000 -2.3000 30.234 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 130.8032 87.8858 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.3918 5.0000 7.3000 299.1740 297.7550 300.2150 294.9390 300.000
+ 13 1.5000 0.0000 0.0000 -2.1000 30.126 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 131.7585 88.8183 -2.7386 0.5000 0.0000 0.0000 149.6110 -60.7778 2.3918 5.0000 7.1000 299.1560 297.7470 300.4640 295.8060 300.000
+ 14 1.5000 0.0000 0.0000 -1.9000 30.435 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 132.7271 89.7768 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.3918 5.0000 6.9000 299.1660 297.7530 300.3570 295.6470 300.000
+# Sum of Counts = 554
+# Center of Mass = -3.714440+/-0.224165
+# Full Width Half-Maximum = 0.988470+/-0.113233
+# 11:48:40 PM 10/24/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0044.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0044.dat
new file mode 100644
index 0000000..7c120a2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0044.dat
@@ -0,0 +1,47 @@
+# scan = 44
+# date = 10/24/2011
+# time = 11:55:13 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 1 e -4.5 -2.0 0.2 preset mcu 0.5
+# builtin_command = scan h -0.5 k 0 l 1 e -4.5 -2.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at X point in (-0.5, 0, 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 1.0000 -4.5000 30.349 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -78.9706 23.8944 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 0.9569 5.0000 9.5000 299.1470 297.7570 299.6530 294.7700 300.000
+ 2 -0.5000 0.0000 1.0000 -4.3000 30.531 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -76.9346 24.5763 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4634 0.9569 5.0000 9.3000 299.1290 297.7460 300.4450 295.6910 300.000
+ 3 -0.5000 0.0000 1.0000 -4.1000 30.079 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -74.9289 25.2410 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 0.9569 5.0000 9.1000 299.1510 297.7590 300.9240 295.6500 300.000
+ 4 -0.5000 0.0000 1.0000 -3.9000 30.411 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -72.9496 25.8894 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 0.9569 5.0000 8.9000 299.1690 297.7680 301.0300 295.6600 300.000
+ 5 -0.5000 0.0000 1.0000 -3.7000 30.213 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -70.9936 26.5226 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 0.9569 5.0000 8.7000 299.1820 297.7730 300.9030 295.6310 300.000
+ 6 -0.5000 0.0000 1.0000 -3.5000 30.417 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -69.0579 27.1413 -2.7386 0.5000 0.0000 0.0000 152.4620 -55.0756 0.9569 5.0000 8.5000 299.1900 297.7760 300.7170 295.6910 300.000
+ 7 -0.5000 0.0000 1.0000 -3.3000 30.230 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -67.1396 27.7462 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 0.9569 5.0000 8.3000 299.2320 297.7920 300.1910 294.3460 300.000
+ 8 -0.5000 0.0000 1.0000 -3.1000 30.499 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -65.2362 28.3377 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 0.9569 5.0000 8.1000 299.2500 297.7860 300.0280 294.8060 300.000
+ 9 -0.5000 0.0000 1.0000 -2.9000 30.348 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -63.3454 28.9165 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 0.9569 5.0000 7.9000 299.2070 297.7780 299.8910 295.2870 300.000
+ 10 -0.5000 0.0000 1.0000 -2.7000 30.594 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -61.4648 29.4827 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 0.9569 5.0000 7.7000 299.1860 297.7720 299.7370 295.4970 300.000
+ 11 -0.5000 0.0000 1.0000 -2.5000 30.181 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -59.5922 30.0368 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 0.9569 5.0000 7.5000 299.1590 297.7650 299.6640 295.7280 300.000
+ 12 -0.5000 0.0000 1.0000 -2.3000 30.128 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -57.7257 30.5787 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 0.9569 5.0000 7.3000 299.1490 297.7600 299.6640 295.8070 300.000
+ 13 -0.5000 0.0000 1.0000 -2.1000 30.531 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.8631 31.1086 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 0.9569 5.0000 7.1000 299.1420 297.7570 299.9490 295.8240 300.000
+# Sum of Counts = 38
+# Center of Mass = -3.200000+/-0.742861
+# Full Width Half-Maximum = 1.400000+/-0.501374
+# 12:04:11 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0045.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0045.dat
new file mode 100644
index 0000000..8d58ab0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0045.dat
@@ -0,0 +1,49 @@
+# scan = 45
+# date = 10/25/2011
+# time = 12:10:55 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -7.0 -4.2 0.2 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 1.5 e -7.0 -4.2 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at L point in (1.5, 0, 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -7.0000 30.430 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 299.1850 297.7770 300.2980 295.7330 300.000
+ 2 1.5000 0.0000 1.5000 -6.8000 30.491 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 299.1680 297.7710 300.1410 295.8870 300.000
+ 3 1.5000 0.0000 1.5000 -6.6000 30.146 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 299.1590 297.7680 299.9450 295.8980 300.000
+ 4 1.5000 0.0000 1.5000 -6.4000 30.436 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 299.1480 297.7650 299.7390 295.9130 300.000
+ 5 1.5000 0.0000 1.5000 -6.2000 30.092 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 299.1340 297.7620 299.6270 295.8940 300.000
+ 6 1.5000 0.0000 1.5000 -6.0000 30.463 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 299.1210 297.7590 299.6990 295.8750 300.000
+ 7 1.5000 0.0000 1.5000 -5.8000 30.227 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 299.1220 297.7590 300.0870 295.9020 300.000
+ 8 1.5000 0.0000 1.5000 -5.6000 30.090 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 299.1820 297.7800 300.2020 294.3320 300.000
+ 9 1.5000 0.0000 1.5000 -5.4000 30.220 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6667 81.0636 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.5201 5.0000 10.4000 299.1960 297.7840 300.3840 294.4100 300.000
+ 10 1.5000 0.0000 1.5000 -5.2000 30.346 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4742 81.7871 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.5201 5.0000 10.2000 299.2140 297.7790 300.5070 295.2420 300.000
+ 11 1.5000 0.0000 1.5000 -5.0000 29.999 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2880 82.5229 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.5201 5.0000 10.0000 299.2160 297.7930 300.1600 294.2850 300.000
+ 12 1.5000 0.0000 1.5000 -4.8000 30.009 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1087 83.2714 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.5201 5.0000 9.8000 299.1670 297.7760 300.2750 295.9330 300.000
+ 13 1.5000 0.0000 1.5000 -4.6000 30.074 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9365 84.0335 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.5201 5.0000 9.6000 299.1710 297.7780 300.0090 295.5750 300.000
+ 14 1.5000 0.0000 1.5000 -4.4000 30.257 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7718 84.8099 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.5201 5.0000 9.4000 299.1490 297.7710 299.8620 295.9450 300.000
+ 15 1.5000 0.0000 1.5000 -4.2000 30.369 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.6150 85.6015 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.5201 5.0000 9.2000 299.1360 297.7680 299.6870 295.9300 300.000
+# Sum of Counts = 137
+# Center of Mass = -6.229197+/-0.755058
+# Full Width Half-Maximum = 1.413627+/-0.442587
+# 12:20:24 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0046.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0046.dat
new file mode 100644
index 0000000..70ebeca
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0046.dat
@@ -0,0 +1,41 @@
+# scan = 46
+# date = 10/25/2011
+# time = 12:20:59 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -7.0 0.2 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -7.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at L point in (1.5, 0, 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 30.103 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8928 71.9280 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 299.1490 297.7640 299.9830 295.4140 300.000
+ 2 1.5000 0.0000 1.5000 -8.0000 30.730 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 299.1430 297.7660 300.5810 295.7820 300.000
+ 3 1.5000 0.0000 1.5000 -7.8000 30.386 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 299.1590 297.7730 300.8890 295.8290 300.000
+ 4 1.5000 0.0000 1.5000 -7.6000 30.345 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 299.1730 297.7790 300.8980 295.8660 300.000
+ 5 1.5000 0.0000 1.5000 -7.4000 30.247 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 299.1810 297.7830 300.7600 295.8960 300.000
+ 6 1.5000 0.0000 1.5000 -7.2000 30.357 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 299.2260 297.8000 300.2860 294.4710 300.000
+ 7 1.5000 0.0000 1.5000 -7.0000 30.389 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 299.2270 297.8020 299.9900 294.3620 300.000
+# Sum of Counts = 86
+# Center of Mass = -7.379070+/-1.126071
+# Full Width Half-Maximum = 0.774066+/-0.951240
+# 12:25:03 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0047.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0047.dat
new file mode 100644
index 0000000..7e96769
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0047.dat
@@ -0,0 +1,56 @@
+# scan = 47
+# date = 10/25/2011
+# time = 12:28:10 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -8.2 -4.0 0.2 preset mcu 0.5
+# builtin_command = scan h -0.5 k 0 l 2.5 e -8.2 -4.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at L point in (-0.5, 0, 2.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -8.2000 30.316 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.7455 35.3244 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 1.5445 5.0000 13.2000 299.1840 297.7820 300.5990 295.7350 300.000
+ 2 -0.5000 0.0000 2.5000 -8.0000 30.302 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 299.2140 297.7950 300.2350 294.6040 300.000
+ 3 -0.5000 0.0000 2.5000 -7.8000 30.243 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.3230 36.5303 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.5445 5.0000 12.8000 299.2340 297.7880 300.1490 295.2710 300.000
+ 4 -0.5000 0.0000 2.5000 -7.6000 30.361 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1234 37.1274 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5445 5.0000 12.6000 299.1760 297.7810 300.0860 295.9960 300.000
+ 5 -0.5000 0.0000 2.5000 -7.4000 30.163 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9308 37.7210 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5445 5.0000 12.4000 299.1670 297.7790 299.8990 296.0090 300.000
+ 6 -0.5000 0.0000 2.5000 -7.2000 30.266 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.7446 38.3114 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5445 5.0000 12.2000 299.1560 297.7760 299.7110 295.9730 300.000
+ 7 -0.5000 0.0000 2.5000 -7.0000 30.665 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5640 38.8989 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5445 5.0000 12.0000 299.1450 297.7720 299.6180 295.9490 300.000
+ 8 -0.5000 0.0000 2.5000 -6.8000 30.489 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3885 39.4839 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5445 5.0000 11.8000 299.1380 297.7690 299.7540 295.9590 300.000
+ 9 -0.5000 0.0000 2.5000 -6.6000 30.301 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2176 40.0665 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5445 5.0000 11.6000 299.1410 297.7690 300.1660 295.9810 300.000
+ 10 -0.5000 0.0000 2.5000 -6.4000 30.233 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.0507 40.6470 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5445 5.0000 11.4000 299.1570 297.7740 300.5950 296.0510 300.000
+ 11 -0.5000 0.0000 2.5000 -6.2000 30.467 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.8873 41.2258 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5445 5.0000 11.2000 299.1700 297.7780 300.6890 296.0200 300.000
+ 12 -0.5000 0.0000 2.5000 -6.0000 30.091 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.7270 41.8030 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5445 5.0000 11.0000 299.1780 297.7810 300.6240 296.0160 300.000
+ 13 -0.5000 0.0000 2.5000 -5.8000 30.357 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5691 42.3790 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 1.5445 5.0000 10.8000 299.1820 297.7850 300.4510 295.9780 300.000
+ 14 -0.5000 0.0000 2.5000 -5.6000 30.287 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.4133 42.9538 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5445 5.0000 10.6000 299.1810 297.7850 300.2500 296.0110 300.000
+ 15 -0.5000 0.0000 2.5000 -5.4000 30.333 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2590 43.5278 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5445 5.0000 10.4000 299.1740 297.7840 300.0360 295.9790 300.000
+ 16 -0.5000 0.0000 2.5000 -5.2000 30.481 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1058 44.1013 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5445 5.0000 10.2000 299.1660 297.7830 299.8330 295.9210 300.000
+ 17 -0.5000 0.0000 2.5000 -5.0000 30.333 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9531 44.6744 -2.7386 0.5000 0.0000 0.0000 154.7700 -50.4597 1.5445 5.0000 10.0000 299.1510 297.7790 299.6650 295.8640 300.000
+ 18 -0.5000 0.0000 2.5000 -4.8000 30.423 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8006 45.2473 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5445 5.0000 9.8000 299.1410 297.7760 299.6320 295.8410 300.000
+ 19 -0.5000 0.0000 2.5000 -4.6000 30.321 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.6478 45.8204 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5445 5.0000 9.6000 299.1340 297.7720 299.8680 295.9160 300.000
+ 20 -0.5000 0.0000 2.5000 -4.4000 30.358 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4942 46.3937 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5445 5.0000 9.4000 299.1410 297.7740 300.3320 295.8770 300.000
+ 21 -0.5000 0.0000 2.5000 -4.2000 30.300 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.3392 46.9677 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.5445 5.0000 9.2000 299.1590 297.7800 300.6340 295.8690 300.000
+ 22 -0.5000 0.0000 2.5000 -4.0000 30.317 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.1826 47.5424 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5445 5.0000 9.0000 299.1720 297.7840 300.6740 295.8440 300.000
+# Sum of Counts = 114
+# Center of Mass = -6.684211+/-0.889808
+# Full Width Half-Maximum = 1.900615+/-0.392921
+# 12:41:28 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0048.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0048.dat
new file mode 100644
index 0000000..b65cd37
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0048.dat
@@ -0,0 +1,56 @@
+# scan = 48
+# date = 10/25/2011
+# time = 12:43:44 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.5 k 0 l 3.5 e -8.2 -4.0 0.2 preset mcu 0.5
+# builtin_command = scan h 0.5 k 0 l 3.5 e -8.2 -4.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at L point in (0.5, 0, 3.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.5000 0.0000 3.5000 -8.2000 30.126 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7324 53.0124 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.0163 5.0000 13.2000 299.1470 297.7810 299.6360 295.7090 300.000
+ 2 0.5000 0.0000 3.5000 -8.0000 30.331 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6155 53.5694 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.0163 5.0000 13.0000 299.1330 297.7780 299.6660 295.7960 300.000
+ 3 0.5000 0.0000 3.5000 -7.8000 30.401 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.4991 54.1284 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.0163 5.0000 12.8000 299.1310 297.7780 299.9550 295.7560 300.000
+ 4 0.5000 0.0000 3.5000 -7.6000 30.204 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.3832 54.6897 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.0163 5.0000 12.6000 299.1410 297.7800 300.3810 295.7460 300.000
+ 5 0.5000 0.0000 3.5000 -7.4000 30.287 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2683 55.2535 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.0163 5.0000 12.4000 299.1530 297.7850 300.6150 295.7880 300.000
+ 6 0.5000 0.0000 3.5000 -7.2000 30.449 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.1545 55.8199 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.0163 5.0000 12.2000 299.1610 297.7890 300.6230 295.8320 300.000
+ 7 0.5000 0.0000 3.5000 -7.0000 30.430 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.0419 56.3892 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.0163 5.0000 12.0000 299.1670 297.7920 300.4850 295.8660 300.000
+ 8 0.5000 0.0000 3.5000 -6.8000 30.468 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.9309 56.9616 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.0163 5.0000 11.8000 299.1690 297.7930 300.2920 295.8500 300.000
+ 9 0.5000 0.0000 3.5000 -6.6000 30.563 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.8216 57.5373 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.0163 5.0000 11.6000 299.1640 297.7920 300.1070 295.8510 300.000
+ 10 0.5000 0.0000 3.5000 -6.4000 30.455 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.7143 58.1166 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.0163 5.0000 11.4000 299.1580 297.7900 299.8810 295.7910 300.000
+ 11 0.5000 0.0000 3.5000 -6.2000 30.437 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.6092 58.6996 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.0163 5.0000 11.2000 299.1440 297.7860 299.7090 295.8400 300.000
+ 12 0.5000 0.0000 3.5000 -6.0000 30.449 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.5065 59.2867 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.0163 5.0000 11.0000 299.1310 297.7810 299.6240 295.8330 300.000
+ 13 0.5000 0.0000 3.5000 -5.8000 30.378 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.4065 59.8781 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.0163 5.0000 10.8000 299.1210 297.7770 299.7610 295.8280 300.000
+ 14 0.5000 0.0000 3.5000 -5.6000 29.944 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 38.3094 60.4740 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.0163 5.0000 10.6000 299.1240 297.7780 300.1870 295.8980 300.000
+ 15 0.5000 0.0000 3.5000 -5.4000 30.512 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.2156 61.0749 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.0163 5.0000 10.4000 299.1390 297.7820 300.5430 295.9010 300.000
+ 16 0.5000 0.0000 3.5000 -5.2000 30.353 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 40.1251 61.6809 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.0163 5.0000 10.2000 299.1540 297.7880 300.6810 295.8670 300.000
+ 17 0.5000 0.0000 3.5000 -5.0000 30.514 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0384 62.2924 -2.7386 0.5000 0.0000 0.0000 154.7700 -50.4597 2.0163 5.0000 10.0000 299.1630 297.7910 300.6020 295.8810 300.000
+ 18 0.5000 0.0000 3.5000 -4.8000 30.424 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.9557 62.9096 -2.7386 0.5000 0.0000 0.0000 154.4957 -51.0086 2.0163 5.0000 9.8000 299.1640 297.7920 300.4200 295.9060 300.000
+ 19 0.5000 0.0000 3.5000 -4.6000 30.328 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.8772 63.5331 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.0163 5.0000 9.6000 299.1620 297.7940 300.2060 295.8950 300.000
+ 20 0.5000 0.0000 3.5000 -4.4000 30.246 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 43.8034 64.1631 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.0163 5.0000 9.4000 299.1550 297.7930 299.9940 295.9100 300.000
+ 21 0.5000 0.0000 3.5000 -4.2000 30.745 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.7345 64.8001 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0163 5.0000 9.2000 299.1450 297.7890 299.8010 295.8050 300.000
+ 22 0.5000 0.0000 3.5000 -4.0000 30.106 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6708 65.4444 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0163 5.0000 9.0000 299.1340 297.7860 299.6470 295.8370 300.000
+# Sum of Counts = 100
+# Center of Mass = -6.754000+/-0.960575
+# Full Width Half-Maximum = 2.037139+/-0.439797
+# 12:56:15 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0049.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0049.dat
new file mode 100644
index 0000000..0c30021
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0049.dat
@@ -0,0 +1,43 @@
+# scan = 49
+# date = 10/25/2011
+# time = 1:07:20 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.2 e -1.25 -0.45 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.2 e -1.25 -0.45 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.2), add points
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.2000 -1.2500 15.003 262.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.9295 73.5110 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.9743 5.0000 6.2500 299.1300 297.7860 299.6310 295.9050 300.000
+ 2 -1.0000 0.0000 2.2000 -1.1500 15.162 382.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.3935 73.9121 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.9743 5.0000 6.1500 299.1230 297.7850 299.7080 295.9530 300.000
+ 3 -1.0000 0.0000 2.2000 -1.0500 15.221 658.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.8542 74.3178 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.9743 5.0000 6.0500 299.1200 297.7840 299.8810 295.9750 300.000
+ 4 -1.0000 0.0000 2.2000 -0.9500 15.221 711.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.3114 74.7283 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.9743 5.0000 5.9500 299.1250 297.7850 300.1140 295.9770 300.000
+ 5 -1.0000 0.0000 2.2000 -0.8500 15.203 419.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7652 75.1438 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.9743 5.0000 5.8500 299.1330 297.7870 300.3510 295.9820 300.000
+ 6 -1.0000 0.0000 2.2000 -0.7500 15.426 998.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2154 75.5646 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.9743 5.0000 5.7500 299.1400 297.7880 300.5320 295.9700 300.000
+ 7 -1.0000 0.0000 2.2000 -0.6500 15.409 1099.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6618 75.9908 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0932 1.9743 5.0000 5.6500 299.1470 297.7910 300.6430 296.0030 300.000
+ 8 -1.0000 0.0000 2.2000 -0.5500 15.152 343.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1043 76.4227 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.9743 5.0000 5.5500 299.1530 297.7940 300.6800 296.0200 300.000
+ 9 -1.0000 0.0000 2.2000 -0.4500 15.079 149.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.5428 76.8605 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.9743 5.0000 5.4500 299.1580 297.7960 300.6390 296.0080 300.000
+# Sum of Counts = 5021
+# Center of Mass = -0.838050+/-0.016982
+# Full Width Half-Maximum = 0.416416+/-0.012179
+# 1:10:34 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0050.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0050.dat
new file mode 100644
index 0000000..daf42ea
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0050.dat
@@ -0,0 +1,58 @@
+# scan = 50
+# date = 10/25/2011
+# time = 1:13:30 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -2.0000 30.472 60.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 299.1270 297.7860 299.6220 295.9550 300.000
+ 2 -1.0000 0.0000 2.6000 -1.9000 30.506 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2316 76.6655 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.1060 5.0000 6.9000 299.1220 297.7850 299.8000 295.9590 300.000
+ 3 -1.0000 0.0000 2.6000 -1.8000 30.327 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7290 77.0706 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 2.1060 5.0000 6.8000 299.1280 297.7850 300.2270 295.9260 300.000
+ 4 -1.0000 0.0000 2.6000 -1.7000 30.346 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.2234 77.4803 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.1060 5.0000 6.7000 299.1450 297.7930 300.5900 295.8200 300.000
+ 5 -1.0000 0.0000 2.6000 -1.6000 30.291 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7149 77.8948 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.1060 5.0000 6.6000 299.1560 297.7970 300.6790 295.8780 300.000
+ 6 -1.0000 0.0000 2.6000 -1.5000 30.555 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2033 78.3142 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.1060 5.0000 6.5000 299.1700 297.8030 300.5780 295.6790 300.000
+ 7 -1.0000 0.0000 2.6000 -1.4000 30.431 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6886 78.7388 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 2.1060 5.0000 6.4000 299.1740 297.8040 300.3820 295.6260 300.000
+ 8 -1.0000 0.0000 2.6000 -1.3000 30.584 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1705 79.1688 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.1060 5.0000 6.3000 299.1700 297.8030 300.1930 295.7140 300.000
+ 9 -1.0000 0.0000 2.6000 -1.2000 30.446 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.6492 79.6043 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.1060 5.0000 6.2000 299.1630 297.8020 299.9500 295.7100 300.000
+ 10 -1.0000 0.0000 2.6000 -1.1000 30.264 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.1243 80.0456 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1531 2.1060 5.0000 6.1000 299.1600 297.8030 299.7160 295.3530 300.000
+ 11 -1.0000 0.0000 2.6000 -1.0000 30.377 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5958 80.4928 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.1060 5.0000 6.0000 299.1390 297.7950 299.6510 295.7830 300.000
+ 12 -1.0000 0.0000 2.6000 -0.9000 30.510 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0636 80.9464 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 2.1060 5.0000 5.9000 299.1230 297.7910 299.6630 295.8200 300.000
+ 13 -1.0000 0.0000 2.6000 -0.8000 30.572 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.5275 81.4064 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0695 2.1060 5.0000 5.8000 299.1200 297.7890 299.9520 295.7640 300.000
+ 14 -1.0000 0.0000 2.6000 -0.7000 30.546 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.9875 81.8732 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 2.1060 5.0000 5.7000 299.1310 297.7930 300.4010 295.7970 300.000
+ 15 -1.0000 0.0000 2.6000 -0.6000 30.310 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.4434 82.3471 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 2.1060 5.0000 5.6000 299.1470 297.7980 300.6580 295.8040 300.000
+ 16 -1.0000 0.0000 2.6000 -0.5000 30.502 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8949 82.8283 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.1060 5.0000 5.5000 299.1560 297.8010 300.6570 295.8790 300.000
+ 17 -1.0000 0.0000 2.6000 -0.4000 30.408 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.3421 83.3173 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 2.1060 5.0000 5.4000 299.1610 297.8040 300.5290 295.9030 300.000
+ 18 -1.0000 0.0000 2.6000 -0.3000 30.393 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.7847 83.8144 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 2.1060 5.0000 5.3000 299.1610 297.8060 300.3230 295.9080 300.000
+ 19 -1.0000 0.0000 2.6000 -0.2000 30.564 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2225 84.3198 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 2.1060 5.0000 5.2000 299.1580 297.8050 300.1070 295.8760 300.000
+ 20 -1.0000 0.0000 2.6000 -0.1000 30.110 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.6554 84.8341 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 2.1060 5.0000 5.1000 299.1500 297.8020 299.8970 295.8440 300.000
+ 21 -1.0000 0.0000 2.6000 0.0000 30.769 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.0832 85.3576 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 2.1060 5.0000 5.0000 299.1450 297.8000 299.6890 295.6760 300.000
+ 22 -1.0000 0.0000 2.6000 0.1000 30.244 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5056 85.8909 -2.7386 0.5000 0.0000 0.0000 142.4878 -75.0243 2.1060 5.0000 4.9000 299.1320 297.7970 299.5810 295.6620 300.000
+ 23 -1.0000 0.0000 2.6000 0.2000 30.374 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.9226 86.4343 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 2.1060 5.0000 4.8000 299.1230 297.7930 299.7670 295.7990 300.000
+ 24 -1.0000 0.0000 2.6000 0.3000 30.196 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3338 86.9885 -2.7386 0.5000 0.0000 0.0000 141.5558 -76.8882 2.1060 5.0000 4.7000 299.1270 297.7930 300.1980 295.7680 300.000
+# Sum of Counts = 276
+# Center of Mass = -1.261232+/-0.116671
+# Full Width Half-Maximum = 1.517316+/-0.102993
+# 1:26:58 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0051.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0051.dat
new file mode 100644
index 0000000..fc34d0c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0051.dat
@@ -0,0 +1,50 @@
+# scan = 51
+# date = 10/25/2011
+# time = 1:26:59 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -4.0000 30.253 119.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0830 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 299.1470 297.7970 300.7080 295.9890 300.000
+ 2 -1.0000 0.0000 2.9000 -3.9000 30.429 133.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6363 73.6665 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 2.2130 5.0000 8.9000 299.1590 297.8020 300.6960 295.9840 300.000
+ 3 -1.0000 0.0000 2.9000 -3.8000 30.290 102.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1880 74.0211 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2130 5.0000 8.8000 299.1640 297.8050 300.5530 295.9980 300.000
+ 4 -1.0000 0.0000 2.9000 -3.7000 30.315 90.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7378 74.3786 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2130 5.0000 8.7000 299.1620 297.8060 300.3500 296.0240 300.000
+ 5 -1.0000 0.0000 2.9000 -3.6000 30.476 84.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2859 74.7390 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7276 2.2130 5.0000 8.6000 299.1600 297.8060 300.1260 296.0010 300.000
+ 6 -1.0000 0.0000 2.9000 -3.5000 30.365 70.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8321 75.1025 -2.7386 0.5000 0.0000 0.0000 152.4621 -55.0756 2.2130 5.0000 8.5000 299.1510 297.8040 299.9290 295.9960 300.000
+ 7 -1.0000 0.0000 2.9000 -3.4000 30.361 55.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3764 75.4692 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2130 5.0000 8.4000 299.1420 297.8000 299.7290 295.9500 300.000
+ 8 -1.0000 0.0000 2.9000 -3.3000 30.568 49.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.9188 75.8391 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2130 5.0000 8.3000 299.1320 297.7970 299.6180 295.9380 300.000
+ 9 -1.0000 0.0000 2.9000 -3.2000 30.385 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4592 76.2123 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.2130 5.0000 8.2000 299.1240 297.7950 299.7070 295.9110 300.000
+ 10 -1.0000 0.0000 2.9000 -3.1000 30.545 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9974 76.5890 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.2130 5.0000 8.1000 299.1230 297.7920 300.1210 295.9620 300.000
+ 11 -1.0000 0.0000 2.9000 -3.0000 30.272 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5336 76.9692 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9223 2.2130 5.0000 8.0000 299.1360 297.7960 300.5540 295.9960 300.000
+ 12 -1.0000 0.0000 2.9000 -2.9000 30.089 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.0675 77.3532 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2130 5.0000 7.9000 299.1520 297.8020 300.7050 295.9440 300.000
+ 13 -1.0000 0.0000 2.9000 -2.8000 30.455 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.5992 77.7408 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2130 5.0000 7.8000 299.1640 297.8080 300.6630 295.9270 300.000
+ 14 -1.0000 0.0000 2.9000 -2.7000 30.624 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1286 78.1325 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1244 2.2130 5.0000 7.7000 299.1710 297.8120 300.4770 295.7900 300.000
+ 15 -1.0000 0.0000 2.9000 -2.6000 30.427 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6556 78.5281 -2.7386 0.5000 0.0000 0.0000 150.7288 -58.5424 2.2130 5.0000 7.6000 299.1680 297.8130 300.2790 295.8260 300.000
+ 16 -1.0000 0.0000 2.9000 -2.5000 30.179 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1802 78.9279 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9696 2.2130 5.0000 7.5000 299.1630 297.8130 300.0670 295.7640 300.000
+# Sum of Counts = 803
+# Center of Mass = -3.620299+/-0.181080
+# Full Width Half-Maximum = 0.684935+/-0.096506
+# 1:36:08 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0052.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0052.dat
new file mode 100644
index 0000000..dad1e7e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0052.dat
@@ -0,0 +1,79 @@
+# scan = 52
+# date = 10/25/2011
+# time = 1:36:08 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -7.9000 30.495 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0596 65.3850 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3259 5.0000 12.9000 299.1600 297.8080 299.7380 295.7300 300.000
+ 2 -1.0000 0.0000 3.2000 -7.8000 30.542 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6669 65.6762 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.3259 5.0000 12.8000 299.1360 297.8030 299.6160 295.8220 300.000
+ 3 -1.0000 0.0000 3.2000 -7.7000 30.379 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2736 65.9686 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.3259 5.0000 12.7000 299.1300 297.7980 299.6730 295.8780 300.000
+ 4 -1.0000 0.0000 3.2000 -7.6000 30.493 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.8796 66.2622 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.3259 5.0000 12.6000 299.1270 297.7980 300.1820 295.9460 300.000
+ 5 -1.0000 0.0000 3.2000 -7.5000 30.581 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4850 66.5572 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.3259 5.0000 12.5000 299.1410 297.8020 300.6600 295.9910 300.000
+ 6 -1.0000 0.0000 3.2000 -7.4000 30.139 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0897 66.8534 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.3259 5.0000 12.4000 299.1590 297.8080 300.8340 296.0290 300.000
+ 7 -1.0000 0.0000 3.2000 -7.3000 30.160 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6936 67.1510 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.3259 5.0000 12.3000 299.1740 297.8130 300.7860 296.0070 300.000
+ 8 -1.0000 0.0000 3.2000 -7.2000 30.436 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2968 67.4500 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.3259 5.0000 12.2000 299.1820 297.8180 300.6130 296.0010 300.000
+ 9 -1.0000 0.0000 3.2000 -7.1000 30.354 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8993 67.7504 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.3259 5.0000 12.1000 299.1840 297.8180 300.4190 296.0980 300.000
+ 10 -1.0000 0.0000 3.2000 -7.0000 30.617 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5010 68.0522 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3259 5.0000 12.0000 299.1810 297.8190 300.1700 296.0030 300.000
+ 11 -1.0000 0.0000 3.2000 -6.9000 30.442 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1018 68.3555 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3259 5.0000 11.9000 299.1740 297.8180 299.9710 295.9940 300.000
+ 12 -1.0000 0.0000 3.2000 -6.8000 30.343 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7018 68.6602 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3259 5.0000 11.8000 299.1630 297.8140 299.7770 295.9930 300.000
+ 13 -1.0000 0.0000 3.2000 -6.7000 30.538 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3010 68.9666 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3259 5.0000 11.7000 299.1500 297.8090 299.6250 295.9510 300.000
+ 14 -1.0000 0.0000 3.2000 -6.6000 30.471 43.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8992 69.2746 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3259 5.0000 11.6000 299.1560 297.8130 299.5100 295.0930 300.000
+ 15 -1.0000 0.0000 3.2000 -6.5000 30.574 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4966 69.5841 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3259 5.0000 11.5000 299.1380 297.8050 300.0610 295.9700 300.000
+ 16 -1.0000 0.0000 3.2000 -6.4000 30.559 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0930 69.8954 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0590 2.3259 5.0000 11.4000 299.1560 297.8110 300.6070 296.0040 300.000
+ 17 -1.0000 0.0000 3.2000 -6.3000 30.339 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6884 70.2083 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 2.3259 5.0000 11.3000 299.1970 297.8260 300.6910 295.0200 300.000
+ 18 -1.0000 0.0000 3.2000 -6.2000 30.221 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2829 70.5230 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3259 5.0000 11.2000 299.2710 297.8410 300.4690 293.8480 300.000
+ 19 -1.0000 0.0000 3.2000 -6.1000 30.309 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8763 70.8395 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3259 5.0000 11.1000 299.1970 297.8270 300.6980 296.0070 300.000
+ 20 -1.0000 0.0000 3.2000 -6.0000 30.412 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4687 71.1579 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3259 5.0000 11.0000 299.2050 297.8300 300.4510 295.7640 300.000
+ 21 -1.0000 0.0000 3.2000 -5.9000 30.244 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0600 71.4781 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3259 5.0000 10.9000 299.2130 297.8370 300.1240 295.1320 300.000
+ 22 -1.0000 0.0000 3.2000 -5.8000 30.382 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6502 71.8003 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3259 5.0000 10.8000 299.2090 297.8330 299.9650 295.5540 300.000
+ 23 -1.0000 0.0000 3.2000 -5.7000 30.443 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2392 72.1244 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3259 5.0000 10.7000 299.1880 297.8270 299.8350 295.7700 300.000
+ 24 -1.0000 0.0000 3.2000 -5.6000 30.529 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.8271 72.4507 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3259 5.0000 10.6000 299.1840 297.8270 299.6680 295.5620 300.000
+ 25 -1.0000 0.0000 3.2000 -5.5000 30.234 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4138 72.7790 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3259 5.0000 10.5000 299.1720 297.8230 299.6330 295.5270 300.000
+ 26 -1.0000 0.0000 3.2000 -5.4000 30.365 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9992 73.1094 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3259 5.0000 10.4000 299.1950 297.8310 299.5930 294.5440 300.000
+ 27 -1.0000 0.0000 3.2000 -5.3000 30.581 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5834 73.4421 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3259 5.0000 10.3000 299.2020 297.8330 299.9990 294.5110 300.000
+ 28 -1.0000 0.0000 3.2000 -5.2000 30.282 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1662 73.7770 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3259 5.0000 10.2000 299.1930 297.8280 300.7070 295.4720 300.000
+ 29 -1.0000 0.0000 3.2000 -5.1000 30.724 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7478 74.1142 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.3259 5.0000 10.1000 299.2150 297.8380 300.9610 295.4150 300.000
+ 30 -1.0000 0.0000 3.2000 -5.0000 30.283 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3280 74.4538 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3259 5.0000 10.0000 299.2530 297.8530 300.8620 294.8540 300.000
+ 31 -1.0000 0.0000 3.2000 -4.9000 30.293 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9067 74.7959 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3259 5.0000 9.9000 299.2350 297.8450 300.9220 295.7460 300.000
+ 32 -1.0000 0.0000 3.2000 -4.8000 30.344 51.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.4840 75.1405 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3259 5.0000 9.8000 299.3220 297.8690 300.3260 293.9290 300.000
+ 33 -1.0000 0.0000 3.2000 -4.7000 30.214 50.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.0599 75.4876 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3259 5.0000 9.7000 299.2960 297.8560 300.3130 295.0750 300.000
+ 34 -1.0000 0.0000 3.2000 -4.6000 30.301 52.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.6342 75.8374 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3259 5.0000 9.6000 299.2330 297.8470 300.2500 295.7970 300.000
+ 35 -1.0000 0.0000 3.2000 -4.5000 30.193 57.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2070 76.1900 -2.7386 0.5000 0.0000 0.0000 154.0666 -51.8666 2.3259 5.0000 9.5000 299.2230 297.8440 300.0320 295.8280 300.000
+ 36 -1.0000 0.0000 3.2000 -4.4000 30.482 77.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7781 76.5453 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3259 5.0000 9.4000 299.2120 297.8420 299.8460 295.8910 300.000
+ 37 -1.0000 0.0000 3.2000 -4.3000 30.314 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3476 76.9035 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.3259 5.0000 9.3000 299.1950 297.8360 299.6740 295.8760 300.000
+ 38 -1.0000 0.0000 3.2000 -4.2000 30.418 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9154 77.2647 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3259 5.0000 9.2000 299.1810 297.8310 299.6430 295.8890 300.000
+ 39 -1.0000 0.0000 3.2000 -4.1000 30.398 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.4815 77.6289 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.3259 5.0000 9.1000 299.1770 297.8300 299.8310 295.8140 300.000
+ 40 -1.0000 0.0000 3.2000 -4.0000 30.589 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.0458 77.9962 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3259 5.0000 9.0000 299.1830 297.8320 300.2060 295.7880 300.000
+ 41 -1.0000 0.0000 3.2000 -3.9000 30.128 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6083 78.3668 -2.7386 0.5000 0.0000 0.0000 153.1390 -53.7217 2.3259 5.0000 8.9000 299.1940 297.8360 300.5260 295.8190 300.000
+ 42 -1.0000 0.0000 3.2000 -3.8000 30.437 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1689 78.7406 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.3259 5.0000 8.8000 299.2040 297.8390 300.6150 295.8110 300.000
+ 43 -1.0000 0.0000 3.2000 -3.7000 30.444 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7276 79.1179 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.3259 5.0000 8.7000 299.2090 297.8410 300.5460 295.8670 300.000
+ 44 -1.0000 0.0000 3.2000 -3.6000 30.365 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.2842 79.4987 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3259 5.0000 8.6000 299.2080 297.8420 300.3890 295.8940 300.000
+ 45 -1.0000 0.0000 3.2000 -3.5000 30.534 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.8389 79.8830 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3259 5.0000 8.5000 299.2090 297.8420 300.1880 295.8460 300.000
+# Sum of Counts = 1024
+# Center of Mass = -5.450293+/-0.243676
+# Full Width Half-Maximum = 2.359555+/-0.103754
+# 2:00:56 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0053.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0053.dat
new file mode 100644
index 0000000..0de744c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0053.dat
@@ -0,0 +1,77 @@
+# scan = 53
+# date = 10/25/2011
+# time = 2:00:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.5), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.2000 30.485 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8852 68.9950 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.4439 5.0000 13.2000 299.1930 297.8360 299.9050 296.0860 300.000
+ 2 -1.0000 0.0000 3.5000 -8.1000 30.392 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.5072 69.2901 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 2.4439 5.0000 13.1000 299.1790 297.8310 299.7330 296.0690 300.000
+ 3 -1.0000 0.0000 3.5000 -8.0000 30.482 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1284 69.5865 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.4439 5.0000 13.0000 299.1650 297.8260 299.6340 296.0460 300.000
+ 4 -1.0000 0.0000 3.5000 -7.9000 30.516 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.7488 69.8843 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.4439 5.0000 12.9000 299.1550 297.8230 299.7260 296.0320 300.000
+ 5 -1.0000 0.0000 3.5000 -7.8000 30.169 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3686 70.1836 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.4439 5.0000 12.8000 299.1560 297.8230 300.0930 296.0370 300.000
+ 6 -1.0000 0.0000 3.5000 -7.7000 30.437 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.9876 70.4843 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.4439 5.0000 12.7000 299.1680 297.8260 300.4800 295.9780 300.000
+ 7 -1.0000 0.0000 3.5000 -7.6000 30.135 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.6058 70.7866 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.4439 5.0000 12.6000 299.1960 297.8370 300.5340 295.2850 300.000
+ 8 -1.0000 0.0000 3.5000 -7.5000 30.253 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2231 71.0903 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.4439 5.0000 12.5000 299.1880 297.8330 300.6400 296.0830 300.000
+ 9 -1.0000 0.0000 3.5000 -7.4000 30.319 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8396 71.3956 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.4439 5.0000 12.4000 299.1940 297.8360 300.4680 296.0210 300.000
+ 10 -1.0000 0.0000 3.5000 -7.3000 30.432 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4553 71.7026 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.4439 5.0000 12.3000 299.1930 297.8380 300.2870 296.0450 300.000
+ 11 -1.0000 0.0000 3.5000 -7.2000 30.286 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0701 72.0111 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.4439 5.0000 12.2000 299.1860 297.8350 300.0840 296.0410 300.000
+ 12 -1.0000 0.0000 3.5000 -7.1000 30.246 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6840 72.3214 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.4439 5.0000 12.1000 299.1780 297.8330 299.9010 296.0610 300.000
+ 13 -1.0000 0.0000 3.5000 -7.0000 30.601 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2970 72.6334 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.4439 5.0000 12.0000 299.1720 297.8310 299.6990 295.9570 300.000
+ 14 -1.0000 0.0000 3.5000 -6.9000 30.151 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9090 72.9471 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.4439 5.0000 11.9000 299.1580 297.8260 299.6550 295.8780 300.000
+ 15 -1.0000 0.0000 3.5000 -6.8000 30.473 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5200 73.2626 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.4439 5.0000 11.8000 299.1630 297.8310 299.7640 295.5140 300.000
+ 16 -1.0000 0.0000 3.5000 -6.7000 30.387 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1301 73.5800 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 2.4439 5.0000 11.7000 299.1600 297.8270 300.1490 295.6830 300.000
+ 17 -1.0000 0.0000 3.5000 -6.6000 30.393 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7391 73.8993 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.4439 5.0000 11.6000 299.1830 297.8370 300.3080 295.1740 300.000
+ 18 -1.0000 0.0000 3.5000 -6.5000 30.381 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3470 74.2205 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.4439 5.0000 11.5000 299.1760 297.8340 300.5240 295.8170 300.000
+ 19 -1.0000 0.0000 3.5000 -6.4000 30.308 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9539 74.5437 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.4439 5.0000 11.4000 299.1840 297.8370 300.4600 295.7420 300.000
+ 20 -1.0000 0.0000 3.5000 -6.3000 30.311 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5596 74.8689 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.4439 5.0000 11.3000 299.2190 297.8510 300.0640 294.4980 300.000
+ 21 -1.0000 0.0000 3.5000 -6.2000 30.297 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1642 75.1962 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.4439 5.0000 11.2000 299.2080 297.8500 299.8770 294.5640 300.000
+ 22 -1.0000 0.0000 3.5000 -6.1000 30.231 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7677 75.5257 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.4439 5.0000 11.1000 299.1720 297.8350 299.9350 295.8030 300.000
+ 23 -1.0000 0.0000 3.5000 -6.0000 30.384 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.3699 75.8573 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.4439 5.0000 11.0000 299.1650 297.8320 299.7510 295.7440 300.000
+ 24 -1.0000 0.0000 3.5000 -5.9000 30.222 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9710 76.1912 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.4439 5.0000 10.9000 299.1630 297.8320 299.5660 295.4560 300.000
+ 25 -1.0000 0.0000 3.5000 -5.8000 30.179 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5707 76.5273 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.4439 5.0000 10.8000 299.1390 297.8220 299.7730 295.7900 300.000
+ 26 -1.0000 0.0000 3.5000 -5.7000 30.173 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1692 76.8658 -2.7386 0.5000 0.0000 0.0000 155.6648 -48.6702 2.4439 5.0000 10.7000 299.1430 297.8240 300.2300 295.8430 300.000
+ 27 -1.0000 0.0000 3.5000 -5.6000 30.289 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7663 77.2068 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.4439 5.0000 10.6000 299.1560 297.8280 300.6160 295.8380 300.000
+ 28 -1.0000 0.0000 3.5000 -5.5000 30.379 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.3621 77.5502 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.4439 5.0000 10.5000 299.1730 297.8340 300.7350 295.8560 300.000
+ 29 -1.0000 0.0000 3.5000 -5.4000 30.408 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.9565 77.8961 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.4439 5.0000 10.4000 299.1850 297.8390 300.6450 295.7600 300.000
+ 30 -1.0000 0.0000 3.5000 -5.3000 30.269 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5495 78.2447 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.4439 5.0000 10.3000 299.1880 297.8410 300.4610 295.7580 300.000
+ 31 -1.0000 0.0000 3.5000 -5.2000 30.604 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1410 78.5959 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.4439 5.0000 10.2000 299.1850 297.8400 300.2770 295.7770 300.000
+ 32 -1.0000 0.0000 3.5000 -5.1000 30.184 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7310 78.9498 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.4439 5.0000 10.1000 299.1790 297.8400 300.0550 295.8370 300.000
+ 33 -1.0000 0.0000 3.5000 -5.0000 30.477 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3195 79.3066 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.4439 5.0000 10.0000 299.1700 297.8370 299.8680 295.7570 300.000
+ 34 -1.0000 0.0000 3.5000 -4.9000 30.343 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9064 79.6663 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 2.4439 5.0000 9.9000 299.1720 297.8380 299.6190 295.4510 300.000
+ 35 -1.0000 0.0000 3.5000 -4.8000 30.018 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.4917 80.0289 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.4439 5.0000 9.8000 299.1530 297.8310 299.6160 295.5840 300.000
+ 36 -1.0000 0.0000 3.5000 -4.7000 30.622 33.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0753 80.3946 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2899 2.4439 5.0000 9.7000 299.1450 297.8290 299.9520 295.7960 300.000
+ 37 -1.0000 0.0000 3.5000 -4.6000 30.555 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.6572 80.7634 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.4439 5.0000 9.6000 299.1550 297.8310 300.3680 295.7480 300.000
+ 38 -1.0000 0.0000 3.5000 -4.5000 30.319 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.2374 81.1354 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.4439 5.0000 9.5000 299.1680 297.8340 300.6220 295.8680 300.000
+ 39 -1.0000 0.0000 3.5000 -4.4000 30.062 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8158 81.5108 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.4439 5.0000 9.4000 299.1780 297.8390 300.5910 295.8300 300.000
+ 40 -1.0000 0.0000 3.5000 -4.3000 30.344 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.3924 81.8895 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.4439 5.0000 9.3000 299.1820 297.8420 300.4520 295.7650 300.000
+ 41 -1.0000 0.0000 3.5000 -4.2000 30.282 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9671 82.2717 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.4439 5.0000 9.2000 299.1810 297.8410 300.2680 295.8540 300.000
+ 42 -1.0000 0.0000 3.5000 -4.0999 30.475 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.5399 82.6575 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0814 2.4439 5.0000 9.0999 299.1760 297.8400 300.0820 295.8410 300.000
+ 43 -1.0000 0.0000 3.5000 -4.0000 30.470 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.1107 83.0470 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.4439 5.0000 9.0000 299.1690 297.8390 299.8920 295.8210 300.000
+# Sum of Counts = 836
+# Center of Mass = -5.990668+/-0.296246
+# Full Width Half-Maximum = 2.523946+/-0.122063
+# 2:24:33 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0054.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0054.dat
new file mode 100644
index 0000000..f846b5b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0054.dat
@@ -0,0 +1,79 @@
+# scan = 54
+# date = 10/25/2011
+# time = 2:24:33 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.8), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.8000 -7.9000 30.015 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6093 74.6442 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5663 5.0000 12.9000 299.1560 297.8310 299.6420 295.9250 300.000
+ 2 -1.0000 0.0000 3.8000 -7.8000 30.184 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2389 74.9540 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5663 5.0000 12.8000 299.1400 297.8250 299.6260 296.0120 300.000
+ 3 -1.0000 0.0000 3.8000 -7.7000 30.334 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8677 75.2656 -2.7386 0.5000 0.0000 0.0000 157.7754 -44.4490 2.5663 5.0000 12.7000 299.1340 297.8230 299.8580 296.0200 300.000
+ 4 -1.0000 0.0000 3.8000 -7.6000 30.524 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4955 75.5789 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5663 5.0000 12.6000 299.1600 297.8260 300.2820 295.8890 300.000
+ 5 -1.0000 0.0000 3.8000 -7.5000 30.518 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1223 75.8940 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5663 5.0000 12.5000 299.1620 297.8330 300.6660 295.7610 300.000
+ 6 -1.0000 0.0000 3.8000 -7.4000 30.249 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7482 76.2110 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5663 5.0000 12.4000 299.1810 297.8410 300.7910 295.6750 300.000
+ 7 -1.0000 0.0000 3.8000 -7.3000 30.486 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3730 76.5298 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5663 5.0000 12.3000 299.2000 297.8480 300.7280 295.6130 300.000
+ 8 -1.0000 0.0000 3.8000 -7.2000 30.568 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9969 76.8507 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5663 5.0000 12.2000 299.1960 297.8490 300.5840 295.7440 300.000
+ 9 -1.0000 0.0000 3.8000 -7.1000 30.180 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6197 77.1735 -2.7386 0.5000 0.0000 0.0000 157.2008 -45.5982 2.5663 5.0000 12.1000 299.2000 297.8500 300.3650 295.6970 300.000
+ 10 -1.0000 0.0000 3.8000 -7.0000 30.350 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2414 77.4984 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5663 5.0000 12.0000 299.2230 297.8640 299.8980 294.5500 300.000
+ 11 -1.0000 0.0000 3.8000 -6.9000 30.499 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8620 77.8253 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5663 5.0000 11.9000 299.1940 297.8490 299.9240 295.4820 300.000
+ 12 -1.0000 0.0000 3.8000 -6.8000 30.549 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.4815 78.1544 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5663 5.0000 11.8000 299.1830 297.8450 299.7890 295.7050 300.000
+ 13 -1.0000 0.0000 3.8000 -6.7000 30.377 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.0999 78.4856 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.5663 5.0000 11.7000 299.1680 297.8430 299.6800 295.7030 300.000
+ 14 -1.0000 0.0000 3.8000 -6.6000 30.512 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7170 78.8191 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5663 5.0000 11.6000 299.1600 297.8370 299.7250 295.6320 300.000
+ 15 -1.0000 0.0000 3.8000 -6.5000 30.277 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3330 79.1549 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5663 5.0000 11.5000 299.1620 297.8370 299.9230 295.5480 300.000
+ 16 -1.0000 0.0000 3.8000 -6.4000 30.298 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9477 79.4930 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5663 5.0000 11.4000 299.1850 297.8460 300.1900 294.9270 300.000
+ 17 -1.0000 0.0000 3.8000 -6.3000 30.222 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5611 79.8336 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5663 5.0000 11.3000 299.1710 297.8410 300.6610 295.8290 300.000
+ 18 -1.0000 0.0000 3.8000 -6.2000 30.334 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.1732 80.1766 -2.7386 0.5000 0.0000 0.0000 156.2485 -47.5028 2.5663 5.0000 11.2000 299.1860 297.8460 300.6980 295.8140 300.000
+ 19 -1.0000 0.0000 3.8000 -6.1000 30.625 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.7841 80.5220 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5663 5.0000 11.1000 299.1920 297.8490 300.6110 295.7840 300.000
+ 20 -1.0000 0.0000 3.8000 -6.0000 30.493 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.3935 80.8701 -2.7386 0.5000 0.0000 0.0000 156.0201 -47.9596 2.5663 5.0000 11.0000 299.1950 297.8510 300.4260 295.7700 300.000
+ 21 -1.0000 0.0000 3.8000 -5.9000 30.434 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.0016 81.2208 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5663 5.0000 10.9000 299.1950 297.8530 300.1940 295.6900 300.000
+ 22 -1.0000 0.0000 3.8000 -5.8000 30.061 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.6082 81.5743 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5663 5.0000 10.8000 299.1890 297.8520 299.9560 295.6490 300.000
+ 23 -1.0000 0.0000 3.8000 -5.7000 30.266 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.2134 81.9305 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5663 5.0000 10.7000 299.1760 297.8480 299.7970 295.7780 300.000
+ 24 -1.0000 0.0000 3.8000 -5.6000 30.303 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8170 82.2896 -2.7386 0.5000 0.0000 0.0000 155.5427 -48.9142 2.5663 5.0000 10.6000 299.1650 297.8420 299.7100 295.8370 300.000
+ 25 -1.0000 0.0000 3.8000 -5.5000 30.406 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.4192 82.6515 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5663 5.0000 10.5000 299.1580 297.8410 299.7530 295.7010 300.000
+ 26 -1.0000 0.0000 3.8000 -5.4000 30.071 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.0197 83.0165 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.5663 5.0000 10.4000 299.1610 297.8390 299.9610 295.7560 300.000
+ 27 -1.0000 0.0000 3.8000 -5.3000 30.448 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.6186 83.3846 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.5663 5.0000 10.3000 299.1860 297.8520 300.0620 295.0090 300.000
+ 28 -1.0000 0.0000 3.8000 -5.2000 30.100 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2159 83.7558 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.5663 5.0000 10.2000 299.1870 297.8490 300.3320 295.2530 300.000
+ 29 -1.0000 0.0000 3.8000 -5.1000 30.678 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.8115 84.1302 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.5663 5.0000 10.1000 299.1740 297.8460 300.4860 295.8740 300.000
+ 30 -1.0000 0.0000 3.8000 -5.0000 30.266 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.4054 84.5080 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.5663 5.0000 10.0000 299.1830 297.8470 300.3820 295.8360 300.000
+ 31 -1.0000 0.0000 3.8000 -4.9000 30.479 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.9975 84.8892 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.5663 5.0000 9.9000 299.1790 297.8500 300.2000 295.7200 300.000
+ 32 -1.0000 0.0000 3.8000 -4.8000 30.355 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5878 85.2739 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.5663 5.0000 9.8000 299.1730 297.8460 300.0390 295.8250 300.000
+ 33 -1.0000 0.0000 3.8000 -4.7000 30.055 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1762 85.6622 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.5663 5.0000 9.7000 299.1650 297.8450 299.8380 295.8280 300.000
+ 34 -1.0000 0.0000 3.8000 -4.6000 30.191 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7627 86.0542 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.5663 5.0000 9.6000 299.1680 297.8470 299.6080 295.3970 300.000
+ 35 -1.0000 0.0000 3.8000 -4.5000 30.374 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3472 86.4500 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.5663 5.0000 9.5000 299.1530 297.8410 299.6420 295.7220 300.000
+ 36 -1.0000 0.0000 3.8000 -4.4000 30.267 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.9297 86.8498 -2.7386 0.5000 0.0000 0.0000 153.9187 -52.1624 2.5663 5.0000 9.4000 299.1520 297.8410 299.7690 295.3880 300.000
+ 37 -1.0000 0.0000 3.8000 -4.3000 30.339 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.5102 87.2535 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.5663 5.0000 9.3000 299.1860 297.8530 299.8620 294.2960 300.000
+ 38 -1.0000 0.0000 3.8000 -4.2000 30.305 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.0885 87.6614 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.5663 5.0000 9.2000 299.1910 297.8560 300.2230 294.3910 300.000
+ 39 -1.0000 0.0000 3.8000 -4.1000 30.282 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.6647 88.0736 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.5663 5.0000 9.1000 299.1650 297.8450 300.7080 295.8480 300.000
+ 40 -1.0000 0.0000 3.8000 -4.0000 30.648 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.2386 88.4902 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.5663 5.0000 9.0000 299.2140 297.8640 300.4300 294.5280 300.000
+ 41 -1.0000 0.0000 3.8000 -3.9000 30.408 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.1898 88.9113 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.5663 5.0000 8.9000 299.2440 297.8620 300.3740 295.0230 300.000
+ 42 -1.0000 0.0000 3.8000 -3.8000 30.512 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.6205 89.3370 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.5663 5.0000 8.8000 299.2280 297.8690 300.0740 294.4050 300.000
+ 43 -1.0000 0.0000 3.8000 -3.7000 30.683 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.0536 89.7676 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.5663 5.0000 8.7000 299.1870 297.8530 300.1380 295.8790 300.000
+ 44 -1.0000 0.0000 3.8000 -3.6000 30.167 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.4892 90.2032 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.5663 5.0000 8.6000 299.1800 297.8520 299.9270 295.8610 300.000
+ 45 -1.0000 0.0000 3.8000 -3.5000 30.333 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.9274 90.6438 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.5663 5.0000 8.5000 299.2040 297.8610 299.5040 294.6480 300.000
+# Sum of Counts = 805
+# Center of Mass = -5.648323+/-0.284934
+# Full Width Half-Maximum = 2.489102+/-0.114698
+# 2:49:14 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0055.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0055.dat
new file mode 100644
index 0000000..eec22b0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0055.dat
@@ -0,0 +1,47 @@
+# scan = 55
+# date = 10/25/2011
+# time = 2:49:14 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.3 e -1.75 -0.55 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.3 e -1.75 -0.55 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.3), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.3000 -1.7500 15.082 68.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.5232 72.9217 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 2.0059 5.0000 6.7500 299.1570 297.8410 300.0040 296.0420 300.000
+ 2 -1.0000 0.0000 2.3000 -1.6500 15.183 146.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0060 73.3092 -2.7386 0.5000 0.0000 0.0000 148.4862 -63.0274 2.0059 5.0000 6.6500 299.1550 297.8390 300.3500 296.0780 300.000
+ 3 -1.0000 0.0000 2.3000 -1.5500 15.146 271.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4859 73.7007 -2.7386 0.5000 0.0000 0.0000 148.2188 -63.5624 2.0059 5.0000 6.5500 299.1640 297.8420 300.6680 296.0930 300.000
+ 4 -1.0000 0.0000 2.3000 -1.4500 15.082 366.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9628 74.0965 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 2.0059 5.0000 6.4500 299.1760 297.8470 300.8570 296.1000 300.000
+ 5 -1.0000 0.0000 2.3000 -1.3500 15.228 255.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.4368 74.4968 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 2.0059 5.0000 6.3500 299.1880 297.8490 300.9400 296.0940 300.000
+ 6 -1.0000 0.0000 2.3000 -1.2500 15.063 189.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.9076 74.9015 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2543 2.0059 5.0000 6.2500 299.1950 297.8530 300.9530 296.1040 300.000
+ 7 -1.0000 0.0000 2.3000 -1.1500 15.379 207.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3752 75.3111 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 2.0059 5.0000 6.1500 299.2040 297.8570 300.9150 296.0880 300.000
+ 8 -1.0000 0.0000 2.3000 -1.0500 15.336 426.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8394 75.7255 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 2.0059 5.0000 6.0500 299.2090 297.8590 300.8390 296.1010 300.000
+ 9 -1.0000 0.0000 2.3000 -0.9500 15.319 139.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3002 76.1451 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 2.0059 5.0000 5.9500 299.2100 297.8590 300.7370 296.1230 300.000
+ 10 -1.0000 0.0000 2.3000 -0.8500 15.085 92.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7574 76.5700 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 2.0059 5.0000 5.8500 299.2140 297.8630 300.6250 296.0080 300.000
+ 11 -1.0000 0.0000 2.3000 -0.7500 14.917 27.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2110 77.0005 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4056 2.0059 5.0000 5.7500 299.2170 297.8670 300.4910 295.8960 300.000
+ 12 -1.0000 0.0000 2.3000 -0.6500 15.106 20.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.6607 77.4368 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 2.0059 5.0000 5.6500 299.2170 297.8670 300.3540 295.8610 300.000
+ 13 -1.0000 0.0000 2.3000 -0.5500 15.127 12.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1065 77.8790 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 2.0059 5.0000 5.5500 299.2100 297.8650 300.2410 295.9960 300.000
+# Sum of Counts = 2218
+# Center of Mass = -1.274391+/-0.038656
+# Full Width Half-Maximum = 0.514515+/-0.024729
+# 2:53:26 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0056.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0056.dat
new file mode 100644
index 0000000..5b391f1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0056.dat
@@ -0,0 +1,50 @@
+# scan = 56
+# date = 10/25/2011
+# time = 2:53:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -5.0 -1.9 0.2 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 0 e -5.0 -1.9 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 30.333 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.8832 77.1476 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3918 5.0000 10.0000 299.1860 297.8600 299.7360 295.8610 300.000
+ 2 1.5000 0.0000 0.0000 -4.8000 30.275 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.7174 77.8536 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3918 5.0000 9.8000 299.1710 297.8550 299.6430 295.9260 300.000
+ 3 1.5000 0.0000 0.0000 -4.6000 30.354 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.5578 78.5708 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3918 5.0000 9.6000 299.1610 297.8500 299.7290 295.8940 300.000
+ 4 1.5000 0.0000 0.0000 -4.4000 30.162 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.4050 79.2999 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3918 5.0000 9.4000 299.1630 297.8510 300.0990 295.9170 300.000
+ 5 1.5000 0.0000 0.0000 -4.2000 30.105 56.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.2590 80.0417 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3918 5.0000 9.2000 299.1750 297.8540 300.4950 295.9780 300.000
+ 6 1.5000 0.0000 0.0000 -4.0000 30.161 91.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.1205 80.7969 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3918 5.0000 9.0000 299.1860 297.8590 300.6630 295.9940 300.000
+ 7 1.5000 0.0000 0.0000 -3.8000 30.261 112.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.9897 81.5662 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.3918 5.0000 8.8000 299.1980 297.8630 300.6060 295.9320 300.000
+ 8 1.5000 0.0000 0.0000 -3.6000 30.527 118.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.8670 82.3505 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3918 5.0000 8.6000 299.2020 297.8650 300.4570 295.9580 300.000
+ 9 1.5000 0.0000 0.0000 -3.4000 30.384 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.7530 83.1508 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.3918 5.0000 8.4000 299.1990 297.8650 300.2690 295.9660 300.000
+ 10 1.5000 0.0000 0.0000 -3.2000 30.106 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.6481 83.9679 -2.7386 0.5000 0.0000 0.0000 151.9190 -56.1615 2.3918 5.0000 8.2000 299.1930 297.8630 300.0760 295.9990 300.000
+ 11 1.5000 0.0000 0.0000 -3.0000 30.320 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.5528 84.8030 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9224 2.3918 5.0000 8.0000 299.1850 297.8600 299.8710 295.9880 300.000
+ 12 1.5000 0.0000 0.0000 -2.8000 30.127 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.4676 85.6574 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.3918 5.0000 7.8000 299.1730 297.8570 299.6800 295.9670 300.000
+ 13 1.5000 0.0000 0.0000 -2.6000 30.207 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.3932 86.5322 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.3918 5.0000 7.6000 299.1630 297.8520 299.6290 295.9180 300.000
+ 14 1.5000 0.0000 0.0000 -2.4000 30.456 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 130.3302 87.4288 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.3918 5.0000 7.4000 299.1560 297.8490 299.8090 295.9200 300.000
+ 15 1.5000 0.0000 0.0000 -2.2000 30.268 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 131.2792 88.3489 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.3918 5.0000 7.2000 299.1590 297.8510 300.2470 295.9290 300.000
+ 16 1.5000 0.0000 0.0000 -2.0000 30.473 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 132.2411 89.2942 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.3918 5.0000 7.0000 299.1750 297.8560 300.6020 295.9430 300.000
+# Sum of Counts = 510
+# Center of Mass = -3.770196+/-0.236974
+# Full Width Half-Maximum = 0.919109+/-0.110482
+# 3:03:22 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0057.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0057.dat
new file mode 100644
index 0000000..0373d16
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0057.dat
@@ -0,0 +1,61 @@
+# scan = 57
+# date = 10/25/2011
+# time = 3:03:23 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.4 k 0 l 0.2 e -4.5 -1.9 0.1 preset mcu 1.0
+# builtin_command = scan h 1.4 k 0 l 0.2 e -4.5 -1.9 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.4000 0.0000 0.2000 -4.5000 60.504 66.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.7263 72.4761 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2349 5.0000 9.5000 299.1960 297.8640 300.6600 295.8670 300.000
+ 2 1.4000 0.0000 0.2000 -4.4000 60.435 78.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1630 72.8180 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1625 2.2349 5.0000 9.4000 299.2020 297.8670 300.3340 295.7740 300.000
+ 3 1.4000 0.0000 0.2000 -4.3000 60.847 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.6011 73.1624 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2349 5.0000 9.3000 299.1950 297.8630 299.9400 295.7560 300.000
+ 4 1.4000 0.0000 0.2000 -4.2000 61.003 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.0408 73.5095 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2349 5.0000 9.2000 299.1720 297.8550 299.6340 295.6670 300.000
+ 5 1.4000 0.0000 0.2000 -4.1000 60.610 80.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.4822 73.8591 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2349 5.0000 9.1000 299.1590 297.8490 299.9780 295.8420 300.000
+ 6 1.4000 0.0000 0.2000 -4.0000 60.930 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.9251 74.2115 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2349 5.0000 9.0000 299.1740 297.8560 300.6110 295.9620 300.000
+ 7 1.4000 0.0000 0.2000 -3.9000 60.513 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.3698 74.5668 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2349 5.0000 8.9000 299.1890 297.8620 300.5170 295.9200 300.000
+ 8 1.4000 0.0000 0.2000 -3.8000 61.006 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.8162 74.9249 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2349 5.0000 8.8000 299.1890 297.8630 300.1660 295.9230 300.000
+ 9 1.4000 0.0000 0.2000 -3.7000 60.322 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.2643 75.2860 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2349 5.0000 8.7000 299.1720 297.8570 299.7780 295.8860 300.000
+ 10 1.4000 0.0000 0.2000 -3.6000 60.877 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.7144 75.6501 -2.7386 0.5000 0.0000 0.0000 152.6361 -54.7275 2.2349 5.0000 8.6000 299.1500 297.8480 299.6560 295.8490 300.000
+ 11 1.4000 0.0000 0.2000 -3.5000 60.781 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.1662 76.0174 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2349 5.0000 8.5000 299.1560 297.8520 300.3750 295.8210 300.000
+ 12 1.4000 0.0000 0.2000 -3.4000 60.732 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.6201 76.3880 -2.7386 0.5000 0.0000 0.0000 152.2845 -55.4306 2.2349 5.0000 8.4000 299.1800 297.8600 300.6610 295.9130 300.000
+ 13 1.4000 0.0000 0.2000 -3.3000 60.880 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.0759 76.7620 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2349 5.0000 8.3000 299.1850 297.8630 300.4130 295.9960 300.000
+ 14 1.4000 0.0000 0.2000 -3.2000 60.793 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.5338 77.1394 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.2349 5.0000 8.2000 299.1780 297.8620 300.0040 295.8760 300.000
+ 15 1.4000 0.0000 0.2000 -3.1000 60.490 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.9938 77.5203 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.2349 5.0000 8.1000 299.1590 297.8540 299.6760 295.8920 300.000
+ 16 1.4000 0.0000 0.2000 -3.0000 60.635 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.4559 77.9049 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9223 2.2349 5.0000 8.0000 299.1430 297.8480 299.8560 295.8840 300.000
+ 17 1.4000 0.0000 0.2000 -2.9000 60.660 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9203 78.2934 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2349 5.0000 7.9000 299.1610 297.8540 300.5380 295.8520 300.000
+ 18 1.4000 0.0000 0.2000 -2.8000 60.547 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.3869 78.6857 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2349 5.0000 7.8000 299.1810 297.8600 300.5560 295.8570 300.000
+ 19 1.4000 0.0000 0.2000 -2.7000 60.603 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.8560 79.0821 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.2349 5.0000 7.7000 299.1790 297.8640 300.2170 295.9120 300.000
+ 20 1.4000 0.0000 0.2000 -2.6000 60.553 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.3274 79.4826 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.2349 5.0000 7.6000 299.1650 297.8570 299.8390 295.9130 300.000
+ 21 1.4000 0.0000 0.2000 -2.5000 60.419 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.8013 79.8875 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.2349 5.0000 7.5000 299.1410 297.8490 299.6350 295.8920 300.000
+ 22 1.4000 0.0000 0.2000 -2.4000 60.376 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.2778 80.2968 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.2349 5.0000 7.4000 299.1370 297.8500 300.2000 295.9640 300.000
+ 23 1.4000 0.0000 0.2000 -2.3000 60.558 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.7570 80.7108 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.2349 5.0000 7.3000 299.1620 297.8570 300.6530 295.8770 300.000
+ 24 1.4000 0.0000 0.2000 -2.2000 60.544 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.2388 81.1295 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.2349 5.0000 7.2000 299.1750 297.8630 300.4400 295.9030 300.000
+ 25 1.4000 0.0000 0.2000 -2.1000 60.212 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.7235 81.5531 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.2349 5.0000 7.1000 299.1680 297.8610 300.0580 295.8990 300.000
+ 26 1.4000 0.0000 0.2000 -2.0000 60.616 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.2110 81.9819 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.2349 5.0000 7.0000 299.1480 297.8560 299.7070 295.8930 300.000
+ 27 1.4000 0.0000 0.2000 -1.9000 60.574 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.7015 82.4159 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.2349 5.0000 6.9000 299.1280 297.8490 299.7560 295.8970 300.000
+# Sum of Counts = 740
+# Center of Mass = -3.756216+/-0.196815
+# Full Width Half-Maximum = 1.336436+/-0.093465
+# 3:32:06 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0058.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0058.dat
new file mode 100644
index 0000000..52a5ec2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0058.dat
@@ -0,0 +1,58 @@
+# scan = 58
+# date = 10/25/2011
+# time = 3:32:06 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 0.4 e -4.2 -1.9 0.1 preset mcu 1.0
+# builtin_command = scan h 1.3 k 0 l 0.4 e -4.2 -1.9 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 0.4000 -4.2000 60.632 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.5724 67.4436 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0837 5.0000 9.2000 299.1540 297.8580 300.5950 295.9380 300.000
+ 2 1.3000 0.0000 0.4000 -4.1000 60.463 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0304 67.7726 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.0837 5.0000 9.1000 299.1720 297.8630 300.5580 295.8880 300.000
+ 3 1.3000 0.0000 0.4000 -4.0000 60.454 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.4900 68.1039 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0837 5.0000 9.0000 299.1720 297.8650 300.2050 295.7740 300.000
+ 4 1.3000 0.0000 0.4000 -3.9000 60.537 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.9510 68.4373 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.0837 5.0000 8.9000 299.1590 297.8600 299.8250 295.7770 300.000
+ 5 1.3000 0.0000 0.4000 -3.8000 60.476 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.4135 68.7730 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.0837 5.0000 8.8000 299.1380 297.8540 299.6130 295.6530 300.000
+ 6 1.3000 0.0000 0.4000 -3.7000 60.439 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.8776 69.1111 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.0837 5.0000 8.7000 299.1410 297.8530 300.2170 295.6900 300.000
+ 7 1.3000 0.0000 0.4000 -3.6000 60.513 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.3434 69.4516 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.0837 5.0000 8.6000 299.1690 297.8620 300.6610 295.7480 300.000
+ 8 1.3000 0.0000 0.4000 -3.5000 60.307 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.8108 69.7945 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.0837 5.0000 8.5000 299.1740 297.8670 300.4860 295.8090 300.000
+ 9 1.3000 0.0000 0.4000 -3.4000 60.975 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2799 70.1400 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.0837 5.0000 8.4000 299.1720 297.8660 300.0910 295.7940 300.000
+ 10 1.3000 0.0000 0.4000 -3.3000 60.596 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7508 70.4882 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.0837 5.0000 8.3000 299.1540 297.8600 299.7310 295.7750 300.000
+ 11 1.3000 0.0000 0.4000 -3.2000 60.608 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2235 70.8390 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.0837 5.0000 8.2000 299.1350 297.8530 299.7050 295.7870 300.000
+ 12 1.3000 0.0000 0.4000 -3.1000 60.311 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.6981 71.1927 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.0837 5.0000 8.1000 299.1450 297.8580 300.4610 295.8100 300.000
+ 13 1.3000 0.0000 0.4000 -3.0000 60.694 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.1746 71.5492 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0837 5.0000 8.0000 299.1690 297.8660 300.6340 295.8060 300.000
+ 14 1.3000 0.0000 0.4000 -2.9000 61.010 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.6531 71.9088 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.0837 5.0000 7.9000 299.1760 297.8680 300.3240 295.8180 300.000
+ 15 1.3000 0.0000 0.4000 -2.8000 60.569 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1337 72.2714 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0837 5.0000 7.8000 299.1620 297.8650 299.9430 295.8800 300.000
+ 16 1.3000 0.0000 0.4000 -2.7000 60.494 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.6164 72.6372 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0837 5.0000 7.7000 299.1420 297.8590 299.6260 295.7330 300.000
+ 17 1.3000 0.0000 0.4000 -2.6000 60.500 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.1012 73.0063 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.0837 5.0000 7.6000 299.1360 297.8550 299.9910 295.6620 300.000
+ 18 1.3000 0.0000 0.4000 -2.5000 60.660 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.5883 73.3787 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0837 5.0000 7.5000 299.1590 297.8620 300.6460 295.7990 300.000
+ 19 1.3000 0.0000 0.4000 -2.4000 60.482 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.0776 73.7547 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.0837 5.0000 7.4000 299.1740 297.8690 300.5610 295.9030 300.000
+ 20 1.3000 0.0000 0.4000 -2.3000 60.687 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.5694 74.1343 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0837 5.0000 7.3000 299.1740 297.8700 300.1850 295.8430 300.000
+ 21 1.3000 0.0000 0.4000 -2.2000 60.369 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.0636 74.5176 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.0837 5.0000 7.2000 299.1570 297.8650 299.8000 295.9100 300.000
+ 22 1.3000 0.0000 0.4000 -2.1000 60.604 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.5603 74.9048 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0837 5.0000 7.1000 299.1350 297.8580 299.6440 295.8200 300.000
+ 23 1.3000 0.0000 0.4000 -2.0000 60.740 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.0596 75.2960 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0837 5.0000 7.0000 299.1390 297.8580 300.2820 295.8590 300.000
+ 24 1.3000 0.0000 0.4000 -1.9000 60.272 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.5616 75.6913 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0837 5.0000 6.9000 299.1630 297.8670 300.6540 295.9260 300.000
+# Sum of Counts = 174
+# Center of Mass = -2.935057+/-0.318165
+# Full Width Half-Maximum = 1.240468+/-0.148735
+# 3:57:36 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0059.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0059.dat
new file mode 100644
index 0000000..6cd3cf9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0059.dat
@@ -0,0 +1,65 @@
+# scan = 59
+# date = 10/25/2011
+# time = 3:57:36 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.2000 0.0000 0.6000 -4.0000 60.618 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.7259 62.4547 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.9396 5.0000 9.0000 299.1780 297.8750 300.3260 295.8120 300.000
+ 2 1.2000 0.0000 0.6000 -3.9000 60.682 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2082 62.7712 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.9396 5.0000 8.9000 299.1680 297.8720 299.9280 295.7030 300.000
+ 3 1.2000 0.0000 0.6000 -3.8000 61.052 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.6918 63.0894 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 1.9396 5.0000 8.8000 299.1480 297.8660 299.6440 295.7170 300.000
+ 4 1.2000 0.0000 0.6000 -3.7000 60.922 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1768 63.4094 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.9396 5.0000 8.7000 299.1340 297.8610 299.9250 295.7050 300.000
+ 5 1.2000 0.0000 0.6000 -3.6000 60.373 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6633 63.7312 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.9396 5.0000 8.6000 299.1560 297.8680 300.6050 295.7850 300.000
+ 6 1.2000 0.0000 0.6000 -3.5000 60.866 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1512 64.0550 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.9396 5.0000 8.5000 299.1770 297.8760 300.5430 295.7100 300.000
+ 7 1.2000 0.0000 0.6000 -3.4000 60.746 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6407 64.3807 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4306 1.9396 5.0000 8.4000 299.1820 297.8770 300.1780 295.6970 300.000
+ 8 1.2000 0.0000 0.6000 -3.3000 60.634 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1318 64.7084 -2.7386 0.5000 0.0000 0.0000 152.1037 -55.7924 1.9396 5.0000 8.3000 299.1630 297.8740 299.7800 295.6930 300.000
+ 9 1.2000 0.0000 0.6000 -3.2000 60.747 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6244 65.0382 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.9396 5.0000 8.2000 299.1400 297.8650 299.6680 295.7490 300.000
+ 10 1.2000 0.0000 0.6000 -3.1000 60.309 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1188 65.3702 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.9396 5.0000 8.1000 299.1390 297.8640 300.2990 295.8600 300.000
+ 11 1.2000 0.0000 0.6000 -3.0000 60.659 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6149 65.7044 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.9396 5.0000 8.0000 299.1650 297.8720 300.6370 295.8100 300.000
+ 12 1.2000 0.0000 0.6000 -2.9000 60.436 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.1128 66.0408 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3147 1.9396 5.0000 7.9000 299.1770 297.8780 300.3630 295.7440 300.000
+ 13 1.2000 0.0000 0.6000 -2.8000 60.666 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.6125 66.3797 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.9396 5.0000 7.8000 299.1710 297.8760 299.9850 295.7760 300.000
+ 14 1.2000 0.0000 0.6000 -2.7000 60.349 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1141 66.7210 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.9396 5.0000 7.7000 299.1510 297.8690 299.6540 295.7340 300.000
+ 15 1.2000 0.0000 0.6000 -2.6000 60.827 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.6178 67.0648 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.9396 5.0000 7.6000 299.1360 297.8640 299.8740 295.7730 300.000
+ 16 1.2000 0.0000 0.6000 -2.5000 60.558 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.1234 67.4113 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.9396 5.0000 7.5000 299.1520 297.8690 300.5690 295.8830 300.000
+ 17 1.2000 0.0000 0.6000 -2.4000 60.669 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.6311 67.7604 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.9396 5.0000 7.4000 299.1680 297.8770 300.5480 295.8970 300.000
+ 18 1.2000 0.0000 0.6000 -2.3000 60.369 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1410 68.1124 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.9396 5.0000 7.3000 299.1690 297.8790 300.1960 295.8790 300.000
+ 19 1.2000 0.0000 0.6000 -2.2000 60.698 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6532 68.4672 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.9396 5.0000 7.2000 299.1580 297.8750 299.8340 295.8480 300.000
+ 20 1.2000 0.0000 0.6000 -2.1000 60.439 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.1676 68.8250 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.9396 5.0000 7.1000 299.1400 297.8670 299.6270 295.6820 300.000
+ 21 1.2000 0.0000 0.6000 -2.0000 60.521 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.6845 69.1859 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.9396 5.0000 7.0000 299.1380 297.8660 300.2590 295.8730 300.000
+ 22 1.2000 0.0000 0.6000 -1.9000 60.290 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2038 69.5500 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.9396 5.0000 6.9000 299.1600 297.8740 300.6950 295.9570 300.000
+ 23 1.2000 0.0000 0.6000 -1.8000 60.739 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7256 69.9173 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.9396 5.0000 6.8000 299.1730 297.8820 300.4670 295.9570 300.000
+ 24 1.2000 0.0000 0.6000 -1.7000 60.620 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2500 70.2882 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.9396 5.0000 6.7000 299.1670 297.8800 300.0770 295.9320 300.000
+ 25 1.2000 0.0000 0.6000 -1.6000 60.729 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.7772 70.6625 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.9396 5.0000 6.6000 299.1530 297.8740 299.7090 295.8790 300.000
+ 26 1.2000 0.0000 0.6000 -1.5000 60.290 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.3071 71.0406 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.9396 5.0000 6.5000 299.1310 297.8670 299.7440 295.8790 300.000
+ 27 1.2000 0.0000 0.6000 -1.4000 60.667 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.8399 71.4224 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.9396 5.0000 6.4000 299.1430 297.8720 300.4880 295.9270 300.000
+ 28 1.2000 0.0000 0.6000 -1.3000 60.474 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.3756 71.8083 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9396 5.0000 6.3000 299.1660 297.8800 300.6090 295.8780 300.000
+ 29 1.2000 0.0000 0.6000 -1.2000 60.289 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.9145 72.1982 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9396 5.0000 6.2000 299.1710 297.8830 300.2830 295.8510 300.000
+ 30 1.2000 0.0000 0.6000 -1.1000 60.902 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.4565 72.5924 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9396 5.0000 6.1000 299.1590 297.8790 299.8980 295.8200 300.000
+ 31 1.2000 0.0000 0.6000 -1.0000 60.688 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.0018 72.9910 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9396 5.0000 6.0000 299.1370 297.8710 299.6350 295.8210 300.000
+# Sum of Counts = 245
+# Center of Mass = -2.527755+/-0.233161
+# Full Width Half-Maximum = 1.469756+/-0.118057
+# 4:30:30 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0060.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0060.dat
new file mode 100644
index 0000000..a8a1ac5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0060.dat
@@ -0,0 +1,68 @@
+# scan = 60
+# date = 10/25/2011
+# time = 4:30:30 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 0.8 e -3.5 -0.2 0.1 preset mcu 1.0
+# builtin_command = scan h 1.1 k 0 l 0.8 e -3.5 -0.2 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 0.8000 -3.5000 60.621 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.1104 58.8027 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.8044 5.0000 8.5000 299.1320 297.8690 300.2210 295.8110 300.000
+ 2 1.1000 0.0000 0.8000 -3.4000 60.475 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6248 59.1130 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.8044 5.0000 8.4000 299.1550 297.8770 300.6670 295.8920 300.000
+ 3 1.1000 0.0000 0.8000 -3.3000 61.141 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.1406 59.4249 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.8044 5.0000 8.3000 299.1670 297.8830 300.4420 295.8010 300.000
+ 4 1.1000 0.0000 0.8000 -3.2000 60.361 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.6578 59.7382 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.8044 5.0000 8.2000 299.1630 297.8830 300.0400 295.7760 300.000
+ 5 1.1000 0.0000 0.8000 -3.1000 60.272 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1766 60.0532 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.8044 5.0000 8.1000 299.1410 297.8760 299.6930 295.7830 300.000
+ 6 1.1000 0.0000 0.8000 -3.0000 60.899 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6969 60.3698 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.8044 5.0000 8.0000 299.1250 297.8680 299.7750 295.8440 300.000
+ 7 1.1000 0.0000 0.8000 -2.9000 60.652 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2188 60.6880 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3147 1.8044 5.0000 7.9000 299.1410 297.8750 300.4540 295.8530 300.000
+ 8 1.1000 0.0000 0.8000 -2.8000 60.525 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7424 61.0081 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.8044 5.0000 7.8000 299.1640 297.8840 300.5480 295.8120 300.000
+ 9 1.1000 0.0000 0.8000 -2.7000 60.660 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2677 61.3300 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.8044 5.0000 7.7000 299.1650 297.8850 300.2520 295.7610 300.000
+ 10 1.1000 0.0000 0.8000 -2.6000 60.739 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7948 61.6537 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.8044 5.0000 7.6000 299.1540 297.8810 299.8750 295.7270 300.000
+ 11 1.1000 0.0000 0.8000 -2.5000 60.692 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3238 61.9794 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.8044 5.0000 7.5000 299.1340 297.8740 299.6160 295.6010 300.000
+ 12 1.1000 0.0000 0.8000 -2.4000 60.542 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8548 62.3070 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.8044 5.0000 7.4000 299.1290 297.8700 300.1470 295.7610 300.000
+ 13 1.1000 0.0000 0.8000 -2.3000 60.714 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3876 62.6368 -2.7386 0.5000 0.0000 0.0000 150.0734 -59.8530 1.8044 5.0000 7.3000 299.1510 297.8780 300.7120 295.8620 300.000
+ 14 1.1000 0.0000 0.8000 -2.2000 60.654 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9226 62.9687 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3102 1.8044 5.0000 7.2000 299.1690 297.8850 300.4930 295.7130 300.000
+ 15 1.1000 0.0000 0.8000 -2.1000 60.548 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4597 63.3028 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.8044 5.0000 7.1000 299.1670 297.8840 300.1180 295.8190 300.000
+ 16 1.1000 0.0000 0.8000 -2.0000 60.265 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.9990 63.6393 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8044 5.0000 7.0000 299.1450 297.8800 299.7300 295.7910 300.000
+ 17 1.1000 0.0000 0.8000 -1.9000 60.725 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5406 63.9781 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.8044 5.0000 6.9000 299.1280 297.8730 299.7020 295.7590 300.000
+ 18 1.1000 0.0000 0.8000 -1.8000 60.748 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0846 64.3194 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8044 5.0000 6.8000 299.1360 297.8750 300.4450 295.8950 300.000
+ 19 1.1000 0.0000 0.8000 -1.7000 60.452 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6310 64.6633 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8044 5.0000 6.7000 299.1580 297.8830 300.6390 295.9310 300.000
+ 20 1.1000 0.0000 0.8000 -1.6000 60.284 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1799 65.0098 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8044 5.0000 6.6000 299.1650 297.8860 300.3510 295.9430 300.000
+ 21 1.1000 0.0000 0.8000 -1.5000 60.869 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7314 65.3591 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8044 5.0000 6.5000 299.1580 297.8860 299.9450 295.8140 300.000
+ 22 1.1000 0.0000 0.8000 -1.4000 60.185 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2856 65.7113 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 1.8044 5.0000 6.4000 299.1380 297.8810 299.6420 295.8120 300.000
+ 23 1.1000 0.0000 0.8000 -1.3000 60.461 622.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8426 66.0664 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8044 5.0000 6.3000 299.1260 297.8740 299.9510 295.8330 300.000
+ 24 1.1000 0.0000 0.8000 -1.2000 60.705 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4026 66.4246 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8044 5.0000 6.2000 299.1480 297.8810 300.6220 295.9040 300.000
+ 25 1.1000 0.0000 0.8000 -1.1000 60.670 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9654 66.7859 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8044 5.0000 6.1000 299.1650 297.8880 300.5390 295.8930 300.000
+ 26 1.1000 0.0000 0.8000 -1.0000 60.515 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5314 67.1506 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8044 5.0000 6.0000 299.1650 297.8890 300.1610 295.8630 300.000
+ 27 1.1000 0.0000 0.8000 -0.9000 60.514 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1006 67.5187 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8044 5.0000 5.9000 299.1500 297.8850 299.8270 295.9090 300.000
+ 28 1.1000 0.0000 0.8000 -0.8000 60.392 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6732 67.8904 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8044 5.0000 5.8000 299.1300 297.8770 299.6410 295.8040 300.000
+ 29 1.1000 0.0000 0.8000 -0.7000 60.390 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.2491 68.2658 -2.7386 0.5000 0.0000 0.0000 145.6265 -68.7467 1.8044 5.0000 5.7000 299.1350 297.8780 300.2880 295.8010 300.000
+ 30 1.1000 0.0000 0.8000 -0.6000 60.833 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.8286 68.6452 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.8044 5.0000 5.6000 299.1580 297.8850 300.6690 295.9360 300.000
+ 31 1.1000 0.0000 0.8000 -0.5000 60.752 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.4117 69.0285 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.8044 5.0000 5.5000 299.1680 297.8910 300.4050 295.8710 300.000
+ 32 1.1000 0.0000 0.8000 -0.4000 60.440 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.9987 69.4160 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.8044 5.0000 5.4000 299.1640 297.8900 300.0220 295.8490 300.000
+ 33 1.1000 0.0000 0.8000 -0.3000 60.769 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.5896 69.8079 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.8044 5.0000 5.3000 299.1420 297.8840 299.6820 295.9160 300.000
+ 34 1.1000 0.0000 0.8000 -0.2000 60.831 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.1846 70.2044 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 1.8044 5.0000 5.2000 299.1250 297.8780 299.8100 295.8560 300.000
+# Sum of Counts = 1070
+# Center of Mass = -1.481028+/-0.066892
+# Full Width Half-Maximum = 1.266277+/-0.058254
+# 5:06:38 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0061.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0061.dat
new file mode 100644
index 0000000..438fb36
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0061.dat
@@ -0,0 +1,80 @@
+# scan = 61
+# date = 10/25/2011
+# time = 5:06:39 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -8.5 -4.0 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 4.5 e -8.5 -4.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -8.5000 61.013 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.6864 65.7410 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.3812 5.0000 13.5000 299.1720 297.8920 300.6150 295.7110 300.000
+ 2 0.0000 0.0000 4.5000 -8.4000 60.869 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.0691 66.0284 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 2.3812 5.0000 13.4000 299.1760 297.8940 300.3350 295.7600 300.000
+ 3 0.0000 0.0000 4.5000 -8.3000 60.991 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.4524 66.3170 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.3812 5.0000 13.3000 299.1690 297.8910 299.9440 295.7360 300.000
+ 4 0.0000 0.0000 4.5000 -8.2000 60.397 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.8364 66.6067 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.3812 5.0000 13.2000 299.1470 297.8840 299.6570 295.7680 300.000
+ 5 0.0000 0.0000 4.5000 -8.1000 60.706 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.2209 66.8976 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 2.3812 5.0000 13.1000 299.1320 297.8790 299.9190 295.8100 300.000
+ 6 0.0000 0.0000 4.5000 -8.0000 60.694 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.6060 67.1898 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.3812 5.0000 13.0000 299.1550 297.8870 300.6110 295.8140 300.000
+ 7 0.0000 0.0000 4.5000 -7.9000 60.529 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.9918 67.4832 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3812 5.0000 12.9000 299.1760 297.8940 300.5610 295.8140 300.000
+ 8 0.0000 0.0000 4.5000 -7.8000 60.617 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.3783 67.7780 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2659 2.3812 5.0000 12.7999 299.1750 297.8960 300.2010 295.8670 300.000
+ 9 0.0000 0.0000 4.5000 -7.7000 60.978 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.7655 68.0740 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.3812 5.0000 12.7000 299.1610 297.8910 299.8230 295.8180 300.000
+ 10 0.0000 0.0000 4.5000 -7.6000 60.711 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.1534 68.3714 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.3812 5.0000 12.6000 299.1420 297.8850 299.6180 295.7680 300.000
+ 11 0.0000 0.0000 4.5000 -7.5000 60.715 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.5420 68.6703 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.3812 5.0000 12.5000 299.1440 297.8840 300.2550 295.7240 300.000
+ 12 0.0000 0.0000 4.5000 -7.4000 60.970 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.9314 68.9705 -2.7386 0.5000 0.0000 0.0000 157.4937 -45.0126 2.3812 5.0000 12.4000 299.1730 297.8920 300.6720 295.6210 300.000
+ 13 0.0000 0.0000 4.5000 -7.3000 61.006 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.3216 69.2722 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.3812 5.0000 12.3000 299.1860 297.9000 300.4570 295.6750 300.000
+ 14 0.0000 0.0000 4.5000 -7.2000 60.915 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.7126 69.5754 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.3812 5.0000 12.2000 299.1770 297.8980 300.0650 295.7750 300.000
+ 15 0.0000 0.0000 4.5000 -7.1000 60.865 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.1044 69.8802 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.3812 5.0000 12.1000 299.1570 297.8900 299.7040 295.8210 300.000
+ 16 0.0000 0.0000 4.5000 -7.0000 60.675 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.4971 70.1864 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3812 5.0000 12.0000 299.1390 297.8840 299.7320 295.7330 300.000
+ 17 0.0000 0.0000 4.5000 -6.9000 60.717 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.8907 70.4944 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3812 5.0000 11.9000 299.1560 297.8880 300.4690 295.6490 300.000
+ 18 0.0000 0.0000 4.5000 -6.8000 60.696 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.2852 70.8039 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3812 5.0000 11.8000 299.1800 297.8960 300.6160 295.6880 300.000
+ 19 0.0000 0.0000 4.5000 -6.7000 60.791 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.6806 71.1152 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3812 5.0000 11.7000 299.1790 297.8980 300.3040 295.8510 300.000
+ 20 0.0000 0.0000 4.5000 -6.6000 60.790 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.0769 71.4282 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3812 5.0000 11.6000 299.1650 297.8950 299.9280 295.8520 300.000
+ 21 0.0000 0.0000 4.5000 -6.5000 60.486 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.4742 71.7429 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3812 5.0000 11.5000 299.1460 297.8890 299.6470 295.7680 300.000
+ 22 0.0000 0.0000 4.5000 -6.4000 60.944 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.8726 72.0594 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.3812 5.0000 11.4000 299.1340 297.8840 299.9600 295.8260 300.000
+ 23 0.0000 0.0000 4.5000 -6.3000 60.496 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.2719 72.3779 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 2.3812 5.0000 11.3000 299.1560 297.8910 300.6450 295.8470 300.000
+ 24 0.0000 0.0000 4.5000 -6.2000 60.407 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.6723 72.6982 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3812 5.0000 11.2000 299.1730 297.8980 300.5470 295.8180 300.000
+ 25 0.0000 0.0000 4.5000 -6.1000 60.483 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.0738 73.0205 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3812 5.0000 11.1000 299.1740 297.9010 300.1970 295.7630 300.000
+ 26 0.0000 0.0000 4.5000 -6.0000 60.854 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.4765 73.3448 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3812 5.0000 11.0000 299.1610 297.8960 299.8270 295.7430 300.000
+ 27 0.0000 0.0000 4.5000 -5.9000 60.439 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.8803 73.6711 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3812 5.0000 10.9000 299.1400 297.8870 299.6350 295.7550 300.000
+ 28 0.0000 0.0000 4.5000 -5.8000 60.478 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.2852 73.9995 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3812 5.0000 10.8000 299.1360 297.8860 300.2260 295.8140 300.000
+ 29 0.0000 0.0000 4.5000 -5.7000 60.511 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.6914 74.3301 -2.7386 0.5000 0.0000 0.0000 155.6649 -48.6703 2.3812 5.0000 10.6999 299.1590 297.8930 300.6400 295.9180 300.000
+ 30 0.0000 0.0000 4.5000 -5.6000 60.513 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0988 74.6629 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3812 5.0000 10.6000 299.1660 297.8980 300.4380 295.9890 300.000
+ 31 0.0000 0.0000 4.5000 -5.5000 60.966 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.5075 74.9979 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3812 5.0000 10.5000 299.1640 297.8980 300.0460 295.8940 300.000
+ 32 0.0000 0.0000 4.5000 -5.4000 60.470 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9175 75.3353 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3812 5.0000 10.4000 299.1460 297.8920 299.7120 295.8660 300.000
+ 33 0.0000 0.0000 4.5000 -5.3000 60.944 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3288 75.6751 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3812 5.0000 10.3000 299.1260 297.8850 299.7460 295.8790 300.000
+ 34 0.0000 0.0000 4.5000 -5.2000 60.999 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.7415 76.0173 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3812 5.0000 10.2000 299.1420 297.8890 300.4910 295.8330 300.000
+ 35 0.0000 0.0000 4.5000 -5.1000 60.789 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.1556 76.3620 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.3812 5.0000 10.1000 299.1610 297.8970 300.5950 295.8950 300.000
+ 36 0.0000 0.0000 4.5000 -5.0000 60.534 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.5712 76.7094 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3812 5.0000 10.0000 299.1680 297.9010 300.2940 295.8090 300.000
+ 37 0.0000 0.0000 4.5000 -4.9000 60.963 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.9882 77.0593 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3812 5.0000 9.9000 299.1570 297.8970 299.9130 295.8770 300.000
+ 38 0.0000 0.0000 4.5000 -4.8000 60.981 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.4068 77.4120 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3812 5.0000 9.8000 299.1350 297.8900 299.6210 295.7890 300.000
+ 39 0.0000 0.0000 4.5000 -4.7000 60.568 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.8269 77.7674 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3812 5.0000 9.7000 299.1300 297.8870 300.0220 295.7540 300.000
+ 40 0.0000 0.0000 4.5000 -4.6000 60.522 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2486 78.1258 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5758 2.3812 5.0000 9.6000 299.1530 297.8940 300.6560 295.8480 300.000
+ 41 0.0000 0.0000 4.5000 -4.5000 60.928 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.6720 78.4870 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3812 5.0000 9.5000 299.1690 297.9010 300.5460 295.8780 300.000
+ 42 0.0000 0.0000 4.5000 -4.4000 61.085 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.0970 78.8514 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3812 5.0000 9.4000 299.1710 297.9030 300.1830 295.8250 300.000
+ 43 0.0000 0.0000 4.5000 -4.3000 60.551 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.5238 79.2188 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4634 2.3812 5.0000 9.3000 299.1520 297.8990 299.7940 295.8050 300.000
+ 44 0.0000 0.0000 4.5000 -4.2000 61.108 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9524 79.5894 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3812 5.0000 9.2000 299.1320 297.8910 299.6590 295.8600 300.000
+ 45 0.0000 0.0000 4.5000 -4.1000 60.965 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3828 79.9633 -2.7386 0.5000 0.0000 0.0000 153.4592 -53.0813 2.3812 5.0000 9.1000 299.1320 297.8900 300.2730 295.9360 300.000
+ 46 0.0000 0.0000 4.5000 -4.0000 60.600 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.8150 80.3406 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3812 5.0000 9.0000 299.1570 297.8990 300.6100 295.9290 300.000
+# Sum of Counts = 396
+# Center of Mass = -6.490657+/-0.465386
+# Full Width Half-Maximum = 2.457591+/-0.173143
+# 5:55:48 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0062.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0062.dat
new file mode 100644
index 0000000..8090d72
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0062.dat
@@ -0,0 +1,79 @@
+# scan = 62
+# date = 10/25/2011
+# time = 5:55:48 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.2 e -7.9 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 4.2 e -7.9 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.2000 -7.9000 60.781 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 11.8414 61.4954 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.2224 5.0000 12.9000 299.1690 297.9060 300.2620 295.8960 300.000
+ 2 0.0000 0.0000 4.2000 -7.8000 60.616 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.2476 61.7812 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.2224 5.0000 12.8000 299.1620 297.9020 299.8990 295.7660 300.000
+ 3 0.0000 0.0000 4.2000 -7.7000 60.495 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.6542 62.0680 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.2224 5.0000 12.7000 299.1450 297.8960 299.6210 295.6750 300.000
+ 4 0.0000 0.0000 4.2000 -7.6000 60.752 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.0614 62.3558 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.2224 5.0000 12.6000 299.1370 297.8920 300.0530 295.7110 300.000
+ 5 0.0000 0.0000 4.2000 -7.5000 60.460 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.4692 62.6447 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.2224 5.0000 12.5000 299.1630 297.9000 300.6140 295.6470 300.000
+ 6 0.0000 0.0000 4.2000 -7.4000 61.018 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.8774 62.9347 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.2224 5.0000 12.4000 299.1750 297.9060 300.4910 295.7820 300.000
+ 7 0.0000 0.0000 4.2000 -7.3000 60.738 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.2863 63.2258 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.2224 5.0000 12.3000 299.1720 297.9080 300.1440 295.7580 300.000
+ 8 0.0000 0.0000 4.2000 -7.2000 60.765 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.6958 63.5180 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4005 2.2224 5.0000 12.2000 299.1560 297.9020 299.7590 295.7860 300.000
+ 9 0.0000 0.0000 4.2000 -7.1000 60.201 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.1059 63.8114 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.2224 5.0000 12.1000 299.1370 297.8960 299.6470 295.5990 300.000
+ 10 0.0000 0.0000 4.2000 -7.0000 60.824 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.5167 64.1060 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.2224 5.0000 12.0000 299.1500 297.8980 300.3770 295.6950 300.000
+ 11 0.0000 0.0000 4.2000 -6.9000 60.678 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.9282 64.4018 -2.7386 0.5000 0.0000 0.0000 156.9990 -46.0016 2.2224 5.0000 11.9000 299.1680 297.9060 300.6820 295.8310 300.000
+ 12 0.0000 0.0000 4.2000 -6.8000 60.532 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.3403 64.6990 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.2224 5.0000 11.8000 299.1770 297.9110 300.4110 295.7900 300.000
+ 13 0.0000 0.0000 4.2000 -6.7000 60.652 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.7532 64.9974 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.2224 5.0000 11.7000 299.1730 297.9110 300.0220 295.7130 300.000
+ 14 0.0000 0.0000 4.2000 -6.6000 60.490 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.1669 65.2972 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.2224 5.0000 11.6000 299.1540 297.9030 299.6780 295.7300 300.000
+ 15 0.0000 0.0000 4.2000 -6.5000 60.673 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.5814 65.5983 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.2224 5.0000 11.5000 299.1380 297.8970 299.7610 295.7660 300.000
+ 16 0.0000 0.0000 4.2000 -6.4000 60.583 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.9966 65.9009 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.2224 5.0000 11.4000 299.1500 297.9000 300.5170 295.7780 300.000
+ 17 0.0000 0.0000 4.2000 -6.3000 60.598 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.4127 66.2049 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.2224 5.0000 11.3000 299.1740 297.9080 300.6070 295.8120 300.000
+ 18 0.0000 0.0000 4.2000 -6.2000 60.642 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.8297 66.5104 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.2224 5.0000 11.2000 299.1750 297.9100 300.3010 295.8490 300.000
+ 19 0.0000 0.0000 4.2000 -6.1000 60.786 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.2476 66.8174 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.2224 5.0000 11.1000 299.1660 297.9080 299.9160 295.8310 300.000
+ 20 0.0000 0.0000 4.2000 -6.0000 60.724 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.6664 67.1260 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.2224 5.0000 11.0000 299.1470 297.9020 299.6370 295.7410 300.000
+ 21 0.0000 0.0000 4.2000 -5.9000 60.811 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.0861 67.4362 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.2224 5.0000 10.9000 299.1360 297.8970 299.9950 295.7510 300.000
+ 22 0.0000 0.0000 4.2000 -5.8000 60.680 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.5068 67.7480 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.2224 5.0000 10.8000 299.1610 297.9060 300.6520 295.7780 300.000
+ 23 0.0000 0.0000 4.2000 -5.7000 60.499 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.9285 68.0616 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.2224 5.0000 10.7000 299.1770 297.9120 300.5660 295.8350 300.000
+ 24 0.0000 0.0000 4.2000 -5.6000 60.573 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.3513 68.3768 -2.7386 0.5000 0.0000 0.0000 155.5427 -48.9142 2.2224 5.0000 10.6000 299.1750 297.9150 300.2070 295.8710 300.000
+ 25 0.0000 0.0000 4.2000 -5.5000 60.707 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.7751 68.6939 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.2224 5.0000 10.5000 299.1600 297.9100 299.8190 295.8990 300.000
+ 26 0.0000 0.0000 4.2000 -5.4000 61.084 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.2001 69.0128 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4135 2.2224 5.0000 10.4000 299.1380 297.9020 299.6540 295.9170 300.000
+ 27 0.0000 0.0000 4.2000 -5.3000 60.788 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.6262 69.3336 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.2224 5.0000 10.3000 299.1400 297.9020 300.2090 295.8190 300.000
+ 28 0.0000 0.0000 4.2000 -5.2000 60.935 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.0534 69.6563 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.2224 5.0000 10.2000 299.1640 297.9100 300.6270 295.8540 300.000
+ 29 0.0000 0.0000 4.2000 -5.1000 60.775 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.4818 69.9810 -2.7386 0.5000 0.0000 0.0000 154.9039 -50.1919 2.2224 5.0000 10.1000 299.1720 297.9150 300.4310 295.9480 300.000
+ 30 0.0000 0.0000 4.2000 -5.0000 60.767 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.9115 70.3078 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.2224 5.0000 10.0000 299.1660 297.9140 300.0580 295.9160 300.000
+ 31 0.0000 0.0000 4.2000 -4.9000 60.870 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.3425 70.6366 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.2224 5.0000 9.9000 299.1500 297.9080 299.7050 295.8080 300.000
+ 32 0.0000 0.0000 4.2000 -4.8000 60.612 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.7747 70.9676 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.2224 5.0000 9.8000 299.1330 297.9010 299.7620 295.8460 300.000
+ 33 0.0000 0.0000 4.2000 -4.7000 60.747 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.2083 71.3008 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 2.2224 5.0000 9.7000 299.1480 297.9040 300.4850 295.8400 300.000
+ 34 0.0000 0.0000 4.2000 -4.6000 60.872 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.6433 71.6362 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.2224 5.0000 9.6000 299.1680 297.9120 300.5830 295.8550 300.000
+ 35 0.0000 0.0000 4.2000 -4.5000 60.733 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0797 71.9740 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2224 5.0000 9.5000 299.1700 297.9150 300.2680 295.9370 300.000
+ 36 0.0000 0.0000 4.2000 -4.4000 60.812 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.5176 72.3142 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1625 2.2224 5.0000 9.4000 299.1590 297.9110 299.8980 295.9150 300.000
+ 37 0.0000 0.0000 4.2000 -4.3000 60.502 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9569 72.6569 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2224 5.0000 9.3000 299.1400 297.9050 299.6370 295.8240 300.000
+ 38 0.0000 0.0000 4.2000 -4.2000 60.998 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3978 73.0021 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2224 5.0000 9.2000 299.1330 297.9010 300.0440 295.8580 300.000
+ 39 0.0000 0.0000 4.2000 -4.1000 60.490 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.8403 73.3499 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2224 5.0000 9.1000 299.1560 297.9080 300.6370 295.8830 300.000
+ 40 0.0000 0.0000 4.2000 -4.0000 60.660 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.2844 73.7004 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2224 5.0000 9.0000 299.1720 297.9150 300.5180 295.8940 300.000
+ 41 0.0000 0.0000 4.2000 -3.9000 60.921 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.7302 74.0537 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2224 5.0000 8.9000 299.1740 297.9170 300.1580 295.8160 300.000
+ 42 0.0000 0.0000 4.2000 -3.8000 60.546 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1777 74.4098 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2224 5.0000 8.8000 299.1560 297.9110 299.7740 295.8570 300.000
+ 43 0.0000 0.0000 4.2000 -3.7000 60.617 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.6270 74.7688 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2224 5.0000 8.7000 299.1350 297.9030 299.6470 295.8430 300.000
+ 44 0.0000 0.0000 4.2000 -3.6000 60.759 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.0780 75.1308 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2224 5.0000 8.6000 299.1390 297.9040 300.3320 295.8890 300.000
+ 45 0.0000 0.0000 4.2000 -3.5000 60.506 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.5310 75.4960 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2224 5.0000 8.5000 299.1640 297.9140 300.6840 295.9510 300.000
+# Sum of Counts = 230
+# Center of Mass = -5.664348+/-0.535098
+# Full Width Half-Maximum = 2.597081+/-0.227840
+# 6:43:24 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0063.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0063.dat
new file mode 100644
index 0000000..27613a1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0063.dat
@@ -0,0 +1,80 @@
+# scan = 63
+# date = 10/25/2011
+# time = 6:43:24 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.9 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.9 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.9000 -7.0000 60.757 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 10.3446 58.1489 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.0637 5.0000 12.0000 299.1840 297.9230 300.3280 295.8270 300.000
+ 2 0.0000 0.0000 3.9000 -6.9000 60.529 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 10.7803 58.4364 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.0637 5.0000 11.9000 299.1710 297.9180 299.9310 295.8150 300.000
+ 3 0.0000 0.0000 3.9000 -6.8000 60.523 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 11.2164 58.7248 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2074 2.0637 5.0000 11.8000 299.1490 297.9110 299.6330 295.7780 300.000
+ 4 0.0000 0.0000 3.9000 -6.7000 60.836 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 11.6530 59.0142 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.0637 5.0000 11.7000 299.1380 297.9060 299.9730 295.8370 300.000
+ 5 0.0000 0.0000 3.9000 -6.6000 60.620 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.0902 59.3046 -2.7386 0.5000 0.0000 0.0000 156.6863 -46.6273 2.0637 5.0000 11.6000 299.1580 297.9130 300.5990 295.8430 300.000
+ 6 0.0000 0.0000 3.9000 -6.5000 60.588 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.5280 59.5960 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.0637 5.0000 11.5000 299.1800 297.9210 300.5240 295.7260 300.000
+ 7 0.0000 0.0000 3.9000 -6.4000 60.805 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.9663 59.8883 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0590 2.0637 5.0000 11.4000 299.1800 297.9230 300.1720 295.7700 300.000
+ 8 0.0000 0.0000 3.9000 -6.3000 60.971 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.4053 60.1818 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.0637 5.0000 11.3000 299.1640 297.9180 299.8010 295.7780 300.000
+ 9 0.0000 0.0000 3.9000 -6.2000 60.718 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.8449 60.4763 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.0637 5.0000 11.2000 299.1440 297.9100 299.6410 295.7240 300.000
+ 10 0.0000 0.0000 3.9000 -6.1000 60.895 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.2852 60.7720 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.0637 5.0000 11.1000 299.1470 297.9110 300.2910 295.7290 300.000
+ 11 0.0000 0.0000 3.9000 -6.0000 60.581 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.7262 61.0688 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.0637 5.0000 11.0000 299.1740 297.9190 300.6770 295.7360 300.000
+ 12 0.0000 0.0000 3.9000 -5.9000 60.570 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.1680 61.3668 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.0637 5.0000 10.9000 299.1860 297.9260 300.4140 295.8300 300.000
+ 13 0.0000 0.0000 3.9000 -5.8000 60.644 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.6104 61.6661 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.0637 5.0000 10.8000 299.1740 297.9240 300.0490 295.8540 300.000
+ 14 0.0000 0.0000 3.9000 -5.7000 60.700 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.0538 61.9666 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.0637 5.0000 10.7000 299.1570 297.9170 299.7130 295.8550 300.000
+ 15 0.0000 0.0000 3.9000 -5.6000 60.800 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.4979 62.2684 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.0637 5.0000 10.6000 299.1400 297.9110 299.7600 295.7440 300.000
+ 16 0.0000 0.0000 3.9000 -5.5000 60.689 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.9429 62.5716 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.0637 5.0000 10.5000 299.1570 297.9150 300.5090 295.7830 300.000
+ 17 0.0000 0.0000 3.9000 -5.4000 60.465 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.3888 62.8761 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.0637 5.0000 10.4000 299.1760 297.9240 300.6400 295.9490 300.000
+ 18 0.0000 0.0000 3.9000 -5.3000 60.778 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.8357 63.1821 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.0637 5.0000 10.3000 299.1830 297.9280 300.3080 295.8980 300.000
+ 19 0.0000 0.0000 3.9000 -5.2000 61.058 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.2835 63.4896 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.0637 5.0000 10.2000 299.1710 297.9240 299.9470 295.8870 300.000
+ 20 0.0000 0.0000 3.9000 -5.1000 60.703 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.7322 63.7985 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.0637 5.0000 10.1000 299.1500 297.9170 299.6460 295.8360 300.000
+ 21 0.0000 0.0000 3.9000 -5.0000 60.531 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.1821 64.1090 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.0637 5.0000 10.0000 299.1400 297.9120 299.9350 295.8400 300.000
+ 22 0.0000 0.0000 3.9000 -4.9000 60.689 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.6330 64.4211 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 2.0637 5.0000 9.9000 299.1600 297.9180 300.5920 295.8560 300.000
+ 23 0.0000 0.0000 3.9000 -4.8000 60.560 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.0850 64.7348 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.0637 5.0000 9.8000 299.1760 297.9250 300.5520 295.9630 300.000
+ 24 0.0000 0.0000 3.9000 -4.7000 60.904 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.5381 65.0503 -2.7386 0.5000 0.0000 0.0000 154.3549 -51.2898 2.0637 5.0000 9.7000 299.1760 297.9270 300.1880 295.8750 300.000
+ 25 0.0000 0.0000 3.9000 -4.6000 60.345 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.9924 65.3675 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.0637 5.0000 9.6000 299.1650 297.9230 299.8330 295.8610 300.000
+ 26 0.0000 0.0000 3.9000 -4.5000 60.989 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.4478 65.6864 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.0637 5.0000 9.5000 299.1410 297.9150 299.6510 295.9280 300.000
+ 27 0.0000 0.0000 3.9000 -4.4000 60.477 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.9046 66.0072 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1625 2.0637 5.0000 9.4000 299.1390 297.9150 300.1960 295.8400 300.000
+ 28 0.0000 0.0000 3.9000 -4.3000 60.331 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.3626 66.3300 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 2.0637 5.0000 9.3000 299.1680 297.9230 300.6580 295.8550 300.000
+ 29 0.0000 0.0000 3.9000 -4.2000 60.406 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.8220 66.6546 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0637 5.0000 9.2000 299.1780 297.9270 300.4640 295.9180 300.000
+ 30 0.0000 0.0000 3.9000 -4.1000 60.872 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.2828 66.9813 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.0637 5.0000 9.1000 299.1730 297.9280 300.0700 295.8330 300.000
+ 31 0.0000 0.0000 3.9000 -4.0000 60.613 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7449 67.3100 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0637 5.0000 9.0000 299.1560 297.9220 299.7130 295.8260 300.000
+ 32 0.0000 0.0000 3.9000 -3.9000 60.817 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.2086 67.6409 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.0637 5.0000 8.9000 299.1360 297.9150 299.7630 295.8880 300.000
+ 33 0.0000 0.0000 3.9000 -3.8000 60.830 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.6737 67.9740 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.0637 5.0000 8.8000 299.1450 297.9180 300.4290 295.8970 300.000
+ 34 0.0000 0.0000 3.9000 -3.7000 60.611 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.1404 68.3093 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.0637 5.0000 8.7000 299.1690 297.9250 300.5800 295.8410 300.000
+ 35 0.0000 0.0000 3.9000 -3.6000 61.093 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.6086 68.6470 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.0637 5.0000 8.6000 299.1730 297.9280 300.2800 295.9140 300.000
+ 36 0.0000 0.0000 3.9000 -3.5000 60.779 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0785 68.9870 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.0637 5.0000 8.5000 299.1600 297.9250 299.9150 295.9540 300.000
+ 37 0.0000 0.0000 3.9000 -3.4000 61.131 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.5501 69.3295 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.0637 5.0000 8.4000 299.1410 297.9170 299.6310 295.8890 300.000
+ 38 0.0000 0.0000 3.9000 -3.3000 60.932 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.0234 69.6746 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7925 2.0637 5.0000 8.3000 299.1350 297.9150 300.0540 295.8540 300.000
+ 39 0.0000 0.0000 3.9000 -3.2000 60.885 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.4986 70.0223 -2.7386 0.5000 0.0000 0.0000 151.9192 -56.1615 2.0637 5.0000 8.2000 299.1620 297.9230 300.6390 295.8280 300.000
+ 40 0.0000 0.0000 3.9000 -3.1000 60.336 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.9756 70.3727 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.0637 5.0000 8.1000 299.1740 297.9290 300.5050 295.9040 300.000
+ 41 0.0000 0.0000 3.9000 -3.0000 60.585 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.4545 70.7259 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0637 5.0000 8.0000 299.1710 297.9290 300.1380 295.9150 300.000
+ 42 0.0000 0.0000 3.9000 -2.9000 60.491 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.9353 71.0820 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3147 2.0637 5.0000 7.9000 299.1560 297.9250 299.7670 295.8690 300.000
+ 43 0.0000 0.0000 3.9000 -2.8000 61.086 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.4182 71.4411 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0637 5.0000 7.8000 299.1360 297.9180 299.6860 295.8610 300.000
+ 44 0.0000 0.0000 3.9000 -2.7000 61.188 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.9031 71.8032 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0637 5.0000 7.7000 299.1440 297.9200 300.3480 295.8290 300.000
+ 45 0.0000 0.0000 3.9000 -2.6000 60.794 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.3902 72.1686 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.0637 5.0000 7.6000 299.1710 297.9280 300.6180 295.7800 300.000
+ 46 0.0000 0.0000 3.9000 -2.5000 60.839 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8795 72.5371 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0637 5.0000 7.5000 299.1770 297.9310 300.3660 295.9340 300.000
+# Sum of Counts = 186
+# Center of Mass = -4.623118+/-0.488668
+# Full Width Half-Maximum = 2.584281+/-0.223734
+# 7:32:07 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0064.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0064.dat
new file mode 100644
index 0000000..aded10a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0064.dat
@@ -0,0 +1,75 @@
+# scan = 64
+# date = 10/25/2011
+# time = 7:32:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.6000 -5.0000 60.961 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.3051 58.0642 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.9049 5.0000 10.0000 299.1680 297.9310 299.9030 295.8440 300.000
+ 2 0.0000 0.0000 3.6000 -4.9000 60.823 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.7829 58.3636 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.9049 5.0000 9.9000 299.1480 297.9230 299.6230 295.7510 300.000
+ 3 0.0000 0.0000 3.6000 -4.8000 60.540 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.2616 58.6642 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.9049 5.0000 9.8000 299.1440 297.9200 300.1120 295.7670 300.000
+ 4 0.0000 0.0000 3.6000 -4.7000 60.755 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.7412 58.9660 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.9049 5.0000 9.7000 299.1640 297.9270 300.6360 295.8350 300.000
+ 5 0.0000 0.0000 3.6000 -4.6000 60.380 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.2218 59.2690 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.9049 5.0000 9.6000 299.1740 297.9340 300.4790 295.9350 300.000
+ 6 0.0000 0.0000 3.6000 -4.5000 60.470 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.7033 59.5733 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.9049 5.0000 9.5000 299.1710 297.9350 300.1250 295.8950 300.000
+ 7 0.0000 0.0000 3.6000 -4.4000 60.485 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.1859 59.8789 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.9049 5.0000 9.4000 299.1600 297.9310 299.7610 295.7150 300.000
+ 8 0.0000 0.0000 3.6000 -4.3000 60.681 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.6695 60.1859 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.9049 5.0000 9.3000 299.1400 297.9220 299.6870 295.8030 300.000
+ 9 0.0000 0.0000 3.6000 -4.2000 60.499 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.1543 60.4943 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.9049 5.0000 9.2000 299.1440 297.9240 300.3860 295.8780 300.000
+ 10 0.0000 0.0000 3.6000 -4.1000 60.718 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.6402 60.8041 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.9049 5.0000 9.1000 299.1690 297.9310 300.6130 295.9080 300.000
+ 11 0.0000 0.0000 3.6000 -4.0000 60.747 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.1274 61.1155 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 1.9049 5.0000 9.0000 299.1770 297.9360 300.3170 295.8060 300.000
+ 12 0.0000 0.0000 3.6000 -3.9000 60.937 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.6157 61.4284 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 1.9049 5.0000 8.9000 299.1700 297.9340 299.9470 295.8030 300.000
+ 13 0.0000 0.0000 3.6000 -3.8000 60.094 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.1054 61.7429 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.9049 5.0000 8.8000 299.1460 297.9260 299.6530 295.9100 300.000
+ 14 0.0000 0.0000 3.6000 -3.7000 60.404 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.5964 62.0591 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.9049 5.0000 8.7000 299.1350 297.9230 299.9350 295.8260 300.000
+ 15 0.0000 0.0000 3.6000 -3.6000 60.829 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.0887 62.3770 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.9049 5.0000 8.6000 299.1590 297.9300 300.6090 295.7890 300.000
+ 16 0.0000 0.0000 3.6000 -3.5000 60.707 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.5825 62.6966 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.9049 5.0000 8.5000 299.1770 297.9360 300.5600 295.9080 300.000
+ 17 0.0000 0.0000 3.6000 -3.4000 60.715 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.0778 63.0181 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.9049 5.0000 8.4000 299.1760 297.9380 300.1940 295.8730 300.000
+ 18 0.0000 0.0000 3.6000 -3.3000 60.729 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.5746 63.3415 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.9049 5.0000 8.3000 299.1650 297.9350 299.8260 295.7710 300.000
+ 19 0.0000 0.0000 3.6000 -3.2000 60.714 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.0730 63.6668 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.9049 5.0000 8.2000 299.1480 297.9270 299.6400 295.7130 300.000
+ 20 0.0000 0.0000 3.6000 -3.1000 60.433 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.5730 63.9941 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.9049 5.0000 8.1000 299.1460 297.9260 300.2020 295.7400 300.000
+ 21 0.0000 0.0000 3.6000 -3.0000 60.511 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.0748 64.3234 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.9049 5.0000 8.0000 299.1700 297.9340 300.6290 295.7660 300.000
+ 22 0.0000 0.0000 3.6000 -2.9000 60.720 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.5782 64.6550 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.9049 5.0000 7.9000 299.1830 297.9400 300.3930 295.6990 300.000
+ 23 0.0000 0.0000 3.6000 -2.8000 60.806 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.0835 64.9887 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.9049 5.0000 7.8000 299.1740 297.9380 300.0250 295.8170 300.000
+ 24 0.0000 0.0000 3.6000 -2.7000 60.662 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.5907 65.3247 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.9049 5.0000 7.7000 299.1520 297.9310 299.7110 295.8620 300.000
+ 25 0.0000 0.0000 3.6000 -2.6000 60.662 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0998 65.6630 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.9049 5.0000 7.6000 299.1350 297.9240 299.7720 295.8750 300.000
+ 26 0.0000 0.0000 3.6000 -2.5000 60.735 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.6108 66.0038 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.9049 5.0000 7.5000 299.1510 297.9290 300.5230 295.8550 300.000
+ 27 0.0000 0.0000 3.6000 -2.4000 60.302 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.1239 66.3472 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.9049 5.0000 7.4000 299.1760 297.9360 300.6340 295.8950 300.000
+ 28 0.0000 0.0000 3.6000 -2.3000 60.597 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6392 66.6931 -2.7386 0.5000 0.0000 0.0000 150.0734 -59.8530 1.9049 5.0000 7.3000 299.1780 297.9410 300.3340 295.9220 300.000
+ 29 0.0000 0.0000 3.6000 -2.2000 60.270 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.1566 67.0417 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.9049 5.0000 7.2000 299.1690 297.9390 299.9260 295.8720 300.000
+ 30 0.0000 0.0000 3.6000 -2.1000 60.713 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6762 67.3931 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.9049 5.0000 7.1000 299.1490 297.9320 299.6430 295.8340 300.000
+ 31 0.0000 0.0000 3.6000 -2.0000 60.564 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1983 67.7474 -2.7386 0.5000 0.0000 0.0000 149.3716 -61.2567 1.9049 5.0000 7.0000 299.1410 297.9280 299.9920 295.8150 300.000
+ 32 0.0000 0.0000 3.6000 -1.9000 60.922 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7227 68.1046 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.9049 5.0000 6.9000 299.1630 297.9340 300.6130 295.9060 300.000
+ 33 0.0000 0.0000 3.6000 -1.8000 60.893 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2496 68.4650 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.9049 5.0000 6.8000 299.1770 297.9390 300.4990 295.9240 300.000
+ 34 0.0000 0.0000 3.6000 -1.7000 60.907 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.7791 68.8285 -2.7386 0.5000 0.0000 0.0000 148.6173 -62.7649 1.9049 5.0000 6.7000 299.1760 297.9410 300.1540 295.8990 300.000
+ 35 0.0000 0.0000 3.6000 -1.6000 60.547 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.3112 69.1954 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.9049 5.0000 6.6000 299.1600 297.9370 299.7850 295.8960 300.000
+ 36 0.0000 0.0000 3.6000 -1.5000 60.844 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.8461 69.5657 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.9049 5.0000 6.5000 299.1410 297.9300 299.6690 295.8370 300.000
+ 37 0.0000 0.0000 3.6000 -1.4000 60.374 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3838 69.9395 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.9049 5.0000 6.4000 299.1450 297.9300 300.3280 295.9200 300.000
+ 38 0.0000 0.0000 3.6000 -1.3000 60.863 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.9244 70.3171 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9049 5.0000 6.3000 299.1680 297.9380 300.6560 295.9380 300.000
+ 39 0.0000 0.0000 3.6000 -1.2000 60.593 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.4680 70.6984 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9049 5.0000 6.2000 299.1810 297.9440 300.4140 295.8560 300.000
+ 40 0.0000 0.0000 3.6000 -1.1000 60.461 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.0148 71.0838 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9049 5.0000 6.1000 299.1750 297.9420 300.0030 295.8510 300.000
+ 41 0.0000 0.0000 3.6000 -1.0000 60.540 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.5647 71.4733 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9049 5.0000 6.0000 299.1530 297.9360 299.6830 295.9240 300.000
+# Sum of Counts = 235
+# Center of Mass = -3.072340+/-0.291367
+# Full Width Half-Maximum = 2.070462+/-0.151173
+# 8:15:34 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0065.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0065.dat
new file mode 100644
index 0000000..99c97b5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0065.dat
@@ -0,0 +1,50 @@
+# scan = 65
+# date = 10/25/2011
+# time = 8:15:34 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -2.5 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.4 e -2.5 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -2.5000 60.403 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 61.7710 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7991 5.0000 7.5000 299.1390 297.9320 299.9350 295.8380 300.000
+ 2 0.0000 0.0000 3.4000 -2.4000 60.542 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.2814 62.0979 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.7991 5.0000 7.4000 299.1620 297.9370 300.6050 295.8420 300.000
+ 3 0.0000 0.0000 3.4000 -2.3000 60.304 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.8154 62.4269 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8531 1.7991 5.0000 7.3000 299.1810 297.9450 300.5290 295.8040 300.000
+ 4 0.0000 0.0000 3.4000 -2.2000 60.705 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.3513 62.7580 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7991 5.0000 7.2000 299.1820 297.9480 300.1820 295.8060 300.000
+ 5 0.0000 0.0000 3.4000 -2.1000 60.640 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.8894 63.0913 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.7991 5.0000 7.1000 299.1660 297.9430 299.8250 295.8720 300.000
+ 6 0.0000 0.0000 3.4000 -2.0000 60.712 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4298 63.4268 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.7991 5.0000 7.0000 299.1430 297.9340 299.6360 295.8660 300.000
+ 7 0.0000 0.0000 3.4000 -1.9000 60.698 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9723 63.7648 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.7991 5.0000 6.9000 299.1420 297.9330 300.2460 295.8970 300.000
+ 8 0.0000 0.0000 3.4000 -1.8000 60.836 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.5173 64.1051 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 1.7991 5.0000 6.8000 299.1710 297.9410 300.6610 295.8420 300.000
+ 9 0.0000 0.0000 3.4000 -1.7000 60.812 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.0646 64.4480 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.7991 5.0000 6.7000 299.1840 297.9470 300.4180 295.8760 300.000
+ 10 0.0000 0.0000 3.4000 -1.6000 60.864 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6145 64.7936 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.7991 5.0000 6.6000 299.1760 297.9470 300.0540 295.8970 300.000
+ 11 0.0000 0.0000 3.4000 -1.5000 60.634 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1670 65.1418 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.7991 5.0000 6.5000 299.1600 297.9410 299.7180 295.8520 300.000
+ 12 0.0000 0.0000 3.4000 -1.4000 60.285 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7222 65.4928 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 1.7991 5.0000 6.4000 299.1430 297.9350 299.7700 295.8100 300.000
+ 13 0.0000 0.0000 3.4000 -1.3000 60.576 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2802 65.8468 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.7991 5.0000 6.3000 299.1560 297.9370 300.4790 295.8710 300.000
+ 14 0.0000 0.0000 3.4000 -1.2000 60.414 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8411 66.2039 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.7991 5.0000 6.2000 299.1790 297.9460 300.5940 295.8100 300.000
+ 15 0.0000 0.0000 3.4000 -1.1000 60.636 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4049 66.5640 -2.7386 0.5000 0.0000 0.0000 146.9233 -66.1531 1.7991 5.0000 6.1000 299.1810 297.9480 300.2830 295.9540 300.000
+ 16 0.0000 0.0000 3.4000 -1.0000 60.602 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9718 66.9275 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.7991 5.0000 6.0000 299.1660 297.9450 299.9140 296.0120 300.000
+# Sum of Counts = 198
+# Center of Mass = -1.679798+/-0.171007
+# Full Width Half-Maximum = 0.766195+/-0.090566
+# 8:32:37 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0066.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0066.dat
new file mode 100644
index 0000000..839ea33
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0066.dat
@@ -0,0 +1,59 @@
+# scan = 66
+# date = 10/25/2011
+# time = 8:32:37 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.2 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.2 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.2000 -1.5000 60.746 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4931 60.8207 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6933 5.0000 6.5000 299.1440 297.9380 299.6320 295.9410 300.000
+ 2 0.0000 0.0000 3.2000 -1.4500 60.791 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7813 60.9857 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.6933 5.0000 6.4500 299.1400 297.9350 300.1280 295.9220 300.000
+ 3 0.0000 0.0000 3.2000 -1.4000 60.546 49.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.0701 61.1512 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6933 5.0000 6.4000 299.1670 297.9420 300.6370 295.9030 300.000
+ 4 0.0000 0.0000 3.2000 -1.3500 60.861 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3595 61.3173 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6753 1.6933 5.0000 6.3500 299.1800 297.9490 300.4670 295.9130 300.000
+ 5 0.0000 0.0000 3.2000 -1.3000 60.860 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6496 61.4840 -2.7386 0.5000 0.0000 0.0000 147.5184 -64.9628 1.6933 5.0000 6.3000 299.1770 297.9500 300.0830 295.8510 300.000
+ 6 0.0000 0.0000 3.2000 -1.2500 60.698 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.9404 61.6512 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.6933 5.0000 6.2500 299.1630 297.9440 299.7430 295.8050 300.000
+ 7 0.0000 0.0000 3.2000 -1.2000 60.858 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.2319 61.8190 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6933 5.0000 6.2000 299.1440 297.9360 299.7000 295.8310 300.000
+ 8 0.0000 0.0000 3.2000 -1.1500 60.504 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.5242 61.9874 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8493 1.6933 5.0000 6.1500 299.1520 297.9380 300.4200 295.8630 300.000
+ 9 0.0000 0.0000 3.2000 -1.1000 60.750 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.8171 62.1563 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6933 5.0000 6.1000 299.1750 297.9470 300.6510 295.9350 300.000
+ 10 0.0000 0.0000 3.2000 -1.0500 60.457 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1108 62.3259 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.6933 5.0000 6.0500 299.1840 297.9520 300.3440 295.8310 300.000
+ 11 0.0000 0.0000 3.2000 -1.0000 60.517 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.4053 62.4962 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6933 5.0000 6.0000 299.1790 297.9510 299.9700 295.8040 300.000
+ 12 0.0000 0.0000 3.2000 -0.9500 60.576 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7005 62.6670 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.6933 5.0000 5.9500 299.1580 297.9440 299.6560 295.7760 300.000
+ 13 0.0000 0.0000 3.2000 -0.9000 60.754 65.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.9965 62.8386 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6933 5.0000 5.9000 299.1440 297.9380 299.8970 295.7940 300.000
+ 14 0.0000 0.0000 3.2000 -0.8500 60.944 93.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2933 63.0107 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.6933 5.0000 5.8500 299.1640 297.9440 300.5490 295.7680 300.000
+ 15 0.0000 0.0000 3.2000 -0.8000 60.671 83.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.5910 63.1836 -2.7386 0.5000 0.0000 0.0000 145.9652 -68.0694 1.6933 5.0000 5.8000 299.1840 297.9510 300.5120 295.7340 300.000
+ 16 0.0000 0.0000 3.2000 -0.7500 60.511 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8894 63.3571 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.6933 5.0000 5.7500 299.1790 297.9520 300.1770 295.9070 300.000
+ 17 0.0000 0.0000 3.2000 -0.7000 61.078 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.1887 63.5314 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.6933 5.0000 5.7000 299.1600 297.9480 299.8080 295.9190 300.000
+ 18 0.0000 0.0000 3.2000 -0.6500 60.472 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4889 63.7064 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.6933 5.0000 5.6500 299.1400 297.9400 299.6470 295.8780 300.000
+ 19 0.0000 0.0000 3.2000 -0.6000 60.206 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.7899 63.8821 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.6933 5.0000 5.6000 299.1410 297.9390 300.2750 295.9410 300.000
+ 20 0.0000 0.0000 3.2000 -0.5500 60.568 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.0918 64.0585 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.6933 5.0000 5.5500 299.1660 297.9480 300.6610 295.9380 300.000
+ 21 0.0000 0.0000 3.2000 -0.5000 60.806 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3947 64.2357 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6933 5.0000 5.5000 299.1750 297.9530 300.4280 296.0060 300.000
+ 22 0.0000 0.0000 3.2000 -0.4500 60.680 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.6984 64.4137 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.6933 5.0000 5.4500 299.1690 297.9520 300.0530 295.9890 300.000
+ 23 0.0000 0.0000 3.2000 -0.4000 60.721 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.0032 64.5925 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.6933 5.0000 5.4000 299.1530 297.9470 299.6920 295.9030 300.000
+ 24 0.0000 0.0000 3.2000 -0.3500 60.629 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.3088 64.7721 -2.7386 0.5000 0.0000 0.0000 144.3550 -71.2896 1.6933 5.0000 5.3500 299.1390 297.9410 299.7840 295.8230 300.000
+ 25 0.0000 0.0000 3.2000 -0.3000 60.303 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6154 64.9525 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 1.6933 5.0000 5.3000 299.1540 297.9440 300.5090 295.8950 300.000
+# Sum of Counts = 1138
+# Center of Mass = -0.947891+/-0.040896
+# Full Width Half-Maximum = 0.652183+/-0.023854
+# 8:59:02 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0067.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0067.dat
new file mode 100644
index 0000000..73ba22c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0067.dat
@@ -0,0 +1,80 @@
+# scan = 67
+# date = 10/25/2011
+# time = 8:59:02 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.5 e -8.5 -4.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.5 e -8.5 -4.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.5000 -8.5000 60.536 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.6167 37.2111 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6163 5.0000 13.5000 299.1800 297.9560 300.4720 295.8180 300.000
+ 2 1.0000 0.0000 -0.5000 -8.4000 60.498 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.1924 37.5078 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 1.6164 5.0000 13.4000 299.1770 297.9560 300.1250 295.8460 300.000
+ 3 1.0000 0.0000 -0.5000 -8.3000 60.442 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.7664 37.8037 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.6164 5.0000 13.3000 299.1600 297.9520 299.7570 295.8170 300.000
+ 4 1.0000 0.0000 -0.5000 -8.1999 60.669 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.3387 38.0988 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5552 1.6163 5.0000 13.1999 299.1430 297.9440 299.6750 295.7660 300.000
+ 5 1.0000 0.0000 -0.5000 -8.1000 60.450 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.9094 38.3931 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 1.6164 5.0000 13.1000 299.1500 297.9450 300.3650 295.8050 300.000
+ 6 1.0000 0.0000 -0.5000 -8.0000 60.706 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.4786 38.6867 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6163 5.0000 13.0000 299.1740 297.9530 300.6530 295.8540 300.000
+ 7 1.0000 0.0000 -0.5000 -7.9000 60.576 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0464 38.9797 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.6163 5.0000 12.9000 299.1820 297.9570 300.3670 295.8940 300.000
+ 8 1.0000 0.0000 -0.5000 -7.8000 60.350 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.6128 39.2720 -2.7386 0.5000 0.0000 0.0000 157.8670 -44.2658 1.6163 5.0000 12.8000 299.1750 297.9570 299.9930 295.8320 300.000
+ 9 1.0000 0.0000 -0.5000 -7.7000 60.679 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1778 39.5637 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.6164 5.0000 12.7000 299.1580 297.9510 299.6750 295.7980 300.000
+ 10 1.0000 0.0000 -0.5000 -7.6000 60.541 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.7416 39.8548 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.6163 5.0000 12.6000 299.1390 297.9440 299.8170 295.9170 300.000
+ 11 1.0000 0.0000 -0.5000 -7.5000 60.792 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.3043 40.1454 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6163 5.0000 12.5000 299.1550 297.9470 300.5630 296.0400 300.000
+ 12 1.0000 0.0000 -0.5000 -7.4000 60.668 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.8658 40.4355 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.6163 5.0000 12.4000 299.1780 297.9560 300.6110 295.9840 300.000
+ 13 1.0000 0.0000 -0.5000 -7.3000 60.544 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.4262 40.7251 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.6163 5.0000 12.3000 299.1840 297.9600 300.2780 295.9020 300.000
+ 14 1.0000 0.0000 -0.5000 -7.2000 60.245 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.9856 41.0142 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.6163 5.0000 12.2000 299.1720 297.9570 299.8900 295.8740 300.000
+ 15 1.0000 0.0000 -0.5000 -7.1000 60.338 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.5441 41.3030 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.6163 5.0000 12.1000 299.1510 297.9500 299.6520 295.9070 300.000
+ 16 1.0000 0.0000 -0.5000 -7.0000 60.431 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1016 41.5913 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6163 5.0000 12.0000 299.1430 297.9450 300.0430 295.8880 300.000
+ 17 1.0000 0.0000 -0.5000 -6.9000 60.212 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.6584 41.8793 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.6163 5.0000 11.9000 299.1670 297.9530 300.6240 295.9360 300.000
+ 18 1.0000 0.0000 -0.5000 -6.8000 60.131 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.2144 42.1670 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.6163 5.0000 11.8000 299.1840 297.9590 300.5150 295.8820 300.000
+ 19 1.0000 0.0000 -0.5000 -6.7000 60.320 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.7696 42.4544 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.6164 5.0000 11.7000 299.1830 297.9600 300.1630 295.9190 300.000
+ 20 1.0000 0.0000 -0.5000 -6.6000 59.813 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.3241 42.7411 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.6163 5.0000 11.6000 299.1400 297.9460 299.8900 295.7890 300.000
+ 21 1.0000 0.0000 -0.5000 -6.5000 60.102 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8781 43.0284 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6163 5.0000 11.5000 299.1730 297.9500 300.5940 295.7860 300.000
+ 22 1.0000 0.0000 -0.5000 -6.4000 60.310 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4315 43.3151 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6163 5.0000 11.4000 299.1870 297.9570 300.5840 295.8940 300.000
+ 23 1.0000 0.0000 -0.5000 -6.3000 60.296 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9844 43.6016 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6163 5.0000 11.3000 299.1890 297.9600 300.2520 295.8910 300.000
+ 24 1.0000 0.0000 -0.5000 -6.2000 60.487 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5368 43.8880 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6163 5.0000 11.2000 299.1760 297.9560 299.8750 295.9170 300.000
+ 25 1.0000 0.0000 -0.5000 -6.1000 60.318 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0888 44.1742 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6163 5.0000 11.1000 299.1530 297.9490 299.6390 295.9260 300.000
+ 26 1.0000 0.0000 -0.5000 -6.0000 60.536 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6405 44.4604 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6163 5.0000 11.0000 299.1500 297.9460 300.1030 295.8400 300.000
+ 27 1.0000 0.0000 -0.5000 -5.9000 60.252 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1919 44.7465 -2.7386 0.5000 0.0000 0.0000 155.9034 -48.1930 1.6163 5.0000 10.9000 299.1760 297.9550 300.6550 295.8400 300.000
+ 28 1.0000 0.0000 -0.5000 -5.8000 60.104 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7430 45.0326 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6163 5.0000 10.8000 299.1900 297.9620 300.5060 295.8780 300.000
+ 29 1.0000 0.0000 -0.5000 -5.7000 60.026 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2939 45.3186 -2.7386 0.5000 0.0000 0.0000 155.6649 -48.6702 1.6163 5.0000 10.7000 299.1880 297.9630 300.1300 295.7780 300.000
+ 30 1.0000 0.0000 -0.5000 -5.6000 60.246 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8447 45.6047 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6163 5.0000 10.6000 299.1770 297.9590 299.7830 295.7460 300.000
+ 31 1.0000 0.0000 -0.5000 -5.5000 60.157 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3954 45.8908 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6163 5.0000 10.5000 299.1560 297.9520 299.6600 295.7390 300.000
+ 32 1.0000 0.0000 -0.5000 -5.4000 59.873 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9460 46.1771 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4135 1.6163 5.0000 10.4000 299.1590 297.9520 300.3300 295.8160 300.000
+ 33 1.0000 0.0000 -0.5000 -5.3000 60.497 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4967 46.4634 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6164 5.0000 10.3000 299.1830 297.9600 300.6180 295.8490 300.000
+ 34 1.0000 0.0000 -0.5000 -5.2000 60.244 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.0474 46.7498 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6163 5.0000 10.2000 299.1920 297.9650 300.3880 295.8230 300.000
+ 35 1.0000 0.0000 -0.5000 -5.1000 60.095 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5982 47.0365 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6163 5.0000 10.1000 299.1870 297.9650 300.0140 295.7680 300.000
+ 36 1.0000 0.0000 -0.5000 -5.0000 59.952 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1492 47.3233 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 1.6163 5.0000 10.0000 299.1660 297.9580 299.6910 295.8460 300.000
+ 37 1.0000 0.0000 -0.5000 -4.9000 60.340 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7004 47.6104 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6163 5.0000 9.9000 299.1470 297.9520 299.7970 295.8340 300.000
+ 38 1.0000 0.0000 -0.5000 -4.8000 59.889 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2518 47.8976 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6163 5.0000 9.8000 299.1640 297.9560 300.5150 295.9060 300.000
+ 39 1.0000 0.0000 -0.5000 -4.7000 59.896 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8036 48.1852 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2899 1.6163 5.0000 9.7000 299.1820 297.9630 300.5880 295.9620 300.000
+ 40 1.0000 0.0000 -0.5000 -4.6000 60.122 49.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.3557 48.4731 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.6163 5.0000 9.6000 299.1890 297.9680 300.2770 295.8740 300.000
+ 41 1.0000 0.0000 -0.5000 -4.5000 60.414 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.9082 48.7614 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6163 5.0000 9.5000 299.1790 297.9660 299.9070 295.8530 300.000
+ 42 1.0000 0.0000 -0.5000 -4.4000 60.037 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4612 49.0500 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6163 5.0000 9.4000 299.1580 297.9590 299.6540 295.8490 300.000
+ 43 1.0000 0.0000 -0.5000 -4.3000 60.208 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0148 49.3390 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6163 5.0000 9.3000 299.1480 297.9550 300.0300 295.9090 300.000
+ 44 1.0000 0.0000 -0.5000 -4.2000 60.212 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5689 49.6284 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6163 5.0000 9.2000 299.1710 297.9610 300.5750 295.8440 300.000
+ 45 1.0000 0.0000 -0.5000 -4.1000 60.041 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1236 49.9184 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6163 5.0000 9.1000 299.1870 297.9680 300.4830 295.8490 300.000
+ 46 1.0000 0.0000 -0.5000 -4.0000 60.279 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6791 50.2088 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6163 5.0000 9.0000 299.1830 297.9690 300.1130 295.8670 300.000
+# Sum of Counts = 592
+# Center of Mass = -5.300337+/-0.311579
+# Full Width Half-Maximum = 2.267123+/-0.135493
+# 9:49:10 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0068.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0068.dat
new file mode 100644
index 0000000..06adb79
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0068.dat
@@ -0,0 +1,79 @@
+# scan = 68
+# date = 10/25/2011
+# time = 9:49:10 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.2 e -7.9 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.2 e -7.9 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.2000 -7.9000 60.773 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.5608 38.2835 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5981 5.0000 12.9000 299.1630 297.9640 299.7040 295.7980 300.000
+ 2 1.0000 0.0000 -0.2000 -7.7999 60.558 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.1358 38.5776 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2659 1.5981 5.0000 12.7999 299.1560 297.9570 299.7550 295.6320 300.000
+ 3 1.0000 0.0000 -0.2000 -7.7000 60.308 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.7093 38.8709 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5981 5.0000 12.7000 299.1690 297.9600 300.4740 295.6880 300.000
+ 4 1.0000 0.0000 -0.2000 -7.6000 60.259 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.2815 39.1636 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5981 5.0000 12.6000 299.1890 297.9670 300.6050 295.7420 300.000
+ 5 1.0000 0.0000 -0.2000 -7.5000 60.685 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.8524 39.4556 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.5981 5.0000 12.5000 299.1930 297.9720 300.3200 295.7100 300.000
+ 6 1.0000 0.0000 -0.2000 -7.4000 60.502 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.4220 39.7471 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5981 5.0000 12.4000 299.1870 297.9700 299.9420 295.6350 300.000
+ 7 1.0000 0.0000 -0.2000 -7.3000 60.642 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.9904 40.0381 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2053 1.5981 5.0000 12.3000 299.1680 297.9640 299.6700 295.6880 300.000
+ 8 1.0000 0.0000 -0.2000 -7.2000 60.669 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.5577 40.3285 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5981 5.0000 12.2000 299.1550 297.9580 299.9180 295.6510 300.000
+ 9 1.0000 0.0000 -0.2000 -7.1000 60.196 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.1240 40.6184 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5981 5.0000 12.1000 299.1810 297.9620 300.5710 295.7440 300.000
+ 10 1.0000 0.0000 -0.2000 -7.0000 59.901 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.6892 40.9079 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5981 5.0000 12.0000 299.1920 297.9690 300.5400 295.8690 300.000
+ 11 1.0000 0.0000 -0.2000 -6.9000 60.486 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.2536 41.1969 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5981 5.0000 11.9000 299.1900 297.9710 300.1940 295.8660 300.000
+ 12 1.0000 0.0000 -0.2000 -6.8000 60.213 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.8170 41.4856 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5981 5.0000 11.8000 299.1760 297.9670 299.8370 295.8460 300.000
+ 13 1.0000 0.0000 -0.2000 -6.7000 60.786 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.3796 41.7739 -2.7386 0.5000 0.0000 0.0000 156.7920 -46.4159 1.5981 5.0000 11.7000 299.1580 297.9600 299.6540 295.8370 300.000
+ 14 1.0000 0.0000 -0.2000 -6.6000 60.593 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.9415 42.0618 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5981 5.0000 11.6000 299.1570 297.9600 300.1920 295.7750 300.000
+ 15 1.0000 0.0000 -0.2000 -6.5000 60.228 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.5026 42.3495 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5981 5.0000 11.5000 299.1810 297.9660 300.6040 295.9270 300.000
+ 16 1.0000 0.0000 -0.2000 -6.4000 60.024 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.0631 42.6369 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 1.5981 5.0000 11.4000 299.1880 297.9710 300.4140 295.9890 300.000
+ 17 1.0000 0.0000 -0.2000 -6.3000 59.906 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.6230 42.9240 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.5981 5.0000 11.3000 299.1800 297.9720 300.0510 296.0250 300.000
+ 18 1.0000 0.0000 -0.2000 -6.2000 60.004 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1824 43.2110 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5981 5.0000 11.2000 299.1660 297.9680 299.7330 295.8720 300.000
+ 19 1.0000 0.0000 -0.2000 -6.1000 59.977 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.7413 43.4978 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5981 5.0000 11.1000 299.1530 297.9620 299.7310 295.7570 300.000
+ 20 1.0000 0.0000 -0.2000 -6.0000 60.085 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2998 43.7844 -2.7386 0.5000 0.0000 0.0000 156.0201 -47.9596 1.5981 5.0000 11.0000 299.1620 297.9640 300.4480 295.8820 300.000
+ 21 1.0000 0.0000 -0.2000 -5.8999 60.246 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8578 44.0708 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1931 1.5981 5.0000 10.8999 299.1860 297.9720 300.6310 295.8270 300.000
+ 22 1.0000 0.0000 -0.2000 -5.8000 60.122 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.4156 44.3572 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5981 5.0000 10.8000 299.1950 297.9780 300.3420 295.7680 300.000
+ 23 1.0000 0.0000 -0.2000 -5.7000 59.984 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.9731 44.6435 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5981 5.0000 10.7000 299.1840 297.9760 299.9770 295.8880 300.000
+ 24 1.0000 0.0000 -0.2000 -5.6000 60.201 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5304 44.9298 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5981 5.0000 10.6000 299.1620 297.9710 299.6710 295.8920 300.000
+ 25 1.0000 0.0000 -0.2000 -5.5000 60.020 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.0875 45.2161 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5981 5.0000 10.5000 299.1500 297.9650 299.8520 295.8450 300.000
+ 26 1.0000 0.0000 -0.2000 -5.4000 59.837 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6445 45.5024 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5981 5.0000 10.4000 299.1690 297.9690 300.5510 295.8960 300.000
+ 27 1.0000 0.0000 -0.2000 -5.3000 59.851 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.2014 45.7887 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6689 1.5981 5.0000 10.3000 299.1860 297.9770 300.5660 295.9090 300.000
+ 28 1.0000 0.0000 -0.2000 -5.2000 60.272 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7584 46.0751 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5981 5.0000 10.2000 299.1900 297.9800 300.2530 295.9080 300.000
+ 29 1.0000 0.0000 -0.2000 -5.1000 59.967 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.3154 46.3616 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5981 5.0000 10.1000 299.1780 297.9780 299.9050 295.9050 300.000
+ 30 1.0000 0.0000 -0.2000 -5.0000 60.463 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.8725 46.6482 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5981 5.0000 10.0000 299.1570 297.9700 299.6360 295.8990 300.000
+ 31 1.0000 0.0000 -0.2000 -4.9000 60.017 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4297 46.9350 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.5981 5.0000 9.9000 299.1500 297.9660 300.0540 295.9180 300.000
+ 32 1.0000 0.0000 -0.2000 -4.8000 59.716 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.9872 47.2220 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5981 5.0000 9.8000 299.1740 297.9750 300.6370 295.9530 300.000
+ 33 1.0000 0.0000 -0.2000 -4.7000 60.168 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.5449 47.5092 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5981 5.0000 9.7000 299.1910 297.9820 300.5380 295.8870 300.000
+ 34 1.0000 0.0000 -0.2000 -4.6000 60.087 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1029 47.7966 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5981 5.0000 9.6000 299.1920 297.9830 300.1680 295.9170 300.000
+ 35 1.0000 0.0000 -0.2000 -4.5000 59.792 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6613 48.0844 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5981 5.0000 9.5000 299.1770 297.9800 299.8250 295.8110 300.000
+ 36 1.0000 0.0000 -0.2000 -4.4000 59.726 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2202 48.3724 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5981 5.0000 9.4000 299.1590 297.9730 299.6450 295.7930 300.000
+ 37 1.0000 0.0000 -0.2000 -4.3000 59.859 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7794 48.6608 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5981 5.0000 9.3000 299.1590 297.9720 300.2290 295.8010 300.000
+ 38 1.0000 0.0000 -0.2000 -4.2000 60.066 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3392 48.9495 -2.7386 0.5000 0.0000 0.0000 153.6151 -52.7696 1.5981 5.0000 9.2000 299.1860 297.9800 300.6370 295.8460 300.000
+ 39 1.0000 0.0000 -0.2000 -4.1000 59.934 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8996 49.2386 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5981 5.0000 9.1000 299.1950 297.9850 300.4470 295.9500 300.000
+ 40 1.0000 0.0000 -0.2000 -4.0000 60.231 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4607 49.5282 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5981 5.0000 9.0000 299.1870 297.9860 300.0920 296.0030 300.000
+ 41 1.0000 0.0000 -0.2000 -3.9000 59.953 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0224 49.8182 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5981 5.0000 8.9000 299.1700 297.9810 299.7420 295.9180 300.000
+ 42 1.0000 0.0000 -0.2000 -3.8000 60.150 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5849 50.1088 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5981 5.0000 8.8000 299.1530 297.9740 299.7150 295.9630 300.000
+ 43 1.0000 0.0000 -0.2000 -3.7000 60.232 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1482 50.3998 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5981 5.0000 8.7000 299.1650 297.9760 300.3980 295.8840 300.000
+ 44 1.0000 0.0000 -0.2000 -3.6000 59.878 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7124 50.6914 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5981 5.0000 8.6000 299.1890 297.9830 300.6150 295.9270 300.000
+ 45 1.0000 0.0000 -0.2000 -3.5000 60.077 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2775 50.9836 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5981 5.0000 8.5000 299.1900 297.9880 300.3360 296.0040 300.000
+# Sum of Counts = 445
+# Center of Mass = -4.853707+/-0.328467
+# Full Width Half-Maximum = 1.891542+/-0.140751
+# 10:36:19 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0069.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0069.dat
new file mode 100644
index 0000000..5fc9170
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0069.dat
@@ -0,0 +1,80 @@
+# scan = 69
+# date = 10/25/2011
+# time = 10:36:19 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.1 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.1 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.1000 -7.0000 60.260 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.8770 40.8095 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5954 5.0000 12.0000 299.1800 297.9890 299.9060 295.8400 300.000
+ 2 1.0000 0.0000 0.1000 -6.9000 59.683 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.4425 41.0987 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5954 5.0000 11.9000 299.1660 297.9810 299.6570 295.8410 300.000
+ 3 1.0000 0.0000 0.1000 -6.8000 59.712 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.0070 41.3875 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5954 5.0000 11.8000 299.1920 297.9920 300.1330 295.9170 300.000
+ 4 1.0000 0.0000 0.1000 -6.7000 60.561 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.5707 41.6759 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5954 5.0000 11.7000 299.1770 297.9900 299.7820 295.8580 300.000
+ 5 1.0000 0.0000 0.1000 -6.6000 60.014 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.1337 41.9640 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5954 5.0000 11.6000 299.1610 297.9850 299.6790 295.7180 300.000
+ 6 1.0000 0.0000 0.1000 -6.5000 59.858 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.6959 42.2518 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5954 5.0000 11.5000 299.1700 297.9830 300.3030 295.7110 300.000
+ 7 1.0000 0.0000 0.1000 -6.4000 60.200 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.2574 42.5393 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5954 5.0000 11.4000 299.1910 297.9920 300.6300 295.8200 300.000
+ 8 1.0000 0.0000 0.1000 -6.3000 59.561 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.8184 42.8266 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.5954 5.0000 11.3000 299.2000 297.9960 300.3930 295.8580 300.000
+ 9 1.0000 0.0000 0.1000 -6.2000 59.791 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.3788 43.1136 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5954 5.0000 11.2000 299.1690 297.9860 300.3350 295.7980 300.000
+ 10 1.0000 0.0000 0.1000 -6.1000 60.146 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.9387 43.4004 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 1.5954 5.0000 11.1000 299.1960 297.9960 300.6570 295.8460 300.000
+ 11 1.0000 0.0000 0.1000 -6.0000 60.203 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.4981 43.6871 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5954 5.0000 11.0000 299.2050 298.0000 300.4070 295.8560 300.000
+ 12 1.0000 0.0000 0.1000 -5.9000 60.233 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.0572 43.9736 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5954 5.0000 10.9000 299.1950 298.0000 300.0020 295.8710 300.000
+ 13 1.0000 0.0000 0.1000 -5.8000 59.881 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.6159 44.2601 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5954 5.0000 10.8000 299.1770 297.9940 299.6740 295.9160 300.000
+ 14 1.0000 0.0000 0.1000 -5.7000 59.902 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1744 44.5464 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5954 5.0000 10.7000 299.1580 297.9880 299.8550 295.9760 300.000
+ 15 1.0000 0.0000 0.1000 -5.6000 59.943 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.7326 44.8327 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5954 5.0000 10.6000 299.1800 297.9940 300.5160 295.8990 300.000
+ 16 1.0000 0.0000 0.1000 -5.5000 60.044 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.2907 45.1190 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5954 5.0000 10.5000 299.2030 298.0040 300.5510 295.8320 300.000
+ 17 1.0000 0.0000 0.1000 -5.4000 60.043 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.8486 45.4053 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5954 5.0000 10.4000 299.2040 298.0060 300.2340 295.9310 300.000
+ 18 1.0000 0.0000 0.1000 -5.3000 59.968 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.4065 45.6916 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5954 5.0000 10.3000 299.1850 298.0030 299.8800 296.0440 300.000
+ 19 1.0000 0.0000 0.1000 -5.2000 60.379 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9644 45.9780 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5954 5.0000 10.2000 299.1680 297.9980 299.6500 295.9210 300.000
+ 20 1.0000 0.0000 0.1000 -5.1000 59.800 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5222 46.2645 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5954 5.0000 10.1000 299.1660 297.9970 300.0700 295.8350 300.000
+ 21 1.0000 0.0000 0.1000 -5.0000 59.957 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.0802 46.5512 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5954 5.0000 10.0000 299.1890 298.0040 300.6260 295.8610 300.000
+ 22 1.0000 0.0000 0.1000 -4.9000 60.002 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6384 46.8379 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.5954 5.0000 9.9000 299.2050 298.0110 300.4930 295.9440 300.000
+ 23 1.0000 0.0000 0.1000 -4.8000 59.886 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1967 47.1248 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5954 5.0000 9.8000 299.2020 298.0120 300.1360 295.9240 300.000
+ 24 1.0000 0.0000 0.1000 -4.7000 60.196 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7553 47.4120 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5954 5.0000 9.7000 299.1890 298.0090 299.7780 295.9410 300.000
+ 25 1.0000 0.0000 0.1000 -4.6000 59.830 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.3142 47.6994 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5954 5.0000 9.6000 299.1680 298.0030 299.6650 295.9240 300.000
+ 26 1.0000 0.0000 0.1000 -4.5000 60.036 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8734 47.9870 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5954 5.0000 9.5000 299.1790 298.0060 300.3060 295.9500 300.000
+ 27 1.0000 0.0000 0.1000 -4.4000 60.000 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.4331 48.2750 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5954 5.0000 9.4000 299.2020 298.0130 300.6370 295.9370 300.000
+ 28 1.0000 0.0000 0.1000 -4.3000 59.953 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.9932 48.5633 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5954 5.0000 9.3000 299.2100 298.0190 300.4070 295.9910 300.000
+ 29 1.0000 0.0000 0.1000 -4.2000 60.165 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5539 48.8519 -2.7386 0.5000 0.0000 0.0000 153.6151 -52.7696 1.5954 5.0000 9.2000 299.2040 298.0180 300.0560 295.9880 300.000
+ 30 1.0000 0.0000 0.1000 -4.1000 59.879 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1152 49.1410 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5954 5.0000 9.1000 299.1890 298.0140 299.7110 295.9130 300.000
+ 31 1.0000 0.0000 0.1000 -4.0000 59.751 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6770 49.4304 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5954 5.0000 9.0000 299.1720 298.0080 299.7600 295.9320 300.000
+ 32 1.0000 0.0000 0.1000 -3.9000 59.896 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2396 49.7203 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5954 5.0000 8.9000 299.1860 298.0120 300.4980 296.0220 300.000
+ 33 1.0000 0.0000 0.1000 -3.8000 59.475 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8029 50.0107 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5954 5.0000 8.8000 299.2100 298.0220 300.6190 295.9110 300.000
+ 34 1.0000 0.0000 0.1000 -3.7000 59.722 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3670 50.3016 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5954 5.0000 8.7000 299.2200 298.0260 300.3290 295.9310 300.000
+ 35 1.0000 0.0000 0.1000 -3.6000 59.680 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.9320 50.5930 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5954 5.0000 8.6000 299.2090 298.0250 299.9640 295.9110 300.000
+ 36 1.0000 0.0000 0.1000 -3.5000 59.752 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.4978 50.8851 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5954 5.0000 8.5000 299.1930 298.0200 299.6550 295.8260 300.000
+ 37 1.0000 0.0000 0.1000 -3.4000 59.772 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0647 51.1777 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.5954 5.0000 8.4000 299.1800 298.0140 299.8950 295.9210 300.000
+ 38 1.0000 0.0000 0.1000 -3.3000 59.898 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.6326 51.4710 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.5954 5.0000 8.3000 299.1980 298.0210 300.5560 295.9390 300.000
+ 39 1.0000 0.0000 0.1000 -3.2000 60.159 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2016 51.7650 -2.7386 0.5000 0.0000 0.0000 151.9192 -56.1615 1.5954 5.0000 8.2000 299.2190 298.0300 300.5260 295.9440 300.000
+ 40 1.0000 0.0000 0.1000 -3.1000 59.628 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.7718 52.0597 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.5954 5.0000 8.1000 299.2230 298.0320 300.1960 295.9790 300.000
+ 41 1.0000 0.0000 0.1000 -3.0000 59.787 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.3432 52.3551 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.5954 5.0000 8.0000 299.2090 298.0290 299.8350 295.8690 300.000
+ 42 1.0000 0.0000 0.1000 -2.9000 59.700 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9160 52.6514 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.5954 5.0000 7.9000 299.1920 298.0240 299.6400 295.8510 300.000
+ 43 1.0000 0.0000 0.1000 -2.8000 59.927 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.4900 52.9484 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.5954 5.0000 7.8000 299.1900 298.0220 300.1690 295.8970 300.000
+ 44 1.0000 0.0000 0.1000 -2.7000 59.798 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0656 53.2464 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.5954 5.0000 7.7000 299.2110 298.0290 300.6380 296.0100 300.000
+ 45 1.0000 0.0000 0.1000 -2.6000 59.895 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6426 53.5452 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.5954 5.0000 7.6000 299.2210 298.0350 300.4430 296.0120 300.000
+ 46 1.0000 0.0000 0.1000 -2.5000 59.736 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2212 53.8450 -2.7386 0.5000 0.0000 0.0000 150.5151 -58.9696 1.5954 5.0000 7.5000 299.2200 298.0370 300.0860 295.9810 300.000
+# Sum of Counts = 436
+# Center of Mass = -4.174541+/-0.286959
+# Full Width Half-Maximum = 2.048556+/-0.129094
+# 11:30:34 AM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0070.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0070.dat
new file mode 100644
index 0000000..bca0aa8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0070.dat
@@ -0,0 +1,75 @@
+# scan = 70
+# date = 10/25/2011
+# time = 11:30:34 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.4 e -5.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.4 e -5.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.4000 -5.0000 60.305 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.8890 47.0348 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6085 5.0000 10.0000 299.2020 298.0360 299.7000 295.9170 300.000
+ 2 1.0000 0.0000 0.4000 -4.9000 60.062 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.4428 47.3218 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.6085 5.0000 9.9000 299.1850 298.0290 299.7610 295.8740 300.000
+ 3 1.0000 0.0000 0.4000 -4.8000 59.814 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.9967 47.6090 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6085 5.0000 9.8000 299.2010 298.0310 300.4730 295.9830 300.000
+ 4 1.0000 0.0000 0.4000 -4.7000 60.012 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.5510 47.8964 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.6085 5.0000 9.7000 299.2220 298.0400 300.6120 295.9590 300.000
+ 5 1.0000 0.0000 0.4000 -4.6000 59.693 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1056 48.1841 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.6085 5.0000 9.6000 299.2330 298.0440 300.2990 295.9070 300.000
+ 6 1.0000 0.0000 0.4000 -4.5000 60.000 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.6606 48.4721 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6085 5.0000 9.5000 299.2210 298.0430 299.9500 296.0200 300.000
+ 7 1.0000 0.0000 0.4000 -4.4000 59.685 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.2161 48.7604 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6085 5.0000 9.4000 299.1970 298.0360 299.6620 296.0490 300.000
+ 8 1.0000 0.0000 0.4000 -4.3000 60.362 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7721 49.0492 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6085 5.0000 9.3000 299.1900 298.0310 299.9090 296.0300 300.000
+ 9 1.0000 0.0000 0.4000 -4.2000 59.763 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.3286 49.3383 -2.7386 0.5000 0.0000 0.0000 153.6150 -52.7696 1.6085 5.0000 9.2000 299.2160 298.0380 300.6020 295.9890 300.000
+ 10 1.0000 0.0000 0.4000 -4.1000 59.813 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8858 49.6279 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6085 5.0000 9.1000 299.2370 298.0460 300.5580 295.8820 300.000
+ 11 1.0000 0.0000 0.4000 -4.0000 59.949 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.4436 49.9179 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6085 5.0000 9.0000 299.2430 298.0510 300.2370 295.8450 300.000
+ 12 1.0000 0.0000 0.4000 -3.9000 60.274 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0021 50.2085 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6085 5.0000 8.9000 299.2290 298.0480 299.8720 295.8600 300.000
+ 13 1.0000 0.0000 0.4000 -3.8000 59.970 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5614 50.4995 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.6085 5.0000 8.8000 299.2090 298.0430 299.6340 295.8600 300.000
+ 14 1.0000 0.0000 0.4000 -3.7000 60.360 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1215 50.7912 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6085 5.0000 8.7000 299.2030 298.0410 300.1280 295.9690 300.000
+ 15 1.0000 0.0000 0.4000 -3.6000 59.968 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6826 51.0834 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6085 5.0000 8.6000 299.2280 298.0480 300.6410 295.9510 300.000
+ 16 1.0000 0.0000 0.4000 -3.5000 60.145 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2445 51.3763 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.6085 5.0000 8.5000 299.2450 298.0550 300.4920 295.9100 300.000
+ 17 1.0000 0.0000 0.4000 -3.4000 59.777 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8075 51.6698 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.6085 5.0000 8.4000 299.2410 298.0590 300.1290 295.9620 300.000
+ 18 1.0000 0.0000 0.4000 -3.3000 59.711 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.3716 51.9640 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.6085 5.0000 8.3000 299.2230 298.0550 299.7870 295.9660 300.000
+ 19 1.0000 0.0000 0.4000 -3.2000 59.845 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9368 52.2590 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.6085 5.0000 8.2000 299.2020 298.0480 299.6720 295.9910 300.000
+ 20 1.0000 0.0000 0.4000 -3.1000 60.026 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5032 52.5548 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.6085 5.0000 8.1000 299.2070 298.0490 300.2860 295.9360 300.000
+ 21 1.0000 0.0000 0.4000 -3.0000 60.121 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0708 52.8513 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9223 1.6085 5.0000 8.0000 299.2330 298.0570 300.5790 295.8790 300.000
+ 22 1.0000 0.0000 0.4000 -2.9000 60.353 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6397 53.1487 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.6085 5.0000 7.9000 299.2400 298.0630 300.3690 295.9380 300.000
+ 23 1.0000 0.0000 0.4000 -2.8000 59.936 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2101 53.4470 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6085 5.0000 7.8000 299.2320 298.0620 299.9820 295.9430 300.000
+ 24 1.0000 0.0000 0.4000 -2.7000 59.987 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7819 53.7462 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.6085 5.0000 7.7000 299.2170 298.0570 299.7010 295.8620 300.000
+ 25 1.0000 0.0000 0.4000 -2.6000 60.176 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3552 54.0464 -2.7386 0.5000 0.0000 0.0000 150.7287 -58.5424 1.6085 5.0000 7.6000 299.2040 298.0520 299.8300 295.8540 300.000
+ 26 1.0000 0.0000 0.4000 -2.5000 60.275 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.9301 54.3477 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6085 5.0000 7.5000 299.2190 298.0570 300.5210 295.9270 300.000
+ 27 1.0000 0.0000 0.4000 -2.4000 60.006 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5067 54.6499 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.6085 5.0000 7.4000 299.2360 298.0650 300.5740 296.0020 300.000
+ 28 1.0000 0.0000 0.4000 -2.3000 60.100 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0850 54.9533 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8531 1.6085 5.0000 7.3000 299.2400 298.0690 300.2710 295.9760 300.000
+ 29 1.0000 0.0000 0.4000 -2.2000 60.095 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6651 55.2578 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3102 1.6085 5.0000 7.2000 299.2290 298.0670 299.9020 296.0020 300.000
+ 30 1.0000 0.0000 0.4000 -2.1000 59.781 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.2471 55.5636 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.6085 5.0000 7.1000 299.2080 298.0610 299.6520 295.9670 300.000
+ 31 1.0000 0.0000 0.4000 -2.0000 60.176 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.8311 55.8705 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.6085 5.0000 7.0000 299.2020 298.0580 300.0130 295.9590 300.000
+ 32 1.0000 0.0000 0.4000 -1.9000 59.793 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.4171 56.1788 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.6085 5.0000 6.9000 299.2250 298.0650 300.5990 295.9600 300.000
+ 33 1.0000 0.0000 0.4000 -1.8000 60.156 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0053 56.4884 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.6085 5.0000 6.8000 299.2440 298.0720 300.5000 295.9160 300.000
+ 34 1.0000 0.0000 0.4000 -1.7000 59.969 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.5956 56.7993 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.6085 5.0000 6.7000 299.2430 298.0740 300.1430 295.9360 300.000
+ 35 1.0000 0.0000 0.4000 -1.6000 59.943 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.1884 57.1118 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.6085 5.0000 6.6000 299.2280 298.0720 299.8060 295.9860 300.000
+ 36 1.0000 0.0000 0.4000 -1.5000 59.747 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7834 57.4258 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6085 5.0000 6.5000 299.2080 298.0640 299.6570 295.9350 300.000
+ 37 1.0000 0.0000 0.4000 -1.4000 59.851 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3810 57.7413 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6085 5.0000 6.4000 299.2140 298.0640 300.2870 295.9130 300.000
+ 38 1.0000 0.0000 0.4000 -1.3000 59.957 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9812 58.0584 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6085 5.0000 6.3000 299.2370 298.0720 300.6540 295.9860 300.000
+ 39 1.0000 0.0000 0.4000 -1.2000 59.942 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5841 58.3773 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6085 5.0000 6.2000 299.2470 298.0790 300.4280 295.9970 300.000
+ 40 1.0000 0.0000 0.4000 -1.1000 60.076 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1897 58.6980 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1531 1.6085 5.0000 6.1000 299.2420 298.0810 300.0770 295.9770 300.000
+ 41 1.0000 0.0000 0.4000 -1.0000 60.088 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.7983 59.0204 -2.7386 0.5000 0.0000 0.0000 146.6132 -66.7735 1.6085 5.0000 6.0000 299.2250 298.0750 299.7360 295.9920 300.000
+# Sum of Counts = 425
+# Center of Mass = -2.748941+/-0.192906
+# Full Width Half-Maximum = 1.675799+/-0.102185
+# 12:13:30 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0071.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0071.dat
new file mode 100644
index 0000000..12efad7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0071.dat
@@ -0,0 +1,50 @@
+# scan = 71
+# date = 10/25/2011
+# time = 12:13:30 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.6 e -2.5 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.6 e -2.5 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.6000 -2.5000 60.267 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.7166 55.0130 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6258 5.0000 7.5000 299.2070 298.0710 299.7770 295.9000 300.000
+ 2 1.0000 0.0000 0.6000 -2.4000 59.965 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2884 55.3172 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.6258 5.0000 7.4000 299.2200 298.0750 300.5120 295.9490 300.000
+ 3 1.0000 0.0000 0.6000 -2.3000 60.191 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8621 55.6227 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.6258 5.0000 7.3000 299.2450 298.0830 300.6200 295.8720 300.000
+ 4 1.0000 0.0000 0.6000 -2.2000 60.538 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4375 55.9294 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.6258 5.0000 7.2000 299.2530 298.0880 300.3050 295.9130 300.000
+ 5 1.0000 0.0000 0.6000 -2.1000 60.139 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.0149 56.2373 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.6258 5.0000 7.1000 299.2460 298.0880 299.9390 295.9010 300.000
+ 6 1.0000 0.0000 0.6000 -2.0000 60.328 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.5943 56.5466 -2.7386 0.5000 0.0000 0.0000 149.3716 -61.2567 1.6258 5.0000 7.0000 299.2260 298.0790 299.6650 295.8770 300.000
+ 7 1.0000 0.0000 0.6000 -1.9000 60.061 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.1757 56.8573 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.6258 5.0000 6.9000 299.2130 298.0750 299.9310 295.8810 300.000
+ 8 1.0000 0.0000 0.6000 -1.8000 59.713 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7593 57.1694 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.6258 5.0000 6.8000 299.2360 298.0800 300.5820 295.9120 300.000
+ 9 1.0000 0.0000 0.6000 -1.7000 60.279 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3451 57.4831 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.6258 5.0000 6.7000 299.2530 298.0880 300.5500 295.9770 300.000
+ 10 1.0000 0.0000 0.6000 -1.6000 60.058 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.9333 57.7983 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.6258 5.0000 6.6000 299.2540 298.0940 300.2030 295.9630 300.000
+ 11 1.0000 0.0000 0.6000 -1.5000 60.075 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5239 58.1151 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6258 5.0000 6.5000 299.2410 298.0920 299.8500 295.9290 300.000
+ 12 1.0000 0.0000 0.6000 -1.4000 60.012 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1170 58.4336 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 1.6258 5.0000 6.4000 299.2200 298.0830 299.6480 295.9070 300.000
+ 13 1.0000 0.0000 0.6000 -1.3000 59.905 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7126 58.7538 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6258 5.0000 6.3000 299.2170 298.0820 300.1580 295.9450 300.000
+ 14 1.0000 0.0000 0.6000 -1.2000 59.779 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3110 59.0759 -2.7386 0.5000 0.0000 0.0000 147.2250 -65.5497 1.6258 5.0000 6.2000 299.2400 298.0880 300.6220 295.9410 300.000
+ 15 1.0000 0.0000 0.6000 -1.1000 60.006 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9123 59.3998 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6258 5.0000 6.1000 299.2530 298.0950 300.4600 295.9350 300.000
+ 16 1.0000 0.0000 0.6000 -1.0000 60.174 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5164 59.7257 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6258 5.0000 6.0000 299.2500 298.0960 300.1050 295.9250 300.000
+# Sum of Counts = 419
+# Center of Mass = -1.759189+/-0.122618
+# Full Width Half-Maximum = 0.664203+/-0.067366
+# 12:30:23 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0072.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0072.dat
new file mode 100644
index 0000000..65f3265
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0072.dat
@@ -0,0 +1,59 @@
+# scan = 72
+# date = 10/25/2011
+# time = 12:30:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.8000 -1.5000 60.150 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.5242 59.0716 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6498 5.0000 6.5000 299.2360 298.0930 299.7570 295.8850 300.000
+ 2 1.0000 0.0000 0.8000 -1.4500 60.003 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8174 59.2327 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.6498 5.0000 6.4500 299.2210 298.0880 299.7230 295.7770 300.000
+ 3 1.0000 0.0000 0.8000 -1.4000 60.149 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.1113 59.3942 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6498 5.0000 6.4000 299.2280 298.0870 300.3340 295.8270 300.000
+ 4 1.0000 0.0000 0.8000 -1.3500 59.731 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4058 59.5563 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.6498 5.0000 6.3500 299.2460 298.0950 300.6030 295.9040 300.000
+ 5 1.0000 0.0000 0.8000 -1.3000 60.311 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7010 59.7188 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6498 5.0000 6.3000 299.2550 298.0990 300.3630 295.8840 300.000
+ 6 1.0000 0.0000 0.8000 -1.2500 60.347 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9969 59.8818 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.6498 5.0000 6.2500 299.2470 298.0980 299.9990 295.9090 300.000
+ 7 1.0000 0.0000 0.8000 -1.2000 60.239 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2935 60.0454 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5498 1.6498 5.0000 6.2000 299.2280 298.0920 299.6930 295.8850 300.000
+ 8 1.0000 0.0000 0.8000 -1.1500 60.125 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5908 60.2094 -2.7386 0.5000 0.0000 0.0000 147.0752 -65.8493 1.6498 5.0000 6.1500 299.2140 298.0880 299.8180 295.9200 300.000
+ 9 1.0000 0.0000 0.8000 -1.1000 60.156 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8888 60.3740 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6498 5.0000 6.1000 299.2280 298.0920 300.5180 296.0070 300.000
+ 10 1.0000 0.0000 0.8000 -1.0500 59.824 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1875 60.5391 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.6498 5.0000 6.0500 299.2520 298.1030 300.5810 295.9130 300.000
+ 11 1.0000 0.0000 0.8000 -1.0000 60.061 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4870 60.7048 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6498 5.0000 6.0000 299.2600 298.1070 300.2730 295.8360 300.000
+ 12 1.0000 0.0000 0.8000 -0.9500 59.986 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.7872 60.8710 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.6498 5.0000 5.9500 299.2470 298.1050 299.9180 295.8340 300.000
+ 13 1.0000 0.0000 0.8000 -0.9000 60.408 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0883 61.0377 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6498 5.0000 5.9000 299.2240 298.0970 299.6580 295.9840 300.000
+ 14 1.0000 0.0000 0.8000 -0.8500 60.032 65.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.3901 61.2051 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.6498 5.0000 5.8500 299.2100 298.0940 299.9770 295.9980 300.000
+ 15 1.0000 0.0000 0.8000 -0.8000 59.932 92.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6927 61.3730 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.6498 5.0000 5.8000 299.2320 298.0990 300.5400 296.0060 300.000
+ 16 1.0000 0.0000 0.8000 -0.7500 59.963 117.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.9962 61.5416 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.6498 5.0000 5.7500 299.2440 298.1070 300.4950 296.0630 300.000
+ 17 1.0000 0.0000 0.8000 -0.7000 60.008 134.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3004 61.7107 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7468 1.6498 5.0000 5.7000 299.2470 298.1090 300.1550 295.9540 300.000
+ 18 1.0000 0.0000 0.8000 -0.6500 59.560 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6056 61.8804 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.6498 5.0000 5.6500 299.2380 298.1060 299.8060 295.8840 300.000
+ 19 1.0000 0.0000 0.8000 -0.6000 60.280 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9116 62.0509 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.6498 5.0000 5.6000 299.2200 298.0990 299.6690 295.8010 300.000
+ 20 1.0000 0.0000 0.8000 -0.5500 59.775 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2184 62.2219 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.6498 5.0000 5.5500 299.2180 298.0970 300.2570 295.9720 300.000
+ 21 1.0000 0.0000 0.8000 -0.5000 60.048 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5262 62.3936 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6498 5.0000 5.5000 299.2380 298.1050 300.5940 295.9890 300.000
+ 22 1.0000 0.0000 0.8000 -0.4500 59.888 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8349 62.5660 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.6498 5.0000 5.4500 299.2460 298.1090 300.3970 296.0650 300.000
+ 23 1.0000 0.0000 0.8000 -0.4000 60.136 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1446 62.7391 -2.7386 0.5000 0.0000 0.0000 144.5456 -70.9087 1.6498 5.0000 5.4000 299.2410 298.1100 300.0280 296.0200 300.000
+ 24 1.0000 0.0000 0.8000 -0.3500 59.417 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4552 62.9129 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.6498 5.0000 5.3500 299.2230 298.1050 299.7200 296.0380 300.000
+ 25 1.0000 0.0000 0.8000 -0.3000 59.663 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.7667 63.0874 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.6498 5.0000 5.3000 299.2050 298.0990 299.7500 296.0260 300.000
+# Sum of Counts = 1128
+# Center of Mass = -0.902261+/-0.038889
+# Full Width Half-Maximum = 0.557864+/-0.021177
+# 12:56:28 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0073.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0073.dat
new file mode 100644
index 0000000..a22bbcc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0073.dat
@@ -0,0 +1,59 @@
+# scan = 73
+# date = 10/25/2011
+# time = 12:56:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 1.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h 1.1 k 0 l 1.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 1.1000 -1.5000 59.622 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0464 67.1746 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8481 5.0000 6.5000 299.2280 298.1010 300.4930 295.8900 300.000
+ 2 1.1000 0.0000 1.1000 -1.4500 59.910 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3193 67.3548 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8481 5.0000 6.4500 299.2480 298.1090 300.5720 295.9010 300.000
+ 3 1.1000 0.0000 1.1000 -1.4000 59.765 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5930 67.5359 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8481 5.0000 6.4000 299.2530 298.1160 300.2690 295.8550 300.000
+ 4 1.1000 0.0000 1.1000 -1.3500 59.945 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8674 67.7178 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.8481 5.0000 6.3500 299.2430 298.1130 299.9110 295.8680 300.000
+ 5 1.1000 0.0000 1.1000 -1.3000 60.009 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1424 67.9005 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8481 5.0000 6.3000 299.2220 298.1050 299.6600 295.8350 300.000
+ 6 1.1000 0.0000 1.1000 -1.2500 60.039 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4182 68.0840 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.8481 5.0000 6.2500 299.2180 298.1030 299.9660 295.7590 300.000
+ 7 1.1000 0.0000 1.1000 -1.2000 60.156 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6948 68.2685 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8481 5.0000 6.2000 299.2390 298.1100 300.5610 295.8650 300.000
+ 8 1.1000 0.0000 1.1000 -1.1500 60.343 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9722 68.4538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8481 5.0000 6.1500 299.2500 298.1160 300.5130 295.9810 300.000
+ 9 1.1000 0.0000 1.1000 -1.1000 59.774 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2503 68.6400 -2.7386 0.5000 0.0000 0.0000 146.9233 -66.1530 1.8481 5.0000 6.1000 299.2480 298.1180 300.1760 295.9000 300.000
+ 10 1.1000 0.0000 1.1000 -1.0500 59.885 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5292 68.8271 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8481 5.0000 6.0500 299.2400 298.1150 299.8330 295.8220 300.000
+ 11 1.1000 0.0000 1.1000 -1.0000 59.758 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.8088 69.0152 -2.7386 0.5000 0.0000 0.0000 146.6131 -66.7735 1.8481 5.0000 6.0000 299.2160 298.1070 299.6740 295.9470 300.000
+ 12 1.1000 0.0000 1.1000 -0.9500 59.865 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0894 69.2042 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8481 5.0000 5.9500 299.2110 298.1060 300.1600 295.9620 300.000
+ 13 1.1000 0.0000 1.1000 -0.9000 59.869 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3707 69.3942 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8481 5.0000 5.9000 299.2340 298.1120 300.5970 296.0140 300.000
+ 14 1.1000 0.0000 1.1000 -0.8500 59.640 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6528 69.5851 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.8481 5.0000 5.8500 299.2460 298.1190 300.4400 295.9950 300.000
+ 15 1.1000 0.0000 1.1000 -0.8000 59.582 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9359 69.7771 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8481 5.0000 5.8000 299.2430 298.1200 300.0870 295.9750 300.000
+ 16 1.1000 0.0000 1.1000 -0.7500 59.626 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2198 69.9701 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.8481 5.0000 5.7500 299.2270 298.1170 299.7480 295.9320 300.000
+ 17 1.1000 0.0000 1.1000 -0.7000 59.771 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5046 70.1642 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8481 5.0000 5.7000 299.2090 298.1100 299.7000 295.9280 300.000
+ 18 1.1000 0.0000 1.1000 -0.6500 59.843 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7903 70.3593 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.8481 5.0000 5.6500 299.2150 298.1110 300.3580 295.9710 300.000
+ 19 1.1000 0.0000 1.1000 -0.6000 59.996 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.0769 70.5555 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.8481 5.0000 5.6000 299.2380 298.1190 300.6040 295.9810 300.000
+ 20 1.1000 0.0000 1.1000 -0.5500 60.028 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3644 70.7528 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.8481 5.0000 5.5500 299.2460 298.1260 300.3650 296.0300 300.000
+ 21 1.1000 0.0000 1.1000 -0.5000 60.326 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.6529 70.9513 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.8481 5.0000 5.5000 299.2390 298.1260 299.9990 296.0250 300.000
+ 22 1.1000 0.0000 1.1000 -0.4500 60.022 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9424 71.1509 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.8481 5.0000 5.4500 299.2210 298.1200 299.7020 295.8940 300.000
+ 23 1.1000 0.0000 1.1000 -0.4000 59.769 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.2328 71.3517 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.8481 5.0000 5.4000 299.2050 298.1130 299.7890 295.9480 300.000
+ 24 1.1000 0.0000 1.1000 -0.3500 59.481 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5242 71.5538 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.8481 5.0000 5.3500 299.2190 298.1180 300.4750 295.9990 300.000
+ 25 1.1000 0.0000 1.1000 -0.3000 59.973 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.8167 71.7570 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 1.8481 5.0000 5.3000 299.2360 298.1240 300.5970 296.0960 300.000
+# Sum of Counts = 349
+# Center of Mass = -1.165186+/-0.089629
+# Full Width Half-Maximum = 0.594430+/-0.050378
+# 1:22:35 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0074.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0074.dat
new file mode 100644
index 0000000..cdd72f2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0074.dat
@@ -0,0 +1,50 @@
+# scan = 74
+# date = 10/25/2011
+# time = 1:22:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.2 k 0 l 1.2 e -2.5 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.2 k 0 l 1.2 e -2.5 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.2000 0.0000 1.2000 -2.5000 59.639 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2408 70.5520 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0161 5.0000 7.5000 299.2450 298.1320 300.2150 295.9630 300.000
+ 2 1.2000 0.0000 1.2000 -2.4000 59.814 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7380 70.9148 -2.7386 0.5000 0.0000 0.0000 150.2967 -59.4063 2.0161 5.0000 7.4000 299.2350 298.1260 299.8660 295.8300 300.000
+ 3 1.2000 0.0000 1.2000 -2.3000 60.072 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2375 71.2808 -2.7386 0.5000 0.0000 0.0000 150.0734 -59.8530 2.0161 5.0000 7.3000 299.2160 298.1180 299.6570 295.9040 300.000
+ 4 1.2000 0.0000 1.2000 -2.2000 59.897 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.7394 71.6502 -2.7386 0.5000 0.0000 0.0000 149.8449 -60.3101 2.0161 5.0000 7.2000 299.2090 298.1150 300.0890 295.8570 300.000
+ 5 1.2000 0.0000 1.2000 -2.1000 60.089 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.2436 72.0230 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0161 5.0000 7.1000 299.2350 298.1220 300.5980 295.8820 300.000
+ 6 1.2000 0.0000 1.2000 -2.0000 59.695 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.7504 72.3994 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0161 5.0000 7.0000 299.2430 298.1290 300.4650 295.9920 300.000
+ 7 1.2000 0.0000 1.2000 -1.9000 60.150 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2597 72.7794 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0161 5.0000 6.9000 299.2420 298.1320 300.1140 295.9450 300.000
+ 8 1.2000 0.0000 1.2000 -1.8000 59.974 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7717 73.1633 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0161 5.0000 6.8000 299.2280 298.1280 299.7780 295.8880 300.000
+ 9 1.2000 0.0000 1.2000 -1.7000 59.696 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2864 73.5512 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.0161 5.0000 6.7000 299.2100 298.1220 299.6960 295.8820 300.000
+ 10 1.2000 0.0000 1.2000 -1.6000 60.003 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8039 73.9430 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.0161 5.0000 6.6000 299.2120 298.1220 300.2890 295.9460 300.000
+ 11 1.2000 0.0000 1.2000 -1.5000 59.756 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.3243 74.3392 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0161 5.0000 6.5000 299.2330 298.1290 300.6090 296.0810 300.000
+ 12 1.2000 0.0000 1.2000 -1.4000 59.429 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8477 74.7398 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.0161 5.0000 6.4000 299.2390 298.1330 300.3700 296.1200 300.000
+ 13 1.2000 0.0000 1.2000 -1.3000 59.426 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3742 75.1449 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0161 5.0000 6.3000 299.2360 298.1330 300.0250 295.9860 300.000
+ 14 1.2000 0.0000 1.2000 -1.2000 59.674 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9039 75.5548 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0161 5.0000 6.2000 299.2210 298.1280 299.7090 296.0150 300.000
+ 15 1.2000 0.0000 1.2000 -1.1000 59.941 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.4369 75.9696 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.0161 5.0000 6.1000 299.2010 298.1200 299.7920 296.0560 300.000
+ 16 1.2000 0.0000 1.2000 -1.0000 59.690 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.9733 76.3895 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0161 5.0000 6.0000 299.2170 298.1240 300.4790 296.0220 300.000
+# Sum of Counts = 76
+# Center of Mass = -1.818421+/-0.299256
+# Full Width Half-Maximum = 0.878222+/-0.185767
+# 1:39:28 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0075.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0075.dat
new file mode 100644
index 0000000..ca8c075
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0075.dat
@@ -0,0 +1,75 @@
+# scan = 75
+# date = 10/25/2011
+# time = 1:39:28 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 1.3 e -5.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.3 k 0 l 1.3 e -5.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 1.3000 -5.0000 60.128 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4197 68.7936 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.1841 5.0000 10.0000 299.2440 298.1330 300.5380 295.9490 300.000
+ 2 1.3000 0.0000 1.3000 -4.9000 59.952 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8549 69.1180 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.1841 5.0000 9.9000 299.2410 298.1360 300.2050 296.0080 300.000
+ 3 1.3000 0.0000 1.3000 -4.8000 59.777 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2914 69.4444 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.1841 5.0000 9.8000 299.2290 298.1340 299.8650 296.0290 300.000
+ 4 1.3000 0.0000 1.3000 -4.7000 59.870 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.7291 69.7730 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.1841 5.0000 9.7000 299.2120 298.1270 299.6460 295.9410 300.000
+ 5 1.3000 0.0000 1.3000 -4.6000 60.022 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.1682 70.1036 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5758 2.1841 5.0000 9.6000 299.2090 298.1250 300.0940 295.9990 300.000
+ 6 1.3000 0.0000 1.3000 -4.5000 60.065 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.6086 70.4364 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.1841 5.0000 9.5000 299.2310 298.1330 300.5920 296.0520 300.000
+ 7 1.3000 0.0000 1.3000 -4.4000 60.138 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.0505 70.7716 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.1841 5.0000 9.4000 299.2430 298.1400 300.4550 296.0950 300.000
+ 8 1.3000 0.0000 1.3000 -4.3000 59.667 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4938 71.1090 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.1841 5.0000 9.3000 299.2400 298.1390 300.1120 296.0260 300.000
+ 9 1.3000 0.0000 1.3000 -4.2000 59.633 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9385 71.4488 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.1841 5.0000 9.2000 299.2250 298.1340 299.8090 295.9980 300.000
+ 10 1.3000 0.0000 1.3000 -4.1000 59.557 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3848 71.7911 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.1841 5.0000 9.1000 299.2060 298.1280 299.6710 295.9740 300.000
+ 11 1.3000 0.0000 1.3000 -4.0000 59.304 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8327 72.1359 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 2.1841 5.0000 9.0000 299.2060 298.1280 300.2230 295.9990 300.000
+ 12 1.3000 0.0000 1.3000 -3.9000 59.434 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2822 72.4833 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.1841 5.0000 8.9000 299.2270 298.1370 300.6050 296.0680 300.000
+ 13 1.3000 0.0000 1.3000 -3.8000 59.859 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7334 72.8334 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 2.1841 5.0000 8.8000 299.2410 298.1420 300.4170 295.9990 300.000
+ 14 1.3000 0.0000 1.3000 -3.7000 59.644 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1863 73.1862 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.1841 5.0000 8.7000 299.2400 298.1420 300.0690 295.9250 300.000
+ 15 1.3000 0.0000 1.3000 -3.6000 59.462 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6410 73.5420 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.1841 5.0000 8.6000 299.2220 298.1370 299.7400 295.9920 300.000
+ 16 1.3000 0.0000 1.3000 -3.5000 60.338 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0974 73.9006 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.1841 5.0000 8.5000 299.2040 298.1310 299.7180 295.9480 300.000
+ 17 1.3000 0.0000 1.3000 -3.4000 59.721 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5557 74.2622 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.1841 5.0000 8.4000 299.2140 298.1310 300.3840 295.9740 300.000
+ 18 1.3000 0.0000 1.3000 -3.3000 59.859 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0160 74.6269 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.1841 5.0000 8.3000 299.2360 298.1400 300.5880 295.9360 300.000
+ 19 1.3000 0.0000 1.3000 -3.2000 59.713 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4782 74.9948 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1616 2.1841 5.0000 8.2000 299.2430 298.1440 300.3250 295.9060 300.000
+ 20 1.3000 0.0000 1.3000 -3.1000 59.544 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.9424 75.3660 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.1841 5.0000 8.1000 299.2390 298.1440 299.9770 295.9410 300.000
+ 21 1.3000 0.0000 1.3000 -3.0000 59.632 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4087 75.7406 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.1841 5.0000 8.0000 299.2180 298.1370 299.6860 295.9360 300.000
+ 22 1.3000 0.0000 1.3000 -2.9000 59.813 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.8771 76.1188 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.1841 5.0000 7.9000 299.2030 298.1320 299.8600 295.9630 300.000
+ 23 1.3000 0.0000 1.3000 -2.8000 59.629 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.3478 76.5005 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.1841 5.0000 7.8000 299.2200 298.1360 300.5070 296.0010 300.000
+ 24 1.3000 0.0000 1.3000 -2.7000 59.873 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.8207 76.8860 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.1841 5.0000 7.7000 299.2370 298.1430 300.5430 296.0640 300.000
+ 25 1.3000 0.0000 1.3000 -2.6000 59.442 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2959 77.2754 -2.7386 0.5000 0.0000 0.0000 150.7287 -58.5424 2.1841 5.0000 7.6000 299.2390 298.1470 300.2380 296.0920 300.000
+ 26 1.3000 0.0000 1.3000 -2.5000 59.827 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7736 77.6687 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9696 2.1841 5.0000 7.5000 299.2290 298.1440 299.8790 296.0200 300.000
+ 27 1.3000 0.0000 1.3000 -2.4000 59.823 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2536 78.0661 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.1841 5.0000 7.4000 299.2110 298.1370 299.6570 295.9960 300.000
+ 28 1.3000 0.0000 1.3000 -2.3000 59.895 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7363 78.4678 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.1841 5.0000 7.3000 299.2010 298.1350 300.0330 296.0360 300.000
+ 29 1.3000 0.0000 1.3000 -2.2000 59.492 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.2216 78.8739 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.1841 5.0000 7.2000 299.2220 298.1410 300.6050 296.1200 300.000
+ 30 1.3000 0.0000 1.3000 -2.1000 59.620 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.7096 79.2846 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7779 2.1841 5.0000 7.1000 299.2380 298.1490 300.4930 296.0980 300.000
+ 31 1.3000 0.0000 1.3000 -2.0000 59.341 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.2003 79.7000 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1841 5.0000 7.0000 299.2370 298.1510 300.1540 296.0840 300.000
+ 32 1.3000 0.0000 1.3000 -1.9000 59.538 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.6939 80.1202 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.1841 5.0000 6.9000 299.2230 298.1480 299.8410 296.1350 300.000
+ 33 1.3000 0.0000 1.3000 -1.8000 59.646 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1905 80.5456 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.1841 5.0000 6.8000 299.2050 298.1410 299.6540 296.0140 300.000
+ 34 1.3000 0.0000 1.3000 -1.7000 59.619 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6901 80.9762 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.1841 5.0000 6.7000 299.2100 298.1400 300.2060 295.9340 300.000
+ 35 1.3000 0.0000 1.3000 -1.6000 60.151 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.1928 81.4122 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.1841 5.0000 6.6000 299.2310 298.1480 300.6200 296.0200 300.000
+ 36 1.3000 0.0000 1.3000 -1.5000 59.654 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.6988 81.8538 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.1841 5.0000 6.5000 299.2420 298.1540 300.4420 296.0490 300.000
+ 37 1.3000 0.0000 1.3000 -1.4000 59.475 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2082 82.3013 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.1841 5.0000 6.4000 299.2360 298.1530 300.1010 296.1280 300.000
+ 38 1.3000 0.0000 1.3000 -1.3000 59.681 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7210 82.7549 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.1841 5.0000 6.3000 299.2210 298.1480 299.7600 296.0610 300.000
+ 39 1.3000 0.0000 1.3000 -1.2000 59.733 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2373 83.2149 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.1841 5.0000 6.2000 299.2030 298.1420 299.6960 296.0750 300.000
+ 40 1.3000 0.0000 1.3000 -1.1000 59.464 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.7573 83.6814 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.1841 5.0000 6.1000 299.2080 298.1430 300.3270 296.0740 300.000
+ 41 1.3000 0.0000 1.3000 -1.0000 59.460 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.2811 84.1548 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7736 2.1841 5.0000 6.0000 299.2320 298.1500 300.6020 296.0640 300.000
+# Sum of Counts = 263
+# Center of Mass = -3.741825+/-0.335217
+# Full Width Half-Maximum = 2.490743+/-0.194328
+# 2:22:19 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0076.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0076.dat
new file mode 100644
index 0000000..f2a950d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0076.dat
@@ -0,0 +1,61 @@
+# scan = 76
+# date = 10/25/2011
+# time = 2:22:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.4 k 0 l 1.4 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.4 k 0 l 1.4 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.4000 0.0000 1.4000 -7.0000 59.459 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.2365 69.0608 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3521 5.0000 12.0000 299.2480 298.1610 300.2690 295.8970 300.000
+ 2 1.4000 0.0000 1.4000 -6.9000 59.391 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.6329 69.3662 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3521 5.0000 11.9000 299.2380 298.1580 299.9180 295.8240 300.000
+ 3 1.4000 0.0000 1.4000 -6.8000 59.560 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.0302 69.6732 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3521 5.0000 11.8000 299.2200 298.1490 299.6710 295.8230 300.000
+ 4 1.4000 0.0000 1.4000 -6.7000 59.836 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.4284 69.9818 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3521 5.0000 11.7000 299.2070 298.1480 299.9350 295.8800 300.000
+ 5 1.4000 0.0000 1.4000 -6.6000 59.583 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8275 70.2921 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3521 5.0000 11.6000 299.2630 298.1600 300.4650 295.3620 300.000
+ 6 1.4000 0.0000 1.4000 -6.5000 59.385 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.2276 70.6041 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3521 5.0000 11.5000 299.2430 298.1580 300.5530 295.9900 300.000
+ 7 1.4000 0.0000 1.4000 -6.4000 59.512 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.6286 70.9178 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.3521 5.0000 11.4000 299.2470 298.1630 300.2170 295.8480 300.000
+ 8 1.4000 0.0000 1.4000 -6.3000 59.742 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.0306 71.2332 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 2.3521 5.0000 11.3000 299.2310 298.1580 299.8860 295.9870 300.000
+ 9 1.4000 0.0000 1.4000 -6.2000 59.997 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4336 71.5506 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3521 5.0000 11.2000 299.2080 298.1520 299.6570 295.9550 300.000
+ 10 1.4000 0.0000 1.4000 -6.1000 59.649 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8377 71.8697 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3521 5.0000 11.1000 299.2090 298.1520 300.0340 295.9770 300.000
+ 11 1.4000 0.0000 1.4000 -6.0000 59.573 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2429 72.1908 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3521 5.0000 11.0000 299.2240 298.1570 300.5800 296.0800 300.000
+ 12 1.4000 0.0000 1.4000 -5.9000 59.544 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6492 72.5139 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3521 5.0000 10.9000 299.2360 298.1620 300.4760 296.0740 300.000
+ 13 1.4000 0.0000 1.4000 -5.8000 58.790 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0566 72.8390 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3521 5.0000 10.8000 299.2360 298.1670 300.2840 295.9800 300.000
+ 14 1.4000 0.0000 1.4000 -5.7000 59.465 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4652 73.1661 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3521 5.0000 10.7000 299.2260 298.1650 299.9620 296.0510 300.000
+ 15 1.4000 0.0000 1.4000 -5.6000 59.721 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.8750 73.4954 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3521 5.0000 10.6000 299.2080 298.1580 299.6860 296.0300 300.000
+ 16 1.4000 0.0000 1.4000 -5.5000 59.749 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.2861 73.8268 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3521 5.0000 10.5000 299.1950 298.1550 299.8650 296.0000 300.000
+ 17 1.4000 0.0000 1.4000 -5.4000 59.538 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6984 74.1604 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3521 5.0000 10.4000 299.2090 298.1590 300.5130 296.0510 300.000
+ 18 1.4000 0.0000 1.4000 -5.3000 59.651 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.1120 74.4964 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3521 5.0000 10.3000 299.2240 298.1660 300.5370 296.1030 300.000
+ 19 1.4000 0.0000 1.4000 -5.2000 59.381 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.5270 74.8347 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3521 5.0000 10.2000 299.2280 298.1700 300.2430 296.1050 300.000
+ 20 1.4000 0.0000 1.4000 -5.1000 59.465 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.9433 75.1754 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.3521 5.0000 10.1000 299.2230 298.1680 299.9170 296.0820 300.000
+ 21 1.4000 0.0000 1.4000 -5.0000 59.350 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3610 75.5186 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 2.3521 5.0000 10.0000 299.2070 298.1620 299.7130 296.0670 300.000
+ 22 1.4000 0.0000 1.4000 -4.9000 59.470 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7802 75.8644 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3521 5.0000 9.9000 299.1950 298.1590 299.9690 296.0070 300.000
+ 23 1.4000 0.0000 1.4000 -4.8000 59.517 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2008 76.2127 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3521 5.0000 9.8000 299.2100 298.1640 300.4400 296.0820 300.000
+ 24 1.4000 0.0000 1.4000 -4.7000 59.658 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6230 76.5637 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3521 5.0000 9.7000 299.2230 298.1680 300.4020 296.1000 300.000
+ 25 1.4000 0.0000 1.4000 -4.6000 59.521 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0467 76.9175 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3521 5.0000 9.6000 299.2250 298.1720 300.0870 296.0300 300.000
+ 26 1.4000 0.0000 1.4000 -4.5000 59.425 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4720 77.2740 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3521 5.0000 9.5000 299.2140 298.1670 299.7590 295.9250 300.000
+ 27 1.4000 0.0000 1.4000 -4.4000 5.211 1.000 8033.000 0.088 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8990 77.6336 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3521 5.0000 9.4000 299.1950 298.1600 299.7040 295.9610 300.000
+# Sum of Counts = 331
+# Center of Mass = -5.894562+/-0.459137
+# Full Width Half-Maximum = 1.068473+/-0.166411
+# 2:55:14 PM 10/25/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0077.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0077.dat
new file mode 100644
index 0000000..e2fc93e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0077.dat
@@ -0,0 +1,65 @@
+# scan = 77
+# date = 10/25/2011
+# time = 2:56:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.5000 59.946 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 299.2050 298.1630 300.5170 296.1500 300.000
+ 2 1.5000 0.0000 1.5000 -8.4000 59.311 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1527 71.3308 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 2.5201 5.0000 13.4000 299.2770 298.1810 300.4160 295.2350 300.000
+ 3 1.5000 0.0000 1.5000 -8.3000 59.345 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5225 71.6287 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.5201 5.0000 13.3000 299.2340 298.1750 300.2500 295.9140 300.000
+ 4 1.5000 0.0000 1.5000 -8.2000 59.758 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 299.2220 298.1720 299.9010 295.9290 300.000
+ 5 1.5000 0.0000 1.5000 -8.1000 59.790 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2643 72.2290 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 2.5201 5.0000 13.1000 299.2010 298.1660 299.6650 295.9670 300.000
+ 6 1.5000 0.0000 1.5000 -8.0000 59.669 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 299.2010 298.1670 299.8600 295.6070 300.000
+ 7 1.5000 0.0000 1.5000 -7.9000 59.512 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0094 72.8353 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5201 5.0000 12.9000 299.2200 298.1720 300.9980 296.0190 300.000
+ 8 1.5000 0.0000 1.5000 -7.8000 59.647 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 299.2700 298.1900 301.3240 295.9860 300.000
+ 9 1.5000 0.0000 1.5000 -7.7000 59.399 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7577 73.4480 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5201 5.0000 12.7000 299.2950 298.2040 301.0000 296.0620 300.000
+ 10 1.5000 0.0000 1.5000 -7.6000 59.693 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 299.2990 298.2100 300.5400 296.0210 300.000
+ 11 1.5000 0.0000 1.5000 -7.4999 59.268 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5096 74.0674 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8224 2.5201 5.0000 12.4999 299.2940 298.2090 300.1460 296.0430 300.000
+ 12 1.5000 0.0000 1.5000 -7.4000 59.291 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 299.2760 298.2030 299.7930 295.9970 300.000
+ 13 1.5000 0.0000 1.5000 -7.3000 59.487 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2652 74.6938 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5201 5.0000 12.3000 299.2530 298.1950 299.6770 296.0400 300.000
+ 14 1.5000 0.0000 1.5000 -7.2000 59.133 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 299.2580 298.1940 300.2070 296.0020 300.000
+ 15 1.5000 0.0000 1.5000 -7.1000 59.638 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0246 75.3275 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5201 5.0000 12.1000 299.2710 298.1990 300.5600 296.1240 300.000
+ 16 1.5000 0.0000 1.5000 -7.0000 59.595 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 299.2790 298.2050 300.3730 296.1190 300.000
+ 17 1.5000 0.0000 1.5000 -6.9000 59.292 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7882 75.9689 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5201 5.0000 11.9000 299.2750 298.2030 300.0660 296.1450 300.000
+ 18 1.5000 0.0000 1.5000 -6.8000 59.339 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 299.2550 298.1960 299.7370 296.0350 300.000
+ 19 1.5000 0.0000 1.5000 -6.7000 59.874 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5560 76.6182 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 2.5201 5.0000 11.7000 299.2390 298.1890 299.7500 296.0760 300.000
+ 20 1.5000 0.0000 1.5000 -6.6000 59.835 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 299.2440 298.1910 300.3050 296.0560 300.000
+ 21 1.5000 0.0000 1.5000 -6.5000 59.434 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3283 77.2760 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5201 5.0000 11.5000 299.2610 298.1990 300.5240 296.1020 300.000
+ 22 1.5000 0.0000 1.5000 -6.4000 59.876 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 299.2650 298.2000 300.2970 296.1020 300.000
+ 23 1.5000 0.0000 1.5000 -6.3000 59.857 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1053 77.9426 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5201 5.0000 11.3000 299.2580 298.1990 299.9590 296.0130 300.000
+ 24 1.5000 0.0000 1.5000 -6.2000 59.548 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 299.2420 298.1930 299.7160 296.0610 300.000
+ 25 1.5000 0.0000 1.5000 -6.1000 59.611 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8872 78.6184 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5201 5.0000 11.1000 299.2270 298.1870 299.8190 295.9980 300.000
+ 26 1.5000 0.0000 1.5000 -6.0000 59.178 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 299.2420 298.1920 300.4670 295.9750 300.000
+ 27 1.5000 0.0000 1.5000 -5.9000 59.397 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6744 79.3040 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5201 5.0000 10.9000 299.2600 298.1990 300.5600 295.9740 300.000
+ 28 1.5000 0.0000 1.5000 -5.8000 59.490 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 299.2640 298.2020 300.2970 296.0080 300.000
+ 29 1.5000 0.0000 1.5000 -5.7000 59.671 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4670 79.9997 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5201 5.0000 10.7000 299.2540 298.2010 299.9510 295.9950 300.000
+ 30 1.5000 0.0000 1.5000 -5.6000 59.574 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 299.2350 298.1950 299.6950 296.0040 300.000
+ 31 1.5000 0.0000 1.5000 -5.5000 59.509 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2653 80.7062 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5201 5.0000 10.5000 299.2210 298.1900 299.8550 295.9960 300.000
+# Sum of Counts = 633
+# Center of Mass = -6.927802+/-0.390286
+# Full Width Half-Maximum = 1.313844+/-0.127952
+# 3:28:28 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0078.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0078.dat
new file mode 100644
index 0000000..3259f0e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0078.dat
@@ -0,0 +1,35 @@
+# scan = 78
+# date = 10/25/2011
+# time = 3:28:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1695 0.0000 2.1055 -3.2993 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1950 74.1394 -2.7386 0.5000 0.0000 0.0000 150.1396 -55.7950 2.1723 5.0000 8.2993 299.2340 298.1970 300.5240 296.0970 300.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 3:28:37 PM 10/25/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0079.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0079.dat
new file mode 100644
index 0000000..f76eed9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0079.dat
@@ -0,0 +1,35 @@
+# scan = 79
+# date = 10/25/2011
+# time = 3:28:37 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1536 0.0000 2.1959 -3.9588 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.8591 71.9399 -2.7386 0.5000 0.0000 0.0000 151.9268 -53.5310 2.1757 5.0000 8.9588 299.2370 298.2000 300.5430 296.0920 300.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 3:28:41 PM 10/25/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0080.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0080.dat
new file mode 100644
index 0000000..4dbea82
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0080.dat
@@ -0,0 +1,41 @@
+# scan = 80
+# date = 10/25/2011
+# time = 3:33:54 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -10 -8.5 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 1 e -10 -8.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for TO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -10.0000 59.611 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.6801 5.0000 15.0000 299.2250 298.2010 300.4400 296.0200 300.000
+ 2 1.0000 0.0000 1.0000 -9.7500 59.690 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.6801 5.0000 14.7500 299.2410 298.2080 300.5330 295.9550 300.000
+ 3 1.0000 0.0000 1.0000 -9.5000 59.367 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 299.2470 298.2100 300.2680 295.9230 300.000
+ 4 1.0000 0.0000 1.0000 -9.2500 59.746 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.6801 5.0000 14.2500 299.2400 298.2100 299.9100 295.9070 300.000
+ 5 1.0000 0.0000 1.0000 -9.0000 59.633 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.6801 5.0000 14.0000 299.2190 298.2030 299.6660 295.9880 300.000
+ 6 1.0000 0.0000 1.0000 -8.7500 59.534 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 299.2090 298.1970 299.9280 295.9610 300.000
+ 7 1.0000 0.0000 1.0000 -8.5000 59.218 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 299.2340 298.2030 300.5230 295.9600 300.000
+# Sum of Counts = 187
+# Center of Mass = -9.224599+/-0.954543
+# Full Width Half-Maximum = 0.891935+/-0.662010
+# 3:41:41 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0081.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0081.dat
new file mode 100644
index 0000000..520ab5f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0081.dat
@@ -0,0 +1,44 @@
+# scan = 81
+# date = 10/25/2011
+# time = 3:45:37 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -10.375 -8.0 0.25 preset mcu 2.0
+# builtin_command = scan h 1 k 0 l 1 e -10.375 -8.0 0.25 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for TO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -10.3750 119.698 30.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.3520 34.0670 -2.7386 0.5000 0.0000 0.0000 159.8938 -40.2125 1.6801 5.0000 15.3750 299.2130 298.2060 299.9520 295.8340 300.000
+ 2 1.0000 0.0000 1.0000 -10.1250 119.337 30.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.8020 34.8324 -2.7386 0.5000 0.0000 0.0000 159.7209 -40.5579 1.6801 5.0000 15.1250 299.2430 298.2170 300.5030 295.8900 300.000
+ 3 1.0000 0.0000 1.0000 -9.8750 119.571 33.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.2364 35.5901 -2.7386 0.5000 0.0000 0.0000 159.5438 -40.9124 1.6801 5.0000 14.8750 299.2390 298.2170 299.8650 295.8510 300.000
+ 4 1.0000 0.0000 1.0000 -9.6250 119.416 39.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 53.6564 36.3410 -2.7386 0.5000 0.0000 0.0000 159.3618 -41.2764 1.6801 5.0000 14.6250 299.2110 298.2050 299.9860 295.8870 300.000
+ 5 1.0000 0.0000 1.0000 -9.3750 119.620 38.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.0634 37.0856 -2.7386 0.5000 0.0000 0.0000 159.1748 -41.6504 1.6801 5.0000 14.3750 299.2460 298.2180 300.4990 295.9610 300.000
+ 6 1.0000 0.0000 1.0000 -9.1250 119.616 46.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 56.4587 37.8248 -2.7386 0.5000 0.0000 0.0000 158.9826 -42.0346 1.6801 5.0000 14.1250 299.2320 298.2160 299.8620 295.9690 300.000
+ 7 1.0000 0.0000 1.0000 -8.8750 120.073 55.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.8432 38.5590 -2.7386 0.5000 0.0000 0.0000 158.7851 -42.4298 1.6801 5.0000 13.8750 299.2130 298.2090 300.0270 295.9150 300.000
+ 8 1.0000 0.0000 1.0000 -8.6250 119.313 50.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.2180 39.2889 -2.7386 0.5000 0.0000 0.0000 158.5818 -42.8363 1.6801 5.0000 13.6250 299.2480 298.2220 300.5010 296.0310 300.000
+ 9 1.0000 0.0000 1.0000 -8.3750 119.511 36.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 60.5841 40.0149 -2.7386 0.5000 0.0000 0.0000 158.3726 -43.2547 1.6801 5.0000 13.3750 299.2380 298.2180 299.8810 295.9660 300.000
+ 10 1.0000 0.0000 1.0000 -8.1250 118.684 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.9424 40.7376 -2.7386 0.5000 0.0000 0.0000 158.1571 -43.6857 1.6801 5.0000 13.1250 299.2180 298.2110 300.0390 295.9800 300.000
+# Sum of Counts = 371
+# Center of Mass = -9.236860+/-0.679011
+# Full Width Half-Maximum = 1.284818+/-0.412512
+# 4:06:04 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0082.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0082.dat
new file mode 100644
index 0000000..011954b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0082.dat
@@ -0,0 +1,39 @@
+# scan = 82
+# date = 10/25/2011
+# time = 4:17:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -7.875 -6.875 0.25 preset mcu 2.0
+# builtin_command = scan h 1 k 0 l 1 e -7.875 -6.875 0.25 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for TO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -7.8750 119.451 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.2938 41.4574 -2.7386 0.5000 0.0000 0.0000 157.9350 -44.1299 1.6801 5.0000 12.8750 299.2380 298.2230 300.4890 295.9210 300.000
+ 2 1.0000 0.0000 1.0000 -7.6250 119.466 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6392 42.1748 -2.7386 0.5000 0.0000 0.0000 157.7061 -44.5879 1.6801 5.0000 12.6250 299.2350 298.2260 299.8460 295.8660 300.000
+ 3 1.0000 0.0000 1.0000 -7.3750 119.805 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.9794 42.8904 -2.7386 0.5000 0.0000 0.0000 157.4698 -45.0605 1.6801 5.0000 12.3750 299.2160 298.2190 300.1240 295.8840 300.000
+ 4 1.0000 0.0000 1.0000 -7.1250 119.811 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.3150 43.6045 -2.7386 0.5000 0.0000 0.0000 157.2258 -45.5485 1.6801 5.0000 12.1250 299.2340 298.2240 300.1950 295.9590 300.000
+ 5 1.0000 0.0000 1.0000 -6.8750 119.311 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 68.6470 44.3176 -2.7386 0.5000 0.0000 0.0000 156.9736 -46.0527 1.6801 5.0000 11.8750 299.2070 298.2170 299.6560 295.8940 300.000
+# Sum of Counts = 62
+# Center of Mass = -7.350806+/-1.321077
+# Full Width Half-Maximum = 0.738949+/-1.243769
+# 4:27:26 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0083.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0083.dat
new file mode 100644
index 0000000..e2d8d27
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0083.dat
@@ -0,0 +1,43 @@
+# scan = 83
+# date = 10/25/2011
+# time = 4:35:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -13.5 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 1 e -13.5 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for LO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -13.5000 59.505 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.0653 23.4158 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.6801 5.0000 18.5000 299.2500 298.2450 300.1440 295.8920 300.000
+ 2 1.0000 0.0000 1.0000 -13.2500 59.666 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.9098 24.3806 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.6801 5.0000 18.2500 299.2370 298.2400 299.8170 295.8160 300.000
+ 3 1.0000 0.0000 1.0000 -13.0000 59.812 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.7001 25.3177 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.6801 5.0000 18.0000 299.2320 298.2340 299.6220 295.6350 300.000
+ 4 1.0000 0.0000 1.0000 -12.7500 59.585 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4424 26.2302 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.6801 5.0000 17.7500 299.2790 298.2420 300.0130 295.1370 300.000
+ 5 1.0000 0.0000 1.0000 -12.5000 59.901 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6801 5.0000 17.5000 299.2540 298.2400 300.8300 295.8520 300.000
+ 6 1.0000 0.0000 1.0000 -12.2500 59.716 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0619 -37.8756 1.6801 5.0000 17.2500 299.2770 298.2550 300.7390 295.7780 300.000
+ 7 1.0000 0.0000 1.0000 -12.0000 59.952 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9178 -38.1638 1.6801 5.0000 17.0000 299.2800 298.2570 300.4120 295.9660 300.000
+ 8 1.0000 0.0000 1.0000 -11.7500 60.151 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 299.2750 298.2570 300.0370 295.8520 300.000
+ 9 1.0000 0.0000 1.0000 -11.5000 59.706 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 299.2570 298.2490 299.7320 295.9170 300.000
+# Sum of Counts = 45
+# Center of Mass = -12.361111+/-2.607615
+# Full Width Half-Maximum = 1.249691+/-1.858011
+# 4:44:57 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0084.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0084.dat
new file mode 100644
index 0000000..5451ae0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0084.dat
@@ -0,0 +1,57 @@
+# scan = 84
+# date = 10/25/2011
+# time = 4:59:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 2 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 2 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for optical phonons at (2,0,2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 2.0000 0.0000 2.0000 -13.5000 59.369 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3142 89.6872 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 3.3601 5.0000 18.5000 299.3580 298.2890 300.1530 293.8900 300.000
+ 2 2.0000 0.0000 2.0000 -13.2500 60.077 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0614 90.4348 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 3.3601 5.0000 18.2500 299.2850 298.2720 300.3700 295.8400 300.000
+ 3 2.0000 0.0000 2.0000 -12.9999 60.005 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8138 91.1928 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0489 3.3601 5.0000 17.9999 299.2730 298.2680 300.0920 296.0240 300.000
+ 4 2.0000 0.0000 2.0000 -12.7500 59.308 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5717 91.9617 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 3.3601 5.0000 17.7500 299.2640 298.2670 299.7660 295.9730 300.000
+ 5 2.0000 0.0000 2.0000 -12.5000 59.424 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.3353 92.7420 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 3.3601 5.0000 17.5000 299.2480 298.2600 299.7440 295.9950 300.000
+ 6 2.0000 0.0000 2.0000 -12.2500 59.630 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1048 93.5342 -2.7386 0.5000 0.0000 0.0000 161.0621 -37.8756 3.3601 5.0000 17.2500 299.2610 298.2640 300.3440 296.0600 300.000
+ 7 2.0000 0.0000 2.0000 -12.0000 59.293 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8807 94.3388 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 3.3601 5.0000 17.0000 299.3120 298.2840 300.2500 294.7690 300.000
+ 8 2.0000 0.0000 2.0000 -11.7499 59.884 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.6631 95.1564 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4588 3.3601 5.0000 16.7499 299.3400 298.2810 300.1220 295.3590 300.000
+ 9 2.0000 0.0000 2.0000 -11.5000 59.661 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4524 95.9877 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 3.3601 5.0000 16.5000 299.2630 298.2680 299.9660 296.2230 300.000
+ 10 2.0000 0.0000 2.0000 -11.2500 59.779 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.2488 96.8334 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 3.3601 5.0000 16.2500 299.2470 298.2620 299.6820 296.0370 300.000
+ 11 2.0000 0.0000 2.0000 -11.0000 59.559 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.0529 97.6941 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 3.3601 5.0000 16.0000 299.2360 298.2590 299.8540 296.0240 300.000
+ 12 2.0000 0.0000 2.0000 -10.7500 59.848 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.8650 98.5706 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 3.3601 5.0000 15.7500 299.2560 298.2660 300.4750 296.0870 300.000
+ 13 2.0000 0.0000 2.0000 -10.5000 59.387 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.6854 99.4638 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0431 3.3601 5.0000 15.5000 299.2710 298.2740 300.5530 296.1720 300.000
+ 14 2.0000 0.0000 2.0000 -10.2500 59.598 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.5147 100.3745 -2.7386 0.5000 0.0000 0.0000 159.8078 -40.3841 3.3601 5.0000 15.2500 299.2770 298.2760 300.2440 296.1710 300.000
+ 15 2.0000 0.0000 2.0000 -10.0000 59.653 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.3532 101.3037 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 3.3601 5.0000 15.0000 299.2660 298.2730 299.9120 296.1120 300.000
+ 16 2.0000 0.0000 2.0000 -9.7500 59.774 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.2016 102.2524 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 3.3601 5.0000 14.7500 299.2450 298.2660 299.6720 296.1570 300.000
+ 17 2.0000 0.0000 2.0000 -9.5000 59.719 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.0602 103.2218 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 3.3601 5.0000 14.5000 299.2390 298.2650 299.9320 296.0930 300.000
+ 18 2.0000 0.0000 2.0000 -9.2500 59.537 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.9298 104.2130 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 3.3601 5.0000 14.2500 299.2680 298.2740 300.4820 296.0240 300.000
+ 19 2.0000 0.0000 2.0000 -9.0000 59.272 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.8110 105.2274 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 3.3601 5.0000 14.0000 299.3090 298.2800 300.3960 295.7140 300.000
+ 20 2.0000 0.0000 2.0000 -8.7500 59.556 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.7044 106.2664 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 3.3601 5.0000 13.7500 299.2660 298.2750 300.1830 296.1450 300.000
+ 21 2.0000 0.0000 2.0000 -8.5000 59.403 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.6108 107.3315 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 3.3601 5.0000 13.5000 299.2520 298.2700 299.8720 296.1850 300.000
+ 22 2.0000 0.0000 2.0000 -8.2500 59.692 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.5311 108.4244 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 3.3601 5.0000 13.2500 299.2380 298.2640 299.6700 296.0410 300.000
+ 23 2.0000 0.0000 2.0000 -8.0000 59.680 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.4660 109.5472 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 3.3601 5.0000 13.0000 299.2350 298.2620 300.0760 296.0640 300.000
+# Sum of Counts = 201
+# Center of Mass = -10.084571+/-1.011643
+# Full Width Half-Maximum = 3.040136+/-0.463754
+# 5:23:25 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0085.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0085.dat
new file mode 100644
index 0000000..32aea15
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0085.dat
@@ -0,0 +1,57 @@
+# scan = 85
+# date = 10/25/2011
+# time = 5:23:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 4 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 4 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at Gamma (104)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 4.0000 -13.5000 59.698 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.9771 62.2765 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.6500 5.0000 18.5000 299.2780 298.2870 300.4090 295.6050 300.000
+ 2 1.0000 0.0000 4.0000 -13.2500 59.611 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 43.8187 62.9161 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.6500 5.0000 18.2500 299.2640 298.2860 300.2050 295.9380 300.000
+ 3 1.0000 0.0000 4.0000 -13.0000 59.711 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.6613 63.5594 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.6500 5.0000 18.0000 299.2570 298.2850 299.8690 295.8610 300.000
+ 4 1.0000 0.0000 4.0000 -12.7500 59.949 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.5050 64.2067 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.6500 5.0000 17.7500 299.2370 298.2790 299.6570 295.9930 300.000
+ 5 1.0000 0.0000 4.0000 -12.5000 59.866 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 46.3501 64.8582 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.6500 5.0000 17.5000 299.2330 298.2750 300.0110 295.9380 300.000
+ 6 1.0000 0.0000 4.0000 -12.2500 59.654 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1967 65.5142 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.6500 5.0000 17.2500 299.2830 298.2930 300.2800 294.8030 300.000
+ 7 1.0000 0.0000 4.0000 -12.0000 59.835 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.0449 66.1749 -2.7386 0.5000 0.0000 0.0000 160.9180 -38.1638 2.6500 5.0000 17.0000 299.3390 298.3010 300.1580 294.6270 300.000
+ 8 1.0000 0.0000 4.0000 -11.7500 59.694 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.8951 66.8406 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.6500 5.0000 16.7500 299.3160 298.2930 299.9940 295.5370 300.000
+ 9 1.0000 0.0000 4.0000 -11.5000 59.819 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.7474 67.5116 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.6500 5.0000 16.5000 299.2540 298.2830 299.8440 295.8970 300.000
+ 10 1.0000 0.0000 4.0000 -11.2500 60.197 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.6020 68.1881 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 2.6500 5.0000 16.2500 299.2400 298.2760 299.7550 295.9410 300.000
+ 11 1.0000 0.0000 4.0000 -11.0000 60.049 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.4591 68.8705 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.6500 5.0000 16.0000 299.2320 298.2740 300.0990 296.0160 300.000
+ 12 1.0000 0.0000 4.0000 -10.7500 60.000 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.3190 69.5591 -2.7386 0.5000 0.0000 0.0000 160.1446 -39.7105 2.6500 5.0000 15.7500 299.2530 298.2780 300.3610 295.9190 300.000
+ 13 1.0000 0.0000 4.0000 -10.5000 59.813 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 53.1818 70.2543 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.6500 5.0000 15.5000 299.2560 298.2830 300.2110 295.8900 300.000
+ 14 1.0000 0.0000 4.0000 -10.2500 59.815 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.0478 70.9563 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.6500 5.0000 15.2500 299.2510 298.2790 299.9300 295.9390 300.000
+ 15 1.0000 0.0000 4.0000 -9.9999 59.544 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.9172 71.6655 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7342 2.6500 5.0000 14.9999 299.2380 298.2750 299.6590 295.8180 300.000
+ 16 1.0000 0.0000 4.0000 -9.7500 59.805 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7903 72.3824 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.6500 5.0000 14.7500 299.2290 298.2690 299.8920 295.8700 300.000
+ 17 1.0000 0.0000 4.0000 -9.5000 59.678 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 56.6673 73.1073 -2.7386 0.5000 0.0000 0.0000 159.2689 -41.4622 2.6500 5.0000 14.5000 299.2830 298.2900 300.2390 294.6300 300.000
+ 18 1.0000 0.0000 4.0000 -9.2500 60.024 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.5485 73.8407 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.6500 5.0000 14.2500 299.3280 298.2920 300.3010 294.9630 300.000
+ 19 1.0000 0.0000 4.0000 -9.0000 59.792 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.4342 74.5830 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.6500 5.0000 14.0000 299.2820 298.2910 300.0740 295.3050 300.000
+ 20 1.0000 0.0000 4.0000 -8.7500 59.416 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.3246 75.3346 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 2.6500 5.0000 13.7500 299.2970 298.2880 299.8690 295.5790 300.000
+ 21 1.0000 0.0000 4.0000 -8.5000 59.789 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 60.2200 76.0962 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.6500 5.0000 13.5000 299.2560 298.2850 299.9450 295.8890 300.000
+ 22 1.0000 0.0000 4.0000 -8.2500 59.682 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.1207 76.8682 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 2.6500 5.0000 13.2500 299.2490 298.2830 299.9940 295.9920 300.000
+ 23 1.0000 0.0000 4.0000 -8.0000 59.827 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.0272 77.6513 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.6500 5.0000 13.0000 299.2360 298.2760 300.0090 296.0690 300.000
+# Sum of Counts = 196
+# Center of Mass = -10.348210+/-1.051580
+# Full Width Half-Maximum = 3.206093+/-0.484680
+# 5:48:07 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0086.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0086.dat
new file mode 100644
index 0000000..349c297
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0086.dat
@@ -0,0 +1,57 @@
+# scan = 86
+# date = 10/25/2011
+# time = 5:48:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at Gamma (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -13.5000 60.109 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.6520 18.1502 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.5874 5.0000 18.5000 299.2230 298.2780 299.9550 296.0890 300.000
+ 2 0.0000 0.0000 3.0000 -13.2500 59.859 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.3260 19.3272 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.5874 5.0000 18.2500 299.2230 298.2800 300.0990 295.9510 300.000
+ 3 0.0000 0.0000 3.0000 -13.0000 59.855 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.1143 20.4466 -2.7386 0.5000 0.0000 0.0000 161.4754 -37.0488 1.5874 5.0000 18.0000 299.2300 298.2820 300.1140 295.8790 300.000
+ 4 0.0000 0.0000 3.0000 -12.7500 59.923 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.9986 21.5176 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.5874 5.0000 17.7500 299.2300 298.2800 299.9110 295.8140 300.000
+ 5 0.0000 0.0000 3.0000 -12.5000 60.015 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9648 22.5473 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.5874 5.0000 17.5000 299.2180 298.2760 299.7860 295.8540 300.000
+ 6 0.0000 0.0000 3.0000 -12.2500 59.770 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.0018 23.5413 -2.7386 0.5000 0.0000 0.0000 161.0620 -37.8756 1.5874 5.0000 17.2500 299.2150 298.2770 300.1020 295.8670 300.000
+ 7 0.0000 0.0000 3.0000 -12.0000 59.578 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.1005 24.5042 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.5874 5.0000 17.0000 299.2340 298.2820 300.3440 295.9550 300.000
+ 8 0.0000 0.0000 3.0000 -11.7500 59.635 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.2536 25.4398 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.5874 5.0000 16.7500 299.2440 298.2850 300.1590 295.8340 300.000
+ 9 0.0000 0.0000 3.0000 -11.5000 60.005 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4549 26.3512 -2.7386 0.5000 0.0000 0.0000 160.6197 -38.7605 1.5874 5.0000 16.5000 299.2370 298.2800 299.8930 295.8940 300.000
+ 10 0.0000 0.0000 3.0000 -11.2500 59.899 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.6992 27.2410 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.5874 5.0000 16.2500 299.2220 298.2740 299.6660 295.8450 300.000
+ 11 0.0000 0.0000 3.0000 -11.0000 59.682 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.9819 28.1114 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.5874 5.0000 16.0000 299.2130 298.2690 299.9760 295.8530 300.000
+ 12 0.0000 0.0000 3.0000 -10.7500 59.947 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.2992 28.9645 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.5874 5.0000 15.7500 299.2270 298.2780 300.5280 295.9640 300.000
+ 13 0.0000 0.0000 3.0000 -10.5000 59.800 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.6477 29.8020 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 1.5874 5.0000 15.5000 299.2420 298.2860 300.4820 296.0010 300.000
+ 14 0.0000 0.0000 3.0000 -10.2500 60.218 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.0244 30.6253 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.5874 5.0000 15.2500 299.2410 298.2860 300.1700 296.0960 300.000
+ 15 0.0000 0.0000 3.0000 -10.0000 60.045 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4268 31.4358 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.5874 5.0000 15.0000 299.2240 298.2840 299.8300 296.0900 300.000
+ 16 0.0000 0.0000 3.0000 -9.7500 60.020 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.8524 32.2348 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.5874 5.0000 14.7500 299.2110 298.2790 299.6810 295.9710 300.000
+ 17 0.0000 0.0000 3.0000 -9.5000 59.801 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.2990 33.0232 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.5874 5.0000 14.5000 299.2150 298.2770 300.1290 295.9470 300.000
+ 18 0.0000 0.0000 3.0000 -9.2500 59.900 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7649 33.8021 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.5874 5.0000 14.2500 299.2400 298.2840 300.5580 295.9100 300.000
+ 19 0.0000 0.0000 3.0000 -9.0000 59.687 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2482 34.5724 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.5874 5.0000 14.0000 299.2500 298.2910 300.4110 295.9550 300.000
+ 20 0.0000 0.0000 3.0000 -8.7500 60.010 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7473 35.3348 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.5874 5.0000 13.7500 299.2480 298.2910 300.0960 295.9600 300.000
+ 21 0.0000 0.0000 3.0000 -8.4999 60.190 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2607 36.0902 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0441 1.5874 5.0000 13.4999 299.2390 298.2880 299.7670 295.8820 300.000
+ 22 0.0000 0.0000 3.0000 -8.2500 60.039 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7871 36.8392 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.5874 5.0000 13.2500 299.2260 298.2830 299.7020 295.7990 300.000
+ 23 0.0000 0.0000 3.0000 -8.0000 59.756 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3252 37.5825 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5874 5.0000 13.0000 299.2270 298.2850 300.3040 295.9600 300.000
+# Sum of Counts = 182
+# Center of Mass = -11.443678+/-1.205214
+# Full Width Half-Maximum = 3.128612+/-0.563116
+# 6:13:04 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0087.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0087.dat
new file mode 100644
index 0000000..934c417
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0087.dat
@@ -0,0 +1,57 @@
+# scan = 87
+# date = 10/25/2011
+# time = 6:13:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h -1 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at Gamma (-102)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.0000 -13.5000 59.739 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -82.6472 34.1922 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.9138 5.0000 18.5000 299.2580 298.2910 300.4410 295.9150 300.000
+ 2 -1.0000 0.0000 2.0000 -13.2500 59.790 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -81.3303 34.9434 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.9138 5.0000 18.2500 299.2630 298.2930 300.1100 295.9710 300.000
+ 3 -1.0000 0.0000 2.0000 -13.0000 59.840 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -80.0289 35.6872 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.9138 5.0000 18.0000 299.2500 298.2880 299.8020 295.9240 300.000
+ 4 -1.0000 0.0000 2.0000 -12.7500 59.755 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -78.7417 36.4240 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.9138 5.0000 17.7500 299.2340 298.2820 299.6640 295.8920 300.000
+ 5 -1.0000 0.0000 2.0000 -12.5000 59.974 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -77.4677 37.1545 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.9138 5.0000 17.5000 299.2470 298.2860 300.1670 295.8010 300.000
+ 6 -1.0000 0.0000 2.0000 -12.2500 59.917 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -76.2060 37.8794 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.9138 5.0000 17.2500 299.2590 298.2910 300.6040 295.9170 300.000
+ 7 -1.0000 0.0000 2.0000 -12.0000 60.065 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -74.9555 38.5992 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.9138 5.0000 17.0000 299.2690 298.2950 300.4420 295.9850 300.000
+ 8 -1.0000 0.0000 2.0000 -11.7500 60.118 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -73.7154 39.3144 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.9138 5.0000 16.7500 299.2660 298.3000 300.0800 295.9390 300.000
+ 9 -1.0000 0.0000 2.0000 -11.5000 59.907 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -72.4848 40.0255 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.9138 5.0000 16.5000 299.2500 298.2940 299.8090 295.9440 300.000
+ 10 -1.0000 0.0000 2.0000 -11.2500 59.915 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -71.2630 40.7330 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 1.9138 5.0000 16.2500 299.2400 298.2880 299.6720 295.7580 300.000
+ 11 -1.0000 0.0000 2.0000 -11.0000 60.049 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -70.0493 41.4373 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.9138 5.0000 16.0000 299.2500 298.2940 300.2580 295.7580 300.000
+ 12 -1.0000 0.0000 2.0000 -10.7500 60.128 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -68.8429 42.1389 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.9138 5.0000 15.7500 299.2660 298.3000 300.5490 295.8370 300.000
+ 13 -1.0000 0.0000 2.0000 -10.5000 60.107 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -67.6432 42.8381 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 1.9138 5.0000 15.5000 299.2730 298.3060 300.3420 295.9710 300.000
+ 14 -1.0000 0.0000 2.0000 -10.2500 60.177 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -66.4497 43.5354 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.9138 5.0000 15.2500 299.2680 298.3050 300.0130 295.9970 300.000
+ 15 -1.0000 0.0000 2.0000 -10.0000 60.193 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -65.2616 44.2312 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.9138 5.0000 15.0000 299.2520 298.2990 299.7090 295.9700 300.000
+ 16 -1.0000 0.0000 2.0000 -9.7500 60.226 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -64.0784 44.9258 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.9138 5.0000 14.7500 299.2350 298.2910 299.7840 295.9750 300.000
+ 17 -1.0000 0.0000 2.0000 -9.5000 60.108 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -62.8995 45.6196 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.9138 5.0000 14.5000 299.2530 298.2980 300.4150 296.0240 300.000
+ 18 -1.0000 0.0000 2.0000 -9.2499 60.232 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -61.7244 46.3129 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8413 1.9138 5.0000 14.2499 299.2720 298.3070 300.5240 296.0760 300.000
+ 19 -1.0000 0.0000 2.0000 -8.9999 60.116 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -60.5526 47.0062 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2309 1.9138 5.0000 13.9999 299.2830 298.3100 300.2610 296.0010 300.000
+ 20 -1.0000 0.0000 2.0000 -8.7500 59.843 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -59.3836 47.6998 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.9138 5.0000 13.7500 299.2720 298.3050 299.9470 295.9930 300.000
+ 21 -1.0000 0.0000 2.0000 -8.5000 59.878 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -58.2168 48.3941 -2.7386 0.5000 0.0000 0.0000 158.4778 -43.0440 1.9138 5.0000 13.5000 299.2550 298.2960 299.6710 296.0190 300.000
+ 22 -1.0000 0.0000 2.0000 -8.2500 59.808 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -57.0518 49.0894 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.9138 5.0000 13.2500 299.2450 298.2890 299.9340 295.9890 300.000
+ 23 -1.0000 0.0000 2.0000 -8.0000 60.142 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.8880 49.7861 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9062 1.9138 5.0000 13.0000 299.2660 298.2950 300.4990 295.9190 300.000
+# Sum of Counts = 93
+# Center of Mass = -10.618271+/-1.568447
+# Full Width Half-Maximum = 3.626079+/-0.825062
+# 6:37:36 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0088.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0088.dat
new file mode 100644
index 0000000..72b36af
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0088.dat
@@ -0,0 +1,57 @@
+# scan = 88
+# date = 10/25/2011
+# time = 6:37:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at L (1.5,0,1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -13.5000 59.715 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.8899 57.4818 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.5201 5.0000 18.5000 299.2810 298.3030 300.1860 295.9820 300.000
+ 2 1.5000 0.0000 1.5000 -13.2500 59.942 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.7729 58.1194 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7851 2.5201 5.0000 18.2499 299.2670 298.3010 299.8620 296.0360 300.000
+ 3 1.5000 0.0000 1.5000 -13.0000 60.043 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.6558 58.7596 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.5201 5.0000 18.0000 299.2500 298.2980 299.6550 296.0150 300.000
+ 4 1.5000 0.0000 1.5000 -12.7500 59.844 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.5389 59.4026 -2.7386 0.5000 0.0000 0.0000 161.3407 -37.3184 2.5201 5.0000 17.7500 299.2530 298.2970 300.0800 295.9750 300.000
+ 5 1.5000 0.0000 1.5000 -12.4999 59.792 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 76.4223 60.0489 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.5201 5.0000 17.4999 299.2700 298.3010 300.6170 296.0290 300.000
+ 6 1.5000 0.0000 1.5000 -12.2500 59.648 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.3063 60.6984 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.5201 5.0000 17.2500 299.2840 298.3070 300.4980 296.0600 300.000
+ 7 1.5000 0.0000 1.5000 -12.0000 59.846 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.1910 61.3516 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.5201 5.0000 17.0000 299.2830 298.3080 300.1640 296.1190 300.000
+ 8 1.5000 0.0000 1.5000 -11.7500 60.256 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.0767 62.0086 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.5201 5.0000 16.7500 299.2720 298.3060 299.8360 296.0580 300.000
+ 9 1.5000 0.0000 1.5000 -11.5000 60.024 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.9636 62.6697 -2.7386 0.5000 0.0000 0.0000 160.6197 -38.7605 2.5201 5.0000 16.5000 299.2590 298.2990 299.6820 296.0180 300.000
+ 10 1.5000 0.0000 1.5000 -11.2500 59.948 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.8520 63.3352 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.5201 5.0000 16.2500 299.2590 298.2980 300.1150 296.0210 300.000
+ 11 1.5000 0.0000 1.5000 -11.0000 59.763 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.7419 64.0054 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.5201 5.0000 16.0000 299.2820 298.3070 300.5660 296.0980 300.000
+ 12 1.5000 0.0000 1.5000 -10.7500 60.135 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.6338 64.6804 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.5201 5.0000 15.7500 299.2930 298.3110 300.4440 296.1500 300.000
+ 13 1.5000 0.0000 1.5000 -10.5000 59.811 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.5277 65.3608 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.5201 5.0000 15.5000 299.2950 298.3130 300.1060 296.0900 300.000
+ 14 1.5000 0.0000 1.5000 -10.2500 59.925 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.4239 66.0468 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.5201 5.0000 15.2500 299.2890 298.3110 299.7810 296.0370 300.000
+ 15 1.5000 0.0000 1.5000 -10.0000 59.895 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.3227 66.7386 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.5201 5.0000 15.0000 299.2700 298.3020 299.6850 296.0110 300.000
+ 16 1.5000 0.0000 1.5000 -9.7500 60.048 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.2243 67.4367 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.5201 5.0000 14.7500 299.2930 298.3080 300.1690 295.6340 300.000
+ 17 1.5000 0.0000 1.5000 -9.5000 59.960 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.1290 68.1414 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.5201 5.0000 14.5000 299.3310 298.3240 300.3900 295.1380 300.000
+ 18 1.5000 0.0000 1.5000 -9.2500 59.900 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0370 68.8532 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.5201 5.0000 14.2500 299.3070 298.3140 300.3990 296.1270 300.000
+ 19 1.5000 0.0000 1.5000 -9.0000 60.113 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.9486 69.5722 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.5201 5.0000 14.0000 299.2970 298.3120 300.0750 296.1100 300.000
+ 20 1.5000 0.0000 1.5000 -8.7500 60.170 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.8640 70.2992 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 2.5201 5.0000 13.7500 299.2840 298.3080 299.7650 296.1560 300.000
+ 21 1.5000 0.0000 1.5000 -8.5000 60.162 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 299.2630 298.2990 299.7200 296.1630 300.000
+ 22 1.5000 0.0000 1.5000 -8.2500 59.881 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.7076 71.7782 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 2.5201 5.0000 13.2500 299.2740 298.3020 300.3600 296.1240 300.000
+ 23 1.5000 0.0000 1.5000 -8.0000 59.967 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 299.2990 298.3110 300.5820 296.0960 300.000
+# Sum of Counts = 312
+# Center of Mass = -11.270829+/-0.907555
+# Full Width Half-Maximum = 3.416093+/-0.435519
+# 7:02:35 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0089.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0089.dat
new file mode 100644
index 0000000..0ea134f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0089.dat
@@ -0,0 +1,57 @@
+# scan = 89
+# date = 10/25/2011
+# time = 7:02:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.5 k 0 l 3.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 0.5 k 0 l 3.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at L (0.5,0,3.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.5000 0.0000 3.5000 -13.5000 59.960 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.7238 38.3958 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.0163 5.0000 18.5000 299.3040 298.3230 300.1010 296.0070 300.000
+ 2 0.5000 0.0000 3.5000 -13.2500 60.261 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.9176 39.1039 -2.7386 0.5000 0.0000 0.0000 161.6074 -36.7850 2.0163 5.0000 18.2500 299.2900 298.3180 299.7710 295.9190 300.000
+ 3 0.5000 0.0000 3.5000 -13.0000 60.154 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.1014 39.8076 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.0163 5.0000 18.0000 299.2790 298.3150 299.6770 295.8360 300.000
+ 4 0.5000 0.0000 3.5000 -12.7500 60.411 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 6.2762 40.5076 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.0163 5.0000 17.7500 299.2920 298.3140 300.2820 295.9470 300.000
+ 5 0.5000 0.0000 3.5000 -12.5000 60.469 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 7.4425 41.2040 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.0163 5.0000 17.5000 299.3040 298.3180 300.6200 296.0660 300.000
+ 6 0.5000 0.0000 3.5000 -12.2500 60.377 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 8.6010 41.8974 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.0163 5.0000 17.2500 299.3150 298.3230 300.4130 296.0610 300.000
+ 7 0.5000 0.0000 3.5000 -12.0000 60.495 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 9.7523 42.5882 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.0163 5.0000 17.0000 299.3090 298.3220 300.0720 295.9510 300.000
+ 8 0.5000 0.0000 3.5000 -11.7500 60.184 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 10.8970 43.2767 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.0163 5.0000 16.7500 299.2930 298.3170 299.7600 295.9430 300.000
+ 9 0.5000 0.0000 3.5000 -11.5000 59.836 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.0357 43.9633 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.0163 5.0000 16.5000 299.2780 298.3070 299.7190 295.9540 300.000
+ 10 0.5000 0.0000 3.5000 -11.2500 60.909 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.1689 44.6484 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.0163 5.0000 16.2500 299.2830 298.3080 300.3010 295.9620 300.000
+ 11 0.5000 0.0000 3.5000 -11.0000 60.248 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.2971 45.3323 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.0163 5.0000 16.0000 299.3020 298.3160 300.5290 295.9710 300.000
+ 12 0.5000 0.0000 3.5000 -10.7500 60.394 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.4208 46.0154 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.0163 5.0000 15.7500 299.3130 298.3190 300.2910 295.9980 300.000
+ 13 0.5000 0.0000 3.5000 -10.5000 60.558 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.5406 46.6980 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.0163 5.0000 15.5000 299.3020 298.3180 299.9680 296.0430 300.000
+ 14 0.5000 0.0000 3.5000 -10.2500 60.478 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.6568 47.3804 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.0163 5.0000 15.2500 299.2840 298.3110 299.6900 296.0640 300.000
+ 15 0.5000 0.0000 3.5000 -10.0000 60.256 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.7699 48.0630 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7341 2.0163 5.0000 15.0000 299.2780 298.3060 299.8270 296.0450 300.000
+ 16 0.5000 0.0000 3.5000 -9.7500 60.369 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.8804 48.7460 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.0163 5.0000 14.7500 299.2930 298.3080 300.4860 295.9950 300.000
+ 17 0.5000 0.0000 3.5000 -9.5000 60.615 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.9887 49.4299 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.0163 5.0000 14.5000 299.3140 298.3160 300.5630 296.0980 300.000
+ 18 0.5000 0.0000 3.5000 -9.2500 60.395 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.0952 50.1150 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.0163 5.0000 14.2500 299.3240 298.3190 300.2620 296.0340 300.000
+ 19 0.5000 0.0000 3.5000 -9.0000 60.199 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.2003 50.8015 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.0163 5.0000 14.0000 299.3130 298.3170 299.9150 295.9300 300.000
+ 20 0.5000 0.0000 3.5000 -8.7500 60.341 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.3045 51.4899 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 2.0163 5.0000 13.7500 299.2950 298.3100 299.6670 295.9260 300.000
+ 21 0.5000 0.0000 3.5000 -8.5000 60.362 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.4082 52.1804 -2.7386 0.5000 0.0000 0.0000 158.4779 -43.0440 2.0163 5.0000 13.5000 299.2870 298.3080 299.9480 295.8970 300.000
+ 22 0.5000 0.0000 3.5000 -8.2500 60.113 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.5117 52.8734 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 2.0163 5.0000 13.2500 299.3110 298.3120 300.5530 296.1010 300.000
+ 23 0.5000 0.0000 3.5000 -8.0000 60.108 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6155 53.5694 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.0163 5.0000 13.0000 299.3260 298.3180 300.5080 296.0690 300.000
+# Sum of Counts = 216
+# Center of Mass = -11.398148+/-1.103066
+# Full Width Half-Maximum = 3.454424+/-0.549056
+# 7:27:24 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0090.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0090.dat
new file mode 100644
index 0000000..c62165f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0090.dat
@@ -0,0 +1,57 @@
+# scan = 90
+# date = 10/25/2011
+# time = 7:27:25 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h -0.5 k 0 l 2.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at L (-0.5,0,2.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -13.5000 60.390 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -88.0059 15.2656 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.5445 5.0000 18.5000 299.3240 298.3200 299.8700 295.9540 300.000
+ 2 -0.5000 0.0000 2.5000 -13.2500 60.259 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -85.2857 16.6216 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.5445 5.0000 18.2500 299.3040 298.3080 299.6620 295.8870 300.000
+ 3 -0.5000 0.0000 2.5000 -13.0000 60.073 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -82.7491 17.8859 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.5446 5.0000 18.0000 299.2970 298.3070 300.0300 295.9660 300.000
+ 4 -0.5000 0.0000 2.5000 -12.7500 60.720 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -80.3592 19.0770 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.5446 5.0000 17.7500 299.3130 298.3110 300.5800 296.0180 300.000
+ 5 -0.5000 0.0000 2.5000 -12.5000 60.707 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -78.0896 20.2082 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.5445 5.0000 17.5000 299.3260 298.3210 300.4720 296.0570 300.000
+ 6 -0.5000 0.0000 2.5000 -12.2500 60.035 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -75.9206 21.2892 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.5445 5.0000 17.2500 299.3250 298.3230 300.1430 295.9400 300.000
+ 7 -0.5000 0.0000 2.5000 -12.0000 60.186 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -73.8371 22.3274 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.5446 5.0000 17.0000 299.3130 298.3180 299.8160 295.9230 300.000
+ 8 -0.5000 0.0000 2.5000 -11.7500 60.518 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -71.8274 23.3289 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.5445 5.0000 16.7500 299.2950 298.3100 299.6800 295.8680 300.000
+ 9 -0.5000 0.0000 2.5000 -11.5000 60.407 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -69.8818 24.2984 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.5445 5.0000 16.5000 299.3020 298.3120 300.1990 295.8030 300.000
+ 10 -0.5000 0.0000 2.5000 -11.2500 60.376 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -67.9926 25.2398 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.5445 5.0000 16.2500 299.3310 298.3160 300.5960 295.8020 300.000
+ 11 -0.5000 0.0000 2.5000 -11.0000 60.610 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -66.1531 26.1562 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.5445 5.0000 16.0000 299.3450 298.3190 300.4100 295.9500 300.000
+ 12 -0.5000 0.0000 2.5000 -10.7500 60.654 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -64.3580 27.0506 -2.7386 0.5000 0.0000 0.0000 160.1447 -39.7105 1.5445 5.0000 15.7500 299.3330 298.3140 300.0830 295.9930 300.000
+ 13 -0.5000 0.0000 2.5000 -10.5000 60.358 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -62.6024 27.9252 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0431 1.5445 5.0000 15.5000 299.3140 298.3070 299.7700 296.0280 300.000
+ 14 -0.5000 0.0000 2.5000 -10.2500 60.411 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -60.8824 28.7820 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.5445 5.0000 15.2500 299.2950 298.3000 299.7070 295.9450 300.000
+ 15 -0.5000 0.0000 2.5000 -10.0000 60.656 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -59.1944 29.6229 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.5445 5.0000 15.0000 299.3080 298.3040 300.3330 295.9250 300.000
+ 16 -0.5000 0.0000 2.5000 -9.7500 60.583 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -57.5352 30.4493 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.5445 5.0000 14.7500 299.3330 298.3120 300.5610 296.0330 300.000
+ 17 -0.5000 0.0000 2.5000 -9.5000 60.470 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.9022 31.2626 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.5445 5.0000 14.5000 299.3350 298.3130 300.3360 296.1060 300.000
+ 18 -0.5000 0.0000 2.5000 -9.2500 60.954 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -54.2928 32.0642 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.5446 5.0000 14.2500 299.3260 298.3090 299.9900 296.0710 300.000
+ 19 -0.5000 0.0000 2.5000 -9.0000 60.409 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.7049 32.8549 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.5445 5.0000 14.0000 299.3060 298.3050 299.7100 296.0520 300.000
+ 20 -0.5000 0.0000 2.5000 -8.7500 60.372 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.1364 33.6360 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.5445 5.0000 13.7500 299.2880 298.3020 299.8370 296.0310 300.000
+ 21 -0.5000 0.0000 2.5000 -8.5000 60.714 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5856 34.4082 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5445 5.0000 13.5000 299.3060 298.3070 300.4620 296.0100 300.000
+ 22 -0.5000 0.0000 2.5000 -8.2500 60.712 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.0506 35.1724 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.5445 5.0000 13.2500 299.3250 298.3110 300.5340 296.0380 300.000
+ 23 -0.5000 0.0000 2.5000 -8.0000 60.684 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 299.3260 298.3120 300.2480 296.0230 300.000
+# Sum of Counts = 165
+# Center of Mass = -11.236364+/-1.244261
+# Full Width Half-Maximum = 3.428603+/-0.633117
+# 7:52:33 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0091.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0091.dat
new file mode 100644
index 0000000..6dd95d6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0091.dat
@@ -0,0 +1,51 @@
+# scan = 91
+# date = 10/25/2011
+# time = 7:52:33 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -13.0 -9.0 0.25 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 0 e -13.0 -9.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at X (1.5,0,0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -13.0000 60.286 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1828 54.0250 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3918 5.0000 18.0000 299.3080 298.2970 299.6560 295.8880 300.000
+ 2 1.5000 0.0000 0.0000 -12.7500 60.733 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1152 54.6699 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3918 5.0000 17.7500 299.2990 298.2920 300.0500 295.9240 300.000
+ 3 1.5000 0.0000 0.0000 -12.4999 60.791 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.0466 55.3168 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.3918 5.0000 17.4999 299.3120 298.2980 300.5610 296.1160 300.000
+ 4 1.5000 0.0000 0.0000 -12.2499 60.155 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9774 55.9658 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.3918 5.0000 17.2499 299.3210 298.3030 300.4590 296.1610 300.000
+ 5 1.5000 0.0000 0.0000 -12.0000 60.314 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.9078 56.6172 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3918 5.0000 17.0000 299.3200 298.3040 300.1280 296.0930 300.000
+ 6 1.5000 0.0000 0.0000 -11.7500 60.394 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8381 57.2712 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3918 5.0000 16.7500 299.3050 298.3000 299.8140 296.1410 300.000
+ 7 1.5000 0.0000 0.0000 -11.5000 60.320 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7685 57.9282 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3918 5.0000 16.5000 299.2870 298.2910 299.6790 296.1170 300.000
+ 8 1.5000 0.0000 0.0000 -11.2500 60.616 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6992 58.5884 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 2.3918 5.0000 16.2500 299.2960 298.2910 300.2280 296.0920 300.000
+ 9 1.5000 0.0000 0.0000 -11.0000 60.209 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6306 59.2520 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3918 5.0000 16.0000 299.3140 298.2970 300.5960 296.1420 300.000
+ 10 1.5000 0.0000 0.0000 -10.7499 60.428 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5628 59.9193 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7106 2.3918 5.0000 15.7499 299.3240 298.3000 300.4010 296.1330 300.000
+ 11 1.5000 0.0000 0.0000 -10.5000 60.463 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4960 60.5907 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.3918 5.0000 15.5000 299.3220 298.2990 300.0540 296.1560 300.000
+ 12 1.5000 0.0000 0.0000 -10.2500 60.402 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4306 61.2663 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.3918 5.0000 15.2500 299.3060 298.2930 299.7400 296.1440 300.000
+ 13 1.5000 0.0000 0.0000 -10.0000 60.438 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3668 61.9466 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.3918 5.0000 15.0000 299.2890 298.2850 299.7410 296.1040 300.000
+ 14 1.5000 0.0000 0.0000 -9.7499 60.280 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3049 62.6317 -2.7386 0.5000 0.0000 0.0000 159.4533 -41.0933 2.3918 5.0000 14.7499 299.3020 298.2870 300.4000 296.1090 300.000
+ 15 1.5000 0.0000 0.0000 -9.5000 60.305 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2451 63.3221 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.3918 5.0000 14.5000 299.3240 298.2920 300.5880 296.1260 300.000
+ 16 1.5000 0.0000 0.0000 -9.2500 60.369 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1877 64.0182 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.3918 5.0000 14.2500 299.3310 298.2960 300.3210 296.0530 300.000
+ 17 1.5000 0.0000 0.0000 -9.0000 60.277 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1329 64.7201 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.3918 5.0000 14.0000 299.3270 298.2940 299.9780 296.0080 300.000
+# Sum of Counts = 179
+# Center of Mass = -11.410591+/-1.209389
+# Full Width Half-Maximum = 2.371588+/-0.605926
+# 8:11:28 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0092.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0092.dat
new file mode 100644
index 0000000..ef7ca1e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0092.dat
@@ -0,0 +1,51 @@
+# scan = 92
+# date = 10/25/2011
+# time = 8:11:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 4 e -13.0 -9.0 0.25 preset mcu 1.0
+# builtin_command = scan h -0.5 k 0 l 4 e -13.0 -9.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at X (-0.5,0,4)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 4.0000 -13.0000 60.863 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6768 49.1918 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.2618 5.0000 18.0000 299.2960 298.2820 299.8550 295.9650 300.000
+ 2 -0.5000 0.0000 4.0000 -12.7500 60.631 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.6808 49.8459 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.2618 5.0000 17.7500 299.3080 298.2850 300.5050 296.1530 300.000
+ 3 -0.5000 0.0000 4.0000 -12.5000 60.502 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6874 50.5004 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.2618 5.0000 17.5000 299.3260 298.2920 300.5300 296.1020 300.000
+ 4 -0.5000 0.0000 4.0000 -12.2500 60.544 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.6962 51.1558 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.2618 5.0000 17.2500 299.3370 298.2940 300.2160 295.9620 300.000
+ 5 -0.5000 0.0000 4.0000 -12.0000 60.790 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7070 51.8121 -2.7386 0.5000 0.0000 0.0000 160.9180 -38.1638 2.2618 5.0000 17.0000 299.3310 298.2900 299.8790 295.8800 300.000
+ 6 -0.5000 0.0000 4.0000 -11.7500 60.446 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.7194 52.4698 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.2618 5.0000 16.7500 299.3100 298.2800 299.6750 295.9160 300.000
+ 7 -0.5000 0.0000 4.0000 -11.5000 60.509 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.7332 53.1290 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.2618 5.0000 16.5000 299.3010 298.2760 300.0430 295.9740 300.000
+ 8 -0.5000 0.0000 4.0000 -11.2500 60.514 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7480 53.7900 -2.7386 0.5000 0.0000 0.0000 160.4651 -39.0695 2.2618 5.0000 16.2500 299.3250 298.2810 300.5590 295.8680 300.000
+ 9 -0.5000 0.0000 4.0000 -11.0000 60.565 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7636 54.4532 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.2618 5.0000 16.0000 299.3440 298.2860 300.4690 295.8490 300.000
+ 10 -0.5000 0.0000 4.0000 -10.7500 60.704 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7797 55.1188 -2.7386 0.5000 0.0000 0.0000 160.1447 -39.7105 2.2618 5.0000 15.7500 299.3390 298.2850 300.1220 295.8800 300.000
+ 11 -0.5000 0.0000 4.0000 -10.5000 60.796 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7959 55.7869 -2.7386 0.5000 0.0000 0.0000 159.9784 -40.0430 2.2618 5.0000 15.5000 299.3200 298.2810 299.8020 295.8930 300.000
+ 12 -0.5000 0.0000 4.0000 -10.2500 60.473 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.8120 56.4581 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.2618 5.0000 15.2500 299.3030 298.2730 299.6830 295.8230 300.000
+ 13 -0.5000 0.0000 4.0000 -10.0000 60.179 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8277 57.1324 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.2618 5.0000 15.0000 299.3090 298.2720 300.2540 295.7990 300.000
+ 14 -0.5000 0.0000 4.0000 -9.7500 61.096 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8427 57.8104 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.2618 5.0000 14.7500 299.3320 298.2780 300.6010 295.8760 300.000
+ 15 -0.5000 0.0000 4.0000 -9.5000 60.573 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.8567 58.4922 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.2618 5.0000 14.5000 299.3390 298.2800 300.3880 295.9270 300.000
+ 16 -0.5000 0.0000 4.0000 -9.2500 60.666 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.8694 59.1781 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.2618 5.0000 14.2500 299.3330 298.2780 300.0430 295.9640 300.000
+ 17 -0.5000 0.0000 4.0000 -9.0000 60.978 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8806 59.8686 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.2618 5.0000 14.0000 299.3160 298.2720 299.7220 295.8960 300.000
+# Sum of Counts = 147
+# Center of Mass = -11.375850+/-1.330062
+# Full Width Half-Maximum = 2.220325+/-0.649270
+# 8:30:26 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0093.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0093.dat
new file mode 100644
index 0000000..b052554
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0093.dat
@@ -0,0 +1,51 @@
+# scan = 93
+# date = 10/25/2011
+# time = 8:30:27 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 3 e -13.0 -9.0 0.25 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 3 e -13.0 -9.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at X (1.5,0,3)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 3.0000 -13.0000 60.563 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.6199 71.8067 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.8707 5.0000 18.0000 299.3040 298.2660 300.1920 295.8760 300.000
+ 2 1.5000 0.0000 3.0000 -12.7500 60.767 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.4158 72.4735 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.8707 5.0000 17.7500 299.3200 298.2720 300.6260 296.0140 300.000
+ 3 1.5000 0.0000 3.0000 -12.5000 60.766 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.2145 73.1464 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.8707 5.0000 17.5000 299.3240 298.2770 300.4350 296.0640 300.000
+ 4 1.5000 0.0000 3.0000 -12.2500 60.365 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.0159 73.8257 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.8707 5.0000 17.2500 299.3220 298.2750 300.0900 296.0860 300.000
+ 5 1.5000 0.0000 3.0000 -12.0000 60.424 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.8204 74.5116 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.8707 5.0000 17.0000 299.3070 298.2700 299.7680 296.0670 300.000
+ 6 1.5000 0.0000 3.0000 -11.7500 60.832 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.6282 75.2045 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.8707 5.0000 16.7500 299.2910 298.2630 299.7240 296.0080 300.000
+ 7 1.5000 0.0000 3.0000 -11.5000 60.142 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 76.4394 75.9047 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.8707 5.0000 16.5000 299.2990 298.2640 300.3240 296.0800 300.000
+ 8 1.5000 0.0000 3.0000 -11.2500 60.648 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.2542 76.6126 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 2.8707 5.0000 16.2500 299.3180 298.2680 300.5980 296.1070 300.000
+ 9 1.5000 0.0000 3.0000 -11.0000 60.800 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.0730 77.3285 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.8707 5.0000 16.0000 299.3260 298.2700 300.3540 296.1210 300.000
+ 10 1.5000 0.0000 3.0000 -10.7500 60.737 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.8958 78.0529 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.8707 5.0000 15.7500 299.3190 298.2680 299.9960 296.1010 300.000
+ 11 1.5000 0.0000 3.0000 -10.5000 60.543 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.7229 78.7861 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.8707 5.0000 15.5000 299.3030 298.2600 299.7000 296.0720 300.000
+ 12 1.5000 0.0000 3.0000 -10.2500 60.829 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.5546 79.5286 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.8707 5.0000 15.2500 299.2890 298.2540 299.8330 295.9770 300.000
+ 13 1.5000 0.0000 3.0000 -10.0000 60.773 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.3911 80.2808 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.8707 5.0000 15.0000 299.3100 298.2570 300.5050 296.0580 300.000
+ 14 1.5000 0.0000 3.0000 -9.7500 60.679 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.2328 81.0433 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0933 2.8707 5.0000 14.7500 299.3240 298.2620 300.5370 296.0870 300.000
+ 15 1.5000 0.0000 3.0000 -9.5000 60.563 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.0798 81.8165 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.8707 5.0000 14.5000 299.3280 298.2620 300.2480 296.0480 300.000
+ 16 1.5000 0.0000 3.0000 -9.2500 60.382 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.9324 82.6010 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.8707 5.0000 14.2500 299.3180 298.2590 299.9000 296.0450 300.000
+ 17 1.5000 0.0000 3.0000 -9.0000 60.487 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.7911 83.3973 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.8707 5.0000 14.0000 299.2990 298.2500 299.6760 295.9940 300.000
+# Sum of Counts = 182
+# Center of Mass = -11.174451+/-1.174509
+# Full Width Half-Maximum = 2.303956+/-0.574102
+# 8:49:00 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0094.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0094.dat
new file mode 100644
index 0000000..7d13750
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0094.dat
@@ -0,0 +1,46 @@
+# scan = 94
+# date = 10/25/2011
+# time = 8:49:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at T (0,0,4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.2500 60.577 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 299.3110 298.2530 300.4670 295.8520 300.000
+ 2 0.0000 0.0000 4.5000 -14.0000 60.742 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 299.3290 298.2550 300.5600 295.8550 300.000
+ 3 0.0000 0.0000 4.5000 -13.7500 60.963 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 299.3320 298.2570 300.2590 295.7800 300.000
+ 4 0.0000 0.0000 4.5000 -13.5000 60.442 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3812 5.0000 18.5000 299.3210 298.2520 299.9090 295.9060 300.000
+ 5 0.0000 0.0000 4.5000 -13.2500 60.897 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 299.2950 298.2440 299.6470 295.8920 300.000
+ 6 0.0000 0.0000 4.5000 -13.0000 60.485 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3812 5.0000 18.0000 299.2860 298.2400 300.0220 295.9550 300.000
+ 7 0.0000 0.0000 4.5000 -12.7500 60.646 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 299.3070 298.2460 300.5650 295.9640 300.000
+ 8 0.0000 0.0000 4.5000 -12.5000 60.983 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3812 5.0000 17.5000 299.3230 298.2510 300.4700 295.8450 300.000
+ 9 0.0000 0.0000 4.5000 -12.2500 60.836 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0620 -37.8756 2.3812 5.0000 17.2500 299.3260 298.2500 300.1540 295.8880 300.000
+ 10 0.0000 0.0000 4.5000 -12.0000 60.636 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 299.3050 298.2430 299.8090 295.9330 300.000
+ 11 0.0000 0.0000 4.5000 -11.7500 60.729 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 299.2860 298.2350 299.6730 295.9290 300.000
+ 12 0.0000 0.0000 4.5000 -11.5000 60.668 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 299.2930 298.2340 300.2340 295.8870 300.000
+# Sum of Counts = 239
+# Center of Mass = -13.217573+/-1.210192
+# Full Width Half-Maximum = 1.578152+/-0.751928
+# 9:02:23 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0095.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0095.dat
new file mode 100644
index 0000000..e3bbd36
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0095.dat
@@ -0,0 +1,46 @@
+# scan = 95
+# date = 10/25/2011
+# time = 9:02:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h -1 k 0 l 3.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at T (-1,0,3.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -14.2500 60.611 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.1190 52.7596 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.4439 5.0000 19.2500 299.3280 298.2420 300.5840 295.7840 300.000
+ 2 -1.0000 0.0000 3.5000 -14.0000 60.885 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.2029 53.3943 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.4439 5.0000 19.0000 299.3340 298.2430 300.2770 295.7720 300.000
+ 3 -1.0000 0.0000 3.5000 -13.7500 60.673 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.2882 54.0303 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.4439 5.0000 18.7500 299.3200 298.2380 299.9210 295.8720 300.000
+ 4 -1.0000 0.0000 3.5000 -13.5000 60.474 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.3749 54.6679 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.4439 5.0000 18.5000 299.2990 298.2310 299.6630 295.8650 300.000
+ 5 -1.0000 0.0000 3.5000 -13.2500 60.536 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.4626 55.3071 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.4439 5.0000 18.2500 299.2880 298.2260 299.9710 295.8850 300.000
+ 6 -1.0000 0.0000 3.5000 -13.0000 60.547 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5511 55.9484 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.4439 5.0000 18.0000 299.3110 298.2330 300.5450 295.8370 300.000
+ 7 -1.0000 0.0000 3.5000 -12.7500 60.643 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.6402 56.5918 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.4439 5.0000 17.7500 299.3280 298.2380 300.4870 295.8470 300.000
+ 8 -1.0000 0.0000 3.5000 -12.5000 60.892 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.7296 57.2376 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.4439 5.0000 17.5000 299.3250 298.2360 300.1610 295.9220 300.000
+ 9 -1.0000 0.0000 3.5000 -12.2500 60.849 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.8191 57.8861 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.4439 5.0000 17.2500 299.3100 298.2280 299.8280 295.9100 300.000
+ 10 -1.0000 0.0000 3.5000 -12.0000 60.957 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.9085 58.5375 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.4439 5.0000 17.0000 299.2960 298.2210 299.6660 295.7550 300.000
+ 11 -1.0000 0.0000 3.5000 -11.7500 60.679 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.9976 59.1920 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.4439 5.0000 16.7500 299.3000 298.2190 300.2020 295.8560 300.000
+ 12 -1.0000 0.0000 3.5000 -11.5000 60.652 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.0861 59.8500 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.4439 5.0000 16.5000 299.3190 298.2250 300.6110 295.8580 300.000
+# Sum of Counts = 81
+# Center of Mass = -12.938272+/-2.035027
+# Full Width Half-Maximum = 1.613085+/-1.141048
+# 9:15:24 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0096.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0096.dat
new file mode 100644
index 0000000..ee73368
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0096.dat
@@ -0,0 +1,46 @@
+# scan = 96
+# date = 10/25/2011
+# time = 9:15:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at T (1,0,-0.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.5000 -14.2500 60.473 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 43.7449 16.2619 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 1.6163 5.0000 19.2500 299.3180 298.2280 300.1910 296.0380 300.000
+ 2 1.0000 0.0000 -0.5000 -14.0000 60.103 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 46.2636 17.5485 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 1.6164 5.0000 19.0000 299.3020 298.2210 299.8420 296.0300 300.000
+ 3 1.0000 0.0000 -0.5000 -13.7500 60.511 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6299 18.7576 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 1.6164 5.0000 18.7500 299.2830 298.2120 299.6650 295.9790 300.000
+ 4 1.0000 0.0000 -0.5000 -13.5000 60.230 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.8720 19.9036 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.6163 5.0000 18.5000 299.2850 298.2100 300.1400 295.9200 300.000
+ 5 1.0000 0.0000 -0.5000 -13.2500 60.941 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 53.0106 20.9969 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.6163 5.0000 18.2500 299.3090 298.2150 300.5850 295.9220 300.000
+ 6 1.0000 0.0000 -0.5000 -13.0000 60.703 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.0615 22.0457 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.6164 5.0000 18.0000 299.3210 298.2190 300.4200 295.9310 300.000
+ 7 1.0000 0.0000 -0.5000 -12.7499 60.629 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.0369 23.0563 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.6163 5.0000 17.7499 299.3190 298.2170 300.0830 295.9630 300.000
+ 8 1.0000 0.0000 -0.5000 -12.5000 60.054 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.9468 24.0337 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6163 5.0000 17.5000 299.3000 298.2100 299.7490 296.0060 300.000
+ 9 1.0000 0.0000 -0.5000 -12.2500 60.618 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 60.7992 24.9819 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.6164 5.0000 17.2500 299.2830 298.2010 299.7120 295.9470 300.000
+ 10 1.0000 0.0000 -0.5000 -12.0000 60.654 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6008 25.9045 -2.7386 0.5000 0.0000 0.0000 160.9180 -38.1638 1.6164 5.0000 17.0000 299.2930 298.2010 300.3790 295.9480 300.000
+ 11 1.0000 0.0000 -0.5000 -11.7500 60.784 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.3572 26.8042 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6163 5.0000 16.7500 299.3160 298.2070 300.6040 295.9410 300.000
+ 12 1.0000 0.0000 -0.5000 -11.5000 60.551 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.0732 27.6836 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6164 5.0000 16.5000 299.3230 298.2090 300.3660 295.9670 300.000
+# Sum of Counts = 120
+# Center of Mass = -12.852077+/-1.660756
+# Full Width Half-Maximum = 1.576517+/-0.937388
+# 9:28:46 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0097.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0097.dat
new file mode 100644
index 0000000..fc0f34d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0097.dat
@@ -0,0 +1,46 @@
+# scan = 97
+# date = 10/25/2011
+# time = 9:28:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 2.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 2.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at T (1,0,2.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 2.5000 -14.2500 60.793 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.0977 38.5029 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.0719 5.0000 19.2500 299.3200 298.2050 299.8910 295.6940 300.000
+ 2 1.0000 0.0000 2.5000 -13.9999 60.989 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2652 39.2056 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0263 2.0718 5.0000 18.9999 299.3030 298.1970 299.6680 295.7180 300.000
+ 3 1.0000 0.0000 2.5000 -13.7500 60.839 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4228 39.9038 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.0719 5.0000 18.7500 299.2870 298.1890 300.0390 295.8310 300.000
+ 4 1.0000 0.0000 2.5000 -13.5000 60.676 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.5715 40.5982 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.0719 5.0000 18.5000 299.3100 298.1940 300.6020 295.8630 300.000
+ 5 1.0000 0.0000 2.5000 -13.2500 60.703 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.7117 41.2892 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7851 2.0718 5.0000 18.2499 299.3280 298.2000 300.4950 295.8200 300.000
+ 6 1.0000 0.0000 2.5000 -13.0000 60.441 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8441 41.9771 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.0719 5.0000 18.0000 299.3250 298.1990 300.1470 295.8710 300.000
+ 7 1.0000 0.0000 2.5000 -12.7500 60.586 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.9694 42.6623 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.0719 5.0000 17.7500 299.3060 298.1930 299.8090 295.9260 300.000
+ 8 1.0000 0.0000 2.5000 -12.5000 61.100 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.0880 43.3452 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.0719 5.0000 17.5000 299.2840 298.1850 299.6620 295.9390 300.000
+ 9 1.0000 0.0000 2.5000 -12.2500 60.920 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 38.2005 44.0261 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.0718 5.0000 17.2500 299.2890 298.1810 300.2430 295.9730 300.000
+ 10 1.0000 0.0000 2.5000 -12.0000 60.436 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.3074 44.7055 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.0719 5.0000 17.0000 299.3100 298.1860 300.6160 295.9680 300.000
+ 11 1.0000 0.0000 2.5000 -11.7500 60.459 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 40.4092 45.3835 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.0719 5.0000 16.7500 299.3220 298.1890 300.4120 295.9620 300.000
+ 12 1.0000 0.0000 2.5000 -11.5000 60.763 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.5064 46.0606 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.0719 5.0000 16.5000 299.3150 298.1870 300.0600 295.9630 300.000
+# Sum of Counts = 172
+# Center of Mass = -12.968019+/-1.399684
+# Full Width Half-Maximum = 1.586260+/-0.800510
+# 9:41:42 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0098.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0098.dat
new file mode 100644
index 0000000..0b668f9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0098.dat
@@ -0,0 +1,47 @@
+# scan = 98
+# date = 10/25/2011
+# time = 10:01:22 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -10.375 -7.375 0.25 preset mcu 2.0
+# builtin_command = scan h 1 k 0 l 1 e -10.375 -7.375 0.25 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for TO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -10.3750 121.299 27.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.3521 34.0670 -2.7386 0.5000 0.0000 0.0000 159.8938 -40.2125 1.6801 5.0000 15.3750 299.2840 298.1410 300.3570 295.9770 300.000
+ 2 1.0000 0.0000 1.0000 -10.1250 121.097 29.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.8020 34.8324 -2.7386 0.5000 0.0000 0.0000 159.7210 -40.5579 1.6801 5.0000 15.1250 299.3140 298.1520 300.3850 295.9510 300.000
+ 3 1.0000 0.0000 1.0000 -9.8750 121.487 43.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.2364 35.5901 -2.7386 0.5000 0.0000 0.0000 159.5438 -40.9124 1.6801 5.0000 14.8750 299.2890 298.1430 299.7070 295.8900 300.000
+ 4 1.0000 0.0000 1.0000 -9.6250 121.487 45.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 53.6564 36.3410 -2.7386 0.5000 0.0000 0.0000 159.3617 -41.2765 1.6801 5.0000 14.6250 299.2870 298.1370 300.4400 295.8410 300.000
+ 5 1.0000 0.0000 1.0000 -9.3750 121.667 44.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.0634 37.0856 -2.7386 0.5000 0.0000 0.0000 159.1748 -41.6504 1.6801 5.0000 14.3750 299.3110 298.1430 300.3020 295.8500 300.000
+ 6 1.0000 0.0000 1.0000 -9.1250 121.180 42.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 56.4587 37.8248 -2.7386 0.5000 0.0000 0.0000 158.9826 -42.0346 1.6801 5.0000 14.1250 299.2810 298.1280 299.6640 295.9060 300.000
+ 7 1.0000 0.0000 1.0000 -8.8750 121.424 33.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.8432 38.5590 -2.7386 0.5000 0.0000 0.0000 158.7850 -42.4298 1.6801 5.0000 13.8750 299.2840 298.1260 300.5500 296.0340 300.000
+ 8 1.0000 0.0000 1.0000 -8.6250 121.098 54.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.2180 39.2889 -2.7386 0.5000 0.0000 0.0000 158.5818 -42.8363 1.6801 5.0000 13.6250 299.3010 298.1310 300.2130 296.0310 300.000
+ 9 1.0000 0.0000 1.0000 -8.3750 120.548 26.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 60.5841 40.0149 -2.7386 0.5000 0.0000 0.0000 158.3726 -43.2547 1.6801 5.0000 13.3750 299.2710 298.1150 299.6470 295.9340 300.000
+ 10 1.0000 0.0000 1.0000 -8.1250 121.370 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.9424 40.7376 -2.7386 0.5000 0.0000 0.0000 158.1571 -43.6857 1.6801 5.0000 13.1250 299.2950 298.1180 300.8220 295.9540 300.000
+ 11 1.0000 0.0000 1.0000 -7.8750 120.892 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.2938 41.4574 -2.7386 0.5000 0.0000 0.0000 157.9350 -44.1299 1.6801 5.0000 12.8750 299.3360 298.1330 300.5750 295.9150 300.000
+ 12 1.0000 0.0000 1.0000 -7.6250 120.753 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6392 42.1748 -2.7386 0.5000 0.0000 0.0000 157.7061 -44.5879 1.6801 5.0000 12.6250 299.3160 298.1240 299.7950 295.8840 300.000
+ 13 1.0000 0.0000 1.0000 -7.3750 122.213 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.9794 42.8904 -2.7386 0.5000 0.0000 0.0000 157.4698 -45.0605 1.6801 5.0000 12.3750 299.2950 298.1110 300.2620 295.9040 300.000
+# Sum of Counts = 394
+# Center of Mass = -9.138325+/-0.652244
+# Full Width Half-Maximum = 1.547448+/-0.339391
+# 10:28:25 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0099.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0099.dat
new file mode 100644
index 0000000..6a712d8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0099.dat
@@ -0,0 +1,59 @@
+# scan = 99
+# date = 10/25/2011
+# time = 10:50:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -1.5000 61.198 280.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.6798 65.8000 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8150 5.0000 6.5000 299.2950 298.0690 300.6430 295.8910 300.000
+ 2 -0.9000 0.0000 2.1000 -1.4500 61.048 285.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4040 65.9768 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8150 5.0000 6.4500 299.3100 298.0720 300.4950 296.0200 300.000
+ 3 -0.9000 0.0000 2.1000 -1.4000 60.803 233.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1275 66.1544 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8150 5.0000 6.4000 299.2980 298.0670 300.1380 296.0530 300.000
+ 4 -0.9000 0.0000 2.1000 -1.3500 60.533 244.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8503 66.3327 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.8150 5.0000 6.3500 299.2820 298.0600 299.7750 295.9650 300.000
+ 5 -0.9000 0.0000 2.1000 -1.3000 61.255 230.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.5724 66.5118 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8150 5.0000 6.3000 299.2620 298.0510 299.6780 295.8940 300.000
+ 6 -0.9000 0.0000 2.1000 -1.2500 60.862 208.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2938 66.6916 -2.7386 0.5000 0.0000 0.0000 147.3728 -65.2542 1.8150 5.0000 6.2500 299.2680 298.0500 300.3580 295.9330 300.000
+ 7 -0.9000 0.0000 2.1000 -1.2000 61.046 125.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.0144 66.8723 -2.7386 0.5000 0.0000 0.0000 147.2250 -65.5497 1.8150 5.0000 6.2000 299.2940 298.0570 300.6410 295.8780 300.000
+ 8 -0.9000 0.0000 2.1000 -1.1500 60.682 108.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7343 67.0538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8150 5.0000 6.1500 299.3050 298.0590 300.3840 295.8120 300.000
+ 9 -0.9000 0.0000 2.1000 -1.1000 60.974 78.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4534 67.2361 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8150 5.0000 6.1000 299.2970 298.0550 300.0130 295.8510 300.000
+ 10 -0.9000 0.0000 2.1000 -1.0500 60.914 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1717 67.4193 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8150 5.0000 6.0500 299.2720 298.0460 299.6810 295.8750 300.000
+ 11 -0.9000 0.0000 2.1000 -1.0000 61.011 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8892 67.6033 -2.7386 0.5000 0.0000 0.0000 146.6132 -66.7735 1.8150 5.0000 6.0000 299.2620 298.0400 299.8350 295.6760 300.000
+ 12 -0.9000 0.0000 2.1000 -0.9500 60.739 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6060 67.7882 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8150 5.0000 5.9500 299.2850 298.0420 300.5540 295.7110 300.000
+ 13 -0.9000 0.0000 2.1000 -0.9000 60.617 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.3219 67.9740 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8150 5.0000 5.9000 299.2990 298.0480 300.6000 295.8310 300.000
+ 14 -0.9000 0.0000 2.1000 -0.8500 60.664 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0370 68.1608 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.8150 5.0000 5.8500 299.3070 298.0500 300.2810 295.6780 300.000
+ 15 -0.9000 0.0000 2.1000 -0.8000 61.095 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7512 68.3484 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8150 5.0000 5.8000 299.2970 298.0440 299.9080 295.6660 300.000
+ 16 -0.9000 0.0000 2.1000 -0.7500 60.949 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4646 68.5371 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.8150 5.0000 5.7500 299.2740 298.0340 299.6430 295.6860 300.000
+ 17 -0.9000 0.0000 2.1000 -0.7000 60.986 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1772 68.7267 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8150 5.0000 5.7000 299.2670 298.0290 300.0480 295.6630 300.000
+ 18 -0.9000 0.0000 2.1000 -0.6500 60.939 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.8888 68.9172 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.8150 5.0000 5.6500 299.2940 298.0370 300.6250 295.7030 300.000
+ 19 -0.9000 0.0000 2.1000 -0.6000 61.140 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5995 69.1088 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.8150 5.0000 5.6000 299.3070 298.0390 300.5190 295.7540 300.000
+ 20 -0.9000 0.0000 2.1000 -0.5500 60.796 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.3093 69.3015 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.8150 5.0000 5.5500 299.3000 298.0350 300.1410 295.8270 300.000
+ 21 -0.9000 0.0000 2.1000 -0.5000 60.902 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.0181 69.4952 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.8150 5.0000 5.5000 299.2790 298.0270 299.7900 295.8140 300.000
+ 22 -0.9000 0.0000 2.1000 -0.4500 60.974 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7260 69.6900 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.8150 5.0000 5.4500 299.2620 298.0170 299.6580 295.7190 300.000
+ 23 -0.9000 0.0000 2.1000 -0.4000 60.730 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.4330 69.8858 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9088 1.8150 5.0000 5.4000 299.2680 298.0160 300.3160 295.7860 300.000
+ 24 -0.9000 0.0000 2.1000 -0.3500 61.067 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.1389 70.0828 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.8150 5.0000 5.3500 299.2910 298.0220 300.6510 295.7980 300.000
+ 25 -0.9000 0.0000 2.1000 -0.3000 60.689 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8438 70.2810 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 1.8150 5.0000 5.3000 299.3020 298.0240 300.4070 295.7510 300.000
+# Sum of Counts = 2228
+# Center of Mass = -1.225337+/-0.037205
+# Full Width Half-Maximum = 0.569556+/-0.021096
+# 11:17:33 PM 10/25/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0100.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0100.dat
new file mode 100644
index 0000000..936ca17
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0100.dat
@@ -0,0 +1,75 @@
+# scan = 100
+# date = 10/25/2011
+# time = 11:17:33 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.8000 0.0000 2.2000 -6.0000 61.029 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.2391 48.5425 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.7270 5.0000 11.0000 299.2780 298.0180 299.8960 295.9710 300.000
+ 2 -0.8000 0.0000 2.2000 -5.8999 61.032 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.7236 48.8280 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1931 1.7270 5.0000 10.8999 299.2560 298.0090 299.6450 295.8190 300.000
+ 3 -0.8000 0.0000 2.2000 -5.8000 60.529 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.2080 49.1138 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.7270 5.0000 10.8000 299.2520 298.0030 300.0300 295.8310 300.000
+ 4 -0.8000 0.0000 2.2000 -5.7000 61.092 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.6923 49.4000 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.7270 5.0000 10.7000 299.2730 298.0100 300.6210 295.9330 300.000
+ 5 -0.8000 0.0000 2.2000 -5.6000 60.812 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.1763 49.6866 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.7270 5.0000 10.6000 299.2890 298.0140 300.5160 295.9650 300.000
+ 6 -0.8000 0.0000 2.2000 -5.5000 60.979 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.6601 49.9735 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.7270 5.0000 10.5000 299.2810 298.0090 300.1620 295.9550 300.000
+ 7 -0.8000 0.0000 2.2000 -5.4000 60.879 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1436 50.2609 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.7270 5.0000 10.4000 299.2660 298.0020 299.7970 295.9400 300.000
+ 8 -0.8000 0.0000 2.2000 -5.3000 61.192 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.6268 50.5488 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6689 1.7270 5.0000 10.3000 299.2440 297.9920 299.6590 295.8650 300.000
+ 9 -0.8000 0.0000 2.2000 -5.2000 61.284 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.1097 50.8372 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.7270 5.0000 10.2000 299.2540 297.9910 300.2910 295.8290 300.000
+ 10 -0.8000 0.0000 2.2000 -5.1000 60.809 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.5921 51.1260 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.7270 5.0000 10.1000 299.2780 297.9970 300.6490 295.8400 300.000
+ 11 -0.8000 0.0000 2.2000 -5.0000 60.979 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.0740 51.4155 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.7270 5.0000 10.0000 299.2860 297.9980 300.4280 295.9370 300.000
+ 12 -0.8000 0.0000 2.2000 -4.9000 60.888 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.5555 51.7055 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.7270 5.0000 9.9000 299.2800 297.9950 300.0350 295.7330 300.000
+ 13 -0.8000 0.0000 2.2000 -4.8000 60.942 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.0364 51.9961 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.7270 5.0000 9.8000 299.2680 297.9860 299.6950 295.6460 300.000
+ 14 -0.8000 0.0000 2.2000 -4.7000 61.298 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.5167 52.2874 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.7270 5.0000 9.7000 299.2470 297.9770 299.7940 295.6950 300.000
+ 15 -0.8000 0.0000 2.2000 -4.6000 60.647 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.9964 52.5794 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.7270 5.0000 9.6000 299.2640 297.9800 300.5160 295.7130 300.000
+ 16 -0.8000 0.0000 2.2000 -4.5000 60.900 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4754 52.8721 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.7270 5.0000 9.5000 299.2790 297.9850 300.6000 295.8610 300.000
+ 17 -0.8000 0.0000 2.2000 -4.4000 60.832 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.9537 53.1655 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.7270 5.0000 9.4000 299.2800 297.9830 300.2760 295.9620 300.000
+ 18 -0.8000 0.0000 2.2000 -4.3000 61.117 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4312 53.4597 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4634 1.7270 5.0000 9.3000 299.2650 297.9780 299.9030 295.8460 300.000
+ 19 -0.8000 0.0000 2.2000 -4.2000 60.843 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9079 53.7548 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.7270 5.0000 9.2000 299.2520 297.9700 299.6400 295.6940 300.000
+ 20 -0.8000 0.0000 2.2000 -4.1000 61.048 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.3837 54.0506 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.7270 5.0000 9.1000 299.2450 297.9650 300.0830 295.7440 300.000
+ 21 -0.8000 0.0000 2.2000 -4.0000 60.939 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8586 54.3474 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.7270 5.0000 9.0000 299.2710 297.9710 300.6410 295.6930 300.000
+ 22 -0.8000 0.0000 2.2000 -3.9000 60.752 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3326 54.6452 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.7270 5.0000 8.9000 299.2830 297.9730 300.4960 295.7850 300.000
+ 23 -0.8000 0.0000 2.2000 -3.8000 60.973 73.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.8055 54.9438 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.7270 5.0000 8.8000 299.2720 297.9700 300.1380 295.9460 300.000
+ 24 -0.8000 0.0000 2.2000 -3.7000 60.766 112.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2773 55.2435 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.7270 5.0000 8.7000 299.2520 297.9620 299.7780 295.9710 300.000
+ 25 -0.8000 0.0000 2.2000 -3.6000 60.648 136.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.7481 55.5442 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.7270 5.0000 8.6000 299.2310 297.9520 299.6800 295.8770 300.000
+ 26 -0.8000 0.0000 2.2000 -3.5000 61.090 122.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2177 55.8460 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.7270 5.0000 8.5000 299.2400 297.9510 300.3380 295.8720 300.000
+ 27 -0.8000 0.0000 2.2000 -3.4000 60.727 156.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6860 56.1490 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.7270 5.0000 8.4000 299.2590 297.9540 300.6350 296.0080 300.000
+ 28 -0.8000 0.0000 2.2000 -3.3000 61.121 124.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1531 56.4531 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.7270 5.0000 8.3000 299.2640 297.9570 300.3680 296.0050 300.000
+ 29 -0.8000 0.0000 2.2000 -3.2000 60.816 86.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6188 56.7584 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.7270 5.0000 8.2000 299.2600 297.9540 299.9910 295.8910 300.000
+ 30 -0.8000 0.0000 2.2000 -3.1000 61.065 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.0832 57.0650 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.7270 5.0000 8.1000 299.2410 297.9450 299.6680 295.8910 300.000
+ 31 -0.8000 0.0000 2.2000 -3.0000 61.018 64.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.5461 57.3729 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.7270 5.0000 8.0000 299.2240 297.9360 299.8700 295.9600 300.000
+ 32 -0.8000 0.0000 2.2000 -2.9000 60.652 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0075 57.6822 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.7270 5.0000 7.9000 299.2400 297.9390 300.5760 295.9970 300.000
+ 33 -0.8000 0.0000 2.2000 -2.8000 60.505 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.4674 57.9929 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.7270 5.0000 7.8000 299.2600 297.9430 300.5710 295.9740 300.000
+ 34 -0.8000 0.0000 2.2000 -2.7000 60.972 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.9256 58.3050 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.7270 5.0000 7.7000 299.2580 297.9420 300.2300 296.0670 300.000
+ 35 -0.8000 0.0000 2.2000 -2.6000 60.879 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.3821 58.6187 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.7270 5.0000 7.6000 299.2410 297.9350 299.8520 296.0970 300.000
+ 36 -0.8000 0.0000 2.2000 -2.5000 61.345 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8368 58.9339 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7270 5.0000 7.5000 299.2200 297.9260 299.6260 296.0610 300.000
+ 37 -0.8000 0.0000 2.2000 -2.4000 61.094 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2898 59.2508 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.7270 5.0000 7.4000 299.2170 297.9210 300.1940 296.0250 300.000
+ 38 -0.8000 0.0000 2.2000 -2.3000 60.745 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.7408 59.5694 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.7270 5.0000 7.3000 299.2480 297.9290 300.6650 295.8830 300.000
+ 39 -0.8000 0.0000 2.2000 -2.2000 60.868 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1898 59.8896 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7270 5.0000 7.2000 299.2640 297.9310 300.4780 295.8760 300.000
+ 40 -0.8000 0.0000 2.2000 -2.1000 61.023 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.6368 60.2118 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.7270 5.0000 7.1000 299.2540 297.9290 300.0810 295.8610 300.000
+ 41 -0.8000 0.0000 2.2000 -2.0000 60.714 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.0818 60.5358 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.7270 5.0000 7.0000 299.2330 297.9200 299.7270 295.9360 300.000
+# Sum of Counts = 1682
+# Center of Mass = -3.717598+/-0.129741
+# Full Width Half-Maximum = 1.639188+/-0.054053
+# 12:01:16 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0101.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0101.dat
new file mode 100644
index 0000000..03363e9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0101.dat
@@ -0,0 +1,80 @@
+# scan = 101
+# date = 10/26/2011
+# time = 12:01:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.7 k 0 l 2.3 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.7 k 0 l 2.3 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -7.0000 61.267 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.3659 42.8962 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6514 5.0000 12.0000 299.2210 297.9120 299.8930 295.7340 300.000
+ 2 -0.7000 0.0000 2.3000 -6.9000 61.061 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.8229 43.1825 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.6514 5.0000 11.9000 299.2400 297.9170 300.5870 295.8080 300.000
+ 3 -0.7000 0.0000 2.3000 -6.8000 60.866 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.2805 43.4686 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.6514 5.0000 11.8000 299.2580 297.9210 300.5810 295.8040 300.000
+ 4 -0.7000 0.0000 2.3000 -6.7000 61.007 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.7386 43.7546 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 1.6514 5.0000 11.7000 299.2600 297.9200 300.2210 295.7290 300.000
+ 5 -0.7000 0.0000 2.3000 -6.6000 61.013 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.1973 44.0404 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.6514 5.0000 11.6000 299.2480 297.9130 299.8350 295.6860 300.000
+ 6 -0.7000 0.0000 2.3000 -6.5000 61.287 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.6564 44.3260 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8417 1.6514 5.0000 11.5000 299.2250 297.9030 299.6350 295.6750 300.000
+ 7 -0.7000 0.0000 2.3000 -6.4000 60.951 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1159 44.6116 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6514 5.0000 11.4000 299.2200 297.9000 300.2090 295.8200 300.000
+ 8 -0.7000 0.0000 2.3000 -6.3000 60.569 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5758 44.8972 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6514 5.0000 11.3000 299.2440 297.9050 300.6580 295.8520 300.000
+ 9 -0.7000 0.0000 2.3000 -6.2000 60.619 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.0359 45.1827 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6514 5.0000 11.2000 299.2580 297.9080 300.4540 295.7010 300.000
+ 10 -0.7000 0.0000 2.3000 -6.0999 60.928 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.4964 45.4682 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7297 1.6514 5.0000 11.0999 299.2560 297.9030 300.0750 295.7530 300.000
+ 11 -0.7000 0.0000 2.3000 -6.0000 60.814 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.9570 45.7538 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6514 5.0000 11.0000 299.2350 297.8950 299.7160 295.6200 300.000
+ 12 -0.7000 0.0000 2.3000 -5.9000 61.384 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.4179 46.0394 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6514 5.0000 10.9000 299.2210 297.8860 299.7160 295.6020 300.000
+ 13 -0.7000 0.0000 2.3000 -5.8000 60.756 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.8788 46.3251 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6514 5.0000 10.8000 299.2310 297.8880 300.4910 295.7070 300.000
+ 14 -0.7000 0.0000 2.3000 -5.7000 60.754 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.3398 46.6109 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6514 5.0000 10.7000 299.2580 297.8960 300.6640 295.7010 300.000
+ 15 -0.7000 0.0000 2.3000 -5.6000 60.760 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.8009 46.8968 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6514 5.0000 10.6000 299.2630 297.8960 300.3350 295.7290 300.000
+ 16 -0.7000 0.0000 2.3000 -5.5000 61.148 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.2619 47.1830 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6514 5.0000 10.5000 299.2440 297.8880 299.9520 295.8560 300.000
+ 17 -0.7000 0.0000 2.3000 -5.4000 61.049 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.7228 47.4693 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.6514 5.0000 10.4000 299.2190 297.8780 299.6450 295.7850 300.000
+ 18 -0.7000 0.0000 2.3000 -5.3000 60.815 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.1837 47.7558 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6514 5.0000 10.3000 299.2110 297.8710 299.9330 295.7400 300.000
+ 19 -0.7000 0.0000 2.3000 -5.2000 60.814 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6443 48.0426 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 1.6514 5.0000 10.2000 299.2390 297.8770 300.6160 295.7200 300.000
+ 20 -0.7000 0.0000 2.3000 -5.1000 60.953 75.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1048 48.3297 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6514 5.0000 10.1000 299.2520 297.8800 300.5720 295.7420 300.000
+ 21 -0.7000 0.0000 2.3000 -5.0000 60.692 80.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5650 48.6171 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 1.6514 5.0000 10.0000 299.2520 297.8800 300.2170 295.8440 300.000
+ 22 -0.7000 0.0000 2.3000 -4.9000 60.929 75.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0248 48.9048 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6514 5.0000 9.9000 299.2360 297.8740 299.8220 295.6990 300.000
+ 23 -0.7000 0.0000 2.3000 -4.8000 60.555 65.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4843 49.1929 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6514 5.0000 9.8000 299.2220 297.8640 299.6130 295.5800 300.000
+ 24 -0.7000 0.0000 2.3000 -4.7000 60.912 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9434 49.4814 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.6514 5.0000 9.7000 299.2230 297.8620 300.2280 295.6190 300.000
+ 25 -0.7000 0.0000 2.3000 -4.6000 61.050 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.4021 49.7703 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.6514 5.0000 9.6000 299.2480 297.8670 300.6830 295.6340 300.000
+ 26 -0.7000 0.0000 2.3000 -4.5000 60.753 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8602 50.0597 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6514 5.0000 9.5000 299.2550 297.8690 300.4530 295.7550 300.000
+ 27 -0.7000 0.0000 2.3000 -4.4000 61.008 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3178 50.3496 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6514 5.0000 9.4000 299.2410 297.8640 300.0590 295.8990 300.000
+ 28 -0.7000 0.0000 2.3000 -4.3000 61.208 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.7747 50.6400 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6514 5.0000 9.3000 299.2200 297.8560 299.7030 295.8600 300.000
+ 29 -0.7000 0.0000 2.3000 -4.2000 61.100 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2310 50.9310 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6514 5.0000 9.2000 299.2050 297.8470 299.7530 295.8460 300.000
+ 30 -0.7000 0.0000 2.3000 -4.1000 61.121 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.6866 51.2226 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6514 5.0000 9.1000 299.2200 297.8500 300.5330 295.8770 300.000
+ 31 -0.7000 0.0000 2.3000 -4.0000 60.947 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.1414 51.5148 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 1.6514 5.0000 9.0000 299.2400 297.8540 300.6460 295.8630 300.000
+ 32 -0.7000 0.0000 2.3000 -3.9000 61.338 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.5955 51.8076 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6514 5.0000 8.9000 299.2420 297.8540 300.3060 295.8790 300.000
+ 33 -0.7000 0.0000 2.3000 -3.8000 60.957 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0486 52.1012 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.6514 5.0000 8.8000 299.2290 297.8490 299.9200 295.8940 300.000
+ 34 -0.7000 0.0000 2.3000 -3.7000 60.761 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5008 52.3954 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6514 5.0000 8.7000 299.2090 297.8400 299.6270 295.8330 300.000
+ 35 -0.7000 0.0000 2.3000 -3.6000 61.142 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9520 52.6904 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7276 1.6514 5.0000 8.6000 299.2010 297.8320 300.0350 295.7860 300.000
+ 36 -0.7000 0.0000 2.3000 -3.5000 60.896 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.4022 52.9863 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.6514 5.0000 8.5000 299.2270 297.8370 300.6850 295.8220 300.000
+ 37 -0.7000 0.0000 2.3000 -3.4000 60.851 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8514 53.2829 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.6514 5.0000 8.4000 299.2380 297.8410 300.5670 295.9640 300.000
+ 38 -0.7000 0.0000 2.3000 -3.3000 60.966 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2993 53.5805 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.6514 5.0000 8.3000 299.2300 297.8390 300.1960 296.1070 300.000
+ 39 -0.7000 0.0000 2.3000 -3.2000 61.030 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7461 53.8789 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.6514 5.0000 8.2000 299.2110 297.8300 299.8020 296.0760 300.000
+ 40 -0.7000 0.0000 2.3000 -3.1000 60.898 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.1916 54.1783 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.6514 5.0000 8.1000 299.1870 297.8190 299.6510 296.0470 300.000
+ 41 -0.7000 0.0000 2.3000 -3.0000 60.720 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6357 54.4787 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.6514 5.0000 8.0000 299.1900 297.8170 300.3290 296.0370 300.000
+ 42 -0.7000 0.0000 2.3000 -2.9000 60.856 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.0785 54.7801 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.6514 5.0000 7.9000 299.2170 297.8230 300.7030 296.0690 300.000
+ 43 -0.7000 0.0000 2.3000 -2.8000 60.808 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5198 55.0826 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6514 5.0000 7.8000 299.2320 297.8270 300.4340 295.8580 300.000
+ 44 -0.7000 0.0000 2.3000 -2.7000 60.968 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.9596 55.3863 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.6514 5.0000 7.7000 299.2300 297.8240 300.0340 295.8880 300.000
+ 45 -0.7000 0.0000 2.3000 -2.6000 60.795 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3978 55.6911 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.6514 5.0000 7.6000 299.2050 297.8150 299.6790 295.9020 300.000
+ 46 -0.7000 0.0000 2.3000 -2.5000 61.035 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8343 55.9971 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6514 5.0000 7.5000 299.1880 297.8050 299.7880 295.8660 300.000
+# Sum of Counts = 923
+# Center of Mass = -4.995449+/-0.234775
+# Full Width Half-Maximum = 1.965818+/-0.088087
+# 12:50:09 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0102.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0102.dat
new file mode 100644
index 0000000..8c0977f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0102.dat
@@ -0,0 +1,80 @@
+# scan = 102
+# date = 10/26/2011
+# time = 12:50:09 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.6 k 0 l 2.4 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.6 k 0 l 2.4 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.6000 0.0000 2.4000 -7.0000 60.949 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.4517 40.6066 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5900 5.0000 12.0000 299.2110 297.8110 300.6680 295.8370 300.000
+ 2 -0.6000 0.0000 2.4000 -6.9000 60.494 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.8839 40.8961 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5900 5.0000 11.9000 299.2310 297.8160 300.5660 295.7500 300.000
+ 3 -0.6000 0.0000 2.4000 -6.8000 61.173 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.3170 41.1852 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2074 1.5900 5.0000 11.8000 299.2300 297.8140 300.2000 295.7630 300.000
+ 4 -0.6000 0.0000 2.4000 -6.7000 60.863 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.7511 41.4740 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5900 5.0000 11.7000 299.2100 297.8060 299.8050 295.8620 300.000
+ 5 -0.6000 0.0000 2.4000 -6.6000 60.890 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.1859 41.7623 -2.7386 0.5000 0.0000 0.0000 156.6863 -46.6273 1.5900 5.0000 11.6000 299.1860 297.7950 299.6350 295.7990 300.000
+ 6 -0.6000 0.0000 2.4000 -6.5000 60.795 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.6215 42.0504 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5900 5.0000 11.5000 299.1930 297.7920 300.2920 295.7400 300.000
+ 7 -0.6000 0.0000 2.4000 -6.4000 60.790 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.0578 42.3381 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5900 5.0000 11.4000 299.2230 297.7980 300.6720 295.6690 300.000
+ 8 -0.6000 0.0000 2.4000 -6.3000 60.921 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.4947 42.6256 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 1.5900 5.0000 11.3000 299.2330 297.8000 300.4320 295.7180 300.000
+ 9 -0.6000 0.0000 2.4000 -6.2000 60.755 59.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9322 42.9128 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5900 5.0000 11.2000 299.2240 297.7970 300.0360 295.6360 300.000
+ 10 -0.6000 0.0000 2.4000 -6.1000 60.498 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3702 43.1998 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5900 5.0000 11.1000 299.2070 297.7880 299.6840 295.6450 300.000
+ 11 -0.6000 0.0000 2.4000 -6.0000 61.031 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8087 43.4866 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5900 5.0000 11.0000 299.1840 297.7770 299.7860 295.7580 300.000
+ 12 -0.6000 0.0000 2.4000 -5.9000 61.171 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2476 43.7733 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5900 5.0000 10.9000 299.1960 297.7790 300.5710 295.8020 300.000
+ 13 -0.6000 0.0000 2.4000 -5.8000 61.093 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6868 44.0598 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5900 5.0000 10.8000 299.2220 297.7870 300.6300 295.7490 300.000
+ 14 -0.6000 0.0000 2.4000 -5.7000 61.220 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1263 44.3463 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5900 5.0000 10.7000 299.2260 297.7880 300.2760 295.7330 300.000
+ 15 -0.6000 0.0000 2.4000 -5.6000 60.663 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5661 44.6327 -2.7386 0.5000 0.0000 0.0000 155.5428 -48.9142 1.5900 5.0000 10.6000 299.2130 297.7820 299.8900 295.8300 300.000
+ 16 -0.6000 0.0000 2.4000 -5.5000 61.205 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0061 44.9190 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5900 5.0000 10.5000 299.1860 297.7720 299.6210 295.7780 300.000
+ 17 -0.6000 0.0000 2.4000 -5.4000 61.155 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4462 45.2054 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5900 5.0000 10.4000 299.1790 297.7640 300.1300 295.8260 300.000
+ 18 -0.6000 0.0000 2.4000 -5.3000 60.630 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.8864 45.4917 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5900 5.0000 10.3000 299.2040 297.7710 300.7070 295.8350 300.000
+ 19 -0.6000 0.0000 2.4000 -5.2000 60.746 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.3266 45.7781 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5900 5.0000 10.2000 299.2220 297.7760 300.5310 295.7960 300.000
+ 20 -0.6000 0.0000 2.4000 -5.1000 61.041 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.7669 46.0646 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5900 5.0000 10.1000 299.2180 297.7720 300.1480 295.8210 300.000
+ 21 -0.6000 0.0000 2.4000 -5.0000 60.328 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.2070 46.3511 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5900 5.0000 10.0000 299.1970 297.7630 299.7540 295.8040 300.000
+ 22 -0.6000 0.0000 2.4000 -4.9000 61.132 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.6470 46.6378 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.5900 5.0000 9.9000 299.1750 297.7510 299.6650 295.7900 300.000
+ 23 -0.6000 0.0000 2.4000 -4.8000 60.755 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.0869 46.9247 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5900 5.0000 9.8000 299.1840 297.7520 300.3770 295.7770 300.000
+ 24 -0.6000 0.0000 2.4000 -4.7000 60.955 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.5265 47.2118 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5900 5.0000 9.7000 299.2100 297.7590 300.6850 295.9530 300.000
+ 25 -0.6000 0.0000 2.4000 -4.6000 61.151 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.9658 47.4990 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5900 5.0000 9.6000 299.2140 297.7600 300.4030 295.9380 300.000
+ 26 -0.6000 0.0000 2.4000 -4.5000 61.062 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4048 47.7866 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5900 5.0000 9.5000 299.2030 297.7550 299.9960 295.8310 300.000
+ 27 -0.6000 0.0000 2.4000 -4.4000 60.565 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.8433 48.0744 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5900 5.0000 9.4000 299.1840 297.7450 299.6420 295.8150 300.000
+ 28 -0.6000 0.0000 2.4000 -4.3000 60.820 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.2814 48.3625 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5900 5.0000 9.3000 299.1670 297.7370 299.8680 295.7850 300.000
+ 29 -0.6000 0.0000 2.4000 -4.2000 60.741 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.7190 48.6509 -2.7386 0.5000 0.0000 0.0000 153.6151 -52.7696 1.5900 5.0000 9.2000 299.1900 297.7420 300.6090 295.8120 300.000
+ 30 -0.6000 0.0000 2.4000 -4.1000 61.138 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.1561 48.9397 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5900 5.0000 9.1000 299.2100 297.7480 300.5860 295.9030 300.000
+ 31 -0.6000 0.0000 2.4000 -4.0000 60.663 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5925 49.2290 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5900 5.0000 9.0000 299.2090 297.7470 300.2140 296.0160 300.000
+ 32 -0.6000 0.0000 2.4000 -3.9000 61.141 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.0283 49.5186 -2.7386 0.5000 0.0000 0.0000 153.1390 -53.7217 1.5900 5.0000 8.9000 299.1890 297.7370 299.8240 296.0220 300.000
+ 33 -0.6000 0.0000 2.4000 -3.8000 60.542 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4633 49.8087 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5900 5.0000 8.8000 299.1620 297.7260 299.6350 296.0250 300.000
+ 34 -0.6000 0.0000 2.4000 -3.7000 60.930 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8975 50.0993 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5900 5.0000 8.7000 299.1600 297.7220 300.2380 296.0250 300.000
+ 35 -0.6000 0.0000 2.4000 -3.6000 61.055 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.3309 50.3904 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7276 1.5900 5.0000 8.6000 299.1850 297.7280 300.6950 296.0450 300.000
+ 36 -0.6000 0.0000 2.4000 -3.5000 60.745 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.7634 50.6821 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5900 5.0000 8.5000 299.2020 297.7330 300.4690 295.9300 300.000
+ 37 -0.6000 0.0000 2.4000 -3.4000 60.546 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1948 50.9744 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.5900 5.0000 8.4000 299.2010 297.7310 300.0560 295.8710 300.000
+ 38 -0.6000 0.0000 2.4000 -3.3000 60.961 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.6253 51.2673 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.5900 5.0000 8.3000 299.1780 297.7190 299.6890 295.8130 300.000
+ 39 -0.6000 0.0000 2.4000 -3.2000 61.447 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.0547 51.5609 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.5900 5.0000 8.2000 299.1590 297.7100 299.7730 295.7800 300.000
+ 40 -0.6000 0.0000 2.4000 -3.1000 61.256 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4829 51.8551 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 1.5900 5.0000 8.1000 299.1830 297.7150 300.5550 295.8150 300.000
+ 41 -0.6000 0.0000 2.4000 -3.0000 60.670 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.9098 52.1501 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.5900 5.0000 8.0000 299.2070 297.7200 300.6420 295.9710 300.000
+ 42 -0.6000 0.0000 2.4000 -2.9000 60.751 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3356 52.4459 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.5900 5.0000 7.9000 299.2070 297.7190 300.2920 295.8190 300.000
+ 43 -0.6000 0.0000 2.4000 -2.8000 60.893 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7599 52.7425 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.5900 5.0000 7.8000 299.1910 297.7140 299.8880 295.8030 300.000
+ 44 -0.6000 0.0000 2.4000 -2.7000 60.814 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1828 53.0399 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.5900 5.0000 7.7000 299.1690 297.7030 299.6150 295.7350 300.000
+ 45 -0.6000 0.0000 2.4000 -2.6000 61.083 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6042 53.3382 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.5900 5.0000 7.6000 299.1640 297.6970 300.1330 295.7580 300.000
+ 46 -0.6000 0.0000 2.4000 -2.5000 60.884 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0241 53.6374 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.5900 5.0000 7.5000 299.1860 297.7030 300.7110 295.8110 300.000
+# Sum of Counts = 650
+# Center of Mass = -5.762615+/-0.322073
+# Full Width Half-Maximum = 2.009671+/-0.130905
+# 1:38:58 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0103.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0103.dat
new file mode 100644
index 0000000..68a212a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0103.dat
@@ -0,0 +1,85 @@
+# scan = 103
+# date = 10/26/2011
+# time = 1:38:59 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -8.5 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.5 k 0 l 2.5 e -8.5 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -8.5000 61.267 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5856 34.4080 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5445 5.0000 13.5000 299.2010 297.7070 300.4120 295.8760 300.000
+ 2 -0.5000 0.0000 2.5000 -8.4000 61.194 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9698 34.7148 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 1.5446 5.0000 13.4000 299.1910 297.7020 299.9930 295.6910 300.000
+ 3 -0.5000 0.0000 2.5000 -8.3000 61.125 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.3564 35.0202 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.5445 5.0000 13.3000 299.1720 297.6930 299.6390 295.6730 300.000
+ 4 -0.5000 0.0000 2.5000 -8.2000 61.254 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.7454 35.3244 -2.7386 0.5000 0.0000 0.0000 158.2222 -43.5551 1.5445 5.0000 13.2000 299.1500 297.6840 299.8860 295.7360 300.000
+ 5 -0.5000 0.0000 2.5000 -8.1000 60.635 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.1366 35.6274 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 1.5445 5.0000 13.1000 299.1770 297.6900 300.6440 295.7850 300.000
+ 6 -0.5000 0.0000 2.5000 -8.0000 60.943 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 299.1990 297.6960 300.6210 295.8330 300.000
+ 7 -0.5000 0.0000 2.5000 -7.9000 60.886 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.9255 36.2304 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5445 5.0000 12.9000 299.1970 297.6950 300.2470 295.8320 300.000
+ 8 -0.5000 0.0000 2.5000 -7.8000 60.952 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.3230 36.5303 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.5445 5.0000 12.8000 299.1790 297.6860 299.8410 295.7240 300.000
+ 9 -0.5000 0.0000 2.5000 -7.7000 61.191 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.7223 36.8293 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5446 5.0000 12.7000 299.1580 297.6740 299.6150 295.6420 300.000
+ 10 -0.5000 0.0000 2.5000 -7.6000 60.993 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1234 37.1274 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5445 5.0000 12.6000 299.1580 297.6740 300.2320 295.8170 300.000
+ 11 -0.5000 0.0000 2.5000 -7.5000 60.917 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5263 37.4246 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.5445 5.0000 12.5000 299.1840 297.6800 300.7250 295.9310 300.000
+ 12 -0.5000 0.0000 2.5000 -7.4000 61.385 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9308 37.7210 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5445 5.0000 12.4000 299.1960 297.6850 300.4910 295.8460 300.000
+ 13 -0.5000 0.0000 2.5000 -7.3000 61.144 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.3370 38.0166 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.5445 5.0000 12.3000 299.1920 297.6810 300.0850 295.7860 300.000
+ 14 -0.5000 0.0000 2.5000 -7.2000 61.039 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.7446 38.3114 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5445 5.0000 12.2000 299.1640 297.6680 299.7090 295.7770 300.000
+ 15 -0.5000 0.0000 2.5000 -7.1000 60.812 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1536 38.6055 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5445 5.0000 12.1000 299.1440 297.6590 299.7060 295.7220 300.000
+ 16 -0.5000 0.0000 2.5000 -7.0000 61.057 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5640 38.8989 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5445 5.0000 12.0000 299.1590 297.6620 300.5330 295.7780 300.000
+ 17 -0.5000 0.0000 2.5000 -6.9000 61.061 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9756 39.1917 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5445 5.0000 11.9000 299.1740 297.6690 300.7180 295.8540 300.000
+ 18 -0.5000 0.0000 2.5000 -6.8000 61.005 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3885 39.4839 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5445 5.0000 11.8000 299.1830 297.6710 300.3590 295.6970 300.000
+ 19 -0.5000 0.0000 2.5000 -6.7000 61.224 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8025 39.7754 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5445 5.0000 11.7000 299.1710 297.6650 299.9470 295.7920 300.000
+ 20 -0.5000 0.0000 2.5000 -6.6000 61.464 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2176 40.0665 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5445 5.0000 11.6000 299.1460 297.6550 299.6210 295.7470 300.000
+ 21 -0.5000 0.0000 2.5000 -6.5000 60.954 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6337 40.3570 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8417 1.5445 5.0000 11.5000 299.1370 297.6450 299.9870 295.7790 300.000
+ 22 -0.5000 0.0000 2.5000 -6.4000 61.375 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.0507 40.6470 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5445 5.0000 11.4000 299.1610 297.6510 300.6760 295.7620 300.000
+ 23 -0.5000 0.0000 2.5000 -6.3000 61.366 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4686 40.9366 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 1.5445 5.0000 11.3000 299.1820 297.6550 300.6000 295.7210 300.000
+ 24 -0.5000 0.0000 2.5000 -6.2000 61.049 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.8873 41.2258 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5445 5.0000 11.2000 299.1820 297.6560 300.1900 295.8260 300.000
+ 25 -0.5000 0.0000 2.5000 -6.1000 61.210 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.3068 41.5146 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 1.5445 5.0000 11.1000 299.1680 297.6510 299.7790 295.8140 300.000
+ 26 -0.5000 0.0000 2.5000 -6.0000 61.017 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.7270 41.8030 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5445 5.0000 11.0000 299.1430 297.6370 299.6400 295.7080 300.000
+ 27 -0.5000 0.0000 2.5000 -5.9000 61.271 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.1478 42.0911 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5445 5.0000 10.9000 299.1430 297.6350 300.4040 295.8180 300.000
+ 28 -0.5000 0.0000 2.5000 -5.8000 60.980 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5691 42.3790 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5445 5.0000 10.8000 299.1650 297.6400 300.7220 295.7770 300.000
+ 29 -0.5000 0.0000 2.5000 -5.7000 61.022 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.9910 42.6665 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5445 5.0000 10.7000 299.1780 297.6440 300.4390 295.8120 300.000
+ 30 -0.5000 0.0000 2.5000 -5.6000 61.398 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.4133 42.9538 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5445 5.0000 10.6000 299.1690 297.6410 300.0160 295.8760 300.000
+ 31 -0.5000 0.0000 2.5000 -5.5000 61.595 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.8360 43.2409 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5445 5.0000 10.5000 299.1460 297.6300 299.6560 295.8320 300.000
+ 32 -0.5000 0.0000 2.5000 -5.4000 60.693 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2590 43.5278 -2.7386 0.5000 0.0000 0.0000 155.2932 -49.4134 1.5445 5.0000 10.4000 299.1250 297.6200 299.8540 295.8060 300.000
+ 33 -0.5000 0.0000 2.5000 -5.3000 61.390 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6822 43.8146 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5445 5.0000 10.3000 299.1460 297.6220 300.6250 295.7980 300.000
+ 34 -0.5000 0.0000 2.5000 -5.2000 61.042 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1058 44.1013 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5445 5.0000 10.2000 299.1670 297.6290 300.6010 295.8810 300.000
+ 35 -0.5000 0.0000 2.5000 -5.1000 60.902 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5294 44.3878 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5445 5.0000 10.1000 299.1700 297.6280 300.2280 295.8820 300.000
+ 36 -0.5000 0.0000 2.5000 -5.0000 61.372 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9531 44.6744 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5445 5.0000 10.0000 299.1530 297.6180 299.8180 295.7910 300.000
+ 37 -0.5000 0.0000 2.5000 -4.9000 61.405 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3769 44.9608 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.5445 5.0000 9.9000 299.1320 297.6080 299.6010 295.7630 300.000
+ 38 -0.5000 0.0000 2.5000 -4.8000 61.139 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8006 45.2473 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5445 5.0000 9.8000 299.1270 297.6010 300.3090 295.8610 300.000
+ 39 -0.5000 0.0000 2.5000 -4.7000 61.448 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2243 45.5338 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2899 1.5445 5.0000 9.7000 299.1480 297.6050 300.7410 296.0000 300.000
+ 40 -0.5000 0.0000 2.5000 -4.6000 61.175 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.6478 45.8204 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5445 5.0000 9.6000 299.1580 297.6090 300.4870 296.0420 300.000
+ 41 -0.5000 0.0000 2.5000 -4.5000 61.170 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0711 46.1070 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5445 5.0000 9.5000 299.1520 297.6070 300.0480 295.9730 300.000
+ 42 -0.5000 0.0000 2.5000 -4.4000 60.948 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4942 46.3937 -2.7386 0.5000 0.0000 0.0000 153.9187 -52.1624 1.5445 5.0000 9.4000 299.1290 297.5950 299.6740 295.9560 300.000
+ 43 -0.5000 0.0000 2.5000 -4.3000 61.267 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.9169 46.6806 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 1.5445 5.0000 9.3000 299.1130 297.5860 299.7830 295.8880 300.000
+ 44 -0.5000 0.0000 2.5000 -4.2000 61.014 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.3392 46.9677 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.5445 5.0000 9.2000 299.1370 297.5890 300.6290 295.8350 300.000
+ 45 -0.5000 0.0000 2.5000 -4.1000 61.405 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7612 47.2549 -2.7386 0.5000 0.0000 0.0000 153.4593 -53.0813 1.5445 5.0000 9.1000 299.1590 297.5960 300.6950 295.8930 300.000
+ 46 -0.5000 0.0000 2.5000 -4.0000 61.292 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.1826 47.5424 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5445 5.0000 9.0000 299.1610 297.5980 300.3250 295.8970 300.000
+ 47 -0.5000 0.0000 2.5000 -3.9000 60.900 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.6035 47.8301 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5445 5.0000 8.9000 299.1510 297.5920 299.9100 295.8610 300.000
+ 48 -0.5000 0.0000 2.5000 -3.8000 61.198 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0237 48.1182 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5446 5.0000 8.8000 299.1220 297.5790 299.6020 295.8400 300.000
+ 49 -0.5000 0.0000 2.5000 -3.7000 61.271 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.4433 48.4065 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5445 5.0000 8.7000 299.1170 297.5750 300.1140 295.7720 300.000
+ 50 -0.5000 0.0000 2.5000 -3.6000 61.361 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8621 48.6952 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5445 5.0000 8.6000 299.1460 297.5790 300.7280 295.7620 300.000
+ 51 -0.5000 0.0000 2.5000 -3.5000 61.059 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2802 48.9842 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5445 5.0000 8.5000 299.1600 297.5850 300.5650 295.9040 300.000
+# Sum of Counts = 459
+# Center of Mass = -6.546841+/-0.435714
+# Full Width Half-Maximum = 2.381159+/-0.160064
+# 2:33:17 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0104.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0104.dat
new file mode 100644
index 0000000..0836286
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0104.dat
@@ -0,0 +1,61 @@
+# scan = 104
+# date = 10/26/2011
+# time = 2:33:18 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+# builtin_command = scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion G (101)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -13.5000 245.807 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.0653 23.4158 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.6801 5.0000 18.5000 299.1500 297.5810 299.9520 295.9120 300.000
+ 2 1.0000 0.0000 1.0000 -13.2500 245.717 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.9098 24.3806 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.6801 5.0000 18.2500 299.1520 297.5710 300.6250 295.9070 300.000
+ 3 1.0000 0.0000 1.0000 -13.0000 244.752 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.7001 25.3177 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.6801 5.0000 18.0000 299.1080 297.5460 300.2310 295.8900 300.000
+ 4 1.0000 0.0000 1.0000 -12.7500 244.566 21.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4424 26.2302 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.6801 5.0000 17.7500 299.1170 297.5430 299.7010 295.8190 300.000
+ 5 1.0000 0.0000 1.0000 -12.5000 246.080 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6801 5.0000 17.5000 299.1430 297.5420 300.3690 295.9020 300.000
+ 6 1.0000 0.0000 1.0000 -12.2500 245.504 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.6801 5.0000 17.2500 299.1170 297.5230 300.7150 295.9340 300.000
+ 7 1.0000 0.0000 1.0000 -12.0000 246.184 9.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.6801 5.0000 17.0000 299.1000 297.5120 299.5980 295.8240 300.000
+ 8 1.0000 0.0000 1.0000 -11.7500 245.757 31.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 299.1330 297.5150 300.0840 295.8540 300.000
+ 9 1.0000 0.0000 1.0000 -11.5000 245.981 18.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 299.1310 297.5030 300.7210 295.8550 300.000
+ 10 1.0000 0.0000 1.0000 -11.2500 245.127 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1316 31.3166 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.6801 5.0000 16.2500 299.0870 297.4810 299.9390 295.7710 300.000
+ 11 1.0000 0.0000 1.0000 -11.0000 245.428 34.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6488 32.1152 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.6801 5.0000 16.0000 299.1160 297.4840 299.8260 295.8250 300.000
+ 12 1.0000 0.0000 1.0000 -10.7500 245.618 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1446 32.9031 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.6801 5.0000 15.7500 299.1270 297.4780 300.5370 295.9410 300.000
+ 13 1.0000 0.0000 1.0000 -10.5000 245.435 60.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6208 33.6813 -2.7386 0.5000 0.0000 0.0000 159.9784 -40.0430 1.6801 5.0000 15.5000 299.0890 297.4580 300.4880 295.8520 300.000
+ 14 1.0000 0.0000 1.0000 -10.2500 245.177 54.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.0791 34.4507 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.6801 5.0000 15.2500 299.0900 297.4490 299.6530 295.7060 300.000
+ 15 1.0000 0.0000 1.0000 -10.0000 244.246 77.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.6801 5.0000 15.0000 299.1240 297.4540 300.3190 295.8060 300.000
+ 16 1.0000 0.0000 1.0000 -9.7500 245.146 77.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4533 -41.0932 1.6801 5.0000 14.7500 299.0970 297.4340 300.7460 295.7710 300.000
+ 17 1.0000 0.0000 1.0000 -9.5000 245.600 98.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 299.0620 297.4160 299.6180 295.7470 300.000
+ 18 1.0000 0.0000 1.0000 -9.2499 244.884 111.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8413 1.6800 5.0000 14.2499 299.0970 297.4220 300.0580 295.7610 300.000
+ 19 1.0000 0.0000 1.0000 -9.0000 244.286 97.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.6801 5.0000 14.0000 299.0970 297.4100 300.8390 295.7790 300.000
+ 20 1.0000 0.0000 1.0000 -8.7500 244.351 122.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 299.0410 297.3870 299.7040 295.7770 300.000
+ 21 1.0000 0.0000 1.0000 -8.5000 244.726 87.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 299.0690 297.3900 299.9730 295.8200 300.000
+ 22 1.0000 0.0000 1.0000 -8.2500 244.250 45.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.2642 40.3766 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.6801 5.0000 13.2500 299.0780 297.3830 300.6870 295.8670 300.000
+ 23 1.0000 0.0000 1.0000 -8.0000 245.027 29.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6190 41.0978 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6801 5.0000 13.0000 299.0300 297.3610 300.1720 295.7910 300.000
+ 24 1.0000 0.0000 1.0000 -7.7499 245.085 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.9672 41.8164 -2.7386 0.5000 0.0000 0.0000 157.8214 -44.3572 1.6801 5.0000 12.7499 299.0510 297.3620 299.7550 295.7660 300.000
+ 25 1.0000 0.0000 1.0000 -7.5000 245.799 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.3099 42.5328 -2.7386 0.5000 0.0000 0.0000 157.5888 -44.8223 1.6801 5.0000 12.5000 299.0720 297.3610 300.4430 295.8220 300.000
+ 26 1.0000 0.0000 1.0000 -7.2500 246.012 21.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.6477 43.2476 -2.7386 0.5000 0.0000 0.0000 157.3487 -45.3026 1.6801 5.0000 12.2500 299.0410 297.3400 300.6530 295.8440 300.000
+ 27 1.0000 0.0000 1.0000 -7.0000 246.125 23.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.9814 43.9612 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6801 5.0000 12.0000 299.0130 297.3260 299.5890 295.8170 300.000
+# Sum of Counts = 1257
+# Center of Mass = -9.807865+/-0.393638
+# Full Width Half-Maximum = 3.088717+/-0.159512
+# 4:25:16 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0105.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0105.dat
new file mode 100644
index 0000000..59dbaf0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0105.dat
@@ -0,0 +1,49 @@
+# scan = 105
+# date = 10/26/2011
+# time = 4:25:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -14 -10.5 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -14 -10.5 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion L (1.5 0 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -14.0000 246.111 72.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.1228 56.2137 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.5201 5.0000 19.0000 299.0540 297.3330 300.0500 295.8220 300.000
+ 2 1.5000 0.0000 1.5000 -13.7500 246.251 73.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.0066 56.8466 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.5201 5.0000 18.7500 299.0490 297.3220 300.7450 295.8610 300.000
+ 3 1.5000 0.0000 1.5000 -13.5000 246.914 96.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.8899 57.4818 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.5201 5.0000 18.5000 299.0000 297.3000 300.0140 295.8180 300.000
+ 4 1.5000 0.0000 1.5000 -13.2500 247.037 85.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.7729 58.1194 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.5201 5.0000 18.2500 299.0240 297.3030 299.7680 295.7450 300.000
+ 5 1.5000 0.0000 1.5000 -13.0000 247.733 107.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.6558 58.7596 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.5201 5.0000 18.0000 299.0570 297.3050 300.4840 295.8000 300.000
+ 6 1.5000 0.0000 1.5000 -12.7500 247.340 83.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.5389 59.4026 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.5201 5.0000 17.7500 299.0230 297.2850 300.6950 295.7660 300.000
+ 7 1.5000 0.0000 1.5000 -12.5000 248.108 99.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 76.4223 60.0489 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.5201 5.0000 17.5000 299.0010 297.2730 299.5870 295.8080 300.000
+ 8 1.5000 0.0000 1.5000 -12.2500 248.602 86.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.3063 60.6984 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.5201 5.0000 17.2500 299.0360 297.2810 300.1640 295.8960 300.000
+ 9 1.5000 0.0000 1.5000 -12.0000 247.820 82.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.1910 61.3516 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.5201 5.0000 17.0000 299.0270 297.2700 300.7760 295.9160 300.000
+ 10 1.5000 0.0000 1.5000 -11.7500 248.168 75.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.0767 62.0086 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.5201 5.0000 16.7500 298.9860 297.2520 299.9250 295.7630 300.000
+ 11 1.5000 0.0000 1.5000 -11.5000 248.813 49.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.9636 62.6697 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.5201 5.0000 16.5000 299.0150 297.2530 299.8190 295.8200 300.000
+ 12 1.5000 0.0000 1.5000 -11.2500 248.214 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.8520 63.3352 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.5201 5.0000 16.2500 299.0220 297.2510 300.5240 295.8910 300.000
+ 13 1.5000 0.0000 1.5000 -11.0000 250.252 30.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.7419 64.0054 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.5201 5.0000 16.0000 298.9950 297.2340 300.6970 295.7940 300.000
+ 14 1.5000 0.0000 1.5000 -10.7500 249.071 47.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.6338 64.6804 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.5201 5.0000 15.7500 298.9800 297.2240 299.5870 295.7430 300.000
+ 15 1.5000 0.0000 1.5000 -10.5000 250.571 29.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.5277 65.3608 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.5201 5.0000 15.5000 299.0140 297.2310 300.1300 295.8620 300.000
+# Sum of Counts = 1049
+# Center of Mass = -12.533603+/-0.548061
+# Full Width Half-Maximum = 1.904666+/-0.268276
+# 5:28:06 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0106.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0106.dat
new file mode 100644
index 0000000..851b403
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0106.dat
@@ -0,0 +1,51 @@
+# scan = 106
+# date = 10/26/2011
+# time = 5:28:06 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -13 -9 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 0 e -13 -9 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion X (1.5 0 0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -13.0000 251.366 58.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1828 54.0250 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3918 5.0000 18.0000 299.0120 297.2230 300.7330 295.9290 300.000
+ 2 1.5000 0.0000 0.0000 -12.7500 251.326 61.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1152 54.6699 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3918 5.0000 17.7500 298.9740 297.2040 300.3050 295.8370 300.000
+ 3 1.5000 0.0000 0.0000 -12.5000 250.834 54.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.0466 55.3168 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3918 5.0000 17.5000 298.9790 297.2020 299.6710 295.8820 300.000
+ 4 1.5000 0.0000 0.0000 -12.2500 251.138 59.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9774 55.9658 -2.7386 0.5000 0.0000 0.0000 161.0621 -37.8756 2.3918 5.0000 17.2500 299.0010 297.2070 300.3070 295.9190 300.000
+ 5 1.5000 0.0000 0.0000 -12.0000 251.159 53.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.9078 56.6172 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3918 5.0000 17.0000 298.9910 297.1960 300.8430 295.8920 300.000
+ 6 1.5000 0.0000 0.0000 -11.7500 250.966 58.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8381 57.2712 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3918 5.0000 16.7500 298.9620 297.1810 299.7500 295.7990 300.000
+ 7 1.5000 0.0000 0.0000 -11.5000 253.166 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7685 57.9282 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3918 5.0000 16.5000 298.9850 297.1860 299.8630 295.7810 300.000
+ 8 1.5000 0.0000 0.0000 -11.2500 252.299 34.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6992 58.5884 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0696 2.3918 5.0000 16.2500 299.0020 297.1830 300.5580 295.8340 300.000
+ 9 1.5000 0.0000 0.0000 -11.0000 253.333 52.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6306 59.2520 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3918 5.0000 16.0000 298.9780 297.1700 300.6950 295.7880 300.000
+ 10 1.5000 0.0000 0.0000 -10.7500 253.048 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5628 59.9193 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.3918 5.0000 15.7500 298.9590 297.1600 299.5750 295.7500 300.000
+ 11 1.5000 0.0000 0.0000 -10.5000 253.534 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4960 60.5907 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.3918 5.0000 15.5000 298.9870 297.1680 300.0640 295.8760 300.000
+ 12 1.5000 0.0000 0.0000 -10.2500 253.598 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4306 61.2663 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.3918 5.0000 15.2500 298.9920 297.1620 300.7190 295.8810 300.000
+ 13 1.5000 0.0000 0.0000 -10.0000 255.100 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3668 61.9466 -2.7386 0.5000 0.0000 0.0000 159.6328 -40.7341 2.3918 5.0000 15.0000 298.9530 297.1450 300.4320 295.8320 300.000
+ 14 1.5000 0.0000 0.0000 -9.7500 254.808 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3049 62.6317 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.3918 5.0000 14.7500 298.9590 297.1450 299.6140 295.8490 300.000
+ 15 1.5000 0.0000 0.0000 -9.5000 255.464 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2451 63.3221 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.3918 5.0000 14.5000 298.9890 297.1530 300.2100 295.9100 300.000
+ 16 1.5000 0.0000 0.0000 -9.2500 255.349 18.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1877 64.0182 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.3918 5.0000 14.2500 298.9810 297.1420 300.8010 295.8000 300.000
+ 17 1.5000 0.0000 0.0000 -9.0000 255.858 29.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1329 64.7201 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.3918 5.0000 14.0000 298.9450 297.1250 300.1550 295.7500 300.000
+# Sum of Counts = 675
+# Center of Mass = -11.428148+/-0.623690
+# Full Width Half-Maximum = 2.334305+/-0.309532
+# 6:40:42 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0107.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0107.dat
new file mode 100644
index 0000000..ce77aec
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0107.dat
@@ -0,0 +1,49 @@
+# scan = 107
+# date = 10/26/2011
+# time = 6:40:43 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.5000 257.429 99.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7834 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 298.9430 297.1190 299.6350 295.5320 300.000
+ 2 0.0000 0.0000 4.5000 -14.2500 258.144 105.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 298.9780 297.1310 299.9340 295.7370 300.000
+ 3 0.0000 0.0000 4.5000 -14.0000 259.007 106.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 298.9900 297.1300 300.5730 295.5700 300.000
+ 4 0.0000 0.0000 4.5000 -13.7500 258.524 87.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 298.9740 297.1160 300.7670 295.4610 300.000
+ 5 0.0000 0.0000 4.5000 -13.5000 259.477 118.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3812 5.0000 18.5000 298.9500 297.1080 299.6150 295.5210 300.000
+ 6 0.0000 0.0000 4.5000 -13.2500 259.604 116.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 298.9750 297.1150 299.9190 295.6010 300.000
+ 7 0.0000 0.0000 4.5000 -13.0000 259.826 105.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3812 5.0000 18.0000 298.9800 297.1120 300.5550 295.7610 300.000
+ 8 0.0000 0.0000 4.5000 -12.7500 261.166 83.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 298.9490 297.0970 300.7710 295.7490 300.000
+ 9 0.0000 0.0000 4.5000 -12.5000 261.623 73.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3812 5.0000 17.5000 298.9240 297.0870 299.6580 295.6190 300.000
+ 10 0.0000 0.0000 4.5000 -12.2500 262.377 60.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.3812 5.0000 17.2500 298.9600 297.0970 299.8660 295.7290 300.000
+ 11 0.0000 0.0000 4.5000 -12.0000 263.358 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 298.9750 297.0980 300.5100 295.7300 300.000
+ 12 0.0000 0.0000 4.5000 -11.7500 262.521 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 298.9580 297.0840 300.8280 295.7310 300.000
+ 13 0.0000 0.0000 4.5000 -11.5000 263.422 32.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 298.9240 297.0730 299.7550 295.7200 300.000
+ 14 0.0000 0.0000 4.5000 -11.2500 264.646 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.3151 58.1951 -2.7386 0.5000 0.0000 0.0000 160.4651 -39.0695 2.3812 5.0000 16.2500 298.9470 297.0790 299.7750 295.7100 300.000
+ 15 0.0000 0.0000 4.5000 -11.0000 266.349 13.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.2503 58.8584 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3812 5.0000 16.0000 298.9800 297.0860 300.3910 295.7280 300.000
+# Sum of Counts = 1110
+# Center of Mass = -13.198649+/-0.560906
+# Full Width Half-Maximum = 1.805720+/-0.278939
+# 7:47:30 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0108.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0108.dat
new file mode 100644
index 0000000..af7a70e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0108.dat
@@ -0,0 +1,49 @@
+# scan = 108
+# date = 10/26/2011
+# time = 7:47:31 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.5000 266.988 111.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7834 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 298.9780 297.0790 300.8280 295.7670 300.000
+ 2 0.0000 0.0000 4.5000 -14.2500 267.741 101.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 298.9310 297.0640 300.2840 295.6540 300.000
+ 3 0.0000 0.0000 4.5000 -14.0000 266.897 93.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 298.9400 297.0640 299.5950 295.6120 300.000
+ 4 0.0000 0.0000 4.5000 -13.7500 268.470 93.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 298.9650 297.0720 300.0910 295.6930 300.000
+ 5 0.0000 0.0000 4.5000 -13.5000 268.633 116.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3812 5.0000 18.5000 298.9660 297.0670 300.6440 295.7500 300.000
+ 6 0.0000 0.0000 4.5000 -13.2500 269.165 100.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 298.9300 297.0520 300.7480 295.7460 300.000
+ 7 0.0000 0.0000 4.5000 -13.0000 269.212 95.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3812 5.0000 18.0000 298.9040 297.0440 299.6420 295.7180 300.000
+ 8 0.0000 0.0000 4.5000 -12.7500 269.160 86.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 298.9270 297.0520 299.8240 295.7520 300.000
+ 9 0.0000 0.0000 4.5000 -12.5000 269.764 84.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3812 5.0000 17.5000 298.9420 297.0550 300.3660 295.7790 300.000
+ 10 0.0000 0.0000 4.5000 -12.2500 271.995 57.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.3812 5.0000 17.2500 298.9290 297.0460 300.8160 295.7590 300.000
+ 11 0.0000 0.0000 4.5000 -12.0000 271.011 49.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 298.8860 297.0300 300.2950 295.7490 300.000
+ 12 0.0000 0.0000 4.5000 -11.7500 272.832 42.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 298.8890 297.0300 299.5900 295.7160 300.000
+ 13 0.0000 0.0000 4.5000 -11.5000 274.365 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 298.9130 297.0380 300.0050 295.7440 300.000
+ 14 0.0000 0.0000 4.5000 -11.2500 275.278 31.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.3151 58.1951 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.3812 5.0000 16.2500 298.9160 297.0350 300.5390 295.7830 300.000
+ 15 0.0000 0.0000 4.5000 -11.0000 275.718 28.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.2503 58.8584 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3812 5.0000 16.0000 298.8930 297.0240 300.8160 295.7300 300.000
+# Sum of Counts = 1122
+# Center of Mass = -13.148396+/-0.555858
+# Full Width Half-Maximum = 1.911050+/-0.279655
+# 8:55:54 AM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0109.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0109.dat
new file mode 100644
index 0000000..7ec27d8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0109.dat
@@ -0,0 +1,58 @@
+# scan = 109
+# date = 10/26/2011
+# time = 11:58:12 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -2.0000 28.845 84.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 474.9060 74.5320 497.3320 481.8780 500.000
+ 2 -1.0000 0.0000 2.6000 -1.9000 29.149 58.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2316 76.6655 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.1060 5.0000 6.9000 474.2530 71.4270 498.9070 482.3370 500.000
+ 3 -1.0000 0.0000 2.6000 -1.8000 29.409 41.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7290 77.0706 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 2.1060 5.0000 6.8000 474.8890 70.0030 503.5600 482.6770 500.000
+ 4 -1.0000 0.0000 2.6000 -1.7000 29.629 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.2234 77.4803 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.1060 5.0000 6.7000 474.5450 69.1780 498.4860 481.6090 500.000
+ 5 -1.0000 0.0000 2.6000 -1.6000 29.801 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7149 77.8948 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.1060 5.0000 6.6000 473.7720 68.7240 497.8240 481.7050 500.000
+ 6 -1.0000 0.0000 2.6000 -1.5000 29.724 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2033 78.3142 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8353 2.1060 5.0000 6.5000 474.4530 68.4420 503.5890 482.2180 500.000
+ 7 -1.0000 0.0000 2.6000 -1.4000 29.783 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6886 78.7388 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.1060 5.0000 6.4000 474.2070 67.9990 498.9470 481.2920 500.000
+ 8 -1.0000 0.0000 2.6000 -1.3000 29.894 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1705 79.1688 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.1060 5.0000 6.3000 473.4250 67.6970 497.4600 481.3520 500.000
+ 9 -1.0000 0.0000 2.6000 -1.2000 29.780 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.6492 79.6043 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.1060 5.0000 6.2000 474.1250 67.6170 503.5820 482.1020 500.000
+ 10 -1.0000 0.0000 2.6000 -1.1000 29.824 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.1243 80.0456 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.1060 5.0000 6.1000 473.9310 67.3270 499.1790 481.2010 500.000
+ 11 -1.0000 0.0000 2.6000 -1.0000 29.899 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5958 80.4928 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.1060 5.0000 6.0000 473.1580 67.0950 497.2450 481.0560 500.000
+ 12 -1.0000 0.0000 2.6000 -0.9000 29.689 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0636 80.9464 -2.7386 0.5000 0.0000 0.0000 146.2939 -67.4120 2.1060 5.0000 5.9000 473.8750 67.0150 503.5850 481.9080 500.000
+ 13 -1.0000 0.0000 2.6000 -0.8000 29.685 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.5275 81.4064 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 2.1060 5.0000 5.8000 473.7260 66.7800 499.3070 481.0610 500.000
+ 14 -1.0000 0.0000 2.6000 -0.7000 30.028 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.9875 81.8732 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 2.1060 5.0000 5.7000 472.9580 66.6210 497.0860 480.8880 500.000
+ 15 -1.0000 0.0000 2.6000 -0.6000 29.753 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.4434 82.3471 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 2.1060 5.0000 5.6000 473.6890 66.6520 503.6020 481.7070 500.000
+ 16 -1.0000 0.0000 2.6000 -0.5000 30.071 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8949 82.8283 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.1060 5.0000 5.5000 473.5760 72.5200 499.3570 481.0680 500.000
+ 17 -1.0000 0.0000 2.6000 -0.4000 29.794 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.3421 83.3173 -2.7386 0.5000 0.0000 0.0000 144.5456 -70.9087 2.1060 5.0000 5.4000 472.8470 77.4620 497.1340 480.9200 500.000
+ 18 -1.0000 0.0000 2.6000 -0.3000 29.783 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.7847 83.8144 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 2.1060 5.0000 5.3000 473.6580 81.4420 503.5520 481.8310 500.000
+ 19 -1.0000 0.0000 2.6000 -0.2000 30.034 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2225 84.3198 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 2.1060 5.0000 5.2000 473.5440 76.7810 499.2650 480.9580 500.000
+ 20 -1.0000 0.0000 2.6000 -0.1000 29.460 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.6554 84.8341 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 2.1060 5.0000 5.1000 472.8240 71.4920 497.4350 480.8590 500.000
+ 21 -1.0000 0.0000 2.6000 0.0000 29.699 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.0832 85.3576 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 2.1060 5.0000 5.0000 473.5930 69.0290 503.5380 481.6610 500.000
+ 22 -1.0000 0.0000 2.6000 0.1000 29.849 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5056 85.8909 -2.7386 0.5000 0.0000 0.0000 142.4878 -75.0243 2.1060 5.0000 4.9000 473.4460 67.8410 499.0650 480.8310 500.000
+ 23 -1.0000 0.0000 2.6000 0.2000 29.753 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.9226 86.4343 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 2.1060 5.0000 4.8000 472.7540 67.2680 497.6460 480.8420 500.000
+ 24 -1.0000 0.0000 2.6000 0.3000 29.674 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3338 86.9885 -2.7386 0.5000 0.0000 0.0000 141.5559 -76.8882 2.1060 5.0000 4.7000 473.5250 67.0320 503.5880 481.6300 500.000
+# Sum of Counts = 547
+# Center of Mass = -1.186289+/-0.078355
+# Full Width Half-Maximum = 1.474778+/-0.067140
+# 12:11:32 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0110.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0110.dat
new file mode 100644
index 0000000..9d2ff39
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0110.dat
@@ -0,0 +1,50 @@
+# scan = 110
+# date = 10/26/2011
+# time = 12:11:32 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -4.0000 29.632 133.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0830 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 472.7380 66.4400 495.4080 480.2560 500.000
+ 2 -1.0000 0.0000 2.9000 -3.9000 29.791 136.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6363 73.6665 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2130 5.0000 8.9000 473.2050 66.3790 503.0050 481.5340 500.000
+ 3 -1.0000 0.0000 2.9000 -3.8000 29.883 147.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1880 74.0211 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2130 5.0000 8.8000 473.4590 66.1470 501.3970 481.1190 500.000
+ 4 -1.0000 0.0000 2.9000 -3.7000 29.444 142.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7378 74.3786 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2130 5.0000 8.7000 472.7130 65.8760 495.2550 480.2120 500.000
+ 5 -1.0000 0.0000 2.9000 -3.6000 29.666 131.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2859 74.7390 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2130 5.0000 8.6000 473.0960 65.9310 502.7500 481.4120 500.000
+ 6 -1.0000 0.0000 2.9000 -3.5000 29.877 101.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8321 75.1025 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2130 5.0000 8.5000 473.4280 65.7920 501.7490 480.9860 500.000
+ 7 -1.0000 0.0000 2.9000 -3.4000 29.740 76.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3764 75.4692 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2130 5.0000 8.4000 472.7210 65.5590 495.2160 480.0620 500.000
+ 8 -1.0000 0.0000 2.9000 -3.3000 29.776 75.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.9188 75.8391 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2130 5.0000 8.3000 473.0060 65.6970 502.4670 481.4800 500.000
+ 9 -1.0000 0.0000 2.9000 -3.2000 29.816 58.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4592 76.2123 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.2130 5.0000 8.2000 473.4320 70.6360 501.9900 481.1480 500.000
+ 10 -1.0000 0.0000 2.9000 -3.1000 29.987 33.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9974 76.5890 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 2.2130 5.0000 8.1000 472.8030 75.5730 495.2690 480.1880 500.000
+ 11 -1.0000 0.0000 2.9000 -3.0000 29.741 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5336 76.9692 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.2130 5.0000 8.0000 473.0620 79.7970 502.2390 481.3210 500.000
+ 12 -1.0000 0.0000 2.9000 -2.9000 29.985 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.0675 77.3532 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2130 5.0000 7.9000 473.5310 77.1100 502.1730 481.1520 500.000
+ 13 -1.0000 0.0000 2.9000 -2.8000 29.642 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.5992 77.7408 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2130 5.0000 7.8000 472.9030 71.2970 495.4000 480.1690 500.000
+ 14 -1.0000 0.0000 2.9000 -2.7000 30.024 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1286 78.1325 -2.7386 0.5000 0.0000 0.0000 150.9376 -58.1243 2.2130 5.0000 7.7000 473.0460 68.5220 502.0000 481.3590 500.000
+ 15 -1.0000 0.0000 2.9000 -2.6000 29.742 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6556 78.5281 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.2130 5.0000 7.6000 473.5460 67.3730 502.3820 481.2220 500.000
+ 16 -1.0000 0.0000 2.9000 -2.5000 29.756 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1802 78.9279 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.2130 5.0000 7.5000 472.9410 66.7930 495.5380 480.1420 500.000
+# Sum of Counts = 1154
+# Center of Mass = -3.559012+/-0.148539
+# Full Width Half-Maximum = 0.716992+/-0.075098
+# 12:20:33 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0111.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0111.dat
new file mode 100644
index 0000000..2aa1e21
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0111.dat
@@ -0,0 +1,36 @@
+# scan = 111
+# date = 10/26/2011
+# time = 12:20:33 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -7.9000 29.730 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0596 65.3849 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3259 5.0000 12.9000 473.3730 66.5120 503.5750 481.6190 500.000
+ 2 -1.0000 0.0000 3.2000 -7.8000 8.331 3.000 12943.000 0.141 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6669 65.6762 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.3259 5.0000 12.8000 473.4320 66.1020 500.3110 480.9000 500.000
+# Sum of Counts = 15
+# Center of Mass = -7.880000+/-2.877388
+# Full Width Half-Maximum = 0.080000+/-3.255462
+# 12:21:30 PM 10/26/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0112.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0112.dat
new file mode 100644
index 0000000..9bfaa94
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0112.dat
@@ -0,0 +1,58 @@
+# scan = 112
+# date = 10/26/2011
+# time = 12:22:11 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -2.0000 29.806 66.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 473.2870 65.5690 503.2120 481.5790 500.000
+ 2 -1.0000 0.0000 2.6000 -1.9000 30.016 63.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2316 76.6655 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.1060 5.0000 6.9000 473.5090 65.3050 501.1030 481.0990 500.000
+ 3 -1.0000 0.0000 2.6000 -1.8000 29.630 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7290 77.0706 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.1060 5.0000 6.8000 472.7400 65.0070 495.3220 480.3650 500.000
+ 4 -1.0000 0.0000 2.6000 -1.7000 29.976 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.2234 77.4803 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.1060 5.0000 6.7000 473.2570 65.0190 503.0660 481.6220 500.000
+ 5 -1.0000 0.0000 2.6000 -1.6000 29.832 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7149 77.8948 -2.7386 0.5000 0.0000 0.0000 148.3533 -63.2932 2.1060 5.0000 6.6000 473.5430 64.8270 501.4040 481.2470 500.000
+ 6 -1.0000 0.0000 2.6000 -1.5000 29.503 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2033 78.3142 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.1060 5.0000 6.5000 472.7920 64.6300 495.1830 480.4490 500.000
+ 7 -1.0000 0.0000 2.6000 -1.4000 29.738 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6886 78.7388 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.1060 5.0000 6.4000 473.2410 70.5780 502.7820 481.8280 500.000
+ 8 -1.0000 0.0000 2.6000 -1.3000 29.601 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1705 79.1688 -2.7386 0.5000 0.0000 0.0000 147.5185 -64.9628 2.1060 5.0000 6.3000 473.6340 75.4270 501.6430 481.4750 500.000
+ 9 -1.0000 0.0000 2.6000 -1.2000 29.824 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.6492 79.6043 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.1060 5.0000 6.2000 472.9690 79.2440 495.1870 480.4620 500.000
+ 10 -1.0000 0.0000 2.6000 -1.1000 29.595 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.1243 80.0456 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.1060 5.0000 6.1000 473.3390 74.8030 502.6930 481.7450 500.000
+ 11 -1.0000 0.0000 2.6000 -1.0000 29.617 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5958 80.4928 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.1060 5.0000 6.0000 473.7340 69.3110 501.9240 481.4520 500.000
+ 12 -1.0000 0.0000 2.6000 -0.9000 29.853 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0636 80.9464 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 2.1060 5.0000 5.9000 473.0670 66.7310 495.1660 480.4400 500.000
+ 13 -1.0000 0.0000 2.6000 -0.8000 29.882 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.5275 81.4064 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 2.1060 5.0000 5.8000 473.3140 66.1010 502.3540 481.7110 500.000
+ 14 -1.0000 0.0000 2.6000 -0.7000 29.609 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.9875 81.8732 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 2.1060 5.0000 5.7000 473.7710 65.6250 502.1520 481.5540 500.000
+ 15 -1.0000 0.0000 2.6000 -0.6000 29.743 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.4434 82.3471 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 2.1060 5.0000 5.6000 473.1170 65.1310 495.2680 480.4950 500.000
+ 16 -1.0000 0.0000 2.6000 -0.5000 29.769 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8949 82.8283 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.1060 5.0000 5.5000 473.2790 65.0430 502.0890 481.7610 500.000
+ 17 -1.0000 0.0000 2.6000 -0.4000 29.925 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.3421 83.3173 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 2.1060 5.0000 5.4000 473.7860 64.7910 502.3570 481.5790 500.000
+ 18 -1.0000 0.0000 2.6000 -0.3000 29.765 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.7847 83.8144 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 2.1060 5.0000 5.3000 473.1550 64.5040 495.3900 480.5580 500.000
+ 19 -1.0000 0.0000 2.6000 -0.2000 29.864 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2225 84.3198 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 2.1060 5.0000 5.2000 473.2570 64.5540 501.9160 481.7510 500.000
+ 20 -1.0000 0.0000 2.6000 -0.1000 29.476 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.6554 84.8341 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 2.1060 5.0000 5.1000 473.8010 64.3550 502.5220 481.7270 500.000
+ 21 -1.0000 0.0000 2.6000 0.0000 29.837 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.0832 85.3576 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 2.1060 5.0000 5.0000 473.2030 64.0910 495.5830 480.5770 500.000
+ 22 -1.0000 0.0000 2.6000 0.1000 29.483 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5056 85.8909 -2.7386 0.5000 0.0000 0.0000 142.4877 -75.0243 2.1060 5.0000 4.9000 473.2270 64.1280 501.6290 481.8540 500.000
+ 23 -1.0000 0.0000 2.6000 0.2000 29.799 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.9226 86.4343 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 2.1060 5.0000 4.8000 473.8210 63.9990 502.7480 481.8630 500.000
+ 24 -1.0000 0.0000 2.6000 0.3000 29.896 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3338 86.9885 -2.7386 0.5000 0.0000 0.0000 141.5559 -76.8882 2.1060 5.0000 4.7000 473.2690 66.8650 495.8190 480.7550 500.000
+# Sum of Counts = 454
+# Center of Mass = -1.220044+/-0.088150
+# Full Width Half-Maximum = 1.484272+/-0.075723
+# 12:35:27 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0113.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0113.dat
new file mode 100644
index 0000000..66dac1c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0113.dat
@@ -0,0 +1,50 @@
+# scan = 113
+# date = 10/26/2011
+# time = 12:35:27 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -4.0000 29.502 139.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0831 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 473.8370 75.6880 503.6570 482.1320 500.000
+ 2 -1.0000 0.0000 2.9000 -3.9000 29.869 143.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6363 73.6665 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2130 5.0000 8.9000 473.7100 78.4560 498.9180 481.2630 500.000
+ 3 -1.0000 0.0000 2.9000 -3.8000 29.933 126.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1880 74.0211 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2130 5.0000 8.8000 473.0380 72.2470 497.3470 481.2440 500.000
+ 4 -1.0000 0.0000 2.9000 -3.7000 29.425 114.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7378 74.3786 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2130 5.0000 8.7000 473.8900 67.5420 503.7100 482.0440 500.000
+ 5 -1.0000 0.0000 2.9000 -3.6000 29.557 150.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2859 74.7390 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2130 5.0000 8.6000 473.8180 65.8380 499.6380 481.2670 500.000
+ 6 -1.0000 0.0000 2.9000 -3.5000 29.612 114.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8321 75.1025 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2130 5.0000 8.5000 473.0460 65.2330 496.2690 480.9440 500.000
+ 7 -1.0000 0.0000 2.9000 -3.4000 29.787 81.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3764 75.4692 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2130 5.0000 8.4000 473.8020 65.0600 503.6250 481.9580 500.000
+ 8 -1.0000 0.0000 2.9000 -3.3000 29.801 76.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.9188 75.8391 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2130 5.0000 8.3000 473.8710 64.5870 500.5530 481.3600 500.000
+ 9 -1.0000 0.0000 2.9000 -3.2000 29.763 62.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4592 76.2123 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1616 2.2130 5.0000 8.2000 473.0610 64.1450 495.4340 480.7440 500.000
+ 10 -1.0000 0.0000 2.9000 -3.1000 29.704 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9974 76.5890 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5382 2.2130 5.0000 8.1000 473.6940 64.1170 503.3360 482.0240 500.000
+ 11 -1.0000 0.0000 2.9000 -3.0000 29.794 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5336 76.9692 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.2130 5.0000 8.0000 473.9210 63.8990 501.3360 481.6570 500.000
+ 12 -1.0000 0.0000 2.9000 -2.9000 29.728 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.0675 77.3532 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2130 5.0000 7.9000 473.1540 63.6500 495.0280 480.7970 500.000
+ 13 -1.0000 0.0000 2.9000 -2.8000 29.492 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.5992 77.7408 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2130 5.0000 7.8000 473.5730 63.6740 502.7670 482.1450 500.000
+ 14 -1.0000 0.0000 2.9000 -2.7000 29.745 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1286 78.1325 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.2130 5.0000 7.7000 473.9550 63.5120 502.0220 481.8590 500.000
+ 15 -1.0000 0.0000 2.9000 -2.6000 29.698 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6556 78.5281 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.2130 5.0000 7.6000 473.2780 63.2540 495.1220 480.8050 500.000
+ 16 -1.0000 0.0000 2.9000 -2.5000 29.642 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1802 78.9279 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.2130 5.0000 7.5000 473.4640 63.8840 502.0640 482.0430 500.000
+# Sum of Counts = 1195
+# Center of Mass = -3.532301+/-0.144916
+# Full Width Half-Maximum = 0.752687+/-0.073468
+# 12:44:25 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0114.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0114.dat
new file mode 100644
index 0000000..8641384
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0114.dat
@@ -0,0 +1,79 @@
+# scan = 114
+# date = 10/26/2011
+# time = 12:44:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -7.9000 29.593 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0596 65.3850 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3259 5.0000 12.9000 473.8660 72.1730 499.9960 481.5780 500.000
+ 2 -1.0000 0.0000 3.2000 -7.8000 29.395 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6669 65.6762 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.3259 5.0000 12.8000 473.1160 76.2430 495.8550 481.1410 500.000
+ 3 -1.0000 0.0000 3.2000 -7.7000 29.637 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2736 65.9686 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.3259 5.0000 12.7000 473.8330 75.9400 503.4220 482.3850 500.000
+ 4 -1.0000 0.0000 3.2000 -7.6000 29.645 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.8796 66.2622 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.3259 5.0000 12.6000 474.0190 69.0050 501.0590 481.8600 500.000
+ 5 -1.0000 0.0000 3.2000 -7.5000 29.714 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4850 66.5572 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.3259 5.0000 12.5000 473.2700 65.4320 495.1220 480.9900 500.000
+ 6 -1.0000 0.0000 3.2000 -7.4000 29.602 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0897 66.8534 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.3259 5.0000 12.4000 473.7330 64.7960 502.8880 482.3500 500.000
+ 7 -1.0000 0.0000 3.2000 -7.3000 29.554 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6936 67.1510 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.3259 5.0000 12.3000 474.0690 64.2590 501.9680 481.9400 500.000
+ 8 -1.0000 0.0000 3.2000 -7.2000 29.792 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2968 67.4500 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.3259 5.0000 12.2000 473.3870 64.2230 495.1460 480.7940 500.000
+ 9 -1.0000 0.0000 3.2000 -7.1000 29.821 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8993 67.7504 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.3259 5.0000 12.1000 473.5240 64.1840 501.9470 482.0020 500.000
+ 10 -1.0000 0.0000 3.2000 -7.0000 29.648 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5010 68.0522 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3259 5.0000 12.0000 474.0590 64.0590 502.7030 481.8710 500.000
+ 11 -1.0000 0.0000 3.2000 -6.9000 29.735 47.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1018 68.3555 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3259 5.0000 11.9000 473.4980 63.7620 495.9650 480.8050 500.000
+ 12 -1.0000 0.0000 3.2000 -6.8000 29.522 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7018 68.6602 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3259 5.0000 11.8000 473.3350 63.7060 500.7670 481.9810 500.000
+ 13 -1.0000 0.0000 3.2000 -6.7000 29.433 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3010 68.9666 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3259 5.0000 11.7000 474.0200 63.5710 503.2600 482.1480 500.000
+ 14 -1.0000 0.0000 3.2000 -6.6000 29.707 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8992 69.2746 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3259 5.0000 11.6000 473.6110 63.3210 497.2880 481.0460 500.000
+ 15 -1.0000 0.0000 3.2000 -6.5000 29.618 48.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4966 69.5841 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3259 5.0000 11.5000 473.1510 63.3740 499.1770 481.7800 500.000
+ 16 -1.0000 0.0000 3.2000 -6.4000 29.538 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0930 69.8954 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.3259 5.0000 11.4000 473.9630 63.3720 503.6400 482.1190 500.000
+ 17 -1.0000 0.0000 3.2000 -6.3000 29.831 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6884 70.2083 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 2.3259 5.0000 11.3000 473.7290 66.5340 498.5480 481.3270 500.000
+ 18 -1.0000 0.0000 3.2000 -6.2000 29.773 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2829 70.5230 -2.7386 0.5000 0.0000 0.0000 156.2485 -47.5028 2.3259 5.0000 11.2000 473.0830 71.9010 497.5090 481.5120 500.000
+ 19 -1.0000 0.0000 3.2000 -6.1000 29.636 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8763 70.8395 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 2.3259 5.0000 11.1000 473.9900 76.1430 503.6900 482.3790 500.000
+ 20 -1.0000 0.0000 3.2000 -6.0000 29.707 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4687 71.1579 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3259 5.0000 11.0000 473.9260 75.6870 499.5780 481.4840 500.000
+ 21 -1.0000 0.0000 3.2000 -5.9000 29.657 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0600 71.4781 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3259 5.0000 10.9000 473.1760 68.7680 496.3850 481.2170 500.000
+ 22 -1.0000 0.0000 3.2000 -5.8000 29.557 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6502 71.8003 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3259 5.0000 10.8000 473.9620 65.5670 503.6090 482.1980 500.000
+ 23 -1.0000 0.0000 3.2000 -5.7000 29.620 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2392 72.1244 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3259 5.0000 10.7000 474.0260 64.4740 500.5740 481.5130 500.000
+ 24 -1.0000 0.0000 3.2000 -5.6000 29.317 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.8271 72.4507 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3259 5.0000 10.6000 473.2060 63.9930 495.4140 480.9690 500.000
+ 25 -1.0000 0.0000 3.2000 -5.5000 29.725 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4138 72.7790 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3259 5.0000 10.5000 473.7790 63.9590 503.1490 482.1580 500.000
+ 26 -1.0000 0.0000 3.2000 -5.4000 29.667 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9992 73.1094 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3259 5.0000 10.4000 474.0150 63.5660 501.4890 481.7460 500.000
+ 27 -1.0000 0.0000 3.2000 -5.3000 29.613 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5834 73.4421 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3259 5.0000 10.3000 473.2640 63.3220 495.0410 480.9350 500.000
+ 28 -1.0000 0.0000 3.2000 -5.2000 29.712 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1662 73.7770 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3259 5.0000 10.2000 473.5920 63.3580 502.5220 482.1980 500.000
+ 29 -1.0000 0.0000 3.2000 -5.1000 29.827 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7478 74.1142 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.3259 5.0000 10.1000 474.0170 63.2850 502.2540 482.0110 500.000
+ 30 -1.0000 0.0000 3.2000 -5.0000 29.773 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3280 74.4538 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3259 5.0000 10.0000 473.3640 63.0950 495.3220 480.8960 500.000
+ 31 -1.0000 0.0000 3.2000 -4.9000 29.789 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9067 74.7959 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3259 5.0000 9.9000 473.4340 63.2240 501.7120 481.9540 500.000
+ 32 -1.0000 0.0000 3.2000 -4.8000 29.700 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.4840 75.1405 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3259 5.0000 9.8000 473.9960 63.1190 502.8590 482.0150 500.000
+ 33 -1.0000 0.0000 3.2000 -4.7000 29.495 54.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.0599 75.4876 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3259 5.0000 9.7000 473.4520 62.9160 496.1990 480.8650 500.000
+ 34 -1.0000 0.0000 3.2000 -4.6000 29.789 65.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.6342 75.8374 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3259 5.0000 9.6000 473.2470 67.6900 500.4720 481.9870 500.000
+ 35 -1.0000 0.0000 3.2000 -4.5000 29.735 84.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2070 76.1900 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3259 5.0000 9.5000 474.0110 72.6340 503.2490 482.2810 500.000
+ 36 -1.0000 0.0000 3.2000 -4.4000 29.642 79.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7781 76.5453 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3259 5.0000 9.4000 473.6430 76.4550 497.1550 481.2310 500.000
+ 37 -1.0000 0.0000 3.2000 -4.3000 29.786 72.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3476 76.9035 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.3259 5.0000 9.3000 473.2430 73.3880 499.4610 481.9940 500.000
+ 38 -1.0000 0.0000 3.2000 -4.2000 29.833 82.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9154 77.2647 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3259 5.0000 9.2000 474.0620 67.6700 503.6080 482.2130 500.000
+ 39 -1.0000 0.0000 3.2000 -4.1000 29.503 58.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.4815 77.6289 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.3259 5.0000 9.1000 473.7810 65.1080 498.1600 481.2700 500.000
+ 40 -1.0000 0.0000 3.2000 -4.0000 29.452 61.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.0458 77.9962 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3259 5.0000 9.0000 473.1650 64.1560 498.0010 481.6090 500.000
+ 41 -1.0000 0.0000 3.2000 -3.9000 29.734 43.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6083 78.3668 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.3259 5.0000 8.9000 473.9950 63.7110 503.7820 482.3580 500.000
+ 42 -1.0000 0.0000 3.2000 -3.8000 29.964 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1689 78.7406 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 2.3259 5.0000 8.8000 473.8270 63.2950 499.2880 481.4550 500.000
+ 43 -1.0000 0.0000 3.2000 -3.7000 29.644 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7276 79.1179 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.3259 5.0000 8.7000 473.0450 63.0900 496.6310 481.2850 500.000
+ 44 -1.0000 0.0000 3.2000 -3.6000 29.673 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.2842 79.4987 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3259 5.0000 8.6000 473.8380 63.0830 503.7110 482.2440 500.000
+ 45 -1.0000 0.0000 3.2000 -3.5000 29.556 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.8389 79.8830 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3259 5.0000 8.5000 473.8360 62.8580 500.2770 481.5980 500.000
+# Sum of Counts = 1476
+# Center of Mass = -5.387060+/-0.201078
+# Full Width Half-Maximum = 2.559145+/-0.085855
+# 1:08:42 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0115.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0115.dat
new file mode 100644
index 0000000..06bdd26
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0115.dat
@@ -0,0 +1,77 @@
+# scan = 115
+# date = 10/26/2011
+# time = 1:08:42 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.5), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.2000 29.743 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8852 68.9950 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.4439 5.0000 13.2000 473.0420 62.7000 498.6290 481.8000 500.000
+ 2 -1.0000 0.0000 3.5000 -8.1000 29.700 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.5072 69.2901 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 2.4439 5.0000 13.1000 473.8850 62.6830 503.7350 482.3060 500.000
+ 3 -1.0000 0.0000 3.5000 -8.0000 29.685 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1284 69.5865 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.4439 5.0000 13.0000 473.6840 62.4330 498.8770 481.3920 500.000
+ 4 -1.0000 0.0000 3.5000 -7.9000 29.671 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.7488 69.8843 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.4439 5.0000 12.9000 472.9580 62.3080 496.9980 481.4200 500.000
+ 5 -1.0000 0.0000 3.5000 -7.8000 29.724 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3686 70.1836 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.4439 5.0000 12.8000 473.7940 63.1820 503.7480 482.4200 500.000
+ 6 -1.0000 0.0000 3.5000 -7.7000 29.637 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.9876 70.4843 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.4439 5.0000 12.7000 473.7940 69.1250 500.0110 481.6890 500.000
+ 7 -1.0000 0.0000 3.5000 -7.6000 29.403 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.6058 70.7866 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.4439 5.0000 12.6000 473.0270 73.4340 495.8080 481.2090 500.000
+ 8 -1.0000 0.0000 3.5000 -7.5000 29.596 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2231 71.0903 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.4439 5.0000 12.5000 473.7740 76.6280 503.4010 482.4180 500.000
+ 9 -1.0000 0.0000 3.5000 -7.4000 29.727 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8396 71.3956 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.4439 5.0000 12.4000 473.9610 70.3690 501.0610 481.7350 500.000
+ 10 -1.0000 0.0000 3.5000 -7.3000 29.708 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4553 71.7026 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.4439 5.0000 12.3000 473.2030 65.0470 495.1450 480.9260 500.000
+ 11 -1.0000 0.0000 3.5000 -7.2000 29.515 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0701 72.0111 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.4439 5.0000 12.2000 473.6980 63.7930 502.9390 482.1500 500.000
+ 12 -1.0000 0.0000 3.5000 -7.1000 29.657 33.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6840 72.3214 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.4439 5.0000 12.1000 474.0370 63.1850 502.0170 481.8740 500.000
+ 13 -1.0000 0.0000 3.5000 -7.0000 29.626 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2970 72.6334 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.4439 5.0000 12.0000 473.3290 62.7710 495.1240 480.9230 500.000
+ 14 -1.0000 0.0000 3.5000 -6.9000 29.923 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9090 72.9471 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.4439 5.0000 11.9000 473.4720 62.7200 501.9630 482.0200 500.000
+ 15 -1.0000 0.0000 3.4999 -6.8000 29.538 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5223 73.2626 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.4439 5.0000 11.8000 473.1140 62.2200 499.0140 481.7430 500.000
+ 16 -1.0000 0.0000 3.5000 -6.7000 29.740 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1301 73.5800 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.4439 5.0000 11.7000 473.9430 62.1020 503.6960 482.1650 500.000
+ 17 -1.0000 0.0000 3.5000 -6.6000 29.508 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7391 73.8993 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.4439 5.0000 11.6000 473.6920 61.8050 498.6240 481.2400 500.000
+ 18 -1.0000 0.0000 3.5000 -6.5000 29.735 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3470 74.2205 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.4439 5.0000 11.5000 472.9860 61.7510 497.2630 481.3750 500.000
+ 19 -1.0000 0.0000 3.5000 -6.4000 29.682 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9539 74.5437 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.4439 5.0000 11.4000 473.8380 61.7730 503.7630 482.2060 500.000
+ 20 -1.0000 0.0000 3.5000 -6.3000 29.496 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5596 74.8689 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.4439 5.0000 11.3000 473.7670 61.5790 499.8330 481.4200 500.000
+ 21 -1.0000 0.0000 3.5000 -6.2000 29.867 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1642 75.1962 -2.7386 0.5000 0.0000 0.0000 156.2485 -47.5028 2.4439 5.0000 11.2000 472.9610 61.4600 495.8920 481.1580 500.000
+ 22 -1.0000 0.0000 3.5000 -6.1000 29.930 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7677 75.5257 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.4439 5.0000 11.1000 473.7140 65.2030 503.5230 482.3140 500.000
+ 23 -1.0000 0.0000 3.5000 -6.0000 29.822 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.3699 75.8573 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.4439 5.0000 11.0000 473.8490 70.4120 500.7850 481.7790 500.000
+ 24 -1.0000 0.0000 3.5000 -5.9000 29.682 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9710 76.1912 -2.7386 0.5000 0.0000 0.0000 155.9034 -48.1930 2.4439 5.0000 10.9000 473.0830 74.3540 495.2750 481.1380 500.000
+ 25 -1.0000 0.0000 3.5000 -5.8000 29.769 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5707 76.5273 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.4439 5.0000 10.8000 473.6620 73.3300 503.1600 482.4370 500.000
+ 26 -1.0000 0.0000 3.5000 -5.7000 29.536 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1692 76.8658 -2.7386 0.5000 0.0000 0.0000 155.6648 -48.6702 2.4439 5.0000 10.7000 473.9680 66.5090 501.6600 481.9030 500.000
+ 27 -1.0000 0.0000 3.5000 -5.6000 29.381 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7663 77.2068 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.4439 5.0000 10.6000 473.2560 63.6840 495.0130 481.0030 500.000
+ 28 -1.0000 0.0000 3.5000 -5.5000 29.700 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.3621 77.5502 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.4439 5.0000 10.5000 473.5240 63.2630 502.3210 482.3200 500.000
+ 29 -1.0000 0.0000 3.5000 -5.4000 29.441 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.9565 77.8961 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.4439 5.0000 10.4000 474.0040 63.1460 502.5100 482.0610 500.000
+ 30 -1.0000 0.0000 3.5000 -5.3000 29.731 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5495 78.2447 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.4439 5.0000 10.3000 473.3920 62.9020 495.6140 480.9010 500.000
+ 31 -1.0000 0.0000 3.5000 -5.2000 29.848 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1410 78.5959 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.4439 5.0000 10.2000 473.3280 62.7270 501.1620 482.1320 500.000
+ 32 -1.0000 0.0000 3.5000 -5.1000 29.614 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7310 78.9498 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.4439 5.0000 10.1000 473.9770 62.2440 503.1710 482.2260 500.000
+ 33 -1.0000 0.0000 3.5000 -5.0000 29.814 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3195 79.3066 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.4439 5.0000 10.0000 473.4970 61.7600 496.7760 481.0410 500.000
+ 34 -1.0000 0.0000 3.5000 -4.9000 29.891 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9064 79.6663 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.4439 5.0000 9.9000 473.1230 61.5920 499.7150 481.9760 500.000
+ 35 -1.0000 0.0000 3.5000 -4.8000 29.769 57.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.4917 80.0289 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.4439 5.0000 9.8000 473.9180 61.4640 503.5950 482.1940 500.000
+ 36 -1.0000 0.0000 3.5000 -4.7000 29.727 39.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0753 80.3946 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 2.4439 5.0000 9.7000 473.5800 61.2370 497.9690 481.2000 500.000
+ 37 -1.0000 0.0000 3.5000 -4.6000 29.757 48.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.6572 80.7634 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 2.4439 5.0000 9.6000 472.9650 61.1830 498.1530 481.7180 500.000
+ 38 -1.0000 0.0000 3.5000 -4.5000 29.505 50.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.2374 81.1354 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.4439 5.0000 9.5000 473.8180 61.1800 503.7730 482.4070 500.000
+ 39 -1.0000 0.0000 3.5000 -4.4000 29.587 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8158 81.5108 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.4439 5.0000 9.4000 473.6470 61.0010 499.2040 481.5270 500.000
+ 40 -1.0000 0.0000 3.5000 -4.3000 29.853 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.3924 81.8895 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.4439 5.0000 9.3000 472.8840 61.4490 496.5520 481.3750 500.000
+ 41 -1.0000 0.0000 3.5000 -4.2000 29.651 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9671 82.2717 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.4439 5.0000 9.2000 473.7400 67.6740 503.6870 482.4890 500.000
+ 42 -1.0000 0.0000 3.5000 -4.1000 29.694 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.5399 82.6575 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.4439 5.0000 9.1000 473.7780 72.0430 500.2170 481.8160 500.000
+ 43 -1.0000 0.0000 3.5000 -4.0000 29.813 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.1107 83.0470 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 2.4439 5.0000 9.0000 473.0060 74.8550 495.6880 481.2170 500.000
+# Sum of Counts = 1264
+# Center of Mass = -5.990665+/-0.240971
+# Full Width Half-Maximum = 2.546212+/-0.098197
+# 1:32:49 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0116.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0116.dat
new file mode 100644
index 0000000..db64e50
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0116.dat
@@ -0,0 +1,42 @@
+# scan = 116
+# date = 10/26/2011
+# time = 1:32:50 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.8), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.8000 -7.9000 29.715 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6093 74.6442 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5663 5.0000 12.9000 473.9050 66.4100 503.7820 482.4380 500.000
+ 2 -1.0000 0.0000 3.8000 -7.8000 29.711 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2389 74.9540 -2.7386 0.5000 0.0000 0.0000 157.8670 -44.2658 2.5663 5.0000 12.8000 473.7590 63.0260 499.2580 481.5160 500.000
+ 3 -1.0000 0.0000 3.8000 -7.7000 29.855 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8677 75.2656 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5663 5.0000 12.7000 472.9910 62.2370 496.5020 481.3210 500.000
+ 4 -1.0000 0.0000 3.8000 -7.6000 29.623 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4955 75.5789 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5663 5.0000 12.6000 473.8020 61.9900 503.7000 482.2740 500.000
+ 5 -1.0000 0.0000 3.8000 -7.5000 29.672 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1223 75.8940 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5663 5.0000 12.5000 473.8130 61.6720 500.4810 481.6180 500.000
+ 6 -1.0000 0.0000 3.8000 -7.4000 29.754 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7482 76.2110 -2.7386 0.5000 0.0000 0.0000 157.4936 -45.0126 2.5663 5.0000 12.4000 472.9730 61.4060 495.3410 481.0510 500.000
+ 7 -1.0000 0.0000 3.8000 -7.3000 29.865 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3730 76.5298 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5663 5.0000 12.3000 473.5870 61.4020 503.2630 482.2270 500.000
+ 8 -0.9963 0.0000 3.8050 -7.2711 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1734 76.5592 -2.7386 0.5000 0.0000 0.0000 157.3313 -45.2615 2.5647 5.0000 12.2710 473.8300 61.1690 501.7780 481.7580 500.000
+# Sum of Counts = 140
+# Center of Mass = -7.582857+/-0.906493
+# Full Width Half-Maximum = 0.413309+/-0.721053
+# 1:36:44 PM 10/26/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0117.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0117.dat
new file mode 100644
index 0000000..82c000d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0117.dat
@@ -0,0 +1,45 @@
+# scan = 117
+# date = 10/26/2011
+# time = 1:38:11 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -4.0 -3.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.5 e -4.0 -3.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.5), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -4.0000 29.857 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.1107 83.0470 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.4439 5.0000 9.0000 473.8130 60.7890 502.5080 482.1220 500.000
+ 2 -1.0000 0.0000 3.5000 -3.9000 30.163 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.6794 83.4404 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.4439 5.0000 8.9000 473.1710 60.5350 495.4490 480.7530 500.000
+ 3 -1.0000 0.0000 3.5000 -3.8000 29.895 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2461 83.8376 -2.7386 0.5000 0.0000 0.0000 152.9745 -54.0507 2.4439 5.0000 8.8000 473.1590 60.6350 501.4420 482.1420 500.000
+ 4 -1.0000 0.0000 3.5000 -3.7000 29.861 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.8106 84.2389 -2.7386 0.5000 0.0000 0.0000 152.8069 -54.3860 2.4439 5.0000 8.7000 473.7860 60.5670 503.0850 482.2050 500.000
+ 5 -1.0000 0.0000 3.5000 -3.6000 30.011 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.3730 84.6443 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.4439 5.0000 8.6000 473.2680 60.3660 496.4760 481.0090 500.000
+ 6 -1.0000 0.0000 3.5000 -3.5000 29.939 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.9330 85.0541 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.4439 5.0000 8.5000 472.9820 65.5830 500.1070 482.0870 500.000
+ 7 -1.0000 0.0000 3.5000 -3.4000 29.808 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.4908 85.4682 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.4439 5.0000 8.4000 473.7950 70.4630 503.4370 482.3480 500.000
+ 8 -1.0000 0.0000 3.5000 -3.3000 29.739 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.0461 85.8869 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.4439 5.0000 8.3000 473.4500 74.2100 497.5130 481.3470 500.000
+ 9 -1.0000 0.0000 3.5000 -3.2000 29.972 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.5990 86.3103 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.4439 5.0000 8.2000 472.9790 69.3190 498.9370 481.9450 500.000
+ 10 -1.0000 0.0000 3.5000 -3.1000 29.753 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.1494 86.7386 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.4439 5.0000 8.1000 473.8440 63.4750 503.6590 482.3890 500.000
+ 11 -1.0000 0.0000 3.5000 -3.0000 29.415 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.6972 87.1718 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.4439 5.0000 8.0000 473.5830 61.9260 498.4420 481.3780 500.000
+# Sum of Counts = 122
+# Center of Mass = -3.616393+/-0.463963
+# Full Width Half-Maximum = 0.649015+/-0.317432
+# 1:44:15 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0118.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0118.dat
new file mode 100644
index 0000000..bd716eb
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0118.dat
@@ -0,0 +1,40 @@
+# scan = 118
+# date = 10/26/2011
+# time = 1:44:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -3.5 -3.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -3.5 -3.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -3.5000 29.983 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.8389 79.8830 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3259 5.0000 8.5000 473.0700 61.4840 500.0860 482.1460 500.000
+ 2 -1.0000 0.0000 3.2000 -3.4000 29.551 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.3914 80.2712 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.3259 5.0000 8.4000 473.8330 61.2540 503.4660 482.2040 500.000
+ 3 -1.0000 0.0000 3.2000 -3.3000 29.736 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.9419 80.6632 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.3259 5.0000 8.3000 473.4540 60.9460 497.6720 481.1500 500.000
+ 4 -1.0000 0.0000 3.2000 -3.2000 29.788 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.4901 81.0591 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.3259 5.0000 8.2000 472.9020 60.8570 498.6430 481.7080 500.000
+ 5 -1.0000 0.0000 3.2000 -3.1000 29.902 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.0360 81.4591 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.3259 5.0000 8.1000 473.7470 60.7790 503.7530 482.2550 500.000
+ 6 -1.0000 0.0000 3.2000 -3.0000 29.995 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.5796 81.8633 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.3259 5.0000 8.0000 473.4990 60.5380 498.7600 481.3460 500.000
+# Sum of Counts = 83
+# Center of Mass = -3.287952+/-0.510734
+# Full Width Half-Maximum = 0.342067+/-0.444451
+# 1:47:37 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0119.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0119.dat
new file mode 100644
index 0000000..9b809c9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0119.dat
@@ -0,0 +1,50 @@
+# scan = 119
+# date = 10/26/2011
+# time = 1:50:08 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -5.5 -4.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -5.5 -4.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -5.5000 29.870 85.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.6072 68.3259 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.2130 5.0000 10.5000 473.5510 60.0870 500.3420 481.6430 500.000
+ 2 -1.0000 0.0000 2.9000 -5.4000 29.978 50.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1810 68.6439 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.2130 5.0000 10.4000 472.7200 59.9890 495.4650 481.0690 500.000
+ 3 -1.0000 0.0000 2.9000 -5.3000 30.027 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7539 68.9636 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.2130 5.0000 10.3000 473.4260 66.0560 503.3850 482.4350 500.000
+ 4 -1.0000 0.0000 2.9000 -5.2000 30.024 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3256 69.2854 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 2.2130 5.0000 10.2000 473.6430 70.6370 501.1820 481.9110 500.000
+ 5 -1.0000 0.0000 2.9000 -5.0999 29.868 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8961 69.6090 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.2130 5.0000 10.1000 472.8790 73.9580 495.0840 481.0260 500.000
+ 6 -1.0000 0.0000 2.9000 -5.0000 29.787 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4654 69.9347 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 2.2130 5.0000 10.0000 473.3840 67.3730 502.9570 482.3570 500.000
+ 7 -1.0000 0.0000 2.9000 -4.9000 29.851 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0334 70.2624 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.2130 5.0000 9.9000 473.7330 62.4300 501.8930 481.8580 500.000
+ 8 -1.0000 0.0000 2.9000 -4.8000 30.057 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6002 70.5922 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.2130 5.0000 9.8000 473.0110 61.2770 495.0380 480.8730 500.000
+ 9 -1.0000 0.0000 2.9000 -4.7000 29.933 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.1656 70.9242 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.2130 5.0000 9.7000 473.2440 61.0870 502.2310 482.0900 500.000
+ 10 -1.0000 0.0000 2.9000 -4.6000 30.042 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7297 71.2585 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.2130 5.0000 9.6000 473.7230 60.7960 502.5390 482.0060 500.000
+ 11 -1.0000 0.0000 2.9000 -4.5000 29.927 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2923 71.5951 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2130 5.0000 9.5000 473.0810 60.4670 495.5140 480.7010 500.000
+ 12 -1.0000 0.0000 2.9000 -4.4000 30.146 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8535 71.9340 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.2130 5.0000 9.4000 473.0660 60.4870 501.3770 481.9180 500.000
+ 13 -1.0000 0.0000 2.9000 -4.3000 30.228 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4132 72.2754 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2130 5.0000 9.3000 473.7040 60.3510 503.0620 482.0570 500.000
+ 14 -1.0000 0.0000 2.9000 -4.2000 29.973 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.9714 72.6192 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2130 5.0000 9.2000 473.1560 60.0740 496.3500 480.8080 500.000
+ 15 -1.0000 0.0000 2.9000 -4.1000 29.823 57.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.5280 72.9656 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2130 5.0000 9.1000 472.8840 60.1050 500.2980 482.0580 500.000
+ 16 -1.0000 0.0000 2.9000 -4.0000 29.990 103.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0830 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 473.6370 60.0650 503.4660 482.0890 500.000
+# Sum of Counts = 526
+# Center of Mass = -4.725662+/-0.292572
+# Full Width Half-Maximum = 1.201844+/-0.219090
+# 1:59:01 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0120.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0120.dat
new file mode 100644
index 0000000..e811670
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0120.dat
@@ -0,0 +1,45 @@
+# scan = 120
+# date = 10/26/2011
+# time = 1:59:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -3.0 -2.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -3.0 -2.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -3.0000 29.715 114.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.5933 72.4729 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.1060 5.0000 8.0000 473.1210 59.8020 496.5350 480.7020 500.000
+ 2 -1.0000 0.0000 2.6000 -2.9000 29.704 208.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.1172 72.8364 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.1060 5.0000 7.9000 472.7940 59.8110 500.0670 481.8980 500.000
+ 3 -1.0000 0.0000 2.6000 -2.8000 29.897 278.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6391 73.2031 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.1060 5.0000 7.8000 473.5660 59.7910 503.5580 482.0940 500.000
+ 4 -1.0000 0.0000 2.6000 -2.7000 29.851 280.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1589 73.5731 -2.7386 0.5000 0.0000 0.0000 150.9377 -58.1243 2.1060 5.0000 7.7000 473.1760 59.4860 497.7260 481.0890 500.000
+ 5 -1.0000 0.0000 2.6000 -2.6000 29.954 210.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6764 73.9464 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.1060 5.0000 7.6000 472.6150 60.6170 498.5260 481.7800 500.000
+ 6 -1.0000 0.0000 2.6000 -2.5000 30.129 158.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1917 74.3234 -2.7386 0.5000 0.0000 0.0000 150.5150 -58.9696 2.1060 5.0000 7.5000 473.5220 66.7400 503.6930 482.2920 500.000
+ 7 -1.0000 0.0000 2.6000 -2.4000 29.904 163.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7046 74.7039 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.1060 5.0000 7.4000 473.3170 71.0450 498.5260 481.3300 500.000
+ 8 -1.0000 0.0000 2.6000 -2.3000 30.154 200.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2151 75.0882 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.1060 5.0000 7.3000 472.6860 72.6390 497.6800 481.5620 500.000
+ 9 -1.0000 0.0000 2.6000 -2.2000 29.786 114.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.7232 75.4763 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.1060 5.0000 7.2000 473.6010 64.9620 503.7280 482.1690 500.000
+ 10 -1.0000 0.0000 2.6000 -2.1000 30.049 91.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2286 75.8685 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.1060 5.0000 7.1000 473.4650 61.5310 499.2730 481.2280 500.000
+ 11 -1.0000 0.0000 2.6000 -2.0000 30.332 74.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 472.6820 60.7730 496.7800 481.2270 500.000
+# Sum of Counts = 1890
+# Center of Mass = -2.572328+/-0.083917
+# Full Width Half-Maximum = 0.550445+/-0.048792
+# 2:05:03 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0121.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0121.dat
new file mode 100644
index 0000000..a0693bc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0121.dat
@@ -0,0 +1,50 @@
+# scan = 121
+# date = 10/26/2011
+# time = 2:05:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -7.0 -5.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -7.0 -5.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -7.0000 30.011 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.8829 63.7494 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.2130 5.0000 12.0000 473.6340 60.4660 503.0010 482.0330 500.000
+ 2 -1.0000 0.0000 2.9000 -6.9000 29.954 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4702 64.0447 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.2130 5.0000 11.9000 473.0930 60.1450 496.4380 480.7660 500.000
+ 3 -1.0000 0.0000 2.9000 -6.8000 29.955 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0568 64.3412 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2073 2.2130 5.0000 11.8000 472.8090 60.1640 500.2050 481.8910 500.000
+ 4 -1.0000 0.0000 2.9000 -6.7000 30.165 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6427 64.6390 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.2130 5.0000 11.7000 473.5600 60.0550 503.4940 481.9810 500.000
+ 5 -1.0000 0.0000 2.9000 -6.6000 29.984 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.2278 64.9381 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.2130 5.0000 11.6000 473.1490 59.8090 497.6100 480.8960 500.000
+ 6 -1.0000 0.0000 2.9000 -6.5000 29.871 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.8122 65.2385 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.2130 5.0000 11.5000 472.6020 59.7260 498.7330 481.6030 500.000
+ 7 -1.0000 0.0000 2.9000 -6.4000 29.888 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3957 65.5404 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.2130 5.0000 11.4000 473.4450 59.7530 503.7320 482.0920 500.000
+ 8 -1.0000 0.0000 2.9000 -6.3000 30.122 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.9784 65.8436 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.2130 5.0000 11.3000 473.1990 59.5780 498.8300 481.1930 500.000
+ 9 -1.0000 0.0000 2.9000 -6.2000 29.875 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5603 66.1484 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.2130 5.0000 11.2000 472.4610 59.4630 497.0970 481.2800 500.000
+ 10 -1.0000 0.0000 2.9000 -6.1000 29.912 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.1412 66.4546 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 2.2130 5.0000 11.1000 473.3070 59.5430 503.7690 482.2540 500.000
+ 11 -1.0000 0.0000 2.9000 -6.0000 29.970 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7213 66.7624 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.2130 5.0000 11.0000 473.2280 59.3900 499.9300 481.5330 500.000
+ 12 -1.0000 0.0000 2.9000 -5.9000 29.931 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.3005 67.0718 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.2130 5.0000 10.9000 472.3930 59.2530 495.8530 481.0550 500.000
+ 13 -1.0000 0.0000 2.9000 -5.8000 29.851 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8786 67.3828 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.2130 5.0000 10.8000 473.1630 64.0210 503.4800 482.3740 500.000
+ 14 -1.0000 0.0000 2.9000 -5.7000 29.926 59.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4558 67.6954 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.2130 5.0000 10.7000 473.2990 68.8370 500.7930 481.7420 500.000
+ 15 -1.0000 0.0000 2.9000 -5.6000 30.244 97.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.0319 68.0098 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.2130 5.0000 10.6000 472.5360 72.6030 495.3370 480.9770 500.000
+ 16 -1.0000 0.0000 2.9000 -5.5000 29.895 64.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.6070 68.3259 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.2130 5.0000 10.5000 473.1660 68.4800 503.1780 482.1580 500.000
+# Sum of Counts = 426
+# Center of Mass = -5.886854+/-0.403809
+# Full Width Half-Maximum = 0.785708+/-0.218463
+# 2:13:56 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0122.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0122.dat
new file mode 100644
index 0000000..b1ca281
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0122.dat
@@ -0,0 +1,84 @@
+# scan = 122
+# date = 10/26/2011
+# time = 2:23:52 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.8 e -7.9 -3.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.8 e -7.9 -3.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.8), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.8000 -7.9000 30.135 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6093 74.6442 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5663 5.0000 12.9000 473.3840 62.1020 502.4050 481.6440 500.000
+ 2 -1.0000 0.0000 3.8000 -7.8000 29.734 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2389 74.9540 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5663 5.0000 12.8000 472.7450 60.4970 495.4340 480.5340 500.000
+ 3 -1.0000 0.0000 3.8000 -7.7000 30.071 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8677 75.2656 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5663 5.0000 12.7000 472.7640 60.2710 501.4570 481.8400 500.000
+ 4 -1.0000 0.0000 3.8000 -7.6000 29.890 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4955 75.5789 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6346 2.5663 5.0000 12.6000 473.3910 60.0170 503.0400 481.8210 500.000
+ 5 -1.0000 0.0000 3.8000 -7.5000 30.015 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1223 75.8940 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5663 5.0000 12.5000 472.8640 59.6580 496.5110 480.6630 500.000
+ 6 -1.0000 0.0000 3.8000 -7.4000 30.028 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7482 76.2110 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5663 5.0000 12.4000 472.5740 59.5980 500.1140 481.8540 500.000
+ 7 -1.0000 0.0000 3.8000 -7.3000 29.661 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3730 76.5298 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5663 5.0000 12.3000 473.3350 59.4940 503.4310 481.9540 500.000
+ 8 -1.0000 0.0000 3.8000 -7.2000 29.947 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9969 76.8507 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5663 5.0000 12.2000 472.9430 59.2450 497.7500 480.9050 500.000
+ 9 -1.0000 0.0000 3.8000 -7.1000 30.089 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6197 77.1735 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5663 5.0000 12.1000 472.3830 59.2020 498.5790 481.4860 500.000
+ 10 -1.0000 0.0000 3.8000 -7.0000 29.959 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2414 77.4984 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5663 5.0000 12.0000 473.2300 59.1730 503.7000 482.0390 500.000
+ 11 -1.0000 0.0000 3.8000 -6.9000 29.889 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8620 77.8253 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5663 5.0000 11.9000 472.9870 58.9690 498.7870 481.0570 500.000
+ 12 -1.0000 0.0000 3.8000 -6.8000 29.878 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.4815 78.1544 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2074 2.5663 5.0000 11.8000 472.2680 58.8870 497.1940 481.1910 500.000
+ 13 -1.0000 0.0000 3.8000 -6.6999 30.000 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.0999 78.4856 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4160 2.5663 5.0000 11.6999 473.1220 58.9680 503.7310 482.0800 500.000
+ 14 -1.0000 0.0000 3.8000 -6.6000 30.001 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7170 78.8191 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6274 2.5663 5.0000 11.6000 473.0370 58.7900 499.8430 481.3210 500.000
+ 15 -1.0000 0.0000 3.8000 -6.5000 29.777 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3330 79.1549 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5663 5.0000 11.5000 472.2180 58.6630 496.0300 480.9480 500.000
+ 16 -1.0000 0.0000 3.8000 -6.4000 29.911 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9477 79.4930 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5663 5.0000 11.4000 473.0000 63.1440 503.5020 482.2080 500.000
+ 17 -1.0000 0.0000 3.8000 -6.3000 29.923 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5611 79.8336 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5663 5.0000 11.3000 473.1100 67.9990 500.6430 481.5650 500.000
+ 18 -1.0000 0.0000 3.8000 -6.2000 29.981 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.1732 80.1766 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5663 5.0000 11.2000 472.3430 71.7630 495.4400 480.8520 500.000
+ 19 -1.0000 0.0000 3.8000 -6.1000 29.716 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.7841 80.5220 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5663 5.0000 11.1000 473.0080 67.6770 503.2070 482.0390 500.000
+ 20 -1.0000 0.0000 3.8000 -6.0000 30.008 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.3935 80.8701 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5663 5.0000 11.0000 473.2530 61.5930 501.4020 481.4550 500.000
+ 21 -1.0000 0.0000 3.8000 -5.9000 30.042 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.0016 81.2208 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5663 5.0000 10.9000 472.4940 60.2420 495.1050 480.5860 500.000
+ 22 -1.0000 0.0000 3.8000 -5.8000 30.081 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.6082 81.5743 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 2.5663 5.0000 10.8000 472.9170 60.0660 502.7240 481.9350 500.000
+ 23 -1.0000 0.0000 3.8000 -5.7000 30.175 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.2134 81.9305 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5663 5.0000 10.7000 473.2730 59.7280 501.9920 481.5450 500.000
+ 24 -1.0000 0.0000 3.8000 -5.6000 30.094 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8170 82.2896 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5663 5.0000 10.6000 472.5540 59.3250 495.1250 480.6310 500.000
+ 25 -1.0000 0.0000 3.8000 -5.5000 29.905 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.4192 82.6515 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5663 5.0000 10.5000 472.7660 59.3560 502.1410 481.8870 500.000
+ 26 -1.0000 0.0000 3.8000 -5.4000 29.896 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.0197 83.0165 -2.7386 0.5000 0.0000 0.0000 155.2932 -49.4134 2.5663 5.0000 10.4000 473.2530 59.1890 502.5370 481.7490 500.000
+ 27 -1.0000 0.0000 3.8000 -5.3000 29.800 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.6186 83.3846 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.5663 5.0000 10.3000 472.6220 58.8930 495.6280 480.4900 500.000
+ 28 -1.0000 0.0000 3.8000 -5.2000 29.961 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2159 83.7558 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.5663 5.0000 10.2000 472.5760 58.9720 501.2090 481.8170 500.000
+ 29 -1.0000 0.0000 3.8000 -5.1000 29.710 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.8115 84.1302 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.5663 5.0000 10.1000 473.2190 58.8660 503.0770 481.9220 500.000
+ 30 -1.0000 0.0000 3.8000 -5.0000 30.205 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.4054 84.5080 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.5663 5.0000 10.0000 472.7090 58.6210 496.7030 480.7480 500.000
+ 31 -1.0000 0.0000 3.8000 -4.9000 29.829 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.9975 84.8892 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.5663 5.0000 9.9000 472.3860 58.6760 500.0210 481.8190 500.000
+ 32 -1.0000 0.0000 3.8000 -4.8000 30.145 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5878 85.2739 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.5663 5.0000 9.8000 473.1510 58.6520 503.5040 482.0030 500.000
+ 33 -1.0000 0.0000 3.8000 -4.7000 29.801 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1762 85.6622 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 2.5663 5.0000 9.7000 472.7590 58.4490 497.7130 480.9390 500.000
+ 34 -1.0000 0.0000 3.8000 -4.6000 30.238 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7627 86.0542 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.5663 5.0000 9.6000 472.2050 58.4560 498.5620 481.4850 500.000
+ 35 -1.0000 0.0000 3.8000 -4.5000 30.030 46.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3472 86.4500 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.5663 5.0000 9.5000 473.0790 62.2530 503.7250 482.1790 500.000
+ 36 -1.0000 0.0000 3.8000 -4.4000 29.935 53.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.9297 86.8498 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.5663 5.0000 9.4000 472.8480 67.2860 498.6500 481.2170 500.000
+ 37 -1.0000 0.0000 3.8000 -4.3000 29.816 47.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.5102 87.2535 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.5663 5.0000 9.3000 472.1870 71.1950 497.3940 481.3820 500.000
+ 38 -1.0000 0.0000 3.8000 -4.2000 30.117 41.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.0885 87.6614 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.5663 5.0000 9.2000 473.0880 67.9940 503.7460 482.1050 500.000
+ 39 -1.0000 0.0000 3.8000 -4.1000 30.227 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.6647 88.0736 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.5663 5.0000 9.1000 473.0170 61.2920 499.6820 481.1900 500.000
+ 40 -1.0000 0.0000 3.8000 -4.0000 29.733 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.2386 88.4902 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.5663 5.0000 9.0000 472.2270 59.9680 496.2610 480.9470 500.000
+ 41 -1.0000 0.0000 3.8000 -3.9000 30.139 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.1898 88.9113 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.5663 5.0000 8.9000 473.0420 59.7790 503.6250 482.0850 500.000
+ 42 -1.0000 0.0000 3.8000 -3.8000 29.883 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.6205 89.3370 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 2.5663 5.0000 8.8000 473.0750 59.4260 500.5450 481.4130 500.000
+ 43 -1.0000 0.0000 3.8000 -3.7000 30.025 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.0536 89.7676 -2.7386 0.5000 0.0000 0.0000 152.8068 -54.3860 2.5663 5.0000 8.7000 472.2420 59.1140 495.4350 480.7760 500.000
+ 44 -1.0000 0.0000 3.8000 -3.6000 30.095 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.4892 90.2032 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.5663 5.0000 8.6000 472.9020 59.1090 503.2830 482.1300 500.000
+ 45 -1.0000 0.0000 3.8000 -3.5000 30.166 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.9274 90.6438 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.5663 5.0000 8.5000 473.0820 58.9060 501.2760 481.5890 500.000
+ 46 -1.0000 0.0000 3.8000 -3.4000 30.137 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.3682 91.0897 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.5663 5.0000 8.4000 472.2770 58.6560 495.0750 480.7010 500.000
+ 47 -1.0000 0.0000 3.8000 -3.3000 30.136 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.8117 91.5411 -2.7386 0.5000 0.0000 0.0000 152.1037 -55.7925 2.5663 5.0000 8.3000 472.7550 58.7330 502.8600 482.0710 500.000
+ 48 -1.0000 0.0000 3.8000 -3.2000 29.977 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.2579 91.9981 -2.7386 0.5000 0.0000 0.0000 151.9192 -56.1615 2.5663 5.0000 8.2000 473.0540 58.6120 501.8150 481.6440 500.000
+ 49 -1.0000 0.0000 3.8000 -3.1000 30.111 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.7070 92.4609 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.5663 5.0000 8.1000 472.2910 58.3660 495.0520 480.7240 500.000
+ 50 -1.0000 0.0000 3.8000 -3.0000 30.139 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.1591 92.9297 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.5663 5.0000 8.0000 472.5810 58.5130 502.3890 482.0230 500.000
+# Sum of Counts = 1167
+# Center of Mass = -5.434102+/-0.228236
+# Full Width Half-Maximum = 2.632183+/-0.092139
+# 2:50:58 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0123.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0123.dat
new file mode 100644
index 0000000..5561fd6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0123.dat
@@ -0,0 +1,65 @@
+# scan = 123
+# date = 10/26/2011
+# time = 2:50:58 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -12.5 -5.0 0.25 preset mcu 4.0
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -5.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion G (101)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 240.445 40.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6801 5.0000 17.5000 472.4460 58.3600 502.0220 481.9660 500.000
+ 2 1.0000 0.0000 1.0000 -12.2500 241.410 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0620 -37.8756 1.6801 5.0000 17.2500 473.0380 59.4170 501.0710 481.4840 500.000
+ 3 1.0000 0.0000 1.0000 -12.0000 240.185 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.6801 5.0000 17.0000 472.0420 58.3930 497.1640 481.1860 500.000
+ 4 1.0000 0.0000 1.0000 -11.7500 240.540 38.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 473.0090 70.8530 503.2980 481.9520 500.000
+ 5 1.0000 0.0000 1.0000 -11.5000 240.825 43.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 472.3550 58.5330 495.4150 480.5620 500.000
+ 6 1.0000 0.0000 1.0000 -11.2500 241.031 43.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1316 31.3166 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.6801 5.0000 16.2500 472.5270 58.1260 503.0560 481.9710 500.000
+ 7 1.0000 0.0000 1.0000 -11.0000 240.646 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6488 32.1152 -2.7386 0.5000 0.0000 0.0000 160.3068 -39.3861 1.6801 5.0000 16.0000 472.8220 58.8310 500.2580 481.2330 500.000
+ 8 1.0000 0.0000 1.0000 -10.7500 240.498 39.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1446 32.9031 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.6801 5.0000 15.7500 471.7950 57.6540 497.5620 481.2360 500.000
+ 9 1.0000 0.0000 1.0000 -10.5000 240.482 47.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6208 33.6813 -2.7386 0.5000 0.0000 0.0000 159.9784 -40.0430 1.6801 5.0000 15.5000 472.7980 70.8640 503.2690 481.9140 500.000
+ 10 1.0000 0.0000 1.0000 -10.2500 240.677 65.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.0791 34.4507 -2.7386 0.5000 0.0000 0.0000 159.8078 -40.3841 1.6801 5.0000 15.2500 472.1390 57.7410 495.3850 480.4730 500.000
+ 11 1.0000 0.0000 1.0000 -10.0000 239.708 89.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6329 -40.7340 1.6801 5.0000 15.0000 472.3580 57.3960 502.9120 481.9540 500.000
+ 12 1.0000 0.0000 1.0000 -9.7500 241.091 83.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.6801 5.0000 14.7500 472.7950 58.5610 500.8100 481.4170 500.000
+ 13 1.0000 0.0000 1.0000 -9.5000 240.933 129.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 471.7640 58.0930 496.3530 480.9410 500.000
+ 14 1.0000 0.0000 1.0000 -9.2500 240.483 149.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.6801 5.0000 14.2500 472.6720 65.5060 503.7360 482.0580 500.000
+ 15 1.0000 0.0000 1.0000 -9.0000 240.688 175.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.6801 5.0000 14.0000 472.4040 58.1240 497.0040 480.6870 500.000
+ 16 1.0000 0.0000 1.0000 -8.7500 240.008 198.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 472.1500 57.5430 501.7370 481.8290 500.000
+ 17 1.0000 0.0000 1.0000 -8.5000 240.068 197.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 472.7710 59.0150 501.4610 481.5090 500.000
+ 18 1.0000 0.0000 1.0000 -8.2500 240.343 140.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.2642 40.3766 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.6801 5.0000 13.2500 471.7450 58.3020 495.4690 480.7370 500.000
+ 19 1.0000 0.0000 1.0000 -8.0000 239.882 90.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6190 41.0978 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6801 5.0000 13.0000 472.5570 68.0380 503.6580 482.0950 500.000
+ 20 1.0000 0.0000 1.0000 -7.7500 240.729 71.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.9672 41.8164 -2.7386 0.5000 0.0000 0.0000 157.8214 -44.3571 1.6801 5.0000 12.7500 472.5450 59.6830 498.3860 480.9630 500.000
+ 21 1.0000 0.0000 1.0000 -7.5000 240.877 57.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.3099 42.5328 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6801 5.0000 12.5000 472.0730 58.7340 500.4930 481.8640 500.000
+ 22 1.0000 0.0000 1.0000 -7.2500 240.276 42.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.6477 43.2476 -2.7386 0.5000 0.0000 0.0000 157.3487 -45.3025 1.6801 5.0000 12.2500 472.8990 60.5500 502.0820 481.5980 500.000
+ 23 1.0000 0.0000 1.0000 -7.0000 240.557 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.9814 43.9612 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6801 5.0000 12.0000 471.9560 58.5400 495.1590 480.7000 500.000
+ 24 1.0000 0.0000 1.0000 -6.7500 239.906 35.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 69.3119 44.6739 -2.7386 0.5000 0.0000 0.0000 156.8444 -46.3112 1.6801 5.0000 11.7500 472.6210 65.3500 503.6590 482.1660 500.000
+ 25 1.0000 0.0000 1.0000 -6.5000 240.272 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 70.6397 45.3863 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6801 5.0000 11.5000 472.5190 58.6400 498.3380 480.9550 500.000
+ 26 1.0000 0.0000 1.0000 -6.2500 240.146 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.9657 46.0988 -2.7386 0.5000 0.0000 0.0000 156.3046 -47.3907 1.6801 5.0000 11.2500 471.8740 57.6560 500.0890 481.7930 500.000
+ 27 1.0000 0.0000 1.0000 -6.0000 239.918 38.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.2906 46.8118 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6801 5.0000 11.0000 472.7750 60.9320 502.3760 481.7410 500.000
+ 28 1.0000 0.0000 1.0000 -5.7500 240.437 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.6150 47.5256 -2.7386 0.5000 0.0000 0.0000 155.7252 -48.5495 1.6801 5.0000 10.7500 471.7710 57.4750 495.1000 480.6780 500.000
+ 29 1.0000 0.0000 1.0000 -5.5000 239.638 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.9397 48.2409 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6801 5.0000 10.5000 472.4680 66.2670 503.6340 482.2050 500.000
+ 30 1.0000 0.0000 1.0000 -5.2500 239.893 23.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.2654 48.9580 -2.7386 0.5000 0.0000 0.0000 155.1010 -49.7981 1.6801 5.0000 10.2500 472.3730 57.9890 498.4040 481.0280 500.000
+ 31 1.0000 0.0000 1.0000 -5.0000 239.907 20.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.5928 49.6773 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6801 5.0000 10.0000 471.8140 57.4230 500.1880 481.9590 500.000
+# Sum of Counts = 2148
+# Center of Mass = -8.905144+/-0.273990
+# Full Width Half-Maximum = 3.254523+/-0.104476
+# 4:57:40 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0124.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0124.dat
new file mode 100644
index 0000000..5f11434
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0124.dat
@@ -0,0 +1,54 @@
+# scan = 124
+# date = 10/26/2011
+# time = 4:57:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.3 e -2.3 -0.4 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.3 e -2.3 -0.4 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.3), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.3000 -2.3000 15.065 42.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.3212 70.8576 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0059 5.0000 7.3000 471.8160 58.5620 497.3230 481.4890 500.000
+ 2 -1.0000 0.0000 2.3000 -2.2000 15.089 61.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8180 71.2250 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.0059 5.0000 7.2000 472.3000 58.6000 502.3680 482.2900 500.000
+ 3 -1.0000 0.0000 2.3000 -2.1000 15.058 55.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3125 71.5957 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0059 5.0000 7.1000 472.7090 58.5610 503.6920 482.3550 500.000
+ 4 -1.0000 0.0000 2.3000 -2.0000 14.975 47.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8045 71.9700 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0059 5.0000 7.0000 472.6960 58.4910 501.9020 481.9450 500.000
+ 5 -1.0000 0.0000 2.3000 -1.9000 14.738 57.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2940 72.3478 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0059 5.0000 6.9000 472.3750 58.3600 498.2700 481.3090 500.000
+ 6 -1.0000 0.0000 2.3000 -1.8000 14.965 76.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7808 72.7294 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0059 5.0000 6.8000 471.8620 58.1880 495.0450 480.9290 500.000
+ 7 -1.0000 0.0000 2.3000 -1.7000 15.103 147.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2650 73.1149 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.0059 5.0000 6.7000 471.8110 58.2240 499.0090 481.8450 500.000
+ 8 -1.0000 0.0000 2.3000 -1.6000 15.086 237.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7463 73.5044 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2933 2.0059 5.0000 6.6000 472.3690 58.2770 503.1890 482.3830 500.000
+ 9 -1.0000 0.0000 2.3000 -1.5000 15.072 404.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2247 73.8981 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0059 5.0000 6.5000 472.6520 58.1930 503.4270 482.2160 500.000
+ 10 -1.0000 0.0000 2.3000 -1.4000 15.207 392.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7002 74.2961 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.0059 5.0000 6.4000 472.5250 58.0650 500.9010 481.7000 500.000
+ 11 -1.0000 0.0000 2.3000 -1.3000 14.891 276.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1726 74.6986 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0059 5.0000 6.3000 472.1140 57.8700 496.7670 480.9760 500.000
+ 12 -1.0000 0.0000 2.3000 -1.2000 14.979 224.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.6418 75.1057 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0059 5.0000 6.2000 471.6270 57.7230 495.6440 480.9800 500.000
+ 13 -1.0000 0.0000 2.3000 -1.1000 15.095 373.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.1077 75.5177 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.0059 5.0000 6.1000 471.8960 57.7150 500.9050 482.1010 500.000
+ 14 -1.0000 0.0000 2.3000 -1.0000 15.248 241.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5702 75.9347 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0059 5.0000 6.0000 472.4220 57.5840 503.7150 482.3180 500.000
+ 15 -1.0000 0.0000 2.3000 -0.9000 15.010 89.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.0292 76.3569 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 2.0059 5.0000 5.9000 472.5510 57.3940 502.8230 482.0220 500.000
+ 16 -1.0000 0.0000 2.3000 -0.8000 15.023 57.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4846 76.7846 -2.7386 0.5000 0.0000 0.0000 145.9652 -68.0695 2.0059 5.0000 5.8000 472.3180 57.0950 499.6190 481.4340 500.000
+ 17 -1.0000 0.0000 2.3000 -0.7000 15.056 28.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9363 77.2179 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 2.0059 5.0000 5.7000 471.8310 56.6420 495.3120 480.7540 500.000
+ 18 -1.0000 0.0000 2.3000 -0.6000 15.064 31.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3841 77.6571 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 2.0059 5.0000 5.6000 471.5140 56.8030 497.1890 481.3410 500.000
+ 19 -1.0000 0.0000 2.3000 -0.5000 14.831 18.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.8278 78.1025 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.0059 5.0000 5.5000 472.0160 56.7210 502.4230 482.1020 500.000
+ 20 -1.0000 0.0000 2.3000 -0.4000 14.980 19.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2675 78.5543 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9088 2.0059 5.0000 5.4000 472.4340 56.6940 503.7960 482.1110 500.000
+# Sum of Counts = 2874
+# Center of Mass = -1.366980+/-0.036661
+# Full Width Half-Maximum = 0.708548+/-0.020109
+# 5:04:27 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0125.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0125.dat
new file mode 100644
index 0000000..e1fced8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0125.dat
@@ -0,0 +1,63 @@
+# scan = 125
+# date = 10/26/2011
+# time = 5:04:27 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -5.0 -2.2 0.1 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 0 e -5.0 -2.2 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 29.914 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.8832 77.1477 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3918 5.0000 10.0000 471.9080 65.7840 501.9600 481.9980 500.000
+ 2 1.5000 0.0000 0.0000 -4.9000 29.984 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.2996 77.4993 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3918 5.0000 9.9000 472.5160 69.4520 502.6040 481.8620 500.000
+ 3 1.5000 0.0000 0.0000 -4.8000 30.012 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.7174 77.8536 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3918 5.0000 9.8000 471.9330 64.7870 495.8060 480.6120 500.000
+ 4 1.5000 0.0000 0.0000 -4.7000 29.784 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.1368 78.2107 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3918 5.0000 9.7000 471.9260 60.4320 501.1930 481.8720 500.000
+ 5 1.5000 0.0000 0.0000 -4.6000 29.809 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.5578 78.5708 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3918 5.0000 9.6000 472.5880 59.2500 503.0740 481.9010 500.000
+ 6 1.5000 0.0000 0.0000 -4.5000 29.691 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9806 78.9338 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3918 5.0000 9.5000 472.0680 58.5190 496.7380 480.7160 500.000
+ 7 1.5000 0.0000 0.0000 -4.4000 30.091 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.4050 79.2999 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3918 5.0000 9.4000 471.7540 58.3380 499.8910 481.7390 500.000
+ 8 1.5000 0.0000 0.0000 -4.3000 29.829 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.8311 79.6692 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.3918 5.0000 9.3000 472.5260 57.8130 503.4500 481.9820 500.000
+ 9 1.5000 0.0000 0.0000 -4.2000 30.256 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.2590 80.0417 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3918 5.0000 9.2000 472.1030 57.1240 497.7390 480.9260 500.000
+ 10 1.5000 0.0000 0.0000 -4.1000 29.918 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.6888 80.4176 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.3918 5.0000 9.1000 471.5800 57.5470 498.8050 481.4870 500.000
+ 11 1.5000 0.0000 0.0000 -4.0000 29.963 59.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.1205 80.7969 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3918 5.0000 9.0000 472.4310 56.8200 503.6570 481.9990 500.000
+ 12 1.5000 0.0000 0.0000 -3.9000 29.850 76.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.5541 81.1797 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 2.3918 5.0000 8.9000 472.1260 57.0220 498.5950 481.0070 500.000
+ 13 1.5000 0.0000 0.0000 -3.8000 29.678 106.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.9897 81.5662 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 2.3918 5.0000 8.8000 471.4390 57.3260 497.4850 481.2570 500.000
+ 14 1.5000 0.0000 0.0000 -3.7000 29.975 156.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.4273 81.9564 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.3918 5.0000 8.7000 472.3270 57.4890 503.8100 482.0850 500.000
+ 15 1.5000 0.0000 0.0000 -3.6000 29.983 199.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.8670 82.3505 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3918 5.0000 8.6000 472.1720 57.2550 499.5920 481.2750 500.000
+ 16 1.5000 0.0000 0.0000 -3.5000 29.741 181.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.3089 82.7486 -2.7386 0.5000 0.0000 0.0000 152.4621 -55.0756 2.3918 5.0000 8.5000 471.3700 57.1050 496.2790 480.9970 500.000
+ 17 1.5000 0.0000 0.0000 -3.4000 29.774 192.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.7530 83.1508 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4306 2.3918 5.0000 8.4000 472.2110 57.7600 503.7230 482.1560 500.000
+ 18 1.5000 0.0000 0.0000 -3.3000 29.898 146.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.1994 83.5572 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.3918 5.0000 8.3000 472.2440 63.2740 500.5040 481.4750 500.000
+ 19 1.5000 0.0000 0.0000 -3.2000 29.729 105.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.6481 83.9679 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.3918 5.0000 8.2000 471.4470 67.2870 495.3950 480.8510 500.000
+ 20 1.5000 0.0000 0.0000 -3.1000 29.701 84.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.0992 84.3832 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.3918 5.0000 8.1000 472.2090 69.4410 503.3300 482.1770 500.000
+ 21 1.5000 0.0000 0.0000 -3.0000 29.825 46.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.5528 84.8030 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.3918 5.0000 8.0000 472.4310 62.6630 501.2770 481.4750 500.000
+ 22 1.5000 0.0000 0.0000 -2.9000 29.851 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.0089 85.2277 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.3918 5.0000 7.9000 471.6770 59.7050 495.0080 480.6010 500.000
+ 23 1.5000 0.0000 0.0000 -2.8000 29.844 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.4676 85.6574 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.3918 5.0000 7.8000 472.1800 58.5250 502.8980 482.0040 500.000
+ 24 1.5000 0.0000 0.0000 -2.7000 30.090 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.9290 86.0921 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.3918 5.0000 7.7000 472.5040 58.0660 501.9620 481.6530 500.000
+ 25 1.5000 0.0000 0.0000 -2.6000 29.752 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.3932 86.5322 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.3918 5.0000 7.6000 471.7500 57.7350 495.0120 480.5950 500.000
+ 26 1.5000 0.0000 0.0000 -2.5000 29.870 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.8602 86.9777 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.3918 5.0000 7.5000 471.9970 57.5740 502.2340 481.8720 500.000
+ 27 1.5000 0.0000 0.0000 -2.4000 30.049 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 130.3302 87.4288 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.3918 5.0000 7.4000 472.4680 57.4360 502.5150 481.7180 500.000
+ 28 1.5000 0.0000 0.0000 -2.3000 29.977 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 130.8032 87.8858 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.3918 5.0000 7.3000 471.7900 57.1180 495.5180 480.5900 500.000
+ 29 1.5000 0.0000 0.0000 -2.2000 29.872 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 131.2792 88.3489 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.3918 5.0000 7.2000 471.7980 57.1820 501.4280 481.8710 500.000
+# Sum of Counts = 1665
+# Center of Mass = -3.529670+/-0.122863
+# Full Width Half-Maximum = 0.930748+/-0.044608
+# 5:21:14 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0126.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0126.dat
new file mode 100644
index 0000000..8348e5d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0126.dat
@@ -0,0 +1,63 @@
+# scan = 126
+# date = 10/26/2011
+# time = 5:21:14 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.4 k 0 l 0.2 e -5.3 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.4 k 0 l 0.2 e -5.3 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.4000 0.0000 0.2000 -5.3000 59.615 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.2831 69.8236 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.2349 5.0000 10.3000 472.1650 56.8980 499.6670 481.1390 500.000
+ 2 1.4000 0.0000 0.2000 -5.2000 60.137 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.7090 70.1476 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.2349 5.0000 10.2000 472.0900 56.7280 503.4550 481.9780 500.000
+ 3 1.4000 0.0000 0.2000 -5.1000 60.312 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.1361 70.4738 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.2349 5.0000 10.1000 471.4390 57.2470 494.9540 480.5830 500.000
+ 4 1.4000 0.0000 0.2000 -5.0000 59.844 68.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.5645 70.8020 -2.7386 0.5000 0.0000 0.0000 154.7701 -50.4597 2.2349 5.0000 10.0000 472.3260 66.9020 502.3780 481.7370 500.000
+ 5 1.4000 0.0000 0.2000 -4.9000 59.882 77.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.9941 71.1323 -2.7386 0.5000 0.0000 0.0000 154.6340 -50.7319 2.2349 5.0000 9.9000 471.7560 62.3070 501.0380 481.7530 500.000
+ 6 1.4000 0.0000 0.2000 -4.8000 59.544 77.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.4251 71.4648 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.2349 5.0000 9.8000 472.0300 58.1840 497.4060 480.6590 500.000
+ 7 1.4000 0.0000 0.2000 -4.7000 59.622 75.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.8574 71.7996 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.2349 5.0000 9.7000 472.3840 57.7330 503.7230 481.8590 500.000
+ 8 1.4000 0.0000 0.2000 -4.6000 59.871 95.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.2912 72.1366 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.2349 5.0000 9.6000 471.3990 57.0960 496.2800 480.8340 500.000
+ 9 1.4000 0.0000 0.2000 -4.5000 60.102 103.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.7263 72.4761 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2349 5.0000 9.5000 472.2570 57.0770 500.9390 481.2660 500.000
+ 10 1.4000 0.0000 0.2000 -4.4000 60.237 96.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1630 72.8180 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.2349 5.0000 9.4000 471.9240 56.8830 502.7650 481.8690 500.000
+ 11 1.4000 0.0000 0.2000 -4.3000 59.890 93.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.6011 73.1624 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2349 5.0000 9.3000 471.5990 56.2360 495.4160 480.4500 500.000
+ 12 1.4000 0.0000 0.2000 -4.2000 60.059 120.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.0408 73.5095 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2349 5.0000 9.2000 472.2690 56.5210 503.1410 481.6780 500.000
+ 13 1.4000 0.0000 0.2000 -4.1000 59.701 120.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.4822 73.8591 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2349 5.0000 9.1000 471.4180 64.1890 499.3260 481.6100 500.000
+ 14 1.4000 0.0000 0.2000 -4.0000 60.000 116.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.9251 74.2115 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2349 5.0000 9.0000 472.0530 65.8230 498.5220 480.9230 500.000
+ 15 1.4000 0.0000 0.2000 -3.9000 59.946 91.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.3698 74.5668 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 2.2349 5.0000 8.9000 472.3280 58.3030 503.5470 481.9810 500.000
+ 16 1.4000 0.0000 0.2000 -3.8000 60.053 80.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.8162 74.9249 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2349 5.0000 8.8000 471.4550 57.4790 496.3170 480.8980 500.000
+ 17 1.4000 0.0000 0.2000 -3.7000 59.789 99.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.2643 75.2860 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2349 5.0000 8.7000 472.2610 56.9450 500.6760 481.3520 500.000
+ 18 1.4000 0.0000 0.2000 -3.6000 59.904 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.7144 75.6501 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2349 5.0000 8.6000 472.0220 56.5290 502.9220 482.0350 500.000
+ 19 1.4000 0.0000 0.2000 -3.5000 59.679 75.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.1662 76.0174 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2349 5.0000 8.5000 471.5450 56.0740 495.2870 480.6540 500.000
+ 20 1.4000 0.0000 0.2000 -3.4000 59.480 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.6201 76.3880 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2349 5.0000 8.4000 472.2490 55.8650 502.3640 481.6820 500.000
+ 21 1.4000 0.0000 0.2000 -3.3000 59.737 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.0759 76.7620 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7925 2.2349 5.0000 8.3000 471.6020 55.6600 501.0650 481.7650 500.000
+ 22 1.4000 0.0000 0.2000 -3.2000 59.657 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.5338 77.1394 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.2349 5.0000 8.2000 471.7960 64.3930 496.9640 480.8560 500.000
+ 23 1.4000 0.0000 0.2000 -3.1000 59.914 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.9938 77.5203 -2.7386 0.5000 0.0000 0.0000 151.7308 -56.5380 2.2349 5.0000 8.1000 472.3420 63.6840 503.3420 481.9210 500.000
+ 24 1.4000 0.0000 0.2000 -3.0000 59.663 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.4559 77.9049 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9223 2.2349 5.0000 8.0000 471.5170 56.8140 498.2830 481.3490 500.000
+ 25 1.4000 0.0000 0.2000 -2.9000 59.649 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9203 78.2934 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2349 5.0000 7.9000 472.1470 56.2980 499.2730 481.1320 500.000
+ 26 1.4000 0.0000 0.2000 -2.8000 60.062 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.3869 78.6857 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2349 5.0000 7.8000 472.1940 56.1390 503.4800 481.9900 500.000
+ 27 1.4000 0.0000 0.2000 -2.7000 59.680 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.8560 79.0821 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.2349 5.0000 7.7000 471.3870 55.7510 495.7980 480.8120 500.000
+ 28 1.4000 0.0000 0.2000 -2.6000 59.763 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.3274 79.4826 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.2349 5.0000 7.6000 472.1860 55.6520 501.2210 481.5010 500.000
+ 29 1.4000 0.0000 0.2000 -2.5000 59.612 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.8013 79.8875 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9696 2.2349 5.0000 7.5000 471.8370 55.5290 502.5440 482.0320 500.000
+# Sum of Counts = 1981
+# Center of Mass = -4.092277+/-0.130956
+# Full Width Half-Maximum = 1.385227+/-0.051527
+# 5:51:42 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0127.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0127.dat
new file mode 100644
index 0000000..c8e6ddc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0127.dat
@@ -0,0 +1,62 @@
+# scan = 127
+# date = 10/26/2011
+# time = 5:51:42 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 0.4 e -4.2 -1.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.3 k 0 l 0.4 e -4.2 -1.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 0.4000 -4.2000 60.230 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.5724 67.4435 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0837 5.0000 9.2000 471.2540 55.1330 496.6160 480.9960 500.000
+ 2 1.3000 0.0000 0.4000 -4.1000 59.832 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0304 67.7726 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.0837 5.0000 9.1000 472.0300 62.6960 500.2630 481.3660 500.000
+ 3 1.3000 0.0000 0.4000 -4.0000 59.953 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.4900 68.1039 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0837 5.0000 9.0000 472.0500 66.9290 503.0930 482.0030 500.000
+ 4 1.3000 0.0000 0.4000 -3.9000 60.150 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.9510 68.4373 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.0837 5.0000 8.9000 471.5060 56.7760 495.6620 480.7440 500.000
+ 5 1.3000 0.0000 0.4000 -3.8000 59.500 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.4135 68.7730 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.0837 5.0000 8.8000 472.2570 56.3450 501.4080 481.5000 500.000
+ 6 1.3000 0.0000 0.4000 -3.7000 59.840 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.8776 69.1111 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.0837 5.0000 8.7000 471.8830 56.1630 502.3650 481.9400 500.000
+ 7 1.3000 0.0000 0.4000 -3.6000 59.973 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.3434 69.4516 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.0837 5.0000 8.6000 471.5610 55.7950 495.5820 480.6940 500.000
+ 8 1.3000 0.0000 0.4000 -3.5000 59.965 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.8108 69.7945 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0757 2.0837 5.0000 8.5000 472.1770 55.8170 502.2870 481.6590 500.000
+ 9 1.3000 0.0000 0.4000 -3.4000 59.860 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2799 70.1400 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.0837 5.0000 8.4000 471.5880 55.7650 501.3780 481.8590 500.000
+ 10 1.3000 0.0000 0.4000 -3.3000 59.836 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7508 70.4882 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.0837 5.0000 8.3000 471.5730 55.5070 496.3330 480.5740 500.000
+ 11 1.3000 0.0000 0.4000 -3.2000 60.253 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2235 70.8390 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.0837 5.0000 8.2000 472.1010 61.0010 502.6420 481.7910 500.000
+ 12 1.3000 0.0000 0.4000 -3.1000 59.993 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.6981 71.1927 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.0837 5.0000 8.1000 471.5710 68.8590 500.7440 481.8510 500.000
+ 13 1.3000 0.0000 0.4000 -3.0000 59.701 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.1746 71.5492 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0837 5.0000 8.0000 471.8360 57.3940 496.8790 480.6750 500.000
+ 14 1.3000 0.0000 0.4000 -2.9000 59.845 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.6531 71.9088 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.0837 5.0000 7.9000 472.3050 56.7920 503.0080 481.8190 500.000
+ 15 1.3000 0.0000 0.4000 -2.8000 59.716 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1337 72.2714 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0837 5.0000 7.8000 471.5240 56.4760 499.6780 481.6640 500.000
+ 16 1.3000 0.0000 0.4000 -2.7000 59.719 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.6164 72.6372 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0837 5.0000 7.7000 471.8720 56.2160 497.8640 480.8400 500.000
+ 17 1.3000 0.0000 0.4000 -2.6000 59.494 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.1012 73.0063 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.0837 5.0000 7.6000 472.1820 56.2060 503.2690 481.8590 500.000
+ 18 1.3000 0.0000 0.4000 -2.5000 59.537 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.5883 73.3787 -2.7386 0.5000 0.0000 0.0000 150.5151 -58.9696 2.0837 5.0000 7.5000 471.3230 55.9860 498.3180 481.3570 500.000
+ 19 1.3000 0.0000 0.4000 -2.4000 59.739 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.0776 73.7547 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.0837 5.0000 7.4000 471.8890 55.8530 499.0290 481.1330 500.000
+ 20 1.3000 0.0000 0.4000 -2.3000 59.675 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.5694 74.1343 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0837 5.0000 7.3000 472.0400 60.4230 503.3300 482.1110 500.000
+ 21 1.3000 0.0000 0.4000 -2.2000 59.497 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.0636 74.5176 -2.7386 0.5000 0.0000 0.0000 149.8449 -60.3101 2.0837 5.0000 7.2000 471.3120 68.5330 497.0380 481.1660 500.000
+ 22 1.3000 0.0000 0.4000 -2.1000 60.200 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.5603 74.9048 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0837 5.0000 7.1000 472.1470 58.0020 500.0900 481.3530 500.000
+ 23 1.3000 0.0000 0.4000 -2.0000 59.628 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.0596 75.2960 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0837 5.0000 7.0000 472.1510 57.0520 503.1880 482.0710 500.000
+ 24 1.3000 0.0000 0.4000 -1.9000 59.669 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.5616 75.6913 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0837 5.0000 6.9000 471.4400 56.4730 496.0810 480.8220 500.000
+ 25 1.3000 0.0000 0.4000 -1.8000 59.460 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.0664 76.0909 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0837 5.0000 6.8000 472.1620 56.3950 500.8640 481.2920 500.000
+ 26 1.3000 0.0000 0.4000 -1.7000 59.721 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.5739 76.4950 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.0837 5.0000 6.7000 471.9500 56.3750 502.8350 481.9790 500.000
+ 27 1.3000 0.0000 0.4000 -1.6000 59.661 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.0844 76.9036 -2.7386 0.5000 0.0000 0.0000 148.3533 -63.2932 2.0837 5.0000 6.6000 471.4060 56.0840 495.6480 480.6920 500.000
+ 28 1.3000 0.0000 0.4000 -1.5000 59.919 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.5980 77.3171 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0837 5.0000 6.5000 472.0940 56.0260 501.4350 481.4960 500.000
+# Sum of Counts = 378
+# Center of Mass = -2.841270+/-0.210093
+# Full Width Half-Maximum = 1.468311+/-0.100378
+# 6:21:03 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0128.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0128.dat
new file mode 100644
index 0000000..2165452
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0128.dat
@@ -0,0 +1,65 @@
+# scan = 128
+# date = 10/26/2011
+# time = 6:21:03 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.2000 0.0000 0.6000 -4.0000 60.005 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.7259 62.4547 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.9396 5.0000 9.0000 472.1090 63.4600 503.0600 481.9850 500.000
+ 2 1.2000 0.0000 0.6000 -3.9000 59.604 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2082 62.7712 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.9396 5.0000 8.9000 471.4520 67.3340 498.9120 481.5300 500.000
+ 3 1.2000 0.0000 0.6000 -3.8000 59.988 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.6918 63.0894 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.9396 5.0000 8.8000 472.0140 57.5840 498.4370 480.9560 500.000
+ 4 1.2000 0.0000 0.6000 -3.7000 59.646 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1768 63.4094 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.9396 5.0000 8.7000 472.2750 57.1490 503.1990 481.7590 500.000
+ 5 1.2000 0.0000 0.6000 -3.6000 59.571 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6633 63.7312 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.9396 5.0000 8.6000 471.4250 56.8570 498.2060 481.2640 500.000
+ 6 1.2000 0.0000 0.6000 -3.5000 59.490 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1512 64.0550 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.9396 5.0000 8.5000 472.0070 56.6730 499.0800 480.9220 500.000
+ 7 1.2000 0.0000 0.6000 -3.4000 59.997 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6407 64.3807 -2.7386 0.5000 0.0000 0.0000 152.2846 -55.4305 1.9396 5.0000 8.4000 472.1330 56.6610 503.2370 481.8160 500.000
+ 8 1.2000 0.0000 0.6000 -3.3000 59.560 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1318 64.7084 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.9396 5.0000 8.3000 471.3160 56.4190 497.4050 481.1320 500.000
+ 9 1.2000 0.0000 0.6000 -3.2000 59.833 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6244 65.0382 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.9396 5.0000 8.2000 471.9620 56.3230 499.6980 481.1800 500.000
+ 10 1.2000 0.0000 0.6000 -3.1000 59.779 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1188 65.3702 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 1.9396 5.0000 8.1000 472.0350 62.6520 503.1390 482.0740 500.000
+ 11 1.2000 0.0000 0.6000 -3.0000 59.340 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6149 65.7044 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.9396 5.0000 8.0000 471.4040 69.7630 496.9170 481.0560 500.000
+ 12 1.2000 0.0000 0.6000 -2.9000 60.120 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.1128 66.0408 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.9396 5.0000 7.9000 472.2300 58.0950 500.3090 481.3050 500.000
+ 13 1.2000 0.0000 0.6000 -2.8000 59.843 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.6125 66.3797 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.9396 5.0000 7.8000 472.2080 57.2800 503.0700 482.0070 500.000
+ 14 1.2000 0.0000 0.6000 -2.7000 59.254 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1141 66.7210 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.9396 5.0000 7.7000 471.5190 56.9680 496.1260 480.9240 500.000
+ 15 1.2000 0.0000 0.6000 -2.6000 59.454 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.6178 67.0648 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5424 1.9396 5.0000 7.6000 472.2340 56.7700 500.8080 481.4500 500.000
+ 16 1.2000 0.0000 0.6000 -2.5000 59.969 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.1234 67.4113 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.9396 5.0000 7.5000 472.0760 56.7140 502.8830 482.0850 500.000
+ 17 1.2000 0.0000 0.6000 -2.4000 59.699 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.6311 67.7604 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4064 1.9396 5.0000 7.4000 471.4910 56.4900 495.7210 480.8600 500.000
+ 18 1.2000 0.0000 0.6000 -2.3000 59.873 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1410 68.1124 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.9396 5.0000 7.3000 472.2070 56.6740 501.4410 481.6170 500.000
+ 19 1.2000 0.0000 0.6000 -2.2000 59.435 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6532 68.4672 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3102 1.9396 5.0000 7.2000 471.9130 61.9690 502.4920 482.1920 500.000
+ 20 1.2000 0.0000 0.6000 -2.1000 59.621 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.1676 68.8250 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.9396 5.0000 7.1000 471.6820 69.9250 495.4130 480.8160 500.000
+ 21 1.2000 0.0000 0.6000 -2.0000 59.548 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.6845 69.1859 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.9396 5.0000 7.0000 472.4870 58.7170 502.7280 481.8130 500.000
+ 22 1.2000 0.0000 0.6000 -1.9000 59.617 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2038 69.5500 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.9396 5.0000 6.9000 471.8070 57.5460 500.5180 482.0050 500.000
+ 23 1.2000 0.0000 0.6000 -1.8000 59.764 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7256 69.9173 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.9396 5.0000 6.8000 472.0740 57.0890 497.5520 481.0170 500.000
+ 24 1.2000 0.0000 0.6000 -1.7000 59.068 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2500 70.2882 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.9396 5.0000 6.7000 472.4320 56.9750 503.4830 482.0950 500.000
+ 25 1.2000 0.0000 0.6000 -1.6000 59.386 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.7772 70.6625 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.9396 5.0000 6.6000 471.4950 56.7690 497.1790 481.3010 500.000
+ 26 1.2000 0.0000 0.6000 -1.5000 58.815 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.3071 71.0406 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.9396 5.0000 6.5000 472.2500 56.7590 500.2440 481.4090 500.000
+ 27 1.2000 0.0000 0.6000 -1.4000 59.400 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.8399 71.4224 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.9396 5.0000 6.4000 472.1130 56.6150 503.1640 482.2070 500.000
+ 28 1.2000 0.0000 0.6000 -1.3000 59.538 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.3756 71.8083 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9396 5.0000 6.3000 471.5820 61.3220 495.0500 480.8510 500.000
+ 29 1.2000 0.0000 0.6000 -1.2000 59.452 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.9145 72.1982 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9396 5.0000 6.2000 472.4570 69.6350 502.5610 481.9490 500.000
+ 30 1.2000 0.0000 0.6000 -1.1000 59.873 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.4565 72.5924 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9396 5.0000 6.1000 471.8200 58.7030 500.6140 482.0350 500.000
+ 31 1.2000 0.0000 0.6000 -1.0000 59.098 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.0018 72.9910 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9396 5.0000 6.0000 472.1800 57.4460 497.7690 480.9220 500.000
+# Sum of Counts = 389
+# Center of Mass = -2.532648+/-0.185339
+# Full Width Half-Maximum = 1.461117+/-0.092300
+# 6:53:29 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0129.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0129.dat
new file mode 100644
index 0000000..a9529f1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0129.dat
@@ -0,0 +1,44 @@
+# scan = 129
+# date = 10/26/2011
+# time = 6:53:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 0.8 e -1.7 -0.8 0.1 preset mcu 1.0
+# builtin_command = scan h 1.1 k 0 l 0.8 e -1.7 -0.8 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 0.8000 -1.7000 59.545 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6308 64.6633 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8044 5.0000 6.7000 472.5440 57.1530 503.4320 481.9420 500.000
+ 2 1.1000 0.0000 0.8000 -1.6000 59.702 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1799 65.0098 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2933 1.8044 5.0000 6.6000 471.5510 56.8470 498.1600 481.4470 500.000
+ 3 1.1000 0.0000 0.8000 -1.5000 59.929 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7314 65.3591 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8044 5.0000 6.5000 472.2370 56.7940 499.6750 481.2450 500.000
+ 4 1.1000 0.0000 0.8000 -1.4000 59.799 178.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2856 65.7113 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8044 5.0000 6.4000 472.1980 56.7500 503.4630 482.1170 500.000
+ 5 1.1000 0.0000 0.8000 -1.3000 59.833 266.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8426 66.0664 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8044 5.0000 6.3000 471.5070 56.1570 494.9980 480.7570 500.000
+ 6 1.1000 0.0000 0.8000 -1.2000 59.652 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4026 66.4246 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8044 5.0000 6.2000 472.3240 64.0310 502.0790 481.8340 500.000
+ 7 1.1000 0.0000 0.8000 -1.1000 59.783 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9654 66.7859 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8044 5.0000 6.1000 471.8600 67.8020 501.5490 482.0260 500.000
+ 8 1.1000 0.0000 0.8000 -1.0000 59.637 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5314 67.1506 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8044 5.0000 6.0000 471.9800 57.9180 496.5160 480.7310 500.000
+ 9 1.1000 0.0000 0.8000 -0.9000 60.073 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1006 67.5187 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8044 5.0000 5.9000 472.5000 57.3130 503.2820 482.1060 500.000
+ 10 1.1000 0.0000 0.8000 -0.8000 59.322 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6732 67.8904 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8044 5.0000 5.8000 471.5990 56.8330 498.7800 481.6540 500.000
+# Sum of Counts = 622
+# Center of Mass = -1.310450+/-0.074550
+# Full Width Half-Maximum = 0.298572+/-0.039155
+# 7:04:03 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0130.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0130.dat
new file mode 100644
index 0000000..2283a83
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0130.dat
@@ -0,0 +1,76 @@
+# scan = 130
+# date = 10/26/2011
+# time = 7:04:03 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+# Wed, Oct 26, 2011 [7:04:52 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# s2 hit lower hardware limit
+ 2 0.0000 0.0000 3.6000 -4.9000 59.730 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.7829 58.3636 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.9049 5.0000 9.9000 471.8460 56.7000 501.8350 482.2120 500.000
+ 3 0.0000 0.0000 3.6000 -4.8000 59.511 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.2616 58.6642 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.9049 5.0000 9.8000 471.8460 56.1280 496.6530 481.0210 500.000
+ 4 0.0000 0.0000 3.6000 -4.7000 59.874 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.7412 58.9660 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.9049 5.0000 9.7000 472.2900 56.2460 503.6860 482.3250 500.000
+ 5 0.0000 0.0000 3.6000 -4.6000 59.654 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.2218 59.2690 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 1.9049 5.0000 9.6000 471.2620 61.1570 496.9140 481.2720 500.000
+ 6 0.0000 0.0000 3.6000 -4.5000 59.681 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.7033 59.5733 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.9049 5.0000 9.5000 472.1910 69.2790 500.3920 481.5250 500.000
+ 7 0.0000 0.0000 3.6000 -4.4000 59.918 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.1859 59.8789 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.9049 5.0000 9.4000 472.1210 58.2910 503.1290 482.3050 500.000
+ 8 0.0000 0.0000 3.6000 -4.3000 59.941 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.6695 60.1859 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.9049 5.0000 9.3000 471.6970 56.8960 495.0900 480.7790 500.000
+ 9 0.0000 0.0000 3.6000 -4.2000 59.940 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.1543 60.4943 -2.7386 0.5000 0.0000 0.0000 153.6150 -52.7696 1.9049 5.0000 9.2000 472.4040 56.7750 503.1590 481.9380 500.000
+ 10 0.0000 0.0000 3.6000 -4.1000 59.943 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.6402 60.8041 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.9049 5.0000 9.1000 471.4470 56.4750 499.1700 481.6810 500.000
+ 11 0.0000 0.0000 3.6000 -4.0000 59.874 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.1274 61.1155 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.9049 5.0000 9.0000 471.9840 56.1450 499.0210 481.1010 500.000
+ 12 0.0000 0.0000 3.6000 -3.9000 59.501 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.6157 61.4284 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.9049 5.0000 8.9000 472.0480 56.2090 503.6040 482.0290 500.000
+ 13 0.0000 0.0000 3.6000 -3.8000 59.698 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.1054 61.7429 -2.7386 0.5000 0.0000 0.0000 152.9745 -54.0507 1.9049 5.0000 8.8000 471.2600 55.7310 494.9840 480.7510 500.000
+ 14 0.0000 0.0000 3.6000 -3.7000 59.508 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.5964 62.0591 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.9049 5.0000 8.7000 472.1570 64.4170 502.2810 481.9380 500.000
+ 15 0.0000 0.0000 3.6000 -3.6000 59.700 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.0887 62.3770 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.9049 5.0000 8.6000 471.6020 64.5110 501.1000 482.0770 500.000
+ 16 0.0000 0.0000 3.6000 -3.5000 59.460 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.5825 62.6966 -2.7386 0.5000 0.0000 0.0000 152.4621 -55.0756 1.9049 5.0000 8.5000 471.8680 57.0840 497.4380 480.9820 500.000
+ 17 0.0000 0.0000 3.6000 -3.4000 60.006 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.0778 63.0181 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.9049 5.0000 8.4000 472.2300 56.6690 503.6950 482.2090 500.000
+ 18 0.0000 0.0000 3.6000 -3.3000 59.465 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.5746 63.3415 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.9049 5.0000 8.3000 471.2190 56.0820 496.1800 481.0180 500.000
+ 19 0.0000 0.0000 3.6000 -3.2000 60.045 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.0730 63.6668 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.9049 5.0000 8.2000 472.0770 55.9340 501.2330 481.6050 500.000
+ 20 0.0000 0.0000 3.6000 -3.1000 59.728 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.5730 63.9941 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.9049 5.0000 8.1000 471.6740 55.7230 502.5350 482.1480 500.000
+ 21 0.0000 0.0000 3.6000 -3.0000 59.798 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.0748 64.3234 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.9049 5.0000 8.0000 471.4800 55.1800 495.9330 480.7050 500.000
+ 22 0.0000 0.0000 3.6000 -2.9000 59.579 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.5782 64.6550 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.9049 5.0000 7.9000 472.0730 56.8380 503.6950 481.9930 500.000
+ 23 0.0000 0.0000 3.6000 -2.8000 59.513 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.0835 64.9887 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.9049 5.0000 7.8000 471.0700 66.0390 496.9760 481.1590 500.000
+ 24 0.0000 0.0000 3.6000 -2.7000 59.792 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.5907 65.3247 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.9049 5.0000 7.7000 472.0950 58.2410 500.7630 481.5580 500.000
+ 25 0.0000 0.0000 3.6000 -2.6000 59.857 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0998 65.6630 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.9049 5.0000 7.6000 471.8640 56.5890 502.9180 482.2580 500.000
+ 26 0.0000 0.0000 3.6000 -2.5000 59.808 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.6108 66.0038 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.9049 5.0000 7.5000 471.5560 55.8180 495.5760 480.6740 500.000
+ 27 0.0000 0.0000 3.6000 -2.4000 59.535 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.1239 66.3472 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.9049 5.0000 7.4000 472.1730 55.8170 503.8320 482.1340 500.000
+ 28 0.0000 0.0000 3.6000 -2.3000 59.732 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6392 66.6931 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.9049 5.0000 7.3000 471.0390 55.4330 496.3200 481.0850 500.000
+ 29 0.0000 0.0000 3.6000 -2.2000 59.836 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.1566 67.0417 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.9049 5.0000 7.2000 471.9760 55.2440 501.2760 481.5890 500.000
+ 30 0.0000 0.0000 3.6000 -2.1000 59.951 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6762 67.3931 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.9049 5.0000 7.1000 471.4660 55.1280 502.1750 482.0840 500.000
+ 31 0.0000 0.0000 3.6000 -2.0000 59.343 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1983 67.7474 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.9049 5.0000 7.0000 471.5480 63.3160 496.8660 480.8250 500.000
+ 32 0.0000 0.0000 3.6000 -1.9000 59.521 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7227 68.1046 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.9049 5.0000 6.9000 472.1060 63.4880 503.9870 482.2520 500.000
+ 33 0.0000 0.0000 3.6000 -1.8000 59.923 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2496 68.4650 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.9049 5.0000 6.8000 471.2010 56.5590 495.2200 480.8130 500.000
+ 34 0.0000 0.0000 3.6000 -1.7000 59.317 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.7791 68.8285 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7650 1.9049 5.0000 6.7000 472.1650 56.0010 502.0820 481.7810 500.000
+ 35 0.0000 0.0000 3.6000 -1.6000 59.637 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.3112 69.1954 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.9049 5.0000 6.6000 471.4560 55.6990 501.1660 482.0470 500.000
+ 36 0.0000 0.0000 3.6000 -1.5000 59.503 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.8461 69.5657 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.9049 5.0000 6.5000 471.6860 55.3040 497.8090 481.0330 500.000
+ 37 0.0000 0.0000 3.6000 -1.4000 59.944 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3838 69.9395 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.9049 5.0000 6.4000 471.9540 55.2990 504.0280 482.2440 500.000
+ 38 0.0000 0.0000 3.6000 -1.3000 59.640 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.9244 70.3171 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9049 5.0000 6.3000 471.0260 54.9140 494.7260 480.6430 500.000
+ 39 0.0000 0.0000 3.6000 -1.2000 59.891 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.4680 70.6984 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9049 5.0000 6.2000 471.9970 60.4830 502.5980 481.7530 500.000
+ 40 0.0000 0.0000 3.6000 -1.1000 59.625 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.0148 71.0838 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9049 5.0000 6.1000 471.3100 68.0610 500.4960 481.8890 500.000
+ 41 0.0000 0.0000 3.6000 -1.0000 59.586 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.5647 71.4733 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9049 5.0000 6.0000 471.8120 56.8650 498.2020 481.0480 500.000
+# Sum of Counts = 355
+# Center of Mass = -3.087324+/-0.237834
+# Full Width Half-Maximum = 2.017370+/-0.120584
+# 7:46:26 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0131.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0131.dat
new file mode 100644
index 0000000..5971355
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0131.dat
@@ -0,0 +1,35 @@
+# scan = 131
+# date = 10/26/2011
+# time = 7:46:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.1435 0.0000 3.8276 -2.5000 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 71.4733 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0382 5.0000 7.5000 471.2910 55.6180 494.7430 480.5620 500.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 8:04:49 PM 10/26/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0132.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0132.dat
new file mode 100644
index 0000000..024fcf0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0132.dat
@@ -0,0 +1,55 @@
+# scan = 132
+# date = 10/26/2011
+# time = 8:16:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -2.5000 58.377 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 61.7710 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7991 5.0000 7.5000 471.3000 54.8730 495.5610 480.4380 500.000
+ 2 0.0000 0.0000 3.4000 -2.4000 59.205 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.2814 62.0979 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4064 1.7991 5.0000 7.4000 471.9400 54.9340 504.2250 481.9070 500.000
+ 3 0.0000 0.0000 3.4000 -2.3000 59.180 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.8154 62.4269 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8531 1.7991 5.0000 7.3000 470.8790 63.5220 495.1200 480.7230 500.000
+ 4 0.0000 0.0000 3.4000 -2.2000 59.300 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.3513 62.7580 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7991 5.0000 7.2000 472.0740 62.2950 502.2940 481.6130 500.000
+ 5 0.0000 0.0000 3.4000 -2.1000 58.819 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.8894 63.0913 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.7991 5.0000 7.1000 471.3610 56.2380 500.6420 481.8200 500.000
+ 6 -0.0005 0.0000 3.3988 -1.9926 58.581 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4298 63.4265 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2926 1.7985 5.0000 6.9926 470.9240 55.1390 495.7970 480.8450 500.000
+ 7 0.0000 0.0000 3.4000 -1.9000 59.112 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9723 63.7648 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.7991 5.0000 6.9000 471.9950 55.0890 502.0650 481.4860 500.000
+ 8 0.0000 0.0000 3.4000 -1.8000 58.494 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.5173 64.1051 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.7991 5.0000 6.8000 471.2570 54.9720 501.0170 481.8470 500.000
+ 9 0.0000 0.0000 3.4000 -1.7000 59.571 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.0646 64.4480 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.7991 5.0000 6.7000 471.6540 60.3810 498.4760 481.0100 500.000
+ 10 0.0000 0.0000 3.4000 -1.6000 59.390 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6145 64.7936 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.7991 5.0000 6.6000 471.9270 68.1280 504.0360 482.0860 500.000
+ 11 0.0000 0.0000 3.4000 -1.5000 59.440 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1670 65.1418 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.7991 5.0000 6.5000 471.3110 56.3770 494.4750 480.3520 500.000
+ 12 0.0000 0.0000 3.4000 -1.4000 59.340 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7222 65.4928 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.7991 5.0000 6.4000 472.2240 55.9070 503.6230 481.6690 500.000
+ 13 0.0000 0.0000 3.4000 -1.3000 59.397 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2802 65.8468 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.7991 5.0000 6.3000 471.0890 55.5110 497.6510 481.2540 500.000
+ 14 0.0000 0.0000 3.4000 -1.2000 59.429 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8411 66.2039 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.7991 5.0000 6.2000 471.9480 55.2970 500.5000 481.1380 500.000
+ 15 0.0000 0.0000 3.4000 -1.1000 59.558 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4049 66.5640 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.7991 5.0000 6.1000 471.6420 55.1950 502.9380 481.9080 500.000
+ 16 0.0000 0.0000 3.4000 -1.0000 59.160 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9718 66.9275 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.7991 5.0000 6.0000 471.4470 54.8180 495.9710 480.3860 500.000
+ 17 0.0000 0.0000 3.4000 -0.9000 59.110 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.5420 67.2944 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.7991 5.0000 5.9000 472.0090 54.8720 504.1900 481.9730 500.000
+ 18 0.0000 0.0000 3.4000 -0.8000 59.194 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1154 67.6647 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.7991 5.0000 5.8000 470.9390 63.5810 495.3190 480.8120 500.000
+ 19 0.0000 0.0000 3.4000 -0.7000 59.327 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6923 68.0388 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.7991 5.0000 5.7000 472.1020 62.2840 501.9730 481.4690 500.000
+ 20 0.0000 0.0000 3.4000 -0.6000 59.215 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.2727 68.4167 -2.7386 0.5000 0.0000 0.0000 145.2773 -69.4449 1.7991 5.0000 5.6000 471.5350 56.2920 501.3870 481.7400 500.000
+ 21 0.0000 0.0000 3.4000 -0.5000 59.343 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8567 68.7985 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.7991 5.0000 5.5000 471.7690 55.5610 497.5860 480.7490 500.000
+# Sum of Counts = 299
+# Center of Mass = -1.523065+/-0.127198
+# Full Width Half-Maximum = 0.890365+/-0.069129
+# 8:41:09 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0133.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0133.dat
new file mode 100644
index 0000000..cc357e0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0133.dat
@@ -0,0 +1,65 @@
+# scan = 133
+# date = 10/26/2011
+# time = 8:41:09 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.2 e -1.5 0.0 0.05 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.2 e -1.5 0.0 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.2000 -1.5000 59.615 63.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4932 60.8207 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6933 5.0000 6.5000 472.1700 55.4810 504.0390 481.9390 500.000
+ 2 0.0000 0.0000 3.2000 -1.4500 58.942 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7813 60.9857 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.6933 5.0000 6.4500 471.0250 55.1830 495.9830 480.8660 500.000
+ 3 0.0000 0.0000 3.2000 -1.4000 59.236 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.0701 61.1512 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6933 5.0000 6.4000 472.0370 55.1280 501.7440 481.4420 500.000
+ 4 0.0000 0.0000 3.2000 -1.3500 59.547 64.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3595 61.3173 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.6933 5.0000 6.3500 471.3730 55.0220 501.4140 481.7800 500.000
+ 5 0.0000 0.0000 3.2000 -1.3000 59.278 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6496 61.4840 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6933 5.0000 6.3000 471.6240 59.0620 497.7280 480.8270 500.000
+ 6 0.0000 0.0000 3.2000 -1.2500 59.200 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.9404 61.6512 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2543 1.6933 5.0000 6.2500 472.0020 67.3650 504.1440 482.2010 500.000
+ 7 0.0000 0.0000 3.2000 -1.2000 59.469 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.2319 61.8190 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6933 5.0000 6.2000 471.2640 56.7310 494.4340 480.4790 500.000
+ 8 0.0000 0.0000 3.2000 -1.1500 59.325 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.5242 61.9874 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.6933 5.0000 6.1500 472.2350 56.1290 503.3400 481.7500 500.000
+ 9 0.0000 0.0000 3.2000 -1.1000 59.313 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.8171 62.1563 -2.7386 0.5000 0.0000 0.0000 146.9234 -66.1530 1.6933 5.0000 6.1000 471.1770 55.8250 498.3500 481.4750 500.000
+ 10 0.0000 0.0000 3.2000 -1.0500 59.263 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1108 62.3259 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.6933 5.0000 6.0500 471.9540 55.6580 500.1230 481.1510 500.000
+ 11 0.0000 0.0000 3.2000 -1.0000 59.171 81.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.4053 62.4962 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6933 5.0000 6.0000 471.7170 55.5910 503.1620 481.9080 500.000
+ 12 0.0000 0.0000 3.2000 -0.9500 59.746 95.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7005 62.6670 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0905 1.6933 5.0000 5.9500 471.4580 55.2400 495.8440 480.3130 500.000
+ 13 0.0000 0.0000 3.2000 -0.9000 59.455 117.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.9965 62.8386 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6933 5.0000 5.9000 472.0520 55.2960 504.2740 481.8860 500.000
+ 14 0.0000 0.0000 3.2000 -0.8500 58.849 136.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2933 63.0107 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.6933 5.0000 5.8500 470.9710 64.2820 495.3350 480.7660 500.000
+ 15 0.0000 0.0000 3.2000 -0.8000 59.380 134.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.5910 63.1836 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.6933 5.0000 5.8000 472.1600 63.0590 502.1690 481.4260 500.000
+ 16 0.0000 0.0000 3.2000 -0.7500 59.392 125.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8894 63.3571 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.6933 5.0000 5.7500 471.5060 56.7760 500.8800 481.8690 500.000
+ 17 0.0000 0.0000 3.2000 -0.7000 59.515 86.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.1887 63.5314 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.6933 5.0000 5.7000 471.8640 56.2220 498.1730 480.9160 500.000
+ 18 0.0000 0.0000 3.2000 -0.6500 59.530 70.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4889 63.7064 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0932 1.6933 5.0000 5.6500 472.0640 56.1780 504.1140 482.0580 500.000
+ 19 0.0000 0.0000 3.2000 -0.6000 59.323 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.7899 63.8821 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4450 1.6933 5.0000 5.6000 471.2630 55.7950 494.4480 480.4630 500.000
+ 20 0.0000 0.0000 3.2000 -0.5500 59.104 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.0918 64.0585 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.6933 5.0000 5.5500 472.1760 55.8830 503.5910 481.7630 500.000
+ 21 0.0000 0.0000 3.2000 -0.5000 59.080 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3947 64.2357 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6933 5.0000 5.5000 471.0640 55.6680 497.7020 481.2830 500.000
+ 22 0.0000 0.0000 3.2000 -0.4500 59.528 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.6984 64.4137 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.6933 5.0000 5.4500 471.9420 59.7270 500.5330 481.4350 500.000
+ 23 0.0000 0.0000 3.2000 -0.4000 59.173 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.0032 64.5925 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.6933 5.0000 5.4000 471.7140 68.2280 502.7480 482.2200 500.000
+ 24 0.0000 0.0000 3.2000 -0.3500 59.317 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.3088 64.7721 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.6933 5.0000 5.3500 471.6480 58.0920 496.0670 480.6970 500.000
+ 25 0.0000 0.0000 3.2000 -0.3000 59.138 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6154 64.9525 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.6933 5.0000 5.3000 472.2870 57.1320 504.2870 482.1450 500.000
+ 26 0.0000 0.0000 3.2000 -0.2500 58.925 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.9231 65.1338 -2.7386 0.5000 0.0000 0.0000 143.9648 -72.0704 1.6933 5.0000 5.2500 471.1990 56.5460 495.1690 480.8090 500.000
+ 27 0.0000 0.0000 3.2000 -0.2000 59.389 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.2318 65.3159 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4708 1.6933 5.0000 5.2000 472.2390 56.4310 502.4430 481.7460 500.000
+ 28 0.0000 0.0000 3.2000 -0.1500 58.761 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.5414 65.4989 -2.7386 0.5000 0.0000 0.0000 143.5610 -72.8779 1.6933 5.0000 5.1500 471.4420 56.3380 500.5260 482.0110 500.000
+ 29 0.0000 0.0000 3.2000 -0.1000 59.290 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8522 65.6828 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 1.6933 5.0000 5.1000 471.8940 56.0410 498.8830 481.1760 500.000
+ 30 0.0000 0.0000 3.2000 -0.0500 59.636 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.1640 65.8676 -2.7386 0.5000 0.0000 0.0000 143.1431 -73.7138 1.6933 5.0000 5.0500 471.9630 56.1460 503.9890 482.3060 500.000
+ 31 0.0000 0.0000 3.2000 0.0000 59.153 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.4769 66.0534 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6933 5.0000 5.0000 471.4110 64.6690 494.7060 480.6090 500.000
+# Sum of Counts = 1878
+# Center of Mass = -0.810517+/-0.028053
+# Full Width Half-Maximum = 0.810106+/-0.019569
+# 9:13:14 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0134.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0134.dat
new file mode 100644
index 0000000..4059a14
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0134.dat
@@ -0,0 +1,75 @@
+# scan = 134
+# date = 10/26/2011
+# time = 9:13:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.5000 -6.5000 58.887 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8781 43.0283 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6163 5.0000 11.5000 472.0210 58.5720 498.7050 481.1420 500.000
+ 2 1.0000 0.0000 -0.5000 -6.4000 59.048 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4315 43.3151 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6163 5.0000 11.4000 472.1610 57.0200 504.0450 482.2730 500.000
+ 3 1.0000 0.0000 -0.5000 -6.3000 59.406 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9844 43.6016 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6163 5.0000 11.3000 471.5840 56.6120 494.8370 480.5670 500.000
+ 4 1.0000 0.0000 -0.5000 -6.2000 59.040 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5368 43.8880 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6163 5.0000 11.2000 472.3700 56.6530 504.1410 482.0840 500.000
+ 5 1.0000 0.0000 -0.5000 -6.1000 59.299 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0888 44.1742 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6163 5.0000 11.1000 471.2100 56.4700 496.0360 481.0020 500.000
+ 6 1.0000 0.0000 -0.5000 -6.0000 58.664 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6405 44.4604 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6163 5.0000 11.0000 472.2370 56.5020 501.7850 481.5130 500.000
+ 7 1.0000 0.0000 -0.5000 -5.9000 59.189 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1919 44.7465 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6163 5.0000 10.9000 471.5440 56.5270 501.1950 481.8930 500.000
+ 8 1.0000 0.0000 -0.5000 -5.8000 59.056 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7430 45.0326 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6163 5.0000 10.8000 471.9070 63.5270 498.2120 480.9090 500.000
+ 9 1.0000 0.0000 -0.5000 -5.7000 59.044 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2939 45.3186 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6163 5.0000 10.7000 472.2050 69.3430 504.0370 481.9620 500.000
+ 10 1.0000 0.0000 -0.5000 -5.6000 59.193 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8447 45.6047 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6163 5.0000 10.6000 471.5760 57.6770 494.5100 480.4260 500.000
+ 11 1.0000 0.0000 -0.5000 -5.5000 59.078 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3954 45.8908 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6163 5.0000 10.5000 472.4700 57.1600 503.8640 481.8430 500.000
+ 12 1.0000 0.0000 -0.5000 -5.4000 58.661 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9460 46.1771 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.6164 5.0000 10.4000 471.3220 56.8150 496.7540 481.0140 500.000
+ 13 1.0000 0.0000 -0.5000 -5.3000 59.262 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4967 46.4634 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6164 5.0000 10.3000 472.3020 56.8190 501.3640 481.2410 500.000
+ 14 1.0000 0.0000 -0.5000 -5.2000 58.819 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.0474 46.7498 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6163 5.0000 10.2000 471.7510 56.6760 501.9270 481.7300 500.000
+ 15 1.0000 0.0000 -0.5000 -5.1000 59.215 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5982 47.0365 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6163 5.0000 10.1000 471.9240 56.4220 497.7470 480.5810 500.000
+ 16 1.0000 0.0000 -0.5000 -5.0000 58.883 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1492 47.3233 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6164 5.0000 10.0000 472.2030 58.0460 504.2810 482.1090 500.000
+ 17 1.0000 0.0000 -0.5000 -4.9000 59.085 49.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7004 47.6104 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6163 5.0000 9.9000 471.4660 67.3110 494.4200 480.4920 500.000
+ 18 1.0000 0.0000 -0.5000 -4.8000 59.260 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2518 47.8976 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6163 5.0000 9.8000 472.4570 60.9970 503.7690 481.8570 500.000
+ 19 1.0000 0.0000 -0.5000 -4.7000 59.064 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8036 48.1852 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.6163 5.0000 9.7000 471.3800 57.0200 496.9970 481.1060 500.000
+ 20 1.0000 0.0000 -0.5000 -4.6000 58.786 66.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.3557 48.4731 -2.7386 0.5000 0.0000 0.0000 154.2120 -51.5757 1.6163 5.0000 9.6000 472.3500 56.9380 501.2310 481.3440 500.000
+ 21 1.0000 0.0000 -0.5000 -4.5000 58.949 81.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.9082 48.7614 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6163 5.0000 9.5000 471.7910 56.9010 501.9670 481.8910 500.000
+ 22 1.0000 0.0000 -0.5000 -4.4000 58.983 57.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4612 49.0500 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6163 5.0000 9.4000 471.9710 56.5410 497.8270 480.7530 500.000
+ 23 1.0000 0.0000 -0.5000 -4.3000 59.071 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0148 49.3390 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6163 5.0000 9.3000 472.2280 56.6430 504.2790 482.0550 500.000
+ 24 1.0000 0.0000 -0.5000 -4.2000 58.903 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5689 49.6284 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6163 5.0000 9.2000 471.4230 56.2780 494.4740 480.4070 500.000
+ 25 1.0000 0.0000 -0.5000 -4.1000 59.002 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1236 49.9184 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6163 5.0000 9.1000 472.3400 63.6860 503.6610 481.9140 500.000
+ 26 1.0000 0.0000 -0.5000 -4.0000 58.977 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6791 50.2088 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6163 5.0000 9.0000 471.3030 69.2710 497.1300 481.1840 500.000
+ 27 1.0000 0.0000 -0.5000 -3.9000 58.978 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.2352 50.4997 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6163 5.0000 8.9000 472.3150 57.7800 501.0930 481.3330 500.000
+ 28 1.0000 0.0000 -0.5000 -3.8000 59.074 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.7922 50.7912 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 1.6163 5.0000 8.8000 471.8600 57.1290 502.2100 481.7940 500.000
+ 29 1.0000 0.0000 -0.5000 -3.7000 59.160 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.3500 51.0833 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6163 5.0000 8.7000 471.9480 56.8560 497.4510 480.7130 500.000
+ 30 1.0000 0.0000 -0.5000 -3.6000 58.835 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.9087 51.3760 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6163 5.0000 8.6000 472.2750 56.7860 504.3850 481.9730 500.000
+ 31 1.0000 0.0000 -0.5000 -3.5000 59.212 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.4684 51.6694 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.6163 5.0000 8.5000 471.3920 56.8950 494.3700 480.4060 500.000
+ 32 1.0000 0.0000 -0.5000 -3.4000 59.385 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.0291 51.9634 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.6163 5.0000 8.4000 472.3450 57.1780 503.8310 481.7540 500.000
+ 33 1.0000 0.0000 -0.5000 -3.3000 58.953 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.5909 52.2583 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.6163 5.0000 8.3000 471.1900 58.6780 497.1600 481.1770 500.000
+ 34 1.0000 0.0000 -0.5000 -3.2000 58.851 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1539 52.5538 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.6163 5.0000 8.2000 472.2340 68.3890 501.0990 481.4360 500.000
+ 35 1.0000 0.0000 -0.5000 -3.1000 58.955 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.7180 52.8502 -2.7386 0.5000 0.0000 0.0000 151.7309 -56.5380 1.6163 5.0000 8.1000 471.8270 62.0540 502.3030 481.8790 500.000
+ 36 1.0000 0.0000 -0.5000 -3.0000 59.162 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.2834 53.1475 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.6163 5.0000 8.0000 472.0120 57.4630 497.5120 480.7210 500.000
+ 37 1.0000 0.0000 -0.5000 -2.9000 59.013 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.8502 53.4456 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.6163 5.0000 7.9000 472.3510 57.2610 504.3900 481.9130 500.000
+ 38 1.0000 0.0000 -0.5000 -2.8000 59.028 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.4184 53.7446 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6163 5.0000 7.8000 471.4870 57.4110 494.3630 480.3950 500.000
+ 39 1.0000 0.0000 -0.5000 -2.7000 59.037 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.9880 54.0446 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.6163 5.0000 7.7000 472.4400 57.5590 503.9320 481.7580 500.000
+ 40 1.0000 0.0000 -0.5000 -2.6000 58.785 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.5591 54.3457 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.6163 5.0000 7.6000 471.2660 57.2330 496.7770 481.0740 500.000
+ 41 1.0000 0.0000 -0.5000 -2.5000 59.303 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.1319 54.6477 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6163 5.0000 7.5000 472.2730 57.1520 501.5660 481.3580 500.000
+# Sum of Counts = 967
+# Center of Mass = -4.534540+/-0.207889
+# Full Width Half-Maximum = 1.633854+/-0.074284
+# 9:55:46 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0135.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0135.dat
new file mode 100644
index 0000000..a73aad2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0135.dat
@@ -0,0 +1,65 @@
+# scan = 135
+# date = 10/26/2011
+# time = 9:55:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.2 e -6.0 -3.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.2 e -6.0 -3.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.2000 -6.0000 59.359 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2998 43.7844 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5981 5.0000 11.0000 472.1640 68.1850 503.9380 482.2250 500.000
+ 2 1.0000 0.0000 -0.2000 -5.9000 59.265 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8578 44.0708 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5981 5.0000 10.9000 471.6650 62.6320 494.8050 480.4580 500.000
+ 3 1.0000 0.0000 -0.2000 -5.8000 58.644 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.4156 44.3572 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 1.5981 5.0000 10.8000 472.5300 57.5540 504.2730 482.0210 500.000
+ 4 1.0000 0.0000 -0.2000 -5.7000 59.584 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.9731 44.6435 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5981 5.0000 10.7000 471.3530 57.5830 495.4940 480.8510 500.000
+ 5 1.0000 0.0000 -0.2000 -5.6000 59.242 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5304 44.9298 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5981 5.0000 10.6000 472.4110 57.5950 502.2660 481.5690 500.000
+ 6 1.0000 0.0000 -0.2000 -5.5000 59.199 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.0875 45.2161 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5981 5.0000 10.5000 471.6140 57.5580 500.6080 481.8700 500.000
+ 7 1.0000 0.0000 -0.2000 -5.4000 59.321 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6445 45.5024 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5981 5.0000 10.4000 472.1080 57.3210 499.0530 480.9920 500.000
+ 8 1.0000 0.0000 -0.2000 -5.3000 59.051 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.2014 45.7887 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5981 5.0000 10.3000 472.1330 57.2020 503.9170 482.0030 500.000
+ 9 1.0000 0.0000 -0.2000 -5.2000 59.549 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7584 46.0751 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5981 5.0000 10.2000 471.6570 63.7160 495.1270 480.3770 500.000
+ 10 1.0000 0.0000 -0.2000 -5.1000 59.189 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.3154 46.3616 -2.7386 0.5000 0.0000 0.0000 154.9040 -50.1919 1.5981 5.0000 10.1000 472.4950 70.4200 504.2460 481.9260 500.000
+ 11 1.0000 0.0000 -0.2000 -5.0000 59.493 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.8725 46.6482 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5981 5.0000 10.0000 471.3890 58.8780 495.4160 480.6860 500.000
+ 12 1.0000 0.0000 -0.2000 -4.9000 59.185 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4297 46.9350 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.5981 5.0000 9.9000 472.5080 57.0150 502.3740 481.3670 500.000
+ 13 1.0000 0.0000 -0.2000 -4.8000 59.435 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.9872 47.2220 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5981 5.0000 9.8000 471.6480 57.4140 500.3890 481.7320 500.000
+ 14 1.0000 0.0000 -0.2000 -4.7000 59.201 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.5449 47.5092 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.5981 5.0000 9.7000 472.1860 57.4550 499.2780 480.8560 500.000
+ 15 1.0000 0.0000 -0.2000 -4.6000 58.987 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1029 47.7966 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5981 5.0000 9.6000 472.1510 57.4560 503.8520 481.8440 500.000
+ 16 1.0000 0.0000 -0.2000 -4.5000 59.101 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6613 48.0844 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5981 5.0000 9.5000 471.7340 57.0480 495.6150 480.2110 500.000
+ 17 1.0000 0.0000 -0.2000 -4.4000 58.971 65.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2202 48.3724 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5981 5.0000 9.4000 472.3760 58.0420 504.4610 481.9570 500.000
+ 18 1.0000 0.0000 -0.2000 -4.3000 59.024 66.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7794 48.6608 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5981 5.0000 9.3000 471.2980 67.5900 494.8020 480.5580 500.000
+ 19 1.0000 0.0000 -0.2000 -4.2000 59.060 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3392 48.9495 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.5981 5.0000 9.2000 472.4770 62.8490 502.8840 481.3420 500.000
+ 20 1.0000 0.0000 -0.2000 -4.1000 59.380 57.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8996 49.2386 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5981 5.0000 9.1000 471.5790 57.5670 499.4590 481.5570 500.000
+ 21 1.0000 0.0000 -0.2000 -4.0000 59.141 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4607 49.5282 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 1.5981 5.0000 9.0000 472.2380 57.4840 499.7250 480.9020 500.000
+ 22 1.0000 0.0000 -0.2000 -3.9000 59.089 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0224 49.8182 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5981 5.0000 8.9000 472.0950 57.6030 503.5210 481.8020 500.000
+ 23 1.0000 0.0000 -0.2000 -3.8000 58.813 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5849 50.1088 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 1.5981 5.0000 8.8000 471.7450 57.3380 495.7570 480.2330 500.000
+ 24 1.0000 0.0000 -0.2000 -3.7000 59.221 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1482 50.3998 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5981 5.0000 8.7000 472.3680 57.2590 504.4950 481.7860 500.000
+ 25 1.0000 0.0000 -0.2000 -3.6000 58.823 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7124 50.6914 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5981 5.0000 8.6000 471.2480 57.5600 494.7740 480.5400 500.000
+ 26 1.0000 0.0000 -0.2000 -3.5000 59.072 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2775 50.9836 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5981 5.0000 8.5000 472.3590 66.9300 502.7710 481.6910 500.000
+ 27 1.0000 0.0000 -0.2000 -3.4000 58.994 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8436 51.2764 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.5981 5.0000 8.4000 471.5230 61.1410 499.6020 481.6180 500.000
+ 28 1.0000 0.0000 -0.2000 -3.3000 59.486 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4107 51.5699 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7925 1.5981 5.0000 8.3000 472.2240 57.8630 499.6600 480.9970 500.000
+ 29 1.0000 0.0000 -0.2000 -3.2000 58.819 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9790 51.8640 -2.7386 0.5000 0.0000 0.0000 151.9192 -56.1615 1.5981 5.0000 8.2000 472.1070 57.4350 503.5330 481.9010 500.000
+ 30 1.0000 0.0000 -0.2000 -3.1000 59.046 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5484 52.1590 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.5981 5.0000 8.1000 471.7150 57.0290 495.5850 480.2910 500.000
+ 31 1.0000 0.0000 -0.2000 -3.0000 59.026 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1190 52.4546 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.5981 5.0000 8.0000 472.3350 57.5840 504.2260 481.8830 500.000
+# Sum of Counts = 703
+# Center of Mass = -4.351920+/-0.233205
+# Full Width Half-Maximum = 1.190037+/-0.081530
+# 10:27:49 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0136.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0136.dat
new file mode 100644
index 0000000..f7e3ac6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0136.dat
@@ -0,0 +1,62 @@
+# scan = 136
+# date = 10/26/2011
+# time = 10:27:49 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.1 e -5.0 -2.3 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.1 e -5.0 -2.3 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.1000 -5.0000 59.092 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.0802 46.5512 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5954 5.0000 10.0000 471.2080 57.3010 497.2150 481.1290 500.000
+ 2 1.0000 0.0000 0.1000 -4.9000 59.077 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6384 46.8379 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.5954 5.0000 9.9000 472.1230 57.0760 500.9860 481.3410 500.000
+ 3 1.0000 0.0000 0.1000 -4.8000 59.452 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1967 47.1248 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5954 5.0000 9.8000 471.6710 65.2430 502.1900 481.9340 500.000
+ 4 1.0000 0.0000 0.1000 -4.7000 59.273 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7553 47.4120 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5954 5.0000 9.7000 471.8080 68.5800 496.8710 480.5920 500.000
+ 5 1.0000 0.0000 0.1000 -4.6000 58.911 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.3142 47.6994 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5954 5.0000 9.6000 472.3300 58.9830 504.2480 481.9210 500.000
+ 6 1.0000 0.0000 0.1000 -4.5000 58.788 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8734 47.9870 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5954 5.0000 9.5000 471.3510 57.7980 494.6330 480.3620 500.000
+ 7 1.0000 0.0000 0.1000 -4.4000 58.656 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.4331 48.2750 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5954 5.0000 9.4000 472.3720 57.1550 503.0080 481.4990 500.000
+ 8 1.0000 0.0000 0.1000 -4.3000 58.926 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.9932 48.5633 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5954 5.0000 9.3000 471.3350 57.1860 498.7330 481.3260 500.000
+ 9 1.0000 0.0000 0.1000 -4.2000 59.146 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5539 48.8519 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.5954 5.0000 9.2000 472.0570 57.1040 499.9170 480.9800 500.000
+ 10 1.0000 0.0000 0.1000 -4.1000 59.085 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1152 49.1410 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5954 5.0000 9.1000 471.8620 57.0760 503.2720 481.7840 500.000
+ 11 1.0000 0.0000 0.1000 -4.0000 59.134 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6770 49.4304 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5954 5.0000 9.0000 471.5530 62.7690 495.6860 480.3000 500.000
+ 12 1.0000 0.0000 0.1000 -3.9000 59.274 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2396 49.7203 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5954 5.0000 8.9000 472.2610 70.3520 503.8770 481.8340 500.000
+ 13 1.0000 0.0000 0.1000 -3.8000 59.600 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8029 50.0107 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5954 5.0000 8.8000 471.2420 58.4650 495.8900 480.6720 500.000
+ 14 1.0000 0.0000 0.1000 -3.7000 58.837 67.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3670 50.3016 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5954 5.0000 8.7000 472.2630 57.8250 501.5980 481.2320 500.000
+ 15 1.0000 0.0000 0.1000 -3.6000 58.947 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.9320 50.5930 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5954 5.0000 8.6000 471.6560 57.5120 501.6190 481.5630 500.000
+ 16 1.0000 0.0000 0.1000 -3.5000 58.984 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.4978 50.8851 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5954 5.0000 8.5000 471.8410 57.4930 497.6650 480.4700 500.000
+ 17 1.0000 0.0000 0.1000 -3.4000 58.791 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0647 51.1777 -2.7386 0.5000 0.0000 0.0000 152.2846 -55.4306 1.5954 5.0000 8.4000 472.1300 57.1090 504.0680 481.6410 500.000
+ 18 1.0000 0.0000 0.1000 -3.3000 58.854 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.6326 51.4710 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.5954 5.0000 8.3000 471.2190 56.5220 494.6100 480.2050 500.000
+ 19 1.0000 0.0000 0.1000 -3.2000 59.265 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2016 51.7650 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.5954 5.0000 8.2000 472.1470 58.9540 502.9100 481.4690 500.000
+ 20 1.0000 0.0000 0.1000 -3.1000 58.780 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.7718 52.0597 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 1.5954 5.0000 8.1000 471.2660 67.7380 499.4070 481.4460 500.000
+ 21 1.0000 0.0000 0.1000 -3.0000 58.932 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.3432 52.3551 -2.7386 0.5000 0.0000 0.0000 151.5386 -56.9223 1.5954 5.0000 8.0000 471.9780 59.7520 499.3280 480.7190 500.000
+ 22 1.0000 0.0000 0.1000 -2.9000 59.041 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9160 52.6514 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.5954 5.0000 7.9000 472.0360 57.5690 503.6220 481.6650 500.000
+ 23 1.0000 0.0000 0.1000 -2.8000 58.877 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.4900 52.9484 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.5954 5.0000 7.8000 471.4400 56.8510 494.8770 480.2010 500.000
+ 24 1.0000 0.0000 0.1000 -2.7000 59.134 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0656 53.2464 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.5954 5.0000 7.7000 472.2030 56.7920 503.5060 481.4940 500.000
+ 25 1.0000 0.0000 0.1000 -2.6000 59.078 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6426 53.5452 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.5954 5.0000 7.6000 471.1160 56.3490 497.7190 481.0140 500.000
+ 26 1.0000 0.0000 0.1000 -2.5000 59.243 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2212 53.8450 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.5954 5.0000 7.5000 471.9060 56.0860 500.3510 480.9680 500.000
+ 27 1.0000 0.0000 0.1000 -2.4000 58.833 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8014 54.1458 -2.7386 0.5000 0.0000 0.0000 150.2967 -59.4063 1.5954 5.0000 7.4000 471.6690 60.0480 503.0020 481.8710 500.000
+ 28 1.0000 0.0000 0.1000 -2.3000 59.211 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3834 54.4477 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.5954 5.0000 7.3000 471.4240 68.0500 495.5210 480.2870 500.000
+# Sum of Counts = 601
+# Center of Mass = -3.568885+/-0.207056
+# Full Width Half-Maximum = 1.081221+/-0.078320
+# 10:56:41 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0137.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0137.dat
new file mode 100644
index 0000000..4d1ac02
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0137.dat
@@ -0,0 +1,65 @@
+# scan = 137
+# date = 10/26/2011
+# time = 10:56:41 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.4 e -4.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.4 e -4.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.4000 -4.0000 59.028 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.4436 49.9179 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6085 5.0000 9.0000 472.1740 57.8630 503.0070 481.5620 500.000
+ 2 1.0000 0.0000 0.4000 -3.9000 59.152 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0021 50.2085 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6085 5.0000 8.9000 471.2460 56.8590 499.0080 481.4260 500.000
+ 3 1.0000 0.0000 0.4000 -3.8000 58.860 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5614 50.4995 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 1.6085 5.0000 8.8000 471.8940 56.3370 499.6000 480.9790 500.000
+ 4 1.0000 0.0000 0.4000 -3.7000 59.351 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1215 50.7912 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6085 5.0000 8.7000 471.7870 56.2210 503.4920 481.7960 500.000
+ 5 1.0000 0.0000 0.4000 -3.6000 59.520 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6826 51.0834 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6085 5.0000 8.6000 471.2880 55.7440 495.1280 480.1360 500.000
+ 6 1.0000 0.0000 0.4000 -3.5000 59.291 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2445 51.3763 -2.7386 0.5000 0.0000 0.0000 152.4621 -55.0756 1.6085 5.0000 8.5000 471.9790 55.7250 503.9630 481.7020 500.000
+ 7 1.0000 0.0000 0.4000 -3.4000 59.144 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8075 51.6698 -2.7386 0.5000 0.0000 0.0000 152.2846 -55.4305 1.6085 5.0000 8.4000 470.8140 57.0160 496.2770 480.7710 500.000
+ 8 1.0000 0.0000 0.4000 -3.3000 59.388 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.3716 51.9640 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.6085 5.0000 8.3000 471.8460 66.2260 501.2360 481.2340 500.000
+ 9 1.0000 0.0000 0.4000 -3.2000 59.327 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9368 52.2590 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.6085 5.0000 8.2000 471.5180 58.8860 502.2310 481.6960 500.000
+ 10 1.0000 0.0000 0.4000 -3.1000 58.938 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5032 52.5548 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.6085 5.0000 8.1000 471.5390 56.5460 496.7520 480.3470 500.000
+ 11 1.0000 0.0000 0.4000 -3.0000 59.655 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0708 52.8513 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.6085 5.0000 8.0000 472.0080 56.3040 504.2760 481.7070 500.000
+ 12 1.0000 0.0000 0.4000 -2.9000 59.094 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6397 53.1487 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.6085 5.0000 7.9000 470.9370 55.9760 494.8160 480.3610 500.000
+ 13 1.0000 0.0000 0.4000 -2.8000 59.335 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2101 53.4470 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6085 5.0000 7.8000 471.9520 55.7870 502.7980 481.3920 500.000
+ 14 1.0000 0.0000 0.4000 -2.7000 59.198 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7819 53.7462 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.6085 5.0000 7.7000 471.0050 55.9740 499.6800 481.4000 500.000
+ 15 1.0000 0.0000 0.4000 -2.6000 58.652 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3552 54.0464 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.6085 5.0000 7.6000 471.6050 56.1300 499.3430 480.6380 500.000
+ 16 1.0000 0.0000 0.4000 -2.5000 59.437 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.9301 54.3477 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6085 5.0000 7.5000 471.5770 63.8250 503.5010 481.8300 500.000
+ 17 1.0000 0.0000 0.4000 -2.4000 59.541 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5067 54.6499 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.6085 5.0000 7.4000 471.2420 66.7310 495.0030 480.1180 500.000
+ 18 1.0000 0.0000 0.4000 -2.3000 59.182 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0850 54.9533 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.6085 5.0000 7.3000 472.1120 57.7590 504.0300 481.5220 500.000
+ 19 1.0000 0.0000 0.4000 -2.2000 58.789 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6651 55.2578 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.6085 5.0000 7.2000 470.9750 57.2140 496.1190 480.6520 500.000
+ 20 1.0000 0.0000 0.4000 -2.1000 59.344 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.2471 55.5636 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.6085 5.0000 7.1000 472.0010 57.2460 501.7590 481.1410 500.000
+ 21 1.0000 0.0000 0.4000 -2.0000 59.108 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.8311 55.8705 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.6085 5.0000 7.0000 471.3620 57.2950 501.5320 481.6460 500.000
+ 22 1.0000 0.0000 0.4000 -1.9000 59.365 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.4171 56.1788 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.6085 5.0000 6.9000 471.5930 57.0320 497.9100 480.5250 500.000
+ 23 1.0000 0.0000 0.4000 -1.8000 58.979 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0053 56.4884 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 1.6085 5.0000 6.8000 471.8710 56.9770 504.2740 481.7880 500.000
+ 24 1.0000 0.0000 0.4000 -1.7000 58.659 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.5956 56.7993 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.6085 5.0000 6.7000 471.0810 64.3220 494.4020 480.3410 500.000
+ 25 1.0000 0.0000 0.4000 -1.6000 59.278 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.1884 57.1118 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.6085 5.0000 6.6000 472.1360 67.5640 503.3430 481.4550 500.000
+ 26 1.0000 0.0000 0.4000 -1.5000 59.100 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7834 57.4258 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6085 5.0000 6.5000 471.1930 58.7910 498.2410 481.1590 500.000
+ 27 1.0000 0.0000 0.4000 -1.4000 59.210 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3810 57.7413 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6085 5.0000 6.4000 472.0380 58.0590 500.2250 480.9870 500.000
+ 28 1.0000 0.0000 0.4000 -1.3000 59.096 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9812 58.0584 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6085 5.0000 6.3000 471.8300 57.7040 503.1370 481.8460 500.000
+ 29 1.0000 0.0000 0.4000 -1.2000 59.281 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5841 58.3773 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6085 5.0000 6.2000 471.5650 57.1380 495.9600 480.2860 500.000
+ 30 1.0000 0.0000 0.4000 -1.1000 58.754 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1897 58.6980 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6085 5.0000 6.1000 472.1580 57.2030 504.2410 481.7140 500.000
+ 31 1.0000 0.0000 0.4000 -1.0000 58.875 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.7983 59.0204 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6085 5.0000 6.0000 471.0360 57.0190 495.0880 480.3750 500.000
+# Sum of Counts = 626
+# Center of Mass = -2.487540+/-0.142924
+# Full Width Half-Maximum = 1.283473+/-0.067044
+# 11:28:45 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0138.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0138.dat
new file mode 100644
index 0000000..8e3984c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0138.dat
@@ -0,0 +1,53 @@
+# scan = 138
+# date = 10/26/2011
+# time = 11:28:45 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.6 e -2.5 -0.7 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.6 e -2.5 -0.7 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.6000 -2.5000 59.102 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.7166 55.0130 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6258 5.0000 7.5000 472.0230 64.6660 501.0740 481.0960 500.000
+ 2 1.0000 0.0000 0.6000 -2.4000 59.095 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2884 55.3172 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.6258 5.0000 7.4000 471.6510 67.3120 502.3030 481.7010 500.000
+ 3 1.0000 0.0000 0.6000 -2.3000 58.899 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8621 55.6227 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.6258 5.0000 7.3000 471.7930 59.0030 497.0520 480.3880 500.000
+ 4 1.0000 0.0000 0.6000 -2.2000 59.186 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4375 55.9294 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.6258 5.0000 7.2000 472.2450 58.2790 504.3560 481.7920 500.000
+ 5 1.0000 0.0000 0.6000 -2.1000 58.999 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.0149 56.2373 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.6258 5.0000 7.1000 471.2880 57.5510 494.4740 480.1690 500.000
+ 6 1.0000 0.0000 0.6000 -2.0000 59.081 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.5943 56.5466 -2.7386 0.5000 0.0000 0.0000 149.3716 -61.2567 1.6258 5.0000 7.0000 472.2850 57.5320 503.2320 481.4070 500.000
+ 7 1.0000 0.0000 0.6000 -1.9000 58.935 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.1757 56.8573 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7473 1.6258 5.0000 6.9000 471.2340 57.3520 498.5760 481.1860 500.000
+ 8 1.0000 0.0000 0.6000 -1.8000 59.337 63.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7593 57.1694 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 1.6258 5.0000 6.8000 471.9920 56.0130 500.1110 480.8750 500.000
+ 9 1.0000 0.0000 0.6000 -1.7000 59.056 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3451 57.4831 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.6258 5.0000 6.7000 471.8020 64.3250 503.1190 481.7590 500.000
+ 10 1.0000 0.0000 0.6000 -1.6000 59.032 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.9333 57.7983 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2933 1.6258 5.0000 6.6000 471.5570 65.3390 495.4540 480.1020 500.000
+ 11 1.0000 0.0000 0.6000 -1.5000 59.066 59.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5239 58.1151 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6258 5.0000 6.5000 472.3120 58.7540 503.9500 481.6280 500.000
+ 12 1.0000 0.0000 0.6000 -1.4000 58.726 78.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1170 58.4336 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6258 5.0000 6.4000 471.1920 57.0780 496.0110 480.5830 500.000
+ 13 1.0000 0.0000 0.6000 -1.3000 58.938 69.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7126 58.7538 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6258 5.0000 6.3000 472.1840 56.3240 501.6820 481.0500 500.000
+ 14 1.0000 0.0000 0.6000 -1.2000 58.842 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3110 59.0759 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6258 5.0000 6.2000 471.5140 56.1480 501.5170 481.5350 500.000
+ 15 1.0000 0.0000 0.6000 -1.1000 58.866 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9123 59.3998 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6258 5.0000 6.1000 471.7050 55.8370 497.8520 480.4170 500.000
+ 16 1.0000 0.0000 0.6000 -1.0000 59.107 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5164 59.7257 -2.7386 0.5000 0.0000 0.0000 146.6132 -66.7735 1.6258 5.0000 6.0000 471.9360 55.8620 504.1040 481.7080 500.000
+ 17 1.0000 0.0000 0.6000 -0.9000 59.229 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1236 60.0537 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6258 5.0000 5.9000 471.0860 63.6730 494.5180 480.2500 500.000
+ 18 1.0000 0.0000 0.6000 -0.8000 59.146 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.7339 60.3837 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.6258 5.0000 5.8000 472.0990 66.1190 502.9550 481.3930 500.000
+ 19 1.0000 0.0000 0.6000 -0.7000 58.797 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.3475 60.7160 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.6258 5.0000 5.7000 471.2410 58.5790 499.2120 481.3320 500.000
+# Sum of Counts = 679
+# Center of Mass = -1.594845+/-0.087832
+# Full Width Half-Maximum = 0.777186+/-0.046645
+# 11:48:27 PM 10/26/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0139.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0139.dat
new file mode 100644
index 0000000..c553dc3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0139.dat
@@ -0,0 +1,59 @@
+# scan = 139
+# date = 10/26/2011
+# time = 11:48:28 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.8000 -1.5000 59.351 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.5241 59.0716 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6498 5.0000 6.5000 471.8380 57.7540 498.6790 480.4110 500.000
+ 2 1.0000 0.0000 0.8000 -1.4500 59.426 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8174 59.2327 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.6498 5.0000 6.4500 471.9530 57.5610 503.9430 481.5700 500.000
+ 3 1.0000 0.0000 0.8000 -1.4000 59.258 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.1113 59.3942 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6498 5.0000 6.4000 471.2530 57.1450 494.6040 480.0360 500.000
+ 4 1.0000 0.0000 0.8000 -1.3500 58.787 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4058 59.5563 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.6498 5.0000 6.3500 472.0830 57.2450 503.7780 481.3890 500.000
+ 5 1.0000 0.0000 0.8000 -1.3000 59.130 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7010 59.7188 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6498 5.0000 6.3000 470.9150 57.0500 496.5650 480.5540 500.000
+ 6 1.0000 0.0000 0.8000 -1.2500 58.928 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9969 59.8818 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.6498 5.0000 6.2500 471.9400 64.9090 501.2380 480.9330 500.000
+ 7 1.0000 0.0000 0.8000 -1.2000 59.072 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2935 60.0454 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6498 5.0000 6.2000 471.5020 67.4840 501.9350 481.3500 500.000
+ 8 1.0000 0.0000 0.8000 -1.1500 59.189 78.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5908 60.2094 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.6498 5.0000 6.1500 471.7450 58.9830 497.5640 480.2410 500.000
+ 9 1.0000 0.0000 0.8000 -1.1000 59.170 76.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8888 60.3740 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6498 5.0000 6.1000 472.1110 58.1490 504.1830 481.5660 500.000
+ 10 1.0000 0.0000 0.8000 -1.0500 59.199 99.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1875 60.5391 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.6498 5.0000 6.0500 471.2230 57.4530 494.4010 479.9700 500.000
+ 11 1.0000 0.0000 0.8000 -1.0000 59.028 103.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4870 60.7048 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6498 5.0000 6.0000 472.1750 57.3890 503.4230 481.1500 500.000
+ 12 1.0000 0.0000 0.8000 -0.9500 58.891 109.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.7872 60.8710 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.6498 5.0000 5.9500 471.0400 57.1320 497.6660 480.7870 500.000
+ 13 1.0000 0.0000 0.8000 -0.9000 58.954 107.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0883 61.0377 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6498 5.0000 5.9000 471.9090 57.0060 500.6730 480.6900 500.000
+ 14 1.0000 0.0000 0.8000 -0.8500 59.045 112.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.3901 61.2051 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7383 1.6498 5.0000 5.8500 471.5220 63.2330 502.4570 481.5290 500.000
+ 15 1.0000 0.0000 0.8000 -0.8000 58.902 115.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6927 61.3730 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0695 1.6498 5.0000 5.8000 471.5520 68.9910 496.5700 480.1920 500.000
+ 16 1.0000 0.0000 0.8000 -0.7500 58.784 154.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.9962 61.5416 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.6498 5.0000 5.7500 472.1500 59.0080 504.0960 481.4850 500.000
+ 17 1.0000 0.0000 0.8000 -0.7000 59.299 182.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3004 61.7107 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.6498 5.0000 5.7000 471.1180 57.4670 495.1020 480.1960 500.000
+ 18 1.0000 0.0000 0.8000 -0.6500 58.709 138.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6056 61.8804 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.6498 5.0000 5.6500 472.1180 57.0260 502.3630 481.0100 500.000
+ 19 1.0000 0.0000 0.8000 -0.6000 59.162 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9116 62.0509 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.6498 5.0000 5.6000 471.2400 56.7510 500.1360 481.4190 500.000
+ 20 1.0000 0.0000 0.8000 -0.5500 59.011 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2184 62.2219 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.6498 5.0000 5.5500 471.6970 56.3700 498.9790 480.5690 500.000
+ 21 1.0000 0.0000 0.8000 -0.5000 58.897 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5262 62.3936 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6498 5.0000 5.5000 471.7280 56.3700 503.6730 481.6420 500.000
+ 22 1.0000 0.0000 0.8000 -0.4500 59.018 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8349 62.5660 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.6498 5.0000 5.4500 471.0800 58.8800 494.8130 480.0330 500.000
+ 23 1.0000 0.0000 0.8000 -0.4000 59.054 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1446 62.7391 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.6498 5.0000 5.4000 471.9350 67.3820 503.4240 481.2950 500.000
+ 24 1.0000 0.0000 0.8000 -0.3500 59.003 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4552 62.9129 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.6498 5.0000 5.3500 470.9610 59.0140 497.7220 480.8040 500.000
+ 25 1.0000 0.0000 0.8000 -0.3000 59.240 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.7667 63.0874 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.6498 5.0000 5.3000 471.8460 57.6090 500.5010 480.7900 500.000
+# Sum of Counts = 1794
+# Center of Mass = -0.906438+/-0.030935
+# Full Width Half-Maximum = 0.542370+/-0.016622
+# 12:14:12 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0140.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0140.dat
new file mode 100644
index 0000000..102e17f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0140.dat
@@ -0,0 +1,61 @@
+# scan = 140
+# date = 10/27/2011
+# time = 12:14:12 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 1.0
+# builtin_command = scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 1.1000 -2.0000 59.267 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3528 65.4132 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8481 5.0000 7.0000 471.8570 56.8620 504.0620 481.5750 500.000
+ 2 1.1000 0.0000 1.1000 -1.9500 59.125 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.6195 65.5862 -2.7386 0.5000 0.0000 0.0000 149.2498 -61.5005 1.8481 5.0000 6.9500 471.0010 56.3100 494.4920 479.9660 500.000
+ 3 1.1000 0.0000 1.1000 -1.9000 58.857 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8866 65.7598 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.8481 5.0000 6.9000 471.8980 56.2990 503.5900 481.1900 500.000
+ 4 1.1000 0.0000 1.1000 -1.8500 59.140 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1544 65.9342 -2.7386 0.5000 0.0000 0.0000 149.0015 -61.9969 1.8481 5.0000 6.8500 470.7220 55.9800 497.1520 480.5840 500.000
+ 5 1.1000 0.0000 1.1000 -1.8000 59.267 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.4227 66.1092 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8481 5.0000 6.8000 471.6200 59.9300 500.9010 480.7690 500.000
+ 6 1.1000 0.0000 1.1000 -1.7500 59.052 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6917 66.2849 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.8481 5.0000 6.7500 471.2760 67.8950 502.3170 481.5460 500.000
+ 7 1.1000 0.0000 1.1000 -1.7000 58.997 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.9614 66.4613 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8481 5.0000 6.7000 471.3390 58.2800 496.7450 479.9210 500.000
+ 8 1.1000 0.0000 1.1000 -1.6500 59.214 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2316 66.6385 -2.7386 0.5000 0.0000 0.0000 148.4863 -63.0274 1.8481 5.0000 6.6500 471.8640 57.0840 504.1070 481.3850 500.000
+ 9 1.1000 0.0000 1.1000 -1.6000 59.278 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5025 66.8164 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8481 5.0000 6.6000 470.7940 56.3800 495.0160 480.0490 500.000
+ 10 1.1000 0.0000 1.1000 -1.5500 59.219 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7741 66.9951 -2.7386 0.5000 0.0000 0.0000 148.2188 -63.5624 1.8481 5.0000 6.5500 471.7860 56.3030 502.5580 480.9060 500.000
+ 11 1.1000 0.0000 1.1000 -1.5000 59.033 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0464 67.1746 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8481 5.0000 6.5000 470.8770 56.1460 499.9260 481.1780 500.000
+ 12 1.1000 0.0000 1.1000 -1.4500 58.958 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3193 67.3548 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8481 5.0000 6.4500 471.3930 55.8720 499.1800 480.3780 500.000
+ 13 1.1000 0.0000 1.1000 -1.4000 58.747 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5930 67.5359 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 1.8481 5.0000 6.4000 471.3730 58.1390 503.6030 481.4720 500.000
+ 14 1.1000 0.0000 1.1000 -1.3500 59.194 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8674 67.7178 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.8481 5.0000 6.3500 470.9270 66.6260 495.0460 479.9940 500.000
+ 15 1.1000 0.0000 1.1000 -1.3000 59.095 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1424 67.9005 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8481 5.0000 6.3000 471.7830 59.5080 503.8830 481.2190 500.000
+ 16 1.1000 0.0000 1.1000 -1.2500 59.266 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4182 68.0840 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2543 1.8481 5.0000 6.2500 470.7000 56.9510 496.2750 480.3240 500.000
+ 17 1.1000 0.0000 1.1000 -1.2000 59.054 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6948 68.2685 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5498 1.8481 5.0000 6.2000 471.6580 56.4820 501.3800 480.7690 500.000
+ 18 1.1000 0.0000 1.1000 -1.1500 59.018 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9722 68.4538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8481 5.0000 6.1500 471.0920 56.3170 501.8520 481.2700 500.000
+ 19 1.1000 0.0000 1.1000 -1.1000 59.059 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2503 68.6400 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8481 5.0000 6.1000 471.1950 55.9700 497.5100 480.1180 500.000
+ 20 1.1000 0.0000 1.1000 -1.0500 58.994 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5292 68.8271 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8481 5.0000 6.0500 471.5140 55.9530 504.1460 481.3400 500.000
+ 21 1.1000 0.0000 1.1000 -1.0000 58.955 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.8088 69.0152 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8481 5.0000 6.0000 470.5880 55.5620 494.5930 479.8310 500.000
+ 22 1.1000 0.0000 1.1000 -0.9500 58.911 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0894 69.2042 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8481 5.0000 5.9500 471.5830 64.6960 502.8970 481.2170 500.000
+ 23 1.1000 0.0000 1.1000 -0.9000 58.718 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3707 69.3942 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8481 5.0000 5.9000 470.7860 63.1290 499.2100 481.0540 500.000
+ 24 1.1000 0.0000 1.1000 -0.8500 58.569 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6528 69.5851 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.8481 5.0000 5.8500 471.5150 57.0420 499.5560 480.3980 500.000
+ 25 1.1000 0.0000 1.1000 -0.8000 59.293 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9359 69.7771 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8481 5.0000 5.8000 471.4530 56.6060 503.3680 481.4560 500.000
+ 26 1.1000 0.0000 1.1000 -0.7500 59.044 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2198 69.9701 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.8481 5.0000 5.7500 470.9590 56.0930 495.2230 479.8040 500.000
+ 27 1.1000 0.0000 1.1000 -0.7000 59.052 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5046 70.1642 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8481 5.0000 5.7000 471.6510 56.0830 503.8130 481.3200 500.000
+# Sum of Counts = 790
+# Center of Mass = -1.434873+/-0.073238
+# Full Width Half-Maximum = 0.692004+/-0.034866
+# 12:42:02 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0141.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0141.dat
new file mode 100644
index 0000000..d4ab5ef
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0141.dat
@@ -0,0 +1,65 @@
+# scan = 141
+# date = 10/27/2011
+# time = 12:42:02 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.2 k 0 l 1.2 e -5.5 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.2 k 0 l 1.2 e -5.5 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.2000 0.0000 1.2000 -5.5000 59.282 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.1038 60.7635 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.0161 5.0000 10.5000 471.0480 55.8320 502.1930 481.4500 500.000
+ 2 1.2000 0.0000 1.2000 -5.4000 59.127 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.5574 61.0646 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.0161 5.0000 10.4000 471.0150 55.4810 496.9640 480.1420 500.000
+ 3 1.2000 0.0000 1.2000 -5.3000 59.285 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0118 61.3669 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.0161 5.0000 10.3000 471.4900 63.6050 503.9260 481.5640 500.000
+ 4 1.2000 0.0000 1.2000 -5.2000 59.142 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.4670 61.6705 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.0161 5.0000 10.2000 470.6070 65.1470 495.3060 480.1900 500.000
+ 5 1.2000 0.0000 1.2000 -5.1000 59.041 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.9232 61.9755 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.0161 5.0000 10.1000 471.6730 57.0540 502.1890 480.9030 500.000
+ 6 1.2000 0.0000 1.2000 -5.0000 58.977 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.3804 62.2819 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.0161 5.0000 10.0000 470.9420 56.5110 500.6900 481.3090 500.000
+ 7 1.2000 0.0000 1.2000 -4.9000 59.463 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.8386 62.5898 -2.7386 0.5000 0.0000 0.0000 154.6340 -50.7319 2.0161 5.0000 9.9000 471.2960 56.0800 498.6150 480.3650 500.000
+ 8 1.2000 0.0000 1.2000 -4.8000 59.164 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.2978 62.8992 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.0161 5.0000 9.8000 471.4160 55.9730 503.9080 481.5380 500.000
+ 9 1.2000 0.0000 1.2000 -4.7000 59.059 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7580 63.2101 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 2.0161 5.0000 9.7000 470.6690 55.5700 494.6050 479.9320 500.000
+ 10 1.2000 0.0000 1.2000 -4.6000 58.586 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.2194 63.5226 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.0161 5.0000 9.6000 471.5040 55.5990 503.5640 481.1580 500.000
+ 11 1.2000 0.0000 1.2000 -4.5000 59.053 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.6820 63.8367 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.0161 5.0000 9.5000 470.3930 61.8650 497.1240 480.5600 500.000
+ 12 1.2000 0.0000 1.2000 -4.4000 59.091 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.1457 64.1526 -2.7386 0.5000 0.0000 0.0000 153.9187 -52.1624 2.0161 5.0000 9.4000 471.4320 68.4640 500.6290 480.5400 500.000
+ 13 1.2000 0.0000 1.2000 -4.3000 59.115 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6106 64.4701 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.0161 5.0000 9.3000 471.2170 57.3490 502.7230 481.2590 500.000
+ 14 1.2000 0.0000 1.2000 -4.2000 58.869 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0768 64.7895 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0161 5.0000 9.2000 471.0490 56.3890 496.3230 479.7620 500.000
+ 15 1.2000 0.0000 1.2000 -4.1000 59.389 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5444 65.1107 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.0161 5.0000 9.1000 471.5780 56.2030 504.0510 481.2420 500.000
+ 16 1.2000 0.0000 1.2000 -4.0000 58.999 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.0132 65.4338 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0161 5.0000 9.0000 470.4670 55.7590 495.1900 480.0200 500.000
+ 17 1.2000 0.0000 1.2000 -3.9000 58.776 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4835 65.7588 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.0161 5.0000 8.9000 471.4730 55.7140 502.3330 480.8470 500.000
+ 18 1.2000 0.0000 1.2000 -3.8000 58.935 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.9552 66.0858 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.0161 5.0000 8.8000 470.6290 55.5730 500.2620 481.1960 500.000
+ 19 1.2000 0.0000 1.2000 -3.7000 58.877 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.4284 66.4150 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.0161 5.0000 8.7000 471.1030 58.6490 498.8600 480.4180 500.000
+ 20 1.2000 0.0000 1.2000 -3.6000 58.976 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.9031 66.7462 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.0161 5.0000 8.6000 471.2850 67.1150 503.5750 481.5390 500.000
+ 21 1.2000 0.0000 1.2000 -3.5000 59.045 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.3794 67.0797 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.0161 5.0000 8.5000 470.7450 57.8780 494.8090 479.8890 500.000
+ 22 1.2000 0.0000 1.2000 -3.4000 58.980 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.8573 67.4155 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.0161 5.0000 8.4000 471.6390 56.6220 503.4030 481.1850 500.000
+ 23 1.2000 0.0000 1.2000 -3.3000 58.882 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.3370 67.7536 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.0161 5.0000 8.3000 470.5540 56.1010 497.8130 480.7000 500.000
+ 24 1.2000 0.0000 1.2000 -3.2000 58.861 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.8183 68.0940 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.0161 5.0000 8.2000 471.3520 55.8570 500.5080 480.6110 500.000
+ 25 1.2000 0.0000 1.2000 -3.1000 58.682 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3014 68.4370 -2.7386 0.5000 0.0000 0.0000 151.7309 -56.5380 2.0161 5.0000 8.1000 471.0440 55.7630 502.7880 481.3630 500.000
+ 26 1.2000 0.0000 1.2000 -3.0000 59.171 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7864 68.7826 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0161 5.0000 8.0000 470.8740 55.3870 496.4360 479.9670 500.000
+ 27 1.2000 0.0000 1.2000 -2.9000 59.050 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2732 69.1308 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.0161 5.0000 7.9000 471.3960 55.4260 504.0540 481.3720 500.000
+ 28 1.2000 0.0000 1.2000 -2.8000 59.273 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7620 69.4818 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0161 5.0000 7.8000 470.3650 62.6430 495.1590 480.0880 500.000
+ 29 1.2000 0.0000 1.2000 -2.7000 58.606 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2528 69.8356 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0161 5.0000 7.7000 471.4920 66.4100 502.1230 480.9030 500.000
+ 30 1.2000 0.0000 1.2000 -2.6000 58.930 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.7458 70.1923 -2.7386 0.5000 0.0000 0.0000 150.7288 -58.5423 2.0161 5.0000 7.6000 470.8520 56.9000 500.8320 481.2640 500.000
+ 31 1.2000 0.0000 1.2000 -2.5000 59.292 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2408 70.5520 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0161 5.0000 7.5000 471.1960 56.1740 498.2930 480.2240 500.000
+# Sum of Counts = 364
+# Center of Mass = -3.647527+/-0.273436
+# Full Width Half-Maximum = 1.557357+/-0.120423
+# 1:14:10 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0142.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0142.dat
new file mode 100644
index 0000000..1027967
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0142.dat
@@ -0,0 +1,65 @@
+# scan = 142
+# date = 10/27/2011
+# time = 1:14:10 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 1.3000 -6.5000 59.172 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0202 64.1370 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.1841 5.0000 11.5000 471.5490 55.9580 503.9490 481.4800 500.000
+ 2 1.3000 0.0000 1.3000 -6.4000 58.913 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.4404 64.4367 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.1841 5.0000 11.4000 470.3710 55.5770 495.8890 480.3540 500.000
+ 3 1.3000 0.0000 1.3000 -6.3000 58.832 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.8614 64.7378 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.1841 5.0000 11.3000 471.3590 55.4830 501.8000 480.8350 500.000
+ 4 1.3000 0.0000 1.3000 -6.2000 59.352 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.2833 65.0403 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.1841 5.0000 11.2000 470.6830 55.3870 501.2610 481.2950 500.000
+ 5 1.3000 0.0000 1.3000 -6.1000 58.900 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.7060 65.3443 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.1841 5.0000 11.1000 470.9630 60.4830 498.0330 480.2380 500.000
+ 6 1.3000 0.0000 1.3000 -6.0000 58.872 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.1295 65.6496 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.1841 5.0000 11.0000 471.3270 68.2250 503.8080 481.4790 500.000
+ 7 1.3000 0.0000 1.3000 -5.9000 59.160 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.5540 65.9566 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.1841 5.0000 10.9000 470.5880 57.0030 494.7200 479.8720 500.000
+ 8 1.3000 0.0000 1.3000 -5.8000 58.744 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9794 66.2650 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.1841 5.0000 10.8000 471.5200 56.3520 503.1860 480.8790 500.000
+ 9 1.3000 0.0000 1.3000 -5.7000 58.862 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.4057 66.5750 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.1841 5.0000 10.7000 470.4680 55.9300 498.3220 480.5980 500.000
+ 10 1.3000 0.0000 1.3000 -5.6000 58.497 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8331 66.8867 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9143 2.1841 5.0000 10.5999 471.2280 55.6570 500.1950 480.3400 500.000
+ 11 1.3000 0.0000 1.3000 -5.5000 58.938 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2614 67.2001 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.1841 5.0000 10.5000 470.9890 55.6200 502.9360 481.2160 500.000
+ 12 1.3000 0.0000 1.3000 -5.4000 58.742 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6909 67.5151 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.1841 5.0000 10.4000 470.7200 55.2490 496.1070 479.7230 500.000
+ 13 1.3000 0.0000 1.3000 -5.3000 58.878 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1214 67.8320 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.1841 5.0000 10.3000 471.2930 55.7570 504.0120 481.3020 500.000
+ 14 1.3000 0.0000 1.3000 -5.2000 59.200 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5530 68.1506 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.1841 5.0000 10.2000 470.2710 65.1810 495.4230 480.0910 500.000
+ 15 1.3000 0.0000 1.3000 -5.1000 58.592 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.9858 68.4712 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.1841 5.0000 10.1000 471.3970 60.0360 501.9100 480.7530 500.000
+ 16 1.3000 0.0000 1.3000 -5.0000 58.664 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4198 68.7936 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 2.1841 5.0000 10.0000 470.7790 56.5180 500.9840 481.1840 500.000
+ 17 1.3000 0.0000 1.3000 -4.9000 58.726 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8549 69.1180 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.1841 5.0000 9.9000 471.1080 55.9340 498.3800 480.0300 500.000
+ 18 1.3000 0.0000 1.3000 -4.8000 58.802 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2914 69.4444 -2.7386 0.5000 0.0000 0.0000 154.4955 -51.0086 2.1841 5.0000 9.8000 471.2880 55.8330 503.8870 481.3430 500.000
+ 19 1.3000 0.0000 1.3000 -4.7000 59.118 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.7291 69.7730 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.1841 5.0000 9.7000 470.4970 55.3890 494.6460 479.7890 500.000
+ 20 1.3000 0.0000 1.3000 -4.6000 58.825 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.1682 70.1036 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.1841 5.0000 9.6000 471.3750 55.3670 503.3820 480.9950 500.000
+ 21 1.3000 0.0000 1.3000 -4.5000 58.351 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.6086 70.4364 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.1841 5.0000 9.5000 470.2950 55.1500 497.7410 480.6290 500.000
+ 22 1.3000 0.0000 1.3000 -4.4000 58.985 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.0505 70.7716 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.1841 5.0000 9.4000 471.1830 62.9820 500.4760 480.6480 500.000
+ 23 1.3000 0.0000 1.3000 -4.3000 58.789 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4938 71.1090 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.1841 5.0000 9.3000 471.0370 66.1710 502.7760 481.2950 500.000
+ 24 1.3000 0.0000 1.3000 -4.2000 58.942 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9385 71.4488 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.1841 5.0000 9.2000 470.9100 56.6880 496.1410 479.7860 500.000
+ 25 1.3000 0.0000 1.3000 -4.1000 58.500 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3848 71.7911 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.1841 5.0000 9.1000 471.5190 56.2100 504.0670 481.3050 500.000
+ 26 1.3000 0.0000 1.3000 -4.0000 58.540 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8327 72.1359 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.1841 5.0000 9.0000 470.4170 55.7200 495.2660 480.0560 500.000
+ 27 1.3000 0.0000 1.3000 -3.9000 58.863 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2822 72.4833 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.1841 5.0000 8.9000 471.4390 55.6590 502.3990 480.9220 500.000
+ 28 1.3000 0.0000 1.3000 -3.8000 58.462 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7334 72.8334 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.1841 5.0000 8.8000 470.5610 55.4750 500.0120 481.1210 500.000
+ 29 1.3000 0.0000 1.3000 -3.7000 58.497 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1863 73.1862 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.1841 5.0000 8.7000 471.1400 55.2340 499.4370 480.3450 500.000
+ 30 1.3000 0.0000 1.3000 -3.6000 58.688 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6410 73.5420 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.1841 5.0000 8.6000 471.0660 55.8490 503.5100 481.5060 500.000
+ 31 1.3000 0.0000 1.3000 -3.5000 58.633 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0974 73.9006 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.1841 5.0000 8.5000 470.7710 65.2100 495.6020 479.8600 500.000
+# Sum of Counts = 418
+# Center of Mass = -4.892584+/-0.340517
+# Full Width Half-Maximum = 1.540170+/-0.130022
+# 1:46:00 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0143.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0143.dat
new file mode 100644
index 0000000..61dbda9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0143.dat
@@ -0,0 +1,55 @@
+# scan = 143
+# date = 10/27/2011
+# time = 1:46:00 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.4 k 0 l 1.4 e -7.0 -5.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.4 k 0 l 1.4 e -7.0 -5.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.4000 0.0000 1.4000 -7.0000 58.898 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.2365 69.0608 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3521 5.0000 12.0000 471.5800 58.6900 503.5070 481.2100 500.000
+ 2 1.4000 0.0000 1.4000 -6.9000 58.819 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.6329 69.3662 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3521 5.0000 11.9000 470.5030 56.3530 497.2520 480.5890 500.000
+ 3 1.4000 0.0000 1.4000 -6.8000 58.871 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.0302 69.6732 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3521 5.0000 11.8000 471.4220 55.8690 501.0320 480.5520 500.000
+ 4 1.4000 0.0000 1.4000 -6.7000 58.806 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.4284 69.9818 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 2.3521 5.0000 11.7000 470.9220 55.8100 502.1090 481.2060 500.000
+ 5 1.4000 0.0000 1.4000 -6.6000 59.141 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8275 70.2921 -2.7386 0.5000 0.0000 0.0000 156.6862 -46.6273 2.3521 5.0000 11.6000 471.0300 55.3890 497.6970 480.0210 500.000
+ 6 1.4000 0.0000 1.4000 -6.5000 58.637 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.2276 70.6041 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3521 5.0000 11.5000 471.3200 55.4010 504.0910 481.2390 500.000
+ 7 1.4000 0.0000 1.4000 -6.4000 58.866 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.6286 70.9178 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.3521 5.0000 11.4000 470.4720 54.9680 494.4850 479.8160 500.000
+ 8 1.4000 0.0000 1.4000 -6.3000 58.900 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.0306 71.2332 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 2.3521 5.0000 11.3000 471.3940 61.1700 503.4140 481.1710 500.000
+ 9 1.4000 0.0000 1.4000 -6.2000 58.588 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4336 71.5506 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3521 5.0000 11.2000 470.4330 68.2320 497.7640 480.6600 500.000
+ 10 1.4000 0.0000 1.4000 -6.1000 58.688 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8377 71.8697 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3521 5.0000 11.1000 471.3660 57.0120 500.5260 480.5150 500.000
+ 11 1.4000 0.0000 1.4000 -6.0000 58.642 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2429 72.1908 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3521 5.0000 11.0000 471.0700 56.3220 502.6780 481.2240 500.000
+ 12 1.4000 0.0000 1.4000 -5.9000 58.996 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6492 72.5139 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3521 5.0000 10.9000 470.9330 55.7830 496.6370 479.8140 500.000
+ 13 1.4000 0.0000 1.4000 -5.8000 59.052 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0566 72.8390 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4299 2.3521 5.0000 10.8000 471.4170 55.6740 504.0800 481.2730 500.000
+ 14 1.4000 0.0000 1.4000 -5.7000 58.607 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4652 73.1661 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3521 5.0000 10.7000 470.3530 55.3190 494.9180 479.9270 500.000
+ 15 1.4000 0.0000 1.4000 -5.6000 58.923 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.8750 73.4954 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3521 5.0000 10.6000 471.3510 55.2770 502.6220 480.9460 500.000
+ 16 1.4000 0.0000 1.4000 -5.5000 58.610 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.2861 73.8268 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3521 5.0000 10.5000 470.4370 56.7920 499.6180 481.0970 500.000
+ 17 1.4000 0.0000 1.4000 -5.4000 58.494 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6984 74.1604 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3521 5.0000 10.4000 471.1110 66.0200 499.2410 480.4860 500.000
+ 18 1.4000 0.0000 1.4000 -5.3000 58.816 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.1120 74.4964 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6689 2.3521 5.0000 10.3000 471.2500 59.3910 503.5130 481.3670 500.000
+ 19 1.4000 0.0000 1.4000 -5.2000 58.298 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.5270 74.8347 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 2.3521 5.0000 10.2000 470.7570 56.3510 495.0370 479.7740 500.000
+ 20 1.4000 0.0000 1.4000 -5.1000 58.836 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.9433 75.1754 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.3521 5.0000 10.1000 471.5230 56.1530 503.5610 481.1190 500.000
+ 21 1.4000 0.0000 1.4000 -5.0000 58.951 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3610 75.5186 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3521 5.0000 10.0000 470.4090 55.7310 496.9490 480.4130 500.000
+# Sum of Counts = 561
+# Center of Mass = -5.919786+/-0.354073
+# Full Width Half-Maximum = 0.987156+/-0.137893
+# 2:07:33 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0144.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0144.dat
new file mode 100644
index 0000000..363145b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0144.dat
@@ -0,0 +1,65 @@
+# scan = 144
+# date = 10/27/2011
+# time = 2:07:33 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.5000 58.765 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 471.1600 55.5400 499.5100 480.5750 500.000
+ 2 1.5000 0.0000 1.5000 -8.4000 58.772 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1527 71.3308 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 2.5201 5.0000 13.4000 471.1010 55.4460 503.4220 481.5620 500.000
+ 3 1.5000 0.0000 1.5000 -8.3000 58.774 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5225 71.6287 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.5201 5.0000 13.3000 470.6250 55.0180 495.3750 479.6140 500.000
+ 4 1.5000 0.0000 1.5000 -8.2000 59.042 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 471.3650 62.0250 503.7420 481.1570 500.000
+ 5 1.5000 0.0000 1.5000 -8.1000 58.474 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2643 72.2290 -2.7386 0.5000 0.0000 0.0000 158.1351 -43.7295 2.5201 5.0000 13.1000 470.4080 67.7210 496.7080 480.3730 500.000
+ 6 1.5000 0.0000 1.5000 -8.0000 58.684 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 471.3890 56.9730 500.9810 480.5730 500.000
+ 7 1.5000 0.0000 1.5000 -7.9000 58.641 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0094 72.8353 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5201 5.0000 12.9000 471.0080 56.4170 502.3590 481.1370 500.000
+ 8 1.5000 0.0000 1.5000 -7.8000 58.479 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 470.9550 55.7860 496.9230 479.8390 500.000
+ 9 1.5000 0.0000 1.5000 -7.7000 58.425 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7577 73.4480 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5201 5.0000 12.7000 471.3820 55.7080 503.8900 481.2090 500.000
+ 10 1.5000 0.0000 1.5000 -7.6000 58.844 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6827 -44.6345 2.5201 5.0000 12.6000 470.3450 55.3490 495.1640 479.8720 500.000
+ 11 1.5000 0.0000 1.5000 -7.5000 58.832 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5096 74.0674 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8224 2.5201 5.0000 12.5000 471.2830 55.3400 502.3260 480.7290 500.000
+ 12 1.5000 0.0000 1.5000 -7.4000 58.936 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 470.4750 55.1660 500.3900 481.0520 500.000
+ 13 1.5000 0.0000 1.5000 -7.3000 58.684 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2652 74.6938 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5201 5.0000 12.3000 470.9380 63.7110 498.5450 480.2570 500.000
+ 14 1.5000 0.0000 1.5000 -7.2000 58.439 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4005 2.5201 5.0000 12.2000 471.2320 65.1950 503.6330 481.2700 500.000
+ 15 1.5000 0.0000 1.5000 -7.1000 58.517 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0246 75.3275 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5201 5.0000 12.1000 470.5670 56.4590 494.8420 479.8020 500.000
+ 16 1.5000 0.0000 1.5000 -7.0000 59.051 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 471.4500 56.4220 502.9770 480.9650 500.000
+ 17 1.5000 0.0000 1.5000 -6.9000 58.661 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7882 75.9689 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5201 5.0000 11.9000 470.5010 55.8380 499.1120 480.8710 500.000
+ 18 1.5000 0.0000 1.5000 -6.8000 58.669 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 471.1090 55.5790 499.6360 480.3510 500.000
+ 19 1.5000 0.0000 1.5000 -6.7000 58.531 57.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5560 76.6182 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.5201 5.0000 11.7000 471.0160 55.6970 503.4130 481.2630 500.000
+ 20 1.5000 0.0000 1.5000 -6.6000 58.825 67.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 470.5590 55.1780 495.4900 479.6540 500.000
+ 21 1.5000 0.0000 1.5000 -6.5000 58.457 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3283 77.2760 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5201 5.0000 11.5000 471.2530 57.4440 503.8710 481.2240 500.000
+ 22 1.5000 0.0000 1.5000 -6.4000 58.305 72.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.5201 5.0000 11.4000 470.2250 66.2850 496.0710 480.2830 500.000
+ 23 1.5000 0.0000 1.5000 -6.3000 58.833 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1053 77.9426 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5201 5.0000 11.3000 471.3320 59.3410 501.4370 480.6570 500.000
+ 24 1.5000 0.0000 1.5000 -6.2000 58.330 66.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 470.8780 56.6960 501.9230 481.1320 500.000
+ 25 1.5000 0.0000 1.5000 -6.1000 58.436 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8872 78.6184 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5201 5.0000 11.1000 470.9580 56.3180 497.4450 479.9740 500.000
+ 26 1.5000 0.0000 1.5000 -6.0000 58.617 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 471.3370 56.3100 504.0340 481.2750 500.000
+ 27 1.5000 0.0000 1.5000 -5.9000 58.478 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6744 79.3040 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5201 5.0000 10.9000 470.4000 55.9780 494.6460 479.7960 500.000
+ 28 1.5000 0.0000 1.5000 -5.8000 59.060 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 471.4000 56.1220 503.1100 480.9370 500.000
+ 29 1.5000 0.0000 1.5000 -5.7000 58.405 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4670 79.9997 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5201 5.0000 10.7000 470.3650 55.8180 498.4610 480.7750 500.000
+ 30 1.5000 0.0000 1.5000 -5.6000 58.348 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5428 -48.9142 2.5201 5.0000 10.6000 471.2150 65.0990 500.1360 480.5910 500.000
+ 31 1.5000 0.0000 1.5000 -5.5000 58.799 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2653 80.7062 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5201 5.0000 10.5000 471.1100 63.5780 502.9880 481.4460 500.000
+# Sum of Counts = 1062
+# Center of Mass = -6.854520+/-0.298334
+# Full Width Half-Maximum = 1.486655+/-0.104928
+# 2:39:10 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0145.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0145.dat
new file mode 100644
index 0000000..14951b1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0145.dat
@@ -0,0 +1,63 @@
+# scan = 145
+# date = 10/27/2011
+# time = 2:39:11 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -2.0 -0.6 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -2.0 -0.6 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -2.0000 58.568 427.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4024 64.0703 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8150 5.0000 7.0000 471.5970 57.1730 503.8110 481.3840 500.000
+ 2 -0.9000 0.0000 2.1000 -1.9500 58.993 469.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.1329 64.2403 -2.7386 0.5000 0.0000 0.0000 149.2498 -61.5005 1.8150 5.0000 6.9500 470.4850 56.5810 495.9590 480.3050 500.000
+ 3 -0.9000 0.0000 2.1000 -1.9000 58.677 525.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8628 64.4110 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.8150 5.0000 6.9000 471.4510 56.4570 501.5180 480.8650 500.000
+ 4 -0.9000 0.0000 2.1000 -1.8500 58.944 564.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5921 64.5822 -2.7386 0.5000 0.0000 0.0000 149.0015 -61.9969 1.8150 5.0000 6.8500 470.8910 56.3650 501.7610 481.3430 500.000
+ 5 -0.9000 0.0000 2.1000 -1.8000 58.572 608.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.3208 64.7542 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8150 5.0000 6.8000 471.0070 56.0560 497.3940 480.2090 500.000
+ 6 -0.9000 0.0000 2.1000 -1.7500 58.633 653.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.0489 64.9268 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.8150 5.0000 6.7500 471.3930 60.1490 503.9450 481.6250 500.000
+ 7 -0.9000 0.0000 2.1000 -1.7000 58.573 596.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7764 65.1000 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8150 5.0000 6.7000 470.5400 67.9360 495.0390 480.1790 500.000
+ 8 -0.9000 0.0000 2.1000 -1.6500 59.117 547.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.5032 65.2740 -2.7386 0.5000 0.0000 0.0000 148.4863 -63.0274 1.8150 5.0000 6.6500 471.5660 58.0380 502.3420 481.1470 500.000
+ 9 -0.9000 0.0000 2.1000 -1.6000 58.545 454.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.2294 65.4486 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8150 5.0000 6.6000 470.8630 56.9490 500.4840 481.3650 500.000
+ 10 -0.9000 0.0000 2.1000 -1.5500 58.779 446.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.9550 65.6240 -2.7386 0.5000 0.0000 0.0000 148.2188 -63.5624 1.8150 5.0000 6.5500 471.2580 56.4720 498.6450 480.5130 500.000
+ 11 -0.9000 0.0000 2.1000 -1.5000 58.939 437.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.6798 65.8000 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8150 5.0000 6.5000 471.4140 56.4280 503.8220 481.6770 500.000
+ 12 -0.9000 0.0000 2.1000 -1.4500 58.868 414.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4040 65.9768 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1116 1.8150 5.0000 6.4500 470.6700 55.7700 494.7170 480.0320 500.000
+ 13 -0.9000 0.0000 2.1000 -1.4000 59.003 423.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1275 66.1544 -2.7386 0.5000 0.0000 0.0000 147.8041 -64.3915 1.8150 5.0000 6.4000 471.5100 55.7970 503.2940 481.3960 500.000
+ 14 -0.9000 0.0000 2.1000 -1.3500 58.632 455.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8503 66.3327 -2.7386 0.5000 0.0000 0.0000 147.6623 -64.6752 1.8150 5.0000 6.3500 470.4640 55.5700 498.1170 480.9120 500.000
+ 15 -0.9000 0.0000 2.1000 -1.3000 58.834 394.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.5724 66.5118 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8150 5.0000 6.3000 471.2350 61.1570 500.1320 480.7270 500.000
+ 16 -0.9000 0.0000 2.1000 -1.2500 59.057 368.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2938 66.6916 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.8150 5.0000 6.2500 471.1600 68.8550 502.9540 481.6620 500.000
+ 17 -0.9000 0.0000 2.1000 -1.2000 59.102 322.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.0144 66.8723 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8150 5.0000 6.2000 470.8370 57.4550 495.4140 480.0270 500.000
+ 18 -0.9000 0.0000 2.1000 -1.1500 58.838 246.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7343 67.0538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8150 5.0000 6.1500 471.5810 56.8800 503.4280 481.4100 500.000
+ 19 -0.9000 0.0000 2.1000 -1.1000 58.674 164.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4534 67.2361 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8150 5.0000 6.1000 470.5430 56.4460 497.6850 480.7550 500.000
+ 20 -0.9000 0.0000 2.1000 -1.0500 58.845 130.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1717 67.4193 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8150 5.0000 6.0500 471.3150 56.1370 500.4120 480.8410 500.000
+ 21 -0.9000 0.0000 2.1000 -1.0000 58.847 74.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8892 67.6033 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8150 5.0000 6.0000 471.0530 55.9930 502.9570 481.5810 500.000
+ 22 -0.9000 0.0000 2.1000 -0.9500 59.109 91.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6060 67.7882 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8150 5.0000 5.9500 470.7850 55.5780 496.1960 480.0680 500.000
+ 23 -0.9000 0.0000 2.1000 -0.9000 58.767 59.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.3219 67.9740 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8150 5.0000 5.9000 471.3560 55.6150 504.0420 481.5500 500.000
+ 24 -0.9000 0.0000 2.1000 -0.8500 59.014 69.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0370 68.1608 -2.7386 0.5000 0.0000 0.0000 146.1308 -67.7382 1.8150 5.0000 5.8500 470.3010 64.6900 495.5510 480.1980 500.000
+ 25 -0.9000 0.0000 2.1000 -0.8000 58.696 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7512 68.3484 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8150 5.0000 5.8000 471.3730 63.4110 501.6340 481.0190 500.000
+ 26 -0.9000 0.0000 2.1000 -0.7500 58.860 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4646 68.5371 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4056 1.8150 5.0000 5.7500 470.8660 57.2490 501.5980 481.4050 500.000
+ 27 -0.9000 0.0000 2.1000 -0.7000 59.103 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1772 68.7267 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8150 5.0000 5.7000 471.0340 56.5280 497.6450 480.3200 500.000
+ 28 -0.9000 0.0000 2.1000 -0.6500 58.700 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.8888 68.9172 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.8150 5.0000 5.6500 471.3850 56.4900 503.9430 481.5950 500.000
+ 29 -0.9000 0.0000 2.1000 -0.6000 58.781 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5995 69.1088 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.8150 5.0000 5.6000 470.4110 55.9730 494.7600 480.0380 500.000
+# Sum of Counts = 9198
+# Center of Mass = -1.549908+/-0.023087
+# Full Width Half-Maximum = 0.626583+/-0.010640
+# 3:09:52 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0146.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0146.dat
new file mode 100644
index 0000000..c8eb52f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0146.dat
@@ -0,0 +1,75 @@
+# scan = 146
+# date = 10/27/2011
+# time = 3:09:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.8000 0.0000 2.2000 -6.0000 59.266 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.2391 48.5425 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.7270 5.0000 11.0000 470.9990 55.7160 498.7380 480.4410 500.000
+ 2 -0.8000 0.0000 2.2000 -5.9000 58.547 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.7236 48.8280 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.7270 5.0000 10.9000 471.1210 55.6740 503.9300 481.5860 500.000
+ 3 -0.8000 0.0000 2.2000 -5.8000 58.708 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.2080 49.1138 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4299 1.7270 5.0000 10.8000 470.4950 62.6340 494.7560 479.9910 500.000
+ 4 -0.8000 0.0000 2.2000 -5.7000 58.955 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.6923 49.4000 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.7270 5.0000 10.7000 471.4020 67.6890 503.3500 481.3420 500.000
+ 5 -0.8000 0.0000 2.2000 -5.6000 58.713 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.1763 49.6866 -2.7386 0.5000 0.0000 0.0000 155.5429 -48.9142 1.7270 5.0000 10.6000 470.4230 57.2160 497.5040 480.6270 500.000
+ 6 -0.8000 0.0000 2.2000 -5.5000 58.792 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.6601 49.9735 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.7270 5.0000 10.5000 471.2770 56.6310 500.6360 480.8000 500.000
+ 7 -0.8000 0.0000 2.2000 -5.4000 58.691 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1436 50.2609 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.7270 5.0000 10.4000 470.9390 56.5020 502.6850 481.4810 500.000
+ 8 -0.8000 0.0000 2.2000 -5.3000 58.716 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.6268 50.5488 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6689 1.7270 5.0000 10.3000 470.8660 55.9700 497.1490 480.1750 500.000
+ 9 -0.8000 0.0000 2.2000 -5.2000 58.593 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.1097 50.8372 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 1.7270 5.0000 10.2000 471.2690 55.9750 504.2740 481.5860 500.000
+ 10 -0.8000 0.0000 2.2000 -5.1000 58.700 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.5921 51.1260 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 1.7270 5.0000 10.1000 470.3390 55.4670 494.2380 479.8400 500.000
+ 11 -0.8000 0.0000 2.2000 -5.0000 58.830 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.0740 51.4155 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.7270 5.0000 10.0000 471.3130 57.6970 503.7190 481.3420 500.000
+ 12 -0.8000 0.0000 2.2000 -4.9000 58.812 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.5555 51.7055 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.7270 5.0000 9.9000 470.2310 66.5800 496.9400 480.6000 500.000
+ 13 -0.8000 0.0000 2.2000 -4.8000 58.916 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.0364 51.9961 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.7270 5.0000 9.8000 471.2700 59.0880 500.9400 480.7890 500.000
+ 14 -0.8000 0.0000 2.2000 -4.7000 58.956 63.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.5167 52.2874 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.7270 5.0000 9.7000 470.8800 56.9070 502.3140 481.4000 500.000
+ 15 -0.8000 0.0000 2.2000 -4.6000 58.690 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.9964 52.5794 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.7270 5.0000 9.6000 470.9090 56.3090 497.3580 480.1610 500.000
+ 16 -0.8000 0.0000 2.2000 -4.5000 58.891 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4754 52.8721 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.7270 5.0000 9.5000 471.2790 56.1720 504.3250 481.5540 500.000
+ 17 -0.8000 0.0000 2.2000 -4.4000 58.681 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.9537 53.1655 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.7270 5.0000 9.4000 470.3790 55.6850 494.2820 479.8110 500.000
+ 18 -0.8000 0.0000 2.2000 -4.3000 58.667 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4312 53.4597 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.7270 5.0000 9.3000 471.3190 55.7170 503.8410 481.3180 500.000
+ 19 -0.8000 0.0000 2.2000 -4.2000 58.734 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9079 53.7548 -2.7386 0.5000 0.0000 0.0000 153.6151 -52.7696 1.7270 5.0000 9.2000 470.1090 55.3160 496.3030 480.3590 500.000
+ 20 -0.8000 0.0000 2.2000 -4.1000 58.779 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.3837 54.0506 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.7270 5.0000 9.1000 471.1400 60.5530 501.6350 480.9140 500.000
+ 21 -0.8000 0.0000 2.2000 -4.0000 58.923 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8586 54.3474 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.7270 5.0000 9.0000 470.6070 68.4070 501.4360 481.3260 500.000
+ 22 -0.8000 0.0000 2.2000 -3.9000 58.983 63.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3326 54.6452 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.7270 5.0000 8.9000 470.9120 57.3750 497.8950 480.1920 500.000
+ 23 -0.8000 0.0000 2.2000 -3.8000 58.267 83.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.8055 54.9438 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.7270 5.0000 8.8000 471.2430 56.6340 504.0540 481.4610 500.000
+ 24 -0.8000 0.0000 2.2000 -3.7000 58.616 108.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2773 55.2435 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.7270 5.0000 8.7000 470.3720 56.0270 494.3880 479.7930 500.000
+ 25 -0.8000 0.0000 2.2000 -3.6000 58.456 136.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.7481 55.5442 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.7270 5.0000 8.6000 471.2930 56.0230 503.6420 481.2160 500.000
+ 26 -0.8000 0.0000 2.2000 -3.5000 58.686 188.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2177 55.8460 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.7270 5.0000 8.5000 470.1270 55.6890 496.7710 480.4110 500.000
+ 27 -0.8000 0.0000 2.2000 -3.4000 58.997 201.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6860 56.1490 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.7270 5.0000 8.4000 471.0750 55.5620 501.2580 480.7660 500.000
+ 28 -0.8000 0.0000 2.2000 -3.3000 58.782 198.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1531 56.4531 -2.7386 0.5000 0.0000 0.0000 152.1037 -55.7925 1.7270 5.0000 8.3000 470.5000 55.4360 501.8030 481.3260 500.000
+ 29 -0.8000 0.0000 2.2000 -3.2000 58.514 163.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6188 56.7584 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.7270 5.0000 8.2000 470.7670 63.8620 497.8300 480.0200 500.000
+ 30 -0.8000 0.0000 2.2000 -3.1000 58.654 130.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.0832 57.0650 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.7270 5.0000 8.1000 471.1390 65.4910 503.9270 481.4840 500.000
+ 31 -0.8000 0.0000 2.2000 -3.0000 59.119 113.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.5461 57.3729 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.7270 5.0000 8.0000 470.4190 56.8260 494.5110 479.7720 500.000
+ 32 -0.8000 0.0000 2.2000 -2.9000 58.375 88.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0075 57.6822 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3147 1.7270 5.0000 7.9000 471.3570 56.5090 503.5520 481.2090 500.000
+ 33 -0.8000 0.0000 2.2000 -2.8000 58.608 86.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.4674 57.9929 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.7270 5.0000 7.8000 470.2000 56.0650 496.9630 480.4630 500.000
+ 34 -0.8000 0.0000 2.2000 -2.7000 58.536 82.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.9256 58.3050 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.7270 5.0000 7.7000 471.1440 55.9360 501.2220 480.7960 500.000
+ 35 -0.8000 0.0000 2.2000 -2.6000 58.557 69.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.3821 58.6187 -2.7386 0.5000 0.0000 0.0000 150.7288 -58.5424 1.7270 5.0000 7.6000 470.5820 55.8490 501.8540 481.3770 500.000
+ 36 -0.8000 0.0000 2.2000 -2.5000 58.628 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8368 58.9339 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7270 5.0000 7.5000 470.7540 55.5250 497.9310 480.2780 500.000
+ 37 -0.8000 0.0000 2.2000 -2.4000 58.553 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2898 59.2508 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.7270 5.0000 7.4000 471.0460 58.3950 504.1520 481.5950 500.000
+ 38 -0.8000 0.0000 2.2000 -2.3000 58.466 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.7408 59.5694 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.7270 5.0000 7.3000 470.3490 66.9770 494.4950 479.8800 500.000
+ 39 -0.8000 0.0000 2.2000 -2.2000 58.766 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1898 59.8896 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7270 5.0000 7.2000 471.3200 58.3120 503.4330 481.2050 500.000
+ 40 -0.8000 0.0000 2.2000 -2.1000 58.842 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.6368 60.2118 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.7270 5.0000 7.1000 470.2820 56.6790 497.3620 480.5580 500.000
+ 41 -0.8000 0.0000 2.2000 -2.0000 58.485 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.0818 60.5358 -2.7386 0.5000 0.0000 0.0000 149.3715 -61.2567 1.7270 5.0000 7.0000 471.1470 56.2710 500.7330 480.6760 500.000
+# Sum of Counts = 2532
+# Center of Mass = -3.596761+/-0.102473
+# Full Width Half-Maximum = 1.690440+/-0.043770
+# 3:52:04 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0147.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0147.dat
new file mode 100644
index 0000000..1e92151
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0147.dat
@@ -0,0 +1,80 @@
+# scan = 147
+# date = 10/27/2011
+# time = 3:52:04 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 58.932 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.8412 40.0160 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6514 5.0000 13.0000 471.2630 56.0590 504.2040 481.4400 500.000
+ 2 -0.7000 0.0000 2.3000 -7.9000 58.952 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.2892 40.3059 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.6514 5.0000 12.9000 470.1410 55.6520 494.7250 479.9150 500.000
+ 3 -0.7000 0.0000 2.3000 -7.8000 58.591 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.7383 40.5953 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.6514 5.0000 12.8000 471.2000 55.7170 502.8520 481.1000 500.000
+ 4 -0.7000 0.0000 2.3000 -7.7000 58.898 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.1885 40.8842 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.6514 5.0000 12.7000 470.1940 55.5130 498.7840 480.8790 500.000
+ 5 -0.7000 0.0000 2.3000 -7.6000 58.572 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.6398 41.1727 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.6514 5.0000 12.6000 471.0060 65.1820 500.0070 480.6530 500.000
+ 6 -0.7000 0.0000 2.3000 -7.5000 58.794 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.0920 41.4608 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6514 5.0000 12.5000 470.8970 62.5860 503.0150 481.4320 500.000
+ 7 -0.7000 0.0000 2.3000 -7.4000 58.676 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5452 41.7485 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.6514 5.0000 12.4000 470.7320 56.9470 496.1930 479.9140 500.000
+ 8 -0.7000 0.0000 2.3000 -7.3000 58.711 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9992 42.0358 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.6514 5.0000 12.3000 471.3210 56.5630 504.1200 481.4280 500.000
+ 9 -0.7000 0.0000 2.3000 -7.2000 58.823 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.4540 42.3229 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.6514 5.0000 12.2000 470.2410 56.0340 494.8490 479.9540 500.000
+ 10 -0.7000 0.0000 2.3000 -7.1000 58.714 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.9096 42.6097 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.6514 5.0000 12.1000 471.2560 55.9920 502.6660 481.0530 500.000
+ 11 -0.7000 0.0000 2.3000 -7.0000 58.800 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.3659 42.8962 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7986 1.6514 5.0000 12.0000 470.3180 55.7320 499.3760 481.0200 500.000
+ 12 -0.7000 0.0000 2.3000 -6.9000 58.768 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.8229 43.1825 -2.7386 0.5000 0.0000 0.0000 156.9991 -46.0016 1.6514 5.0000 11.9000 470.9280 55.5720 499.6790 480.4950 500.000
+ 13 -0.7000 0.0000 2.3000 -6.8000 58.985 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.2805 43.4686 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2074 1.6514 5.0000 11.8000 470.8470 59.5520 503.3570 481.5330 500.000
+ 14 -0.7000 0.0000 2.3000 -6.7000 58.383 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.7386 43.7546 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.6514 5.0000 11.7000 470.5590 67.6780 495.4290 479.9590 500.000
+ 15 -0.7000 0.0000 2.3000 -6.6000 59.152 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.1973 44.0404 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.6514 5.0000 11.6000 471.3240 58.0280 503.7080 481.3320 500.000
+ 16 -0.7000 0.0000 2.3000 -6.5000 58.691 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.6564 44.3260 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6514 5.0000 11.5000 470.2850 56.6150 496.3390 480.2970 500.000
+ 17 -0.7000 0.0000 2.3000 -6.4000 58.653 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1159 44.6116 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0590 1.6514 5.0000 11.4000 471.2260 56.2800 501.4210 480.8470 500.000
+ 18 -0.7000 0.0000 2.3000 -6.3000 58.749 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5758 44.8972 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6514 5.0000 11.3000 470.6610 56.0110 501.7070 481.3320 500.000
+ 19 -0.7000 0.0000 2.3000 -6.2000 58.611 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.0359 45.1827 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6514 5.0000 11.2000 470.8100 55.6020 497.8380 480.2300 500.000
+ 20 -0.7000 0.0000 2.3000 -6.1000 58.790 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.4964 45.4682 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6514 5.0000 11.1000 471.0990 55.5920 504.0840 481.5070 500.000
+ 21 -0.7000 0.0000 2.3000 -6.0000 58.662 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.9570 45.7538 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6514 5.0000 11.0000 470.2780 56.6140 494.4210 479.8510 500.000
+ 22 -0.7000 0.0000 2.3000 -5.9000 58.902 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.4179 46.0394 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6514 5.0000 10.9000 471.2390 66.1120 503.3160 481.2790 500.000
+ 23 -0.7000 0.0000 2.3000 -5.8000 58.444 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.8788 46.3251 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6514 5.0000 10.8000 470.3320 59.1480 498.1140 480.7290 500.000
+ 24 -0.7000 0.0000 2.3000 -5.7000 58.821 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.3398 46.6109 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6514 5.0000 10.7000 471.1470 56.7250 500.1570 480.6170 500.000
+ 25 -0.7000 0.0000 2.3000 -5.6000 58.409 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.8009 46.8968 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6514 5.0000 10.6000 470.9770 56.4510 503.1310 481.4860 500.000
+ 26 -0.7000 0.0000 2.3000 -5.5000 58.598 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.2619 47.1830 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6514 5.0000 10.5000 470.6190 55.8860 495.8250 479.8890 500.000
+ 27 -0.7000 0.0000 2.3000 -5.4000 58.257 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.7228 47.4693 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.6514 5.0000 10.4000 471.2490 55.9130 503.9410 481.4050 500.000
+ 28 -0.7000 0.0000 2.3000 -5.3000 58.537 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.1837 47.7558 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6514 5.0000 10.3000 470.1260 55.5510 495.4100 480.1070 500.000
+ 29 -0.7000 0.0000 2.3000 -5.2000 58.740 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6443 48.0426 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6514 5.0000 10.2000 471.1350 55.5110 502.1930 480.9730 500.000
+ 30 -0.7000 0.0000 2.3000 -5.1000 58.941 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1048 48.3297 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6514 5.0000 10.1000 470.3390 57.9640 500.2640 481.2460 500.000
+ 31 -0.7000 0.0000 2.3000 -5.0000 58.273 81.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5650 48.6171 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6514 5.0000 10.0000 470.9000 66.7850 498.8320 480.4700 500.000
+ 32 -0.7000 0.0000 2.3000 -4.9000 58.531 105.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0248 48.9048 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6514 5.0000 9.9000 471.0880 58.6570 503.6610 481.4930 500.000
+ 33 -0.7000 0.0000 2.3000 -4.8000 58.933 84.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4843 49.1929 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6514 5.0000 9.8000 470.5240 56.6300 494.8860 479.8370 500.000
+ 34 -0.7000 0.0000 2.3000 -4.7000 58.790 82.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9434 49.4814 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.6514 5.0000 9.7000 471.3150 56.4310 503.5460 481.2680 500.000
+ 35 -0.7000 0.0000 2.3000 -4.6000 58.814 85.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.4021 49.7703 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 1.6514 5.0000 9.6000 470.1930 55.9350 497.0400 480.4310 500.000
+ 36 -0.7000 0.0000 2.3000 -4.5000 58.443 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8602 50.0597 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6514 5.0000 9.5000 471.0900 55.7330 501.0560 480.7280 500.000
+ 37 -0.7000 0.0000 2.3000 -4.4000 58.707 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3178 50.3496 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6514 5.0000 9.4000 470.6100 55.6030 502.0730 481.3420 500.000
+ 38 -0.7000 0.0000 2.3000 -4.3000 58.439 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.7747 50.6400 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4634 1.6514 5.0000 9.3000 470.6570 55.2280 497.4260 480.1260 500.000
+ 39 -0.7000 0.0000 2.3000 -4.2000 58.471 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2310 50.9310 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6514 5.0000 9.2000 471.0610 62.5590 504.0490 481.5120 500.000
+ 40 -0.7000 0.0000 2.3000 -4.1000 58.701 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.6866 51.2226 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6514 5.0000 9.1000 470.3000 67.5840 494.7710 479.8890 500.000
+ 41 -0.7000 0.0000 2.3000 -4.0000 58.639 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.1414 51.5148 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6514 5.0000 9.0000 471.2880 57.1750 502.7960 481.0620 500.000
+ 42 -0.7000 0.0000 2.3000 -3.9000 58.763 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.5955 51.8076 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6514 5.0000 8.9000 470.3560 56.5080 498.9650 480.8680 500.000
+ 43 -0.7000 0.0000 2.3000 -3.8000 58.670 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0486 52.1012 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.6514 5.0000 8.8000 471.0220 56.1060 499.9870 480.4990 500.000
+ 44 -0.7000 0.0000 2.3000 -3.7000 58.788 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5008 52.3954 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6514 5.0000 8.7000 470.8490 55.9460 503.2400 481.4420 500.000
+ 45 -0.7000 0.0000 2.3000 -3.6000 58.718 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9520 52.6904 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6514 5.0000 8.6000 470.5250 55.4610 496.0130 479.8590 500.000
+ 46 -0.7000 0.0000 2.3000 -3.5000 58.690 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.4022 52.9863 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0757 1.6514 5.0000 8.5000 471.1210 55.4430 504.1460 481.4070 500.000
+# Sum of Counts = 1343
+# Center of Mass = -5.205063+/-0.202804
+# Full Width Half-Maximum = 2.051014+/-0.076919
+# 4:39:16 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0148.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0148.dat
new file mode 100644
index 0000000..904963c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0148.dat
@@ -0,0 +1,75 @@
+# scan = 148
+# date = 10/27/2011
+# time = 4:39:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.6 k 0 l 2.4 e -8.5 -4.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.6 k 0 l 2.4 e -8.5 -4.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.6000 0.0000 2.4000 -8.5000 58.543 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.1226 36.1899 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5900 5.0000 13.5000 470.2180 61.3230 499.7670 481.0600 500.000
+ 2 -0.6000 0.0000 2.4000 -8.4000 58.740 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.5331 36.4899 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 1.5900 5.0000 13.4000 470.9320 68.4850 499.4470 480.4940 500.000
+ 3 -0.6000 0.0000 2.4000 -8.3000 58.616 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.9456 36.7889 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.5900 5.0000 13.3000 470.9670 57.2230 503.4040 481.4320 500.000
+ 4 -0.6000 0.0000 2.4000 -8.2000 58.294 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.3599 37.0870 -2.7386 0.5000 0.0000 0.0000 158.2222 -43.5551 1.5900 5.0000 13.2000 470.5770 56.1450 495.5390 479.7800 500.000
+ 5 -0.6000 0.0000 2.4000 -8.1000 58.414 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.7760 37.3842 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 1.5900 5.0000 13.1000 471.2380 55.8950 504.0310 481.3300 500.000
+ 6 -0.6000 0.0000 2.4000 -8.0000 58.560 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.1938 37.6806 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5900 5.0000 13.0000 470.1060 55.2480 495.1330 479.9440 500.000
+ 7 -0.6000 0.0000 2.4000 -7.9000 58.219 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.6133 37.9762 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5900 5.0000 12.9000 471.1110 55.0840 502.5140 480.9290 500.000
+ 8 -0.6000 0.0000 2.4000 -7.8000 58.754 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.0344 38.2711 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.5900 5.0000 12.8000 470.2240 54.8150 499.7430 481.0080 500.000
+ 9 -0.6000 0.0000 2.4000 -7.7000 58.880 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.4570 38.5652 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5900 5.0000 12.7000 470.7710 55.6150 499.3940 480.4300 500.000
+ 10 -0.6000 0.0000 2.4000 -7.6000 58.532 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.8810 38.8586 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5900 5.0000 12.6000 470.8240 65.0190 503.4000 481.5120 500.000
+ 11 -0.6000 0.0000 2.4000 -7.5000 58.875 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.3064 39.1514 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.5900 5.0000 12.5000 470.4340 57.9130 495.0970 479.8090 500.000
+ 12 -0.6000 0.0000 2.4000 -7.4000 58.573 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.7331 39.4435 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5900 5.0000 12.4000 471.2480 55.8240 503.6720 481.2290 500.000
+ 13 -0.6000 0.0000 2.4000 -7.3000 58.545 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.1610 39.7351 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2053 1.5900 5.0000 12.3000 470.1270 55.3160 496.5070 480.2940 500.000
+ 14 -0.6000 0.0000 2.4000 -7.2000 58.991 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.5902 40.0261 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5900 5.0000 12.2000 471.0630 55.2090 501.5630 480.7450 500.000
+ 15 -0.6000 0.0000 2.4000 -7.1000 58.754 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.0204 40.3166 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5900 5.0000 12.1000 470.4600 55.0090 501.6520 481.2090 500.000
+ 16 -0.6000 0.0000 2.4000 -7.0000 58.392 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.4516 40.6066 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5900 5.0000 12.0000 470.6610 54.6870 498.0950 480.1430 500.000
+ 17 -0.6000 0.0000 2.4000 -6.9000 58.690 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.8839 40.8961 -2.7386 0.5000 0.0000 0.0000 156.9990 -46.0016 1.5900 5.0000 11.9000 470.8950 54.7600 504.0310 481.4570 500.000
+ 18 -0.6000 0.0000 2.4000 -6.8000 58.853 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.3170 41.1852 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5900 5.0000 11.8000 470.2030 59.3110 494.6260 479.8040 500.000
+ 19 -0.6000 0.0000 2.4000 -6.7000 58.647 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.7511 41.4740 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5900 5.0000 11.7000 471.1430 67.2960 503.4260 481.2550 500.000
+ 20 -0.6000 0.0000 2.4000 -6.6000 58.400 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.1859 41.7623 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5900 5.0000 11.6000 470.1760 56.3450 497.0970 480.4110 500.000
+ 21 -0.6000 0.0000 2.4000 -6.5000 58.548 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.6215 42.0504 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5900 5.0000 11.5000 471.0970 55.5770 501.0700 480.6890 500.000
+ 22 -0.6000 0.0000 2.4000 -6.4000 58.443 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.0578 42.3381 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 1.5900 5.0000 11.4000 470.6370 55.3570 502.1790 481.2790 500.000
+ 23 -0.6000 0.0000 2.4000 -6.3000 58.465 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.4947 42.6256 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.5900 5.0000 11.3000 470.6540 55.0160 497.3760 480.0500 500.000
+ 24 -0.6000 0.0000 2.4000 -6.2000 58.585 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9322 42.9128 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5900 5.0000 11.2000 471.0340 54.9170 504.1010 481.4350 500.000
+ 25 -0.6000 0.0000 2.4000 -6.1000 58.615 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3702 43.1998 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5900 5.0000 11.1000 470.1150 54.4610 494.4450 479.7800 500.000
+ 26 -0.6000 0.0000 2.4000 -6.0000 58.207 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8087 43.4866 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5900 5.0000 11.0000 471.0680 54.4630 503.2210 481.1010 500.000
+ 27 -0.6000 0.0000 2.4000 -5.9000 58.572 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2476 43.7733 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5900 5.0000 10.9000 470.0530 61.7420 498.0570 480.6650 500.000
+ 28 -0.6000 0.0000 2.4000 -5.8000 58.459 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6868 44.0598 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 1.5900 5.0000 10.8000 470.9730 66.0000 500.1890 480.5640 500.000
+ 29 -0.6000 0.0000 2.4000 -5.7000 59.192 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1263 44.3463 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5900 5.0000 10.7000 470.8840 56.1270 503.0270 481.3950 500.000
+ 30 -0.6000 0.0000 2.4000 -5.6000 58.566 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5661 44.6327 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5900 5.0000 10.6000 470.6100 55.3200 495.9170 479.8740 500.000
+ 31 -0.6000 0.0000 2.4000 -5.5000 58.554 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0061 44.9190 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5900 5.0000 10.5000 471.2300 55.2510 504.1170 481.4320 500.000
+ 32 -0.6000 0.0000 2.4000 -5.4000 58.551 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4462 45.2054 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5900 5.0000 10.4000 470.1080 54.7520 494.9270 479.9660 500.000
+ 33 -0.6000 0.0000 2.4000 -5.3000 58.647 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.8864 45.4917 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5900 5.0000 10.3000 471.1250 54.6200 502.5680 480.9920 500.000
+ 34 -0.6000 0.0000 2.4000 -5.2000 58.385 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.3266 45.7781 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5900 5.0000 10.2000 470.2170 54.3620 499.6280 481.0110 500.000
+ 35 -0.6000 0.0000 2.4000 -5.1000 58.769 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.7669 46.0646 -2.7386 0.5000 0.0000 0.0000 154.9040 -50.1919 1.5900 5.0000 10.1000 470.8180 57.2790 499.4980 480.4800 500.000
+ 36 -0.6000 0.0000 2.4000 -5.0000 58.944 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.2070 46.3511 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5900 5.0000 10.0000 470.8570 66.1300 503.3260 481.5180 500.000
+ 37 -0.6000 0.0000 2.4000 -4.9000 58.737 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.6470 46.6378 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.5900 5.0000 9.9000 470.4760 57.0750 495.1780 479.7740 500.000
+ 38 -0.6000 0.0000 2.4000 -4.8000 58.936 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.0869 46.9247 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5900 5.0000 9.8000 471.2790 55.8320 503.7420 481.2190 500.000
+ 39 -0.6000 0.0000 2.4000 -4.7000 58.686 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.5265 47.2118 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5900 5.0000 9.7000 470.1490 55.3270 496.3540 480.2810 500.000
+ 40 -0.6000 0.0000 2.4000 -4.6000 58.540 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.9658 47.4990 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5758 1.5900 5.0000 9.6000 471.1060 55.1420 501.5320 480.7690 500.000
+ 41 -0.6000 0.0000 2.4000 -4.5000 58.557 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4048 47.7866 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5900 5.0000 9.5000 470.4920 54.9700 501.5020 481.2470 500.000
+# Sum of Counts = 905
+# Center of Mass = -6.190276+/-0.292560
+# Full Width Half-Maximum = 1.812485+/-0.098225
+# 5:21:13 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0149.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0149.dat
new file mode 100644
index 0000000..fb2256b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0149.dat
@@ -0,0 +1,80 @@
+# scan = 149
+# date = 10/27/2011
+# time = 5:21:13 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -9.5000 58.403 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.9023 31.2626 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.5445 5.0000 14.5000 470.2130 54.3500 494.3530 479.7460 500.000
+ 2 -0.5000 0.0000 2.5000 -9.4000 58.161 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.2558 31.5846 -2.7386 0.5000 0.0000 0.0000 159.1938 -41.6125 1.5445 5.0000 14.4000 471.1160 54.9790 503.7230 481.2090 500.000
+ 3 -0.5000 0.0000 2.5000 -9.3000 58.652 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -54.6129 31.9048 -2.7386 0.5000 0.0000 0.0000 159.1178 -41.7645 1.5446 5.0000 14.3000 470.0190 64.3380 496.4440 480.3290 500.000
+ 4 -0.5000 0.0000 2.5000 -9.2000 58.402 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.9736 32.2231 -2.7386 0.5000 0.0000 0.0000 159.0409 -41.9182 1.5445 5.0000 14.2000 471.1090 59.4010 501.4280 480.7090 500.000
+ 5 -0.5000 0.0000 2.5000 -9.1000 58.337 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.3377 32.5398 -2.7386 0.5000 0.0000 0.0000 158.9632 -42.0737 1.5445 5.0000 14.1000 470.6080 56.0020 501.5810 481.2410 500.000
+ 6 -0.5000 0.0000 2.5000 -9.0000 58.664 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.7049 32.8549 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.5445 5.0000 14.0000 470.8580 55.3610 498.3410 480.2430 500.000
+ 7 -0.5000 0.0000 2.5000 -8.9000 58.621 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.0753 33.1684 -2.7386 0.5000 0.0000 0.0000 158.8051 -42.3898 1.5445 5.0000 13.9000 471.0560 55.3040 503.9680 481.5100 500.000
+ 8 -0.5000 0.0000 2.5000 -8.8000 58.736 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.4487 33.4805 -2.7386 0.5000 0.0000 0.0000 158.7247 -42.5505 1.5445 5.0000 13.8000 470.3720 54.7710 494.7420 479.7460 500.000
+ 9 -0.5000 0.0000 2.5000 -8.7000 58.304 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.8249 33.7911 -2.7386 0.5000 0.0000 0.0000 158.6434 -42.7131 1.5445 5.0000 13.7000 471.1770 54.7670 504.0980 481.3380 500.000
+ 10 -0.5000 0.0000 2.5000 -8.6000 58.851 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.2039 34.1003 -2.7386 0.5000 0.0000 0.0000 158.5612 -42.8776 1.5445 5.0000 13.6000 469.9930 54.2770 495.2090 479.9960 500.000
+ 11 -0.5000 0.0000 2.5000 -8.5000 58.403 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5856 34.4082 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5445 5.0000 13.5000 471.0780 58.9940 502.4270 481.0170 500.000
+ 12 -0.5000 0.0000 2.5000 -8.4000 58.633 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9698 34.7148 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 1.5446 5.0000 13.4000 470.2990 66.9360 499.8650 481.1250 500.000
+ 13 -0.5000 0.0000 2.5000 -8.3000 58.461 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.3564 35.0202 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.5445 5.0000 13.3000 470.9760 56.4820 499.4830 480.4630 500.000
+ 14 -0.5000 0.0000 2.5000 -8.2000 58.427 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.7454 35.3244 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 1.5445 5.0000 13.2000 470.9640 55.8910 503.4800 481.4650 500.000
+ 15 -0.5000 0.0000 2.5000 -8.1000 58.616 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.1366 35.6274 -2.7386 0.5000 0.0000 0.0000 158.1350 -43.7295 1.5445 5.0000 13.1000 470.5870 55.3110 495.9640 479.8440 500.000
+ 16 -0.5000 0.0000 2.5000 -8.0000 58.542 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 471.1870 55.2410 504.2510 481.4350 500.000
+ 17 -0.5000 0.0000 2.5000 -7.9000 58.561 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.9255 36.2304 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5445 5.0000 12.9000 470.1100 54.7210 494.5180 479.8350 500.000
+ 18 -0.5000 0.0000 2.5000 -7.8000 58.277 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.3230 36.5303 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.5445 5.0000 12.8000 471.1450 54.6950 503.1430 481.0630 500.000
+ 19 -0.5000 0.0000 2.5000 -7.7000 58.952 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.7223 36.8293 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5446 5.0000 12.7000 470.0550 54.3280 497.9360 480.6730 500.000
+ 20 -0.5000 0.0000 2.5000 -7.6000 58.241 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1234 37.1274 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5445 5.0000 12.6000 470.9550 63.7140 500.5040 480.7250 500.000
+ 21 -0.5000 0.0000 2.5000 -7.5000 58.831 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5263 37.4246 -2.7386 0.5000 0.0000 0.0000 157.5888 -44.8223 1.5445 5.0000 12.5000 470.7480 60.7690 502.6160 481.3480 500.000
+ 22 -0.5000 0.0000 2.5000 -7.4000 58.592 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9308 37.7210 -2.7386 0.5000 0.0000 0.0000 157.4937 -45.0126 1.5445 5.0000 12.4000 470.7300 55.7470 496.8150 479.9820 500.000
+ 23 -0.5000 0.0000 2.5000 -7.3000 58.451 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.3370 38.0166 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.5445 5.0000 12.3000 471.2220 55.6290 504.2080 481.4260 500.000
+ 24 -0.5000 0.0000 2.5000 -7.2000 58.494 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.7446 38.3114 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5445 5.0000 12.2000 470.2300 55.0160 494.3890 479.7990 500.000
+ 25 -0.5000 0.0000 2.5000 -7.1000 58.274 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1536 38.6055 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5445 5.0000 12.1000 471.2000 54.9880 503.3340 481.1380 500.000
+ 26 -0.5000 0.0000 2.5000 -7.0000 58.829 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5640 38.8989 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5445 5.0000 12.0000 470.0640 54.6300 497.3810 480.4820 500.000
+ 27 -0.5000 0.0000 2.5000 -6.9000 58.763 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9756 39.1917 -2.7386 0.5000 0.0000 0.0000 156.9990 -46.0016 1.5445 5.0000 11.9000 470.9520 54.3750 500.9480 480.6920 500.000
+ 28 -0.5000 0.0000 2.5000 -6.8000 58.446 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3885 39.4839 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5445 5.0000 11.8000 470.5150 58.3170 502.2100 481.3760 500.000
+ 29 -0.5000 0.0000 2.5000 -6.7000 58.680 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8025 39.7754 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5445 5.0000 11.7000 470.6620 66.3720 497.2310 480.1900 500.000
+ 30 -0.5000 0.0000 2.5000 -6.6000 58.846 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2176 40.0665 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5445 5.0000 11.6000 471.1780 56.6350 503.9080 481.3990 500.000
+ 31 -0.5000 0.0000 2.5000 -6.5000 58.460 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6337 40.3570 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5445 5.0000 11.5000 470.2610 55.4850 494.7200 479.8130 500.000
+ 32 -0.5000 0.0000 2.5000 -6.4000 58.538 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.0507 40.6470 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5445 5.0000 11.4000 471.2250 55.2670 502.9440 481.0210 500.000
+ 33 -0.5000 0.0000 2.5000 -6.3000 58.515 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4686 40.9366 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 1.5445 5.0000 11.3000 470.2260 55.1330 498.7120 480.8050 500.000
+ 34 -0.5000 0.0000 2.5000 -6.2000 58.400 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.8873 41.2258 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5445 5.0000 11.2000 470.9520 54.8370 500.2320 480.4890 500.000
+ 35 -0.5000 0.0000 2.5000 -6.1000 58.528 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.3068 41.5146 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5445 5.0000 11.1000 470.6920 54.7840 502.9520 481.3800 500.000
+ 36 -0.5000 0.0000 2.5000 -6.0000 58.820 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.7270 41.8030 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5445 5.0000 11.0000 470.5300 54.3630 496.7610 479.9320 500.000
+ 37 -0.5000 0.0000 2.5000 -5.9000 58.436 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.1478 42.0911 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5445 5.0000 10.9000 471.0650 63.3510 504.1470 481.4620 500.000
+ 38 -0.5000 0.0000 2.5000 -5.8000 58.481 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5691 42.3790 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5445 5.0000 10.8000 470.2160 62.3940 494.5040 479.7920 500.000
+ 39 -0.5000 0.0000 2.5000 -5.7000 58.480 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.9910 42.6665 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5445 5.0000 10.7000 471.3050 56.1100 503.2350 481.1150 500.000
+ 40 -0.5000 0.0000 2.5000 -5.6000 58.667 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.4133 42.9538 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5445 5.0000 10.6000 470.2310 55.5980 497.6760 480.5950 500.000
+ 41 -0.5000 0.0000 2.5000 -5.5000 58.612 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.8360 43.2409 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5445 5.0000 10.5000 471.0990 55.3230 500.9090 480.6740 500.000
+ 42 -0.5000 0.0000 2.5000 -5.4000 58.717 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2590 43.5278 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5445 5.0000 10.4000 470.6460 55.2330 502.2990 481.3370 500.000
+ 43 -0.5000 0.0000 2.5000 -5.3000 58.896 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6822 43.8146 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5445 5.0000 10.3000 470.6860 54.8940 497.5850 480.1160 500.000
+ 44 -0.5000 0.0000 2.5000 -5.2000 58.481 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1058 44.1013 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5445 5.0000 10.2000 471.0340 55.0970 504.1910 481.4620 500.000
+ 45 -0.5000 0.0000 2.5000 -5.1000 58.750 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5294 44.3878 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5445 5.0000 10.1000 470.1930 57.6160 494.3880 479.6140 500.000
+ 46 -0.5000 0.0000 2.5000 -5.0000 58.678 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9531 44.6744 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5445 5.0000 10.0000 471.1920 66.6700 503.5210 481.0750 500.000
+# Sum of Counts = 764
+# Center of Mass = -7.071204+/-0.364094
+# Full Width Half-Maximum = 2.258511+/-0.122232
+# 6:08:12 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0150.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0150.dat
new file mode 100644
index 0000000..eb73606
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0150.dat
@@ -0,0 +1,53 @@
+# scan = 150
+# date = 10/27/2011
+# time = 6:08:12 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -15 -10.5 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15 -10.5 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion L (1.5 0 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.0000 233.487 66.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.5784 53.6998 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0840 2.5201 5.0000 20.0000 471.3180 56.4330 503.3060 480.8260 500.000
+ 2 1.5000 0.0000 1.5000 -14.7500 233.838 54.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 68.4663 54.3260 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.5201 5.0000 19.7500 470.9620 56.1220 499.7880 480.2200 500.000
+ 3 1.5000 0.0000 1.5000 -14.5000 233.113 59.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 69.3528 54.9536 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.5201 5.0000 19.5000 470.4270 60.9520 494.6860 479.5570 500.000
+ 4 1.5000 0.0000 1.5000 -14.2500 233.569 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 70.2383 55.5828 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.5201 5.0000 19.2500 470.4870 56.8060 499.9930 480.8780 500.000
+ 5 1.5000 0.0000 1.5000 -14.0000 234.225 62.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.1228 56.2137 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.5201 5.0000 19.0000 471.2590 69.4060 503.8370 481.2600 500.000
+ 6 1.5000 0.0000 1.5000 -13.7500 233.390 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.0066 56.8466 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.5201 5.0000 18.7500 471.3880 56.8570 502.0920 480.5650 500.000
+ 7 1.5000 0.0000 1.5000 -13.5000 234.717 84.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.8899 57.4818 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.5201 5.0000 18.5000 470.8860 63.9440 497.5270 479.9090 500.000
+ 8 1.5000 0.0000 1.5000 -13.2500 233.979 130.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.7729 58.1194 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.5201 5.0000 18.2500 470.3150 56.7400 495.3960 479.7580 500.000
+ 9 1.5000 0.0000 1.5000 -13.0000 234.018 124.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.6558 58.7596 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.5201 5.0000 18.0000 470.7320 56.4120 502.4060 480.8610 500.000
+ 10 1.5000 0.0000 1.5000 -12.7499 234.054 126.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.5389 59.4026 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.5201 5.0000 17.7499 471.3930 56.6200 503.6550 480.7290 500.000
+ 11 1.5000 0.0000 1.5000 -12.5000 234.589 129.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 76.4223 60.0489 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.5201 5.0000 17.5000 470.8840 55.2160 499.4170 479.9370 500.000
+ 12 1.5000 0.0000 1.5000 -12.2500 234.919 135.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.3063 60.6984 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.5201 5.0000 17.2500 470.2250 56.0280 494.7380 479.5080 500.000
+ 13 1.5000 0.0000 1.5000 -12.0000 234.508 124.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.1910 61.3516 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.5201 5.0000 17.0000 470.3680 54.9890 501.7670 480.8420 500.000
+ 14 1.5000 0.0000 1.5000 -11.7500 234.336 103.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.0767 62.0086 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.5201 5.0000 16.7500 471.0830 56.5160 504.1340 480.9000 500.000
+ 15 1.5000 0.0000 1.5000 -11.5000 234.496 103.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.9636 62.6697 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.5201 5.0000 16.5000 470.8600 54.9330 501.7770 480.2610 500.000
+ 16 1.5000 0.0000 1.5000 -11.2500 234.685 101.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.8520 63.3352 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.5201 5.0000 16.2500 470.3550 68.3860 496.4880 479.5360 500.000
+ 17 1.5000 0.0000 1.5000 -11.0000 234.151 68.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.7419 64.0054 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.5201 5.0000 16.0000 469.8820 55.2660 497.2240 480.0740 500.000
+ 18 1.5000 0.0000 1.5000 -10.7500 234.563 65.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.6338 64.6804 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.5201 5.0000 15.7500 470.7060 65.3420 503.6600 481.0500 500.000
+ 19 1.5000 0.0000 1.5000 -10.5000 233.393 57.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.5277 65.3608 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.5201 5.0000 15.5000 471.0510 56.7210 502.1450 480.2730 500.000
+# Sum of Counts = 1686
+# Center of Mass = -12.609423+/-0.435262
+# Full Width Half-Maximum = 2.384923+/-0.186867
+# 7:23:53 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0151.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0151.dat
new file mode 100644
index 0000000..d86acd7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0151.dat
@@ -0,0 +1,59 @@
+# scan = 151
+# date = 10/27/2011
+# time = 7:23:54 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -15 -9 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 0 e -15 -9 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion X (1.5 0 0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -15.0000 234.758 46.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.6616 48.9067 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0840 2.3918 5.0000 20.0000 470.0640 65.0610 494.6510 479.5340 500.000
+ 2 1.5000 0.0000 0.0000 -14.7500 235.222 52.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.6103 49.5446 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.3918 5.0000 19.7500 470.7260 56.5750 502.3330 480.8220 500.000
+ 3 1.5000 0.0000 0.0000 -14.5000 234.586 38.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.5560 50.1826 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3918 5.0000 19.5000 471.1390 59.8140 504.0260 480.8640 500.000
+ 4 1.5000 0.0000 0.0000 -14.2500 234.203 43.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.4990 50.8210 -2.7386 0.5000 0.0000 0.0000 162.1081 -35.7836 2.3918 5.0000 19.2500 471.0040 56.4900 499.9360 479.8430 500.000
+ 5 1.5000 0.0000 0.0000 -14.0000 235.137 29.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.4396 51.4598 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3918 5.0000 19.0000 470.3070 55.4870 494.7990 479.1720 500.000
+ 6 1.5000 0.0000 0.0000 -13.7499 234.698 32.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.3780 52.0994 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2740 2.3918 5.0000 18.7499 470.2840 56.5890 498.6170 480.3760 500.000
+ 7 1.5000 0.0000 0.0000 -13.5000 234.982 47.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.3145 52.7400 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3918 5.0000 18.5000 470.9270 55.8950 503.9050 480.9470 500.000
+ 8 1.5000 0.0000 0.0000 -13.2500 233.939 41.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.2494 53.3817 -2.7386 0.5000 0.0000 0.0000 161.6074 -36.7850 2.3918 5.0000 18.2500 471.2890 56.9370 502.8750 480.5660 500.000
+ 9 1.5000 0.0000 0.0000 -13.0000 234.656 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1828 54.0250 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3918 5.0000 18.0000 470.7920 55.7750 498.6610 479.8170 500.000
+ 10 1.5000 0.0000 0.0000 -12.7500 234.045 62.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1152 54.6699 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3918 5.0000 17.7500 470.2490 57.0010 494.8770 479.5500 500.000
+ 11 1.5000 0.0000 0.0000 -12.5000 234.776 90.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.0466 55.3168 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3918 5.0000 17.5000 470.5030 56.0940 501.3850 480.8560 500.000
+ 12 1.5000 0.0000 0.0000 -12.2500 234.801 67.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9774 55.9658 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.3918 5.0000 17.2500 471.2920 57.8510 504.0920 480.9070 500.000
+ 13 1.5000 0.0000 0.0000 -12.0000 234.726 93.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.9078 56.6172 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3918 5.0000 17.0000 471.1360 56.0830 501.6200 480.2660 500.000
+ 14 1.5000 0.0000 0.0000 -11.7500 234.068 91.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8381 57.2712 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3918 5.0000 16.7500 470.6160 61.0910 496.0620 479.3660 500.000
+ 15 1.5000 0.0000 0.0000 -11.5000 234.182 92.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7685 57.9282 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3918 5.0000 16.5000 470.0970 56.0280 495.9770 479.9100 500.000
+ 16 1.5000 0.0000 0.0000 -11.2500 234.173 70.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6992 58.5884 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.3918 5.0000 16.2500 470.7630 68.1880 502.7280 480.9310 500.000
+ 17 1.5000 0.0000 0.0000 -11.0000 235.088 73.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6306 59.2520 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3918 5.0000 16.0000 471.2500 56.1740 504.1810 480.8020 500.000
+ 18 1.5000 0.0000 0.0000 -10.7500 235.127 71.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5628 59.9193 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.3918 5.0000 15.7500 471.0430 67.3770 500.9870 480.3360 500.000
+ 19 1.5000 0.0000 0.0000 -10.5000 234.332 62.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4960 60.5907 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.3918 5.0000 15.5000 470.4890 56.0550 495.3390 479.2670 500.000
+ 20 1.5000 0.0000 0.0000 -10.2500 235.148 53.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4306 61.2663 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.3918 5.0000 15.2500 470.0040 64.4100 496.7390 480.1600 500.000
+ 21 1.5000 0.0000 0.0000 -10.0000 234.804 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3668 61.9466 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.3918 5.0000 15.0000 470.9190 56.3860 503.6690 481.0030 500.000
+ 22 1.5000 0.0000 0.0000 -9.7500 234.394 45.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3049 62.6317 -2.7386 0.5000 0.0000 0.0000 159.4531 -41.0932 2.3918 5.0000 14.7500 471.1210 63.8140 503.6400 480.8510 500.000
+ 23 1.5000 0.0000 0.0000 -9.5000 233.644 45.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2451 63.3221 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.3918 5.0000 14.5000 470.8960 56.3020 499.3910 479.8990 500.000
+ 24 1.5000 0.0000 0.0000 -9.2500 234.774 44.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1877 64.0182 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.3918 5.0000 14.2500 470.1860 60.0740 494.5030 479.5340 500.000
+ 25 1.5000 0.0000 0.0000 -9.0000 233.464 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1329 64.7201 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.3918 5.0000 14.0000 470.2670 56.4360 499.1810 480.6230 500.000
+# Sum of Counts = 1434
+# Center of Mass = -11.872557+/-0.445453
+# Full Width Half-Maximum = 3.243763+/-0.180068
+# 9:02:57 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0152.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0152.dat
new file mode 100644
index 0000000..c3a16b1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0152.dat
@@ -0,0 +1,49 @@
+# scan = 152
+# date = 10/27/2011
+# time = 9:02:58 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.5000 235.166 96.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7834 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 470.5180 65.2520 496.6050 479.7670 500.000
+ 2 0.0000 0.0000 4.5000 -14.2500 235.242 94.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 470.0300 56.0610 495.7150 479.8700 500.000
+ 3 0.0000 0.0000 4.5000 -14.0000 235.250 109.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 470.5320 63.5970 502.5840 481.0400 500.000
+ 4 0.0000 0.0000 4.5000 -13.7500 234.557 128.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 471.2020 56.2320 504.1880 480.9330 500.000
+ 5 0.0000 0.0000 4.5000 -13.5000 236.030 174.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3812 5.0000 18.5000 470.9100 61.3950 501.3810 480.5100 500.000
+ 6 0.0000 0.0000 4.5000 -13.2500 235.371 143.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 470.5030 56.1910 495.9700 479.6040 500.000
+ 7 0.0000 0.0000 4.5000 -12.9999 235.133 175.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0489 2.3812 5.0000 17.9999 469.9010 62.1230 496.1500 480.0550 500.000
+ 8 0.0000 0.0000 4.5000 -12.7500 234.859 139.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 470.8090 56.5000 503.2200 481.1610 500.000
+ 9 0.0000 0.0000 4.5000 -12.5000 235.344 148.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3812 5.0000 17.5000 471.1150 60.4970 504.2900 481.1490 500.000
+ 10 0.0000 0.0000 4.5000 -12.2500 235.127 104.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.3812 5.0000 17.2500 471.1390 56.5550 501.6890 480.4940 500.000
+ 11 0.0000 0.0000 4.5000 -12.0000 235.541 104.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 470.5940 59.4230 497.2750 479.7880 500.000
+ 12 0.0000 0.0000 4.5000 -11.7500 234.068 73.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 470.1700 56.5950 494.8730 479.6740 500.000
+ 13 0.0000 0.0000 4.5000 -11.5000 234.778 68.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 470.7570 60.3190 502.2230 480.9960 500.000
+ 14 0.0000 0.0000 4.5000 -11.2500 235.294 41.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.3151 58.1951 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0696 2.3812 5.0000 16.2500 471.3170 57.1000 504.3200 481.0110 500.000
+ 15 0.0000 0.0000 4.5000 -11.0000 234.626 51.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.2503 58.8584 -2.7386 0.5000 0.0000 0.0000 160.3068 -39.3861 2.3812 5.0000 16.0000 471.3010 58.4000 501.6630 480.4280 500.000
+# Sum of Counts = 1647
+# Center of Mass = -12.958399+/-0.452135
+# Full Width Half-Maximum = 1.842805+/-0.213608
+# 10:05:07 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0153.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0153.dat
new file mode 100644
index 0000000..eb4f2d7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0153.dat
@@ -0,0 +1,49 @@
+# scan = 153
+# date = 10/27/2011
+# time = 10:05:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.5000 234.602 107.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7833 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 470.3790 55.5260 494.5270 479.4220 500.000
+ 2 0.0000 0.0000 4.5000 -14.2500 235.155 95.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 470.3530 57.4840 499.4210 480.5760 500.000
+ 3 0.0000 0.0000 4.5000 -14.0000 235.502 109.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 470.9820 55.8440 504.0010 480.9070 500.000
+ 4 0.0000 0.0000 4.5000 -13.7500 234.812 114.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 471.0790 58.2860 502.2590 480.3960 500.000
+ 5 0.0000 0.0000 4.5000 -13.4999 235.014 127.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5269 2.3812 5.0000 18.4999 470.5140 55.4010 497.5520 479.5920 500.000
+ 6 0.0000 0.0000 4.5000 -13.2500 234.771 155.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 469.9860 56.8240 496.3910 479.8660 500.000
+ 7 0.0000 0.0000 4.5000 -13.0000 234.899 147.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3812 5.0000 18.0000 470.6490 55.6110 503.4470 480.9860 500.000
+ 8 0.0000 0.0000 4.5000 -12.7500 234.458 128.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 471.0310 56.9710 502.5030 480.4660 500.000
+ 9 0.0000 0.0000 4.5000 -12.4999 233.880 120.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.3812 5.0000 17.4999 470.3430 55.7280 496.5400 479.5320 500.000
+ 10 0.0000 0.0000 4.5000 -12.2500 234.038 131.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.3812 5.0000 17.2500 470.0690 57.1380 498.1990 480.2850 500.000
+ 11 0.0000 0.0000 4.5000 -12.0000 234.449 100.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 470.8360 55.9320 504.0300 481.0020 500.000
+ 12 0.0000 0.0000 4.5000 -11.7500 234.403 68.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 471.0690 57.6090 502.4490 480.3920 500.000
+ 13 0.0000 0.0000 4.5000 -11.5000 234.873 81.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 470.5360 55.8510 497.6930 479.6250 500.000
+ 14 0.0000 0.0000 4.5000 -11.2500 235.092 53.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.3151 58.1951 -2.7386 0.5000 0.0000 0.0000 160.4651 -39.0695 2.3812 5.0000 16.2500 470.0240 61.7650 496.4460 479.8230 500.000
+ 15 0.0000 0.0000 4.5000 -11.0000 235.187 47.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.2503 58.8584 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3812 5.0000 16.0000 470.9060 56.4840 503.6410 480.9170 500.000
+# Sum of Counts = 1582
+# Center of Mass = -12.932032+/-0.460438
+# Full Width Half-Maximum = 1.912723+/-0.223366
+# 11:04:35 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0154.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0154.dat
new file mode 100644
index 0000000..e2ad4a4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0154.dat
@@ -0,0 +1,55 @@
+# scan = 154
+# date = 10/27/2011
+# time = 11:38:02 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -3.0 -2.0 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.0 -2.0 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -3.0000 59.215 74.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6840 60.7852 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.8150 5.0000 8.0000 471.2050 59.3730 503.7260 480.8440 500.000
+ 2 -0.9000 0.0000 2.1000 -2.9500 59.541 94.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4242 60.9448 -2.7386 0.5000 0.0000 0.0000 151.4413 -57.1174 1.8150 5.0000 7.9500 470.1120 57.6140 496.1220 479.7800 500.000
+ 3 -0.9000 0.0000 2.1000 -2.9000 59.465 102.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1642 61.1049 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.8150 5.0000 7.9000 471.0550 57.3420 501.5600 480.2940 500.000
+ 4 -0.9000 0.0000 2.1000 -2.8500 59.336 119.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.9036 61.2653 -2.7386 0.5000 0.0000 0.0000 151.2431 -57.5139 1.8150 5.0000 7.8500 470.5290 57.1360 501.8270 480.8410 500.000
+ 5 -0.9000 0.0000 2.1000 -2.8000 59.334 155.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6426 61.4263 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.8150 5.0000 7.8000 470.6020 56.7490 497.5270 479.6070 500.000
+ 6 -0.9000 0.0000 2.1000 -2.7500 59.282 141.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.3813 61.5877 -2.7386 0.5000 0.0000 0.0000 151.0407 -57.9186 1.8150 5.0000 7.7500 470.9730 56.6850 504.1420 480.9210 500.000
+ 7 -0.9000 0.0000 2.1000 -2.7000 59.141 162.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.1194 61.7495 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.8150 5.0000 7.7000 470.0060 58.1080 494.3880 479.3530 500.000
+ 8 -0.9000 0.0000 2.1000 -2.6500 59.039 205.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.8571 61.9119 -2.7386 0.5000 0.0000 0.0000 150.8339 -58.3322 1.8150 5.0000 7.6500 471.0400 67.6630 503.1180 480.7380 500.000
+ 9 -0.9000 0.0000 2.1000 -2.6000 59.291 190.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.5944 62.0747 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.8150 5.0000 7.6000 470.1250 60.5690 498.3920 480.3240 500.000
+ 10 -0.9000 0.0000 2.1000 -2.5500 59.419 177.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3312 62.2381 -2.7386 0.5000 0.0000 0.0000 150.6226 -58.7548 1.8150 5.0000 7.5500 470.9370 58.0430 500.2970 480.0920 500.000
+ 11 -0.9000 0.0000 2.1000 -2.5000 59.161 184.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0674 62.4019 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.8150 5.0000 7.5000 470.7550 57.7750 503.0710 481.0150 500.000
+ 12 -0.9000 0.0000 2.1000 -2.4500 59.485 165.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8033 62.5663 -2.7386 0.5000 0.0000 0.0000 150.4066 -59.1867 1.8150 5.0000 7.4500 470.4810 56.9550 496.3250 479.4420 500.000
+ 13 -0.9000 0.0000 2.1000 -2.4000 59.305 161.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5386 62.7312 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.8150 5.0000 7.4000 471.0810 56.8510 504.3880 481.0100 500.000
+ 14 -0.9000 0.0000 2.1000 -2.3500 59.198 150.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2734 62.8966 -2.7386 0.5000 0.0000 0.0000 150.1858 -59.6284 1.8150 5.0000 7.3500 469.9800 56.4750 494.5330 479.4550 500.000
+ 15 -0.9000 0.0000 2.1000 -2.3000 59.196 148.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.0077 63.0626 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.8150 5.0000 7.3000 471.0330 56.7930 503.3200 480.7180 500.000
+ 16 -0.9000 0.0000 2.1000 -2.2500 59.315 172.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7415 63.2291 -2.7386 0.5000 0.0000 0.0000 149.9599 -60.0802 1.8150 5.0000 7.2500 470.0300 66.6840 498.4840 480.4950 500.000
+ 17 -0.9000 0.0000 2.1000 -2.2000 58.827 204.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4748 63.3962 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.8150 5.0000 7.2000 470.8710 62.7550 500.3200 480.1240 500.000
+ 18 -0.9000 0.0000 2.1000 -2.1500 59.329 243.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.2075 63.5638 -2.7386 0.5000 0.0000 0.0000 149.7287 -60.5426 1.8150 5.0000 7.1500 470.7150 57.9920 502.9250 480.9910 500.000
+ 19 -0.9000 0.0000 2.1000 -2.1000 59.095 321.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.9397 63.7320 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.8150 5.0000 7.1000 470.5260 57.6020 496.6110 479.4780 500.000
+ 20 -0.9000 0.0000 2.1000 -2.0500 58.975 345.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6713 63.9008 -2.7386 0.5000 0.0000 0.0000 149.4921 -61.0158 1.8150 5.0000 7.0500 471.0780 57.7060 504.4190 481.0210 500.000
+ 21 -0.9000 0.0000 2.1000 -2.0000 59.128 416.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4024 64.0703 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8150 5.0000 7.0000 470.0430 57.0630 494.4000 479.4020 500.000
+# Sum of Counts = 3928
+# Center of Mass = -2.392350+/-0.054195
+# Full Width Half-Maximum = 0.600854+/-0.027247
+# 11:59:53 AM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0155.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0155.dat
new file mode 100644
index 0000000..2267eb5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0155.dat
@@ -0,0 +1,55 @@
+# scan = 155
+# date = 10/27/2011
+# time = 12:04:56 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -2.5000 59.202 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 61.7710 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7991 5.0000 7.5000 471.1400 57.6580 503.1070 480.4090 500.000
+ 2 0.0000 0.0000 3.4000 -2.4000 59.050 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.2814 62.0979 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4064 1.7991 5.0000 7.4000 470.1390 57.1200 498.8410 480.2400 500.000
+ 3 0.0000 0.0000 3.4000 -2.3000 59.177 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.8154 62.4269 -2.7386 0.5000 0.0000 0.0000 150.0734 -59.8530 1.7991 5.0000 7.3000 470.8360 56.9350 500.0680 479.7630 500.000
+ 4 0.0000 0.0000 3.4000 -2.2000 59.381 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.3513 62.7580 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7991 5.0000 7.2000 470.6830 56.8080 503.2620 480.7480 500.000
+ 5 0.0000 0.0000 3.4000 -2.1000 59.080 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.8894 63.0913 -2.7386 0.5000 0.0000 0.0000 149.6110 -60.7778 1.7991 5.0000 7.1000 470.2870 56.7840 495.7760 479.2270 500.000
+ 6 0.0000 0.0000 3.4000 -2.0000 58.808 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4298 63.4268 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.7991 5.0000 7.0000 471.0030 67.0520 504.0510 480.8340 500.000
+ 7 0.0000 0.0000 3.4000 -1.9000 58.985 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9723 63.7648 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.7991 5.0000 6.9000 469.9700 62.8260 495.3500 479.4830 500.000
+ 8 0.0000 0.0000 3.4000 -1.8000 58.681 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.5173 64.1051 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.7991 5.0000 6.8000 471.0910 57.8600 502.3430 480.1340 500.000
+ 9 0.0000 0.0000 3.4000 -1.7000 59.135 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.0646 64.4480 -2.7386 0.5000 0.0000 0.0000 148.6174 -62.7649 1.7991 5.0000 6.7000 470.2860 57.3870 500.3240 480.5750 500.000
+ 10 0.0000 0.0000 3.4000 -1.6000 58.895 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6145 64.7936 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.7991 5.0000 6.6000 470.7100 56.9230 499.1180 479.6450 500.000
+ 11 0.0000 0.0000 3.4000 -1.5000 58.814 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1670 65.1418 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.7991 5.0000 6.5000 470.7750 56.8400 503.8530 480.7110 500.000
+ 12 0.0000 0.0000 3.4000 -1.4000 58.937 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7222 65.4928 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.7991 5.0000 6.4000 470.1960 56.2640 495.2040 479.0160 500.000
+ 13 0.0000 0.0000 3.4000 -1.3000 59.162 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2802 65.8468 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.7991 5.0000 6.3000 470.9410 56.2940 504.1730 480.6310 500.000
+ 14 0.0000 0.0000 3.4000 -1.2000 58.835 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8411 66.2039 -2.7386 0.5000 0.0000 0.0000 147.2250 -65.5497 1.7991 5.0000 6.2000 469.8070 65.8740 495.7550 479.6530 500.000
+ 15 0.0000 0.0000 3.4000 -1.1000 59.050 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4049 66.5640 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.7991 5.0000 6.1000 470.8930 61.3290 501.7430 480.0980 500.000
+ 16 0.0000 0.0000 3.4000 -1.0000 59.243 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9718 66.9275 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.7991 5.0000 6.0000 470.3650 57.8150 501.5470 480.5840 500.000
+ 17 0.0000 0.0000 3.4000 -0.9000 58.995 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.5420 67.2944 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.7991 5.0000 5.9000 470.5140 57.3400 497.7200 479.3570 500.000
+ 18 0.0000 0.0000 3.4000 -0.8000 59.080 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1154 67.6647 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.7991 5.0000 5.8000 470.8580 56.9120 504.1330 480.7620 500.000
+ 19 0.0000 0.0000 3.4000 -0.7000 58.893 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6923 68.0388 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.7991 5.0000 5.7000 469.8990 56.6440 494.4360 479.2130 500.000
+ 20 0.0000 0.0000 3.4000 -0.6000 58.835 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.2727 68.4167 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4450 1.7991 5.0000 5.6000 470.8490 56.7270 503.4130 480.4920 500.000
+ 21 0.0000 0.0000 3.4000 -0.5000 58.504 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8567 68.7985 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.7991 5.0000 5.5000 469.7420 56.3760 497.8400 480.1070 500.000
+# Sum of Counts = 287
+# Center of Mass = -1.579791+/-0.134982
+# Full Width Half-Maximum = 0.975110+/-0.074635
+# 12:26:58 PM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0156.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0156.dat
new file mode 100644
index 0000000..8819673
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0156.dat
@@ -0,0 +1,61 @@
+# scan = 156
+# date = 10/27/2011
+# time = 1:12:38 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+# builtin_command = scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (101)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -13.5000 235.523 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.0653 23.4158 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.6801 5.0000 18.5000 369.8910 33.3420 385.9630 383.9830 383.000
+ 2 1.0000 0.0000 1.0000 -13.2500 235.535 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.9098 24.3806 -2.7386 0.5000 0.0000 0.0000 161.6074 -36.7850 1.6801 5.0000 18.2500 365.9940 34.0640 383.7670 379.7400 383.000
+ 3 1.0000 0.0000 1.0000 -13.0000 235.227 22.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.7001 25.3177 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.6801 5.0000 18.0000 361.8950 32.3000 383.4830 376.1200 383.000
+ 4 1.0000 0.0000 1.0000 -12.7500 235.805 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4424 26.2302 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.6801 5.0000 17.7500 359.1240 33.5030 385.5790 373.1030 383.000
+ 5 1.0000 0.0000 1.0000 -12.5000 235.527 22.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6801 5.0000 17.5000 356.1100 31.5190 388.1580 370.5400 383.000
+ 6 1.0000 0.0000 1.0000 -12.2500 234.988 34.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.6801 5.0000 17.2500 354.3810 32.6790 389.1840 368.4380 383.000
+ 7 1.0000 0.0000 1.0000 -12.0000 235.063 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.6801 5.0000 17.0000 352.0760 31.1770 387.1680 366.3410 383.000
+ 8 1.0000 0.0000 1.0000 -11.7500 236.013 30.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 350.5880 32.5730 383.4140 364.2470 383.000
+ 9 1.0000 0.0000 1.0000 -11.5000 235.264 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 348.3010 31.1150 380.4090 362.2260 383.000
+ 10 1.0000 0.0000 1.0000 -11.2500 235.943 22.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1316 31.3166 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 1.6801 5.0000 16.2500 348.0120 32.1000 388.6830 362.0950 383.000
+ 11 1.0000 0.0000 1.0000 -11.0000 235.833 39.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6488 32.1152 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.6801 5.0000 16.0000 346.7800 30.9850 385.8590 360.9400 383.000
+ 12 1.0000 0.0000 1.0000 -10.7500 235.044 53.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1446 32.9031 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.6801 5.0000 15.7500 345.8050 30.7360 387.9100 359.8020 383.000
+ 13 1.0000 0.0000 1.0000 -10.5000 236.023 51.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6208 33.6813 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 1.6801 5.0000 15.5000 344.7830 39.3170 382.0580 358.5470 383.000
+ 14 1.0000 0.0000 1.0000 -10.2500 235.331 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.0791 34.4507 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.6801 5.0000 15.2500 344.0400 30.1100 386.3890 358.1090 383.000
+ 15 1.0000 0.0000 1.0000 -10.0000 235.928 64.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.6801 5.0000 15.0000 344.0070 36.1070 386.5100 358.0470 383.000
+ 16 1.0000 0.0000 1.0000 -9.7500 235.627 92.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.6801 5.0000 14.7500 343.1260 29.8870 379.8530 356.4020 383.000
+ 17 1.0000 0.0000 1.0000 -9.5000 235.539 92.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 343.2460 37.6950 388.4050 357.4690 383.000
+ 18 1.0000 0.0000 1.0000 -9.2500 236.243 122.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.6801 5.0000 14.2500 342.8540 30.2480 382.8440 356.3770 383.000
+ 19 1.0000 0.0000 1.0000 -9.0000 235.921 128.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8845 -42.2308 1.6801 5.0000 14.0000 342.1890 36.8540 386.4570 356.4830 383.000
+ 20 1.0000 0.0000 1.0000 -8.7500 235.707 128.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 342.5530 30.0580 385.5060 356.2080 383.000
+ 21 1.0000 0.0000 1.0000 -8.5000 235.651 115.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 341.4420 37.2530 381.2010 355.1750 383.000
+ 22 1.0000 0.0000 1.0000 -8.2500 235.518 60.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.2642 40.3766 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.6801 5.0000 13.2500 342.2230 29.9370 387.5800 356.0660 383.000
+ 23 1.0000 0.0000 1.0000 -8.0000 235.097 42.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6190 41.0978 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6801 5.0000 13.0000 341.2250 34.4870 380.4160 354.9320 383.000
+ 24 1.0000 0.0000 1.0000 -7.7500 235.272 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.9672 41.8164 -2.7386 0.5000 0.0000 0.0000 157.8214 -44.3571 1.6801 5.0000 12.7500 341.7690 29.6130 388.3480 355.8030 383.000
+ 25 1.0000 0.0000 1.0000 -7.5000 234.943 35.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.3099 42.5328 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6801 5.0000 12.5000 341.3070 33.6490 382.6540 355.1460 383.000
+ 26 1.0000 0.0000 1.0000 -7.2500 236.194 22.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.6477 43.2476 -2.7386 0.5000 0.0000 0.0000 157.3487 -45.3025 1.6801 5.0000 12.2500 341.2600 29.5540 386.8580 355.3210 383.000
+ 27 1.0000 0.0000 1.0000 -7.0000 236.219 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.9814 43.9612 -2.7386 0.5000 0.0000 0.0000 157.1005 -45.7985 1.6801 5.0000 12.0000 341.3030 33.1780 384.6730 355.4000 383.000
+# Sum of Counts = 1428
+# Center of Mass = -9.758403+/-0.367552
+# Full Width Half-Maximum = 3.138225+/-0.150291
+# 3:02:09 PM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0157.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0157.dat
new file mode 100644
index 0000000..16be300
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0157.dat
@@ -0,0 +1,65 @@
+# scan = 157
+# date = 10/27/2011
+# time = 3:02:10 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (1.5 0 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.5000 59.068 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 341.1760 29.3330 387.8820 355.7230 383.000
+ 2 1.5000 0.0000 1.5000 -8.4000 58.837 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1527 71.3308 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2124 2.5201 5.0000 13.4000 341.2960 29.0310 384.9960 355.3760 383.000
+ 3 1.5000 0.0000 1.5000 -8.3000 58.668 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5225 71.6287 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.5201 5.0000 13.3000 340.4460 28.5820 380.3900 354.1710 383.000
+ 4 1.5000 0.0000 1.5000 -8.2000 58.902 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 341.1480 27.9430 388.1380 355.5320 383.000
+ 5 1.5000 0.0000 1.5000 -8.1000 58.785 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2643 72.2290 -2.7386 0.5000 0.0000 0.0000 158.1351 -43.7295 2.5201 5.0000 13.1000 340.8740 30.1090 382.9070 354.9330 383.000
+ 6 1.5000 0.0000 1.5000 -8.0000 58.794 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 340.6470 39.0030 384.7030 355.1060 383.000
+ 7 1.5000 0.0000 1.5000 -7.9000 58.742 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0094 72.8353 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0849 2.5201 5.0000 12.9000 341.6350 31.2770 387.2000 355.5310 383.000
+ 8 1.5000 0.0000 1.5000 -7.8000 58.836 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 340.9530 29.6110 380.9220 354.4380 383.000
+ 9 1.5000 0.0000 1.5000 -7.7000 58.988 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7577 73.4480 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5201 5.0000 12.7000 340.9630 29.1590 387.4640 355.3970 383.000
+ 10 1.5000 0.0000 1.5000 -7.6000 58.809 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 341.1810 29.1490 385.3300 355.3260 383.000
+ 11 1.5000 0.0000 1.5000 -7.5000 58.612 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5096 74.0674 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5201 5.0000 12.5000 340.3430 28.9360 379.9710 354.2860 383.000
+ 12 1.5000 0.0000 1.5000 -7.4000 58.970 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 341.0020 28.1970 388.2270 355.7010 383.000
+ 13 1.5000 0.0000 1.5000 -7.3000 58.780 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2652 74.6938 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2053 2.5201 5.0000 12.3000 340.7780 28.8000 383.3120 355.0920 383.000
+ 14 1.5000 0.0000 1.5000 -7.2000 58.817 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 340.4050 38.6470 384.0880 355.0110 383.000
+ 15 1.5000 0.0000 1.5000 -7.1000 59.103 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0246 75.3275 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5201 5.0000 12.1000 341.5750 31.9130 387.7310 355.6000 383.000
+ 16 1.5000 0.0000 1.5000 -7.0000 58.686 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 340.9600 29.9430 381.4150 354.5090 383.000
+ 17 1.5000 0.0000 1.5000 -6.9000 58.674 57.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7882 75.9689 -2.7386 0.5000 0.0000 0.0000 156.9990 -46.0016 2.5201 5.0000 11.9000 340.8190 29.5460 386.9650 355.2300 383.000
+ 18 1.5000 0.0000 1.5000 -6.8000 58.624 49.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 341.1400 29.2630 385.8540 355.3430 383.000
+ 19 1.5000 0.0000 1.5000 -6.7000 58.365 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5560 76.6182 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.5201 5.0000 11.7000 340.3220 28.9870 379.7580 354.1570 383.000
+ 20 1.5000 0.0000 1.5000 -6.6000 58.548 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 340.8700 28.2990 388.1960 355.5620 383.000
+ 21 1.5000 0.0000 1.5000 -6.5000 58.613 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3283 77.2760 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5201 5.0000 11.5000 340.7620 27.8260 383.9220 354.9840 383.000
+ 22 1.5000 0.0000 1.5000 -6.4000 58.504 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 340.1010 35.6020 382.4000 354.6460 383.000
+ 23 1.5000 0.0000 1.5000 -6.3000 58.832 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1053 77.9426 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5201 5.0000 11.3000 341.3140 32.6910 387.6820 355.5700 383.000
+ 24 1.5000 0.0000 1.5000 -6.2000 58.776 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2484 -47.5028 2.5201 5.0000 11.2000 340.8680 29.8390 381.7800 354.5550 383.000
+ 25 1.5000 0.0000 1.5000 -6.1000 58.793 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8872 78.6184 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5201 5.0000 11.1000 340.6160 29.3330 386.4380 355.0310 383.000
+ 26 1.5000 0.0000 1.5000 -6.0000 59.265 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 341.0010 28.3110 386.0950 355.2670 383.000
+ 27 1.5000 0.0000 1.5000 -5.9000 58.686 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6744 79.3040 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5201 5.0000 10.9000 340.1550 27.8280 379.8270 353.9340 383.000
+ 28 1.5000 0.0000 1.5000 -5.8000 58.669 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 340.6180 27.8850 388.1210 355.2500 383.000
+ 29 1.5000 0.0000 1.5000 -5.7000 58.696 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4670 79.9997 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5201 5.0000 10.7000 340.5780 27.6700 384.0330 354.8670 383.000
+ 30 1.5000 0.0000 1.5000 -5.6000 58.748 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 339.8790 33.7170 382.2300 354.3880 383.000
+ 31 1.5000 0.0000 1.5000 -5.5000 58.714 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2653 80.7062 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5201 5.0000 10.5000 341.0830 35.8280 387.6410 355.3740 383.000
+# Sum of Counts = 764
+# Center of Mass = -6.885733+/-0.353162
+# Full Width Half-Maximum = 1.359232+/-0.119280
+# 3:34:11 PM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0158.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0158.dat
new file mode 100644
index 0000000..63b6cbd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0158.dat
@@ -0,0 +1,45 @@
+# scan = 158
+# date = 10/27/2011
+# time = 3:34:11 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5 0 0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 29.361 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.8832 77.1477 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3918 5.0000 10.0000 340.6470 30.0620 381.0400 354.2380 383.000
+ 2 1.5000 0.0000 0.0000 -4.7500 29.334 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.9269 78.0318 -2.7386 0.5000 0.0000 0.0000 154.4257 -51.1486 2.3918 5.0000 9.7500 340.2250 29.5740 381.9990 354.1020 383.000
+ 3 1.5000 0.0000 0.0000 -4.5000 29.497 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9806 78.9338 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3918 5.0000 9.5000 340.6920 28.9810 387.6500 355.0070 383.000
+ 4 1.5000 0.0000 0.0000 -4.2500 29.194 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.0448 79.8550 -2.7386 0.5000 0.0000 0.0000 153.6921 -52.6158 2.3918 5.0000 9.2500 340.9480 28.7500 387.5250 355.2530 383.000
+ 5 1.5000 0.0000 0.0000 -4.0000 29.667 101.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.1205 80.7969 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3918 5.0000 9.0000 340.7760 28.6710 384.6190 354.8890 383.000
+ 6 1.5000 0.0000 0.0000 -3.7500 29.223 172.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.2082 81.7608 -2.7386 0.5000 0.0000 0.0000 152.8912 -54.2176 2.3918 5.0000 8.7500 340.3250 28.0690 381.1090 354.1800 383.000
+ 7 1.5000 0.0000 0.0000 -3.5000 29.256 125.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.3089 82.7486 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3918 5.0000 8.5000 339.9200 27.9040 381.8630 354.2130 383.000
+ 8 1.5000 0.0000 0.0000 -3.2500 29.383 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.4234 83.7620 -2.7386 0.5000 0.0000 0.0000 152.0120 -55.9760 2.3918 5.0000 8.2500 340.4160 27.8280 387.6140 355.0930 383.000
+ 9 1.5000 0.0000 0.0000 -3.0000 29.499 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.5528 84.8030 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.3918 5.0000 8.0000 340.7110 27.7350 387.5780 355.3540 383.000
+ 10 1.5000 0.0000 0.0000 -2.7500 29.696 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.6980 85.8741 -2.7386 0.5000 0.0000 0.0000 151.0407 -57.9186 2.3918 5.0000 7.7500 340.5590 27.6370 384.6510 354.9270 383.000
+ 11 1.5000 0.0000 0.0000 -2.5000 29.411 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.8602 86.9777 -2.7386 0.5000 0.0000 0.0000 150.5150 -58.9695 2.3918 5.0000 7.5000 340.1220 27.5340 381.1180 354.2330 383.000
+# Sum of Counts = 539
+# Center of Mass = -3.710575+/-0.226666
+# Full Width Half-Maximum = 0.789423+/-0.122406
+# 3:40:16 PM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0159.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0159.dat
new file mode 100644
index 0000000..4b08207
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0159.dat
@@ -0,0 +1,83 @@
+# scan = 159
+# date = 10/27/2011
+# time = 3:40:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -3.0000 58.945 100.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6840 60.7852 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.8150 5.0000 8.0000 340.9700 36.0840 386.3520 355.2470 383.000
+ 2 -0.9000 0.0000 2.1000 -2.9500 59.187 98.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4242 60.9448 -2.7386 0.5000 0.0000 0.0000 151.4412 -57.1174 1.8150 5.0000 7.9500 340.3850 30.1480 380.0850 353.8360 383.000
+ 3 -0.9000 0.0000 2.1000 -2.9000 58.979 89.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1642 61.1049 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.8150 5.0000 7.9000 340.6960 29.3040 387.9690 355.0520 383.000
+ 4 -0.9000 0.0000 2.1000 -2.8500 58.914 130.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.9036 61.2653 -2.7386 0.5000 0.0000 0.0000 151.2431 -57.5138 1.8150 5.0000 7.8500 340.6770 28.4870 384.2800 354.7130 383.000
+ 5 -0.9000 0.0000 2.1000 -2.8000 58.945 131.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6426 61.4263 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.8150 5.0000 7.8000 339.8300 27.8490 381.6620 354.0500 383.000
+ 6 -0.9000 0.0000 2.1000 -2.7500 58.862 148.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.3813 61.5877 -2.7386 0.5000 0.0000 0.0000 151.0407 -57.9186 1.8150 5.0000 7.7500 340.6110 27.7990 387.8030 355.2180 383.000
+ 7 -0.9000 0.0000 2.1000 -2.7000 59.293 144.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.1194 61.7495 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.8150 5.0000 7.7000 340.1710 27.5280 382.0990 354.3740 383.000
+ 8 -0.9000 0.0000 2.1000 -2.6500 59.073 152.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.8571 61.9119 -2.7386 0.5000 0.0000 0.0000 150.8339 -58.3322 1.8150 5.0000 7.6500 339.9620 31.7170 386.0320 354.9020 383.000
+ 9 -0.9000 0.0000 2.1000 -2.6000 58.889 135.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.5944 62.0747 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5424 1.8150 5.0000 7.6000 340.8030 39.3250 386.1280 355.2020 383.000
+ 10 -0.9000 0.0000 2.1000 -2.5500 58.971 126.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3312 62.2381 -2.7386 0.5000 0.0000 0.0000 150.6226 -58.7548 1.8150 5.0000 7.5500 340.2400 29.9090 379.9200 353.8950 383.000
+ 11 -0.9000 0.0000 2.1000 -2.5000 57.172 125.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0674 62.4019 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.8150 5.0000 7.5000 340.6150 29.1660 388.0090 355.1710 383.000
+ 12 -0.9000 0.0000 2.1000 -2.4500 58.836 112.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8033 62.5663 -2.7386 0.5000 0.0000 0.0000 150.4066 -59.1867 1.8150 5.0000 7.4500 340.0480 29.4630 382.3670 353.9160 383.000
+ 13 -0.9000 0.0000 2.1000 -2.4000 58.665 118.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5386 62.7312 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.8150 5.0000 7.4000 340.7220 28.2660 387.5770 355.0140 383.000
+ 14 -0.9000 0.0000 2.1000 -2.3500 59.079 134.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2734 62.8966 -2.7386 0.5000 0.0000 0.0000 150.1858 -59.6284 1.8150 5.0000 7.3500 340.1240 27.9340 381.7480 354.0330 383.000
+ 15 -0.9000 0.0000 2.1000 -2.3000 59.186 134.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.0077 63.0626 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.8150 5.0000 7.3000 339.9550 27.8360 386.4560 354.6580 383.000
+ 16 -0.9000 0.0000 2.1000 -2.2500 59.296 161.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7415 63.2291 -2.7386 0.5000 0.0000 0.0000 149.9599 -60.0802 1.8150 5.0000 7.2500 340.3790 27.7170 385.8860 354.7730 383.000
+ 17 -0.9000 0.0000 2.1000 -2.2000 59.063 216.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4748 63.3962 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.8150 5.0000 7.2000 339.5850 27.5310 379.7700 353.5200 383.000
+ 18 -0.9000 0.0000 2.1000 -2.1500 59.197 221.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.2075 63.5638 -2.7386 0.5000 0.0000 0.0000 149.7287 -60.5426 1.8150 5.0000 7.1500 340.2810 33.9590 387.9850 355.1120 383.000
+ 19 -0.9000 0.0000 2.1000 -2.1000 58.831 313.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.9397 63.7320 -2.7386 0.5000 0.0000 0.0000 149.6110 -60.7778 1.8150 5.0000 7.1000 340.5630 33.4470 383.3770 354.4190 383.000
+ 20 -0.9000 0.0000 2.1000 -2.0500 59.320 349.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6713 63.9008 -2.7386 0.5000 0.0000 0.0000 149.4920 -61.0158 1.8150 5.0000 7.0500 340.0060 29.3320 383.5160 354.0380 383.000
+ 21 -0.9000 0.0000 2.1000 -2.0000 58.970 387.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4024 64.0703 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8150 5.0000 7.0000 340.6420 28.6160 387.1530 354.9080 383.000
+ 22 -0.9000 0.0000 2.1000 -1.9500 58.938 381.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.1329 64.2403 -2.7386 0.5000 0.0000 0.0000 149.2498 -61.5005 1.8150 5.0000 6.9500 339.9730 27.7890 381.0490 353.7590 383.000
+ 23 -0.9000 0.0000 2.1000 -1.9000 59.296 448.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8628 64.4110 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.8150 5.0000 6.9000 340.0240 27.6850 387.2620 354.6880 383.000
+ 24 -0.9000 0.0000 2.1000 -1.8500 59.089 415.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5921 64.5822 -2.7386 0.5000 0.0000 0.0000 149.0014 -61.9970 1.8150 5.0000 6.8500 340.2830 27.5230 385.2440 354.4240 383.000
+ 25 -0.9000 0.0000 2.1000 -1.8000 58.901 474.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.3208 64.7542 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8150 5.0000 6.8000 339.4360 27.3980 380.0540 353.3030 383.000
+ 26 -0.9000 0.0000 2.1000 -1.7500 58.639 336.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.0489 64.9268 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.8150 5.0000 6.7500 340.2480 33.2530 387.9950 354.9550 383.000
+ 27 -0.9000 0.0000 2.1000 -1.7000 58.960 366.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7764 65.1000 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8150 5.0000 6.7000 340.4060 34.1620 382.8110 354.0740 383.000
+ 28 -0.9000 0.0000 2.1000 -1.6500 58.695 276.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.5032 65.2740 -2.7386 0.5000 0.0000 0.0000 148.4863 -63.0274 1.8150 5.0000 6.6500 340.0570 29.3290 384.7620 354.0770 383.000
+ 29 -0.9000 0.0000 2.1000 -1.6000 58.814 282.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.2294 65.4486 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8150 5.0000 6.6000 340.6070 28.5830 386.6900 354.6080 383.000
+ 30 -0.9000 0.0000 2.1000 -1.5500 59.270 296.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.9550 65.6240 -2.7386 0.5000 0.0000 0.0000 148.2187 -63.5624 1.8150 5.0000 6.5500 339.8510 27.7020 380.4980 353.3150 383.000
+ 31 -0.9000 0.0000 2.1000 -1.5000 58.996 304.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.6798 65.8000 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8150 5.0000 6.5000 340.0730 27.6240 387.7180 354.5910 383.000
+ 32 -0.9000 0.0000 2.1000 -1.4500 59.055 287.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4040 65.9768 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8150 5.0000 6.4500 340.1790 27.4680 384.6470 354.2910 383.000
+ 33 -0.9000 0.0000 2.1000 -1.4000 58.819 266.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1275 66.1544 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8150 5.0000 6.4000 339.3450 27.4070 380.9260 353.4450 383.000
+ 34 -0.9000 0.0000 2.1000 -1.3500 58.619 246.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8503 66.3327 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6753 1.8150 5.0000 6.3500 340.2230 32.8190 387.8170 354.8490 383.000
+ 35 -0.9000 0.0000 2.1000 -1.3000 58.983 213.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.5724 66.5118 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8150 5.0000 6.3000 340.2600 36.0240 382.1810 353.8700 383.000
+ 36 -0.9000 0.0000 2.1000 -1.2500 59.044 208.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2938 66.6916 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.8150 5.0000 6.2500 340.1550 29.3540 385.9150 354.2910 383.000
+ 37 -0.9000 0.0000 2.1000 -1.2000 58.943 149.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.0144 66.8723 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8150 5.0000 6.2000 340.5510 28.1250 386.1940 354.5550 383.000
+ 38 -0.9000 0.0000 2.1000 -1.1500 58.931 103.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7343 67.0538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8150 5.0000 6.1500 339.6840 27.6750 379.9580 353.2850 383.000
+ 39 -0.9000 0.0000 2.1000 -1.1000 58.866 80.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4534 67.2361 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8150 5.0000 6.1000 340.1040 27.6710 387.9700 354.5320 383.000
+ 40 -0.9000 0.0000 2.1000 -1.0500 59.319 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1717 67.4193 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4611 1.8150 5.0000 6.0500 340.0820 27.5180 384.0320 354.0930 383.000
+ 41 -0.9000 0.0000 2.1000 -1.0000 58.907 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8892 67.6033 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8150 5.0000 6.0000 339.3350 27.4830 382.2330 353.6410 383.000
+ 42 -0.9000 0.0000 2.1000 -0.9500 58.817 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6060 67.7882 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8150 5.0000 5.9500 340.2410 33.5700 387.4820 354.7020 383.000
+ 43 -0.9000 0.0000 2.1000 -0.9000 59.104 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.3219 67.9740 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8150 5.0000 5.9000 340.1710 35.3070 381.4620 353.6520 383.000
+ 44 -0.9000 0.0000 2.1000 -0.8500 58.810 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0370 68.1608 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7383 1.8150 5.0000 5.8500 340.2760 29.4040 386.8860 354.2500 383.000
+ 45 -0.9000 0.0000 2.1000 -0.8000 58.920 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7512 68.3484 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8150 5.0000 5.8000 340.5170 28.3680 385.5870 354.3070 383.000
+ 46 -0.9000 0.0000 2.1000 -0.7500 59.111 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4646 68.5371 -2.7386 0.5000 0.0000 0.0000 145.7971 -68.4055 1.8150 5.0000 5.7500 339.5890 27.7390 379.8360 353.0400 383.000
+ 47 -0.9000 0.0000 2.1000 -0.7000 59.097 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1772 68.7267 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8150 5.0000 5.7000 340.2140 27.6290 388.0420 354.5100 383.000
+ 48 -0.9000 0.0000 2.1000 -0.6500 59.028 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.8888 68.9172 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.8150 5.0000 5.6500 340.0000 27.4580 383.1920 353.8020 383.000
+ 49 -0.9000 0.0000 2.1000 -0.6000 59.394 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5995 69.1088 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.8150 5.0000 5.6000 339.4490 27.3930 384.0200 353.8440 383.000
+# Sum of Counts = 8973
+# Center of Mass = -1.891575+/-0.028727
+# Full Width Half-Maximum = 0.997817+/-0.012462
+# 4:38:12 PM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0160.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0160.dat
new file mode 100644
index 0000000..9672c8d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0160.dat
@@ -0,0 +1,35 @@
+# scan = 160
+# date = 10/27/2011
+# time = 4:38:13 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9227 0.0000 1.8440 -1.4107 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6307 64.0616 -2.7386 0.5000 0.0000 0.0000 149.3428 -64.3313 1.7654 5.0000 6.4107 339.9710 38.8590 381.1870 353.9620 383.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 4:39:11 PM 10/27/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0161.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0161.dat
new file mode 100644
index 0000000..ffc3943
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0161.dat
@@ -0,0 +1,43 @@
+# scan = 161
+# date = 10/27/2011
+# time = 5:15:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -15.0 -13.0 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 0 e -15.0 -13.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at X (1.5,0,0), add data, T=300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -15.0000 235.258 38.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.6616 48.9067 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0840 2.3918 5.0000 20.0000 319.6650 26.2510 300.5860 331.2430 300.000
+ 2 1.5000 0.0000 0.0000 -14.7500 235.963 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.6103 49.5446 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.3918 5.0000 19.7500 314.6080 43.4900 299.0850 326.5680 300.000
+ 3 1.5000 0.0000 0.0000 -14.5000 235.905 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.5560 50.1826 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3918 5.0000 19.5000 310.8720 25.9800 297.5720 322.4210 300.000
+ 4 1.5000 0.0000 0.0000 -14.2499 235.956 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.4990 50.8210 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3918 5.0000 19.2499 307.0620 38.7810 296.3730 318.9400 300.000
+ 5 1.5000 0.0000 0.0000 -14.0000 235.983 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.4396 51.4598 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3918 5.0000 19.0000 304.4490 25.7410 296.7070 315.7440 300.000
+ 6 1.5000 0.0000 0.0000 -13.7500 235.656 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.3780 52.0994 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3918 5.0000 18.7500 301.2340 37.8330 299.4570 313.0150 300.000
+ 7 1.5000 0.0000 0.0000 -13.5000 236.511 20.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.3145 52.7400 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3918 5.0000 18.5000 299.1190 24.9600 300.7250 310.4090 300.000
+ 8 1.5000 0.0000 0.0000 -13.2500 237.244 21.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.2494 53.3817 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3918 5.0000 18.2500 296.3240 38.0580 304.3320 308.1330 300.000
+ 9 1.5000 0.0000 0.0000 -13.0000 235.732 51.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1828 54.0250 -2.7386 0.5000 0.0000 0.0000 161.4755 -37.0488 2.3918 5.0000 18.0000 294.4210 23.8640 306.1650 305.7770 300.000
+# Sum of Counts = 267
+# Center of Mass = -14.003736+/-1.212788
+# Full Width Half-Maximum = 1.426711+/-0.937990
+# 5:52:05 PM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0162.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0162.dat
new file mode 100644
index 0000000..1a8abba
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0162.dat
@@ -0,0 +1,39 @@
+# scan = 162
+# date = 10/27/2011
+# time = 5:52:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -15 -14 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15 -14 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion L (1.5 0 1.5), add data, 300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.0000 236.606 30.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.5784 53.6998 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0840 2.5201 5.0000 20.0000 292.0190 35.2420 310.7740 303.8160 300.000
+ 2 1.5000 0.0000 1.5000 -14.7500 237.233 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 68.4663 54.3260 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.5201 5.0000 19.7500 290.3840 23.4260 311.8980 301.7810 300.000
+ 3 1.5000 0.0000 1.5000 -14.5000 238.160 41.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 69.3528 54.9536 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.5201 5.0000 19.5000 288.2550 29.3430 312.3330 299.9420 300.000
+ 4 1.5000 0.0000 1.5000 -14.2500 236.231 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 70.2383 55.5828 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.5201 5.0000 19.2500 286.9970 23.1090 311.6130 298.1600 300.000
+ 5 1.5000 0.0000 1.5000 -14.0000 237.511 65.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.1228 56.2137 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.5201 5.0000 19.0000 284.9710 27.0860 310.3160 296.6840 300.000
+# Sum of Counts = 209
+# Center of Mass = -14.415072+/-1.410346
+# Full Width Half-Maximum = 0.716251+/-1.322657
+# 6:12:12 PM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0163.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0163.dat
new file mode 100644
index 0000000..2cf9695
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0163.dat
@@ -0,0 +1,41 @@
+# scan = 163
+# date = 10/27/2011
+# time = 6:12:13 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -16 -14.5 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -16 -14.5 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5), add data, 300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -16.0000 236.332 32.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.6506 45.9421 -2.7386 0.5000 0.0000 0.0000 162.8940 -34.2121 2.3812 5.0000 21.0000 283.4510 23.5030 301.8710 294.6750 300.000
+ 2 0.0000 0.0000 4.5000 -15.7500 237.173 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6803 46.5841 -2.7386 0.5000 0.0000 0.0000 162.7879 -34.4240 2.3812 5.0000 20.7500 281.7770 39.6530 298.3830 293.2900 300.000
+ 3 0.0000 0.0000 4.5000 -15.5000 237.650 21.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.7145 47.2250 -2.7386 0.5000 0.0000 0.0000 162.6801 -34.6398 2.3812 5.0000 20.5000 280.7090 23.8120 297.2180 291.7840 300.000
+ 4 0.0000 0.0000 4.5000 -15.2500 237.082 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7528 47.8652 -2.7386 0.5000 0.0000 0.0000 162.5701 -34.8598 2.3812 5.0000 20.2500 279.3030 34.3150 307.1420 291.0260 300.000
+ 5 0.0000 0.0000 4.5000 -14.9999 237.533 42.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.7948 48.5048 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0841 2.3812 5.0000 19.9999 278.7040 22.0430 311.2520 290.0500 300.000
+ 6 0.0000 0.0000 4.5000 -14.7500 237.349 61.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.8403 49.1441 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.3812 5.0000 19.7500 277.4140 26.6240 310.8640 289.2170 300.000
+ 7 0.0000 0.0000 4.5000 -14.5000 236.318 64.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7834 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 276.9880 22.9080 306.7670 288.0600 300.000
+# Sum of Counts = 290
+# Center of Mass = -15.100848+/-1.254413
+# Full Width Half-Maximum = 1.017015+/-0.984852
+# 6:40:50 PM 10/27/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0164.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0164.dat
new file mode 100644
index 0000000..434ffb7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0164.dat
@@ -0,0 +1,56 @@
+# scan = 164
+# date = 10/27/2011
+# time = 9:16:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12.0
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (101), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.4999 707.790 38.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 1.6800 5.0000 17.4999 170.2960 16.3030 154.7200 178.5370 150.000
+ 2 1.0000 0.0000 1.0000 -12.2500 708.049 36.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0621 -37.8756 1.6801 5.0000 17.2500 168.0700 40.2580 154.7830 175.3710 150.000
+ 3 1.0000 0.0000 1.0000 -12.0000 706.499 37.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.6801 5.0000 17.0000 163.6640 15.4840 151.8090 171.9670 150.000
+ 4 1.0000 0.0000 1.0000 -11.7500 706.802 26.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 161.3120 36.4940 147.6860 168.8100 150.000
+ 5 1.0000 0.0000 1.0000 -11.5000 707.180 37.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 157.9930 17.4670 149.7150 165.3170 150.000
+ 6 1.0000 0.0000 1.0000 -11.2500 706.490 48.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1316 31.3166 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.6801 5.0000 16.2500 155.1580 26.1280 154.7670 162.7990 150.000
+ 7 1.0000 0.0000 1.0000 -11.0000 708.525 55.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6488 32.1152 -2.7386 0.5000 0.0000 0.0000 160.3069 -39.3861 1.6801 5.0000 16.0000 153.2950 16.1710 150.5570 160.3850 150.000
+ 8 1.0000 0.0000 1.0000 -10.7500 706.451 66.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1446 32.9031 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.6801 5.0000 15.7500 150.7320 14.5520 149.6910 157.8820 150.000
+ 9 1.0000 0.0000 1.0000 -10.5000 705.191 74.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6208 33.6813 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 1.6801 5.0000 15.5000 149.8520 16.0380 154.4450 156.1320 150.000
+ 10 1.0000 0.0000 1.0000 -10.2500 705.638 89.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.0791 34.4507 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.6801 5.0000 15.2500 147.5590 15.0590 148.1000 154.1140 150.000
+ 11 1.0000 0.0000 1.0000 -10.0000 702.863 102.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6329 -40.7340 1.6801 5.0000 15.0000 146.7530 15.9090 154.7110 152.5480 150.000
+ 12 1.0000 0.0000 1.0000 -9.7500 704.208 132.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0933 1.6801 5.0000 14.7500 144.9110 14.5370 150.5430 151.0980 150.000
+ 13 1.0000 0.0000 1.0000 -9.5000 702.695 135.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 144.3340 16.7390 151.3120 149.8560 150.000
+ 14 1.0000 0.0000 1.0000 -9.2500 704.237 133.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.6801 5.0000 14.2500 143.3950 30.0330 152.1500 149.0950 150.000
+ 15 1.0000 0.0000 1.0000 -9.0000 704.412 167.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.6801 5.0000 14.0000 142.4350 15.9640 150.5890 147.8840 150.000
+ 16 1.0000 0.0000 1.0000 -8.7500 702.520 163.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 141.7880 28.9070 151.6670 147.4490 150.000
+ 17 1.0000 0.0000 1.0000 -8.5000 699.631 48.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 141.1280 15.4510 151.7810 146.6120 150.000
+ 18 1.0000 0.0000 1.0000 -8.2500 699.687 34.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.2642 40.3766 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.6801 5.0000 13.2500 140.7470 28.8660 151.3770 146.3500 150.000
+ 19 1.0000 0.0000 1.0000 -8.0000 699.766 25.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6190 41.0978 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6801 5.0000 13.0000 140.2120 15.2480 151.6830 145.5680 150.000
+ 20 1.0000 0.0000 1.0000 -7.7500 702.229 26.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.9672 41.8164 -2.7386 0.5000 0.0000 0.0000 157.8214 -44.3571 1.6801 5.0000 12.7500 139.6110 14.6460 150.7970 145.4980 150.000
+ 21 1.0000 0.0000 1.0000 -7.5000 699.782 21.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.3099 42.5328 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6801 5.0000 12.5000 140.0840 15.7950 153.8690 144.8810 150.000
+ 22 1.0000 0.0000 1.0000 -7.2500 701.096 27.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.6477 43.2476 -2.7386 0.5000 0.0000 0.0000 157.3487 -45.3025 1.6801 5.0000 12.2500 139.1110 14.6260 149.6170 144.5840 150.000
+# Sum of Counts = 1519
+# Center of Mass = -9.761024+/-0.355501
+# Full Width Half-Maximum = 2.380927+/-0.148072
+# 1:36:17 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0165.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0165.dat
new file mode 100644
index 0000000..6f2adbf
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0165.dat
@@ -0,0 +1,48 @@
+# scan = 165
+# date = 10/28/2011
+# time = 1:36:17 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5 0 1.5), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 3.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 174.736 8.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 140.6510 17.0540 153.1420 144.7970 150.000
+ 2 1.5000 0.0000 1.5000 -8.0000 175.246 16.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 138.8720 15.2750 154.0010 144.3180 150.000
+ 3 1.5000 0.0000 1.5000 -7.8000 174.789 16.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 140.7980 41.0480 147.8940 144.4510 150.000
+ 4 1.5000 0.0000 1.5000 -7.6000 175.166 27.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 139.2660 15.8400 153.9050 144.4540 150.000
+ 5 1.5000 0.0000 1.5000 -7.4000 174.770 49.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 138.7380 15.6400 153.1540 144.2680 150.000
+ 6 1.5000 0.0000 1.5000 -7.2000 175.415 73.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 142.2610 39.6650 149.4000 144.5160 150.000
+ 7 1.5000 0.0000 1.5000 -7.0000 174.960 55.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 138.8640 16.0640 154.5090 144.6860 150.000
+ 8 1.5000 0.0000 1.5000 -6.8000 175.148 61.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 138.6330 16.2650 151.6540 144.5630 150.000
+ 9 1.5000 0.0000 1.5000 -6.6000 174.798 33.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 140.8950 19.0540 149.3970 144.6530 150.000
+ 10 1.5000 0.0000 1.5000 -6.4000 175.432 20.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 138.6390 15.3470 154.7570 144.6900 150.000
+ 11 1.5000 0.0000 1.5000 -6.2000 175.355 19.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 140.2340 40.1060 150.9720 144.7020 150.000
+ 12 1.5000 0.0000 1.5000 -6.0000 174.999 11.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 139.0840 16.1350 149.8670 144.5760 150.000
+ 13 1.5000 0.0000 1.5000 -5.8000 174.974 16.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 138.4370 14.4360 155.0080 144.6560 150.000
+ 14 1.5000 0.0000 1.5000 -5.6000 175.524 10.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 141.5060 44.6140 148.2020 144.5080 150.000
+# Sum of Counts = 414
+# Center of Mass = -6.980676+/-0.486024
+# Full Width Half-Maximum = 1.158065+/-0.221466
+# 2:18:13 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0166.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0166.dat
new file mode 100644
index 0000000..5a1c889
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0166.dat
@@ -0,0 +1,50 @@
+# scan = 166
+# date = 10/28/2011
+# time = 2:18:14 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 1
+# builtin_command = scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (1.5 0 0), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 58.252 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.8832 77.1477 -2.7386 0.5000 0.0000 0.0000 154.7701 -50.4598 2.3918 5.0000 10.0000 138.5020 15.0710 148.8470 144.2780 150.000
+ 2 1.5000 0.0000 0.0000 -4.7500 58.507 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.9269 78.0318 -2.7386 0.5000 0.0000 0.0000 154.4257 -51.1486 2.3918 5.0000 9.7500 138.3890 14.5920 155.1910 144.4760 150.000
+ 3 1.5000 0.0000 0.0000 -4.5000 58.339 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9806 78.9338 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3918 5.0000 9.5000 138.2590 14.3600 146.6140 144.2200 150.000
+ 4 1.5000 0.0000 0.0000 -4.2500 58.688 67.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.0448 79.8550 -2.7386 0.5000 0.0000 0.0000 153.6921 -52.6158 2.3918 5.0000 9.2500 138.3060 14.0250 153.9050 144.4070 150.000
+ 5 1.5000 0.0000 0.0000 -4.0000 58.274 124.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.1205 80.7969 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3918 5.0000 9.0000 139.6690 38.0500 150.5150 144.4520 150.000
+ 6 1.5000 0.0000 0.0000 -3.7500 58.446 127.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.2082 81.7608 -2.7386 0.5000 0.0000 0.0000 152.8912 -54.2176 2.3918 5.0000 8.7500 141.7450 40.1000 152.0750 144.4560 150.000
+# Fri, Oct 28, 2011 [2:24:32 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:25:35 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:26:35 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:27:35 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:28:35 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Sum of Counts = 349
+# Center of Mass = -4.014327+/-0.304237
+# Full Width Half-Maximum = 0.543820+/-0.252716
+# 2:28:35 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0167.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0167.dat
new file mode 100644
index 0000000..4df042c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0167.dat
@@ -0,0 +1,132 @@
+# scan = 167
+# date = 10/28/2011
+# time = 2:28:35 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+# Fri, Oct 28, 2011 [2:30:53 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:30:56 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:31:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:32:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:33:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:34:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:35:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:36:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:37:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:38:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:39:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:40:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:41:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:42:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:43:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:44:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:45:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:46:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:47:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:48:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:49:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:50:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:51:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:52:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:53:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:54:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:55:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:56:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:57:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:58:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [2:59:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:00:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:01:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:02:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:03:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:04:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:05:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:06:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:07:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:08:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:09:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:10:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:11:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:12:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:13:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:14:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:15:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:16:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Fri, Oct 28, 2011 [3:17:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Sum of Counts = 0
+# Center of Mass = 0.000000+/-0.000000
+# Full Width Half-Maximum = 0.000000+/-0.000000
+# 3:17:55 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0168.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0168.dat
new file mode 100644
index 0000000..0d050b5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0168.dat
@@ -0,0 +1,80 @@
+# scan = 168
+# date = 10/28/2011
+# time = 3:17:55 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 116.858 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.8412 40.0160 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6514 5.0000 13.0000 138.9190 34.6310 155.5860 144.1310 150.000
+ 2 -0.7000 0.0000 2.3000 -7.9000 116.476 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.2892 40.3059 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0849 1.6514 5.0000 12.9000 140.6370 19.8140 154.1850 144.0130 150.000
+ 3 -0.7000 0.0000 2.3000 -7.8000 117.122 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.7383 40.5953 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.6514 5.0000 12.8000 138.1530 14.9670 153.5120 143.8220 150.000
+ 4 -0.7000 0.0000 2.3000 -7.7000 117.120 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.1885 40.8842 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.6514 5.0000 12.7000 137.9560 14.0990 151.6160 143.7520 150.000
+ 5 -0.7000 0.0000 2.3000 -7.6000 116.620 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.6398 41.1727 -2.7386 0.5000 0.0000 0.0000 157.6827 -44.6345 1.6514 5.0000 12.6000 138.6300 32.8360 149.6350 143.8300 150.000
+ 6 -0.7000 0.0000 2.3000 -7.5000 116.265 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.0920 41.4608 -2.7386 0.5000 0.0000 0.0000 157.5888 -44.8223 1.6514 5.0000 12.5000 140.6360 20.2190 147.7830 143.3800 150.000
+ 7 -0.7000 0.0000 2.3000 -7.4000 117.004 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5452 41.7485 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.6514 5.0000 12.4000 138.0470 15.0940 146.6950 143.3030 150.000
+ 8 -0.7000 0.0000 2.3000 -7.3000 117.398 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9992 42.0358 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.6514 5.0000 12.3000 137.8390 14.2310 149.5720 143.0600 150.000
+ 9 -0.7000 0.0000 2.3000 -7.2000 116.905 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.4540 42.3229 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4005 1.6514 5.0000 12.2000 138.5500 32.9170 153.5490 143.6040 150.000
+ 10 -0.7000 0.0000 2.3000 -7.1000 116.900 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.9096 42.6097 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.6514 5.0000 12.1000 140.7020 20.7030 153.3680 143.5500 150.000
+ 11 -0.7000 0.0000 2.3000 -7.0000 116.776 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.3659 42.8962 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6514 5.0000 12.0000 138.1120 14.9360 155.0820 143.8910 150.000
+ 12 -0.7000 0.0000 2.3000 -6.9000 117.549 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.8229 43.1825 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.6514 5.0000 11.9000 137.9290 13.9590 154.3090 144.0210 150.000
+ 13 -0.7000 0.0000 2.3000 -6.8000 117.211 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.2805 43.4686 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.6514 5.0000 11.8000 138.2180 28.8270 152.7100 143.9900 150.000
+ 14 -0.7000 0.0000 2.3000 -6.7000 117.285 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.7386 43.7546 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.6514 5.0000 11.7000 141.0120 22.8360 150.9110 143.7830 150.000
+ 15 -0.7000 0.0000 2.3000 -6.6000 117.216 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.1973 44.0404 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.6514 5.0000 11.6000 138.1170 15.1390 148.5230 143.6910 150.000
+ 16 -0.7000 0.0000 2.3000 -6.5000 117.105 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.6564 44.3260 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6514 5.0000 11.5000 137.8370 14.2520 146.6190 143.4570 150.000
+ 17 -0.7000 0.0000 2.3000 -6.4000 117.003 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1159 44.6116 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6514 5.0000 11.4000 138.1140 29.7710 148.8080 143.8550 150.000
+ 18 -0.7000 0.0000 2.3000 -6.3000 116.512 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5758 44.8972 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 1.6514 5.0000 11.3000 140.9000 22.9700 149.9550 143.7510 150.000
+ 19 -0.7000 0.0000 2.3000 -6.2000 116.857 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.0359 45.1827 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6514 5.0000 11.2000 138.0790 15.1490 154.0740 143.7470 150.000
+ 20 -0.7000 0.0000 2.3000 -6.1000 117.075 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.4964 45.4682 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6514 5.0000 11.1000 137.8690 14.0490 155.2460 143.7790 150.000
+ 21 -0.7000 0.0000 2.3000 -6.0000 116.813 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.9570 45.7538 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6514 5.0000 11.0000 138.1870 28.9510 154.7420 143.8370 150.000
+ 22 -0.7000 0.0000 2.3000 -5.9000 116.455 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.4179 46.0394 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6514 5.0000 10.9000 140.9690 22.7790 153.1880 143.6610 150.000
+ 23 -0.7000 0.0000 2.3000 -5.8000 116.785 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.8788 46.3251 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6514 5.0000 10.8000 138.0950 15.1470 151.4360 144.0690 150.000
+ 24 -0.7000 0.0000 2.3000 -5.7000 117.094 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.3398 46.6109 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6514 5.0000 10.7000 137.8220 13.9810 149.2640 143.9220 150.000
+ 25 -0.7000 0.0000 2.3000 -5.6000 117.192 22.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.8009 46.8968 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6514 5.0000 10.6000 137.8930 26.4250 147.0300 143.6780 150.000
+ 26 -0.7000 0.0000 2.3000 -5.5000 116.748 38.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.2619 47.1830 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6514 5.0000 10.5000 141.0360 24.6910 146.7280 143.7360 150.000
+ 27 -0.7000 0.0000 2.3000 -5.4000 117.363 52.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.7228 47.4693 -2.7386 0.5000 0.0000 0.0000 155.2932 -49.4134 1.6514 5.0000 10.4000 138.0000 15.2370 149.8300 143.8770 150.000
+ 28 -0.7000 0.0000 2.3000 -5.3000 116.620 54.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.1837 47.7558 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6514 5.0000 10.3000 137.7550 14.1110 153.7820 143.9970 150.000
+ 29 -0.7000 0.0000 2.3000 -5.2000 116.717 50.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6443 48.0426 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6514 5.0000 10.2000 137.7170 16.8550 155.2900 144.2170 150.000
+ 30 -0.7000 0.0000 2.3000 -5.1000 116.636 81.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1048 48.3297 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6514 5.0000 10.1000 141.2540 31.4560 154.6460 144.1340 150.000
+ 31 -0.7000 0.0000 2.3000 -5.0000 117.495 71.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5650 48.6171 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6514 5.0000 10.0000 138.1970 15.2550 153.7720 144.0020 150.000
+ 32 -0.7000 0.0000 2.3000 -4.9000 117.107 48.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0248 48.9048 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6514 5.0000 9.9000 137.8220 13.9180 151.8110 143.5750 150.000
+ 33 -0.7000 0.0000 2.3000 -4.8000 117.185 35.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4843 49.1929 -2.7386 0.5000 0.0000 0.0000 154.4956 -51.0086 1.6514 5.0000 9.8000 137.7250 13.6090 149.4760 143.3180 150.000
+ 34 -0.7000 0.0000 2.3000 -4.7000 117.099 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9434 49.4814 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.6514 5.0000 9.7000 141.1580 41.5910 148.5480 143.3420 150.000
+ 35 -0.7000 0.0000 2.3000 -4.6000 116.699 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.4021 49.7703 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 1.6514 5.0000 9.6000 138.2780 15.6300 146.7040 143.1300 150.000
+ 36 -0.7000 0.0000 2.3000 -4.5000 116.840 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8602 50.0597 -2.7386 0.5000 0.0000 0.0000 154.0666 -51.8666 1.6514 5.0000 9.5000 137.7280 14.1950 149.4300 143.1470 150.000
+ 37 -0.7000 0.0000 2.3000 -4.4000 116.111 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3178 50.3496 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6514 5.0000 9.4000 137.6880 13.7540 153.2300 143.2230 150.000
+ 38 -0.7000 0.0000 2.3000 -4.3000 116.947 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.7747 50.6400 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6514 5.0000 9.3000 140.9660 44.0740 154.0860 143.4130 150.000
+ 39 -0.7000 0.0000 2.3000 -4.2000 116.901 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2310 50.9310 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6514 5.0000 9.2000 138.4590 15.6320 155.0930 143.3970 150.000
+ 40 -0.7000 0.0000 2.3000 -4.1000 116.797 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.6866 51.2226 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6514 5.0000 9.1000 137.8450 13.9400 154.2580 143.3560 150.000
+ 41 -0.7000 0.0000 2.3000 -4.0000 116.609 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.1414 51.5148 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6514 5.0000 9.0000 137.7480 13.5730 152.5560 143.3020 150.000
+ 42 -0.7000 0.0000 2.3000 -3.9000 116.490 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.5955 51.8076 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6514 5.0000 8.9000 140.7260 45.2210 151.5830 143.5450 150.000
+ 43 -0.7000 0.0000 2.3000 -3.8000 117.263 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0486 52.1012 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.6514 5.0000 8.8000 138.6900 16.0800 149.1610 143.3440 150.000
+ 44 -0.7000 0.0000 2.3000 -3.7000 116.961 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5008 52.3954 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6514 5.0000 8.7000 137.7710 14.2270 146.8080 143.3700 150.000
+ 45 -0.7000 0.0000 2.3000 -3.6000 117.077 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9520 52.6904 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6514 5.0000 8.6000 137.6300 13.9650 148.0140 143.3880 150.000
+ 46 -0.7000 0.0000 2.3000 -3.5000 116.703 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.4022 52.9863 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.6514 5.0000 8.5000 140.1700 43.4070 151.2790 143.9640 150.000
+# Sum of Counts = 818
+# Center of Mass = -5.458435+/-0.271875
+# Full Width Half-Maximum = 1.869988+/-0.098394
+# 4:49:52 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0169.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0169.dat
new file mode 100644
index 0000000..64b5467
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0169.dat
@@ -0,0 +1,80 @@
+# scan = 169
+# date = 10/28/2011
+# time = 4:49:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 2.0
+# builtin_command = scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -9.5000 116.929 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.9022 31.2626 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.5445 5.0000 14.5000 138.5330 15.8080 154.8430 143.9180 150.000
+ 2 -0.5000 0.0000 2.5000 -9.4000 116.809 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.2558 31.5846 -2.7386 0.5000 0.0000 0.0000 159.1938 -41.6125 1.5445 5.0000 14.4000 137.8230 14.0530 153.5960 143.8700 150.000
+ 3 -0.5000 0.0000 2.5000 -9.3000 116.899 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -54.6129 31.9048 -2.7386 0.5000 0.0000 0.0000 159.1177 -41.7645 1.5446 5.0000 14.3000 137.7200 13.6210 151.7300 143.8410 150.000
+ 4 -0.5000 0.0000 2.5000 -9.2000 117.667 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.9736 32.2231 -2.7386 0.5000 0.0000 0.0000 159.0408 -41.9182 1.5445 5.0000 14.2000 140.6750 45.2300 150.6440 143.8900 150.000
+ 5 -0.5000 0.0000 2.5000 -9.1000 116.896 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.3377 32.5398 -2.7386 0.5000 0.0000 0.0000 158.9632 -42.0737 1.5445 5.0000 14.1000 138.5870 16.0850 147.5190 143.3850 150.000
+ 6 -0.5000 0.0000 2.5000 -9.0000 117.019 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.7049 32.8549 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.5445 5.0000 14.0000 137.6970 14.2810 146.9170 143.3030 150.000
+ 7 -0.5000 0.0000 2.5000 -8.9000 117.458 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.0753 33.1684 -2.7386 0.5000 0.0000 0.0000 158.8051 -42.3898 1.5445 5.0000 13.9000 137.5940 13.9240 150.4510 143.3730 150.000
+ 8 -0.5000 0.0000 2.5000 -8.8000 117.529 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.4487 33.4805 -2.7386 0.5000 0.0000 0.0000 158.7247 -42.5505 1.5445 5.0000 13.8000 140.5790 45.6010 153.0990 143.6420 150.000
+ 9 -0.5000 0.0000 2.5000 -8.7000 117.012 1.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.8249 33.7911 -2.7386 0.5000 0.0000 0.0000 158.6434 -42.7131 1.5445 5.0000 13.7000 138.5940 16.0190 155.0430 143.6000 150.000
+ 10 -0.5000 0.0000 2.5000 -8.6000 116.687 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.2039 34.1003 -2.7386 0.5000 0.0000 0.0000 158.5612 -42.8776 1.5445 5.0000 13.6000 137.7960 14.1620 154.9140 143.6610 150.000
+ 11 -0.5000 0.0000 2.5000 -8.5000 116.886 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5856 34.4082 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5445 5.0000 13.5000 137.6930 13.6080 153.5900 143.6280 150.000
+ 12 -0.5000 0.0000 2.5000 -8.4000 116.956 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9698 34.7148 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2124 1.5445 5.0000 13.4000 140.3820 43.7700 152.6560 143.9710 150.000
+ 13 -0.5000 0.0000 2.5000 -8.3000 117.028 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.3564 35.0202 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.5445 5.0000 13.3000 138.9070 16.4150 150.2530 143.7250 150.000
+ 14 -0.5000 0.0000 2.5000 -8.2000 117.036 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.7454 35.3244 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 1.5445 5.0000 13.2000 137.7290 14.2510 147.8210 143.7260 150.000
+ 15 -0.5000 0.0000 2.5000 -8.1000 116.765 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.1366 35.6274 -2.7386 0.5000 0.0000 0.0000 158.1350 -43.7295 1.5445 5.0000 13.1000 137.5690 13.9140 146.6320 143.6200 150.000
+ 16 -0.5000 0.0000 2.5000 -8.0000 117.069 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 139.9050 42.3180 148.6910 143.6980 150.000
+ 17 -0.5000 0.0000 2.5000 -7.9000 116.770 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.9255 36.2304 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5445 5.0000 12.9000 139.1290 16.9960 152.3630 143.5450 150.000
+ 18 -0.5000 0.0000 2.5000 -7.7999 116.427 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.3230 36.5303 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2659 1.5445 5.0000 12.7999 137.7480 14.3150 154.8360 143.6420 150.000
+ 19 -0.5000 0.0000 2.5000 -7.7000 117.229 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.7223 36.8293 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5446 5.0000 12.7000 137.6540 13.6800 155.2500 143.6980 150.000
+ 20 -0.5000 0.0000 2.5000 -7.6000 117.276 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1234 37.1274 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5445 5.0000 12.6000 139.9030 41.5220 154.6950 144.0870 150.000
+ 21 -0.5000 0.0000 2.5000 -7.5000 116.799 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5263 37.4246 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.5445 5.0000 12.5000 139.2860 16.8530 152.8620 143.5860 150.000
+ 22 -0.5000 0.0000 2.5000 -7.4000 117.090 26.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9308 37.7210 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5445 5.0000 12.4000 137.7950 14.2940 150.9390 143.4920 150.000
+ 23 -0.5000 0.0000 2.5000 -7.3000 117.126 29.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.3370 38.0166 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.5445 5.0000 12.3000 137.6360 13.8170 148.3740 143.1480 150.000
+ 24 -0.5000 0.0000 2.5000 -7.1999 117.067 23.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.7446 38.3114 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4005 1.5445 5.0000 12.1999 139.6100 40.4670 146.9500 143.3020 150.000
+ 25 -0.5000 0.0000 2.5000 -7.1000 117.082 25.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1536 38.6055 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5445 5.0000 12.1000 139.3310 17.3280 147.8280 143.1140 150.000
+ 26 -0.5000 0.0000 2.5000 -7.0000 116.573 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5640 38.8989 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5445 5.0000 12.0000 137.7110 14.4000 152.1150 143.3230 150.000
+ 27 -0.5000 0.0000 2.5000 -6.9000 117.095 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9756 39.1917 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5445 5.0000 11.9000 137.6200 13.7970 154.7210 143.4470 150.000
+ 28 -0.5000 0.0000 2.5000 -6.8000 116.862 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3885 39.4839 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5445 5.0000 11.8000 139.3960 38.9680 155.5370 143.8160 150.000
+ 29 -0.5000 0.0000 2.5000 -6.7000 116.881 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8025 39.7754 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 1.5445 5.0000 11.7000 139.7310 17.6220 154.3840 143.5650 150.000
+ 30 -0.5000 0.0000 2.5000 -6.6000 116.664 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2176 40.0665 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5445 5.0000 11.6000 137.8340 14.3050 153.2600 143.3740 150.000
+ 31 -0.5000 0.0000 2.5000 -6.5000 116.703 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6337 40.3570 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5445 5.0000 11.5000 137.6810 13.7270 151.4200 143.4070 150.000
+ 32 -0.5000 0.0000 2.5000 -6.4000 116.919 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.0507 40.6470 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5445 5.0000 11.4000 139.6080 40.0370 149.9850 143.5520 150.000
+ 33 -0.5000 0.0000 2.5000 -6.3000 117.074 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4686 40.9366 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 1.5445 5.0000 11.3000 139.3830 17.2940 147.2620 143.1450 150.000
+ 34 -0.5000 0.0000 2.5000 -6.2000 117.141 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.8873 41.2258 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5445 5.0000 11.2000 137.6980 14.4520 147.2870 142.9500 150.000
+ 35 -0.5000 0.0000 2.5000 -6.1000 117.224 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.3068 41.5146 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5445 5.0000 11.1000 137.5660 13.8450 150.9510 142.9860 150.000
+ 36 -0.5000 0.0000 2.5000 -6.0000 117.366 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.7270 41.8030 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5445 5.0000 11.0000 139.3810 38.8270 154.1720 143.3030 150.000
+ 37 -0.5000 0.0000 2.5000 -5.9000 116.711 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.1478 42.0911 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5445 5.0000 10.9000 139.7870 17.9330 154.5780 143.1050 150.000
+ 38 -0.5000 0.0000 2.5000 -5.8000 116.496 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5691 42.3790 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 1.5445 5.0000 10.8000 137.8580 14.5020 154.7660 142.9800 150.000
+ 39 -0.5000 0.0000 2.5000 -5.7000 116.772 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.9910 42.6665 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5445 5.0000 10.7000 137.6890 13.6990 153.7370 143.4150 150.000
+ 40 -0.5000 0.0000 2.5000 -5.6000 116.807 1.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.4133 42.9538 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5445 5.0000 10.6000 139.1030 37.0590 152.4090 143.7540 150.000
+ 41 -0.5000 0.0000 2.5000 -5.5000 116.913 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.8360 43.2409 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5445 5.0000 10.5000 139.9590 18.3580 149.9800 143.2170 150.000
+ 42 -0.5000 0.0000 2.5000 -5.4000 117.424 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2590 43.5278 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5445 5.0000 10.4000 137.7910 14.5730 147.5400 143.1700 150.000
+ 43 -0.5000 0.0000 2.5000 -5.3000 116.792 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6822 43.8146 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5445 5.0000 10.3000 137.5650 13.9650 146.7940 143.2300 150.000
+ 44 -0.5000 0.0000 2.5000 -5.2000 117.174 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1058 44.1013 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5445 5.0000 10.2000 138.4060 33.9990 149.9800 143.2760 150.000
+ 45 -0.5000 0.0000 2.5000 -5.1000 117.295 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5294 44.3878 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5445 5.0000 10.1000 140.2770 19.8960 151.3560 143.0960 150.000
+ 46 -0.5000 0.0000 2.5000 -5.0000 116.761 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9531 44.6744 -2.7386 0.5000 0.0000 0.0000 154.7701 -50.4597 1.5445 5.0000 10.0000 137.8380 14.5410 154.6800 143.1770 150.000
+# Sum of Counts = 413
+# Center of Mass = -7.178684+/-0.501911
+# Full Width Half-Maximum = 1.973605+/-0.159927
+# 6:21:43 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0170.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0170.dat
new file mode 100644
index 0000000..b34b7e2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0170.dat
@@ -0,0 +1,61 @@
+# scan = 170
+# date = 10/28/2011
+# time = 6:21:43 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 2.0
+# builtin_command = scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 1.1000 -2.0000 116.393 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3529 65.4132 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8481 5.0000 7.0000 137.5420 13.8330 146.7270 143.5800 150.000
+ 2 1.1000 0.0000 1.1000 -1.9500 116.264 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.6195 65.5862 -2.7386 0.5000 0.0000 0.0000 149.2498 -61.5005 1.8481 5.0000 6.9500 140.8080 44.2600 148.1550 143.4380 150.000
+ 3 1.1000 0.0000 1.1000 -1.9000 116.318 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8866 65.7598 -2.7386 0.5000 0.0000 0.0000 149.1262 -61.7473 1.8481 5.0000 6.9000 138.3030 15.8950 153.0210 143.3690 150.000
+ 4 1.1000 0.0000 1.1000 -1.8500 116.370 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1544 65.9342 -2.7386 0.5000 0.0000 0.0000 149.0015 -61.9969 1.8481 5.0000 6.8500 137.6680 13.9620 155.1830 143.5010 150.000
+ 5 1.1000 0.0000 1.1000 -1.8000 116.709 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.4227 66.1092 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8481 5.0000 6.8000 137.6240 13.7220 154.9250 143.4920 150.000
+ 6 1.1000 0.0000 1.1000 -1.7500 116.674 22.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6917 66.2849 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.8481 5.0000 6.7500 140.9820 43.7070 153.8380 143.6150 150.000
+ 7 1.1000 0.0000 1.1000 -1.7000 116.881 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.9614 66.4613 -2.7386 0.5000 0.0000 0.0000 148.6174 -62.7649 1.8481 5.0000 6.7000 138.3770 15.7860 152.1550 143.4460 150.000
+ 8 1.1000 0.0000 1.1000 -1.6500 116.459 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2316 66.6385 -2.7386 0.5000 0.0000 0.0000 148.4863 -63.0274 1.8481 5.0000 6.6500 137.6830 13.9050 149.8230 143.4280 150.000
+ 9 1.1000 0.0000 1.1000 -1.6000 116.281 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5025 66.8164 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8481 5.0000 6.6000 137.5440 13.5600 147.4260 143.3260 150.000
+ 10 1.1000 0.0000 1.1000 -1.5500 117.141 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7741 66.9951 -2.7386 0.5000 0.0000 0.0000 148.2188 -63.5624 1.8481 5.0000 6.5500 140.5810 45.6350 146.8990 143.4250 150.000
+ 11 1.1000 0.0000 1.1000 -1.5000 116.619 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0464 67.1746 -2.7386 0.5000 0.0000 0.0000 148.0823 -63.8352 1.8481 5.0000 6.5000 138.4140 16.1580 149.5710 143.2680 150.000
+ 12 1.1000 0.0000 1.1000 -1.4500 116.407 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3193 67.3548 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8481 5.0000 6.4500 137.6090 14.0250 153.5630 143.4040 150.000
+ 13 1.1000 0.0000 1.1000 -1.4000 116.519 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5930 67.5359 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8481 5.0000 6.4000 137.5590 13.5760 155.1950 143.4280 150.000
+ 14 1.1000 0.0000 1.1000 -1.3500 116.398 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8674 67.7178 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6753 1.8481 5.0000 6.3500 140.6710 45.7180 154.8920 143.6270 150.000
+ 15 1.1000 0.0000 1.1000 -1.3000 116.255 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1424 67.9005 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8481 5.0000 6.3000 138.5310 15.8630 153.9940 143.4800 150.000
+ 16 1.1000 0.0000 1.1000 -1.2500 116.898 35.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4182 68.0840 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.8481 5.0000 6.2500 137.6900 13.8370 152.2870 143.4770 150.000
+ 17 1.1000 0.0000 1.1000 -1.2000 116.279 24.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6948 68.2685 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8481 5.0000 6.2000 137.5820 13.5930 150.0000 143.4310 150.000
+ 18 1.1000 0.0000 1.1000 -1.1500 116.862 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9722 68.4538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8481 5.0000 6.1500 140.6290 45.4590 149.1000 143.5230 150.000
+ 19 1.1000 0.0000 1.1000 -1.1000 116.377 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2503 68.6400 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8481 5.0000 6.1000 138.4270 16.1400 146.6920 143.2600 150.000
+ 20 1.1000 0.0000 1.1000 -1.0500 116.073 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5292 68.8271 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8481 5.0000 6.0500 137.5650 14.0340 149.7810 143.3460 150.000
+ 21 1.1000 0.0000 1.1000 -1.0000 116.306 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.8088 69.0152 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8481 5.0000 6.0000 137.4800 13.4870 153.3790 143.4370 150.000
+ 22 1.1000 0.0000 1.1000 -0.9500 116.253 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0894 69.2042 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8481 5.0000 5.9500 140.5330 45.7530 154.7070 143.7870 150.000
+ 23 1.1000 0.0000 1.1000 -0.9000 116.641 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3707 69.3942 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8481 5.0000 5.9000 138.6490 16.1650 155.0160 143.5280 150.000
+ 24 1.1000 0.0000 1.1000 -0.8500 116.472 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6528 69.5851 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.8481 5.0000 5.8500 137.7040 13.9780 154.0610 143.4970 150.000
+ 25 1.1000 0.0000 1.1000 -0.8000 116.818 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9359 69.7771 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8481 5.0000 5.8000 137.5870 13.4000 152.2330 143.4540 150.000
+ 26 1.1000 0.0000 1.1000 -0.7500 116.202 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2198 69.9701 -2.7386 0.5000 0.0000 0.0000 145.7972 -68.4055 1.8481 5.0000 5.7500 140.3740 43.6730 151.1170 143.7110 150.000
+ 27 1.1000 0.0000 1.1000 -0.7000 116.511 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5046 70.1642 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8481 5.0000 5.7000 138.7530 16.4430 148.1990 143.4360 150.000
+# Sum of Counts = 449
+# Center of Mass = -1.437862+/-0.097344
+# Full Width Half-Maximum = 0.692154+/-0.046739
+# 7:16:17 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0171.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0171.dat
new file mode 100644
index 0000000..7f0ebe6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0171.dat
@@ -0,0 +1,65 @@
+# scan = 171
+# date = 10/28/2011
+# time = 7:16:17 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 2.0
+# builtin_command = scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 1.3000 -6.5000 116.789 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0202 64.1370 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.1841 5.0000 11.5000 137.5840 14.0030 152.6030 143.3710 150.000
+ 2 1.3000 0.0000 1.3000 -6.4000 116.588 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.4404 64.4367 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.1841 5.0000 11.4000 137.5360 13.5490 154.9760 143.4660 150.000
+ 3 1.3000 0.0000 1.3000 -6.3000 116.610 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.8614 64.7378 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.1841 5.0000 11.3000 140.8960 44.2620 155.0320 143.5810 150.000
+ 4 1.3000 0.0000 1.3000 -6.2000 116.965 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.2833 65.0403 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5029 2.1841 5.0000 11.2000 138.3720 15.6400 154.4150 143.4120 150.000
+ 5 1.3000 0.0000 1.3000 -6.1000 116.442 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.7060 65.3443 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.1841 5.0000 11.1000 137.6840 13.7980 152.7770 143.3320 150.000
+ 6 1.3000 0.0000 1.3000 -6.0000 116.474 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.1295 65.6496 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.1841 5.0000 11.0000 137.5770 13.4270 150.6310 143.2020 150.000
+ 7 1.3000 0.0000 1.3000 -5.9000 116.788 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.5540 65.9566 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.1841 5.0000 10.9000 140.6400 45.5690 149.6080 143.2680 150.000
+ 8 1.3000 0.0000 1.3000 -5.8000 116.973 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9794 66.2650 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.1841 5.0000 10.8000 138.4560 16.0170 146.7240 143.0350 150.000
+ 9 1.3000 0.0000 1.3000 -5.7000 116.977 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.4057 66.5750 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.1841 5.0000 10.7000 137.5740 14.0730 148.7520 142.9840 150.000
+ 10 1.3000 0.0000 1.3000 -5.6000 117.110 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8331 66.8867 -2.7386 0.5000 0.0000 0.0000 155.5427 -48.9142 2.1841 5.0000 10.6000 137.4960 13.6300 152.7780 143.1000 150.000
+ 11 1.3000 0.0000 1.3000 -5.5000 116.773 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2614 67.2001 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1620 2.1841 5.0000 10.5000 140.5440 45.7340 154.4820 143.2360 150.000
+ 12 1.3000 0.0000 1.3000 -5.4000 117.050 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6909 67.5151 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.1841 5.0000 10.4000 138.5690 15.9480 155.0770 143.1950 150.000
+ 13 1.3000 0.0000 1.3000 -5.3000 116.186 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1214 67.8320 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.1841 5.0000 10.3000 137.6960 13.8240 154.0110 143.1520 150.000
+ 14 1.3000 0.0000 1.3000 -5.2000 116.154 23.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5530 68.1506 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.1841 5.0000 10.2000 137.5930 13.3950 152.2750 143.1040 150.000
+ 15 1.3000 0.0000 1.3000 -5.1000 116.460 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.9858 68.4712 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.1841 5.0000 10.1000 140.8030 44.9290 151.3630 143.2420 150.000
+ 16 1.3000 0.0000 1.3000 -5.0000 116.516 24.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4198 68.7936 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.1841 5.0000 10.0000 138.3810 15.7210 148.9350 143.1200 150.000
+ 17 1.3000 0.0000 1.3000 -4.9000 116.712 29.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8549 69.1180 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.1841 5.0000 9.9000 137.6170 14.0220 146.7910 143.2260 150.000
+ 18 1.3000 0.0000 1.3000 -4.8000 116.568 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2914 69.4444 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.1841 5.0000 9.8000 137.4960 13.8010 148.1320 143.2390 150.000
+ 19 1.3000 0.0000 1.3000 -4.7000 116.707 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.7291 69.7730 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.1841 5.0000 9.7000 140.8930 40.6150 150.1020 143.3710 150.000
+ 20 1.3000 0.0000 1.3000 -4.6000 116.165 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.1682 70.1036 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.1841 5.0000 9.6000 138.1540 15.4730 154.4180 143.2800 150.000
+ 21 1.3000 0.0000 1.3000 -4.5000 116.466 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.6086 70.4364 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.1841 5.0000 9.5000 137.6480 13.7600 155.2230 143.2640 150.000
+ 22 1.3000 0.0000 1.3000 -4.4000 116.152 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.0505 70.7716 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.1841 5.0000 9.4000 137.5740 14.1780 154.3490 143.5210 150.000
+ 23 1.3000 0.0000 1.3000 -4.3000 116.326 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4938 71.1090 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.1841 5.0000 9.3000 141.1470 34.9450 153.1220 143.5600 150.000
+ 24 1.3000 0.0000 1.3000 -4.2000 116.484 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9385 71.4488 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.1841 5.0000 9.2000 138.1090 15.2770 151.2320 143.3990 150.000
+ 25 1.3000 0.0000 1.3000 -4.1000 116.394 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3848 71.7911 -2.7386 0.5000 0.0000 0.0000 153.4593 -53.0813 2.1841 5.0000 9.1000 137.6270 13.9160 148.8620 143.2940 150.000
+ 26 1.3000 0.0000 1.3000 -4.0000 116.442 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8327 72.1359 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.1841 5.0000 9.0000 137.5340 19.3790 146.7800 143.4600 150.000
+ 27 1.3000 0.0000 1.3000 -3.9000 116.576 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2822 72.4833 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.1841 5.0000 8.9000 141.0680 30.3330 146.8230 143.3540 150.000
+ 28 1.3000 0.0000 1.3000 -3.8000 116.206 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7334 72.8334 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.1841 5.0000 8.8000 137.9450 15.3410 150.7520 143.2570 150.000
+ 29 1.3000 0.0000 1.3000 -3.7000 116.469 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1863 73.1862 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.1841 5.0000 8.7000 137.6020 13.9390 154.1790 143.3130 150.000
+ 30 1.3000 0.0000 1.3000 -3.6000 116.538 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6410 73.5420 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.1841 5.0000 8.6000 137.7070 25.0830 155.3010 143.7710 150.000
+ 31 1.3000 0.0000 1.3000 -3.5000 116.727 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0974 73.9006 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.1841 5.0000 8.5000 140.9530 25.5290 154.2950 143.5370 150.000
+# Sum of Counts = 292
+# Center of Mass = -4.951370+/-0.412114
+# Full Width Half-Maximum = 1.497438+/-0.158336
+# 8:18:08 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0172.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0172.dat
new file mode 100644
index 0000000..e7d194f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0172.dat
@@ -0,0 +1,65 @@
+# scan = 172
+# date = 10/28/2011
+# time = 8:18:08 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 2.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.5000 116.113 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 137.8630 14.8010 151.2830 143.5990 150.000
+ 2 1.5000 0.0000 1.5000 -8.4000 116.398 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1527 71.3308 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 2.5201 5.0000 13.4000 137.5980 13.8160 149.0390 143.3000 150.000
+ 3 1.5000 0.0000 1.5000 -8.3000 116.122 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5225 71.6287 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.5201 5.0000 13.3000 138.0050 30.3650 146.9400 143.1150 150.000
+ 4 1.5000 0.0000 1.5000 -8.2000 116.719 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 140.6540 22.5610 146.7430 142.9920 150.000
+ 5 1.5000 0.0000 1.5000 -8.0999 116.866 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2643 72.2290 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7296 2.5201 5.0000 13.0999 137.7840 15.1100 150.4320 143.0050 150.000
+ 6 1.5000 0.0000 1.5000 -8.0000 116.889 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 137.5990 13.9160 154.1360 143.0180 150.000
+ 7 1.5000 0.0000 1.5000 -7.9000 116.521 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0094 72.8353 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0849 2.5201 5.0000 12.9000 138.5030 33.8820 155.4330 143.3690 150.000
+ 8 1.5000 0.0000 1.5000 -7.8000 115.967 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 140.3590 20.0780 154.1710 143.1030 150.000
+ 9 1.5000 0.0000 1.5000 -7.7000 116.675 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7577 73.4480 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5201 5.0000 12.7000 137.8550 14.6130 153.3940 143.0440 150.000
+ 10 1.5000 0.0000 1.5000 -7.6000 116.259 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 137.6220 13.6280 151.5380 143.0110 150.000
+ 11 1.5000 0.0000 1.5000 -7.5000 116.132 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5096 74.0674 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5201 5.0000 12.5000 138.9750 36.8550 149.8160 143.1570 150.000
+ 12 1.5000 0.0000 1.5000 -7.4000 116.489 42.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 139.9610 18.6390 147.5890 142.8740 150.000
+ 13 1.5000 0.0000 1.5000 -7.3000 116.805 40.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2652 74.6938 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5201 5.0000 12.3000 137.7080 14.4890 146.8020 142.7820 150.000
+ 14 1.5000 0.0000 1.5000 -7.2000 116.579 42.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 137.4840 13.4770 150.6730 143.2740 150.000
+ 15 1.5000 0.0000 1.5000 -7.1000 116.332 43.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0246 75.3275 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5201 5.0000 12.1000 138.6400 35.5270 154.2130 143.7810 150.000
+ 16 1.5000 0.0000 1.5000 -7.0000 116.551 64.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 140.1520 19.2670 154.0850 143.4940 150.000
+ 17 1.5000 0.0000 1.5000 -6.9000 116.567 39.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7882 75.9689 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5201 5.0000 11.9000 137.8080 14.4920 155.0270 143.4590 150.000
+ 18 1.5000 0.0000 1.5000 -6.8000 116.476 46.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2074 2.5201 5.0000 11.8000 137.6180 13.5730 153.9530 143.5550 150.000
+ 19 1.5000 0.0000 1.5000 -6.7000 116.162 24.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5560 76.6182 -2.7386 0.5000 0.0000 0.0000 156.7918 -46.4158 2.5201 5.0000 11.7000 139.0930 37.4100 152.5130 143.7190 150.000
+ 20 1.5000 0.0000 1.5000 -6.6000 116.508 22.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6862 -46.6273 2.5201 5.0000 11.6000 139.9400 18.5240 150.3210 143.3740 150.000
+ 21 1.5000 0.0000 1.5000 -6.5000 116.309 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3283 77.2760 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5201 5.0000 11.5000 137.7330 14.4610 147.8380 143.3580 150.000
+ 22 1.5000 0.0000 1.5000 -6.4000 116.608 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 137.5240 13.8800 146.6790 143.2780 150.000
+ 23 1.5000 0.0000 1.5000 -6.3000 116.724 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1053 77.9426 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5201 5.0000 11.3000 138.8580 37.2310 149.8930 143.4350 150.000
+ 24 1.5000 0.0000 1.5000 -6.2000 116.120 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 139.8610 18.5860 152.0190 143.3270 150.000
+ 25 1.5000 0.0000 1.5000 -6.1000 116.298 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8872 78.6184 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5201 5.0000 11.1000 137.7500 14.3860 154.7960 143.3280 150.000
+ 26 1.5000 0.0000 1.5000 -6.0000 116.329 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 137.6260 13.7860 155.2260 143.4350 150.000
+ 27 1.5000 0.0000 1.5000 -5.9000 116.238 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6744 79.3040 -2.7386 0.5000 0.0000 0.0000 155.9034 -48.1930 2.5201 5.0000 10.9000 139.0680 37.1510 154.6360 143.8810 150.000
+ 28 1.5000 0.0000 1.5000 -5.8000 116.220 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 2.5201 5.0000 10.8000 139.9180 18.3780 152.6270 143.6780 150.000
+ 29 1.5000 0.0000 1.5000 -5.7000 116.540 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4670 79.9997 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5201 5.0000 10.7000 137.7750 14.4970 150.5680 143.7210 150.000
+ 30 1.5000 0.0000 1.5000 -5.6000 116.163 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 137.5670 13.7880 148.0900 143.4720 150.000
+ 31 1.5000 0.0000 1.5000 -5.5000 116.510 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2653 80.7062 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5201 5.0000 10.5000 139.5840 40.7910 146.8950 143.4830 150.000
+# Sum of Counts = 611
+# Center of Mass = -7.001963+/-0.401468
+# Full Width Half-Maximum = 1.302185+/-0.127709
+# 9:19:41 AM 10/28/2011 scan completed.
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0173.dat b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0173.dat
new file mode 100644
index 0000000..6f7f484
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/CG4C_exp0025_scan0173.dat
@@ -0,0 +1,59 @@
+# scan = 173
+# date = 10/28/2011
+# time = 9:19:41 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 2.0
+# builtin_command = scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.5000 -6.5000 117.166 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8781 43.0284 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6163 5.0000 11.5000 138.3140 15.5730 154.8450 143.3750 150.000
+ 2 1.0000 0.0000 -0.5000 -6.4000 116.553 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4315 43.3151 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6163 5.0000 11.4000 137.6740 13.9070 153.6790 143.2940 150.000
+ 3 1.0000 0.0000 -0.5000 -6.3000 116.329 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9844 43.6016 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6163 5.0000 11.3000 137.5920 13.6100 151.7530 143.2540 150.000
+ 4 1.0000 0.0000 -0.5000 -6.2000 116.978 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5368 43.8880 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6163 5.0000 11.2000 141.0650 40.6060 150.6420 143.2450 150.000
+ 5 1.0000 0.0000 -0.5000 -6.1000 116.728 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0888 44.1742 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6163 5.0000 11.1000 138.1750 15.5060 148.0230 143.1920 150.000
+ 6 1.0000 0.0000 -0.5000 -6.0000 116.481 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6405 44.4604 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6163 5.0000 11.0000 137.5870 14.1170 146.6070 143.1030 150.000
+ 7 1.0000 0.0000 -0.5000 -5.9000 115.784 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1919 44.7465 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6163 5.0000 10.9000 137.4830 17.6460 149.6980 143.3460 150.000
+ 8 1.0000 0.0000 -0.5000 -5.8000 116.668 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7430 45.0326 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6163 5.0000 10.8000 141.0590 32.8000 150.7700 143.2460 150.000
+ 9 1.0000 0.0000 -0.5000 -5.7000 116.628 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2939 45.3186 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6163 5.0000 10.7000 138.0240 15.2800 154.8440 143.2100 150.000
+ 10 1.0000 0.0000 -0.5000 -5.6000 116.232 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8447 45.6047 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6163 5.0000 10.6000 137.6560 13.8160 155.0310 143.1640 150.000
+ 11 1.0000 0.0000 -0.5000 -5.5000 116.072 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3954 45.8908 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6163 5.0000 10.5000 137.5880 15.9120 153.8110 143.3510 150.000
+ 12 1.0000 0.0000 -0.5000 -5.4000 116.352 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9460 46.1771 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.6164 5.0000 10.4000 141.1840 33.7810 152.5390 143.3500 150.000
+ 13 1.0000 0.0000 -0.5000 -5.3000 116.578 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4967 46.4634 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6164 5.0000 10.3000 138.0840 15.2510 150.4740 143.2280 150.000
+ 14 1.0000 0.0000 -0.5000 -5.2000 116.320 29.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.0474 46.7498 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6163 5.0000 10.2000 137.6160 13.9180 147.9730 143.1630 150.000
+ 15 1.0000 0.0000 -0.5000 -5.1000 115.859 46.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5982 47.0365 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6163 5.0000 10.1000 137.5140 19.2010 146.6600 143.2310 150.000
+ 16 1.0000 0.0000 -0.5000 -5.0000 116.310 49.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1492 47.3233 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6164 5.0000 10.0000 141.1190 32.4170 147.2300 143.1680 150.000
+ 17 1.0000 0.0000 -0.5000 -4.8999 116.011 44.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7004 47.6104 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.6163 5.0000 9.9000 137.9930 15.3330 152.2140 143.0650 150.000
+ 18 1.0000 0.0000 -0.5000 -4.8000 116.027 53.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2518 47.8976 -2.7386 0.5000 0.0000 0.0000 154.4957 -51.0086 1.6163 5.0000 9.8000 137.6120 13.9080 154.8270 143.3140 150.000
+ 19 1.0000 0.0000 -0.5000 -4.7000 116.217 47.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8036 48.1852 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.6163 5.0000 9.7000 137.7130 24.7620 155.2630 143.5050 150.000
+ 20 1.0000 0.0000 -0.5000 -4.6000 116.599 51.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.3557 48.4731 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 1.6163 5.0000 9.6000 141.0300 26.2250 154.2310 143.3170 150.000
+ 21 1.0000 0.0000 -0.5000 -4.5000 116.407 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.9082 48.7614 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6163 5.0000 9.5000 137.9860 15.0140 152.7300 143.2960 150.000
+ 22 1.0000 0.0000 -0.5000 -4.4000 116.317 30.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4612 49.0500 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6163 5.0000 9.4000 137.6430 13.8310 150.5900 143.3110 150.000
+ 23 1.0000 0.0000 -0.5000 -4.3000 116.284 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0148 49.3390 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6163 5.0000 9.3000 137.7980 27.0590 148.3050 143.2990 150.000
+ 24 1.0000 0.0000 -0.5000 -4.2000 116.604 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5689 49.6284 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6163 5.0000 9.2000 140.9320 25.1140 147.2170 143.2840 150.000
+ 25 1.0000 0.0000 -0.5000 -4.1000 1.168 0.000 1799.000 0.020 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1236 49.9184 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6163 5.0000 9.1000 137.8550 15.1710 147.6040 143.0760 150.000
+# Sum of Counts = 505
+# Center of Mass = -4.975041+/-0.313884
+# Full Width Half-Maximum = 1.004017+/-0.120537
+# 10:07:54 AM 10/28/2011 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html b/test_data/Bi_CTAX/exp25/Datafiles/index.html
new file mode 100644
index 0000000..08b0797
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=D;O=A b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=D;O=A
new file mode 100644
index 0000000..13e4ba0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=D;O=A
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=D;O=D b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=D;O=D
new file mode 100644
index 0000000..2d5cec3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=D;O=D
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=M;O=A b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=M;O=A
new file mode 100644
index 0000000..e2d95d1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=M;O=A
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=M;O=D b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=M;O=D
new file mode 100644
index 0000000..2d5cec3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=M;O=D
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=N;O=A b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=N;O=A
new file mode 100644
index 0000000..08b0797
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=N;O=A
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=N;O=D b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=N;O=D
new file mode 100644
index 0000000..2d5cec3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=N;O=D
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=S;O=A b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=S;O=A
new file mode 100644
index 0000000..04176c3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=S;O=A
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=S;O=D b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=S;O=D
new file mode 100644
index 0000000..bbae482
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Datafiles/index.html@C=S;O=D
@@ -0,0 +1,187 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Datafiles
+
+
+Index of /user_data/cg4c/exp25/Datafiles
+
+
diff --git a/test_data/Bi_CTAX/exp25/LogFile.txt b/test_data/Bi_CTAX/exp25/LogFile.txt
new file mode 100644
index 0000000..68b74c5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/LogFile.txt
@@ -0,0 +1,14157 @@
+Beginning experiment # 25
+
+Proposal ID: "5137"
+
+Experiment title: "Measurement of the phonon dispersion of Bismuch at high temperatures"
+
+Users: "Michael Manley and Olivier Delaire"
+
+Local Contact: "T. Hong"
+
+Setting sample name to "C32D24CuN2O14".
+
+Setting sample type to single crystal.
+
+Setting sample mosaic to 30.000 min.
+
+Setting next scan number to 1
+
+Initializing preset/counting configuration:
+
+Preset counting mode is set to normal.
+
+Setting the default preset channel to "mcu".
+
+Setting the default preset value to 0.000.
+
+Setting the default counting channel to "detector".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=1.000 k1=1.000 l1=0.000 h2=0.000 k2=0.000 l2=1.000
+the single peak position:
+h=1.0000 k=1.0000 l=0.0000 a1=69.7836 s2=34.8918 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=5.0000 b=5.0000 c=5.0000 alpha=90.0000 beta=90.0000 gamma=90.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 1.0000 1.0000 0.0000 69.7836 34.8918 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 1.0000 1.0000 0.0000 5.0000 5.0000 142.9286 69.7836 34.8918 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.5000 0.5000 0.2222 69.7836 34.8918 0.0000 0.0000 5.0000 5.0000
+
+
+Setting instrument plus-minus configuration to - + -
+
+
+Initial Spectrometer configuration:
+
+The monochromator is PG002 with a d-spacing of 3.355 Angstroms.
+
+The monochromator is Pg002 with a d-spacing of 3.355 Angstroms.
+
+Collimation: 48-40-40-120
+
+The spectrometer is configured to have a fixed final energy of 5.0000 meV.
+
+
+The username/password request for web access was cancelled or the dialog box timed out.
+Web-based control will not function until these are set. This can be accomplished using the 'webcontrol' command.
+
+
+10:28:47 AM 10/24/2011 Executing "drive a2 0 a1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 0.00000
+a1 90.00000
+
+Drive completed.
+
+
+10:30:02 AM 10/24/2011 Executing "drive s2 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 0.00000
+
+Drive completed.
+
+
+10:31:13 AM 10/24/2011 Executing "drive s1 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.50000
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s1 -44.85068
+
+
+Abort issued!!
+
+10:31:26 AM 10/24/2011 Executing "drive s1 0 s2 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+s2 0.50000
+
+Drive completed.
+
+
+10:31:53 AM 10/24/2011 Executing "drive s2 0.7"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 0.70000
+
+Drive completed.
+
+
+10:32:38 AM 10/24/2011 Executing "zero s2 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ s2 s2 0.0000 0.0000
+
+
+
+10:32:40 AM 10/24/2011 Executing "method s2 set_motor_position d 0+@(s2.zero)"
+ Derived from "spos s2 0"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+10:32:45 AM 10/24/2011 Executing "drive s2 40"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 40.00000
+
+Drive completed.
+
+
+10:34:00 AM 10/24/2011 Executing "drive s2 60"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 60.00000
+
+Drive completed.
+
+
+10:34:25 AM 10/24/2011 Executing "drive ei 5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+10:34:26 AM 10/24/2011 Executing "preset time 10"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 10.000000
+
+
+10:34:26 AM 10/24/2011 Executing "scantitle "Ni powder (1/2,1/2,1/2)""
+
+Setting the scantitle to:
+Ni powder (1/2,1/2,1/2)
+
+
+10:34:26 AM 10/24/2011 Executing "scan s2 56 63 0.2"
+
+
+# scan = 1
+# date = 10/24/2011
+# time = 10:34:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_100518AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 376.000 23079.000 0.181 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 0.7246 0.7246 0.5449 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 56.2000 10.000 412.000 22656.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 0.7263 0.7263 0.5485 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 56.4000 10.000 359.000 22868.000 0.179 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 0.7280 0.7280 0.5521 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 56.6000 10.000 405.000 22821.000 0.179 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 0.7297 0.7297 0.5557 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 56.8000 10.000 369.000 22464.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 0.7314 0.7314 0.5593 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 57.0000 10.000 388.000 22642.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 0.7331 0.7331 0.5629 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 57.2000 10.000 389.000 22583.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 0.7347 0.7347 0.5665 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 57.4000 10.000 382.000 22422.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 0.7364 0.7364 0.5701 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 57.6000 10.000 390.000 22619.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 0.7380 0.7380 0.5738 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 57.8000 10.000 372.000 22635.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 0.7396 0.7396 0.5774 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 58.0000 10.000 403.000 22551.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 0.7413 0.7413 0.5811 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 58.2000 10.000 398.000 22446.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 0.7429 0.7429 0.5847 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 58.4000 10.000 383.000 22358.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 0.7445 0.7445 0.5884 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 58.6000 10.000 396.000 22248.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 0.7461 0.7461 0.5921 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 58.8000 10.000 443.000 22482.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 0.7477 0.7477 0.5958 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 59.0000 10.000 551.000 22341.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 0.7492 0.7492 0.5995 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 59.2000 10.000 916.000 22333.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 0.7508 0.7508 0.6032 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 59.4000 10.000 1202.000 22207.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 0.7524 0.7524 0.6069 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 59.6000 10.000 1554.000 22449.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 0.7539 0.7539 0.6106 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 59.8000 10.000 1489.000 22431.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5487 0.7554 0.7554 0.6143 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 60.0000 10.000 1328.000 22316.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5534 0.7570 0.7570 0.6181 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 22 60.2000 10.000 1101.000 22147.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5581 0.7585 0.7585 0.6218 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 23 60.4000 10.000 825.000 22463.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5628 0.7600 0.7600 0.6256 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 24 60.6000 10.000 698.000 22156.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5674 0.7615 0.7615 0.6293 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 25 60.8000 10.000 417.000 22418.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5721 0.7630 0.7630 0.6331 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 26 61.0000 10.000 375.000 22277.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5768 0.7645 0.7645 0.6368 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 27 61.2000 10.000 392.000 22465.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5815 0.7660 0.7660 0.6406 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 28 61.4000 10.000 413.000 22647.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5861 0.7674 0.7674 0.6444 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 29 61.6000 10.000 369.000 22484.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5908 0.7689 0.7689 0.6482 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 30 61.8000 10.000 366.000 22474.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5954 0.7703 0.7703 0.6520 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 31 62.0000 10.000 388.000 22251.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6001 0.7718 0.7718 0.6558 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 32 62.2000 10.000 366.000 22225.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6047 0.7732 0.7732 0.6596 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 33 62.4000 10.000 382.000 22398.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6094 0.7746 0.7746 0.6634 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 34 62.6000 10.000 397.000 22237.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6140 0.7760 0.7760 0.6673 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 35 62.8000 10.000 378.000 22460.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6186 0.7774 0.7774 0.6711 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 36 63.0000 10.000 384.000 22244.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6233 0.7788 0.7788 0.6749 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 20156
+# Center of Mass = 59.585721+/-0.593674
+# Full Width Half-Maximum = 3.484004+/-0.169856
+# 10:41:17 AM 10/24/2011 scan completed.
+
+10:41:17 AM 10/24/2011 Executing "scantitle "Ni powder (1,0,0)""
+
+Setting the scantitle to:
+Ni powder (1,0,0)
+
+
+10:41:17 AM 10/24/2011 Executing "scan s2 67 73 0.2"
+
+
+# scan = 2
+# date = 10/24/2011
+# time = 10:41:17 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan s2 67 73 0.2
+# builtin_command = scan s2 67 73 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1,0,0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_100518AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 67.0000 10.000 369.000 22635.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7147 0.8046 0.8046 0.7531 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 67.2000 10.000 374.000 22253.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7193 0.8058 0.8058 0.7571 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 67.4000 10.000 405.000 22290.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7238 0.8070 0.8070 0.7611 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 67.6000 10.000 338.000 22139.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7283 0.8081 0.8081 0.7651 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 67.8000 10.000 377.000 22387.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7328 0.8093 0.8093 0.7691 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 68.0000 10.000 367.000 22349.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7373 0.8104 0.8104 0.7731 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 68.2000 10.000 404.000 22244.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7418 0.8116 0.8116 0.7771 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 68.4000 10.000 422.000 22431.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7463 0.8127 0.8127 0.7811 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 68.6000 10.000 387.000 22569.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7507 0.8138 0.8138 0.7851 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 68.8000 10.000 422.000 22401.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7552 0.8149 0.8149 0.7891 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 69.0000 10.000 416.000 22409.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7597 0.8160 0.8160 0.7931 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 69.2000 10.000 472.000 22382.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7642 0.8171 0.8171 0.7972 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 69.4000 10.000 551.000 22396.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7686 0.8182 0.8182 0.8012 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 69.6000 10.000 633.000 22443.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7731 0.8193 0.8193 0.8053 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 69.8000 10.000 801.000 22384.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7775 0.8203 0.8203 0.8093 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 70.0000 10.000 973.000 22329.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7820 0.8214 0.8214 0.8134 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 70.2000 10.000 1034.000 22131.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7864 0.8224 0.8224 0.8174 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 70.4000 10.000 957.000 22173.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7908 0.8234 0.8234 0.8215 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 70.6000 10.000 778.000 22297.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7953 0.8245 0.8245 0.8255 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 70.8000 10.000 734.000 22610.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7997 0.8255 0.8255 0.8296 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 71.0000 10.000 563.000 22581.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8041 0.8265 0.8265 0.8337 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 22 71.2000 10.000 441.000 22235.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8085 0.8274 0.8274 0.8378 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 23 71.4000 10.000 406.000 22484.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8129 0.8284 0.8284 0.8419 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 24 71.6000 10.000 386.000 22302.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8173 0.8294 0.8294 0.8460 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 25 71.8000 10.000 414.000 22163.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8217 0.8304 0.8304 0.8500 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 26 72.0000 10.000 355.000 22367.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8261 0.8313 0.8313 0.8542 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 27 72.2000 10.000 352.000 22015.000 0.172 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8305 0.8322 0.8322 0.8583 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 28 72.4000 10.000 403.000 22365.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8349 0.8332 0.8332 0.8624 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 29 72.6000 10.000 371.000 22304.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8392 0.8341 0.8341 0.8665 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 30 72.8000 10.000 410.000 22090.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8436 0.8350 0.8350 0.8706 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 31 73.0000 10.000 409.000 22659.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 15724
+# Center of Mass = 70.056487+/-0.790200
+# Full Width Half-Maximum = 3.153882+/-0.253397
+# 10:47:09 AM 10/24/2011 scan completed.
+
+10:48:13 AM 10/24/2011 Executing "lattice 4.550000 4.550000 11.850000 90.000000 90.000000 120.000000"
+
+
+Changing lattice constants to:
+a=4.550000 b=4.550000 c=11.85000
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+10:51:02 AM 10/24/2011 Executing "drive s2 59.78"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 59.78000
+
+Drive completed.
+
+
+10:51:44 AM 10/24/2011 Executing "count preset time 10"
+
+10:51:44 AM 10/24/2011 Executing count command with preset channel "time" and preset value 10.00
+
+ time detector monitor mcu
+ 10.000 1473.000 22415.000 0.175
+
+10:51:54 AM 10/24/2011 Count command completed.
+
+
+10:52:32 AM 10/24/2011 Executing "zero s2 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ s2 s2 0.0000 0.0000
+
+
+
+10:52:44 AM 10/24/2011 Executing "method s2 set_motor_position d 59.61+@(s2.zero)"
+ Derived from "spos s2 59.61"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+10:54:17 AM 10/24/2011 Executing "ef 5"
+
+Setting the final energy to 5.000meV and the configuration to "Fixed Ef".
+
+
+10:54:20 AM 10/24/2011 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+10:56:39 AM 10/24/2011 Executing "scantitle "analyzer calibration using polyethelyne sample, open-80 mode""
+
+Setting the scantitle to:
+analyzer calibration using polyethelyne sample, open-80 mode
+
+
+10:56:52 AM 10/24/2011 Executing "scan a1 @(a1)+-2 @(a1)+2 0.200000"
+ Derived from "scanrel a1 -2 2 0.2"
+
+
+# scan = 3
+# date = 10/24/2011
+# time = 10:56:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel a1 -2 2 0.2
+# builtin_command = scan a1 @(a1)+-2 @(a1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration using polyethelyne sample, open-80 mode
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = a1
+# def_y = detector
+# col_headers =
+# Pt. a1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 140.9286 10.000 24.000 22398.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 141.1286 10.000 24.000 22734.000 0.178 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 141.3286 10.000 49.000 22389.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 141.5286 10.000 58.000 22469.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 141.7286 10.000 102.000 22247.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 141.9286 10.000 181.000 22420.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 142.1286 10.000 256.000 22338.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 142.3286 10.000 344.000 22488.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 142.5286 10.000 459.000 22318.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 142.7286 10.000 476.000 22753.000 0.178 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 142.9286 10.000 506.000 22354.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 143.1286 10.000 480.000 22209.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 143.3286 10.000 442.000 22433.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 143.5286 10.000 351.000 22388.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 143.7286 10.000 286.000 22466.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 143.9286 10.000 222.000 22197.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 144.1286 10.000 127.000 22523.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 144.3286 10.000 78.000 22319.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 144.5286 10.000 70.000 22483.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 144.7286 10.000 38.000 22532.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 144.9286 10.000 30.000 22077.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 4603
+# Center of Mass = 142.970312+/-2.980185
+# Full Width Half-Maximum = 1.471671+/-1.158943
+# 11:00:48 AM 10/24/2011 scan completed.
+
+11:00:48 AM 10/24/2011 Executing "drive a1 @(a1)-2"
+ Derived from "scanrel a1 -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a1 142.92864
+
+Drive completed.
+
+
+11:04:36 AM 10/24/2011 Executing "scan a2 @(a2)+-5 @(a2)+5 0.250000"
+ Derived from "scanrel a2 -5 5 0.25"
+
+
+# scan = 4
+# date = 10/24/2011
+# time = 11:04:36 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel a2 -5 5 0.25
+# builtin_command = scan a2 @(a2)+-5 @(a2)+5 0.250000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration using polyethelyne sample, open-80 mode
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = a2
+# def_y = detector
+# col_headers =
+# Pt. a2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -79.1428 10.000 4.000 22394.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5045 0.2376 0.6493 1.5272 5.0000 4.4771 0.5229 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 -78.8928 10.000 2.000 22382.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5062 0.2383 0.6510 1.5235 5.0000 4.5009 0.4991 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 -78.6428 10.000 8.000 22334.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5080 0.2389 0.6527 1.5198 5.0000 4.5249 0.4751 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 -78.3928 10.000 11.000 22446.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5099 0.2395 0.6545 1.5160 5.0000 4.5491 0.4509 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 -78.1428 10.000 17.000 22518.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5117 0.2402 0.6562 1.5122 5.0000 4.5735 0.4265 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 -77.8928 10.000 26.000 22251.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5136 0.2408 0.6580 1.5084 5.0000 4.5982 0.4018 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 -77.6428 10.000 38.000 22378.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5154 0.2415 0.6598 1.5045 5.0000 4.6232 0.3768 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 -77.3928 10.000 70.000 22426.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5173 0.2421 0.6616 1.5007 5.0000 4.6484 0.3516 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 -77.1428 10.000 101.000 22434.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5193 0.2428 0.6634 1.4967 5.0000 4.6738 0.3262 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 -76.8928 10.000 149.000 22530.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5212 0.2435 0.6652 1.4928 5.0000 4.6995 0.3005 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 -76.6428 10.000 219.000 22453.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5232 0.2441 0.6670 1.4888 5.0000 4.7255 0.2745 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 -76.3928 10.000 258.000 22430.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5252 0.2448 0.6689 1.4849 5.0000 4.7517 0.2483 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 -76.1428 10.000 326.000 22331.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5272 0.2455 0.6707 1.4808 5.0000 4.7782 0.2218 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 -75.8928 10.000 359.000 22243.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5292 0.2462 0.6726 1.4768 5.0000 4.8049 0.1951 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 -75.6428 10.000 412.000 22179.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5313 0.2469 0.6745 1.4727 5.0000 4.8320 0.1680 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 -75.3928 10.000 441.000 22287.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5334 0.2476 0.6764 1.4686 5.0000 4.8593 0.1407 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 -75.1428 10.000 483.000 22200.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5355 0.2483 0.6783 1.4645 5.0000 4.8868 0.1132 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 -74.8928 10.000 471.000 22192.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5376 0.2490 0.6802 1.4603 5.0000 4.9147 0.0853 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 -74.6428 10.000 505.000 22430.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5398 0.2497 0.6822 1.4561 5.0000 4.9428 0.0572 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 -74.3928 10.000 482.000 22715.000 0.178 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5420 0.2504 0.6842 1.4519 5.0000 4.9713 0.0287 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 -74.1428 10.000 492.000 22632.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5442 0.2511 0.6861 1.4476 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 22 -73.8928 10.000 509.000 22423.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5465 0.2519 0.6881 1.4433 5.0000 5.0290 -0.0290 301.5690 1.4000 0.0000 0.0000 300.000
+ 23 -73.6428 10.000 505.000 22389.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5487 0.2526 0.6901 1.4390 5.0000 5.0584 -0.0584 301.5690 1.4000 0.0000 0.0000 300.000
+ 24 -73.3928 10.000 518.000 22429.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5510 0.2533 0.6921 1.4346 5.0000 5.0880 -0.0880 301.5690 1.4000 0.0000 0.0000 300.000
+ 25 -73.1428 10.000 501.000 22181.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5533 0.2541 0.6942 1.4302 5.0000 5.1179 -0.1179 301.5690 1.4000 0.0000 0.0000 300.000
+ 26 -72.8928 10.000 442.000 22372.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5557 0.2548 0.6962 1.4258 5.0000 5.1482 -0.1482 301.5690 1.4000 0.0000 0.0000 300.000
+ 27 -72.6428 10.000 403.000 22118.000 0.173 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5581 0.2556 0.6983 1.4213 5.0000 5.1788 -0.1788 301.5690 1.4000 0.0000 0.0000 300.000
+ 28 -72.3928 10.000 329.000 22605.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5605 0.2564 0.7004 1.4168 5.0000 5.2097 -0.2097 301.5690 1.4000 0.0000 0.0000 300.000
+ 29 -72.1428 10.000 305.000 22475.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5629 0.2571 0.7025 1.4123 5.0000 5.2409 -0.2409 301.5690 1.4000 0.0000 0.0000 300.000
+ 30 -71.8928 10.000 244.000 22478.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5654 0.2579 0.7046 1.4077 5.0000 5.2725 -0.2725 301.5690 1.4000 0.0000 0.0000 300.000
+ 31 -71.6428 10.000 187.000 22569.000 0.177 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5679 0.2587 0.7067 1.4031 5.0000 5.3043 -0.3043 301.5690 1.4000 0.0000 0.0000 300.000
+ 32 -71.3928 10.000 146.000 22283.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5704 0.2595 0.7088 1.3985 5.0000 5.3366 -0.3366 301.5690 1.4000 0.0000 0.0000 300.000
+ 33 -71.1428 10.000 83.000 22228.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5730 0.2602 0.7110 1.3938 5.0000 5.3692 -0.3692 301.5690 1.4000 0.0000 0.0000 300.000
+ 34 -70.8928 10.000 68.000 22275.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5756 0.2610 0.7132 1.3891 5.0000 5.4021 -0.4021 301.5690 1.4000 0.0000 0.0000 300.000
+ 35 -70.6428 10.000 42.000 22413.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5782 0.2618 0.7154 1.3844 5.0000 5.4354 -0.4354 301.5690 1.4000 0.0000 0.0000 300.000
+ 36 -70.3928 10.000 19.000 22326.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5808 0.2627 0.7176 1.3796 5.0000 5.4690 -0.4690 301.5690 1.4000 0.0000 0.0000 300.000
+ 37 -70.1428 10.000 11.000 22521.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5835 0.2635 0.7198 1.3748 5.0000 5.5031 -0.5031 301.5690 1.4000 0.0000 0.0000 300.000
+ 38 -69.8928 10.000 7.000 22285.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5862 0.2643 0.7221 1.3700 5.0000 5.5374 -0.5374 301.5690 1.4000 0.0000 0.0000 300.000
+ 39 -69.6428 10.000 6.000 22278.000 0.174 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5890 0.2651 0.7243 1.3651 5.0000 5.5722 -0.5722 301.5690 1.4000 0.0000 0.0000 300.000
+ 40 -69.3928 10.000 6.000 22375.000 0.175 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5918 0.2660 0.7266 1.3602 5.0000 5.6074 -0.6074 301.5690 1.4000 0.0000 0.0000 300.000
+ 41 -69.1428 10.000 4.000 22498.000 0.176 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 1.5946 0.2668 0.7289 1.3552 5.0000 5.6429 -0.6429 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 9209
+# Center of Mass = -74.172146+/-1.093199
+# Full Width Half-Maximum = 3.172024+/-0.355746
+# 11:12:27 AM 10/24/2011 scan completed.
+
+11:12:27 AM 10/24/2011 Executing "drive a2 @(a2)-5"
+ Derived from "scanrel a2 -5 5 0.25"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -74.14280
+
+Drive completed.
+
+
+11:14:55 AM 10/24/2011 Executing "preset time 15"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 15.000000
+
+
+11:15:13 AM 10/24/2011 Executing "scan ei 4.2 5.8 0.05"
+
+
+# scan = 5
+# date = 10/24/2011
+# time = 11:15:13 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan ei 4.2 5.8 0.05
+# builtin_command = scan ei 4.2 5.8 0.05
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration using polyethelyne sample, open-80 mode
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 15.000000
+# def_x = ei
+# def_y = detector
+# col_headers =
+# Pt. ei time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q h k l ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 4.2000 15.000 39.000 35117.000 0.275 105.2242 138.8738 -82.2523 0.6500 0.0000 36.6200 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4840 0.2511 0.6861 1.2030 5.0000 -0.8000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 4.2500 15.000 29.000 35012.000 0.274 104.6188 139.1683 -81.6633 0.6500 0.0000 36.5160 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4877 0.2511 0.6861 1.2189 5.0000 -0.7500 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 4.3000 15.000 39.000 35464.000 0.278 103.9973 139.4564 -81.0872 0.6500 0.0000 36.4080 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4913 0.2511 0.6861 1.2348 5.0000 -0.7000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 4.3500 15.000 34.000 35012.000 0.274 103.4059 139.7383 -80.5234 0.6500 0.0000 36.3040 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4950 0.2511 0.6861 1.2505 5.0000 -0.6500 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 4.4000 15.000 39.000 35430.000 0.277 102.8211 140.0142 -79.9715 0.6500 0.0000 36.2000 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.4987 0.2511 0.6861 1.2662 5.0000 -0.6000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 4.4500 15.000 34.000 35418.000 0.277 102.2429 140.2844 -79.4312 0.6500 0.0000 36.0960 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5024 0.2511 0.6861 1.2818 5.0000 -0.5500 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 4.5000 15.000 38.000 36316.000 0.284 101.6712 140.5490 -78.9019 0.6500 0.0000 35.9920 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5062 0.2511 0.6861 1.2972 5.0000 -0.5000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 4.5500 15.000 46.000 36111.000 0.283 101.1058 140.8084 -78.3833 0.6500 0.0000 35.8880 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5099 0.2511 0.6861 1.3126 5.0000 -0.4500 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 4.6000 15.000 45.000 36330.000 0.284 100.5466 141.0625 -77.8751 0.6500 0.0000 35.7840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5137 0.2511 0.6861 1.3280 5.0000 -0.4000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 4.6500 15.000 52.000 36650.000 0.287 100.0148 141.3116 -77.3768 0.6500 0.0000 35.6840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5175 0.2511 0.6861 1.3432 5.0000 -0.3500 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 4.7000 15.000 51.000 36389.000 0.285 99.4886 141.5559 -76.8882 0.6500 0.0000 35.5840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5212 0.2511 0.6861 1.3583 5.0000 -0.3000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 4.7500 15.000 72.000 36572.000 0.286 98.9472 141.7955 -76.4090 0.6500 0.0000 35.4800 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5250 0.2511 0.6861 1.3734 5.0000 -0.2500 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 4.8000 15.000 138.000 36993.000 0.290 98.4321 142.0306 -75.9388 0.6500 0.0000 35.3800 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5289 0.2511 0.6861 1.3884 5.0000 -0.2000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 4.8500 15.000 359.000 36327.000 0.284 97.9224 142.2614 -75.4773 0.6500 0.0000 35.2800 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5327 0.2511 0.6861 1.4033 5.0000 -0.1500 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 4.9000 15.000 671.000 35461.000 0.278 97.4379 142.4878 -75.0243 0.6500 0.0000 35.1840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5365 0.2511 0.6861 1.4181 5.0000 -0.1000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 4.9500 15.000 813.000 34311.000 0.269 96.9384 142.7102 -74.5796 0.6500 0.0000 35.0840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5404 0.2511 0.6861 1.4329 5.0000 -0.0500 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 5.0000 15.000 713.000 33574.000 0.263 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5442 0.2511 0.6861 1.4476 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 5.0500 15.000 700.000 32909.000 0.258 95.9741 143.1431 -73.7137 0.6500 0.0000 34.8880 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5481 0.2511 0.6861 1.4622 5.0000 0.0500 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 5.1000 15.000 611.000 32395.000 0.254 95.5087 143.3539 -73.2922 0.6500 0.0000 34.7920 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5520 0.2511 0.6861 1.4767 5.0000 0.1000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 5.1500 15.000 476.000 32898.000 0.258 95.0287 143.5610 -72.8779 0.6500 0.0000 34.6920 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5558 0.2511 0.6861 1.4912 5.0000 0.1500 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 5.2000 15.000 342.000 33418.000 0.262 94.5724 143.7646 -72.4708 0.6500 0.0000 34.5960 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5597 0.2511 0.6861 1.5056 5.0000 0.2000 301.5690 1.4000 0.0000 0.0000 300.000
+ 22 5.2500 15.000 197.000 34041.000 0.267 94.1205 143.9648 -72.0704 0.6500 0.0000 34.5000 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5636 0.2511 0.6861 1.5199 5.0000 0.2500 301.5690 1.4000 0.0000 0.0000 300.000
+ 23 5.3000 15.000 121.000 33986.000 0.266 93.6729 144.1616 -71.6767 0.6500 0.0000 34.4040 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5675 0.2511 0.6861 1.5342 5.0000 0.3000 301.5690 1.4000 0.0000 0.0000 300.000
+ 24 5.3500 15.000 89.000 34081.000 0.267 93.2479 144.3552 -71.2896 0.6500 0.0000 34.3120 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5715 0.2511 0.6861 1.5484 5.0000 0.3500 301.5690 1.4000 0.0000 0.0000 300.000
+ 25 5.4000 15.000 67.000 34284.000 0.268 92.8086 144.5457 -70.9087 0.6500 0.0000 34.2160 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5754 0.2511 0.6861 1.5625 5.0000 0.4000 301.5690 1.4000 0.0000 0.0000 300.000
+ 26 5.4500 15.000 49.000 34074.000 0.267 92.3733 144.7330 -70.5340 0.6500 0.0000 34.1200 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5793 0.2511 0.6861 1.5766 5.0000 0.4500 301.5690 1.4000 0.0000 0.0000 300.000
+ 27 5.5000 15.000 43.000 33960.000 0.266 91.9600 144.9174 -70.1652 0.6500 0.0000 34.0280 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5833 0.2511 0.6861 1.5906 5.0000 0.5000 301.5690 1.4000 0.0000 0.0000 300.000
+ 28 5.5500 15.000 61.000 34344.000 0.269 91.5504 145.0989 -69.8022 0.6500 0.0000 33.9360 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5872 0.2511 0.6861 1.6045 5.0000 0.5500 301.5690 1.4000 0.0000 0.0000 300.000
+ 29 5.6000 15.000 46.000 34170.000 0.268 91.1444 145.2776 -69.4449 0.6500 0.0000 33.8440 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5912 0.2511 0.6861 1.6184 5.0000 0.6000 301.5690 1.4000 0.0000 0.0000 300.000
+ 30 5.6500 15.000 40.000 34641.000 0.271 90.7246 145.4534 -69.0931 0.6500 0.0000 33.7480 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5951 0.2511 0.6861 1.6322 5.0000 0.6500 301.5690 1.4000 0.0000 0.0000 300.000
+ 31 5.7000 15.000 45.000 35106.000 0.275 90.3259 145.6266 -68.7467 0.6500 0.0000 33.6560 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5991 0.2511 0.6861 1.6459 5.0000 0.7000 301.5690 1.4000 0.0000 0.0000 300.000
+ 32 5.7500 15.000 37.000 35163.000 0.275 89.9478 145.7972 -68.4055 0.6500 0.0000 33.5680 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6031 0.2511 0.6861 1.6596 5.0000 0.7500 301.5690 1.4000 0.0000 0.0000 300.000
+ 33 5.8000 15.000 42.000 35468.000 0.278 89.5558 145.9653 -68.0694 0.6500 0.0000 33.4760 0.0000 59.6100 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6070 0.2511 0.6861 1.6733 5.0000 0.8000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 6178
+# Center of Mass = 5.025915+/-0.090483
+# Full Width Half-Maximum = 0.494804+/-0.025573
+# 11:29:06 AM 10/24/2011 scan completed.
+
+11:29:42 AM 10/24/2011 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:35:39 AM 10/24/2011 Executing "drive s1 19.653"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 19.65300
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s1 4.07028
+
+
+Abort issued!!
+
+11:35:46 AM 10/24/2011 Executing "drive s2 19.653"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 19.65300
+
+Drive completed.
+
+
+11:36:28 AM 10/24/2011 Executing "drive s2 61.595"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 61.59500
+
+Drive completed.
+
+
+11:37:39 AM 10/24/2011 Executing "drive s1 30"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 30.00000
+
+Drive completed.
+
+
+11:37:55 AM 10/24/2011 Executing "drive s1 40"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 40.00000
+
+Drive completed.
+
+
+11:38:06 AM 10/24/2011 Executing "drive s1 35"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 35.00000
+
+Drive completed.
+
+
+11:38:14 AM 10/24/2011 Executing "drive s1 36"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 36.00000
+
+Drive completed.
+
+
+11:38:56 AM 10/24/2011 Executing "scantitle "Bi (003) room temperature check""
+
+Setting the scantitle to:
+Bi (003) room temperature check
+
+
+11:39:01 AM 10/24/2011 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 6
+# date = 10/24/2011
+# time = 11:39:01 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 15.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 35.0000 3.315 2710.000 7424.000 0.058 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2973 0.8123 -0.2198 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 2710
+# Center of Mass = 35.000000+/-0.950820
+# Full Width Half-Maximum = 0.000000+/-NaN
+# 11:39:06 AM 10/24/2011 scan stopped!!
+
+Abort issued!!
+
+11:39:08 AM 10/24/2011 Executing "drive s1 36"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 36.00000
+
+Drive completed.
+
+
+11:39:11 AM 10/24/2011 Executing "preset time 1"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 1.000000
+
+
+11:39:14 AM 10/24/2011 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 7
+# date = 10/24/2011
+# time = 11:39:14 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 35.0000 1.000 854.000 2285.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2973 0.8123 -0.2198 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 35.1000 1.000 1053.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2973 0.8122 -0.2251 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 35.2000 1.000 1535.000 2305.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2973 0.8121 -0.2303 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 35.3000 1.000 2534.000 2308.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2972 0.8120 -0.2355 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 35.4000 1.000 4239.000 2078.000 0.016 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2972 0.8119 -0.2407 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 35.5000 1.000 7392.000 2240.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2971 0.8118 -0.2459 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 35.6000 1.000 13696.000 2231.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2971 0.8117 -0.2512 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 35.7000 1.000 24550.000 2253.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2970 0.8115 -0.2564 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 35.8000 1.000 42713.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2970 0.8114 -0.2616 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 35.9000 1.000 65658.000 2318.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2970 0.8113 -0.2668 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 36.0000 1.000 83217.000 2213.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2969 0.8112 -0.2720 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 36.1000 1.000 87382.000 2203.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2969 0.8110 -0.2772 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 36.2000 1.000 79484.000 2203.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2968 0.8109 -0.2825 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 36.3000 1.000 57339.000 2278.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2968 0.8108 -0.2877 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 36.4000 1.000 28781.000 2295.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2967 0.8106 -0.2929 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 36.5000 1.000 12576.000 2315.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2967 0.8105 -0.2981 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 36.6000 1.000 5800.000 2247.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2966 0.8103 -0.3033 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 36.7000 1.000 3474.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2966 0.8102 -0.3085 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 36.8000 1.000 2464.000 2262.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2965 0.8100 -0.3137 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 36.9000 1.000 1731.000 2248.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2964 0.8099 -0.3189 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 37.0000 1.000 1338.000 2282.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.5950 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2964 0.8097 -0.3241 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 527810
+# Center of Mass = 36.059531+/-0.070194
+# Full Width Half-Maximum = 0.531463+/-0.029750
+# 11:39:47 AM 10/24/2011 scan completed.
+
+11:39:47 AM 10/24/2011 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 36.00000
+
+Drive completed.
+
+
+11:39:58 AM 10/24/2011 Executing "drive s1 36.0636"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 36.06360
+
+Drive completed.
+
+
+11:40:07 AM 10/24/2011 Executing "scan sgl @(sgl)+-4 @(sgl)+4 0.500000"
+ Derived from "scanrel sgl -4 4 0.5"
+
+
+# scan = 8
+# date = 10/24/2011
+# time = 11:40:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel sgl -4 4 0.5
+# builtin_command = scan sgl @(sgl)+-4 @(sgl)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 1751.000 2286.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3734 0.7525 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 -3.5000 1.000 8587.000 2254.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3640 0.7600 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 -3.0000 1.000 17082.000 2183.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3545 0.7675 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 -2.5000 1.000 28780.000 2154.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3449 0.7749 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 -2.0000 1.000 42528.000 2228.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3354 0.7823 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 -1.5000 1.000 55166.000 2234.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3258 0.7896 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 -1.0000 1.000 65015.000 2217.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3162 0.7968 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 -0.5000 1.000 75999.000 2281.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.3065 0.8040 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 0.0000 1.000 87733.000 2198.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2969 0.8111 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 0.5000 1.000 99428.000 2209.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2872 0.8181 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 1.0000 1.000 108331.000 2328.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2775 0.8251 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 1.5000 1.000 112513.000 2126.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2678 0.8320 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 2.0000 1.000 113855.000 2263.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2580 0.8389 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 2.5000 1.000 113332.000 2292.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2483 0.8457 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 3.0000 1.000 109205.000 2186.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2385 0.8524 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 3.5000 1.000 102632.000 2210.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2287 0.8591 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 4.0000 1.000 92936.000 2177.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.0636 61.5950 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2189 0.8657 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 1234873
+# Center of Mass = 1.186641+/-0.002270
+# Full Width Half-Maximum = 3.768106+/-0.003266
+# 11:41:21 AM 10/24/2011 scan completed.
+
+11:41:21 AM 10/24/2011 Executing "drive sgl @(sgl)-4"
+ Derived from "scanrel sgl -4 4 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+11:41:31 AM 10/24/2011 Executing "drive sgl 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 2.00000
+
+Drive completed.
+
+
+11:41:41 AM 10/24/2011 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 9
+# date = 10/24/2011
+# time = 11:41:41 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+# ubmatrix = -0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB24Oct2011_104813AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.5950 35.0636 1.000 30.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5439 0.2504 0.8142 -0.2672 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 59.7950 35.1636 1.000 48.000 2253.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5486 0.2512 0.8167 -0.2681 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 59.9950 35.2636 1.000 100.000 2236.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5533 0.2520 0.8192 -0.2689 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 60.1950 35.3636 1.000 391.000 2254.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5580 0.2527 0.8216 -0.2697 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 60.3950 35.4636 1.000 1676.000 2191.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5626 0.2535 0.8241 -0.2705 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 60.5950 35.5636 1.000 7555.000 2257.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5673 0.2542 0.8266 -0.2713 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 60.7950 35.6636 1.000 27471.000 2218.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5720 0.2550 0.8290 -0.2721 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 60.9950 35.7636 1.000 63957.000 2286.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5767 0.2558 0.8315 -0.2729 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 61.1950 35.8636 1.000 97367.000 2362.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5814 0.2565 0.8340 -0.2737 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 61.3950 35.9636 1.000 117023.000 2283.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5860 0.2573 0.8364 -0.2745 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 61.5950 36.0636 1.000 114667.000 2243.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5907 0.2580 0.8389 -0.2753 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 61.7950 36.1636 1.000 86483.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5953 0.2588 0.8413 -0.2761 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 61.9950 36.2636 1.000 44097.000 2298.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6000 0.2595 0.8438 -0.2770 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 62.1950 36.3636 1.000 15004.000 2288.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6046 0.2603 0.8462 -0.2778 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 62.3950 36.4636 1.000 3922.000 2222.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6093 0.2610 0.8487 -0.2786 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 62.5950 36.5636 1.000 849.000 2266.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6139 0.2618 0.8511 -0.2794 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 62.7950 36.6636 1.000 213.000 2232.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6185 0.2625 0.8536 -0.2802 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 62.9950 36.7636 1.000 63.000 2250.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6232 0.2633 0.8560 -0.2810 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 63.1950 36.8636 1.000 25.000 2156.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6278 0.2640 0.8585 -0.2818 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 63.3950 36.9636 1.000 5.000 2191.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6324 0.2648 0.8609 -0.2826 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 63.5950 37.0636 1.000 6.000 2166.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6370 0.2655 0.8633 -0.2834 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 580952
+# Center of Mass = 61.449044+/-0.114016
+# Full Width Half-Maximum = 0.740155+/-0.065025
+# 11:42:31 AM 10/24/2011 scan completed.
+
+11:42:31 AM 10/24/2011 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 35.99062
+s2 61.44904
+
+Drive completed.
+
+
+11:43:34 AM 10/24/2011 Executing "lattice a 4.550000 b 4.550000 c 11.875419"
+
+
+Changing the lattice constants "a=4.550000,b=4.550000,c=11.875419".
+The lattice constants will be changed to:
+a=4.550000 b=4.550000 c=11.87541
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+11:44:01 AM 10/24/2011 Executing "ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_114359AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp25\UBConf\tmp\UB24Oct2011_114359AM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=1.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.4490 s2=35.9906 s1=2.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8754 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4490 35.9906 2.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4490 35.9906 2.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.1058 0.1462 1.6895 61.4490 35.9906 2.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_114401AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_114401AM.ini
+
+
+11:44:08 AM 10/24/2011 Executing "drive h 0.500000 k 0.500000 l 0.000000 e 0.000000"
+ Derived from "br 0.5 0.5 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 52.78135
+s1 -58.34321
+sgl 2.00000
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+11:45:21 AM 10/24/2011 Executing "drive sgu 4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 4.00000
+
+Drive completed.
+
+
+11:45:35 AM 10/24/2011 Executing "drive sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+11:46:34 AM 10/24/2011 Executing "drive sgu -4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu -4.00000
+
+Drive completed.
+
+
+11:46:49 AM 10/24/2011 Executing "drive sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+11:48:58 AM 10/24/2011 Executing "drive s1 -90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -90.00000
+
+Drive completed.
+
+
+11:49:46 AM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.44904
+s1 35.99063
+sgl 2.00000
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+11:51:03 AM 10/24/2011 Executing "drive h 0.000000 k 1.000000 l 2.000000 e 0.000000"
+ Derived from "br 0 1 2"
+
+SPICE Warning in drive command: Mon, Oct 24, 2011 [11:51:03 AM] : SPICE Warning in Devices.lvlib:Common_Converter.lvlib:PseudoToRealNew.vi.
+
+Q is not in the specified scattering plane
+
+..Move aborted.
+
+
+11:51:24 AM 10/24/2011 Executing "ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_115122AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp25\UBConf\tmp\UB24Oct2011_115122AM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=0.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.4490 s2=35.9906 s1=2.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8754 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4490 35.9906 2.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4490 35.9906 2.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.0233 0.2299 1.6895 61.4490 35.9906 2.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_115124AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_115124AM.ini
+
+
+11:51:26 AM 10/24/2011 Executing "drive h 0.000000 k 1.000000 l 2.000000 e 0.000000"
+ Derived from "br 0 1 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 76.04747
+s1 -13.14087
+sgl 2.00000
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+11:53:02 AM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.44904
+s1 35.99064
+sgl 2.00000
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+12:12:11 PM 10/24/2011 Executing "ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_121209PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp25\UBConf\tmp\UB24Oct2011_121209PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=1.000 k2=0.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.4490 s2=35.9906 s1=2.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8754 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4490 35.9906 2.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4490 35.9906 2.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.2066 0.0233 1.6895 61.4490 35.9906 2.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_121211PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_121211PM.ini
+
+
+12:12:18 PM 10/24/2011 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.48653
+s1 -6.48634
+sgl 2.00005
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+12:14:11 PM 10/24/2011 Executing "scantitle "Bi (0.5 0 2) room temperature check""
+
+Setting the scantitle to:
+Bi (0.5 0 2) room temperature check
+
+
+12:14:16 PM 10/24/2011 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 10
+# date = 10/24/2011
+# time = 12:14:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0.5 0 2) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -7.4864 1.000 89.000 2224.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5115 0.0000 1.9734 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 -7.3864 1.000 123.000 2293.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5104 0.0000 1.9761 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 -7.2864 1.000 209.000 2252.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5092 0.0000 1.9788 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 -7.1864 1.000 303.000 2223.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5081 0.0000 1.9814 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 -7.0864 1.000 522.000 2238.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5069 0.0000 1.9841 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 -6.9864 1.000 1014.000 2200.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5058 0.0000 1.9868 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 -6.8864 1.000 1882.000 2231.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5046 0.0000 1.9894 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 -6.7864 1.000 3114.000 2321.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5035 0.0000 1.9921 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 -6.6864 1.000 5677.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5023 0.0000 1.9947 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 -6.5864 1.000 9074.000 2282.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5012 0.0000 1.9974 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 -6.4864 1.000 12473.000 2209.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 -6.3864 1.000 14317.000 2174.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4988 0.0000 2.0026 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 -6.2864 1.000 10700.000 2271.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4977 0.0000 2.0052 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 -6.1864 1.000 4977.000 2310.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4965 0.0000 2.0079 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 -6.0864 1.000 1923.000 2245.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4954 0.0000 2.0105 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 -5.9864 1.000 909.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4942 0.0000 2.0131 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 -5.8864 1.000 512.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4930 0.0000 2.0157 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 -5.7864 1.000 340.000 2193.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4919 0.0000 2.0183 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 -5.6864 1.000 237.000 2211.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4907 0.0000 2.0208 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 -5.5864 1.000 177.000 2291.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4895 0.0000 2.0234 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 -5.4864 1.000 150.000 2227.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4864 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3249 0.4883 0.0000 2.0260 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 68722
+# Center of Mass = -6.454335+/-0.034832
+# Full Width Half-Maximum = 0.487963+/-0.014814
+# 12:14:49 PM 10/24/2011 scan completed.
+
+12:14:49 PM 10/24/2011 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -6.48640
+
+Drive completed.
+
+
+12:15:59 PM 10/24/2011 Executing "drive h 0.500000 k 0.000000 l 2.500000 e 0.000000"
+ Derived from "br 0.5 0 2.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 59.61921
+s1 3.99627
+sgl 2.00005
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+12:17:12 PM 10/24/2011 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 11
+# date = 10/24/2011
+# time = 12:17:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0.5 0 2) room temperature check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 2.9963 1.000 2.000 2282.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5144 0.0000 2.4733 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 2 3.0963 1.000 2.000 2295.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5130 0.0000 2.4760 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 3 3.1963 1.000 3.000 2180.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5115 0.0000 2.4787 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 4 3.2963 1.000 4.000 2277.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5101 0.0000 2.4814 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 5 3.3963 1.000 5.000 2287.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5087 0.0000 2.4841 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 6 3.4963 1.000 6.000 2209.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5072 0.0000 2.4868 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 7 3.5963 1.000 3.000 2282.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5058 0.0000 2.4894 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 8 3.6963 1.000 5.000 2263.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5043 0.0000 2.4921 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 9 3.7963 1.000 5.000 2277.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5029 0.0000 2.4947 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 10 3.8963 1.000 3.000 2224.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5014 0.0000 2.4974 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 11 3.9963 1.000 5.000 2290.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.5000 0.0000 2.5000 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 12 4.0963 1.000 1.000 2143.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4986 0.0000 2.5026 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 13 4.1963 1.000 1.000 2304.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4971 0.0000 2.5052 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 14 4.2963 1.000 2.000 2214.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4956 0.0000 2.5079 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 15 4.3963 1.000 2.000 2236.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4942 0.0000 2.5105 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 16 4.4963 1.000 3.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4927 0.0000 2.5131 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 17 4.5963 1.000 3.000 2250.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4913 0.0000 2.5156 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 18 4.6963 1.000 2.000 2272.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4898 0.0000 2.5182 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 19 4.7963 1.000 3.000 2235.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4884 0.0000 2.5208 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 20 4.8963 1.000 3.000 2209.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4869 0.0000 2.5234 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+ 21 4.9963 1.000 2.000 2253.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.6192 2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5444 0.4854 0.0000 2.5259 5.0000 5.0000 0.0000 301.5690 1.4000 0.0000 0.0000 300.000
+# Sum of Counts = 65
+# Center of Mass = 3.911685+/-0.689802
+# Full Width Half-Maximum = 1.142322+/-0.321263
+# 12:17:44 PM 10/24/2011 scan completed.
+
+12:17:44 PM 10/24/2011 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 3.99628
+
+Drive completed.
+
+
+12:17:57 PM 10/24/2011 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s1 31.45720
+
+
+Abort issued!!
+
+12:18:30 PM 10/24/2011 Executing "drive h 1.000000 k 0.000000 l 0.500000 e 0.000000"
+ Derived from "br 1 0 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 62.70044
+s1 -43.96373
+sgl 2.00005
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+12:19:43 PM 10/24/2011 Executing "drive h 1.000000 k 0.000000 l -1.000000 e 0.000000"
+ Derived from "br 1 0 -1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.47200
+s1 -70.35439
+sgl 2.00005
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+12:20:13 PM 10/24/2011 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.48653
+s1 -6.48634
+sgl 2.00005
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+1:21:14 PM 10/24/2011 Executing "drive s1 0 sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+sgl 0.00000
+
+Drive completed.
+
+
+1:24:04 PM 10/24/2011 Executing "calc ef 16"
+
+Calculating motor positions based on:
+ef=16.00000
+
+Resulting calculated motor positions:
+a2=-39.38608 a1=160.30696
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+1:24:20 PM 10/24/2011 Executing "calc ef 18"
+
+Calculating motor positions based on:
+ef=18.00000
+
+Resulting calculated motor positions:
+a2=-37.04882 a1=161.47559
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+1:24:25 PM 10/24/2011 Executing "calc ef 20"
+
+Calculating motor positions based on:
+ef=20.00000
+
+Resulting calculated motor positions:
+a2=-35.08401 a1=162.45800
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+2:28:09 PM 10/24/2011 Executing "method temp set_setpoint d 300.000000"
+ Derived from "set_temp 300"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+2:36:19 PM 10/24/2011 Executing "drive s1 61.449"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 61.44900
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s1 6.27340
+
+
+Abort issued!!
+
+2:36:27 PM 10/24/2011 Executing "drive s1 62.449"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 62.44900
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s1 11.63668
+
+
+Abort issued!!
+
+2:36:37 PM 10/24/2011 Executing "drive s2 61.449"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 61.44900
+
+Drive completed.
+
+
+2:37:09 PM 10/24/2011 Executing "drive s1 35"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 35.00000
+
+Drive completed.
+
+
+2:37:24 PM 10/24/2011 Executing "drive s1 34"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 34.00000
+
+Drive completed.
+
+
+2:37:29 PM 10/24/2011 Executing "drive s1 33"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 33.00000
+
+Drive completed.
+
+
+2:37:50 PM 10/24/2011 Executing "scantitle "Bi (0 0 3) room temperature inside CCR check""
+
+Setting the scantitle to:
+Bi (0 0 3) room temperature inside CCR check
+
+
+2:37:59 PM 10/24/2011 Executing "scan s1 @(s1)+-2 @(s1)+2 0.100000"
+ Derived from "scanrel s1 -2 2 0.1"
+
+
+# scan = 12
+# date = 10/24/2011
+# time = 2:37:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -2 2 0.1
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.0000 1.000 149.000 2352.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0665 0.0401 2.9868 5.0000 5.0000 0.0000 297.1750 296.6180 301.0190 294.1250 300.000
+ 2 31.1000 1.000 186.000 2350.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0648 0.0401 2.9873 5.0000 5.0000 0.0000 297.1820 296.6200 301.0400 294.0610 300.000
+ 3 31.2000 1.000 195.000 2397.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0630 0.0401 2.9877 5.0000 5.0000 0.0000 297.1820 296.6190 301.0610 294.1970 300.000
+ 4 31.3000 1.000 217.000 2297.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0613 0.0401 2.9881 5.0000 5.0000 0.0000 297.1870 296.6210 301.0770 294.1520 300.000
+ 5 31.4000 1.000 216.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0596 0.0401 2.9886 5.0000 5.0000 0.0000 297.1890 296.6220 301.0890 294.2150 300.000
+ 6 31.5000 1.000 324.000 2330.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0578 0.0401 2.9890 5.0000 5.0000 0.0000 297.1910 296.6220 301.1010 294.2820 300.000
+ 7 31.6000 1.000 326.000 2360.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0561 0.0401 2.9894 5.0000 5.0000 0.0000 297.1940 296.6240 301.1120 294.3030 300.000
+ 8 31.7000 1.000 348.000 2346.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0544 0.0401 2.9898 5.0000 5.0000 0.0000 297.2010 296.6270 301.1180 294.2120 300.000
+ 9 31.8000 1.000 407.000 2340.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0526 0.0401 2.9902 5.0000 5.0000 0.0000 297.2040 296.6280 301.1260 294.2420 300.000
+ 10 31.9000 1.000 471.000 2315.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0509 0.0401 2.9905 5.0000 5.0000 0.0000 297.2080 296.6300 301.1330 294.2510 300.000
+ 11 32.0000 1.000 615.000 2270.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0492 0.0401 2.9909 5.0000 5.0000 0.0000 297.2100 296.6300 301.1360 294.3000 300.000
+ 12 32.1000 1.000 716.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0474 0.0401 2.9913 5.0000 5.0000 0.0000 297.2140 296.6320 301.1370 294.2930 300.000
+ 13 32.2000 1.000 953.000 2388.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0457 0.0401 2.9916 5.0000 5.0000 0.0000 297.2190 296.6350 301.1390 294.2470 300.000
+ 14 32.3000 1.000 1299.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0440 0.0401 2.9920 5.0000 5.0000 0.0000 297.2200 296.6350 301.1410 294.3160 300.000
+ 15 32.4000 1.000 1645.000 2323.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0422 0.0401 2.9923 5.0000 5.0000 0.0000 297.2250 296.6370 301.1380 294.2920 300.000
+ 16 32.5000 1.000 2284.000 2346.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0405 0.0401 2.9926 5.0000 5.0000 0.0000 297.2280 296.6380 301.1360 294.3440 300.000
+ 17 32.6000 1.000 3569.000 2359.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0388 0.0401 2.9929 5.0000 5.0000 0.0000 297.2330 296.6400 301.1310 294.2950 300.000
+ 18 32.7000 1.000 6293.000 2427.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0370 0.0401 2.9932 5.0000 5.0000 0.0000 297.2380 296.6420 301.1240 294.2420 300.000
+ 19 32.8000 1.000 13057.000 2268.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0353 0.0401 2.9935 5.0000 5.0000 0.0000 297.2420 296.6440 301.1180 294.2340 300.000
+ 20 32.9000 1.000 30044.000 2260.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0336 0.0401 2.9938 5.0000 5.0000 0.0000 297.2440 296.6440 301.1110 294.3160 300.000
+ 21 33.0000 1.000 55587.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0318 0.0401 2.9941 5.0000 5.0000 0.0000 297.2460 296.6450 301.1010 294.3600 300.000
+ 22 33.1000 1.000 76345.000 2363.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0301 0.0401 2.9944 5.0000 5.0000 0.0000 297.2490 296.6470 301.0900 294.3550 300.000
+ 23 33.2000 1.000 85243.000 2313.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0284 0.0401 2.9946 5.0000 5.0000 0.0000 297.2530 296.6490 301.0820 294.3080 300.000
+ 24 33.3000 1.000 75607.000 2281.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0266 0.0401 2.9949 5.0000 5.0000 0.0000 297.2550 296.6500 301.0710 294.3570 300.000
+ 25 33.4000 1.000 50622.000 2373.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0249 0.0401 2.9951 5.0000 5.0000 0.0000 297.2570 296.6500 301.0600 294.3780 300.000
+ 26 33.5000 1.000 25086.000 2341.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0232 0.0401 2.9953 5.0000 5.0000 0.0000 297.2610 296.6520 301.0490 294.3670 300.000
+ 27 33.6000 1.000 11087.000 2244.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0214 0.0401 2.9956 5.0000 5.0000 0.0000 297.2660 296.6540 301.0320 294.3100 300.000
+ 28 33.7000 1.000 5148.000 2331.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0197 0.0401 2.9958 5.0000 5.0000 0.0000 297.2690 296.6560 301.0180 294.3010 300.000
+ 29 33.8000 1.000 2988.000 2393.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0180 0.0401 2.9960 5.0000 5.0000 0.0000 297.2730 296.6570 301.0050 294.3080 300.000
+ 30 33.9000 1.000 1823.000 2399.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0162 0.0401 2.9962 5.0000 5.0000 0.0000 297.2760 296.6580 300.9970 294.3560 300.000
+ 31 34.0000 1.000 1300.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0145 0.0401 2.9964 5.0000 5.0000 0.0000 297.2790 296.6590 300.9860 294.3690 300.000
+ 32 34.1000 1.000 946.000 2339.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0128 0.0400 2.9965 5.0000 5.0000 0.0000 297.2800 296.6600 300.9700 294.4100 300.000
+ 33 34.2000 1.000 751.000 2326.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0110 0.0400 2.9967 5.0000 5.0000 0.0000 297.2830 296.6620 300.9550 294.3820 300.000
+ 34 34.3000 1.000 596.000 2363.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0093 0.0400 2.9969 5.0000 5.0000 0.0000 297.2850 296.6630 300.9390 294.4200 300.000
+ 35 34.4000 1.000 468.000 2328.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0076 0.0400 2.9970 5.0000 5.0000 0.0000 297.2870 296.6640 300.9220 294.4730 300.000
+ 36 34.5000 1.000 377.000 2325.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0058 0.0400 2.9972 5.0000 5.0000 0.0000 297.2890 296.6650 300.9040 294.4600 300.000
+ 37 34.6000 1.000 264.000 2170.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0041 0.0400 2.9973 5.0000 5.0000 0.0000 297.2920 296.6670 300.8830 294.4400 300.000
+ 38 34.7000 1.000 243.000 2340.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0024 0.0400 2.9974 5.0000 5.0000 0.0000 297.2950 296.6680 300.8590 294.4280 300.000
+ 39 34.8000 1.000 207.000 2342.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0006 0.0400 2.9975 5.0000 5.0000 0.0000 297.2970 296.6690 300.8390 294.4700 300.000
+ 40 34.9000 1.000 161.000 2374.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0011 0.0400 2.9976 5.0000 5.0000 0.0000 297.2990 296.6700 300.8180 294.4700 300.000
+ 41 35.0000 1.000 166.000 2264.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0028 0.0400 2.9977 5.0000 5.0000 0.0000 297.3020 296.6710 300.7990 294.4630 300.000
+# Sum of Counts = 458329
+# Center of Mass = 33.182004+/-0.069317
+# Full Width Half-Maximum = 0.601226+/-0.024001
+# 2:39:07 PM 10/24/2011 scan completed.
+
+2:39:07 PM 10/24/2011 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -2 2 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 33.00000
+
+Drive completed.
+
+
+2:39:22 PM 10/24/2011 Executing "drive s1 33.1898"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 33.18980
+
+Drive completed.
+
+
+2:39:33 PM 10/24/2011 Executing "scan sgl @(sgl)+-4 @(sgl)+4 0.500000"
+ Derived from "scanrel sgl -4 4 0.5"
+
+
+# scan = 13
+# date = 10/24/2011
+# time = 2:39:33 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel sgl -4 4 0.5
+# builtin_command = scan sgl @(sgl)+-4 @(sgl)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 113013.000 2260.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0119 0.1200 2.9801 5.0000 5.0000 0.0000 297.3920 296.7130 300.1450 292.8870 300.000
+ 2 -3.5000 1.000 119076.000 2348.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0068 0.1101 2.9827 5.0000 5.0000 0.0000 297.4130 296.7150 300.0780 292.4000 300.000
+ 3 -3.0000 1.000 122225.000 2287.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0018 0.1001 2.9851 5.0000 5.0000 0.0000 297.4130 296.7160 300.0280 292.4440 300.000
+ 4 -2.5000 1.000 121463.000 2250.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0033 0.0901 2.9872 5.0000 5.0000 0.0000 297.4150 296.7190 299.9800 292.5650 300.000
+ 5 -2.0000 1.000 118967.000 2218.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0084 0.0801 2.9891 5.0000 5.0000 0.0000 297.4200 296.7210 299.9290 292.7360 300.000
+ 6 -1.5000 1.000 114379.000 2327.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0134 0.0701 2.9908 5.0000 5.0000 0.0000 297.4190 296.7230 299.8680 292.7030 300.000
+ 7 -1.0000 1.000 105385.000 2273.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0185 0.0601 2.9923 5.0000 5.0000 0.0000 297.4240 296.7240 299.8300 292.4910 300.000
+ 8 -0.4999 1.000 96327.000 2326.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0235 0.0501 2.9936 5.0000 5.0000 0.0000 297.4260 296.7240 299.7860 292.4170 300.000
+ 9 0.0000 1.000 85262.000 2265.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0285 0.0401 2.9946 5.0000 5.0000 0.0000 297.4250 296.7240 299.7510 292.5380 300.000
+ 10 0.5000 1.000 73826.000 2276.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0336 0.0301 2.9954 5.0000 5.0000 0.0000 297.4240 296.7240 299.7020 292.5740 300.000
+ 11 1.0000 1.000 63085.000 2362.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0386 0.0200 2.9960 5.0000 5.0000 0.0000 297.4230 296.7260 299.6550 292.4720 300.000
+ 12 1.5000 1.000 50105.000 2287.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0436 0.0100 2.9963 5.0000 5.0000 0.0000 297.4360 296.7290 299.5990 292.2520 300.000
+ 13 2.0000 1.000 33237.000 2304.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0486 0.0000 2.9964 5.0000 5.0000 0.0000 297.4340 296.7300 299.5590 292.4340 300.000
+ 14 2.6906 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1898 61.4490 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0556 -0.0138 2.9962 5.0000 5.0000 0.0000 297.4310 296.7320 299.5220 292.5400 300.000
+# Sum of Counts = 1216350
+# Center of Mass = -1.529627+/-0.002488
+# Full Width Half-Maximum = 3.378042+/-0.002990
+# 2:40:34 PM 10/24/2011 scan stopped!!
+
+Abort issued!!
+
+2:40:42 PM 10/24/2011 Executing "drive sgl -2.7387"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -2.73870
+
+Drive completed.
+
+
+2:40:56 PM 10/24/2011 Executing "scan s1 @(s1)+-2 @(s1)+2 0.100000"
+ Derived from "scanrel s1 -2 2 0.1"
+
+
+# scan = 14
+# date = 10/24/2011
+# time = 2:40:56 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -2 2 0.1
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.1898 1.000 412.000 2270.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0355 0.0950 2.9793 5.0000 5.0000 0.0000 297.4380 296.7480 299.3030 293.1210 300.000
+ 2 31.2898 1.000 461.000 2314.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0338 0.0950 2.9797 5.0000 5.0000 0.0000 297.4360 296.7480 299.3270 293.2980 300.000
+ 3 31.3898 1.000 514.000 2258.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0321 0.0950 2.9801 5.0000 5.0000 0.0000 297.4350 296.7490 299.3440 293.3790 300.000
+ 4 31.4898 1.000 616.000 2263.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0303 0.0949 2.9805 5.0000 5.0000 0.0000 297.4320 296.7470 299.3520 293.4830 300.000
+ 5 31.5898 1.000 617.000 2266.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0286 0.0949 2.9809 5.0000 5.0000 0.0000 297.4300 296.7470 299.3670 293.4950 300.000
+ 6 31.6898 1.000 766.000 2254.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0269 0.0949 2.9813 5.0000 5.0000 0.0000 297.4300 296.7470 299.3780 293.5150 300.000
+ 7 31.7898 1.000 779.000 2276.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0251 0.0949 2.9817 5.0000 5.0000 0.0000 297.4280 296.7470 299.3840 293.5330 300.000
+ 8 31.8898 1.000 975.000 2332.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0234 0.0949 2.9821 5.0000 5.0000 0.0000 297.4280 296.7470 299.3960 293.5650 300.000
+ 9 31.9898 1.000 1193.000 2326.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0217 0.0949 2.9825 5.0000 5.0000 0.0000 297.4290 296.7480 299.4050 293.6150 300.000
+ 10 32.0898 1.000 1339.000 2325.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0199 0.0949 2.9828 5.0000 5.0000 0.0000 297.4270 296.7490 299.4140 293.6560 300.000
+ 11 32.1898 1.000 1777.000 2325.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0182 0.0949 2.9832 5.0000 5.0000 0.0000 297.4290 296.7500 299.4290 293.6140 300.000
+ 12 32.2898 1.000 2168.000 2304.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0165 0.0949 2.9835 5.0000 5.0000 0.0000 297.4290 296.7500 299.4460 293.6570 300.000
+ 13 32.3898 1.000 2981.000 2168.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0147 0.0949 2.9839 5.0000 5.0000 0.0000 297.4310 296.7510 299.4650 293.6330 300.000
+ 14 32.4898 1.000 4062.000 2211.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0130 0.0949 2.9842 5.0000 5.0000 0.0000 297.4310 296.7510 299.4900 293.6760 300.000
+ 15 32.5898 1.000 6581.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0113 0.0949 2.9845 5.0000 5.0000 0.0000 297.4330 296.7520 299.5220 293.6900 300.000
+ 16 32.6898 1.000 11495.000 2299.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0096 0.0949 2.9848 5.0000 5.0000 0.0000 297.4330 296.7530 299.5510 293.7190 300.000
+ 17 32.7898 1.000 23324.000 2229.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0078 0.0949 2.9851 5.0000 5.0000 0.0000 297.4330 296.7530 299.5810 293.7510 300.000
+ 18 32.8898 1.000 50397.000 2271.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0061 0.0949 2.9854 5.0000 5.0000 0.0000 297.4350 296.7540 299.6080 293.7200 300.000
+ 19 32.9898 1.000 86480.000 2353.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0044 0.0949 2.9857 5.0000 5.0000 0.0000 297.4360 296.7550 299.6420 293.7660 300.000
+ 20 33.0898 1.000 113087.000 2283.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0026 0.0949 2.9860 5.0000 5.0000 0.0000 297.4370 296.7560 299.6730 293.8000 300.000
+ 21 33.1898 1.000 122375.000 2325.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0009 0.0949 2.9862 5.0000 5.0000 0.0000 297.4390 296.7560 299.7100 293.7830 300.000
+ 22 33.2898 1.000 110732.000 2318.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0008 0.0949 2.9865 5.0000 5.0000 0.0000 297.4410 296.7580 299.7470 293.7610 300.000
+ 23 33.3898 1.000 77335.000 2352.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0026 0.0949 2.9867 5.0000 5.0000 0.0000 297.4430 296.7590 299.7830 293.7670 300.000
+ 24 33.4898 1.000 39598.000 2198.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0043 0.0948 2.9869 5.0000 5.0000 0.0000 297.4450 296.7600 299.8210 293.7410 300.000
+ 25 33.5898 1.000 18485.000 2228.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0060 0.0948 2.9872 5.0000 5.0000 0.0000 297.4480 296.7610 299.8570 293.7470 300.000
+ 26 33.6898 1.000 9174.000 2172.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0078 0.0948 2.9874 5.0000 5.0000 0.0000 297.4490 296.7620 299.9030 293.7710 300.000
+ 27 33.7898 1.000 5030.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0095 0.0948 2.9876 5.0000 5.0000 0.0000 297.4520 296.7640 299.9430 293.7430 300.000
+ 28 33.8898 1.000 3271.000 2307.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0112 0.0948 2.9878 5.0000 5.0000 0.0000 297.4530 296.7640 299.9850 293.7990 300.000
+ 29 33.9898 1.000 2187.000 2309.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0130 0.0948 2.9880 5.0000 5.0000 0.0000 297.4550 296.7660 300.0290 293.8290 300.000
+ 30 34.0898 1.000 1531.000 2333.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0147 0.0948 2.9882 5.0000 5.0000 0.0000 297.4580 296.7670 300.0670 293.8180 300.000
+ 31 34.1898 1.000 1168.000 2350.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0164 0.0948 2.9883 5.0000 5.0000 0.0000 297.4610 296.7680 300.1170 293.7950 300.000
+ 32 34.2898 1.000 949.000 2256.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0182 0.0948 2.9885 5.0000 5.0000 0.0000 297.4650 296.7700 300.1590 293.7860 300.000
+ 33 34.3898 1.000 691.000 2236.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0199 0.0948 2.9886 5.0000 5.0000 0.0000 297.4660 296.7700 300.2080 293.8770 300.000
+ 34 34.4898 1.000 606.000 2321.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0216 0.0948 2.9888 5.0000 5.0000 0.0000 297.4690 296.7720 300.2600 293.8510 300.000
+ 35 34.5898 1.000 477.000 2313.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0233 0.0947 2.9889 5.0000 5.0000 0.0000 297.4720 296.7740 300.3060 293.8560 300.000
+ 36 34.6898 1.000 386.000 2262.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0251 0.0947 2.9890 5.0000 5.0000 0.0000 297.4740 296.7740 300.3540 293.9180 300.000
+ 37 34.7898 1.000 308.000 2181.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0268 0.0947 2.9892 5.0000 5.0000 0.0000 297.4780 296.7760 300.3950 293.8910 300.000
+ 38 34.8898 1.000 265.000 2276.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0285 0.0947 2.9893 5.0000 5.0000 0.0000 297.4810 296.7770 300.4400 293.9110 300.000
+ 39 34.9898 1.000 239.000 2286.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0303 0.0947 2.9894 5.0000 5.0000 0.0000 297.4840 296.7790 300.4780 293.9020 300.000
+ 40 35.0898 1.000 182.000 2296.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0320 0.0947 2.9894 5.0000 5.0000 0.0000 297.4880 296.7800 300.5190 293.9260 300.000
+ 41 35.1898 1.000 142.000 2273.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4490 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 -0.0337 0.0947 2.9895 5.0000 5.0000 0.0000 297.4910 296.7820 300.5570 293.9550 300.000
+# Sum of Counts = 705155
+# Center of Mass = 33.165887+/-0.055857
+# Full Width Half-Maximum = 0.632224+/-0.018959
+# 2:42:03 PM 10/24/2011 scan completed.
+
+2:42:03 PM 10/24/2011 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -2 2 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 33.18980
+
+Drive completed.
+
+
+2:42:09 PM 10/24/2011 Executing "drive s1 33.1749"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 33.17490
+
+Drive completed.
+
+
+2:42:15 PM 10/24/2011 Executing "scan s2 @(s2)+-2 @(s2)+2 0.100000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.050000"
+ Derived from "th2th -2 2 0.1"
+
+
+# scan = 15
+# date = 10/24/2011
+# time = 2:42:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = th2th -2 2 0.1
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.100000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+# ubmatrix = -0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+# mode = 0
+# plane_normal = -0.034900,0.000000,0.999391
+# ubconf = UB24Oct2011_121211PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.4490 32.1749 1.000 9.000 2238.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5404 0.0011 0.0921 2.8980 5.0000 5.0000 0.0000 297.5320 296.8010 300.8990 293.9700 300.000
+ 2 59.5490 32.2249 1.000 22.000 2323.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5428 0.0011 0.0922 2.9025 5.0000 5.0000 0.0000 297.5400 296.8040 300.9130 293.9360 300.000
+ 3 59.6490 32.2749 1.000 21.000 2296.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5451 0.0011 0.0924 2.9069 5.0000 5.0000 0.0000 297.5470 296.8070 300.9280 293.8800 300.000
+ 4 59.7490 32.3249 1.000 31.000 2221.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5475 0.0011 0.0925 2.9113 5.0000 5.0000 0.0000 297.5540 296.8100 300.9420 293.8290 300.000
+ 5 59.8490 32.3749 1.000 43.000 2278.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5498 0.0011 0.0926 2.9157 5.0000 5.0000 0.0000 297.5590 296.8120 300.9590 293.8830 300.000
+ 6 59.9490 32.4249 1.000 62.000 2302.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5522 0.0011 0.0928 2.9202 5.0000 5.0000 0.0000 297.5630 296.8140 300.9740 293.9230 300.000
+ 7 60.0490 32.4749 1.000 89.000 2330.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5545 0.0011 0.0929 2.9246 5.0000 5.0000 0.0000 297.5710 296.8170 300.9590 293.8540 300.000
+ 8 60.1490 32.5249 1.000 174.000 2276.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5569 0.0011 0.0931 2.9290 5.0000 5.0000 0.0000 297.5750 296.8190 300.9650 293.8630 300.000
+ 9 60.2490 32.5749 1.000 256.000 2316.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5592 0.0011 0.0932 2.9334 5.0000 5.0000 0.0000 297.5740 296.8180 300.9910 293.9490 300.000
+ 10 60.3490 32.6249 1.000 584.000 2196.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5616 0.0011 0.0933 2.9378 5.0000 5.0000 0.0000 297.5790 296.8210 300.9930 293.9090 300.000
+ 11 60.4490 32.6749 1.000 1474.000 2301.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5639 0.0011 0.0935 2.9422 5.0000 5.0000 0.0000 297.5800 296.8210 301.0140 293.9640 300.000
+ 12 60.5490 32.7249 1.000 3553.000 2343.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5662 0.0011 0.0936 2.9466 5.0000 5.0000 0.0000 297.5860 296.8240 300.9940 293.9010 300.000
+ 13 60.6490 32.7749 1.000 8441.000 2312.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5686 0.0011 0.0938 2.9510 5.0000 5.0000 0.0000 297.5910 296.8260 301.0060 293.9010 300.000
+ 14 60.7490 32.8249 1.000 17808.000 2291.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5709 0.0011 0.0939 2.9554 5.0000 5.0000 0.0000 297.5990 296.8290 300.9960 293.8790 300.000
+ 15 60.8490 32.8749 1.000 32427.000 2234.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5733 0.0011 0.0940 2.9598 5.0000 5.0000 0.0000 297.6030 296.8300 300.9940 293.8940 300.000
+ 16 60.9490 32.9249 1.000 51580.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5756 0.0011 0.0942 2.9642 5.0000 5.0000 0.0000 297.6080 296.8330 300.9800 293.8820 300.000
+ 17 61.0490 32.9749 1.000 71614.000 2284.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5779 0.0011 0.0943 2.9686 5.0000 5.0000 0.0000 297.6130 296.8340 300.9770 294.0220 300.000
+ 18 61.1490 33.0249 1.000 91426.000 2246.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5803 0.0011 0.0945 2.9730 5.0000 5.0000 0.0000 297.6110 296.8350 300.9730 293.9940 300.000
+ 19 61.2490 33.0749 1.000 106392.000 2339.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5826 0.0011 0.0946 2.9774 5.0000 5.0000 0.0000 297.6140 296.8360 300.9530 293.9520 300.000
+ 20 61.3490 33.1249 1.000 116948.000 2292.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5849 0.0012 0.0947 2.9818 5.0000 5.0000 0.0000 297.6160 296.8380 300.9480 293.9640 300.000
+ 21 61.4490 33.1749 1.000 121972.000 2216.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5873 0.0012 0.0949 2.9862 5.0000 5.0000 0.0000 297.6180 296.8390 300.9380 293.9440 300.000
+ 22 61.5490 33.2249 1.000 120343.000 2273.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5896 0.0012 0.0950 2.9906 5.0000 5.0000 0.0000 297.6250 296.8420 300.9110 293.8860 300.000
+ 23 61.6490 33.2749 1.000 112258.000 2237.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5919 0.0012 0.0951 2.9949 5.0000 5.0000 0.0000 297.6330 296.8450 300.8930 293.8730 300.000
+ 24 61.7490 33.3249 1.000 96021.000 2295.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5943 0.0012 0.0953 2.9993 5.0000 5.0000 0.0000 297.6300 296.8430 300.9000 293.9780 300.000
+ 25 61.8490 33.3749 1.000 75050.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5966 0.0012 0.0954 3.0037 5.0000 5.0000 0.0000 297.6320 296.8440 300.8930 293.9460 300.000
+ 26 61.9490 33.4249 1.000 52275.000 2315.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5989 0.0012 0.0956 3.0081 5.0000 5.0000 0.0000 297.6330 296.8440 300.8890 294.0000 300.000
+ 27 62.0490 33.4749 1.000 32411.000 2174.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6012 0.0012 0.0957 3.0124 5.0000 5.0000 0.0000 297.6350 296.8450 300.8780 294.0500 300.000
+ 28 62.1490 33.5249 1.000 17639.000 2237.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6036 0.0012 0.0958 3.0168 5.0000 5.0000 0.0000 297.6380 296.8470 300.8540 294.0580 300.000
+ 29 62.2490 33.5749 1.000 9023.000 2375.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6059 0.0012 0.0960 3.0212 5.0000 5.0000 0.0000 297.6410 296.8490 300.8480 294.0930 300.000
+ 30 62.3490 33.6249 1.000 4451.000 2275.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6082 0.0012 0.0961 3.0255 5.0000 5.0000 0.0000 297.6420 296.8490 300.8440 294.0390 300.000
+ 31 62.4490 33.6749 1.000 2174.000 2305.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6105 0.0012 0.0963 3.0299 5.0000 5.0000 0.0000 297.6430 296.8500 300.8250 294.1130 300.000
+ 32 62.5490 33.7249 1.000 1033.000 2363.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6128 0.0012 0.0964 3.0343 5.0000 5.0000 0.0000 297.6430 296.8510 300.7940 294.1350 300.000
+ 33 62.6490 33.7749 1.000 520.000 2307.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6152 0.0012 0.0965 3.0386 5.0000 5.0000 0.0000 297.6450 296.8520 300.7700 294.0900 300.000
+ 34 62.7490 33.8249 1.000 258.000 2382.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6175 0.0012 0.0967 3.0430 5.0000 5.0000 0.0000 297.6490 296.8540 300.7440 294.0540 300.000
+ 35 62.8490 33.8749 1.000 132.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6198 0.0012 0.0968 3.0473 5.0000 5.0000 0.0000 297.6530 296.8560 300.7140 294.0460 300.000
+ 36 62.9490 33.9249 1.000 56.000 2272.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6221 0.0012 0.0970 3.0517 5.0000 5.0000 0.0000 297.6560 296.8590 300.6820 294.0300 300.000
+ 37 63.0490 33.9749 1.000 39.000 2265.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6244 0.0012 0.0971 3.0560 5.0000 5.0000 0.0000 297.6620 296.8620 300.6460 294.0440 300.000
+ 38 63.1490 34.0249 1.000 21.000 2300.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6267 0.0012 0.0972 3.0604 5.0000 5.0000 0.0000 297.6650 296.8630 300.6250 294.0210 300.000
+ 39 63.2490 34.0749 1.000 16.000 2292.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6290 0.0012 0.0974 3.0647 5.0000 5.0000 0.0000 297.6640 296.8630 300.6150 294.0410 300.000
+ 40 63.3490 34.1249 1.000 14.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6313 0.0012 0.0975 3.0691 5.0000 5.0000 0.0000 297.6690 296.8660 300.5810 294.0330 300.000
+ 41 63.4490 34.1749 1.000 11.000 2312.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6336 0.0012 0.0976 3.0734 5.0000 5.0000 0.0000 297.6700 296.8660 300.5630 294.0460 300.000
+# Sum of Counts = 1148671
+# Center of Mass = 61.455430+/-0.081093
+# Full Width Half-Maximum = 0.709564+/-0.033497
+# 2:43:42 PM 10/24/2011 scan completed.
+
+2:43:42 PM 10/24/2011 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 33.17809
+s2 61.45543
+
+Drive completed.
+
+
+2:44:07 PM 10/24/2011 Executing "drive s2 61.4563 s1 33.1786"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 61.45630
+s1 33.17860
+
+Drive completed.
+
+
+2:44:25 PM 10/24/2011 Executing "lattice a 4.550000 b 4.550000 c 11.874153"
+
+
+Changing the lattice constants "a=4.550000,b=4.550000,c=11.874153".
+The lattice constants will be changed to:
+a=4.550000 b=4.550000 c=11.87415
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+2:44:36 PM 10/24/2011 Executing "ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_24432PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp25\UBConf\tmp\UB24Oct2011_24432PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=1.000 k2=0.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.4554 s2=33.1779 s1=-2.7387 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8742 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4554 33.1779 -2.7387 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4563 33.1783 -2.7387 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.2208 -0.0290 1.5548 61.4554 33.1779 -2.7387 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_24436PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_24436PM.ini
+
+
+2:44:55 PM 10/24/2011 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.49021
+s1 -9.29749
+sgl -2.73870
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:46:56 PM 10/24/2011 Executing "drive s1 -30"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -30.00000
+
+Drive completed.
+
+
+2:47:11 PM 10/24/2011 Executing "drive s1 10"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 10.00000
+
+Drive completed.
+
+
+2:47:43 PM 10/24/2011 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.49021
+s1 -9.29749
+sgl -2.73870
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:48:09 PM 10/24/2011 Executing "drive sgu 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 3.00000
+
+Drive completed.
+
+
+2:48:19 PM 10/24/2011 Executing "drive sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+2:48:33 PM 10/24/2011 Executing "drive sgu -3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu -3.00000
+
+Drive completed.
+
+
+2:48:50 PM 10/24/2011 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+2:49:00 PM 10/24/2011 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+2:49:05 PM 10/24/2011 Executing "drive sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+2:49:18 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:50:15 PM 10/24/2011 Executing "ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_25010PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp25\UBConf\tmp\UB24Oct2011_25010PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=1.000 k2=0.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.4563 s2=33.1784 s1=-2.7387 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8742 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4563 33.1784 -2.7387 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4563 33.1784 -2.7387 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.2208 -0.0290 1.5548 61.4563 33.1784 -2.7387 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_25015PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_25015PM.ini
+
+
+2:50:21 PM 10/24/2011 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.49021
+s1 -9.29748
+sgl -2.73870
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:50:51 PM 10/24/2011 Executing "drive s1 -90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -90.00000
+
+Drive completed.
+
+
+2:52:33 PM 10/24/2011 Executing "drive s2 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 0.00000
+
+Drive completed.
+
+
+2:53:38 PM 10/24/2011 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.49021
+s1 -9.29748
+sgl -2.73870
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:55:18 PM 10/24/2011 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive completed.
+
+
+2:57:03 PM 10/24/2011 Executing "drive s1 67"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 67.00000
+
+Drive completed.
+
+
+2:57:18 PM 10/24/2011 Executing "drive s1 65"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 65.00000
+
+Drive completed.
+
+
+2:57:25 PM 10/24/2011 Executing "drive s1 65.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 65.50000
+
+Drive completed.
+
+
+2:57:30 PM 10/24/2011 Executing "drive s1 65.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 65.20000
+
+Drive completed.
+
+
+2:57:37 PM 10/24/2011 Executing "drive s1 64.8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 64.80000
+
+Drive completed.
+
+
+2:58:06 PM 10/24/2011 Executing "scantitle "Bi (0.5 0 2) room temperature inside CCR check""
+
+Setting the scantitle to:
+Bi (0.5 0 2) room temperature inside CCR check
+
+
+2:58:16 PM 10/24/2011 Executing "scan s1 @(s1)+-2 @(s1)+2 0.100000"
+ Derived from "scanrel s1 -2 2 0.1"
+
+
+# scan = 16
+# date = 10/24/2011
+# time = 2:58:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -2 2 0.1
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0.5 0 2) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.010837,0.005083,-0.084043,-0.253548,-0.126774,0.003600,0.000518,0.219788,0.004020
+# mode = 0
+# plane_normal = 0.047781,0.000000,0.998858
+# ubconf = UB24Oct2011_25015PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 62.8000 1.000 30.000 2297.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4779 0.0000 2.0486 5.0000 5.0000 0.0000 298.3790 297.2700 300.4510 293.8110 300.000
+ 2 62.9000 1.000 31.000 2289.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4790 0.0000 2.0460 5.0000 5.0000 0.0000 298.3800 297.2710 300.4310 293.8070 300.000
+ 3 63.0000 1.000 41.000 2291.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4802 0.0000 2.0435 5.0000 5.0000 0.0000 298.3800 297.2720 300.4180 293.8590 300.000
+ 4 63.1000 1.000 50.000 2297.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4814 0.0000 2.0410 5.0000 5.0000 0.0000 298.3810 297.2730 300.4010 293.8200 300.000
+ 5 63.2000 1.000 49.000 2287.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4826 0.0000 2.0385 5.0000 5.0000 0.0000 298.3830 297.2740 300.3750 293.7510 300.000
+ 6 63.3000 1.000 58.000 2320.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4838 0.0000 2.0359 5.0000 5.0000 0.0000 298.3860 297.2740 300.3610 293.7790 300.000
+ 7 63.4000 1.000 94.000 2336.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4850 0.0000 2.0334 5.0000 5.0000 0.0000 298.3840 297.2730 300.3480 293.8560 300.000
+ 8 63.5000 1.000 78.000 2330.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4861 0.0000 2.0308 5.0000 5.0000 0.0000 298.3810 297.2730 300.3320 293.9220 300.000
+ 9 63.6000 1.000 114.000 2253.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4873 0.0000 2.0283 5.0000 5.0000 0.0000 298.3800 297.2730 300.3130 293.9820 300.000
+ 10 63.7000 1.000 137.000 2228.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4885 0.0000 2.0257 5.0000 5.0000 0.0000 298.3790 297.2740 300.3020 293.9620 300.000
+ 11 63.8000 1.000 173.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4897 0.0000 2.0231 5.0000 5.0000 0.0000 298.3810 297.2760 300.2800 293.9110 300.000
+ 12 63.9000 1.000 237.000 2292.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4908 0.0000 2.0205 5.0000 5.0000 0.0000 298.3820 297.2770 300.2560 293.9010 300.000
+ 13 64.0000 1.000 274.000 2328.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4920 0.0000 2.0179 5.0000 5.0000 0.0000 298.3820 297.2770 300.2410 293.8820 300.000
+ 14 64.1000 1.000 430.000 2327.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4932 0.0000 2.0154 5.0000 5.0000 0.0000 298.3820 297.2760 300.2290 293.9340 300.000
+ 15 64.2000 1.000 729.000 2285.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4943 0.0000 2.0128 5.0000 5.0000 0.0000 298.3810 297.2770 300.2150 293.9060 300.000
+ 16 64.3000 1.000 1435.000 2330.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4955 0.0000 2.0102 5.0000 5.0000 0.0000 298.3790 297.2760 300.2020 293.9900 300.000
+ 17 64.4000 1.000 3256.000 2231.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4967 0.0000 2.0075 5.0000 5.0000 0.0000 298.3820 297.2780 300.1850 293.8710 300.000
+ 18 64.5000 1.000 7491.000 2315.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4978 0.0000 2.0049 5.0000 5.0000 0.0000 298.3800 297.2780 300.1690 293.9440 300.000
+ 19 64.6000 1.000 12713.000 2345.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.4990 0.0000 2.0023 5.0000 5.0000 0.0000 298.3820 297.2780 300.1520 293.8880 300.000
+ 20 64.7000 1.000 14242.000 2234.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5001 0.0000 1.9997 5.0000 5.0000 0.0000 298.3820 297.2790 300.1320 293.8570 300.000
+ 21 64.8000 1.000 9690.000 2329.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5013 0.0000 1.9971 5.0000 5.0000 0.0000 298.3810 297.2790 300.1170 293.9590 300.000
+ 22 64.9000 1.000 4667.000 2326.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5025 0.0000 1.9944 5.0000 5.0000 0.0000 298.3800 297.2790 300.1000 293.9780 300.000
+ 23 65.0000 1.000 2180.000 2341.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5036 0.0000 1.9918 5.0000 5.0000 0.0000 298.3800 297.2800 300.0820 293.9570 300.000
+ 24 65.1000 1.000 1148.000 2240.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5048 0.0000 1.9891 5.0000 5.0000 0.0000 298.3790 297.2800 300.0630 294.0240 300.000
+ 25 65.2000 1.000 605.000 2245.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5059 0.0000 1.9865 5.0000 5.0000 0.0000 298.3800 297.2810 300.0490 293.9900 300.000
+ 26 65.3000 1.000 354.000 2311.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5071 0.0000 1.9838 5.0000 5.0000 0.0000 298.3800 297.2810 300.0340 294.0110 300.000
+ 27 65.4000 1.000 261.000 2237.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5082 0.0000 1.9811 5.0000 5.0000 0.0000 298.3780 297.2800 300.0180 294.0760 300.000
+ 28 65.5000 1.000 175.000 2200.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5094 0.0000 1.9784 5.0000 5.0000 0.0000 298.3780 297.2810 300.0070 294.0590 300.000
+ 29 65.6000 1.000 116.000 2279.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5105 0.0000 1.9758 5.0000 5.0000 0.0000 298.3800 297.2810 299.9900 293.9850 300.000
+ 30 65.7000 1.000 91.000 2283.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5116 0.0000 1.9731 5.0000 5.0000 0.0000 298.3790 297.2820 299.9760 294.0070 300.000
+ 31 65.8000 1.000 79.000 2281.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5128 0.0000 1.9704 5.0000 5.0000 0.0000 298.3820 297.2830 299.9550 293.9310 300.000
+ 32 65.9000 1.000 55.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5139 0.0000 1.9677 5.0000 5.0000 0.0000 298.3800 297.2830 299.9430 294.0150 300.000
+ 33 66.0000 1.000 42.000 2246.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5151 0.0000 1.9650 5.0000 5.0000 0.0000 298.3790 297.2840 299.9300 294.0400 300.000
+ 34 66.1000 1.000 31.000 2210.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5162 0.0000 1.9623 5.0000 5.0000 0.0000 298.3810 297.2840 299.9120 294.0010 300.000
+ 35 66.2000 1.000 30.000 2338.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5173 0.0000 1.9595 5.0000 5.0000 0.0000 298.3790 297.2840 299.8990 294.0510 300.000
+ 36 66.3000 1.000 21.000 2285.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5185 0.0000 1.9568 5.0000 5.0000 0.0000 298.3770 297.2840 299.8830 294.1000 300.000
+ 37 66.4000 1.000 22.000 2349.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5196 0.0000 1.9541 5.0000 5.0000 0.0000 298.3790 297.2850 299.8620 294.0160 300.000
+ 38 66.5000 1.000 12.000 2294.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5207 0.0000 1.9514 5.0000 5.0000 0.0000 298.3780 297.2850 299.8490 294.0180 300.000
+ 39 66.6000 1.000 14.000 2366.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5219 0.0000 1.9486 5.0000 5.0000 0.0000 298.3800 297.2860 299.8270 293.9670 300.000
+ 40 66.7000 1.000 14.000 2250.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5230 0.0000 1.9459 5.0000 5.0000 0.0000 298.3820 297.2860 299.8220 293.9110 300.000
+ 41 66.8000 1.000 12.000 2299.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.4902 -2.7387 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3250 -0.5241 0.0000 1.9431 5.0000 5.0000 0.0000 298.3790 297.2860 299.8110 294.0190 300.000
+# Sum of Counts = 61281
+# Center of Mass = 64.669674+/-0.369449
+# Full Width Half-Maximum = 0.567740+/-0.118385
+# 2:59:23 PM 10/24/2011 scan completed.
+
+2:59:23 PM 10/24/2011 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -2 2 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 64.80000
+
+Drive completed.
+
+
+2:59:48 PM 10/24/2011 Executing "ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_25945PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp25\UBConf\tmp\UB24Oct2011_25945PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=1.000 k1=0.000 l1=0.000 h2=0.000 k2=0.000 l2=1.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.4563 s2=33.1784 s1=-2.7387 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8742 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4563 33.1784 -2.7387 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4563 33.1784 -2.7387 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.2208 0.0290 1.5548 61.4563 33.1784 -2.7387 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_25948PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_25948PM.ini
+
+
+2:59:59 PM 10/24/2011 Executing "calc h 0.5 k 0 l 2 e 0"
+
+Calculating motor positions based on:
+h=0.50000 k=0.00000 l=2.00000 e=0.00000
+
+Resulting calculated motor positions:
+m2=-74.14280 m1=142.92860 a2=-74.14280 a1=142.92860 s2=50.49021 s1=64.68809 sgl=-2.73870 sgu=0.00000 mfocus=34.98513
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+3:00:41 PM 10/24/2011 Executing "drive s1 64.68809"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 64.68809
+
+Drive completed.
+
+
+3:01:08 PM 10/24/2011 Executing "ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_30106PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp25\UBConf\tmp\UB24Oct2011_30106PM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.4563 33.1784 -2.7387 0.0000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.4902 64.6881 -2.7387 0.0000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5500 b=4.5500 c=11.8742 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4563 33.1784 -2.7387 0.0000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.4902 64.6881 -2.7387 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4563 33.1784 -2.7387 0.0000 34.9851 -74.1428 142.9286
+ 0.5000 0.0000 2.0000 5.0000 5.0000 142.9286 50.4902 64.6881 -2.7387 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.2208 0.0290 1.5548 61.4563 33.1784 -2.7387 0.0000 5.0000 5.0000
+ -0.6585 0.0471 2.4880 50.4902 64.6881 -2.7387 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_30108PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_30108PM.ini
+
+
+3:01:24 PM 10/24/2011 Executing "scan sgu @(sgu)+-4 @(sgu)+4 0.500000"
+ Derived from "scanrel sgu -4 4 0.5"
+
+
+# scan = 17
+# date = 10/24/2011
+# time = 3:01:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel sgu -4 4 0.5
+# builtin_command = scan sgu @(sgu)+-4 @(sgu)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0.5 0 2) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253548,0.126774,0.003600,-0.000518,-0.219788,0.004020
+# mode = 0
+# plane_normal = 0.028751,0.000000,0.601027
+# ubconf = UB24Oct2011_30108PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 7352.000 2358.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5177 -0.0424 2.0048 5.0000 5.0000 0.0000 298.4410 297.3230 300.6020 293.2090 300.000
+ 2 -3.5000 1.000 8081.000 2316.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5156 -0.0371 2.0043 5.0000 5.0000 0.0000 298.4380 297.3250 300.6500 293.4110 300.000
+ 3 -3.0000 1.000 8595.000 2274.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5135 -0.0318 2.0037 5.0000 5.0000 0.0000 298.4410 297.3270 300.6930 293.5290 300.000
+ 4 -2.5000 1.000 9479.000 2369.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5114 -0.0265 2.0031 5.0000 5.0000 0.0000 298.4440 297.3290 300.7250 293.5250 300.000
+ 5 -2.0000 1.000 10795.000 2266.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5092 -0.0212 2.0025 5.0000 5.0000 0.0000 298.4500 297.3310 300.7470 293.3960 300.000
+ 6 -1.5000 1.000 12409.000 2198.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5070 -0.0159 2.0019 5.0000 5.0000 0.0000 298.4560 297.3330 300.7700 293.3610 300.000
+ 7 -1.0000 1.000 13260.000 2229.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5047 -0.0106 2.0012 5.0000 5.0000 0.0000 298.4640 297.3350 300.7870 293.2790 300.000
+ 8 -0.5000 1.000 13723.000 2242.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5024 -0.0053 2.0006 5.0000 5.0000 0.0000 298.4690 297.3370 300.8070 293.3380 300.000
+ 9 0.0000 1.000 14478.000 2363.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 298.4730 297.3390 300.8160 293.2590 300.000
+ 10 0.5001 1.000 14947.000 2308.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4976 0.0053 1.9994 5.0000 5.0000 0.0000 298.4770 297.3410 300.8160 293.2540 300.000
+ 11 1.0000 1.000 14710.000 2303.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4952 0.0106 1.9987 5.0000 5.0000 0.0000 298.4800 297.3420 300.8160 293.3480 300.000
+ 12 1.5000 1.000 14245.000 2242.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4927 0.0160 1.9981 5.0000 5.0000 0.0000 298.4820 297.3430 300.8010 293.3800 300.000
+ 13 2.0000 1.000 13055.000 2229.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4901 0.0213 1.9974 5.0000 5.0000 0.0000 298.4810 297.3440 300.7820 293.4860 300.000
+ 14 2.5000 1.000 11644.000 2301.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4876 0.0266 1.9968 5.0000 5.0000 0.0000 298.4850 297.3460 300.7660 293.3920 300.000
+ 15 3.0000 1.000 9433.000 2238.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4850 0.0319 1.9961 5.0000 5.0000 0.0000 298.4880 297.3480 300.7480 293.3550 300.000
+ 16 3.5000 1.000 7648.000 2254.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4823 0.0372 1.9955 5.0000 5.0000 0.0000 298.4930 297.3510 300.7300 293.3030 300.000
+ 17 4.0000 1.000 6019.000 2175.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6881 50.4902 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.3250 0.4796 0.0426 1.9948 5.0000 5.0000 0.0000 298.4990 297.3510 300.7010 293.2930 300.000
+# Sum of Counts = 189873
+# Center of Mass = 0.054860+/-0.004974
+# Full Width Half-Maximum = 4.332064+/-0.008978
+# 3:02:37 PM 10/24/2011 scan completed.
+
+3:02:37 PM 10/24/2011 Executing "drive sgu @(sgu)-4"
+ Derived from "scanrel sgu -4 4 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00002
+
+Drive completed.
+
+
+3:02:48 PM 10/24/2011 Executing "drive sgu 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.50000
+
+Drive completed.
+
+
+3:04:06 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:04:35 PM 10/24/2011 Executing "scantitle "Bi (0 0 3) room temperature inside CCR check""
+
+Setting the scantitle to:
+Bi (0 0 3) room temperature inside CCR check
+
+
+3:04:38 PM 10/24/2011 Executing "scan sgu @(sgu)+-4 @(sgu)+4 0.500000"
+ Derived from "scanrel sgu -4 4 0.5"
+
+
+# scan = 18
+# date = 10/24/2011
+# time = 3:04:38 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel sgu -4 4 0.5
+# builtin_command = scan sgu @(sgu)+-4 @(sgu)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253548,0.126774,0.003600,-0.000518,-0.219788,0.004020
+# mode = 0
+# plane_normal = 0.028751,0.000000,0.601027
+# ubconf = UB24Oct2011_30108PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 104268.000 2248.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0018 -0.0033 3.0000 5.0000 5.0000 0.0000 298.5230 297.3970 299.4360 293.3980 300.000
+ 2 -3.5000 1.000 108194.000 2357.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0015 -0.0029 3.0000 5.0000 5.0000 0.0000 298.5140 297.3880 299.5130 293.3520 300.000
+ 3 -3.0000 1.000 111875.000 2221.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0013 -0.0025 3.0000 5.0000 5.0000 0.0000 298.5150 297.3860 299.5200 293.2660 300.000
+ 4 -2.5000 1.000 115109.000 2221.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0011 -0.0021 3.0000 5.0000 5.0000 0.0000 298.5140 297.3860 299.5290 293.2820 300.000
+ 5 -2.0000 1.000 117165.000 2218.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0008 -0.0017 3.0000 5.0000 5.0000 0.0000 298.5130 297.3870 299.5260 293.2500 300.000
+ 6 -1.5000 1.000 119795.000 2411.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0006 -0.0013 3.0000 5.0000 5.0000 0.0000 298.5150 297.3870 299.5250 293.1940 300.000
+ 7 -1.0000 1.000 121866.000 2367.000 0.019 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0004 -0.0008 3.0000 5.0000 5.0000 0.0000 298.5160 297.3870 299.5370 293.1740 300.000
+ 8 -0.5000 1.000 122726.000 2219.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0002 -0.0004 3.0000 5.0000 5.0000 0.0000 298.5160 297.3880 299.5310 293.1490 300.000
+ 9 0.0000 1.000 122056.000 2294.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 298.5170 297.3880 299.5580 293.1220 300.000
+ 10 0.5000 1.000 121004.000 2329.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0002 0.0004 3.0000 5.0000 5.0000 0.0000 298.5160 297.3890 299.5740 293.0990 300.000
+ 11 1.0000 1.000 118563.000 2234.000 0.017 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0004 0.0009 3.0000 5.0000 5.0000 0.0000 298.5160 297.3890 299.6000 293.1330 300.000
+ 12 1.5000 1.000 115752.000 2290.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0006 0.0013 3.0000 5.0000 5.0000 0.0000 298.5130 297.3890 299.6480 293.1940 300.000
+ 13 2.0000 1.000 112136.000 2306.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0008 0.0017 3.0000 5.0000 5.0000 0.0000 298.5140 297.3890 299.6860 293.1790 300.000
+ 14 2.5000 1.000 108198.000 2321.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0009 0.0022 3.0000 5.0000 5.0000 0.0000 298.5160 297.3900 299.7400 293.2350 300.000
+ 15 3.0000 1.000 103532.000 2360.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0011 0.0026 3.0000 5.0000 5.0000 0.0000 298.5170 297.3910 299.8020 293.1770 300.000
+ 16 3.5000 1.000 97458.000 2288.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0013 0.0031 3.0000 5.0000 5.0000 0.0000 298.5200 297.3930 299.8570 293.1170 300.000
+ 17 4.0000 1.000 89903.000 2296.000 0.018 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1784 61.4563 -2.7387 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0014 0.0036 3.0000 5.0000 5.0000 0.0000 298.5230 297.3940 299.9220 293.1300 300.000
+# Sum of Counts = 1909600
+# Center of Mass = -0.082546+/-0.001715
+# Full Width Half-Maximum = 4.733324+/-0.003009
+# 3:05:51 PM 10/24/2011 scan completed.
+
+3:05:51 PM 10/24/2011 Executing "drive sgu @(sgu)-4"
+ Derived from "scanrel sgu -4 4 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+3:06:31 PM 10/24/2011 Executing "drive sgu 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.50000
+
+Drive completed.
+
+
+3:06:48 PM 10/24/2011 Executing "ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_30644PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp25\UBConf\tmp\UB24Oct2011_30644PM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.4563 33.1784 -2.7387 0.5000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.4902 64.6881 -2.7387 0.5000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5500 b=4.5500 c=11.8742 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4563 33.1784 -2.7387 0.5000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.4902 64.6881 -2.7387 0.5000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4563 33.1784 -2.7387 0.5000 34.9851 -74.1428 142.9286
+ 0.5000 0.0000 2.0000 5.0000 5.0000 142.9286 50.4902 64.6881 -2.7387 0.5000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.2243 0.0361 1.5539 61.4563 33.1784 -2.7387 0.5000 5.0000 5.0000
+ -0.6657 0.0617 2.4861 50.4902 64.6881 -2.7387 0.5000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_30648PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_30648PM.ini
+
+
+3:06:54 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:07:02 PM 10/24/2011 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.49021
+s1 64.68809
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:18:20 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:19:06 PM 10/24/2011 Executing "scantitle "Bi (0 0 3) room temperature inside CCR check with Be filter""
+
+Setting the scantitle to:
+Bi (0 0 3) room temperature inside CCR check with Be filter
+
+
+3:19:12 PM 10/24/2011 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 19
+# date = 10/24/2011
+# time = 3:19:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 32.1784 1.000 1211.000 1559.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 298.8000 297.6080 299.9060 293.4230 300.000
+ 2 32.2784 1.000 1593.000 1562.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 298.8010 297.6080 299.9000 293.3860 300.000
+ 3 32.3784 1.000 2093.000 1531.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 298.8010 297.6090 299.8880 293.3550 300.000
+ 4 32.4784 1.000 3167.000 1482.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 298.8010 297.6090 299.8710 293.3410 300.000
+ 5 32.5784 1.000 4979.000 1577.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 298.8000 297.6090 299.8530 293.3860 300.000
+ 6 32.6784 1.000 9431.000 1545.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 298.7980 297.6090 299.8380 293.4150 300.000
+ 7 32.7784 1.000 20300.000 1571.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 298.7960 297.6100 299.8230 293.4360 300.000
+ 8 32.8784 1.000 42527.000 1472.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 298.7940 297.6090 299.8210 293.5310 300.000
+ 9 32.9784 1.000 71004.000 1557.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 298.7960 297.6090 299.8040 293.4180 300.000
+ 10 33.0784 1.000 92248.000 1560.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 -0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 298.7960 297.6090 299.7890 293.4040 300.000
+ 11 33.1784 1.000 96512.000 1550.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 298.7950 297.6090 299.7860 293.3880 300.000
+ 12 33.2784 1.000 80378.000 1575.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 298.7960 297.6100 299.7720 293.3720 300.000
+ 13 33.3784 1.000 49979.000 1509.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 298.7960 297.6100 299.7670 293.3750 300.000
+ 14 33.4784 1.000 23689.000 1542.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 298.7950 297.6100 299.7570 293.3980 300.000
+ 15 33.5784 1.000 10902.000 1557.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 298.7960 297.6100 299.7420 293.3720 300.000
+ 16 33.6784 1.000 5381.000 1500.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 298.7940 297.6100 299.7210 293.4380 300.000
+ 17 33.7784 1.000 3090.000 1589.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 298.7910 297.6110 299.7050 293.4740 300.000
+ 18 33.8784 1.000 1886.000 1588.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 298.7930 297.6110 299.6910 293.3910 300.000
+ 19 33.9784 1.000 1254.000 1623.000 0.013 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 298.7930 297.6100 299.6670 293.3900 300.000
+ 20 34.0784 1.000 998.000 1612.000 0.013 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 298.7920 297.6100 299.6560 293.4040 300.000
+ 21 34.1784 1.000 724.000 1514.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.4563 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 298.7910 297.6100 299.6440 293.4360 300.000
+# Sum of Counts = 523346
+# Center of Mass = 33.139131+/-0.064784
+# Full Width Half-Maximum = 0.494318+/-0.027664
+# 3:19:47 PM 10/24/2011 scan completed.
+
+3:19:47 PM 10/24/2011 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 33.17836
+
+Drive completed.
+
+
+3:20:06 PM 10/24/2011 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 20
+# date = 10/24/2011
+# time = 3:20:06 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (0 0 3) room temperature inside CCR check with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.4563 32.1784 1.000 8.000 1457.000 0.011 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5406 0.0000 0.0000 2.9115 5.0000 5.0000 0.0000 298.7800 297.6100 299.5730 293.5700 300.000
+ 2 59.6563 32.2784 1.000 14.000 1528.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5453 0.0000 0.0000 2.9204 5.0000 5.0000 0.0000 298.7800 297.6090 299.5590 293.4790 300.000
+ 3 59.8563 32.3784 1.000 30.000 1567.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5500 0.0000 0.0000 2.9292 5.0000 5.0000 0.0000 298.7810 297.6100 299.5520 293.4080 300.000
+ 4 60.0563 32.4784 1.000 76.000 1570.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5547 0.0000 0.0000 2.9381 5.0000 5.0000 0.0000 298.7810 297.6100 299.5560 293.4070 300.000
+ 5 60.2563 32.5784 1.000 364.000 1557.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5594 0.0000 0.0000 2.9470 5.0000 5.0000 0.0000 298.7820 297.6100 299.5540 293.3280 300.000
+ 6 60.4563 32.6784 1.000 1756.000 1586.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5641 0.0000 0.0000 2.9558 5.0000 5.0000 0.0000 298.7820 297.6100 299.5520 293.3560 300.000
+ 7 60.6563 32.7784 1.000 8001.000 1582.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5688 0.0000 0.0000 2.9647 5.0000 5.0000 0.0000 298.7810 297.6110 299.5500 293.3440 300.000
+ 8 60.8563 32.8784 1.000 26543.000 1522.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5734 0.0000 0.0000 2.9735 5.0000 5.0000 0.0000 298.7830 297.6110 299.5510 293.3630 300.000
+ 9 61.0563 32.9784 1.000 56695.000 1520.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5781 0.0000 0.0000 2.9824 5.0000 5.0000 0.0000 298.7810 297.6110 299.5630 293.4320 300.000
+ 10 61.2563 33.0784 1.000 84843.000 1563.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5828 0.0000 0.0000 2.9912 5.0000 5.0000 0.0000 298.7800 297.6110 299.5710 293.4560 300.000
+ 11 61.4563 33.1784 1.000 95834.000 1576.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 298.7800 297.6120 299.5660 293.4380 300.000
+ 12 61.6563 33.2784 1.000 83642.000 1503.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5921 0.0000 0.0000 3.0088 5.0000 5.0000 0.0000 298.7800 297.6130 299.5790 293.3790 300.000
+ 13 61.8563 33.3784 1.000 50594.000 1512.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.5968 0.0000 0.0000 3.0176 5.0000 5.0000 0.0000 298.7790 297.6130 299.6090 293.3920 300.000
+ 14 62.0563 33.4784 1.000 18253.000 1558.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6014 0.0000 0.0000 3.0264 5.0000 5.0000 0.0000 298.7800 297.6120 299.6370 293.4130 300.000
+ 15 62.2563 33.5784 1.000 5152.000 1489.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6061 0.0000 0.0000 3.0352 5.0000 5.0000 0.0000 298.7790 297.6130 299.6530 293.4790 300.000
+ 16 62.4563 33.6784 1.000 1193.000 1465.000 0.011 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6107 0.0000 0.0000 3.0439 5.0000 5.0000 0.0000 298.7780 297.6130 299.6720 293.4750 300.000
+ 17 62.6563 33.7784 1.000 334.000 1546.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6153 0.0000 0.0000 3.0527 5.0000 5.0000 0.0000 298.7790 297.6130 299.7050 293.4390 300.000
+ 18 62.8563 33.8784 1.000 100.000 1518.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6200 0.0000 0.0000 3.0614 5.0000 5.0000 0.0000 298.7790 297.6130 299.7420 293.4220 300.000
+ 19 63.0563 33.9784 1.000 30.000 1506.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6246 0.0000 0.0000 3.0702 5.0000 5.0000 0.0000 298.7800 297.6140 299.7610 293.4670 300.000
+ 20 63.2563 34.0784 1.000 11.000 1591.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6292 0.0000 0.0000 3.0789 5.0000 5.0000 0.0000 298.7810 297.6140 299.7890 293.4310 300.000
+ 21 63.4563 34.1784 1.000 6.000 1551.000 0.012 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6338 0.0000 0.0000 3.0876 5.0000 5.0000 0.0000 298.7800 297.6140 299.8280 293.4310 300.000
+# Sum of Counts = 433479
+# Center of Mass = 61.432058+/-0.131956
+# Full Width Half-Maximum = 0.697913+/-0.076434
+# 3:20:58 PM 10/24/2011 scan completed.
+
+3:20:58 PM 10/24/2011 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 33.16623
+s2 61.43206
+
+Drive completed.
+
+
+3:21:20 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:21:54 PM 10/24/2011 Executing "ei 5"
+
+Setting the incident energy to 5.000meV and the configuration to "Fixed Ei".
+
+
+3:23:03 PM 10/24/2011 Executing "calc ef 10"
+
+Calculating motor positions based on:
+ef=10.00000
+
+Resulting calculated motor positions:
+a2=-50.45973 a1=154.77013
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+3:26:51 PM 10/24/2011 Executing "count preset time 60"
+
+3:26:51 PM 10/24/2011 Executing count command with preset channel "time" and preset value 60.00
+
+ time detector monitor mcu
+ 60.000 5758716.000 91593.000 0.717
+
+3:27:51 PM 10/24/2011 Count command completed.
+
+
+3:27:58 PM 10/24/2011 Executing "comment "The monitor count unit was set to @(methodreal0)" title "Setting the monitor count unit""
+ Derived from "mcu 91593"
+
+Setting the monitor count unit:
+The monitor count unit was set to 91593
+
+
+3:33:04 PM 10/24/2011 Executing "scantitle "Looking for some LA phonon in (003) along Z""
+
+Setting the scantitle to:
+Looking for some LA phonon in (003) along Z
+
+
+3:33:05 PM 10/24/2011 Executing "scan h 0 k 0 l 3.4 e -3.25 -1.75 0.25 preset mcu 1"
+
+
+# scan = 21
+# date = 10/24/2011
+# time = 3:33:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -3.25 -1.75 0.25 preset mcu 1
+# builtin_command = scan h 0 k 0 l 3.4 e -3.25 -1.75 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for some LA phonon in (003) along Z
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -3.2500 60.011 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.8167 59.3780 -2.7387 0.5000 0.0000 0.0000 152.0120 -55.9760 1.7991 5.0000 8.2500 298.9650 297.7520 300.6240 293.7400 300.000
+ 2 0.0000 0.0000 3.4000 -3.0000 59.796 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.1173 60.1649 -2.7387 0.5000 0.0000 0.0000 151.5388 -56.9223 1.7991 5.0000 8.0000 298.9750 297.7610 300.1600 293.5460 300.000
+ 3 0.0000 0.0000 3.4000 -2.7500 60.107 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.4279 60.9622 -2.7387 0.5000 0.0000 0.0000 151.0407 -57.9186 1.7991 5.0000 7.7500 298.9590 297.7640 299.6840 293.5760 300.000
+ 4 0.0000 0.0000 3.4000 -2.5000 59.711 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 61.7710 -2.7387 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7991 5.0000 7.5000 298.9430 297.7640 299.7590 293.5940 300.000
+ 5 0.0000 0.0000 3.4000 -2.2500 59.892 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.0831 62.5922 -2.7387 0.5000 0.0000 0.0000 149.9599 -60.0803 1.7991 5.0000 7.2500 298.9730 297.7790 300.6350 293.7860 300.000
+ 6 0.0000 0.0000 3.4000 -2.0000 60.172 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4298 63.4268 -2.7387 0.5000 0.0000 0.0000 149.3716 -61.2567 1.7991 5.0000 7.0000 299.0110 297.7950 300.6120 293.7120 300.000
+ 7 0.0000 0.0000 3.4000 -1.7500 60.313 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.7906 64.2762 -2.7387 0.5000 0.0000 0.0000 148.7471 -62.5057 1.7991 5.0000 6.7500 299.0150 297.8040 300.1240 293.8020 300.000
+# Sum of Counts = 66
+# Center of Mass = -2.412879+/-0.425239
+# Full Width Half-Maximum = 1.078342+/-0.384634
+# 3:40:45 PM 10/24/2011 scan completed.
+
+3:42:51 PM 10/24/2011 Executing "scan h 0 k 0 l 3.4 e -1.75 0.25 0.25 preset mcu 1"
+
+
+# scan = 22
+# date = 10/24/2011
+# time = 3:42:51 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -1.75 0.25 0.25 preset mcu 1
+# builtin_command = scan h 0 k 0 l 3.4 e -1.75 0.25 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for some LA phonon in (003) along Z
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -1.7500 60.539 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.7906 64.2762 -2.7387 0.5000 0.0000 0.0000 148.7471 -62.5057 1.7991 5.0000 6.7500 299.0150 297.8180 300.6110 293.8550 300.000
+ 2 0.0000 0.0000 3.4000 -1.5000 60.216 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1670 65.1418 -2.7387 0.5000 0.0000 0.0000 148.0824 -63.8352 1.7991 5.0000 6.5000 299.0490 297.8350 300.6370 293.9170 300.000
+ 3 0.0000 0.0000 3.4000 -1.2500 60.190 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.5603 66.0250 -2.7387 0.5000 0.0000 0.0000 147.3729 -65.2542 1.7991 5.0000 6.2500 299.0550 297.8420 300.1740 293.8530 300.000
+ 4 0.0000 0.0000 3.4000 -1.0000 60.101 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9718 66.9275 -2.7387 0.5000 0.0000 0.0000 146.6133 -66.7735 1.7991 5.0000 6.0000 299.0420 297.8420 299.7010 293.8280 300.000
+ 5 0.0000 0.0000 3.4000 -0.7500 60.061 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.4034 67.8513 -2.7387 0.5000 0.0000 0.0000 145.7973 -68.4055 1.7991 5.0000 5.7500 299.0160 297.8410 299.6870 293.8830 300.000
+ 6 0.0000 0.0000 3.4000 -0.5000 59.989 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8567 68.7985 -2.7387 0.5000 0.0000 0.0000 144.9174 -70.1652 1.7991 5.0000 5.5000 299.0440 297.8540 300.5930 293.9430 300.000
+ 7 0.0000 0.0000 3.4000 -0.2500 59.939 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.3339 69.7717 -2.7387 0.5000 0.0000 0.0000 143.9648 -72.0704 1.7991 5.0000 5.2500 299.0760 297.8690 300.6300 293.9610 300.000
+ 8 0.0000 0.0000 3.4000 0.0000 60.462 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8370 70.7737 -2.7387 0.5000 0.0000 0.0000 142.9286 -74.1428 1.7991 5.0000 5.0000 299.0860 297.8770 300.1850 293.9020 300.000
+ 9 0.0000 0.0000 3.4000 0.2500 60.147 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.3688 71.8078 -2.7387 0.5000 0.0000 0.0000 141.7955 -76.4090 1.7991 5.0000 4.7500 299.0640 297.8750 299.7270 294.0280 300.000
+# Sum of Counts = 126
+# Center of Mass = -0.972222+/-0.137229
+# Full Width Half-Maximum = 1.389048+/-0.151368
+# 3:52:27 PM 10/24/2011 scan completed.
+
+3:55:07 PM 10/24/2011 Executing "scan h 0 k 0 l 3.5 e -2.6 -0.6 0.2 preset mcu 2"
+
+
+# scan = 23
+# date = 10/24/2011
+# time = 3:55:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.5 e -2.6 -0.6 0.2 preset mcu 2
+# builtin_command = scan h 0 k 0 l 3.5 e -2.6 -0.6 0.2 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for some LA phonon in (003) along Z
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.5000 -2.6000 120.540 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.6632 63.5438 -2.7387 0.5000 0.0000 0.0000 150.7289 -58.5423 1.8520 5.0000 7.6000 299.1150 297.9060 300.3300 294.0230 300.000
+ 2 0.0000 0.0000 3.5000 -2.4000 120.034 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.7054 64.2112 -2.7387 0.5000 0.0000 0.0000 150.2968 -59.4063 1.8520 5.0000 7.4000 299.0820 297.9070 299.6100 294.0740 300.000
+ 3 0.0000 0.0000 3.5000 -2.2000 119.974 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7557 64.8880 -2.7387 0.5000 0.0000 0.0000 149.8450 -60.3101 1.8520 5.0000 7.2000 299.1170 297.9220 300.6390 293.9860 300.000
+ 4 0.0000 0.0000 3.5000 -2.0000 119.972 23.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.8148 65.5747 -2.7387 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8520 5.0000 7.0000 299.1310 297.9360 299.9770 293.9600 300.000
+ 5 0.0000 0.0000 3.5000 -1.8000 120.198 28.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.8832 66.2721 -2.7387 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8520 5.0000 6.8000 299.0990 297.9340 299.9050 293.9280 300.000
+ 6 0.0000 0.0000 3.5000 -1.6000 120.787 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.9617 66.9810 -2.7387 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8520 5.0000 6.6000 299.1510 297.9580 300.5540 294.1200 300.000
+ 7 0.0000 0.0000 3.5000 -1.4000 120.826 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.0508 67.7021 -2.7387 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8520 5.0000 6.4000 299.1300 297.9600 299.6740 294.0550 300.000
+ 8 0.0000 0.0000 3.5000 -1.2000 121.273 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.1514 68.4365 -2.7387 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8520 5.0000 6.2000 299.1420 297.9670 300.5740 294.0410 300.000
+ 9 0.0000 0.0000 3.5000 -1.0000 120.635 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.2641 69.1851 -2.7387 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8520 5.0000 6.0000 299.1740 297.9840 300.1550 294.0950 300.000
+ 10 0.0000 0.0000 3.5000 -0.8000 120.734 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.3899 69.9490 -2.7387 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8520 5.0000 5.8000 299.1370 297.9780 299.6580 294.0110 300.000
+ 11 0.0000 0.0000 3.5000 -0.6000 120.390 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.5296 70.7296 -2.7387 0.5000 0.0000 0.0000 145.2774 -69.4449 1.8520 5.0000 5.6000 299.1940 297.9980 300.6510 294.1290 300.000
+# Sum of Counts = 136
+# Center of Mass = -1.783824+/-0.221712
+# Full Width Half-Maximum = 1.133506+/-0.155970
+# 4:18:06 PM 10/24/2011 scan completed.
+
+4:22:01 PM 10/24/2011 Executing "scantitle "check focusing condition for LA in (003)""
+
+Setting the scantitle to:
+check focusing condition for LA in (003)
+
+
+4:23:12 PM 10/24/2011 Executing "scan h 0 k 0 l 2.6 e -2.5 -0.5 0.25 preset mcu 1"
+
+
+# scan = 24
+# date = 10/24/2011
+# time = 4:23:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 2.6 e -2.5 -0.5 0.25 preset mcu 1
+# builtin_command = scan h 0 k 0 l 2.6 e -2.5 -0.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = check focusing condition for LA in (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 2.6000 -2.5000 60.251 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 11.6899 45.5422 -2.7387 0.5000 0.0000 0.0000 150.5152 -58.9695 1.3758 5.0000 7.5000 299.2040 298.0270 299.8760 294.0330 300.000
+ 2 0.0000 0.0000 2.6000 -2.2500 60.431 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.3325 46.2434 -2.7387 0.5000 0.0000 0.0000 149.9599 -60.0804 1.3758 5.0000 7.2500 299.1900 298.0220 299.5830 293.8010 300.000
+ 3 0.0000 0.0000 2.6000 -2.0000 60.226 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.9842 46.9444 -2.7387 0.5000 0.0000 0.0000 149.3717 -61.2567 1.3758 5.0000 7.0000 299.1970 298.0230 300.2450 293.8660 300.000
+ 4 0.0000 0.0000 2.6000 -1.7500 59.831 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.6466 47.6452 -2.7387 0.5000 0.0000 0.0000 148.7470 -62.5057 1.3758 5.0000 6.7500 299.2280 298.0360 300.7120 294.0520 300.000
+ 5 0.0000 0.0000 2.6000 -1.5000 60.240 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.3213 48.3463 -2.7387 0.5000 0.0000 0.0000 148.0824 -63.8352 1.3758 5.0000 6.5000 299.2420 298.0450 300.4100 294.0000 300.000
+ 6 0.0000 0.0000 2.6000 -1.2500 60.436 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.0100 49.0478 -2.7387 0.5000 0.0000 0.0000 147.3729 -65.2542 1.3758 5.0000 6.2500 299.2270 298.0450 299.9340 294.2010 300.000
+ 7 0.0000 0.0000 2.6000 -1.0000 60.192 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.7146 49.7501 -2.7387 0.5000 0.0000 0.0000 146.6133 -66.7735 1.3758 5.0000 6.0000 299.2020 298.0400 299.6170 294.1720 300.000
+ 8 0.0000 0.0000 2.6000 -0.7500 60.227 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.4372 50.4534 -2.7387 0.5000 0.0000 0.0000 145.7973 -68.4055 1.3758 5.0000 5.7500 299.1960 298.0410 300.0320 294.1220 300.000
+ 9 0.0000 0.0000 2.6000 -0.5000 60.761 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.1798 51.1576 -2.7387 0.5000 0.0000 0.0000 144.9174 -70.1652 1.3758 5.0000 5.5000 299.2290 298.0530 300.6600 294.1540 300.000
+# Sum of Counts = 148
+# Center of Mass = -1.608108+/-0.192090
+# Full Width Half-Maximum = 1.075153+/-0.146889
+# 4:33:12 PM 10/24/2011 scan completed.
+
+4:36:31 PM 10/24/2011 Executing "scantitle "checking optical modes at Gamma (003)""
+
+Setting the scantitle to:
+checking optical modes at Gamma (003)
+
+
+4:37:48 PM 10/24/2011 Executing "scan h 0 k 0 l 3 e -6.5 -5.25 0.25 preset mcu 2"
+
+
+# scan = 25
+# date = 10/24/2011
+# time = 4:37:48 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3 e -6.5 -5.25 0.25 preset mcu 2
+# builtin_command = scan h 0 k 0 l 3 e -6.5 -5.25 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = checking optical modes at Gamma (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -6.5000 120.787 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.7355 41.9552 -2.7387 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5874 5.0000 11.5000 299.2480 298.0720 300.5640 294.0680 300.000
+ 2 0.0000 0.0000 3.0000 -6.2500 120.698 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.3248 42.6742 -2.7387 0.5000 0.0000 0.0000 156.3046 -47.3907 1.5874 5.0000 11.2500 299.2320 298.0730 299.7600 294.2420 300.000
+ 3 0.0000 0.0000 3.0000 -6.0000 120.702 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.9176 43.3919 -2.7387 0.5000 0.0000 0.0000 156.0200 -47.9596 1.5874 5.0000 11.0000 299.2230 298.0730 300.3760 294.1080 300.000
+ 4 0.0000 0.0000 3.0000 -5.7500 120.818 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.5130 44.1085 -2.7387 0.5000 0.0000 0.0000 155.7252 -48.5496 1.5874 5.0000 10.7500 299.2600 298.0890 300.2560 294.1230 300.000
+ 5 0.0000 0.0000 3.0000 -5.5000 120.947 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.8898 44.8245 -2.7387 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5874 5.0000 10.5000 299.2220 298.0820 299.6270 294.2080 300.000
+ 6 0.0000 0.0000 3.0000 -5.2500 120.780 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.2916 45.5404 -2.7387 0.5000 0.0000 0.0000 155.1010 -49.7981 1.5874 5.0000 10.2500 299.2570 298.0940 300.6500 294.1770 300.000
+# Sum of Counts = 38
+# Center of Mass = -5.809211+/-1.334653
+# Full Width Half-Maximum = 0.884324+/-1.159458
+# 4:50:32 PM 10/24/2011 scan completed.
+
+4:53:04 PM 10/24/2011 Executing "scan h 0 k 0 l 3 e -8.5 -7.0 0.25 preset mcu 2"
+
+
+# scan = 26
+# date = 10/24/2011
+# time = 4:53:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3 e -8.5 -7.0 0.25 preset mcu 2
+# builtin_command = scan h 0 k 0 l 3 e -8.5 -7.0 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = checking optical modes at Gamma (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -8.5000 120.915 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2607 36.0902 -2.7387 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5874 5.0000 13.5000 299.2390 298.1000 300.3640 294.1620 300.000
+ 2 0.0000 0.0000 3.0000 -8.2500 121.187 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7871 36.8392 -2.7387 0.5000 0.0000 0.0000 158.2657 -43.4686 1.5874 5.0000 13.2500 299.2810 298.1150 300.2870 294.1900 300.000
+ 3 0.0000 0.0000 3.0000 -8.0000 121.173 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3252 37.5825 -2.7387 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5874 5.0000 13.0000 299.2460 298.1100 299.6380 294.2330 300.000
+ 4 0.0000 0.0000 3.0000 -7.7500 121.438 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8737 38.3208 -2.7387 0.5000 0.0000 0.0000 157.8214 -44.3571 1.5874 5.0000 12.7500 299.2710 298.1170 300.6080 294.2970 300.000
+ 5 0.0000 0.0000 3.0000 -7.5000 120.629 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.4316 39.0545 -2.7387 0.5000 0.0000 0.0000 157.5889 -44.8224 1.5874 5.0000 12.5000 299.2770 298.1260 300.0270 294.2380 300.000
+ 6 0.0000 0.0000 3.0000 -7.2500 121.398 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.9977 39.7843 -2.7387 0.5000 0.0000 0.0000 157.3487 -45.3025 1.5874 5.0000 12.2500 299.2440 298.1160 299.8230 294.2180 300.000
+ 7 0.0000 0.0000 3.0000 -7.0000 121.149 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.5710 40.5106 -2.7387 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5874 5.0000 12.0000 299.2910 298.1320 300.5200 294.2740 300.000
+# Sum of Counts = 55
+# Center of Mass = -7.763636+/-1.482258
+# Full Width Half-Maximum = 1.080480+/-1.230422
+# 5:07:40 PM 10/24/2011 scan completed.
+
+5:14:08 PM 10/24/2011 Executing "scantitle "checking for TA modes in (003) along (h00)""
+
+Setting the scantitle to:
+checking for TA modes in (003) along (h00)
+
+
+5:14:35 PM 10/24/2011 Executing "scan h 0.2 k 0 l 3 e -3.0 -0.5 0.25 preset mcu 1"
+
+
+# scan = 27
+# date = 10/24/2011
+# time = 5:14:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.2 k 0 l 3 e -3.0 -0.5 0.25 preset mcu 1
+# builtin_command = scan h 0.2 k 0 l 3 e -3.0 -0.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = checking for TA modes in (003) along (h00)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.2000 0.0000 3.0000 -3.0000 60.734 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3046 53.2541 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.6192 5.0000 8.0000 299.2810 298.1390 300.1070 293.5680 300.000
+ 2 0.2000 0.0000 3.0000 -2.7500 60.540 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.7221 54.0018 -2.7386 0.5000 0.0000 0.0000 151.0407 -57.9186 1.6192 5.0000 7.7500 299.3150 298.1490 300.6450 293.6740 300.000
+ 3 0.2000 0.0000 3.0000 -2.5000 60.431 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.1491 54.7558 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6192 5.0000 7.5000 299.3290 298.1560 300.3820 293.6780 300.000
+ 4 0.2000 0.0000 3.0000 -2.2500 59.956 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.5866 55.5167 -2.7386 0.5000 0.0000 0.0000 149.9599 -60.0802 1.6192 5.0000 7.2500 299.3270 298.1570 299.9870 293.5650 300.000
+ 5 0.2000 0.0000 3.0000 -2.0000 60.478 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.0357 56.2852 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.6192 5.0000 7.0000 299.2970 298.1490 299.6450 293.7500 300.000
+ 6 0.2000 0.0000 3.0000 -1.7500 60.690 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4978 57.0622 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.6192 5.0000 6.7500 299.2770 298.1450 299.9610 294.1080 300.000
+ 7 0.2000 0.0000 3.0000 -1.5000 60.410 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.9740 57.8486 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6192 5.0000 6.5000 299.3100 298.1530 300.6040 294.0720 300.000
+ 8 0.2000 0.0000 3.0000 -1.2500 60.504 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.4660 58.6451 -2.7386 0.5000 0.0000 0.0000 147.3728 -65.2542 1.6192 5.0000 6.2500 299.3240 298.1600 300.4670 294.2420 300.000
+ 9 0.2000 0.0000 3.0000 -1.0000 60.413 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 38.9751 59.4530 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6192 5.0000 6.0000 299.3160 298.1630 300.0440 294.1280 300.000
+ 10 0.2000 0.0000 3.0000 -0.7500 60.455 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 40.5032 60.2733 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4056 1.6192 5.0000 5.7500 299.2910 298.1560 299.7050 294.3410 300.000
+ 11 0.2000 0.0000 3.0000 -0.5000 60.421 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.0520 61.1072 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6192 5.0000 5.5000 299.2770 298.1510 299.8090 294.2420 300.000
+# Sum of Counts = 70
+# Center of Mass = -2.360714+/-0.404388
+# Full Width Half-Maximum = 1.097516+/-0.286751
+# 5:26:34 PM 10/24/2011 scan completed.
+
+5:37:41 PM 10/24/2011 Executing "scan h 0.2 k 0 l 3 e -3.25 -1.6 0.15 preset mcu 2"
+
+
+# scan = 28
+# date = 10/24/2011
+# time = 5:37:41 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.2 k 0 l 3 e -3.25 -1.6 0.15 preset mcu 2
+# builtin_command = scan h 0.2 k 0 l 3 e -3.25 -1.6 0.15 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = checking for TA modes in (003) along (h00)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.2000 0.0000 3.0000 -3.2500 120.837 24.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.8954 52.5120 -2.7386 0.5000 0.0000 0.0000 152.0120 -55.9760 1.6192 5.0000 8.2500 299.3280 298.1730 300.6000 294.1540 300.000
+ 2 0.2000 0.0000 3.0000 -3.1000 121.687 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7399 52.9566 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.6192 5.0000 8.1000 299.3390 298.1800 300.0820 294.2680 300.000
+ 3 0.2000 0.0000 3.0000 -2.9500 121.447 37.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.5874 53.4032 -2.7386 0.5000 0.0000 0.0000 151.4411 -57.1174 1.6192 5.0000 7.9500 299.3050 298.1700 299.7010 294.0570 300.000
+ 4 0.2000 0.0000 3.0000 -2.8000 120.506 31.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.4379 53.8518 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6192 5.0000 7.8000 299.3490 298.1830 300.6130 294.2140 300.000
+ 5 0.2000 0.0000 3.0000 -2.6500 120.897 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.2918 54.3026 -2.7386 0.5000 0.0000 0.0000 150.8338 -58.3322 1.6192 5.0000 7.6500 299.3430 298.1860 299.9250 294.1920 300.000
+ 6 0.2000 0.0000 3.0000 -2.5000 121.076 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.1491 54.7558 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6192 5.0000 7.5000 299.3050 298.1750 300.0210 294.4180 300.000
+ 7 0.2000 0.0000 3.0000 -2.3500 121.268 27.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.0103 55.2114 -2.7386 0.5000 0.0000 0.0000 150.1858 -59.6284 1.6192 5.0000 7.3500 299.3490 298.1890 300.4270 294.4040 300.000
+ 8 0.2000 0.0000 3.0000 -2.2000 121.645 39.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.8754 55.6698 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.6192 5.0000 7.2000 299.3250 298.1820 299.7090 294.4140 300.000
+ 9 0.2000 0.0000 3.0000 -2.0500 121.475 41.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.7449 56.1309 -2.7386 0.5000 0.0000 0.0000 149.4921 -61.0158 1.6192 5.0000 7.0500 299.3260 298.1810 300.4570 294.3750 300.000
+ 10 0.2000 0.0000 3.0000 -1.9000 121.270 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6189 56.5950 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.6192 5.0000 6.9000 299.3510 298.1910 300.1990 294.2810 300.000
+ 11 0.2000 0.0000 3.0000 -1.7500 121.250 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4978 57.0622 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.6192 5.0000 6.7500 299.3070 298.1800 299.7130 294.6510 300.000
+ 12 0.2000 0.0000 3.0000 -1.6000 121.293 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.3817 57.5328 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.6192 5.0000 6.6000 299.3480 298.1910 300.5470 294.3130 300.000
+# Sum of Counts = 277
+# Center of Mass = -2.523285+/-0.216183
+# Full Width Half-Maximum = 0.920228+/-0.139183
+# 6:02:43 PM 10/24/2011 scan completed.
+
+6:04:35 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+6:08:15 PM 10/24/2011 Executing "scantitle "check LA phonon (0,0,3.4) phonon creation side""
+
+Setting the scantitle to:
+check LA phonon (0,0,3.4) phonon creation side
+
+
+6:08:23 PM 10/24/2011 Executing "scan h 0 k 0 l 3.4 e 1.0 2.0 0.2 preset mcu 1"
+
+
+# scan = 29
+# date = 10/24/2011
+# time = 6:08:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e 1.0 2.0 0.2 preset mcu 1
+# builtin_command = scan h 0 k 0 l 3.4 e 1.0 2.0 0.2 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = check LA phonon (0,0,3.4) phonon creation side
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 1.0000 60.084 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1660 75.1455 -2.7386 0.5000 0.0000 0.0000 137.6264 -84.7472 1.7991 5.0000 4.0000 299.3490 298.2010 299.8310 294.5270 300.000
+ 2 0.0000 0.0000 3.4000 1.2000 60.635 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.5055 76.1085 -2.7386 0.5000 0.0000 0.0000 136.2534 -87.4932 1.7991 5.0000 3.8000 299.3320 298.1910 299.6410 294.3550 300.000
+ 3 0.0000 0.0000 3.4000 1.4000 60.605 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 46.8750 77.1093 -2.7386 0.5000 0.0000 0.0000 134.7310 -90.5379 1.7991 5.0000 3.6000 299.3390 298.1920 300.3120 294.4390 300.000
+ 4 0.0000 0.0000 3.4000 1.6000 61.089 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.2774 78.1526 -2.7386 0.5000 0.0000 0.0000 133.0285 -93.9430 1.7991 5.0000 3.4000 299.3610 298.2020 300.5520 294.4850 300.000
+ 5 0.0000 0.0000 3.4000 1.8000 11.291 0.000 17185.000 0.188 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.7160 79.2441 -2.7386 0.5000 0.0000 0.0000 131.1045 -97.7912 1.7991 5.0000 3.2000 299.3680 298.2050 300.2120 294.3900 300.000
+# Sum of Counts = 19
+# Center of Mass = 1.252632+/-0.409623
+# Full Width Half-Maximum = 0.446594+/-0.419480
+# 6:13:14 PM 10/24/2011 scan stopped!!
+
+Abort issued!!
+
+6:13:40 PM 10/24/2011 Executing "scan h 0 k 0 l 2.6 e 1.0 2.0 0.2 preset mcu 1"
+
+
+# scan = 30
+# date = 10/24/2011
+# time = 6:13:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 2.6 e 1.0 2.0 0.2 preset mcu 1
+# builtin_command = scan h 0 k 0 l 2.6 e 1.0 2.0 0.2 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = check LA phonon (0,0,3.4) phonon creation side
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_30648PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 2.6000 1.0000 60.631 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.2122 55.4080 -2.7386 0.5000 0.0000 0.0000 137.6264 -84.7472 1.3758 5.0000 4.0000 299.3480 298.2040 299.8520 294.4460 300.000
+ 2 0.0000 0.0000 2.6000 1.2000 60.794 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.7832 55.9764 -2.7386 0.5000 0.0000 0.0000 136.2533 -87.4932 1.3758 5.0000 3.8000 299.3300 298.1940 299.6410 294.3950 300.000
+ 3 0.0000 0.0000 2.6000 1.4000 60.840 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.3852 56.5439 -2.7386 0.5000 0.0000 0.0000 134.7310 -90.5379 1.3758 5.0000 3.6000 299.3400 298.1920 300.2410 294.2790 300.000
+ 4 0.0000 0.0000 2.6000 1.6000 60.745 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0216 57.1101 -2.7386 0.5000 0.0000 0.0000 133.0285 -93.9430 1.3758 5.0000 3.4000 299.3690 298.1990 300.5630 294.3400 300.000
+ 5 0.0000 0.0000 2.6000 1.8000 60.777 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.6963 57.6738 -2.7386 0.5000 0.0000 0.0000 131.1045 -97.7911 1.3758 5.0000 3.2000 299.3690 298.2050 300.2450 294.4490 300.000
+ 6 0.0000 0.0000 2.6000 2.0000 60.463 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.4134 58.2336 -2.7386 0.5000 0.0000 0.0000 128.9018 -102.1965 1.3758 5.0000 3.0000 299.3540 298.2030 299.8290 294.3100 300.000
+# Sum of Counts = 41
+# Center of Mass = 1.551220+/-0.346460
+# Full Width Half-Maximum = 0.659818+/-0.294180
+# 6:20:39 PM 10/24/2011 scan completed.
+
+6:21:06 PM 10/24/2011 Executing "drive h 0 k 0 l 2.6 e 1.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -92.19081
+a1 133.90460
+s2 56.82723
+s1 40.19890
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+6:21:23 PM 10/24/2011 Executing "count preset mcu 1"
+
+6:21:23 PM 10/24/2011 Executing count command with preset channel "mcu" and preset value 1.00
+
+ time detector monitor mcu
+ 60.584 4.000 91593.000 1.000
+
+6:22:23 PM 10/24/2011 Count command completed.
+
+
+6:22:51 PM 10/24/2011 Executing "drive h 0 k 0 l 3.4 e -1.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -63.83521
+a1 148.08240
+s2 65.14179
+s1 29.16703
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+6:23:22 PM 10/24/2011 Executing "count preset mcu 1"
+
+6:23:22 PM 10/24/2011 Executing count command with preset channel "mcu" and preset value 1.00
+
+ time detector monitor mcu
+ 60.641 32.000 91593.000 1.000
+
+6:24:23 PM 10/24/2011 Count command completed.
+
+
+6:27:30 PM 10/24/2011 Executing "drive h 0 k 0 l 3.2 e -0.75"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -68.40549
+a1 145.79725
+s2 63.35714
+s1 30.88941
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+6:27:39 PM 10/24/2011 Executing "count preset mcu 1"
+
+6:27:39 PM 10/24/2011 Executing count command with preset channel "mcu" and preset value 1.00
+
+ time detector monitor mcu
+ 60.354 82.000 91593.000 1.000
+
+6:28:39 PM 10/24/2011 Count command completed.
+
+
+6:33:47 PM 10/24/2011 Executing "ubcalc file c:\user\exp25\ubconf\ub24oct2011_30648pm.ini"
+
+Setting the UB matrix using the configuration file "c:\user\exp25\ubconf\ub24oct2011_30648pm.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.4563 33.1784 -2.7387 0.5000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.4902 64.6881 -2.7387 0.5000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5500 b=4.5500 c=11.8742 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.4563 33.1784 -2.7387 0.5000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.4902 64.6881 -2.7387 0.5000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.4563 33.1784 -2.7387 0.5000 34.9851 -74.1428 142.9286
+ 0.5000 0.0000 2.0000 5.0000 5.0000 142.9286 50.4902 64.6881 -2.7387 0.5000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.2243 0.0361 1.5539 61.4563 33.1784 -2.7387 0.5000 5.0000 5.0000
+ -0.6657 0.0617 2.4861 50.4902 64.6881 -2.7387 0.5000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp25\UBConf\UB24Oct2011_63347PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp25\UBConf\UB24Oct2011_63347PM.ini
+
+
+6:33:52 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+6:38:16 PM 10/24/2011 Executing "drive h 1.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 1 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 76.05039
+s1 96.90331
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+6:52:59 PM 10/24/2011 Executing "drive s2 @(s2)+1"
+ Derived from "driverel s2 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 77.05040
+
+Drive completed.
+
+
+6:53:05 PM 10/24/2011 Executing "drive s2 @(s2)+1"
+ Derived from "driverel s2 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 78.05040
+
+Drive completed.
+
+
+6:53:09 PM 10/24/2011 Executing "drive s2 @(s2)+1"
+ Derived from "driverel s2 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 79.05040
+
+Drive completed.
+
+
+6:53:14 PM 10/24/2011 Executing "drive s2 @(s2)+1"
+ Derived from "driverel s2 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 80.05040
+
+Drive completed.
+
+
+6:53:25 PM 10/24/2011 Executing "drive s2 @(s2)+1"
+ Derived from "driverel s2 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 81.05040
+
+Drive completed.
+
+
+6:53:36 PM 10/24/2011 Executing "drive s2 @(s2)+1"
+ Derived from "driverel s2 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 82.05040
+
+Drive completed.
+
+
+6:53:43 PM 10/24/2011 Executing "drive s2 @(s2)+-51"
+ Derived from "driverel s2 -51"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 31.05040
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s2 79.31768
+
+
+Abort issued!!
+
+6:54:03 PM 10/24/2011 Executing "drive h 1.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 1 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 76.05039
+s1 96.90331
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+6:59:16 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+7:17:08 PM 10/24/2011 Executing "calc h 1 k 0 l -2 e 0"
+
+Calculating motor positions based on:
+h=1.00000 k=0.00000 l=-2.00000 e=0.00000
+
+Resulting calculated motor positions:
+m2=-74.14280 m1=142.92860 a2=-74.14280 a1=142.92860 s2=76.05039 s1=164.04748 sgl=-2.73870 sgu=0.50000 mfocus=34.98513
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+7:17:38 PM 10/24/2011 Executing "drive h -1.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br -1 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 76.05039
+s1 -15.95252
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+7:24:09 PM 10/24/2011 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.45630
+s1 33.17835
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+7:30:58 PM 10/24/2011 Executing "drive h -1.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br -1 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 76.05039
+s1 -15.95252
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+7:33:53 PM 10/24/2011 Executing "scantitle "Check LA phonon at (0,0,0.4) in (-1,0,2)""
+
+Setting the scantitle to:
+Check LA phonon at (0,0,0.4) in (-1,0,2)
+
+
+7:34:02 PM 10/24/2011 Executing "scan h -1 k 0 l 2.4 e -2.5 -0.5 0.25 preset mcu 1"
+
+
+# scan = 31
+# date = 10/24/2011
+# time = 7:34:02 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.4 e -2.5 -0.5 0.25 preset mcu 1
+# builtin_command = scan h -1 k 0 l 2.4 e -2.5 -0.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Check LA phonon at (0,0,0.4) in (-1,0,2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.4000 -2.5000 61.083 87.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2634 71.4834 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0385 5.0000 7.5000 299.3180 298.1540 300.1470 296.2460 300.000
+ 2 -1.0000 0.0000 2.4000 -2.2500 60.914 145.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0229 72.4073 -2.7386 0.5000 0.0000 0.0000 149.9598 -60.0802 2.0385 5.0000 7.2500 299.3480 298.1620 300.5550 296.2990 300.000
+ 3 -1.0000 0.0000 2.4000 -2.0000 61.016 775.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7672 73.3533 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2568 2.0385 5.0000 7.0000 299.3920 298.1790 300.2830 294.5680 300.000
+ 4 -1.0000 0.0000 2.4000 -1.7500 60.876 529.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.4954 74.3233 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 2.0385 5.0000 6.7500 299.4260 298.1820 299.8800 293.6970 300.000
+ 5 -1.0000 0.0000 2.4000 -1.5000 60.956 579.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2059 75.3194 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0385 5.0000 6.5000 299.3930 298.1760 299.6250 293.9800 300.000
+ 6 -1.0000 0.0000 2.4000 -1.2500 60.945 173.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8975 76.3442 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 2.0385 5.0000 6.2500 299.3980 298.1710 300.1450 293.7720 300.000
+ 7 -1.0000 0.0000 2.4000 -1.0000 60.922 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5685 77.4005 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0385 5.0000 6.0000 299.4140 298.1770 300.6320 294.2200 300.000
+ 8 -1.0000 0.0000 2.4000 -0.7500 60.874 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2172 78.4914 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 2.0385 5.0000 5.7500 299.4370 298.1830 300.3550 293.8800 300.000
+ 9 -1.0000 0.0000 2.4000 -0.5000 60.920 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.8416 79.6208 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.0385 5.0000 5.5000 299.4230 298.1830 299.9670 293.8730 300.000
+# Sum of Counts = 2390
+# Center of Mass = -1.751151+/-0.051190
+# Full Width Half-Maximum = 0.720366+/-0.037169
+# 7:43:57 PM 10/24/2011 scan completed.
+
+7:46:07 PM 10/24/2011 Executing "scan h -1 k 0 l 2.4 e -2.5 -1.0 0.1 preset mcu 0.5"
+
+
+# scan = 32
+# date = 10/24/2011
+# time = 7:46:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.4 e -2.5 -1.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.4 e -2.5 -1.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Check LA phonon at (0,0,0.4) in (-1,0,2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.4000 -2.5000 30.338 47.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2634 71.4834 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0385 5.0000 7.5000 299.3510 298.1540 300.6910 296.3280 300.000
+ 2 -1.0000 0.0000 2.4000 -2.4000 30.311 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7690 71.8504 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.0385 5.0000 7.4000 299.3590 298.1580 300.6270 296.3670 300.000
+ 3 -1.0000 0.0000 2.4000 -2.3000 30.649 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2722 72.2208 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0385 5.0000 7.3000 299.3630 298.1610 300.4550 296.3530 300.000
+ 4 -1.0000 0.0000 2.4000 -2.2000 30.410 90.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7730 72.5947 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.0385 5.0000 7.2000 299.3610 298.1610 300.2470 296.3750 300.000
+ 5 -1.0000 0.0000 2.4000 -2.1000 30.613 215.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2714 72.9722 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0385 5.0000 7.1000 299.3550 298.1600 300.0580 296.3530 300.000
+ 6 -1.0000 0.0000 2.4000 -2.0000 30.571 388.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7672 73.3533 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0385 5.0000 7.0000 299.3510 298.1590 299.8220 296.1590 300.000
+ 7 -1.0000 0.0000 2.4000 -1.9000 30.518 484.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2605 73.7383 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0385 5.0000 6.9000 299.3510 298.1620 299.6670 295.3670 300.000
+ 8 -1.0000 0.0000 2.4000 -1.8000 30.559 318.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7511 74.1272 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0385 5.0000 6.8000 299.3550 298.1630 299.6370 294.7790 300.000
+ 9 -1.0000 0.0000 2.4000 -1.7000 30.381 197.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.2389 74.5203 -2.7386 0.5000 0.0000 0.0000 148.6174 -62.7649 2.0385 5.0000 6.7000 299.3770 298.1630 299.8800 294.2510 300.000
+ 10 -1.0000 0.0000 2.4000 -1.6000 30.454 203.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7239 74.9177 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.0385 5.0000 6.6000 299.3900 298.1650 300.3230 294.1360 300.000
+ 11 -1.0000 0.0000 2.4000 -1.5000 30.354 296.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2059 75.3194 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0385 5.0000 6.5000 299.3990 298.1690 300.5900 294.3570 300.000
+ 12 -1.0000 0.0000 2.4000 -1.4000 30.556 338.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6849 75.7257 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.0385 5.0000 6.4000 299.4040 298.1700 300.6330 294.5940 300.000
+ 13 -1.0000 0.0000 2.4000 -1.3000 30.490 145.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1608 76.1368 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0385 5.0000 6.3000 299.4090 298.1750 300.4930 294.5240 300.000
+ 14 -1.0000 0.0000 2.4000 -1.2000 30.365 82.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.6334 76.5528 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0385 5.0000 6.2000 299.4120 298.1750 300.3050 294.5460 300.000
+ 15 -1.0000 0.0000 2.4000 -1.1000 30.899 48.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1026 76.9740 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1531 2.0385 5.0000 6.1000 299.4070 298.1740 300.0660 294.5400 300.000
+ 16 -1.0000 0.0000 2.4000 -1.0000 30.361 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5685 77.4005 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0385 5.0000 6.0000 299.3980 298.1710 299.8810 294.5510 300.000
+# Sum of Counts = 2941
+# Center of Mass = -1.745087+/-0.045864
+# Full Width Half-Maximum = 0.619288+/-0.025420
+# 7:55:09 PM 10/24/2011 scan completed.
+
+8:31:29 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.1)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.1)
+
+
+8:31:29 PM 10/24/2011 Executing "scan h -1 k 0 l 2.1 e -1.0 0.4 0.1 preset mcu 0.25"
+
+
+# scan = 33
+# date = 10/24/2011
+# time = 8:31:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.1 e -1.0 0.4 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.1 e -1.0 0.4 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.1000 -1.0000 15.099 219.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6080 73.1638 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9435 5.0000 6.0000 299.2420 296.2450 300.0390 294.4320 300.000
+ 2 -1.0000 0.0000 2.1000 -0.9000 15.323 373.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0598 73.5682 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.9435 5.0000 5.9000 299.1890 296.2430 300.1480 295.9020 300.000
+ 3 -1.0000 0.0000 2.1000 -0.8000 15.293 678.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.5081 73.9773 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.9435 5.0000 5.8000 299.1800 296.2540 300.0310 296.0050 300.000
+ 4 -1.0000 0.0000 2.1000 -0.7000 15.219 1044.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9528 74.3915 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.9435 5.0000 5.7000 299.1740 296.2670 299.8790 295.9490 300.000
+ 5 -1.0000 0.0000 2.1000 -0.6000 15.293 1727.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.3937 74.8109 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.9435 5.0000 5.6000 299.1670 296.2770 299.7600 295.9910 300.000
+ 6 -1.0000 0.0000 2.1000 -0.5000 15.239 2064.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.8307 75.2358 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.9435 5.0000 5.5000 299.1600 296.2880 299.6370 295.9710 300.000
+ 7 -1.0000 0.0000 2.1000 -0.4000 15.497 5233.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2638 75.6663 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.9435 5.0000 5.4000 299.1520 296.2990 299.5540 295.9600 300.000
+ 8 -1.0000 0.0000 2.1000 -0.3000 15.065 20134.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6926 76.1028 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 1.9435 5.0000 5.3000 299.1440 296.3110 299.5670 295.8460 300.000
+ 9 -1.0000 0.0000 2.1000 -0.2000 15.256 4549.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1171 76.5455 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 1.9435 5.0000 5.2000 299.1410 296.3230 299.7010 295.8440 300.000
+ 10 -1.0000 0.0000 2.1000 -0.1000 15.359 1358.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.5372 76.9947 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 1.9435 5.0000 5.1000 299.1410 296.3370 299.9510 295.7540 300.000
+ 11 -1.0000 0.0000 2.1000 0.0000 15.270 491.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9526 77.4506 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 1.9435 5.0000 5.0000 299.1470 296.3510 300.2680 295.7140 300.000
+ 12 -1.0000 0.0000 2.1000 0.1000 15.179 384.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3632 77.9137 -2.7386 0.5000 0.0000 0.0000 142.4878 -75.0243 1.9435 5.0000 4.9000 299.1540 296.3640 300.5550 295.8140 300.000
+ 13 -1.0000 0.0000 2.1000 0.2000 15.378 472.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7687 78.3842 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 1.9435 5.0000 4.8000 299.1640 296.3810 300.7440 295.8680 300.000
+ 14 -1.0000 0.0000 2.1000 0.3000 15.284 674.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1691 78.8624 -2.7386 0.5000 0.0000 0.0000 141.5559 -76.8882 1.9435 5.0000 4.7000 299.1720 296.3960 300.7990 295.8600 300.000
+ 15 -1.0000 0.0000 2.1000 0.4000 15.269 862.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5640 79.3489 -2.7386 0.5000 0.0000 0.0000 141.0625 -77.8750 1.9435 5.0000 4.6000 299.1800 296.4110 300.7830 295.8070 300.000
+# Sum of Counts = 40262
+# Center of Mass = -0.307866+/-0.002419
+# Full Width Half-Maximum = 0.429226+/-0.002987
+# 8:36:09 PM 10/24/2011 scan completed.
+
+8:36:09 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.2)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.2)
+
+
+8:36:09 PM 10/24/2011 Executing "scan h -1 k 0 l 2.2 e -1.3 0.4 0.1 preset mcu 0.25"
+
+
+# scan = 34
+# date = 10/24/2011
+# time = 8:36:09 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.2 e -1.3 0.4 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.2 e -1.3 0.4 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.2000 -1.3000 15.285 238.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.1964 73.3122 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9743 5.0000 6.3000 299.1850 296.4310 300.6640 296.0370 300.000
+ 2 -1.0000 0.0000 2.2000 -1.2000 15.119 309.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6619 73.7110 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9743 5.0000 6.2000 299.1870 296.4460 300.5480 296.0090 300.000
+ 3 -1.0000 0.0000 2.2000 -1.1000 15.436 521.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1242 74.1143 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9743 5.0000 6.1000 299.1870 296.4580 300.4180 295.9730 300.000
+ 4 -1.0000 0.0000 2.2000 -1.0000 15.243 689.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5832 74.5224 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9743 5.0000 6.0000 299.1840 296.4700 300.2830 295.9690 300.000
+ 5 -1.0000 0.0000 2.2000 -0.9000 15.127 490.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.0388 74.9354 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.9743 5.0000 5.9000 299.1840 296.4840 300.1260 295.8140 300.000
+ 6 -1.0000 0.0000 2.2000 -0.8000 15.297 491.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.4907 75.3535 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.9743 5.0000 5.8000 299.1770 296.4910 300.0040 295.9430 300.000
+ 7 -1.0000 0.0000 2.2000 -0.7000 15.340 1763.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9390 75.7770 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.9743 5.0000 5.7000 299.1860 296.5060 299.7850 295.5080 300.000
+ 8 -1.0000 0.0000 2.2000 -0.6000 15.195 570.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3835 76.2060 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.9743 5.0000 5.6000 299.2090 296.5290 299.4340 294.3460 300.000
+ 9 -1.0000 0.0000 2.2000 -0.5000 15.253 210.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8240 76.6408 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.9743 5.0000 5.5000 299.1910 296.5350 299.4470 294.8400 300.000
+ 10 -1.0000 0.0000 2.2000 -0.4000 15.215 85.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2605 77.0817 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.9743 5.0000 5.4000 299.1710 296.5380 299.4940 295.2720 300.000
+ 11 -1.0000 0.0000 2.2000 -0.3000 15.213 45.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.6927 77.5288 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.9743 5.0000 5.3000 299.1650 296.5520 299.4510 294.7160 300.000
+ 12 -1.0000 0.0000 2.2000 -0.2000 15.467 47.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1205 77.9826 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 1.9743 5.0000 5.2000 299.1650 296.5580 299.6910 295.1600 300.000
+ 13 -1.0000 0.0000 2.2000 -0.1000 15.408 53.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.5438 78.4432 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 1.9743 5.0000 5.1000 299.1710 296.5750 299.9010 294.5740 300.000
+ 14 -1.0000 0.0000 2.2000 0.0000 15.260 68.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.9624 78.9111 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 1.9743 5.0000 5.0000 299.1660 296.5790 300.3550 295.4320 300.000
+ 15 -1.0000 0.0000 2.2000 0.1000 15.203 41.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.3760 79.3865 -2.7386 0.5000 0.0000 0.0000 142.4877 -75.0243 1.9743 5.0000 4.9000 299.1910 296.6010 300.4820 294.7290 300.000
+ 16 -1.0000 0.0000 2.2000 0.2000 15.150 49.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7846 79.8698 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 1.9743 5.0000 4.8000 299.1980 296.6090 300.7080 295.2360 300.000
+ 17 -1.0000 0.0000 2.2000 0.3000 15.283 30.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.1879 80.3614 -2.7386 0.5000 0.0000 0.0000 141.5559 -76.8882 1.9743 5.0000 4.7000 299.1950 296.6220 300.7540 295.3710 300.000
+ 18 -1.0000 0.0000 2.2000 0.4000 15.243 44.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5857 80.8617 -2.7386 0.5000 0.0000 0.0000 141.0625 -77.8750 1.9743 5.0000 4.6000 299.2030 296.6320 300.7590 295.5330 300.000
+# Sum of Counts = 5743
+# Center of Mass = -0.779889+/-0.015104
+# Full Width Half-Maximum = 0.612384+/-0.012074
+# 8:41:50 PM 10/24/2011 scan completed.
+
+8:41:50 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.6)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.6)
+
+
+8:41:50 PM 10/24/2011 Executing "scan h -1 k 0 l 2.6 e -6.5 -2.0 0.1 preset mcu 0.5"
+
+
+# scan = 35
+# date = 10/24/2011
+# time = 8:41:50 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -6.5 -2.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -6.5 -2.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -6.5000 30.513 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.3152 61.1862 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.1060 5.0000 11.5000 299.1890 296.6570 300.5500 296.0550 300.000
+ 2 -1.0000 0.0000 2.6000 -6.4000 30.440 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.8837 61.4809 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.1060 5.0000 11.4000 299.1860 296.6740 300.2940 296.0140 300.000
+ 3 -1.0000 0.0000 2.6000 -6.3000 30.475 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.4515 61.7768 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.1060 5.0000 11.3000 299.1790 296.6900 300.0520 295.9730 300.000
+ 4 -1.0000 0.0000 2.6000 -6.2000 30.534 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.0186 62.0739 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.1060 5.0000 11.2000 299.1660 296.7050 299.8320 296.0030 300.000
+ 5 -1.0000 0.0000 2.6000 -6.1000 30.355 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5850 62.3722 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.1060 5.0000 11.1000 299.1520 296.7170 299.6150 295.9450 300.000
+ 6 -1.0000 0.0000 2.6000 -6.0000 30.414 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.1505 62.6718 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.1060 5.0000 11.0000 299.1370 296.7290 299.5730 295.9190 300.000
+ 7 -1.0000 0.0000 2.6000 -5.9000 30.685 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.7153 62.9727 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.1060 5.0000 10.9000 299.1310 296.7430 299.8840 295.9590 300.000
+ 8 -1.0000 0.0000 2.6000 -5.8000 30.685 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2792 63.2749 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.1060 5.0000 10.8000 299.1430 296.7620 300.4550 295.9800 300.000
+ 9 -1.0000 0.0000 2.6000 -5.7000 30.240 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.8424 63.5785 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.1060 5.0000 10.7000 299.1600 296.7830 300.7960 295.9920 300.000
+ 10 -1.0000 0.0000 2.6000 -5.6000 30.440 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.4046 63.8836 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.1060 5.0000 10.6000 299.1720 296.8030 300.8030 295.9940 300.000
+ 11 -1.0000 0.0000 2.6000 -5.5000 30.344 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.9658 64.1901 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.1060 5.0000 10.5000 299.1790 296.8220 300.6530 296.0010 300.000
+ 12 -1.0000 0.0000 2.6000 -5.4000 30.470 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.5262 64.4981 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.1060 5.0000 10.4000 299.1830 296.8390 300.4330 295.9850 300.000
+ 13 -1.0000 0.0000 2.6000 -5.3000 30.193 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0855 64.8076 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.1060 5.0000 10.3000 299.1770 296.8530 300.1970 295.9800 300.000
+ 14 -1.0000 0.0000 2.6000 -5.2000 30.443 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6438 65.1187 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.1060 5.0000 10.2000 299.1690 296.8650 299.9470 295.9820 300.000
+ 15 -1.0000 0.0000 2.6000 -5.1000 30.544 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.2011 65.4315 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.1060 5.0000 10.1000 299.1560 296.8760 299.7230 295.9340 300.000
+ 16 -1.0000 0.0000 2.6000 -5.0000 30.290 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.7573 65.7459 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.1060 5.0000 10.0000 299.1430 296.8870 299.5730 295.8280 300.000
+ 17 -1.0000 0.0000 2.6000 -4.9000 30.511 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3124 66.0621 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.1060 5.0000 9.9000 299.1370 296.8990 299.6290 295.5920 300.000
+ 18 -1.0000 0.0000 2.6000 -4.8000 30.402 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8663 66.3800 -2.7386 0.5000 0.0000 0.0000 154.4956 -51.0086 2.1060 5.0000 9.8000 299.1320 296.9100 300.1140 295.8020 300.000
+ 19 -1.0000 0.0000 2.6000 -4.7000 30.552 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.4190 66.6998 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.1060 5.0000 9.7000 299.1440 296.9260 300.6070 295.8740 300.000
+ 20 -1.0000 0.0000 2.6000 -4.6000 30.667 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.9705 67.0214 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.1060 5.0000 9.6000 299.1600 296.9460 300.7800 295.8510 300.000
+ 21 -1.0000 0.0000 2.6000 -4.5000 30.578 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.5207 67.3450 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.1060 5.0000 9.5000 299.1740 296.9630 300.6980 295.8040 300.000
+ 22 -1.0000 0.0000 2.6000 -4.4000 30.454 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0696 67.6706 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.1060 5.0000 9.4000 299.1800 296.9790 300.4950 295.7530 300.000
+ 23 -1.0000 0.0000 2.6000 -4.3000 30.273 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6172 67.9982 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.1060 5.0000 9.3000 299.1730 296.9900 300.3100 295.9160 300.000
+ 24 -1.0000 0.0000 2.6000 -4.2000 30.422 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.1634 68.3279 -2.7386 0.5000 0.0000 0.0000 153.6150 -52.7696 2.1060 5.0000 9.2000 299.1680 297.0010 300.0620 295.8750 300.000
+ 25 -1.0000 0.0000 2.6000 -4.1000 30.462 58.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.7082 68.6597 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.1060 5.0000 9.1000 299.1600 297.0110 299.8270 295.7810 300.000
+ 26 -1.0000 0.0000 2.6000 -4.0000 30.351 65.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.2514 68.9938 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 2.1060 5.0000 9.0000 299.1520 297.0190 299.6310 295.6020 300.000
+ 27 -1.0000 0.0000 2.6000 -3.9000 30.663 61.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7932 69.3302 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 2.1060 5.0000 8.9000 299.1350 297.0240 299.5720 295.6780 300.000
+ 28 -1.0000 0.0000 2.6000 -3.8000 30.688 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3334 69.6690 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.1060 5.0000 8.8000 299.1290 297.0330 299.8460 295.6670 300.000
+ 29 -1.0000 0.0000 2.6000 -3.7000 30.490 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8720 70.0102 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.1060 5.0000 8.7000 299.1390 297.0450 300.3500 295.6980 300.000
+ 30 -1.0000 0.0000 2.6000 -3.6000 30.448 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4090 70.3538 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.1060 5.0000 8.6000 299.1510 297.0600 300.6780 295.7830 300.000
+ 31 -1.0000 0.0000 2.6000 -3.5000 30.568 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.9443 70.7001 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0757 2.1060 5.0000 8.5000 299.1640 297.0760 300.7440 295.7840 300.000
+ 32 -1.0000 0.0000 2.6000 -3.4000 30.193 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.4778 71.0490 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.1060 5.0000 8.4000 299.1740 297.0910 300.5910 295.7110 300.000
+ 33 -1.0000 0.0000 2.6000 -3.3000 30.309 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.0095 71.4007 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.1060 5.0000 8.3000 299.1770 297.1030 300.3780 295.6550 300.000
+ 34 -1.0000 0.0000 2.6000 -3.2000 30.558 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.5394 71.7552 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.1060 5.0000 8.2000 299.1740 297.1130 300.1440 295.6510 300.000
+ 35 -1.0000 0.0000 2.6000 -3.1000 30.531 43.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0673 72.1126 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.1060 5.0000 8.1000 299.1630 297.1200 299.9080 295.6600 300.000
+ 36 -1.0000 0.0000 2.6000 -3.0000 30.483 90.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.5933 72.4729 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.1060 5.0000 8.0000 299.1500 297.1250 299.7070 295.7090 300.000
+ 37 -1.0000 0.0000 2.6000 -2.9000 30.356 192.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.1172 72.8364 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.1060 5.0000 7.9000 299.1820 297.1470 299.2860 294.3310 300.000
+ 38 -1.0000 0.0000 2.6000 -2.8000 30.700 263.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6391 73.2031 -2.7386 0.5000 0.0000 0.0000 151.1423 -57.7152 2.1060 5.0000 7.8000 299.1740 297.1520 299.4950 294.3340 300.000
+ 39 -1.0000 0.0000 2.6000 -2.7000 30.365 159.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1589 73.5731 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.1060 5.0000 7.7000 299.1350 297.1470 300.3550 295.6720 300.000
+ 40 -1.0000 0.0000 2.6000 -2.6000 30.395 132.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6764 73.9464 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.1060 5.0000 7.6000 299.1590 297.1620 300.7740 295.6950 300.000
+ 41 -1.0000 0.0000 2.6000 -2.5000 30.391 131.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1917 74.3234 -2.7386 0.5000 0.0000 0.0000 150.5150 -58.9695 2.1060 5.0000 7.5000 299.1750 297.1780 300.8750 295.6900 300.000
+ 42 -1.0000 0.0000 2.6000 -2.4000 30.555 107.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7046 74.7039 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.1060 5.0000 7.4000 299.1830 297.1880 300.7570 295.7840 300.000
+ 43 -1.0000 0.0000 2.6000 -2.3000 30.498 119.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2151 75.0882 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.1060 5.0000 7.3000 299.1880 297.2000 300.5500 295.7250 300.000
+ 44 -1.0000 0.0000 2.6000 -2.2000 30.411 110.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.7232 75.4763 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.1060 5.0000 7.2000 299.1880 297.2090 300.3040 295.7150 300.000
+ 45 -1.0000 0.0000 2.6000 -2.1000 30.488 52.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2286 75.8685 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7779 2.1060 5.0000 7.1000 299.1800 297.2160 300.0620 295.7540 300.000
+ 46 -1.0000 0.0000 2.6000 -2.0000 30.440 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 299.1700 297.2220 299.8180 295.6700 300.000
+# Sum of Counts = 1890
+# Center of Mass = -2.972116+/-0.098219
+# Full Width Half-Maximum = 1.504505+/-0.054302
+# 9:07:36 PM 10/24/2011 scan completed.
+
+9:07:36 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.9)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.9)
+
+
+9:07:36 PM 10/24/2011 Executing "scan h -1 k 0 l 2.9 e -7.2 -3.0 0.1 preset mcu 0.5"
+
+
+# scan = 36
+# date = 10/24/2011
+# time = 9:07:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -7.2 -3.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -7.2 -3.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -7.2000 30.600 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.7064 63.1626 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.2130 5.0000 12.2000 299.1500 297.2230 299.5830 295.8880 300.000
+ 2 -1.0000 0.0000 2.9000 -7.1000 30.788 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2950 63.4554 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.2130 5.0000 12.1000 299.1350 297.2250 299.6710 295.9140 300.000
+ 3 -1.0000 0.0000 2.9000 -7.0000 30.406 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.8829 63.7494 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.2130 5.0000 12.0000 299.1370 297.2320 300.0960 295.8750 300.000
+ 4 -1.0000 0.0000 2.9000 -6.9000 30.658 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4702 64.0447 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.2130 5.0000 11.9000 299.1520 297.2440 300.5720 295.9700 300.000
+ 5 -1.0000 0.0000 2.9000 -6.8000 30.450 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0568 64.3412 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.2130 5.0000 11.8000 299.1660 297.2580 300.7720 295.9870 300.000
+ 6 -1.0000 0.0000 2.9000 -6.7000 30.438 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6427 64.6390 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.2130 5.0000 11.7000 299.1760 297.2700 300.7170 295.9380 300.000
+ 7 -1.0000 0.0000 2.9000 -6.6000 30.725 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.2278 64.9381 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.2130 5.0000 11.6000 299.1800 297.2780 300.5590 295.9880 300.000
+ 8 -1.0000 0.0000 2.9000 -6.5000 30.653 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.8122 65.2385 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.2130 5.0000 11.5000 299.1790 297.2870 300.3330 295.8900 300.000
+ 9 -1.0000 0.0000 2.9000 -6.4000 30.274 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3957 65.5404 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.2130 5.0000 11.4000 299.1740 297.2920 300.1000 295.9320 300.000
+ 10 -1.0000 0.0000 2.9000 -6.3000 30.162 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.9784 65.8436 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.2130 5.0000 11.3000 299.1640 297.2960 299.8770 295.9360 300.000
+ 11 -1.0000 0.0000 2.9000 -6.2000 30.311 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5603 66.1484 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.2130 5.0000 11.2000 299.1520 297.2980 299.6750 295.8830 300.000
+ 12 -1.0000 0.0000 2.9000 -6.1000 30.461 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.1412 66.4546 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 2.2130 5.0000 11.1000 299.1390 297.3010 299.5850 295.8290 300.000
+ 13 -1.0000 0.0000 2.9000 -6.0000 30.520 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7213 66.7624 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.2130 5.0000 11.0000 299.1280 297.3050 299.7680 295.8480 300.000
+ 14 -1.0000 0.0000 2.9000 -5.9000 30.588 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.3005 67.0718 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.2130 5.0000 10.9000 299.1370 297.3130 300.2280 295.8380 300.000
+ 15 -1.0000 0.0000 2.9000 -5.8000 30.375 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8786 67.3828 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 2.2130 5.0000 10.8000 299.1490 297.3240 300.6260 295.8830 300.000
+ 16 -1.0000 0.0000 2.9000 -5.7000 30.377 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4558 67.6954 -2.7386 0.5000 0.0000 0.0000 155.6647 -48.6702 2.2130 5.0000 10.7000 299.1650 297.3350 300.7270 295.8500 300.000
+ 17 -1.0000 0.0000 2.9000 -5.6000 30.592 68.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.0319 68.0098 -2.7386 0.5000 0.0000 0.0000 155.5429 -48.9142 2.2130 5.0000 10.6000 299.1740 297.3440 300.6220 295.8100 300.000
+ 18 -1.0000 0.0000 2.9000 -5.5000 30.455 56.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.6070 68.3259 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.2130 5.0000 10.5000 299.1790 297.3530 300.4250 295.7500 300.000
+ 19 -1.0000 0.0000 2.9000 -5.4000 30.388 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1810 68.6439 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.2130 5.0000 10.4000 299.1750 297.3580 300.1930 295.6650 300.000
+ 20 -1.0000 0.0000 2.9000 -5.3000 30.537 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7539 68.9636 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.2130 5.0000 10.3000 299.1690 297.3610 299.9830 295.7120 300.000
+ 21 -1.0000 0.0000 2.9000 -5.2000 30.301 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3256 69.2854 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 2.2130 5.0000 10.2000 299.1580 297.3640 299.7640 295.6780 300.000
+ 22 -1.0000 0.0000 2.9000 -5.1000 30.441 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8961 69.6090 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.2130 5.0000 10.1000 299.1460 297.3640 299.6070 295.7330 300.000
+ 23 -1.0000 0.0000 2.9000 -5.0000 30.419 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4654 69.9347 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.2130 5.0000 10.0000 299.1330 297.3660 299.6370 295.7310 300.000
+ 24 -1.0000 0.0000 2.9000 -4.9000 30.174 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0334 70.2624 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.2130 5.0000 9.9000 299.1310 297.3700 299.9870 295.6990 300.000
+ 25 -1.0000 0.0000 2.9000 -4.8000 30.265 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6002 70.5922 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.2130 5.0000 9.8000 299.1400 297.3770 300.4740 295.7600 300.000
+ 26 -1.0000 0.0000 2.9000 -4.7000 30.565 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.1656 70.9242 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.2130 5.0000 9.7000 299.1570 297.3870 300.7020 295.6680 300.000
+ 27 -1.0000 0.0000 2.9000 -4.6000 30.106 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7297 71.2585 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.2130 5.0000 9.6000 299.1720 297.3980 300.7000 295.6520 300.000
+ 28 -1.0000 0.0000 2.9000 -4.5000 30.688 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2923 71.5951 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2130 5.0000 9.5000 299.1770 297.4060 300.5350 295.6490 300.000
+ 29 -1.0000 0.0000 2.9000 -4.4000 30.250 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8535 71.9340 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.2130 5.0000 9.4000 299.1780 297.4110 300.3260 295.6520 300.000
+ 30 -1.0000 0.0000 2.9000 -4.3000 30.607 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4132 72.2754 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2130 5.0000 9.3000 299.1710 297.4150 300.1130 295.7320 300.000
+ 31 -1.0000 0.0000 2.9000 -4.2000 30.288 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.9714 72.6192 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2130 5.0000 9.2000 299.1620 297.4180 299.8550 295.6960 300.000
+ 32 -1.0000 0.0000 2.9000 -4.1000 30.266 61.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.5280 72.9656 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2130 5.0000 9.1000 299.1480 297.4180 299.6700 295.6330 300.000
+ 33 -1.0000 0.0000 2.9000 -4.0000 30.345 100.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0830 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 299.1770 297.4330 299.3240 294.3740 300.000
+ 34 -1.0000 0.0000 2.9000 -3.9000 30.420 110.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6363 73.6665 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2130 5.0000 8.9000 299.1320 297.4190 299.8590 295.6190 300.000
+ 35 -1.0000 0.0000 2.9000 -3.8000 30.634 96.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1880 74.0211 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2130 5.0000 8.8000 299.1380 297.4270 300.4150 295.7160 300.000
+ 36 -1.0000 0.0000 2.9000 -3.7000 30.481 72.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7378 74.3786 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2130 5.0000 8.7000 299.1640 297.4420 300.6800 295.3790 300.000
+ 37 -1.0000 0.0000 2.9000 -3.6000 30.400 70.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2859 74.7390 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2130 5.0000 8.6000 299.1750 297.4480 300.7870 295.6450 300.000
+ 38 -1.0000 0.0000 2.9000 -3.5000 30.371 101.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8321 75.1025 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2130 5.0000 8.5000 299.2250 297.4710 300.3960 294.3890 300.000
+ 39 -1.0000 0.0000 2.9000 -3.4000 30.585 75.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3764 75.4692 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2130 5.0000 8.4000 299.1820 297.4600 300.4880 295.7300 300.000
+ 40 -1.0000 0.0000 2.9000 -3.3000 30.586 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.9188 75.8391 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2130 5.0000 8.3000 299.1810 297.4630 300.2320 295.6530 300.000
+ 41 -1.0000 0.0000 2.9000 -3.2000 30.371 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4592 76.2123 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1616 2.2130 5.0000 8.2000 299.1670 297.4650 300.0120 295.8140 300.000
+ 42 -1.0000 0.0000 2.9000 -3.1000 30.460 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9974 76.5890 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 2.2130 5.0000 8.1000 299.1550 297.4650 299.7970 295.7500 300.000
+ 43 -1.0000 0.0000 2.9000 -3.0000 30.278 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5336 76.9692 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.2130 5.0000 8.0000 299.1450 297.4630 299.6240 295.6920 300.000
+# Sum of Counts = 1268
+# Center of Mass = -4.375868+/-0.176019
+# Full Width Half-Maximum = 1.989722+/-0.081939
+# 9:31:23 PM 10/24/2011 scan completed.
+
+9:31:23 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.2)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.2)
+
+
+9:31:23 PM 10/24/2011 Executing "scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5"
+
+
+# scan = 37
+# date = 10/24/2011
+# time = 9:31:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -7.9000 30.454 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0598 65.3850 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3259 5.0000 12.9000 299.1300 297.4620 299.7070 295.9170 300.000
+ 2 -1.0000 0.0000 3.2000 -7.8000 30.461 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6669 65.6762 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.3259 5.0000 12.8000 299.1310 297.4640 300.1280 295.9350 300.000
+ 3 -1.0000 0.0000 3.2000 -7.7000 30.282 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2736 65.9686 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.3259 5.0000 12.7000 299.1430 297.4710 300.5730 295.9790 300.000
+ 4 -1.0000 0.0000 3.2000 -7.6000 30.398 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.8796 66.2622 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.3259 5.0000 12.6000 299.1560 297.4790 300.7340 296.0010 300.000
+ 5 -1.0000 0.0000 3.2000 -7.5000 30.418 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4850 66.5572 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.3259 5.0000 12.5000 299.1660 297.4860 300.6740 295.9760 300.000
+ 6 -1.0000 0.0000 3.2000 -7.4000 30.193 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0897 66.8534 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.3259 5.0000 12.4000 299.1700 297.4920 300.5050 295.9550 300.000
+ 7 -1.0000 0.0000 3.2000 -7.3000 30.445 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6936 67.1510 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.3259 5.0000 12.3000 299.1690 297.4970 300.3080 295.9480 300.000
+ 8 -1.0000 0.0000 3.2000 -7.2000 30.250 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2968 67.4500 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.3259 5.0000 12.2000 299.1630 297.4990 300.0580 295.9260 300.000
+ 9 -1.0000 0.0000 3.2000 -7.1000 30.449 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8993 67.7504 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.3259 5.0000 12.1000 299.1560 297.5000 299.8560 295.8680 300.000
+ 10 -1.0000 0.0000 3.2000 -7.0000 30.116 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5010 68.0522 -2.7386 0.5000 0.0000 0.0000 157.1006 -45.7986 2.3259 5.0000 12.0000 299.1440 297.5000 299.6580 295.7720 300.000
+ 11 -1.0000 0.0000 3.2000 -6.9000 30.357 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1018 68.3555 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3259 5.0000 11.9000 299.1280 297.5000 299.5940 295.7440 300.000
+ 12 -1.0000 0.0000 3.2000 -6.8000 30.415 39.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7018 68.6602 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3259 5.0000 11.8000 299.1210 297.4990 299.8060 295.7390 300.000
+ 13 -1.0000 0.0000 3.2000 -6.7000 30.234 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3010 68.9666 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3259 5.0000 11.7000 299.1300 297.5040 300.2670 295.6930 300.000
+ 14 -1.0000 0.0000 3.2000 -6.6000 30.157 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8992 69.2746 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3259 5.0000 11.6000 299.1430 297.5110 300.6360 295.7520 300.000
+ 15 -1.0000 0.0000 3.2000 -6.5000 30.430 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4966 69.5841 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3259 5.0000 11.5000 299.1550 297.5180 300.7080 295.7940 300.000
+ 16 -1.0000 0.0000 3.2000 -6.4000 30.019 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0930 69.8954 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.3259 5.0000 11.4000 299.1620 297.5250 300.6160 295.8550 300.000
+ 17 -1.0000 0.0000 3.2000 -6.3000 30.202 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6884 70.2083 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.3259 5.0000 11.3000 299.1640 297.5280 300.4260 295.8490 300.000
+ 18 -1.0000 0.0000 3.2000 -6.2000 30.386 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2829 70.5230 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3259 5.0000 11.2000 299.1630 297.5330 300.2240 295.8120 300.000
+ 19 -1.0000 0.0000 3.2000 -6.1000 30.648 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8763 70.8395 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3259 5.0000 11.1000 299.1600 297.5340 299.9740 295.6530 300.000
+ 20 -1.0000 0.0000 3.2000 -5.9999 30.418 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4687 71.1579 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9597 2.3259 5.0000 10.9999 299.1510 297.5330 299.7580 295.6180 300.000
+ 21 -1.0000 0.0000 3.2000 -5.9000 30.300 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0600 71.4781 -2.7386 0.5000 0.0000 0.0000 155.9034 -48.1930 2.3259 5.0000 10.9000 299.1370 297.5300 299.6170 295.6500 300.000
+ 22 -1.0000 0.0000 3.2000 -5.8000 30.639 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6502 71.8003 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3259 5.0000 10.8000 299.1250 297.5310 299.6310 295.5960 300.000
+ 23 -1.0000 0.0000 3.2000 -5.7000 30.450 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2392 72.1244 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3259 5.0000 10.7000 299.1220 297.5310 299.9810 295.6820 300.000
+ 24 -1.0000 0.0000 3.2000 -5.6000 30.372 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.8271 72.4507 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3259 5.0000 10.6000 299.1310 297.5360 300.4630 295.8010 300.000
+ 25 -1.0000 0.0000 3.2000 -5.5000 30.471 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4138 72.7790 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3259 5.0000 10.5000 299.1460 297.5430 300.7020 295.7490 300.000
+ 26 -1.0000 0.0000 3.2000 -5.4000 30.317 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9992 73.1094 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3259 5.0000 10.4000 299.1600 297.5490 300.6920 295.7110 300.000
+ 27 -1.0000 0.0000 3.2000 -5.3000 30.357 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5834 73.4421 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3259 5.0000 10.3000 299.1690 297.5560 300.5280 295.6460 300.000
+ 28 -1.0000 0.0000 3.2000 -5.2000 30.415 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1662 73.7770 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3259 5.0000 10.2000 299.1650 297.5580 300.3330 295.7340 300.000
+ 29 -1.0000 0.0000 3.2000 -5.1000 30.569 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7478 74.1142 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.3259 5.0000 10.1000 299.1580 297.5590 300.1330 295.8220 300.000
+ 30 -1.0000 0.0000 3.2000 -5.0000 30.732 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3280 74.4538 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3259 5.0000 10.0000 299.1490 297.5590 299.8930 295.7330 300.000
+ 31 -1.0000 0.0000 3.2000 -4.8999 30.354 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9067 74.7959 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 2.3259 5.0000 9.9000 299.1410 297.5580 299.6860 295.5890 300.000
+ 32 -1.0000 0.0000 3.2000 -4.8000 30.375 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.4840 75.1405 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3259 5.0000 9.8000 299.1290 297.5550 299.6010 295.7080 300.000
+ 33 -1.0000 0.0000 3.2000 -4.7000 30.367 46.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.0599 75.4876 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3259 5.0000 9.7000 299.1170 297.5540 299.7550 295.7220 300.000
+ 34 -1.0000 0.0000 3.2000 -4.6000 30.326 59.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.6342 75.8374 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5759 2.3259 5.0000 9.6000 299.1250 297.5570 300.2160 295.6470 300.000
+ 35 -1.0000 0.0000 3.2000 -4.5000 30.499 74.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2070 76.1900 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3259 5.0000 9.5000 299.1420 297.5630 300.6220 295.6630 300.000
+ 36 -1.0000 0.0000 3.2000 -4.4000 30.426 51.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7781 76.5453 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3259 5.0000 9.4000 299.1530 297.5700 300.7340 295.7720 300.000
+ 37 -1.0000 0.0000 3.2000 -4.3000 30.293 52.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3476 76.9035 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 2.3259 5.0000 9.3000 299.1610 297.5760 300.6480 295.7450 300.000
+ 38 -1.0000 0.0000 3.2000 -4.2000 30.458 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9154 77.2647 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3259 5.0000 9.2000 299.1630 297.5790 300.4670 295.8010 300.000
+ 39 -1.0000 0.0000 3.2000 -4.1000 30.412 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.4815 77.6289 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0814 2.3259 5.0000 9.1000 299.1610 297.5820 300.2390 295.7850 300.000
+ 40 -1.0000 0.0000 3.2000 -4.0000 30.521 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.0458 77.9962 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3259 5.0000 9.0000 299.1780 297.5920 299.8760 295.0140 300.000
+ 41 -1.0000 0.0000 3.2000 -3.9000 30.443 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6083 78.3668 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.3259 5.0000 8.9000 299.1500 297.5820 299.7900 295.6270 300.000
+ 42 -1.0000 0.0000 3.2000 -3.8000 30.380 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1689 78.7406 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.3259 5.0000 8.8000 299.1490 297.5840 299.5640 295.3550 300.000
+ 43 -1.0000 0.0000 3.2000 -3.7000 30.241 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7276 79.1179 -2.7386 0.5000 0.0000 0.0000 152.8069 -54.3860 2.3259 5.0000 8.7000 299.1230 297.5780 299.6290 295.6880 300.000
+ 44 -1.0000 0.0000 3.2000 -3.6000 30.218 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.2842 79.4987 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3259 5.0000 8.6000 299.1610 297.5930 299.6260 294.3610 300.000
+ 45 -1.0000 0.0000 3.2000 -3.5000 30.246 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.8389 79.8830 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3259 5.0000 8.5000 299.1270 297.5810 300.4020 295.7490 300.000
+# Sum of Counts = 989
+# Center of Mass = -5.435081+/-0.247327
+# Full Width Half-Maximum = 2.381369+/-0.105500
+# 9:56:07 PM 10/24/2011 scan completed.
+
+9:56:08 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.5)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.5)
+
+
+9:56:08 PM 10/24/2011 Executing "scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5"
+
+
+# scan = 38
+# date = 10/24/2011
+# time = 9:56:08 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.2000 30.557 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8852 68.9950 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.4439 5.0000 13.2000 299.1470 297.5870 300.7860 295.9670 300.000
+ 2 -1.0000 0.0000 3.5000 -8.1000 30.240 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.5072 69.2901 -2.7386 0.5000 0.0000 0.0000 158.1351 -43.7295 2.4439 5.0000 13.1000 299.1590 297.5930 300.7580 295.9880 300.000
+ 3 -1.0000 0.0000 3.5000 -8.0000 30.491 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1284 69.5865 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.4439 5.0000 13.0000 299.1640 297.5980 300.6020 295.9350 300.000
+ 4 -1.0000 0.0000 3.5000 -7.9000 30.370 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.7488 69.8843 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.4439 5.0000 12.9000 299.1660 297.6040 300.3830 295.8200 300.000
+ 5 -1.0000 0.0000 3.5000 -7.8000 30.329 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3686 70.1836 -2.7386 0.5000 0.0000 0.0000 157.8670 -44.2658 2.4439 5.0000 12.8000 299.1660 297.6050 300.1770 295.8260 300.000
+ 6 -1.0000 0.0000 3.5000 -7.7000 30.220 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.9876 70.4843 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.4439 5.0000 12.7000 299.2000 297.6220 299.6540 294.3930 300.000
+ 7 -1.0000 0.0000 3.5000 -7.6000 30.386 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.6058 70.7866 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.4439 5.0000 12.6000 299.1480 297.6040 299.7610 295.6180 300.000
+ 8 -1.0000 0.0000 3.5000 -7.5000 30.236 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2231 71.0903 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.4439 5.0000 12.5000 299.1410 297.6020 299.6630 295.5280 300.000
+ 9 -1.0000 0.0000 3.5000 -7.4000 30.354 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8396 71.3956 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.4439 5.0000 12.4000 299.1320 297.6000 299.7420 295.5060 300.000
+ 10 -1.0000 0.0000 3.5000 -7.3000 30.365 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4553 71.7026 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.4439 5.0000 12.3000 299.1290 297.6010 300.0650 295.5920 300.000
+ 11 -1.0000 0.0000 3.5000 -7.2000 30.266 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0701 72.0111 -2.7386 0.5000 0.0000 0.0000 157.2997 -45.4004 2.4439 5.0000 12.2000 299.1400 297.6040 300.3900 295.6660 300.000
+ 12 -1.0000 0.0000 3.5000 -7.1000 30.283 33.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6840 72.3214 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.4439 5.0000 12.1000 299.1470 297.6080 300.5300 295.6330 300.000
+ 13 -1.0000 0.0000 3.5000 -7.0000 30.349 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2970 72.6334 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.4439 5.0000 12.0000 299.1540 297.6130 300.4630 295.7010 300.000
+ 14 -1.0000 0.0000 3.5000 -6.9000 30.210 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9090 72.9471 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.4439 5.0000 11.9000 299.1890 297.6300 300.0620 294.5610 300.000
+ 15 -1.0000 0.0000 3.5000 -6.8000 30.403 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5200 73.2626 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2073 2.4439 5.0000 11.8000 299.1500 297.6150 300.1290 295.7690 300.000
+ 16 -1.0000 0.0000 3.5000 -6.7000 30.202 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1301 73.5800 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.4439 5.0000 11.7000 299.1440 297.6170 299.8990 295.6830 300.000
+ 17 -1.0000 0.0000 3.5000 -6.6000 30.446 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7391 73.8993 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6274 2.4439 5.0000 11.6000 299.1340 297.6140 299.7160 295.6840 300.000
+ 18 -1.0000 0.0000 3.5000 -6.5000 30.279 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3470 74.2205 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.4439 5.0000 11.5000 299.1220 297.6100 299.5970 295.6420 300.000
+ 19 -1.0000 0.0000 3.5000 -6.4000 30.183 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9539 74.5437 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.4439 5.0000 11.4000 299.1140 297.6090 299.6790 295.5600 300.000
+ 20 -1.0000 0.0000 3.5000 -6.3000 30.068 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5596 74.8689 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.4439 5.0000 11.3000 299.1290 297.6150 299.9750 295.1280 300.000
+ 21 -1.0000 0.0000 3.5000 -6.2000 30.209 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1642 75.1962 -2.7386 0.5000 0.0000 0.0000 156.2484 -47.5028 2.4439 5.0000 11.2000 299.1270 297.6140 300.5530 295.7620 300.000
+ 22 -1.0000 0.0000 3.5000 -6.1000 30.179 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7677 75.5257 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.4439 5.0000 11.1000 299.1410 297.6200 300.7710 295.7250 300.000
+ 23 -1.0000 0.0000 3.5000 -5.9999 30.494 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.3699 75.8573 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9597 2.4439 5.0000 10.9999 299.1780 297.6390 300.5570 294.8560 300.000
+ 24 -1.0000 0.0000 3.5000 -5.9000 30.277 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9710 76.1912 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.4439 5.0000 10.9000 299.1780 297.6350 300.5310 295.4380 300.000
+ 25 -1.0000 0.0000 3.5000 -5.8000 29.995 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5707 76.5273 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.4439 5.0000 10.8000 299.1700 297.6360 300.3350 295.6360 300.000
+ 26 -1.0000 0.0000 3.5000 -5.7000 30.343 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1692 76.8658 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.4439 5.0000 10.7000 299.1550 297.6330 300.1470 295.7290 300.000
+ 27 -1.0000 0.0000 3.5000 -5.6000 30.251 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7663 77.2068 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.4439 5.0000 10.6000 299.1460 297.6320 299.9340 295.7910 300.000
+ 28 -1.0000 0.0000 3.5000 -5.5000 30.408 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.3621 77.5502 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.4439 5.0000 10.5000 299.1340 297.6310 299.7240 295.7870 300.000
+ 29 -1.0000 0.0000 3.5000 -5.4000 30.067 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.9565 77.8961 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.4439 5.0000 10.4000 299.1210 297.6270 299.6050 295.7950 300.000
+ 30 -1.0000 0.0000 3.5000 -5.3000 30.087 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5495 78.2447 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.4439 5.0000 10.3000 299.1130 297.6240 299.6820 295.6870 300.000
+ 31 -1.0000 0.0000 3.5000 -5.2000 30.232 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1410 78.5959 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.4439 5.0000 10.2000 299.1350 297.6340 299.9340 295.0170 300.000
+ 32 -1.0000 0.0000 3.5000 -5.1000 30.387 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7310 78.9498 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.4439 5.0000 10.1000 299.1320 297.6310 300.5390 295.6640 300.000
+ 33 -1.0000 0.0000 3.5000 -5.0000 30.457 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3195 79.3066 -2.7386 0.5000 0.0000 0.0000 154.7700 -50.4597 2.4439 5.0000 10.0000 299.1450 297.6350 300.7670 295.7960 300.000
+ 34 -1.0000 0.0000 3.5000 -4.9000 30.493 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9064 79.6663 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.4439 5.0000 9.9000 299.1560 297.6420 300.7260 295.7860 300.000
+ 35 -1.0000 0.0000 3.5000 -4.8000 30.272 41.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.4917 80.0289 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.4439 5.0000 9.8000 299.1630 297.6470 300.5780 295.7520 300.000
+ 36 -1.0000 0.0000 3.5000 -4.7000 30.282 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0753 80.3946 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.4439 5.0000 9.7000 299.1680 297.6500 300.3580 295.7260 300.000
+ 37 -1.0000 0.0000 3.5000 -4.6000 30.465 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.6572 80.7634 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5758 2.4439 5.0000 9.6000 299.1630 297.6510 300.1250 295.6760 300.000
+ 38 -1.0000 0.0000 3.5000 -4.5000 30.279 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.2374 81.1354 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.4439 5.0000 9.5000 299.1570 297.6490 299.9170 295.6300 300.000
+ 39 -1.0000 0.0000 3.5000 -4.4000 30.435 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8158 81.5108 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.4439 5.0000 9.4000 299.1450 297.6450 299.7280 295.6700 300.000
+ 40 -1.0000 0.0000 3.5000 -4.3000 30.210 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.3924 81.8895 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.4439 5.0000 9.3000 299.1330 297.6420 299.6040 295.6260 300.000
+ 41 -1.0000 0.0000 3.5000 -4.2000 30.420 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9671 82.2717 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.4439 5.0000 9.2000 299.1230 297.6390 299.7100 295.7030 300.000
+ 42 -1.0000 0.0000 3.5000 -4.1000 30.212 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.5399 82.6575 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.4439 5.0000 9.1000 299.1220 297.6400 300.1070 295.7000 300.000
+ 43 -1.0000 0.0000 3.5000 -4.0000 30.341 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.1107 83.0470 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.4439 5.0000 9.0000 299.1370 297.6470 300.5170 295.6080 300.000
+# Sum of Counts = 839
+# Center of Mass = -6.064957+/-0.299239
+# Full Width Half-Maximum = 2.497990+/-0.122606
+# 10:19:42 PM 10/24/2011 scan completed.
+
+10:19:42 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.8)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.8)
+
+
+10:19:43 PM 10/24/2011 Executing "scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5"
+
+
+# scan = 39
+# date = 10/24/2011
+# time = 10:19:43 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.8)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.8000 -7.9000 30.149 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6093 74.6442 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5663 5.0000 12.9000 299.1550 297.6530 300.6980 295.7180 300.000
+ 2 -1.0000 0.0000 3.8000 -7.8000 30.252 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2389 74.9540 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5663 5.0000 12.8000 299.1650 297.6560 300.6080 295.7030 300.000
+ 3 -1.0000 0.0000 3.8000 -7.7000 30.568 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8677 75.2656 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5663 5.0000 12.7000 299.1690 297.6600 300.4320 295.6330 300.000
+ 4 -1.0000 0.0000 3.8000 -7.6000 30.250 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4955 75.5789 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5663 5.0000 12.6000 299.1670 297.6590 300.2140 295.6550 300.000
+ 5 -1.0000 0.0000 3.8000 -7.5000 30.191 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1223 75.8940 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5663 5.0000 12.5000 299.1540 297.6570 300.0080 295.7900 300.000
+ 6 -1.0000 0.0000 3.8000 -7.4000 30.146 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7482 76.2110 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5663 5.0000 12.4000 299.1430 297.6560 299.7920 295.8230 300.000
+ 7 -1.0000 0.0000 3.8000 -7.3000 30.401 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3730 76.5298 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5663 5.0000 12.3000 299.1300 297.6510 299.6450 295.7950 300.000
+ 8 -1.0000 0.0000 3.8000 -7.2000 30.329 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9969 76.8507 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5663 5.0000 12.2000 299.1210 297.6490 299.6180 295.7170 300.000
+ 9 -1.0000 0.0000 3.8000 -7.1000 29.926 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6197 77.1735 -2.7386 0.5000 0.0000 0.0000 157.2008 -45.5982 2.5663 5.0000 12.1000 299.1170 297.6480 299.9080 295.7520 300.000
+ 10 -1.0000 0.0000 3.8000 -7.0000 30.446 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2414 77.4984 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5663 5.0000 12.0000 299.1270 297.6520 300.3750 295.6920 300.000
+ 11 -1.0000 0.0000 3.8000 -6.9000 30.078 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8620 77.8253 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5663 5.0000 11.9000 299.1450 297.6580 300.6580 295.6950 300.000
+ 12 -1.0000 0.0000 3.8000 -6.8000 30.032 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.4815 78.1544 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2073 2.5663 5.0000 11.8000 299.1530 297.6630 300.6910 295.7810 300.000
+ 13 -1.0000 0.0000 3.8000 -6.7000 30.310 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.0999 78.4856 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 2.5663 5.0000 11.7000 299.1600 297.6670 300.5710 295.7840 300.000
+ 14 -1.0000 0.0000 3.8000 -6.6000 30.232 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7170 78.8191 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5663 5.0000 11.6000 299.1610 297.6690 300.3750 295.7320 300.000
+ 15 -1.0000 0.0000 3.8000 -6.5000 30.304 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3330 79.1549 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5663 5.0000 11.5000 299.1590 297.6690 300.1550 295.7410 300.000
+ 16 -1.0000 0.0000 3.8000 -6.4000 29.953 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9477 79.4930 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.5663 5.0000 11.4000 299.1530 297.6690 299.9360 295.6740 300.000
+ 17 -1.0000 0.0000 3.8000 -6.3000 30.287 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5611 79.8336 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5663 5.0000 11.3000 299.1420 297.6650 299.7460 295.6690 300.000
+ 18 -1.0000 0.0000 3.8000 -6.2000 30.267 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.1732 80.1766 -2.7386 0.5000 0.0000 0.0000 156.2484 -47.5028 2.5663 5.0000 11.2000 299.1270 297.6610 299.6070 295.6800 300.000
+ 19 -1.0000 0.0000 3.8000 -6.1000 30.307 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.7841 80.5220 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5663 5.0000 11.1000 299.1170 297.6590 299.6770 295.7080 300.000
+ 20 -1.0000 0.0000 3.8000 -6.0000 30.448 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.3935 80.8701 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5663 5.0000 11.0000 299.1170 297.6580 300.0340 295.7200 300.000
+ 21 -1.0000 0.0000 3.8000 -5.9000 30.245 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.0016 81.2208 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5663 5.0000 10.9000 299.1280 297.6610 300.4810 295.7190 300.000
+ 22 -1.0000 0.0000 3.8000 -5.8000 30.370 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.6082 81.5743 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5663 5.0000 10.8000 299.1430 297.6680 300.6790 295.8150 300.000
+ 23 -1.0000 0.0000 3.8000 -5.7000 30.351 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.2134 81.9305 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5663 5.0000 10.7000 299.1530 297.6730 300.6460 295.8060 300.000
+ 24 -1.0000 0.0000 3.8000 -5.6000 30.181 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8170 82.2896 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5663 5.0000 10.6000 299.1590 297.6750 300.5120 295.8320 300.000
+ 25 -1.0000 0.0000 3.8000 -5.5000 30.267 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.4192 82.6515 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5663 5.0000 10.5000 299.1550 297.6770 300.3040 295.8390 300.000
+ 26 -1.0000 0.0000 3.8000 -5.4000 30.448 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.0197 83.0165 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.5663 5.0000 10.4000 299.1520 297.6780 300.0810 295.8210 300.000
+ 27 -1.0000 0.0000 3.8000 -5.3000 30.428 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.6186 83.3846 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.5663 5.0000 10.3000 299.1440 297.6760 299.8640 295.7260 300.000
+ 28 -1.0000 0.0000 3.8000 -5.2000 30.131 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2159 83.7558 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.5663 5.0000 10.2000 299.1340 297.6730 299.6830 295.7100 300.000
+ 29 -1.0000 0.0000 3.8000 -5.1000 30.379 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.8115 84.1302 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.5663 5.0000 10.1000 299.1220 297.6680 299.6060 295.7070 300.000
+ 30 -1.0000 0.0000 3.8000 -5.0000 30.462 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.4054 84.5080 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.5663 5.0000 10.0000 299.1140 297.6660 299.7750 295.7080 300.000
+ 31 -1.0000 0.0000 3.8000 -4.9000 30.228 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.9975 84.8892 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.5663 5.0000 9.9000 299.1220 297.6680 300.2400 295.7470 300.000
+ 32 -1.0000 0.0000 3.8000 -4.8000 30.276 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5878 85.2739 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.5663 5.0000 9.8000 299.1350 297.6730 300.6210 295.8180 300.000
+ 33 -1.0000 0.0000 3.8000 -4.7000 30.274 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1762 85.6622 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.5663 5.0000 9.7000 299.1480 297.6780 300.7230 295.8040 300.000
+ 34 -1.0000 0.0000 3.8000 -4.6000 30.188 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7627 86.0542 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.5663 5.0000 9.6000 299.1600 297.6840 300.6200 295.7870 300.000
+ 35 -1.0000 0.0000 3.8000 -4.5000 30.352 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3472 86.4500 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.5663 5.0000 9.5000 299.1610 297.6850 300.4440 295.8100 300.000
+ 36 -1.0000 0.0000 3.8000 -4.4000 30.452 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.9297 86.8498 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.5663 5.0000 9.4000 299.1570 297.6860 300.2330 295.8390 300.000
+ 37 -1.0000 0.0000 3.8000 -4.3000 30.164 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.5102 87.2535 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.5663 5.0000 9.3000 299.1530 297.6840 300.0060 295.7960 300.000
+ 38 -1.0000 0.0000 3.8000 -4.2000 29.992 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.0885 87.6614 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.5663 5.0000 9.2000 299.1430 297.6830 299.7960 295.7810 300.000
+ 39 -1.0000 0.0000 3.8000 -4.1000 30.183 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.6647 88.0736 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.5663 5.0000 9.1000 299.1290 297.6800 299.6340 295.7320 300.000
+ 40 -1.0000 0.0000 3.8000 -4.0000 30.217 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.2386 88.4902 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.5663 5.0000 9.0000 299.1260 297.6780 299.5850 295.6100 300.000
+ 41 -1.0000 0.0000 3.8000 -3.9000 30.288 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.1898 88.9113 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.5663 5.0000 8.9000 299.1180 297.6760 299.8990 295.6680 300.000
+ 42 -1.0000 0.0000 3.8000 -3.8000 30.099 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.6205 89.3370 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.5663 5.0000 8.8000 299.1280 297.6790 300.3900 295.7470 300.000
+ 43 -1.0000 0.0000 3.8000 -3.7000 30.410 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.0536 89.7676 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.5663 5.0000 8.7000 299.1420 297.6830 300.6510 295.8090 300.000
+ 44 -1.0000 0.0000 3.8000 -3.6000 30.291 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.4892 90.2032 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.5663 5.0000 8.6000 299.1510 297.6870 300.6870 295.8340 300.000
+ 45 -1.0000 0.0000 3.8000 -3.5000 30.583 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.9274 90.6438 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.5663 5.0000 8.5000 299.1600 297.6910 300.5640 295.8360 300.000
+# Sum of Counts = 747
+# Center of Mass = -5.744177+/-0.300592
+# Full Width Half-Maximum = 2.453315+/-0.119968
+# 10:44:20 PM 10/24/2011 scan completed.
+
+10:44:20 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.3)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.3)
+
+
+10:44:21 PM 10/24/2011 Executing "scan h -1 k 0 l 2.3 e -2.3 -1.0 0.1 preset mcu 0.25"
+
+
+# scan = 40
+# date = 10/24/2011
+# time = 10:44:21 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.3 e -2.3 -1.0 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.3 e -2.3 -1.0 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.3)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.3000 -2.3000 15.171 21.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.3213 70.8576 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0059 5.0000 7.3000 299.1770 297.6970 300.1180 295.2370 300.000
+ 2 -1.0000 0.0000 2.3000 -2.2000 15.104 30.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8180 71.2250 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3102 2.0059 5.0000 7.2000 299.1610 297.6920 300.1000 295.8350 300.000
+ 3 -1.0000 0.0000 2.3000 -2.1000 15.163 33.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3125 71.5957 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0059 5.0000 7.1000 299.1540 297.6920 299.9770 295.7810 300.000
+ 4 -1.0000 0.0000 2.3000 -2.0000 15.168 54.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8045 71.9700 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0059 5.0000 7.0000 299.1540 297.6930 299.8510 295.6440 300.000
+ 5 -1.0000 0.0000 2.3000 -1.9000 15.330 49.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2940 72.3478 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0059 5.0000 6.9000 299.1520 297.6920 299.7690 295.4680 300.000
+ 6 -1.0000 0.0000 2.3000 -1.8000 15.134 68.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7808 72.7294 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0059 5.0000 6.8000 299.1810 297.7030 299.4460 294.4450 300.000
+ 7 -1.0000 0.0000 2.3000 -1.7000 15.027 95.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2650 73.1149 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7650 2.0059 5.0000 6.7000 299.1380 297.6870 299.6070 295.4420 300.000
+ 8 -1.0000 0.0000 2.3000 -1.6000 15.028 189.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7463 73.5044 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.0059 5.0000 6.6000 299.1310 297.6850 299.6510 295.5560 300.000
+ 9 -1.0000 0.0000 2.3000 -1.5000 15.058 330.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2247 73.8981 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0059 5.0000 6.5000 299.1220 297.6830 299.7770 295.6320 300.000
+ 10 -1.0000 0.0000 2.3000 -1.4000 15.327 378.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7002 74.2961 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 2.0059 5.0000 6.4000 299.1310 297.6860 299.9160 295.4420 300.000
+ 11 -1.0000 0.0000 2.3000 -1.3000 15.229 213.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1726 74.6986 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0059 5.0000 6.3000 299.1440 297.6860 300.1610 295.5240 300.000
+ 12 -1.0000 0.0000 2.3000 -1.2000 15.244 178.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.6418 75.1057 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0059 5.0000 6.2000 299.1300 297.6860 300.4530 295.7490 300.000
+ 13 -1.0000 0.0000 2.3000 -1.1000 15.068 373.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.1077 75.5177 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.0059 5.0000 6.1000 299.1420 297.6900 300.5810 295.6380 300.000
+ 14 -1.0000 0.0000 2.3000 -1.0000 15.284 273.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5702 75.9347 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0059 5.0000 6.0000 299.1830 297.7080 300.4240 294.4890 300.000
+# Sum of Counts = 2284
+# Center of Mass = -1.387478+/-0.041523
+# Full Width Half-Maximum = 0.592572+/-0.025516
+# 10:48:52 PM 10/24/2011 scan completed.
+
+10:48:52 PM 10/24/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.5)""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.5)
+
+
+10:48:52 PM 10/24/2011 Executing "scan h -1 k 0 l 2.5 e -3.0 -1.0 0.1 preset mcu 0.5"
+
+
+# scan = 41
+# date = 10/24/2011
+# time = 10:48:52 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.5 e -3.0 -1.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.5 e -3.0 -1.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.5000 -3.0000 30.368 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6410 71.0618 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0719 5.0000 8.0000 299.1970 297.7110 300.3360 294.0360 300.000
+ 2 -1.0000 0.0000 2.5000 -2.9000 30.317 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.1611 71.4192 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.0719 5.0000 7.9000 299.1650 297.6980 300.5440 295.8620 300.000
+ 3 -1.0000 0.0000 2.5000 -2.8000 30.331 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.6792 71.7798 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0719 5.0000 7.8000 299.1670 297.7010 300.3460 295.8230 300.000
+ 4 -1.0000 0.0000 2.5000 -2.7000 30.296 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1952 72.1434 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0719 5.0000 7.7000 299.1590 297.7000 300.1390 295.7880 300.000
+ 5 -1.0000 0.0000 2.5000 -2.6000 30.323 92.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7090 72.5102 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.0719 5.0000 7.6000 299.1530 297.6980 299.9230 295.7500 300.000
+ 6 -1.0000 0.0000 2.5000 -2.5000 30.127 189.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2206 72.8804 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0719 5.0000 7.5000 299.1450 297.6970 299.7200 295.5690 300.000
+ 7 -1.0000 0.0000 2.5000 -2.4000 30.515 321.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7300 73.2540 -2.7386 0.5000 0.0000 0.0000 150.2967 -59.4063 2.0719 5.0000 7.4000 299.1330 297.6920 299.6080 295.6810 300.000
+ 8 -1.0000 0.0000 2.5000 -2.3000 30.282 288.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2370 73.6311 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0719 5.0000 7.3000 299.1340 297.6940 299.6150 295.2030 300.000
+ 9 -1.0000 0.0000 2.5000 -2.2000 30.432 186.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7416 74.0119 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.0719 5.0000 7.2000 299.1250 297.6910 300.1100 295.5760 300.000
+ 10 -1.0000 0.0000 2.5000 -2.1000 29.981 155.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.2436 74.3965 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0719 5.0000 7.1000 299.1380 297.6940 300.5630 295.6830 300.000
+ 11 -1.0000 0.0000 2.5000 -2.0000 30.250 136.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7431 74.7850 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0719 5.0000 7.0000 299.1530 297.7000 300.7250 295.7270 300.000
+ 12 -1.0000 0.0000 2.5000 -1.9000 30.224 165.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2399 75.1776 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0719 5.0000 6.9000 299.1670 297.7060 300.6500 295.6190 300.000
+ 13 -1.0000 0.0000 2.5000 -1.8000 30.408 191.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.7340 75.5743 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0719 5.0000 6.8000 299.1660 297.7070 300.5050 295.7480 300.000
+ 14 -1.0000 0.0000 2.5000 -1.7000 30.142 89.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2253 75.9755 -2.7386 0.5000 0.0000 0.0000 148.6174 -62.7649 2.0719 5.0000 6.7000 299.1660 297.7090 300.2920 295.7190 300.000
+ 15 -1.0000 0.0000 2.5000 -1.6000 30.093 64.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7136 76.3811 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.0719 5.0000 6.6000 299.1620 297.7090 300.0750 295.6910 300.000
+ 16 -1.0000 0.0000 2.5000 -1.5000 30.300 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1990 76.7914 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0719 5.0000 6.5000 299.1530 297.7080 299.8400 295.7320 300.000
+ 17 -1.0000 0.0000 2.5000 -1.4000 30.288 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.6813 77.2066 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.0719 5.0000 6.4000 299.1420 297.7030 299.6590 295.7460 300.000
+ 18 -1.0000 0.0000 2.5000 -1.3000 30.228 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1603 77.6269 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0719 5.0000 6.3000 299.1250 297.6980 299.6070 295.7700 300.000
+ 19 -1.0000 0.0000 2.5000 -1.2000 30.429 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6361 78.0523 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0719 5.0000 6.2000 299.1640 297.7120 299.5250 294.1950 300.000
+ 20 -1.0000 0.0000 2.5000 -1.1000 30.475 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1084 78.4832 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1531 2.0719 5.0000 6.1000 299.1280 297.6980 300.3540 295.7100 300.000
+ 21 -1.0000 0.0000 2.5000 -1.0000 30.311 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5773 78.9198 -2.7386 0.5000 0.0000 0.0000 146.6132 -66.7735 2.0719 5.0000 6.0000 299.1480 297.7050 300.7630 295.7910 300.000
+# Sum of Counts = 2082
+# Center of Mass = -2.155572+/-0.067272
+# Full Width Half-Maximum = 0.718896+/-0.033547
+# 11:00:35 PM 10/24/2011 scan completed.
+
+11:16:38 PM 10/24/2011 Executing "calc h 1 k 0 l 2 e 0"
+
+Calculating motor positions based on:
+h=1.00000 k=0.00000 l=2.00000 e=0.00000
+
+Resulting calculated motor positions:
+m2=-74.14280 m1=142.92860 a2=-74.14280 a1=142.92860 s2=76.05039 s1=96.90331 sgl=-2.73870 sgu=0.50000 mfocus=34.98513
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+11:19:13 PM 10/24/2011 Executing "drive h 1.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 1 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 76.05039
+s1 96.90331
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+11:21:40 PM 10/24/2011 Executing "drive h 1.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 1 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.47278
+s1 106.82826
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+11:31:20 PM 10/24/2011 Executing "scantitle "Looking for acoustic modes at X point in (0.5, 0, 2)""
+
+Setting the scantitle to:
+Looking for acoustic modes at X point in (0.5, 0, 2)
+
+
+11:31:29 PM 10/24/2011 Executing "scan h 0.5 k 0 l 2 e -4.5 -2.0 0.2 preset mcu 0.5"
+
+
+# scan = 42
+# date = 10/24/2011
+# time = 11:31:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.5 k 0 l 2 e -4.5 -2.0 0.2 preset mcu 0.5
+# builtin_command = scan h 0.5 k 0 l 2 e -4.5 -2.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at X point in (0.5, 0, 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.5000 0.0000 2.0000 -4.5000 30.671 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6422 37.9992 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.3250 5.0000 9.5000 299.1780 297.7460 300.0920 295.5530 300.000
+ 2 0.5000 0.0000 2.0000 -4.3000 30.370 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.9911 38.5759 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 1.3250 5.0000 9.3000 299.1820 297.7450 299.8670 295.3870 300.000
+ 3 0.5000 0.0000 2.0000 -4.1000 30.654 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.3375 39.1494 -2.7386 0.5000 0.0000 0.0000 153.4591 -53.0813 1.3250 5.0000 9.1000 299.1650 297.7400 299.6860 295.4850 300.000
+ 4 0.5000 0.0000 2.0000 -3.9000 30.590 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.6822 39.7200 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.3250 5.0000 8.9000 299.1430 297.7340 299.6270 295.7420 300.000
+ 5 0.5000 0.0000 2.0000 -3.7000 30.102 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.0258 40.2878 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.3250 5.0000 8.7000 299.1350 297.7310 299.7990 295.6880 300.000
+ 6 0.5000 0.0000 2.0000 -3.5000 30.515 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 40.3693 40.8532 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.3250 5.0000 8.5000 299.1480 297.7350 300.1830 295.6130 300.000
+ 7 0.5000 0.0000 2.0000 -3.3000 30.239 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.7133 41.4162 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.3250 5.0000 8.3000 299.1640 297.7390 300.5350 295.5860 300.000
+ 8 0.5000 0.0000 2.0000 -3.1000 30.506 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 43.0585 41.9770 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.3250 5.0000 8.1000 299.1660 297.7420 300.6510 295.7640 300.000
+ 9 0.5000 0.0000 2.0000 -2.9000 30.339 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.4057 42.5360 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.3250 5.0000 7.9000 299.1820 297.7490 300.5080 295.4970 300.000
+ 10 0.5000 0.0000 2.0000 -2.7000 30.212 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.7557 43.0931 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.3250 5.0000 7.7000 299.1820 297.7490 300.3770 295.6360 300.000
+ 11 0.5000 0.0000 2.0000 -2.5000 30.645 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1092 43.6485 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.3250 5.0000 7.5000 299.1790 297.7480 300.1740 295.6190 300.000
+ 12 0.5000 0.0000 2.0000 -2.3000 30.346 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.4671 44.2025 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.3250 5.0000 7.3000 299.1740 297.7470 299.9470 295.6310 300.000
+ 13 0.5000 0.0000 2.0000 -2.1000 30.309 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.8300 44.7550 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.3250 5.0000 7.1000 299.1610 297.7440 299.7480 295.6580 300.000
+# Sum of Counts = 40
+# Center of Mass = -3.305000+/-0.743657
+# Full Width Half-Maximum = 1.048761+/-0.434732
+# 11:39:19 PM 10/24/2011 scan completed.
+
+11:39:35 PM 10/24/2011 Executing "scantitle "Looking for acoustic modes at X point in (1.5, 0, 0)""
+
+Setting the scantitle to:
+Looking for acoustic modes at X point in (1.5, 0, 0)
+
+
+11:40:19 PM 10/24/2011 Executing "scan h 1.5 k 0 l 0 e -4.5 -1.9 0.2 preset mcu 0.5"
+
+
+# scan = 43
+# date = 10/24/2011
+# time = 11:40:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -4.5 -1.9 0.2 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 0 e -4.5 -1.9 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at X point in (1.5, 0, 0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -4.5000 30.071 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9806 78.9338 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3918 5.0000 9.5000 299.1460 297.7390 300.4340 295.7150 300.000
+ 2 1.5000 0.0000 0.0000 -4.3000 30.566 51.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.8311 79.6692 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 2.3918 5.0000 9.3000 299.1600 297.7430 300.6760 295.8130 300.000
+ 3 1.5000 0.0000 0.0000 -4.1000 30.198 71.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.6888 80.4176 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0814 2.3918 5.0000 9.1000 299.1920 297.7560 300.5140 295.0500 300.000
+ 4 1.5000 0.0000 0.0000 -3.9000 30.155 110.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.5541 81.1797 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.3918 5.0000 8.9000 299.1930 297.7570 300.4440 295.4410 300.000
+ 5 1.5000 0.0000 0.0000 -3.7000 30.303 117.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.4273 81.9564 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.3918 5.0000 8.7000 299.1950 297.7580 300.2740 295.4880 300.000
+ 6 1.5000 0.0000 0.0000 -3.5000 30.319 86.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.3089 82.7486 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3918 5.0000 8.5000 299.1730 297.7520 300.0940 295.7440 300.000
+ 7 1.5000 0.0000 0.0000 -3.3000 30.507 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.1994 83.5572 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.3918 5.0000 8.3000 299.1700 297.7530 299.8950 295.8330 300.000
+ 8 1.5000 0.0000 0.0000 -3.1000 30.409 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.0992 84.3832 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.3918 5.0000 8.1000 299.1560 297.7470 299.7510 295.7980 300.000
+ 9 1.5000 0.0000 0.0000 -2.9000 30.330 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.0089 85.2277 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.3918 5.0000 7.9000 299.1430 297.7440 299.6770 295.7800 300.000
+ 10 1.5000 0.0000 0.0000 -2.7000 30.283 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.9290 86.0921 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1244 2.3918 5.0000 7.7000 299.1350 297.7420 299.8000 295.8020 300.000
+ 11 1.5000 0.0000 0.0000 -2.5000 30.351 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.8602 86.9777 -2.7386 0.5000 0.0000 0.0000 150.5151 -58.9695 2.3918 5.0000 7.5000 299.1360 297.7420 300.1070 295.8050 300.000
+ 12 1.5000 0.0000 0.0000 -2.3000 30.234 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 130.8032 87.8858 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.3918 5.0000 7.3000 299.1740 297.7550 300.2150 294.9390 300.000
+ 13 1.5000 0.0000 0.0000 -2.1000 30.126 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 131.7585 88.8183 -2.7386 0.5000 0.0000 0.0000 149.6110 -60.7778 2.3918 5.0000 7.1000 299.1560 297.7470 300.4640 295.8060 300.000
+ 14 1.5000 0.0000 0.0000 -1.9000 30.435 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 132.7271 89.7768 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.3918 5.0000 6.9000 299.1660 297.7530 300.3570 295.6470 300.000
+# Sum of Counts = 554
+# Center of Mass = -3.714440+/-0.224165
+# Full Width Half-Maximum = 0.988470+/-0.113233
+# 11:48:40 PM 10/24/2011 scan completed.
+
+11:55:09 PM 10/24/2011 Executing "scantitle "Looking for acoustic modes at X point in (-0.5, 0, 1)""
+
+Setting the scantitle to:
+Looking for acoustic modes at X point in (-0.5, 0, 1)
+
+
+11:55:13 PM 10/24/2011 Executing "scan h -0.5 k 0 l 1 e -4.5 -2.0 0.2 preset mcu 0.5"
+
+
+# scan = 44
+# date = 10/24/2011
+# time = 11:55:13 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 1 e -4.5 -2.0 0.2 preset mcu 0.5
+# builtin_command = scan h -0.5 k 0 l 1 e -4.5 -2.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at X point in (-0.5, 0, 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 1.0000 -4.5000 30.349 0.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -78.9706 23.8944 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 0.9569 5.0000 9.5000 299.1470 297.7570 299.6530 294.7700 300.000
+ 2 -0.5000 0.0000 1.0000 -4.3000 30.531 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -76.9346 24.5763 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4634 0.9569 5.0000 9.3000 299.1290 297.7460 300.4450 295.6910 300.000
+ 3 -0.5000 0.0000 1.0000 -4.1000 30.079 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -74.9289 25.2410 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 0.9569 5.0000 9.1000 299.1510 297.7590 300.9240 295.6500 300.000
+ 4 -0.5000 0.0000 1.0000 -3.9000 30.411 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -72.9496 25.8894 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 0.9569 5.0000 8.9000 299.1690 297.7680 301.0300 295.6600 300.000
+ 5 -0.5000 0.0000 1.0000 -3.7000 30.213 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -70.9936 26.5226 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 0.9569 5.0000 8.7000 299.1820 297.7730 300.9030 295.6310 300.000
+ 6 -0.5000 0.0000 1.0000 -3.5000 30.417 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -69.0579 27.1413 -2.7386 0.5000 0.0000 0.0000 152.4620 -55.0756 0.9569 5.0000 8.5000 299.1900 297.7760 300.7170 295.6910 300.000
+ 7 -0.5000 0.0000 1.0000 -3.3000 30.230 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -67.1396 27.7462 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 0.9569 5.0000 8.3000 299.2320 297.7920 300.1910 294.3460 300.000
+ 8 -0.5000 0.0000 1.0000 -3.1000 30.499 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -65.2362 28.3377 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 0.9569 5.0000 8.1000 299.2500 297.7860 300.0280 294.8060 300.000
+ 9 -0.5000 0.0000 1.0000 -2.9000 30.348 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -63.3454 28.9165 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 0.9569 5.0000 7.9000 299.2070 297.7780 299.8910 295.2870 300.000
+ 10 -0.5000 0.0000 1.0000 -2.7000 30.594 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -61.4648 29.4827 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 0.9569 5.0000 7.7000 299.1860 297.7720 299.7370 295.4970 300.000
+ 11 -0.5000 0.0000 1.0000 -2.5000 30.181 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -59.5922 30.0368 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 0.9569 5.0000 7.5000 299.1590 297.7650 299.6640 295.7280 300.000
+ 12 -0.5000 0.0000 1.0000 -2.3000 30.128 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -57.7257 30.5787 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 0.9569 5.0000 7.3000 299.1490 297.7600 299.6640 295.8070 300.000
+ 13 -0.5000 0.0000 1.0000 -2.1000 30.531 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.8631 31.1086 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 0.9569 5.0000 7.1000 299.1420 297.7570 299.9490 295.8240 300.000
+# Sum of Counts = 38
+# Center of Mass = -3.200000+/-0.742861
+# Full Width Half-Maximum = 1.400000+/-0.501374
+# 12:04:11 AM 10/25/2011 scan completed.
+
+12:10:48 AM 10/25/2011 Executing "scantitle "Looking for acoustic modes at L point in (1.5, 0, 1.5)""
+
+Setting the scantitle to:
+Looking for acoustic modes at L point in (1.5, 0, 1.5)
+
+
+12:10:55 AM 10/25/2011 Executing "scan h 1.5 k 0 l 1.5 e -7.0 -4.2 0.2 preset mcu 0.5"
+
+
+# scan = 45
+# date = 10/25/2011
+# time = 12:10:55 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -7.0 -4.2 0.2 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 1.5 e -7.0 -4.2 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at L point in (1.5, 0, 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -7.0000 30.430 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 299.1850 297.7770 300.2980 295.7330 300.000
+ 2 1.5000 0.0000 1.5000 -6.8000 30.491 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 299.1680 297.7710 300.1410 295.8870 300.000
+ 3 1.5000 0.0000 1.5000 -6.6000 30.146 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 299.1590 297.7680 299.9450 295.8980 300.000
+ 4 1.5000 0.0000 1.5000 -6.4000 30.436 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 299.1480 297.7650 299.7390 295.9130 300.000
+ 5 1.5000 0.0000 1.5000 -6.2000 30.092 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 299.1340 297.7620 299.6270 295.8940 300.000
+ 6 1.5000 0.0000 1.5000 -6.0000 30.463 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 299.1210 297.7590 299.6990 295.8750 300.000
+ 7 1.5000 0.0000 1.5000 -5.8000 30.227 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 299.1220 297.7590 300.0870 295.9020 300.000
+ 8 1.5000 0.0000 1.5000 -5.6000 30.090 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 299.1820 297.7800 300.2020 294.3320 300.000
+ 9 1.5000 0.0000 1.5000 -5.4000 30.220 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6667 81.0636 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.5201 5.0000 10.4000 299.1960 297.7840 300.3840 294.4100 300.000
+ 10 1.5000 0.0000 1.5000 -5.2000 30.346 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4742 81.7871 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.5201 5.0000 10.2000 299.2140 297.7790 300.5070 295.2420 300.000
+ 11 1.5000 0.0000 1.5000 -5.0000 29.999 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2880 82.5229 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.5201 5.0000 10.0000 299.2160 297.7930 300.1600 294.2850 300.000
+ 12 1.5000 0.0000 1.5000 -4.8000 30.009 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1087 83.2714 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.5201 5.0000 9.8000 299.1670 297.7760 300.2750 295.9330 300.000
+ 13 1.5000 0.0000 1.5000 -4.6000 30.074 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9365 84.0335 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.5201 5.0000 9.6000 299.1710 297.7780 300.0090 295.5750 300.000
+ 14 1.5000 0.0000 1.5000 -4.4000 30.257 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7718 84.8099 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.5201 5.0000 9.4000 299.1490 297.7710 299.8620 295.9450 300.000
+ 15 1.5000 0.0000 1.5000 -4.2000 30.369 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.6150 85.6015 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.5201 5.0000 9.2000 299.1360 297.7680 299.6870 295.9300 300.000
+# Sum of Counts = 137
+# Center of Mass = -6.229197+/-0.755058
+# Full Width Half-Maximum = 1.413627+/-0.442587
+# 12:20:24 AM 10/25/2011 scan completed.
+
+12:20:59 AM 10/25/2011 Executing "scan h 1.5 k 0 l 1.5 e -8.2 -7.0 0.2 preset mcu 0.5"
+
+
+# scan = 46
+# date = 10/25/2011
+# time = 12:20:59 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -7.0 0.2 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -7.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at L point in (1.5, 0, 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 30.103 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8928 71.9280 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 299.1490 297.7640 299.9830 295.4140 300.000
+ 2 1.5000 0.0000 1.5000 -8.0000 30.730 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 299.1430 297.7660 300.5810 295.7820 300.000
+ 3 1.5000 0.0000 1.5000 -7.8000 30.386 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 299.1590 297.7730 300.8890 295.8290 300.000
+ 4 1.5000 0.0000 1.5000 -7.6000 30.345 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 299.1730 297.7790 300.8980 295.8660 300.000
+ 5 1.5000 0.0000 1.5000 -7.4000 30.247 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 299.1810 297.7830 300.7600 295.8960 300.000
+ 6 1.5000 0.0000 1.5000 -7.2000 30.357 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 299.2260 297.8000 300.2860 294.4710 300.000
+ 7 1.5000 0.0000 1.5000 -7.0000 30.389 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 299.2270 297.8020 299.9900 294.3620 300.000
+# Sum of Counts = 86
+# Center of Mass = -7.379070+/-1.126071
+# Full Width Half-Maximum = 0.774066+/-0.951240
+# 12:25:03 AM 10/25/2011 scan completed.
+
+12:28:07 AM 10/25/2011 Executing "scantitle "Looking for acoustic modes at L point in (-0.5, 0, 2.5)""
+
+Setting the scantitle to:
+Looking for acoustic modes at L point in (-0.5, 0, 2.5)
+
+
+12:28:10 AM 10/25/2011 Executing "scan h -0.5 k 0 l 2.5 e -8.2 -4.0 0.2 preset mcu 0.5"
+
+
+# scan = 47
+# date = 10/25/2011
+# time = 12:28:10 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -8.2 -4.0 0.2 preset mcu 0.5
+# builtin_command = scan h -0.5 k 0 l 2.5 e -8.2 -4.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at L point in (-0.5, 0, 2.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -8.2000 30.316 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.7455 35.3244 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 1.5445 5.0000 13.2000 299.1840 297.7820 300.5990 295.7350 300.000
+ 2 -0.5000 0.0000 2.5000 -8.0000 30.302 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 299.2140 297.7950 300.2350 294.6040 300.000
+ 3 -0.5000 0.0000 2.5000 -7.8000 30.243 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.3230 36.5303 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.5445 5.0000 12.8000 299.2340 297.7880 300.1490 295.2710 300.000
+ 4 -0.5000 0.0000 2.5000 -7.6000 30.361 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1234 37.1274 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5445 5.0000 12.6000 299.1760 297.7810 300.0860 295.9960 300.000
+ 5 -0.5000 0.0000 2.5000 -7.4000 30.163 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9308 37.7210 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5445 5.0000 12.4000 299.1670 297.7790 299.8990 296.0090 300.000
+ 6 -0.5000 0.0000 2.5000 -7.2000 30.266 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.7446 38.3114 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5445 5.0000 12.2000 299.1560 297.7760 299.7110 295.9730 300.000
+ 7 -0.5000 0.0000 2.5000 -7.0000 30.665 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5640 38.8989 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5445 5.0000 12.0000 299.1450 297.7720 299.6180 295.9490 300.000
+ 8 -0.5000 0.0000 2.5000 -6.8000 30.489 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3885 39.4839 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5445 5.0000 11.8000 299.1380 297.7690 299.7540 295.9590 300.000
+ 9 -0.5000 0.0000 2.5000 -6.6000 30.301 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2176 40.0665 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5445 5.0000 11.6000 299.1410 297.7690 300.1660 295.9810 300.000
+ 10 -0.5000 0.0000 2.5000 -6.4000 30.233 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.0507 40.6470 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5445 5.0000 11.4000 299.1570 297.7740 300.5950 296.0510 300.000
+ 11 -0.5000 0.0000 2.5000 -6.2000 30.467 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.8873 41.2258 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5445 5.0000 11.2000 299.1700 297.7780 300.6890 296.0200 300.000
+ 12 -0.5000 0.0000 2.5000 -6.0000 30.091 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.7270 41.8030 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5445 5.0000 11.0000 299.1780 297.7810 300.6240 296.0160 300.000
+ 13 -0.5000 0.0000 2.5000 -5.8000 30.357 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5691 42.3790 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 1.5445 5.0000 10.8000 299.1820 297.7850 300.4510 295.9780 300.000
+ 14 -0.5000 0.0000 2.5000 -5.6000 30.287 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.4133 42.9538 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5445 5.0000 10.6000 299.1810 297.7850 300.2500 296.0110 300.000
+ 15 -0.5000 0.0000 2.5000 -5.4000 30.333 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2590 43.5278 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5445 5.0000 10.4000 299.1740 297.7840 300.0360 295.9790 300.000
+ 16 -0.5000 0.0000 2.5000 -5.2000 30.481 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1058 44.1013 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5445 5.0000 10.2000 299.1660 297.7830 299.8330 295.9210 300.000
+ 17 -0.5000 0.0000 2.5000 -5.0000 30.333 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9531 44.6744 -2.7386 0.5000 0.0000 0.0000 154.7700 -50.4597 1.5445 5.0000 10.0000 299.1510 297.7790 299.6650 295.8640 300.000
+ 18 -0.5000 0.0000 2.5000 -4.8000 30.423 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8006 45.2473 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5445 5.0000 9.8000 299.1410 297.7760 299.6320 295.8410 300.000
+ 19 -0.5000 0.0000 2.5000 -4.6000 30.321 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.6478 45.8204 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5445 5.0000 9.6000 299.1340 297.7720 299.8680 295.9160 300.000
+ 20 -0.5000 0.0000 2.5000 -4.4000 30.358 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4942 46.3937 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5445 5.0000 9.4000 299.1410 297.7740 300.3320 295.8770 300.000
+ 21 -0.5000 0.0000 2.5000 -4.2000 30.300 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.3392 46.9677 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.5445 5.0000 9.2000 299.1590 297.7800 300.6340 295.8690 300.000
+ 22 -0.5000 0.0000 2.5000 -4.0000 30.317 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.1826 47.5424 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5445 5.0000 9.0000 299.1720 297.7840 300.6740 295.8440 300.000
+# Sum of Counts = 114
+# Center of Mass = -6.684211+/-0.889808
+# Full Width Half-Maximum = 1.900615+/-0.392921
+# 12:41:28 AM 10/25/2011 scan completed.
+
+12:43:41 AM 10/25/2011 Executing "scantitle "Looking for acoustic modes at L point in (0.5, 0, 3.5)""
+
+Setting the scantitle to:
+Looking for acoustic modes at L point in (0.5, 0, 3.5)
+
+
+12:43:44 AM 10/25/2011 Executing "scan h 0.5 k 0 l 3.5 e -8.2 -4.0 0.2 preset mcu 0.5"
+
+
+# scan = 48
+# date = 10/25/2011
+# time = 12:43:44 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.5 k 0 l 3.5 e -8.2 -4.0 0.2 preset mcu 0.5
+# builtin_command = scan h 0.5 k 0 l 3.5 e -8.2 -4.0 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for acoustic modes at L point in (0.5, 0, 3.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.5000 0.0000 3.5000 -8.2000 30.126 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7324 53.0124 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.0163 5.0000 13.2000 299.1470 297.7810 299.6360 295.7090 300.000
+ 2 0.5000 0.0000 3.5000 -8.0000 30.331 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6155 53.5694 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.0163 5.0000 13.0000 299.1330 297.7780 299.6660 295.7960 300.000
+ 3 0.5000 0.0000 3.5000 -7.8000 30.401 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.4991 54.1284 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.0163 5.0000 12.8000 299.1310 297.7780 299.9550 295.7560 300.000
+ 4 0.5000 0.0000 3.5000 -7.6000 30.204 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.3832 54.6897 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.0163 5.0000 12.6000 299.1410 297.7800 300.3810 295.7460 300.000
+ 5 0.5000 0.0000 3.5000 -7.4000 30.287 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2683 55.2535 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.0163 5.0000 12.4000 299.1530 297.7850 300.6150 295.7880 300.000
+ 6 0.5000 0.0000 3.5000 -7.2000 30.449 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.1545 55.8199 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.0163 5.0000 12.2000 299.1610 297.7890 300.6230 295.8320 300.000
+ 7 0.5000 0.0000 3.5000 -7.0000 30.430 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.0419 56.3892 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.0163 5.0000 12.0000 299.1670 297.7920 300.4850 295.8660 300.000
+ 8 0.5000 0.0000 3.5000 -6.8000 30.468 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.9309 56.9616 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.0163 5.0000 11.8000 299.1690 297.7930 300.2920 295.8500 300.000
+ 9 0.5000 0.0000 3.5000 -6.6000 30.563 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.8216 57.5373 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.0163 5.0000 11.6000 299.1640 297.7920 300.1070 295.8510 300.000
+ 10 0.5000 0.0000 3.5000 -6.4000 30.455 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.7143 58.1166 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.0163 5.0000 11.4000 299.1580 297.7900 299.8810 295.7910 300.000
+ 11 0.5000 0.0000 3.5000 -6.2000 30.437 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.6092 58.6996 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.0163 5.0000 11.2000 299.1440 297.7860 299.7090 295.8400 300.000
+ 12 0.5000 0.0000 3.5000 -6.0000 30.449 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.5065 59.2867 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.0163 5.0000 11.0000 299.1310 297.7810 299.6240 295.8330 300.000
+ 13 0.5000 0.0000 3.5000 -5.8000 30.378 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.4065 59.8781 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.0163 5.0000 10.8000 299.1210 297.7770 299.7610 295.8280 300.000
+ 14 0.5000 0.0000 3.5000 -5.6000 29.944 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 38.3094 60.4740 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.0163 5.0000 10.6000 299.1240 297.7780 300.1870 295.8980 300.000
+ 15 0.5000 0.0000 3.5000 -5.4000 30.512 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.2156 61.0749 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.0163 5.0000 10.4000 299.1390 297.7820 300.5430 295.9010 300.000
+ 16 0.5000 0.0000 3.5000 -5.2000 30.353 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 40.1251 61.6809 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.0163 5.0000 10.2000 299.1540 297.7880 300.6810 295.8670 300.000
+ 17 0.5000 0.0000 3.5000 -5.0000 30.514 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0384 62.2924 -2.7386 0.5000 0.0000 0.0000 154.7700 -50.4597 2.0163 5.0000 10.0000 299.1630 297.7910 300.6020 295.8810 300.000
+ 18 0.5000 0.0000 3.5000 -4.8000 30.424 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.9557 62.9096 -2.7386 0.5000 0.0000 0.0000 154.4957 -51.0086 2.0163 5.0000 9.8000 299.1640 297.7920 300.4200 295.9060 300.000
+ 19 0.5000 0.0000 3.5000 -4.6000 30.328 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.8772 63.5331 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.0163 5.0000 9.6000 299.1620 297.7940 300.2060 295.8950 300.000
+ 20 0.5000 0.0000 3.5000 -4.4000 30.246 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 43.8034 64.1631 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.0163 5.0000 9.4000 299.1550 297.7930 299.9940 295.9100 300.000
+ 21 0.5000 0.0000 3.5000 -4.2000 30.745 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.7345 64.8001 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0163 5.0000 9.2000 299.1450 297.7890 299.8010 295.8050 300.000
+ 22 0.5000 0.0000 3.5000 -4.0000 30.106 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6708 65.4444 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0163 5.0000 9.0000 299.1340 297.7860 299.6470 295.8370 300.000
+# Sum of Counts = 100
+# Center of Mass = -6.754000+/-0.960575
+# Full Width Half-Maximum = 2.037139+/-0.439797
+# 12:56:15 AM 10/25/2011 scan completed.
+
+1:07:10 AM 10/25/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.2), add points""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.2), add points
+
+
+1:07:20 AM 10/25/2011 Executing "scan h -1 k 0 l 2.2 e -1.25 -0.45 0.1 preset mcu 0.25"
+
+
+# scan = 49
+# date = 10/25/2011
+# time = 1:07:20 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.2 e -1.25 -0.45 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.2 e -1.25 -0.45 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.2), add points
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.2000 -1.2500 15.003 262.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.9295 73.5110 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.9743 5.0000 6.2500 299.1300 297.7860 299.6310 295.9050 300.000
+ 2 -1.0000 0.0000 2.2000 -1.1500 15.162 382.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.3935 73.9121 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.9743 5.0000 6.1500 299.1230 297.7850 299.7080 295.9530 300.000
+ 3 -1.0000 0.0000 2.2000 -1.0500 15.221 658.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.8542 74.3178 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.9743 5.0000 6.0500 299.1200 297.7840 299.8810 295.9750 300.000
+ 4 -1.0000 0.0000 2.2000 -0.9500 15.221 711.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.3114 74.7283 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.9743 5.0000 5.9500 299.1250 297.7850 300.1140 295.9770 300.000
+ 5 -1.0000 0.0000 2.2000 -0.8500 15.203 419.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7652 75.1438 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.9743 5.0000 5.8500 299.1330 297.7870 300.3510 295.9820 300.000
+ 6 -1.0000 0.0000 2.2000 -0.7500 15.426 998.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2154 75.5646 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.9743 5.0000 5.7500 299.1400 297.7880 300.5320 295.9700 300.000
+ 7 -1.0000 0.0000 2.2000 -0.6500 15.409 1099.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6618 75.9908 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0932 1.9743 5.0000 5.6500 299.1470 297.7910 300.6430 296.0030 300.000
+ 8 -1.0000 0.0000 2.2000 -0.5500 15.152 343.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1043 76.4227 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.9743 5.0000 5.5500 299.1530 297.7940 300.6800 296.0200 300.000
+ 9 -1.0000 0.0000 2.2000 -0.4500 15.079 149.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.5428 76.8605 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.9743 5.0000 5.4500 299.1580 297.7960 300.6390 296.0080 300.000
+# Sum of Counts = 5021
+# Center of Mass = -0.838050+/-0.016982
+# Full Width Half-Maximum = 0.416416+/-0.012179
+# 1:10:34 AM 10/25/2011 scan completed.
+
+1:13:29 AM 10/25/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.6), add data
+
+
+1:13:30 AM 10/25/2011 Executing "scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5"
+
+
+# scan = 50
+# date = 10/25/2011
+# time = 1:13:30 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -2.0000 30.472 60.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 299.1270 297.7860 299.6220 295.9550 300.000
+ 2 -1.0000 0.0000 2.6000 -1.9000 30.506 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2316 76.6655 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.1060 5.0000 6.9000 299.1220 297.7850 299.8000 295.9590 300.000
+ 3 -1.0000 0.0000 2.6000 -1.8000 30.327 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7290 77.0706 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 2.1060 5.0000 6.8000 299.1280 297.7850 300.2270 295.9260 300.000
+ 4 -1.0000 0.0000 2.6000 -1.7000 30.346 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.2234 77.4803 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.1060 5.0000 6.7000 299.1450 297.7930 300.5900 295.8200 300.000
+ 5 -1.0000 0.0000 2.6000 -1.6000 30.291 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7149 77.8948 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.1060 5.0000 6.6000 299.1560 297.7970 300.6790 295.8780 300.000
+ 6 -1.0000 0.0000 2.6000 -1.5000 30.555 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2033 78.3142 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.1060 5.0000 6.5000 299.1700 297.8030 300.5780 295.6790 300.000
+ 7 -1.0000 0.0000 2.6000 -1.4000 30.431 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6886 78.7388 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 2.1060 5.0000 6.4000 299.1740 297.8040 300.3820 295.6260 300.000
+ 8 -1.0000 0.0000 2.6000 -1.3000 30.584 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1705 79.1688 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.1060 5.0000 6.3000 299.1700 297.8030 300.1930 295.7140 300.000
+ 9 -1.0000 0.0000 2.6000 -1.2000 30.446 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.6492 79.6043 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.1060 5.0000 6.2000 299.1630 297.8020 299.9500 295.7100 300.000
+ 10 -1.0000 0.0000 2.6000 -1.1000 30.264 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.1243 80.0456 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1531 2.1060 5.0000 6.1000 299.1600 297.8030 299.7160 295.3530 300.000
+ 11 -1.0000 0.0000 2.6000 -1.0000 30.377 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5958 80.4928 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.1060 5.0000 6.0000 299.1390 297.7950 299.6510 295.7830 300.000
+ 12 -1.0000 0.0000 2.6000 -0.9000 30.510 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0636 80.9464 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 2.1060 5.0000 5.9000 299.1230 297.7910 299.6630 295.8200 300.000
+ 13 -1.0000 0.0000 2.6000 -0.8000 30.572 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.5275 81.4064 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0695 2.1060 5.0000 5.8000 299.1200 297.7890 299.9520 295.7640 300.000
+ 14 -1.0000 0.0000 2.6000 -0.7000 30.546 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.9875 81.8732 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 2.1060 5.0000 5.7000 299.1310 297.7930 300.4010 295.7970 300.000
+ 15 -1.0000 0.0000 2.6000 -0.6000 30.310 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.4434 82.3471 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 2.1060 5.0000 5.6000 299.1470 297.7980 300.6580 295.8040 300.000
+ 16 -1.0000 0.0000 2.6000 -0.5000 30.502 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8949 82.8283 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.1060 5.0000 5.5000 299.1560 297.8010 300.6570 295.8790 300.000
+ 17 -1.0000 0.0000 2.6000 -0.4000 30.408 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.3421 83.3173 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 2.1060 5.0000 5.4000 299.1610 297.8040 300.5290 295.9030 300.000
+ 18 -1.0000 0.0000 2.6000 -0.3000 30.393 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.7847 83.8144 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 2.1060 5.0000 5.3000 299.1610 297.8060 300.3230 295.9080 300.000
+ 19 -1.0000 0.0000 2.6000 -0.2000 30.564 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2225 84.3198 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 2.1060 5.0000 5.2000 299.1580 297.8050 300.1070 295.8760 300.000
+ 20 -1.0000 0.0000 2.6000 -0.1000 30.110 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.6554 84.8341 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 2.1060 5.0000 5.1000 299.1500 297.8020 299.8970 295.8440 300.000
+ 21 -1.0000 0.0000 2.6000 0.0000 30.769 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.0832 85.3576 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 2.1060 5.0000 5.0000 299.1450 297.8000 299.6890 295.6760 300.000
+ 22 -1.0000 0.0000 2.6000 0.1000 30.244 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5056 85.8909 -2.7386 0.5000 0.0000 0.0000 142.4878 -75.0243 2.1060 5.0000 4.9000 299.1320 297.7970 299.5810 295.6620 300.000
+ 23 -1.0000 0.0000 2.6000 0.2000 30.374 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.9226 86.4343 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 2.1060 5.0000 4.8000 299.1230 297.7930 299.7670 295.7990 300.000
+ 24 -1.0000 0.0000 2.6000 0.3000 30.196 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3338 86.9885 -2.7386 0.5000 0.0000 0.0000 141.5558 -76.8882 2.1060 5.0000 4.7000 299.1270 297.7930 300.1980 295.7680 300.000
+# Sum of Counts = 276
+# Center of Mass = -1.261232+/-0.116671
+# Full Width Half-Maximum = 1.517316+/-0.102993
+# 1:26:58 AM 10/25/2011 scan completed.
+
+1:26:59 AM 10/25/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.9), add data
+
+
+1:26:59 AM 10/25/2011 Executing "scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5"
+
+
+# scan = 51
+# date = 10/25/2011
+# time = 1:26:59 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -4.0000 30.253 119.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0830 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 299.1470 297.7970 300.7080 295.9890 300.000
+ 2 -1.0000 0.0000 2.9000 -3.9000 30.429 133.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6363 73.6665 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 2.2130 5.0000 8.9000 299.1590 297.8020 300.6960 295.9840 300.000
+ 3 -1.0000 0.0000 2.9000 -3.8000 30.290 102.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1880 74.0211 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2130 5.0000 8.8000 299.1640 297.8050 300.5530 295.9980 300.000
+ 4 -1.0000 0.0000 2.9000 -3.7000 30.315 90.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7378 74.3786 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2130 5.0000 8.7000 299.1620 297.8060 300.3500 296.0240 300.000
+ 5 -1.0000 0.0000 2.9000 -3.6000 30.476 84.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2859 74.7390 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7276 2.2130 5.0000 8.6000 299.1600 297.8060 300.1260 296.0010 300.000
+ 6 -1.0000 0.0000 2.9000 -3.5000 30.365 70.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8321 75.1025 -2.7386 0.5000 0.0000 0.0000 152.4621 -55.0756 2.2130 5.0000 8.5000 299.1510 297.8040 299.9290 295.9960 300.000
+ 7 -1.0000 0.0000 2.9000 -3.4000 30.361 55.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3764 75.4692 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2130 5.0000 8.4000 299.1420 297.8000 299.7290 295.9500 300.000
+ 8 -1.0000 0.0000 2.9000 -3.3000 30.568 49.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.9188 75.8391 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2130 5.0000 8.3000 299.1320 297.7970 299.6180 295.9380 300.000
+ 9 -1.0000 0.0000 2.9000 -3.2000 30.385 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4592 76.2123 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.2130 5.0000 8.2000 299.1240 297.7950 299.7070 295.9110 300.000
+ 10 -1.0000 0.0000 2.9000 -3.1000 30.545 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9974 76.5890 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.2130 5.0000 8.1000 299.1230 297.7920 300.1210 295.9620 300.000
+ 11 -1.0000 0.0000 2.9000 -3.0000 30.272 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5336 76.9692 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9223 2.2130 5.0000 8.0000 299.1360 297.7960 300.5540 295.9960 300.000
+ 12 -1.0000 0.0000 2.9000 -2.9000 30.089 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.0675 77.3532 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2130 5.0000 7.9000 299.1520 297.8020 300.7050 295.9440 300.000
+ 13 -1.0000 0.0000 2.9000 -2.8000 30.455 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.5992 77.7408 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2130 5.0000 7.8000 299.1640 297.8080 300.6630 295.9270 300.000
+ 14 -1.0000 0.0000 2.9000 -2.7000 30.624 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1286 78.1325 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1244 2.2130 5.0000 7.7000 299.1710 297.8120 300.4770 295.7900 300.000
+ 15 -1.0000 0.0000 2.9000 -2.6000 30.427 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6556 78.5281 -2.7386 0.5000 0.0000 0.0000 150.7288 -58.5424 2.2130 5.0000 7.6000 299.1680 297.8130 300.2790 295.8260 300.000
+ 16 -1.0000 0.0000 2.9000 -2.5000 30.179 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1802 78.9279 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9696 2.2130 5.0000 7.5000 299.1630 297.8130 300.0670 295.7640 300.000
+# Sum of Counts = 803
+# Center of Mass = -3.620299+/-0.181080
+# Full Width Half-Maximum = 0.684935+/-0.096506
+# 1:36:08 AM 10/25/2011 scan completed.
+
+1:36:08 AM 10/25/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.2), add data
+
+
+1:36:08 AM 10/25/2011 Executing "scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5"
+
+
+# scan = 52
+# date = 10/25/2011
+# time = 1:36:08 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -7.9000 30.495 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0596 65.3850 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3259 5.0000 12.9000 299.1600 297.8080 299.7380 295.7300 300.000
+ 2 -1.0000 0.0000 3.2000 -7.8000 30.542 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6669 65.6762 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.3259 5.0000 12.8000 299.1360 297.8030 299.6160 295.8220 300.000
+ 3 -1.0000 0.0000 3.2000 -7.7000 30.379 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2736 65.9686 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.3259 5.0000 12.7000 299.1300 297.7980 299.6730 295.8780 300.000
+ 4 -1.0000 0.0000 3.2000 -7.6000 30.493 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.8796 66.2622 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.3259 5.0000 12.6000 299.1270 297.7980 300.1820 295.9460 300.000
+ 5 -1.0000 0.0000 3.2000 -7.5000 30.581 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4850 66.5572 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.3259 5.0000 12.5000 299.1410 297.8020 300.6600 295.9910 300.000
+ 6 -1.0000 0.0000 3.2000 -7.4000 30.139 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0897 66.8534 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.3259 5.0000 12.4000 299.1590 297.8080 300.8340 296.0290 300.000
+ 7 -1.0000 0.0000 3.2000 -7.3000 30.160 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6936 67.1510 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.3259 5.0000 12.3000 299.1740 297.8130 300.7860 296.0070 300.000
+ 8 -1.0000 0.0000 3.2000 -7.2000 30.436 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2968 67.4500 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.3259 5.0000 12.2000 299.1820 297.8180 300.6130 296.0010 300.000
+ 9 -1.0000 0.0000 3.2000 -7.1000 30.354 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8993 67.7504 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.3259 5.0000 12.1000 299.1840 297.8180 300.4190 296.0980 300.000
+ 10 -1.0000 0.0000 3.2000 -7.0000 30.617 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5010 68.0522 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3259 5.0000 12.0000 299.1810 297.8190 300.1700 296.0030 300.000
+ 11 -1.0000 0.0000 3.2000 -6.9000 30.442 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1018 68.3555 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3259 5.0000 11.9000 299.1740 297.8180 299.9710 295.9940 300.000
+ 12 -1.0000 0.0000 3.2000 -6.8000 30.343 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7018 68.6602 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3259 5.0000 11.8000 299.1630 297.8140 299.7770 295.9930 300.000
+ 13 -1.0000 0.0000 3.2000 -6.7000 30.538 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3010 68.9666 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3259 5.0000 11.7000 299.1500 297.8090 299.6250 295.9510 300.000
+ 14 -1.0000 0.0000 3.2000 -6.6000 30.471 43.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8992 69.2746 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3259 5.0000 11.6000 299.1560 297.8130 299.5100 295.0930 300.000
+ 15 -1.0000 0.0000 3.2000 -6.5000 30.574 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4966 69.5841 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3259 5.0000 11.5000 299.1380 297.8050 300.0610 295.9700 300.000
+ 16 -1.0000 0.0000 3.2000 -6.4000 30.559 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0930 69.8954 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0590 2.3259 5.0000 11.4000 299.1560 297.8110 300.6070 296.0040 300.000
+ 17 -1.0000 0.0000 3.2000 -6.3000 30.339 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6884 70.2083 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 2.3259 5.0000 11.3000 299.1970 297.8260 300.6910 295.0200 300.000
+ 18 -1.0000 0.0000 3.2000 -6.2000 30.221 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2829 70.5230 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3259 5.0000 11.2000 299.2710 297.8410 300.4690 293.8480 300.000
+ 19 -1.0000 0.0000 3.2000 -6.1000 30.309 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8763 70.8395 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3259 5.0000 11.1000 299.1970 297.8270 300.6980 296.0070 300.000
+ 20 -1.0000 0.0000 3.2000 -6.0000 30.412 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4687 71.1579 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3259 5.0000 11.0000 299.2050 297.8300 300.4510 295.7640 300.000
+ 21 -1.0000 0.0000 3.2000 -5.9000 30.244 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0600 71.4781 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3259 5.0000 10.9000 299.2130 297.8370 300.1240 295.1320 300.000
+ 22 -1.0000 0.0000 3.2000 -5.8000 30.382 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6502 71.8003 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3259 5.0000 10.8000 299.2090 297.8330 299.9650 295.5540 300.000
+ 23 -1.0000 0.0000 3.2000 -5.7000 30.443 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2392 72.1244 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3259 5.0000 10.7000 299.1880 297.8270 299.8350 295.7700 300.000
+ 24 -1.0000 0.0000 3.2000 -5.6000 30.529 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.8271 72.4507 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3259 5.0000 10.6000 299.1840 297.8270 299.6680 295.5620 300.000
+ 25 -1.0000 0.0000 3.2000 -5.5000 30.234 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4138 72.7790 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3259 5.0000 10.5000 299.1720 297.8230 299.6330 295.5270 300.000
+ 26 -1.0000 0.0000 3.2000 -5.4000 30.365 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9992 73.1094 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3259 5.0000 10.4000 299.1950 297.8310 299.5930 294.5440 300.000
+ 27 -1.0000 0.0000 3.2000 -5.3000 30.581 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5834 73.4421 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3259 5.0000 10.3000 299.2020 297.8330 299.9990 294.5110 300.000
+ 28 -1.0000 0.0000 3.2000 -5.2000 30.282 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1662 73.7770 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3259 5.0000 10.2000 299.1930 297.8280 300.7070 295.4720 300.000
+ 29 -1.0000 0.0000 3.2000 -5.1000 30.724 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7478 74.1142 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.3259 5.0000 10.1000 299.2150 297.8380 300.9610 295.4150 300.000
+ 30 -1.0000 0.0000 3.2000 -5.0000 30.283 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3280 74.4538 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3259 5.0000 10.0000 299.2530 297.8530 300.8620 294.8540 300.000
+ 31 -1.0000 0.0000 3.2000 -4.9000 30.293 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9067 74.7959 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3259 5.0000 9.9000 299.2350 297.8450 300.9220 295.7460 300.000
+ 32 -1.0000 0.0000 3.2000 -4.8000 30.344 51.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.4840 75.1405 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3259 5.0000 9.8000 299.3220 297.8690 300.3260 293.9290 300.000
+ 33 -1.0000 0.0000 3.2000 -4.7000 30.214 50.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.0599 75.4876 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3259 5.0000 9.7000 299.2960 297.8560 300.3130 295.0750 300.000
+ 34 -1.0000 0.0000 3.2000 -4.6000 30.301 52.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.6342 75.8374 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3259 5.0000 9.6000 299.2330 297.8470 300.2500 295.7970 300.000
+ 35 -1.0000 0.0000 3.2000 -4.5000 30.193 57.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2070 76.1900 -2.7386 0.5000 0.0000 0.0000 154.0666 -51.8666 2.3259 5.0000 9.5000 299.2230 297.8440 300.0320 295.8280 300.000
+ 36 -1.0000 0.0000 3.2000 -4.4000 30.482 77.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7781 76.5453 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3259 5.0000 9.4000 299.2120 297.8420 299.8460 295.8910 300.000
+ 37 -1.0000 0.0000 3.2000 -4.3000 30.314 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3476 76.9035 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.3259 5.0000 9.3000 299.1950 297.8360 299.6740 295.8760 300.000
+ 38 -1.0000 0.0000 3.2000 -4.2000 30.418 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9154 77.2647 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3259 5.0000 9.2000 299.1810 297.8310 299.6430 295.8890 300.000
+ 39 -1.0000 0.0000 3.2000 -4.1000 30.398 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.4815 77.6289 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.3259 5.0000 9.1000 299.1770 297.8300 299.8310 295.8140 300.000
+ 40 -1.0000 0.0000 3.2000 -4.0000 30.589 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.0458 77.9962 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3259 5.0000 9.0000 299.1830 297.8320 300.2060 295.7880 300.000
+ 41 -1.0000 0.0000 3.2000 -3.9000 30.128 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6083 78.3668 -2.7386 0.5000 0.0000 0.0000 153.1390 -53.7217 2.3259 5.0000 8.9000 299.1940 297.8360 300.5260 295.8190 300.000
+ 42 -1.0000 0.0000 3.2000 -3.8000 30.437 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1689 78.7406 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.3259 5.0000 8.8000 299.2040 297.8390 300.6150 295.8110 300.000
+ 43 -1.0000 0.0000 3.2000 -3.7000 30.444 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7276 79.1179 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.3259 5.0000 8.7000 299.2090 297.8410 300.5460 295.8670 300.000
+ 44 -1.0000 0.0000 3.2000 -3.6000 30.365 3.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.2842 79.4987 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3259 5.0000 8.6000 299.2080 297.8420 300.3890 295.8940 300.000
+ 45 -1.0000 0.0000 3.2000 -3.5000 30.534 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.8389 79.8830 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3259 5.0000 8.5000 299.2090 297.8420 300.1880 295.8460 300.000
+# Sum of Counts = 1024
+# Center of Mass = -5.450293+/-0.243676
+# Full Width Half-Maximum = 2.359555+/-0.103754
+# 2:00:56 AM 10/25/2011 scan completed.
+
+2:00:56 AM 10/25/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.5), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.5), add data
+
+
+2:00:57 AM 10/25/2011 Executing "scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5"
+
+
+# scan = 53
+# date = 10/25/2011
+# time = 2:00:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.5), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.2000 30.485 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8852 68.9950 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.4439 5.0000 13.2000 299.1930 297.8360 299.9050 296.0860 300.000
+ 2 -1.0000 0.0000 3.5000 -8.1000 30.392 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.5072 69.2901 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 2.4439 5.0000 13.1000 299.1790 297.8310 299.7330 296.0690 300.000
+ 3 -1.0000 0.0000 3.5000 -8.0000 30.482 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1284 69.5865 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.4439 5.0000 13.0000 299.1650 297.8260 299.6340 296.0460 300.000
+ 4 -1.0000 0.0000 3.5000 -7.9000 30.516 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.7488 69.8843 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.4439 5.0000 12.9000 299.1550 297.8230 299.7260 296.0320 300.000
+ 5 -1.0000 0.0000 3.5000 -7.8000 30.169 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3686 70.1836 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.4439 5.0000 12.8000 299.1560 297.8230 300.0930 296.0370 300.000
+ 6 -1.0000 0.0000 3.5000 -7.7000 30.437 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.9876 70.4843 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.4439 5.0000 12.7000 299.1680 297.8260 300.4800 295.9780 300.000
+ 7 -1.0000 0.0000 3.5000 -7.6000 30.135 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.6058 70.7866 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.4439 5.0000 12.6000 299.1960 297.8370 300.5340 295.2850 300.000
+ 8 -1.0000 0.0000 3.5000 -7.5000 30.253 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2231 71.0903 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.4439 5.0000 12.5000 299.1880 297.8330 300.6400 296.0830 300.000
+ 9 -1.0000 0.0000 3.5000 -7.4000 30.319 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8396 71.3956 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.4439 5.0000 12.4000 299.1940 297.8360 300.4680 296.0210 300.000
+ 10 -1.0000 0.0000 3.5000 -7.3000 30.432 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4553 71.7026 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.4439 5.0000 12.3000 299.1930 297.8380 300.2870 296.0450 300.000
+ 11 -1.0000 0.0000 3.5000 -7.2000 30.286 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0701 72.0111 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.4439 5.0000 12.2000 299.1860 297.8350 300.0840 296.0410 300.000
+ 12 -1.0000 0.0000 3.5000 -7.1000 30.246 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6840 72.3214 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.4439 5.0000 12.1000 299.1780 297.8330 299.9010 296.0610 300.000
+ 13 -1.0000 0.0000 3.5000 -7.0000 30.601 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2970 72.6334 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.4439 5.0000 12.0000 299.1720 297.8310 299.6990 295.9570 300.000
+ 14 -1.0000 0.0000 3.5000 -6.9000 30.151 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9090 72.9471 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.4439 5.0000 11.9000 299.1580 297.8260 299.6550 295.8780 300.000
+ 15 -1.0000 0.0000 3.5000 -6.8000 30.473 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5200 73.2626 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.4439 5.0000 11.8000 299.1630 297.8310 299.7640 295.5140 300.000
+ 16 -1.0000 0.0000 3.5000 -6.7000 30.387 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1301 73.5800 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 2.4439 5.0000 11.7000 299.1600 297.8270 300.1490 295.6830 300.000
+ 17 -1.0000 0.0000 3.5000 -6.6000 30.393 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7391 73.8993 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.4439 5.0000 11.6000 299.1830 297.8370 300.3080 295.1740 300.000
+ 18 -1.0000 0.0000 3.5000 -6.5000 30.381 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3470 74.2205 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.4439 5.0000 11.5000 299.1760 297.8340 300.5240 295.8170 300.000
+ 19 -1.0000 0.0000 3.5000 -6.4000 30.308 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9539 74.5437 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.4439 5.0000 11.4000 299.1840 297.8370 300.4600 295.7420 300.000
+ 20 -1.0000 0.0000 3.5000 -6.3000 30.311 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5596 74.8689 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.4439 5.0000 11.3000 299.2190 297.8510 300.0640 294.4980 300.000
+ 21 -1.0000 0.0000 3.5000 -6.2000 30.297 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1642 75.1962 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.4439 5.0000 11.2000 299.2080 297.8500 299.8770 294.5640 300.000
+ 22 -1.0000 0.0000 3.5000 -6.1000 30.231 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7677 75.5257 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.4439 5.0000 11.1000 299.1720 297.8350 299.9350 295.8030 300.000
+ 23 -1.0000 0.0000 3.5000 -6.0000 30.384 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.3699 75.8573 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.4439 5.0000 11.0000 299.1650 297.8320 299.7510 295.7440 300.000
+ 24 -1.0000 0.0000 3.5000 -5.9000 30.222 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9710 76.1912 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.4439 5.0000 10.9000 299.1630 297.8320 299.5660 295.4560 300.000
+ 25 -1.0000 0.0000 3.5000 -5.8000 30.179 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5707 76.5273 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.4439 5.0000 10.8000 299.1390 297.8220 299.7730 295.7900 300.000
+ 26 -1.0000 0.0000 3.5000 -5.7000 30.173 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1692 76.8658 -2.7386 0.5000 0.0000 0.0000 155.6648 -48.6702 2.4439 5.0000 10.7000 299.1430 297.8240 300.2300 295.8430 300.000
+ 27 -1.0000 0.0000 3.5000 -5.6000 30.289 2.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7663 77.2068 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.4439 5.0000 10.6000 299.1560 297.8280 300.6160 295.8380 300.000
+ 28 -1.0000 0.0000 3.5000 -5.5000 30.379 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.3621 77.5502 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.4439 5.0000 10.5000 299.1730 297.8340 300.7350 295.8560 300.000
+ 29 -1.0000 0.0000 3.5000 -5.4000 30.408 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.9565 77.8961 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.4439 5.0000 10.4000 299.1850 297.8390 300.6450 295.7600 300.000
+ 30 -1.0000 0.0000 3.5000 -5.3000 30.269 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5495 78.2447 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.4439 5.0000 10.3000 299.1880 297.8410 300.4610 295.7580 300.000
+ 31 -1.0000 0.0000 3.5000 -5.2000 30.604 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1410 78.5959 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.4439 5.0000 10.2000 299.1850 297.8400 300.2770 295.7770 300.000
+ 32 -1.0000 0.0000 3.5000 -5.1000 30.184 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7310 78.9498 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.4439 5.0000 10.1000 299.1790 297.8400 300.0550 295.8370 300.000
+ 33 -1.0000 0.0000 3.5000 -5.0000 30.477 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3195 79.3066 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.4439 5.0000 10.0000 299.1700 297.8370 299.8680 295.7570 300.000
+ 34 -1.0000 0.0000 3.5000 -4.9000 30.343 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9064 79.6663 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 2.4439 5.0000 9.9000 299.1720 297.8380 299.6190 295.4510 300.000
+ 35 -1.0000 0.0000 3.5000 -4.8000 30.018 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.4917 80.0289 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.4439 5.0000 9.8000 299.1530 297.8310 299.6160 295.5840 300.000
+ 36 -1.0000 0.0000 3.5000 -4.7000 30.622 33.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0753 80.3946 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2899 2.4439 5.0000 9.7000 299.1450 297.8290 299.9520 295.7960 300.000
+ 37 -1.0000 0.0000 3.5000 -4.6000 30.555 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.6572 80.7634 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.4439 5.0000 9.6000 299.1550 297.8310 300.3680 295.7480 300.000
+ 38 -1.0000 0.0000 3.5000 -4.5000 30.319 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.2374 81.1354 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.4439 5.0000 9.5000 299.1680 297.8340 300.6220 295.8680 300.000
+ 39 -1.0000 0.0000 3.5000 -4.4000 30.062 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8158 81.5108 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.4439 5.0000 9.4000 299.1780 297.8390 300.5910 295.8300 300.000
+ 40 -1.0000 0.0000 3.5000 -4.3000 30.344 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.3924 81.8895 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.4439 5.0000 9.3000 299.1820 297.8420 300.4520 295.7650 300.000
+ 41 -1.0000 0.0000 3.5000 -4.2000 30.282 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9671 82.2717 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.4439 5.0000 9.2000 299.1810 297.8410 300.2680 295.8540 300.000
+ 42 -1.0000 0.0000 3.5000 -4.0999 30.475 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.5399 82.6575 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0814 2.4439 5.0000 9.0999 299.1760 297.8400 300.0820 295.8410 300.000
+ 43 -1.0000 0.0000 3.5000 -4.0000 30.470 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.1107 83.0470 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.4439 5.0000 9.0000 299.1690 297.8390 299.8920 295.8210 300.000
+# Sum of Counts = 836
+# Center of Mass = -5.990668+/-0.296246
+# Full Width Half-Maximum = 2.523946+/-0.122063
+# 2:24:33 AM 10/25/2011 scan completed.
+
+2:24:33 AM 10/25/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.8), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.8), add data
+
+
+2:24:33 AM 10/25/2011 Executing "scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5"
+
+
+# scan = 54
+# date = 10/25/2011
+# time = 2:24:33 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.8), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.8000 -7.9000 30.015 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6093 74.6442 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5663 5.0000 12.9000 299.1560 297.8310 299.6420 295.9250 300.000
+ 2 -1.0000 0.0000 3.8000 -7.8000 30.184 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2389 74.9540 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5663 5.0000 12.8000 299.1400 297.8250 299.6260 296.0120 300.000
+ 3 -1.0000 0.0000 3.8000 -7.7000 30.334 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8677 75.2656 -2.7386 0.5000 0.0000 0.0000 157.7754 -44.4490 2.5663 5.0000 12.7000 299.1340 297.8230 299.8580 296.0200 300.000
+ 4 -1.0000 0.0000 3.8000 -7.6000 30.524 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4955 75.5789 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5663 5.0000 12.6000 299.1600 297.8260 300.2820 295.8890 300.000
+ 5 -1.0000 0.0000 3.8000 -7.5000 30.518 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1223 75.8940 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5663 5.0000 12.5000 299.1620 297.8330 300.6660 295.7610 300.000
+ 6 -1.0000 0.0000 3.8000 -7.4000 30.249 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7482 76.2110 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5663 5.0000 12.4000 299.1810 297.8410 300.7910 295.6750 300.000
+ 7 -1.0000 0.0000 3.8000 -7.3000 30.486 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3730 76.5298 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5663 5.0000 12.3000 299.2000 297.8480 300.7280 295.6130 300.000
+ 8 -1.0000 0.0000 3.8000 -7.2000 30.568 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9969 76.8507 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5663 5.0000 12.2000 299.1960 297.8490 300.5840 295.7440 300.000
+ 9 -1.0000 0.0000 3.8000 -7.1000 30.180 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6197 77.1735 -2.7386 0.5000 0.0000 0.0000 157.2008 -45.5982 2.5663 5.0000 12.1000 299.2000 297.8500 300.3650 295.6970 300.000
+ 10 -1.0000 0.0000 3.8000 -7.0000 30.350 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2414 77.4984 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5663 5.0000 12.0000 299.2230 297.8640 299.8980 294.5500 300.000
+ 11 -1.0000 0.0000 3.8000 -6.9000 30.499 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8620 77.8253 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5663 5.0000 11.9000 299.1940 297.8490 299.9240 295.4820 300.000
+ 12 -1.0000 0.0000 3.8000 -6.8000 30.549 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.4815 78.1544 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5663 5.0000 11.8000 299.1830 297.8450 299.7890 295.7050 300.000
+ 13 -1.0000 0.0000 3.8000 -6.7000 30.377 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.0999 78.4856 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.5663 5.0000 11.7000 299.1680 297.8430 299.6800 295.7030 300.000
+ 14 -1.0000 0.0000 3.8000 -6.6000 30.512 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7170 78.8191 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5663 5.0000 11.6000 299.1600 297.8370 299.7250 295.6320 300.000
+ 15 -1.0000 0.0000 3.8000 -6.5000 30.277 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3330 79.1549 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5663 5.0000 11.5000 299.1620 297.8370 299.9230 295.5480 300.000
+ 16 -1.0000 0.0000 3.8000 -6.4000 30.298 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9477 79.4930 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5663 5.0000 11.4000 299.1850 297.8460 300.1900 294.9270 300.000
+ 17 -1.0000 0.0000 3.8000 -6.3000 30.222 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5611 79.8336 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5663 5.0000 11.3000 299.1710 297.8410 300.6610 295.8290 300.000
+ 18 -1.0000 0.0000 3.8000 -6.2000 30.334 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.1732 80.1766 -2.7386 0.5000 0.0000 0.0000 156.2485 -47.5028 2.5663 5.0000 11.2000 299.1860 297.8460 300.6980 295.8140 300.000
+ 19 -1.0000 0.0000 3.8000 -6.1000 30.625 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.7841 80.5220 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5663 5.0000 11.1000 299.1920 297.8490 300.6110 295.7840 300.000
+ 20 -1.0000 0.0000 3.8000 -6.0000 30.493 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.3935 80.8701 -2.7386 0.5000 0.0000 0.0000 156.0201 -47.9596 2.5663 5.0000 11.0000 299.1950 297.8510 300.4260 295.7700 300.000
+ 21 -1.0000 0.0000 3.8000 -5.9000 30.434 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.0016 81.2208 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5663 5.0000 10.9000 299.1950 297.8530 300.1940 295.6900 300.000
+ 22 -1.0000 0.0000 3.8000 -5.8000 30.061 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.6082 81.5743 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5663 5.0000 10.8000 299.1890 297.8520 299.9560 295.6490 300.000
+ 23 -1.0000 0.0000 3.8000 -5.7000 30.266 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.2134 81.9305 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5663 5.0000 10.7000 299.1760 297.8480 299.7970 295.7780 300.000
+ 24 -1.0000 0.0000 3.8000 -5.6000 30.303 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8170 82.2896 -2.7386 0.5000 0.0000 0.0000 155.5427 -48.9142 2.5663 5.0000 10.6000 299.1650 297.8420 299.7100 295.8370 300.000
+ 25 -1.0000 0.0000 3.8000 -5.5000 30.406 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.4192 82.6515 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5663 5.0000 10.5000 299.1580 297.8410 299.7530 295.7010 300.000
+ 26 -1.0000 0.0000 3.8000 -5.4000 30.071 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.0197 83.0165 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.5663 5.0000 10.4000 299.1610 297.8390 299.9610 295.7560 300.000
+ 27 -1.0000 0.0000 3.8000 -5.3000 30.448 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.6186 83.3846 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.5663 5.0000 10.3000 299.1860 297.8520 300.0620 295.0090 300.000
+ 28 -1.0000 0.0000 3.8000 -5.2000 30.100 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2159 83.7558 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.5663 5.0000 10.2000 299.1870 297.8490 300.3320 295.2530 300.000
+ 29 -1.0000 0.0000 3.8000 -5.1000 30.678 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.8115 84.1302 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.5663 5.0000 10.1000 299.1740 297.8460 300.4860 295.8740 300.000
+ 30 -1.0000 0.0000 3.8000 -5.0000 30.266 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.4054 84.5080 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.5663 5.0000 10.0000 299.1830 297.8470 300.3820 295.8360 300.000
+ 31 -1.0000 0.0000 3.8000 -4.9000 30.479 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.9975 84.8892 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.5663 5.0000 9.9000 299.1790 297.8500 300.2000 295.7200 300.000
+ 32 -1.0000 0.0000 3.8000 -4.8000 30.355 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5878 85.2739 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.5663 5.0000 9.8000 299.1730 297.8460 300.0390 295.8250 300.000
+ 33 -1.0000 0.0000 3.8000 -4.7000 30.055 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1762 85.6622 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.5663 5.0000 9.7000 299.1650 297.8450 299.8380 295.8280 300.000
+ 34 -1.0000 0.0000 3.8000 -4.6000 30.191 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7627 86.0542 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.5663 5.0000 9.6000 299.1680 297.8470 299.6080 295.3970 300.000
+ 35 -1.0000 0.0000 3.8000 -4.5000 30.374 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3472 86.4500 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.5663 5.0000 9.5000 299.1530 297.8410 299.6420 295.7220 300.000
+ 36 -1.0000 0.0000 3.8000 -4.4000 30.267 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.9297 86.8498 -2.7386 0.5000 0.0000 0.0000 153.9187 -52.1624 2.5663 5.0000 9.4000 299.1520 297.8410 299.7690 295.3880 300.000
+ 37 -1.0000 0.0000 3.8000 -4.3000 30.339 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.5102 87.2535 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.5663 5.0000 9.3000 299.1860 297.8530 299.8620 294.2960 300.000
+ 38 -1.0000 0.0000 3.8000 -4.2000 30.305 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.0885 87.6614 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.5663 5.0000 9.2000 299.1910 297.8560 300.2230 294.3910 300.000
+ 39 -1.0000 0.0000 3.8000 -4.1000 30.282 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.6647 88.0736 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.5663 5.0000 9.1000 299.1650 297.8450 300.7080 295.8480 300.000
+ 40 -1.0000 0.0000 3.8000 -4.0000 30.648 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.2386 88.4902 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.5663 5.0000 9.0000 299.2140 297.8640 300.4300 294.5280 300.000
+ 41 -1.0000 0.0000 3.8000 -3.9000 30.408 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.1898 88.9113 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.5663 5.0000 8.9000 299.2440 297.8620 300.3740 295.0230 300.000
+ 42 -1.0000 0.0000 3.8000 -3.8000 30.512 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.6205 89.3370 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.5663 5.0000 8.8000 299.2280 297.8690 300.0740 294.4050 300.000
+ 43 -1.0000 0.0000 3.8000 -3.7000 30.683 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.0536 89.7676 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.5663 5.0000 8.7000 299.1870 297.8530 300.1380 295.8790 300.000
+ 44 -1.0000 0.0000 3.8000 -3.6000 30.167 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.4892 90.2032 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.5663 5.0000 8.6000 299.1800 297.8520 299.9270 295.8610 300.000
+ 45 -1.0000 0.0000 3.8000 -3.5000 30.333 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.9274 90.6438 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.5663 5.0000 8.5000 299.2040 297.8610 299.5040 294.6480 300.000
+# Sum of Counts = 805
+# Center of Mass = -5.648323+/-0.284934
+# Full Width Half-Maximum = 2.489102+/-0.114698
+# 2:49:14 AM 10/25/2011 scan completed.
+
+2:49:14 AM 10/25/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.3), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.3), add data
+
+
+2:49:14 AM 10/25/2011 Executing "scan h -1 k 0 l 2.3 e -1.75 -0.55 0.1 preset mcu 0.25"
+
+
+# scan = 55
+# date = 10/25/2011
+# time = 2:49:14 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.3 e -1.75 -0.55 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.3 e -1.75 -0.55 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.3), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.3000 -1.7500 15.082 68.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.5232 72.9217 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 2.0059 5.0000 6.7500 299.1570 297.8410 300.0040 296.0420 300.000
+ 2 -1.0000 0.0000 2.3000 -1.6500 15.183 146.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0060 73.3092 -2.7386 0.5000 0.0000 0.0000 148.4862 -63.0274 2.0059 5.0000 6.6500 299.1550 297.8390 300.3500 296.0780 300.000
+ 3 -1.0000 0.0000 2.3000 -1.5500 15.146 271.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4859 73.7007 -2.7386 0.5000 0.0000 0.0000 148.2188 -63.5624 2.0059 5.0000 6.5500 299.1640 297.8420 300.6680 296.0930 300.000
+ 4 -1.0000 0.0000 2.3000 -1.4500 15.082 366.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9628 74.0965 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 2.0059 5.0000 6.4500 299.1760 297.8470 300.8570 296.1000 300.000
+ 5 -1.0000 0.0000 2.3000 -1.3500 15.228 255.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.4368 74.4968 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 2.0059 5.0000 6.3500 299.1880 297.8490 300.9400 296.0940 300.000
+ 6 -1.0000 0.0000 2.3000 -1.2500 15.063 189.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.9076 74.9015 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2543 2.0059 5.0000 6.2500 299.1950 297.8530 300.9530 296.1040 300.000
+ 7 -1.0000 0.0000 2.3000 -1.1500 15.379 207.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3752 75.3111 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 2.0059 5.0000 6.1500 299.2040 297.8570 300.9150 296.0880 300.000
+ 8 -1.0000 0.0000 2.3000 -1.0500 15.336 426.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8394 75.7255 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 2.0059 5.0000 6.0500 299.2090 297.8590 300.8390 296.1010 300.000
+ 9 -1.0000 0.0000 2.3000 -0.9500 15.319 139.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3002 76.1451 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 2.0059 5.0000 5.9500 299.2100 297.8590 300.7370 296.1230 300.000
+ 10 -1.0000 0.0000 2.3000 -0.8500 15.085 92.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7574 76.5700 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 2.0059 5.0000 5.8500 299.2140 297.8630 300.6250 296.0080 300.000
+ 11 -1.0000 0.0000 2.3000 -0.7500 14.917 27.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2110 77.0005 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4056 2.0059 5.0000 5.7500 299.2170 297.8670 300.4910 295.8960 300.000
+ 12 -1.0000 0.0000 2.3000 -0.6500 15.106 20.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.6607 77.4368 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 2.0059 5.0000 5.6500 299.2170 297.8670 300.3540 295.8610 300.000
+ 13 -1.0000 0.0000 2.3000 -0.5500 15.127 12.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1065 77.8790 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 2.0059 5.0000 5.5500 299.2100 297.8650 300.2410 295.9960 300.000
+# Sum of Counts = 2218
+# Center of Mass = -1.274391+/-0.038656
+# Full Width Half-Maximum = 0.514515+/-0.024729
+# 2:53:26 AM 10/25/2011 scan completed.
+
+2:53:26 AM 10/25/2011 Executing "scantitle "Dispersion G-X in (101) zone""
+
+Setting the scantitle to:
+Dispersion G-X in (101) zone
+
+
+2:53:26 AM 10/25/2011 Executing "scan h 1.5 k 0 l 0 e -5.0 -1.9 0.2 preset mcu 0.5"
+
+
+# scan = 56
+# date = 10/25/2011
+# time = 2:53:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -5.0 -1.9 0.2 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 0 e -5.0 -1.9 0.2 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 30.333 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.8832 77.1476 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3918 5.0000 10.0000 299.1860 297.8600 299.7360 295.8610 300.000
+ 2 1.5000 0.0000 0.0000 -4.8000 30.275 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.7174 77.8536 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3918 5.0000 9.8000 299.1710 297.8550 299.6430 295.9260 300.000
+ 3 1.5000 0.0000 0.0000 -4.6000 30.354 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.5578 78.5708 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3918 5.0000 9.6000 299.1610 297.8500 299.7290 295.8940 300.000
+ 4 1.5000 0.0000 0.0000 -4.4000 30.162 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.4050 79.2999 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3918 5.0000 9.4000 299.1630 297.8510 300.0990 295.9170 300.000
+ 5 1.5000 0.0000 0.0000 -4.2000 30.105 56.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.2590 80.0417 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3918 5.0000 9.2000 299.1750 297.8540 300.4950 295.9780 300.000
+ 6 1.5000 0.0000 0.0000 -4.0000 30.161 91.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.1205 80.7969 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3918 5.0000 9.0000 299.1860 297.8590 300.6630 295.9940 300.000
+ 7 1.5000 0.0000 0.0000 -3.8000 30.261 112.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.9897 81.5662 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.3918 5.0000 8.8000 299.1980 297.8630 300.6060 295.9320 300.000
+ 8 1.5000 0.0000 0.0000 -3.6000 30.527 118.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.8670 82.3505 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3918 5.0000 8.6000 299.2020 297.8650 300.4570 295.9580 300.000
+ 9 1.5000 0.0000 0.0000 -3.4000 30.384 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.7530 83.1508 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.3918 5.0000 8.4000 299.1990 297.8650 300.2690 295.9660 300.000
+ 10 1.5000 0.0000 0.0000 -3.2000 30.106 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.6481 83.9679 -2.7386 0.5000 0.0000 0.0000 151.9190 -56.1615 2.3918 5.0000 8.2000 299.1930 297.8630 300.0760 295.9990 300.000
+ 11 1.5000 0.0000 0.0000 -3.0000 30.320 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.5528 84.8030 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9224 2.3918 5.0000 8.0000 299.1850 297.8600 299.8710 295.9880 300.000
+ 12 1.5000 0.0000 0.0000 -2.8000 30.127 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.4676 85.6574 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.3918 5.0000 7.8000 299.1730 297.8570 299.6800 295.9670 300.000
+ 13 1.5000 0.0000 0.0000 -2.6000 30.207 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.3932 86.5322 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.3918 5.0000 7.6000 299.1630 297.8520 299.6290 295.9180 300.000
+ 14 1.5000 0.0000 0.0000 -2.4000 30.456 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 130.3302 87.4288 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.3918 5.0000 7.4000 299.1560 297.8490 299.8090 295.9200 300.000
+ 15 1.5000 0.0000 0.0000 -2.2000 30.268 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 131.2792 88.3489 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.3918 5.0000 7.2000 299.1590 297.8510 300.2470 295.9290 300.000
+ 16 1.5000 0.0000 0.0000 -2.0000 30.473 1.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 132.2411 89.2942 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.3918 5.0000 7.0000 299.1750 297.8560 300.6020 295.9430 300.000
+# Sum of Counts = 510
+# Center of Mass = -3.770196+/-0.236974
+# Full Width Half-Maximum = 0.919109+/-0.110482
+# 3:03:22 AM 10/25/2011 scan completed.
+
+3:03:23 AM 10/25/2011 Executing "scan h 1.4 k 0 l 0.2 e -4.5 -1.9 0.1 preset mcu 1.0"
+
+
+# scan = 57
+# date = 10/25/2011
+# time = 3:03:23 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.4 k 0 l 0.2 e -4.5 -1.9 0.1 preset mcu 1.0
+# builtin_command = scan h 1.4 k 0 l 0.2 e -4.5 -1.9 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.4000 0.0000 0.2000 -4.5000 60.504 66.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.7263 72.4761 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2349 5.0000 9.5000 299.1960 297.8640 300.6600 295.8670 300.000
+ 2 1.4000 0.0000 0.2000 -4.4000 60.435 78.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1630 72.8180 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1625 2.2349 5.0000 9.4000 299.2020 297.8670 300.3340 295.7740 300.000
+ 3 1.4000 0.0000 0.2000 -4.3000 60.847 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.6011 73.1624 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2349 5.0000 9.3000 299.1950 297.8630 299.9400 295.7560 300.000
+ 4 1.4000 0.0000 0.2000 -4.2000 61.003 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.0408 73.5095 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2349 5.0000 9.2000 299.1720 297.8550 299.6340 295.6670 300.000
+ 5 1.4000 0.0000 0.2000 -4.1000 60.610 80.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.4822 73.8591 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2349 5.0000 9.1000 299.1590 297.8490 299.9780 295.8420 300.000
+ 6 1.4000 0.0000 0.2000 -4.0000 60.930 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.9251 74.2115 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2349 5.0000 9.0000 299.1740 297.8560 300.6110 295.9620 300.000
+ 7 1.4000 0.0000 0.2000 -3.9000 60.513 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.3698 74.5668 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2349 5.0000 8.9000 299.1890 297.8620 300.5170 295.9200 300.000
+ 8 1.4000 0.0000 0.2000 -3.8000 61.006 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.8162 74.9249 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2349 5.0000 8.8000 299.1890 297.8630 300.1660 295.9230 300.000
+ 9 1.4000 0.0000 0.2000 -3.7000 60.322 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.2643 75.2860 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2349 5.0000 8.7000 299.1720 297.8570 299.7780 295.8860 300.000
+ 10 1.4000 0.0000 0.2000 -3.6000 60.877 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.7144 75.6501 -2.7386 0.5000 0.0000 0.0000 152.6361 -54.7275 2.2349 5.0000 8.6000 299.1500 297.8480 299.6560 295.8490 300.000
+ 11 1.4000 0.0000 0.2000 -3.5000 60.781 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.1662 76.0174 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2349 5.0000 8.5000 299.1560 297.8520 300.3750 295.8210 300.000
+ 12 1.4000 0.0000 0.2000 -3.4000 60.732 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.6201 76.3880 -2.7386 0.5000 0.0000 0.0000 152.2845 -55.4306 2.2349 5.0000 8.4000 299.1800 297.8600 300.6610 295.9130 300.000
+ 13 1.4000 0.0000 0.2000 -3.3000 60.880 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.0759 76.7620 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2349 5.0000 8.3000 299.1850 297.8630 300.4130 295.9960 300.000
+ 14 1.4000 0.0000 0.2000 -3.2000 60.793 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.5338 77.1394 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.2349 5.0000 8.2000 299.1780 297.8620 300.0040 295.8760 300.000
+ 15 1.4000 0.0000 0.2000 -3.1000 60.490 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.9938 77.5203 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.2349 5.0000 8.1000 299.1590 297.8540 299.6760 295.8920 300.000
+ 16 1.4000 0.0000 0.2000 -3.0000 60.635 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.4559 77.9049 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9223 2.2349 5.0000 8.0000 299.1430 297.8480 299.8560 295.8840 300.000
+ 17 1.4000 0.0000 0.2000 -2.9000 60.660 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9203 78.2934 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2349 5.0000 7.9000 299.1610 297.8540 300.5380 295.8520 300.000
+ 18 1.4000 0.0000 0.2000 -2.8000 60.547 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.3869 78.6857 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2349 5.0000 7.8000 299.1810 297.8600 300.5560 295.8570 300.000
+ 19 1.4000 0.0000 0.2000 -2.7000 60.603 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.8560 79.0821 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.2349 5.0000 7.7000 299.1790 297.8640 300.2170 295.9120 300.000
+ 20 1.4000 0.0000 0.2000 -2.6000 60.553 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.3274 79.4826 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.2349 5.0000 7.6000 299.1650 297.8570 299.8390 295.9130 300.000
+ 21 1.4000 0.0000 0.2000 -2.5000 60.419 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.8013 79.8875 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.2349 5.0000 7.5000 299.1410 297.8490 299.6350 295.8920 300.000
+ 22 1.4000 0.0000 0.2000 -2.4000 60.376 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.2778 80.2968 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.2349 5.0000 7.4000 299.1370 297.8500 300.2000 295.9640 300.000
+ 23 1.4000 0.0000 0.2000 -2.3000 60.558 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.7570 80.7108 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.2349 5.0000 7.3000 299.1620 297.8570 300.6530 295.8770 300.000
+ 24 1.4000 0.0000 0.2000 -2.2000 60.544 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.2388 81.1295 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.2349 5.0000 7.2000 299.1750 297.8630 300.4400 295.9030 300.000
+ 25 1.4000 0.0000 0.2000 -2.1000 60.212 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.7235 81.5531 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.2349 5.0000 7.1000 299.1680 297.8610 300.0580 295.8990 300.000
+ 26 1.4000 0.0000 0.2000 -2.0000 60.616 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.2110 81.9819 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.2349 5.0000 7.0000 299.1480 297.8560 299.7070 295.8930 300.000
+ 27 1.4000 0.0000 0.2000 -1.9000 60.574 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.7015 82.4159 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.2349 5.0000 6.9000 299.1280 297.8490 299.7560 295.8970 300.000
+# Sum of Counts = 740
+# Center of Mass = -3.756216+/-0.196815
+# Full Width Half-Maximum = 1.336436+/-0.093465
+# 3:32:06 AM 10/25/2011 scan completed.
+
+3:32:06 AM 10/25/2011 Executing "scan h 1.3 k 0 l 0.4 e -4.2 -1.9 0.1 preset mcu 1.0"
+
+
+# scan = 58
+# date = 10/25/2011
+# time = 3:32:06 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 0.4 e -4.2 -1.9 0.1 preset mcu 1.0
+# builtin_command = scan h 1.3 k 0 l 0.4 e -4.2 -1.9 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 0.4000 -4.2000 60.632 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.5724 67.4436 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0837 5.0000 9.2000 299.1540 297.8580 300.5950 295.9380 300.000
+ 2 1.3000 0.0000 0.4000 -4.1000 60.463 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0304 67.7726 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.0837 5.0000 9.1000 299.1720 297.8630 300.5580 295.8880 300.000
+ 3 1.3000 0.0000 0.4000 -4.0000 60.454 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.4900 68.1039 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0837 5.0000 9.0000 299.1720 297.8650 300.2050 295.7740 300.000
+ 4 1.3000 0.0000 0.4000 -3.9000 60.537 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.9510 68.4373 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.0837 5.0000 8.9000 299.1590 297.8600 299.8250 295.7770 300.000
+ 5 1.3000 0.0000 0.4000 -3.8000 60.476 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.4135 68.7730 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.0837 5.0000 8.8000 299.1380 297.8540 299.6130 295.6530 300.000
+ 6 1.3000 0.0000 0.4000 -3.7000 60.439 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.8776 69.1111 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.0837 5.0000 8.7000 299.1410 297.8530 300.2170 295.6900 300.000
+ 7 1.3000 0.0000 0.4000 -3.6000 60.513 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.3434 69.4516 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.0837 5.0000 8.6000 299.1690 297.8620 300.6610 295.7480 300.000
+ 8 1.3000 0.0000 0.4000 -3.5000 60.307 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.8108 69.7945 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.0837 5.0000 8.5000 299.1740 297.8670 300.4860 295.8090 300.000
+ 9 1.3000 0.0000 0.4000 -3.4000 60.975 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2799 70.1400 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.0837 5.0000 8.4000 299.1720 297.8660 300.0910 295.7940 300.000
+ 10 1.3000 0.0000 0.4000 -3.3000 60.596 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7508 70.4882 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.0837 5.0000 8.3000 299.1540 297.8600 299.7310 295.7750 300.000
+ 11 1.3000 0.0000 0.4000 -3.2000 60.608 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2235 70.8390 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.0837 5.0000 8.2000 299.1350 297.8530 299.7050 295.7870 300.000
+ 12 1.3000 0.0000 0.4000 -3.1000 60.311 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.6981 71.1927 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.0837 5.0000 8.1000 299.1450 297.8580 300.4610 295.8100 300.000
+ 13 1.3000 0.0000 0.4000 -3.0000 60.694 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.1746 71.5492 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0837 5.0000 8.0000 299.1690 297.8660 300.6340 295.8060 300.000
+ 14 1.3000 0.0000 0.4000 -2.9000 61.010 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.6531 71.9088 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.0837 5.0000 7.9000 299.1760 297.8680 300.3240 295.8180 300.000
+ 15 1.3000 0.0000 0.4000 -2.8000 60.569 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1337 72.2714 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0837 5.0000 7.8000 299.1620 297.8650 299.9430 295.8800 300.000
+ 16 1.3000 0.0000 0.4000 -2.7000 60.494 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.6164 72.6372 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0837 5.0000 7.7000 299.1420 297.8590 299.6260 295.7330 300.000
+ 17 1.3000 0.0000 0.4000 -2.6000 60.500 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.1012 73.0063 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.0837 5.0000 7.6000 299.1360 297.8550 299.9910 295.6620 300.000
+ 18 1.3000 0.0000 0.4000 -2.5000 60.660 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.5883 73.3787 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0837 5.0000 7.5000 299.1590 297.8620 300.6460 295.7990 300.000
+ 19 1.3000 0.0000 0.4000 -2.4000 60.482 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.0776 73.7547 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.0837 5.0000 7.4000 299.1740 297.8690 300.5610 295.9030 300.000
+ 20 1.3000 0.0000 0.4000 -2.3000 60.687 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.5694 74.1343 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0837 5.0000 7.3000 299.1740 297.8700 300.1850 295.8430 300.000
+ 21 1.3000 0.0000 0.4000 -2.2000 60.369 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.0636 74.5176 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.0837 5.0000 7.2000 299.1570 297.8650 299.8000 295.9100 300.000
+ 22 1.3000 0.0000 0.4000 -2.1000 60.604 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.5603 74.9048 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0837 5.0000 7.1000 299.1350 297.8580 299.6440 295.8200 300.000
+ 23 1.3000 0.0000 0.4000 -2.0000 60.740 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.0596 75.2960 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0837 5.0000 7.0000 299.1390 297.8580 300.2820 295.8590 300.000
+ 24 1.3000 0.0000 0.4000 -1.9000 60.272 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.5616 75.6913 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0837 5.0000 6.9000 299.1630 297.8670 300.6540 295.9260 300.000
+# Sum of Counts = 174
+# Center of Mass = -2.935057+/-0.318165
+# Full Width Half-Maximum = 1.240468+/-0.148735
+# 3:57:36 AM 10/25/2011 scan completed.
+
+3:57:36 AM 10/25/2011 Executing "scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 59
+# date = 10/25/2011
+# time = 3:57:36 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.2000 0.0000 0.6000 -4.0000 60.618 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.7259 62.4547 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.9396 5.0000 9.0000 299.1780 297.8750 300.3260 295.8120 300.000
+ 2 1.2000 0.0000 0.6000 -3.9000 60.682 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2082 62.7712 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.9396 5.0000 8.9000 299.1680 297.8720 299.9280 295.7030 300.000
+ 3 1.2000 0.0000 0.6000 -3.8000 61.052 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.6918 63.0894 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 1.9396 5.0000 8.8000 299.1480 297.8660 299.6440 295.7170 300.000
+ 4 1.2000 0.0000 0.6000 -3.7000 60.922 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1768 63.4094 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.9396 5.0000 8.7000 299.1340 297.8610 299.9250 295.7050 300.000
+ 5 1.2000 0.0000 0.6000 -3.6000 60.373 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6633 63.7312 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.9396 5.0000 8.6000 299.1560 297.8680 300.6050 295.7850 300.000
+ 6 1.2000 0.0000 0.6000 -3.5000 60.866 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1512 64.0550 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.9396 5.0000 8.5000 299.1770 297.8760 300.5430 295.7100 300.000
+ 7 1.2000 0.0000 0.6000 -3.4000 60.746 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6407 64.3807 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4306 1.9396 5.0000 8.4000 299.1820 297.8770 300.1780 295.6970 300.000
+ 8 1.2000 0.0000 0.6000 -3.3000 60.634 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1318 64.7084 -2.7386 0.5000 0.0000 0.0000 152.1037 -55.7924 1.9396 5.0000 8.3000 299.1630 297.8740 299.7800 295.6930 300.000
+ 9 1.2000 0.0000 0.6000 -3.2000 60.747 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6244 65.0382 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.9396 5.0000 8.2000 299.1400 297.8650 299.6680 295.7490 300.000
+ 10 1.2000 0.0000 0.6000 -3.1000 60.309 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1188 65.3702 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.9396 5.0000 8.1000 299.1390 297.8640 300.2990 295.8600 300.000
+ 11 1.2000 0.0000 0.6000 -3.0000 60.659 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6149 65.7044 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.9396 5.0000 8.0000 299.1650 297.8720 300.6370 295.8100 300.000
+ 12 1.2000 0.0000 0.6000 -2.9000 60.436 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.1128 66.0408 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3147 1.9396 5.0000 7.9000 299.1770 297.8780 300.3630 295.7440 300.000
+ 13 1.2000 0.0000 0.6000 -2.8000 60.666 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.6125 66.3797 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.9396 5.0000 7.8000 299.1710 297.8760 299.9850 295.7760 300.000
+ 14 1.2000 0.0000 0.6000 -2.7000 60.349 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1141 66.7210 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.9396 5.0000 7.7000 299.1510 297.8690 299.6540 295.7340 300.000
+ 15 1.2000 0.0000 0.6000 -2.6000 60.827 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.6178 67.0648 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.9396 5.0000 7.6000 299.1360 297.8640 299.8740 295.7730 300.000
+ 16 1.2000 0.0000 0.6000 -2.5000 60.558 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.1234 67.4113 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.9396 5.0000 7.5000 299.1520 297.8690 300.5690 295.8830 300.000
+ 17 1.2000 0.0000 0.6000 -2.4000 60.669 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.6311 67.7604 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.9396 5.0000 7.4000 299.1680 297.8770 300.5480 295.8970 300.000
+ 18 1.2000 0.0000 0.6000 -2.3000 60.369 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1410 68.1124 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.9396 5.0000 7.3000 299.1690 297.8790 300.1960 295.8790 300.000
+ 19 1.2000 0.0000 0.6000 -2.2000 60.698 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6532 68.4672 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.9396 5.0000 7.2000 299.1580 297.8750 299.8340 295.8480 300.000
+ 20 1.2000 0.0000 0.6000 -2.1000 60.439 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.1676 68.8250 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.9396 5.0000 7.1000 299.1400 297.8670 299.6270 295.6820 300.000
+ 21 1.2000 0.0000 0.6000 -2.0000 60.521 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.6845 69.1859 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.9396 5.0000 7.0000 299.1380 297.8660 300.2590 295.8730 300.000
+ 22 1.2000 0.0000 0.6000 -1.9000 60.290 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2038 69.5500 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.9396 5.0000 6.9000 299.1600 297.8740 300.6950 295.9570 300.000
+ 23 1.2000 0.0000 0.6000 -1.8000 60.739 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7256 69.9173 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.9396 5.0000 6.8000 299.1730 297.8820 300.4670 295.9570 300.000
+ 24 1.2000 0.0000 0.6000 -1.7000 60.620 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2500 70.2882 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.9396 5.0000 6.7000 299.1670 297.8800 300.0770 295.9320 300.000
+ 25 1.2000 0.0000 0.6000 -1.6000 60.729 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.7772 70.6625 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.9396 5.0000 6.6000 299.1530 297.8740 299.7090 295.8790 300.000
+ 26 1.2000 0.0000 0.6000 -1.5000 60.290 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.3071 71.0406 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.9396 5.0000 6.5000 299.1310 297.8670 299.7440 295.8790 300.000
+ 27 1.2000 0.0000 0.6000 -1.4000 60.667 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.8399 71.4224 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.9396 5.0000 6.4000 299.1430 297.8720 300.4880 295.9270 300.000
+ 28 1.2000 0.0000 0.6000 -1.3000 60.474 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.3756 71.8083 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9396 5.0000 6.3000 299.1660 297.8800 300.6090 295.8780 300.000
+ 29 1.2000 0.0000 0.6000 -1.2000 60.289 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.9145 72.1982 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9396 5.0000 6.2000 299.1710 297.8830 300.2830 295.8510 300.000
+ 30 1.2000 0.0000 0.6000 -1.1000 60.902 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.4565 72.5924 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9396 5.0000 6.1000 299.1590 297.8790 299.8980 295.8200 300.000
+ 31 1.2000 0.0000 0.6000 -1.0000 60.688 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.0018 72.9910 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9396 5.0000 6.0000 299.1370 297.8710 299.6350 295.8210 300.000
+# Sum of Counts = 245
+# Center of Mass = -2.527755+/-0.233161
+# Full Width Half-Maximum = 1.469756+/-0.118057
+# 4:30:30 AM 10/25/2011 scan completed.
+
+4:30:30 AM 10/25/2011 Executing "scan h 1.1 k 0 l 0.8 e -3.5 -0.2 0.1 preset mcu 1.0"
+
+
+# scan = 60
+# date = 10/25/2011
+# time = 4:30:30 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 0.8 e -3.5 -0.2 0.1 preset mcu 1.0
+# builtin_command = scan h 1.1 k 0 l 0.8 e -3.5 -0.2 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 0.8000 -3.5000 60.621 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.1104 58.8027 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.8044 5.0000 8.5000 299.1320 297.8690 300.2210 295.8110 300.000
+ 2 1.1000 0.0000 0.8000 -3.4000 60.475 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6248 59.1130 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.8044 5.0000 8.4000 299.1550 297.8770 300.6670 295.8920 300.000
+ 3 1.1000 0.0000 0.8000 -3.3000 61.141 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.1406 59.4249 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.8044 5.0000 8.3000 299.1670 297.8830 300.4420 295.8010 300.000
+ 4 1.1000 0.0000 0.8000 -3.2000 60.361 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.6578 59.7382 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.8044 5.0000 8.2000 299.1630 297.8830 300.0400 295.7760 300.000
+ 5 1.1000 0.0000 0.8000 -3.1000 60.272 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1766 60.0532 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.8044 5.0000 8.1000 299.1410 297.8760 299.6930 295.7830 300.000
+ 6 1.1000 0.0000 0.8000 -3.0000 60.899 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6969 60.3698 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.8044 5.0000 8.0000 299.1250 297.8680 299.7750 295.8440 300.000
+ 7 1.1000 0.0000 0.8000 -2.9000 60.652 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2188 60.6880 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3147 1.8044 5.0000 7.9000 299.1410 297.8750 300.4540 295.8530 300.000
+ 8 1.1000 0.0000 0.8000 -2.8000 60.525 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7424 61.0081 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.8044 5.0000 7.8000 299.1640 297.8840 300.5480 295.8120 300.000
+ 9 1.1000 0.0000 0.8000 -2.7000 60.660 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2677 61.3300 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.8044 5.0000 7.7000 299.1650 297.8850 300.2520 295.7610 300.000
+ 10 1.1000 0.0000 0.8000 -2.6000 60.739 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7948 61.6537 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.8044 5.0000 7.6000 299.1540 297.8810 299.8750 295.7270 300.000
+ 11 1.1000 0.0000 0.8000 -2.5000 60.692 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3238 61.9794 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.8044 5.0000 7.5000 299.1340 297.8740 299.6160 295.6010 300.000
+ 12 1.1000 0.0000 0.8000 -2.4000 60.542 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8548 62.3070 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.8044 5.0000 7.4000 299.1290 297.8700 300.1470 295.7610 300.000
+ 13 1.1000 0.0000 0.8000 -2.3000 60.714 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3876 62.6368 -2.7386 0.5000 0.0000 0.0000 150.0734 -59.8530 1.8044 5.0000 7.3000 299.1510 297.8780 300.7120 295.8620 300.000
+ 14 1.1000 0.0000 0.8000 -2.2000 60.654 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9226 62.9687 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3102 1.8044 5.0000 7.2000 299.1690 297.8850 300.4930 295.7130 300.000
+ 15 1.1000 0.0000 0.8000 -2.1000 60.548 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4597 63.3028 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.8044 5.0000 7.1000 299.1670 297.8840 300.1180 295.8190 300.000
+ 16 1.1000 0.0000 0.8000 -2.0000 60.265 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.9990 63.6393 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8044 5.0000 7.0000 299.1450 297.8800 299.7300 295.7910 300.000
+ 17 1.1000 0.0000 0.8000 -1.9000 60.725 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5406 63.9781 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.8044 5.0000 6.9000 299.1280 297.8730 299.7020 295.7590 300.000
+ 18 1.1000 0.0000 0.8000 -1.8000 60.748 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0846 64.3194 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8044 5.0000 6.8000 299.1360 297.8750 300.4450 295.8950 300.000
+ 19 1.1000 0.0000 0.8000 -1.7000 60.452 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6310 64.6633 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8044 5.0000 6.7000 299.1580 297.8830 300.6390 295.9310 300.000
+ 20 1.1000 0.0000 0.8000 -1.6000 60.284 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1799 65.0098 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8044 5.0000 6.6000 299.1650 297.8860 300.3510 295.9430 300.000
+ 21 1.1000 0.0000 0.8000 -1.5000 60.869 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7314 65.3591 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8044 5.0000 6.5000 299.1580 297.8860 299.9450 295.8140 300.000
+ 22 1.1000 0.0000 0.8000 -1.4000 60.185 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2856 65.7113 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 1.8044 5.0000 6.4000 299.1380 297.8810 299.6420 295.8120 300.000
+ 23 1.1000 0.0000 0.8000 -1.3000 60.461 622.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8426 66.0664 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8044 5.0000 6.3000 299.1260 297.8740 299.9510 295.8330 300.000
+ 24 1.1000 0.0000 0.8000 -1.2000 60.705 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4026 66.4246 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8044 5.0000 6.2000 299.1480 297.8810 300.6220 295.9040 300.000
+ 25 1.1000 0.0000 0.8000 -1.1000 60.670 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9654 66.7859 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8044 5.0000 6.1000 299.1650 297.8880 300.5390 295.8930 300.000
+ 26 1.1000 0.0000 0.8000 -1.0000 60.515 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5314 67.1506 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8044 5.0000 6.0000 299.1650 297.8890 300.1610 295.8630 300.000
+ 27 1.1000 0.0000 0.8000 -0.9000 60.514 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1006 67.5187 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8044 5.0000 5.9000 299.1500 297.8850 299.8270 295.9090 300.000
+ 28 1.1000 0.0000 0.8000 -0.8000 60.392 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6732 67.8904 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8044 5.0000 5.8000 299.1300 297.8770 299.6410 295.8040 300.000
+ 29 1.1000 0.0000 0.8000 -0.7000 60.390 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.2491 68.2658 -2.7386 0.5000 0.0000 0.0000 145.6265 -68.7467 1.8044 5.0000 5.7000 299.1350 297.8780 300.2880 295.8010 300.000
+ 30 1.1000 0.0000 0.8000 -0.6000 60.833 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.8286 68.6452 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.8044 5.0000 5.6000 299.1580 297.8850 300.6690 295.9360 300.000
+ 31 1.1000 0.0000 0.8000 -0.5000 60.752 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.4117 69.0285 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.8044 5.0000 5.5000 299.1680 297.8910 300.4050 295.8710 300.000
+ 32 1.1000 0.0000 0.8000 -0.4000 60.440 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.9987 69.4160 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.8044 5.0000 5.4000 299.1640 297.8900 300.0220 295.8490 300.000
+ 33 1.1000 0.0000 0.8000 -0.3000 60.769 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.5896 69.8079 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.8044 5.0000 5.3000 299.1420 297.8840 299.6820 295.9160 300.000
+ 34 1.1000 0.0000 0.8000 -0.2000 60.831 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.1846 70.2044 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 1.8044 5.0000 5.2000 299.1250 297.8780 299.8100 295.8560 300.000
+# Sum of Counts = 1070
+# Center of Mass = -1.481028+/-0.066892
+# Full Width Half-Maximum = 1.266277+/-0.058254
+# 5:06:38 AM 10/25/2011 scan completed.
+
+5:06:38 AM 10/25/2011 Executing "scantitle "Dispersion G-T longitudinal (003) zone""
+
+Setting the scantitle to:
+Dispersion G-T longitudinal (003) zone
+
+
+5:06:39 AM 10/25/2011 Executing "scan h 0 k 0 l 4.5 e -8.5 -4.0 0.1 preset mcu 1.0"
+
+
+# scan = 61
+# date = 10/25/2011
+# time = 5:06:39 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -8.5 -4.0 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 4.5 e -8.5 -4.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -8.5000 61.013 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.6864 65.7410 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.3812 5.0000 13.5000 299.1720 297.8920 300.6150 295.7110 300.000
+ 2 0.0000 0.0000 4.5000 -8.4000 60.869 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.0691 66.0284 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 2.3812 5.0000 13.4000 299.1760 297.8940 300.3350 295.7600 300.000
+ 3 0.0000 0.0000 4.5000 -8.3000 60.991 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.4524 66.3170 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.3812 5.0000 13.3000 299.1690 297.8910 299.9440 295.7360 300.000
+ 4 0.0000 0.0000 4.5000 -8.2000 60.397 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.8364 66.6067 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.3812 5.0000 13.2000 299.1470 297.8840 299.6570 295.7680 300.000
+ 5 0.0000 0.0000 4.5000 -8.1000 60.706 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.2209 66.8976 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 2.3812 5.0000 13.1000 299.1320 297.8790 299.9190 295.8100 300.000
+ 6 0.0000 0.0000 4.5000 -8.0000 60.694 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.6060 67.1898 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.3812 5.0000 13.0000 299.1550 297.8870 300.6110 295.8140 300.000
+ 7 0.0000 0.0000 4.5000 -7.9000 60.529 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.9918 67.4832 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3812 5.0000 12.9000 299.1760 297.8940 300.5610 295.8140 300.000
+ 8 0.0000 0.0000 4.5000 -7.8000 60.617 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.3783 67.7780 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2659 2.3812 5.0000 12.7999 299.1750 297.8960 300.2010 295.8670 300.000
+ 9 0.0000 0.0000 4.5000 -7.7000 60.978 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.7655 68.0740 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.3812 5.0000 12.7000 299.1610 297.8910 299.8230 295.8180 300.000
+ 10 0.0000 0.0000 4.5000 -7.6000 60.711 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.1534 68.3714 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.3812 5.0000 12.6000 299.1420 297.8850 299.6180 295.7680 300.000
+ 11 0.0000 0.0000 4.5000 -7.5000 60.715 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.5420 68.6703 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.3812 5.0000 12.5000 299.1440 297.8840 300.2550 295.7240 300.000
+ 12 0.0000 0.0000 4.5000 -7.4000 60.970 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.9314 68.9705 -2.7386 0.5000 0.0000 0.0000 157.4937 -45.0126 2.3812 5.0000 12.4000 299.1730 297.8920 300.6720 295.6210 300.000
+ 13 0.0000 0.0000 4.5000 -7.3000 61.006 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.3216 69.2722 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.3812 5.0000 12.3000 299.1860 297.9000 300.4570 295.6750 300.000
+ 14 0.0000 0.0000 4.5000 -7.2000 60.915 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.7126 69.5754 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.3812 5.0000 12.2000 299.1770 297.8980 300.0650 295.7750 300.000
+ 15 0.0000 0.0000 4.5000 -7.1000 60.865 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.1044 69.8802 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.3812 5.0000 12.1000 299.1570 297.8900 299.7040 295.8210 300.000
+ 16 0.0000 0.0000 4.5000 -7.0000 60.675 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.4971 70.1864 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3812 5.0000 12.0000 299.1390 297.8840 299.7320 295.7330 300.000
+ 17 0.0000 0.0000 4.5000 -6.9000 60.717 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.8907 70.4944 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3812 5.0000 11.9000 299.1560 297.8880 300.4690 295.6490 300.000
+ 18 0.0000 0.0000 4.5000 -6.8000 60.696 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.2852 70.8039 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3812 5.0000 11.8000 299.1800 297.8960 300.6160 295.6880 300.000
+ 19 0.0000 0.0000 4.5000 -6.7000 60.791 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.6806 71.1152 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3812 5.0000 11.7000 299.1790 297.8980 300.3040 295.8510 300.000
+ 20 0.0000 0.0000 4.5000 -6.6000 60.790 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.0769 71.4282 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3812 5.0000 11.6000 299.1650 297.8950 299.9280 295.8520 300.000
+ 21 0.0000 0.0000 4.5000 -6.5000 60.486 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.4742 71.7429 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3812 5.0000 11.5000 299.1460 297.8890 299.6470 295.7680 300.000
+ 22 0.0000 0.0000 4.5000 -6.4000 60.944 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.8726 72.0594 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.3812 5.0000 11.4000 299.1340 297.8840 299.9600 295.8260 300.000
+ 23 0.0000 0.0000 4.5000 -6.3000 60.496 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.2719 72.3779 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 2.3812 5.0000 11.3000 299.1560 297.8910 300.6450 295.8470 300.000
+ 24 0.0000 0.0000 4.5000 -6.2000 60.407 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.6723 72.6982 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3812 5.0000 11.2000 299.1730 297.8980 300.5470 295.8180 300.000
+ 25 0.0000 0.0000 4.5000 -6.1000 60.483 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.0738 73.0205 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3812 5.0000 11.1000 299.1740 297.9010 300.1970 295.7630 300.000
+ 26 0.0000 0.0000 4.5000 -6.0000 60.854 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.4765 73.3448 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3812 5.0000 11.0000 299.1610 297.8960 299.8270 295.7430 300.000
+ 27 0.0000 0.0000 4.5000 -5.9000 60.439 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.8803 73.6711 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3812 5.0000 10.9000 299.1400 297.8870 299.6350 295.7550 300.000
+ 28 0.0000 0.0000 4.5000 -5.8000 60.478 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.2852 73.9995 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3812 5.0000 10.8000 299.1360 297.8860 300.2260 295.8140 300.000
+ 29 0.0000 0.0000 4.5000 -5.7000 60.511 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.6914 74.3301 -2.7386 0.5000 0.0000 0.0000 155.6649 -48.6703 2.3812 5.0000 10.6999 299.1590 297.8930 300.6400 295.9180 300.000
+ 30 0.0000 0.0000 4.5000 -5.6000 60.513 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0988 74.6629 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3812 5.0000 10.6000 299.1660 297.8980 300.4380 295.9890 300.000
+ 31 0.0000 0.0000 4.5000 -5.5000 60.966 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.5075 74.9979 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3812 5.0000 10.5000 299.1640 297.8980 300.0460 295.8940 300.000
+ 32 0.0000 0.0000 4.5000 -5.4000 60.470 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9175 75.3353 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3812 5.0000 10.4000 299.1460 297.8920 299.7120 295.8660 300.000
+ 33 0.0000 0.0000 4.5000 -5.3000 60.944 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3288 75.6751 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3812 5.0000 10.3000 299.1260 297.8850 299.7460 295.8790 300.000
+ 34 0.0000 0.0000 4.5000 -5.2000 60.999 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.7415 76.0173 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3812 5.0000 10.2000 299.1420 297.8890 300.4910 295.8330 300.000
+ 35 0.0000 0.0000 4.5000 -5.1000 60.789 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.1556 76.3620 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.3812 5.0000 10.1000 299.1610 297.8970 300.5950 295.8950 300.000
+ 36 0.0000 0.0000 4.5000 -5.0000 60.534 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.5712 76.7094 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3812 5.0000 10.0000 299.1680 297.9010 300.2940 295.8090 300.000
+ 37 0.0000 0.0000 4.5000 -4.9000 60.963 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.9882 77.0593 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3812 5.0000 9.9000 299.1570 297.8970 299.9130 295.8770 300.000
+ 38 0.0000 0.0000 4.5000 -4.8000 60.981 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.4068 77.4120 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3812 5.0000 9.8000 299.1350 297.8900 299.6210 295.7890 300.000
+ 39 0.0000 0.0000 4.5000 -4.7000 60.568 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.8269 77.7674 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3812 5.0000 9.7000 299.1300 297.8870 300.0220 295.7540 300.000
+ 40 0.0000 0.0000 4.5000 -4.6000 60.522 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2486 78.1258 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5758 2.3812 5.0000 9.6000 299.1530 297.8940 300.6560 295.8480 300.000
+ 41 0.0000 0.0000 4.5000 -4.5000 60.928 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.6720 78.4870 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3812 5.0000 9.5000 299.1690 297.9010 300.5460 295.8780 300.000
+ 42 0.0000 0.0000 4.5000 -4.4000 61.085 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.0970 78.8514 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3812 5.0000 9.4000 299.1710 297.9030 300.1830 295.8250 300.000
+ 43 0.0000 0.0000 4.5000 -4.3000 60.551 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.5238 79.2188 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4634 2.3812 5.0000 9.3000 299.1520 297.8990 299.7940 295.8050 300.000
+ 44 0.0000 0.0000 4.5000 -4.2000 61.108 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9524 79.5894 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3812 5.0000 9.2000 299.1320 297.8910 299.6590 295.8600 300.000
+ 45 0.0000 0.0000 4.5000 -4.1000 60.965 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3828 79.9633 -2.7386 0.5000 0.0000 0.0000 153.4592 -53.0813 2.3812 5.0000 9.1000 299.1320 297.8900 300.2730 295.9360 300.000
+ 46 0.0000 0.0000 4.5000 -4.0000 60.600 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.8150 80.3406 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3812 5.0000 9.0000 299.1570 297.8990 300.6100 295.9290 300.000
+# Sum of Counts = 396
+# Center of Mass = -6.490657+/-0.465386
+# Full Width Half-Maximum = 2.457591+/-0.173143
+# 5:55:48 AM 10/25/2011 scan completed.
+
+5:55:48 AM 10/25/2011 Executing "scan h 0 k 0 l 4.2 e -7.9 -3.5 0.1 preset mcu 1.0"
+
+
+# scan = 62
+# date = 10/25/2011
+# time = 5:55:48 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.2 e -7.9 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 4.2 e -7.9 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.2000 -7.9000 60.781 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 11.8414 61.4954 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.2224 5.0000 12.9000 299.1690 297.9060 300.2620 295.8960 300.000
+ 2 0.0000 0.0000 4.2000 -7.8000 60.616 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.2476 61.7812 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.2224 5.0000 12.8000 299.1620 297.9020 299.8990 295.7660 300.000
+ 3 0.0000 0.0000 4.2000 -7.7000 60.495 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.6542 62.0680 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.2224 5.0000 12.7000 299.1450 297.8960 299.6210 295.6750 300.000
+ 4 0.0000 0.0000 4.2000 -7.6000 60.752 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.0614 62.3558 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.2224 5.0000 12.6000 299.1370 297.8920 300.0530 295.7110 300.000
+ 5 0.0000 0.0000 4.2000 -7.5000 60.460 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.4692 62.6447 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.2224 5.0000 12.5000 299.1630 297.9000 300.6140 295.6470 300.000
+ 6 0.0000 0.0000 4.2000 -7.4000 61.018 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.8774 62.9347 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.2224 5.0000 12.4000 299.1750 297.9060 300.4910 295.7820 300.000
+ 7 0.0000 0.0000 4.2000 -7.3000 60.738 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.2863 63.2258 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.2224 5.0000 12.3000 299.1720 297.9080 300.1440 295.7580 300.000
+ 8 0.0000 0.0000 4.2000 -7.2000 60.765 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.6958 63.5180 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4005 2.2224 5.0000 12.2000 299.1560 297.9020 299.7590 295.7860 300.000
+ 9 0.0000 0.0000 4.2000 -7.1000 60.201 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.1059 63.8114 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.2224 5.0000 12.1000 299.1370 297.8960 299.6470 295.5990 300.000
+ 10 0.0000 0.0000 4.2000 -7.0000 60.824 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.5167 64.1060 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.2224 5.0000 12.0000 299.1500 297.8980 300.3770 295.6950 300.000
+ 11 0.0000 0.0000 4.2000 -6.9000 60.678 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.9282 64.4018 -2.7386 0.5000 0.0000 0.0000 156.9990 -46.0016 2.2224 5.0000 11.9000 299.1680 297.9060 300.6820 295.8310 300.000
+ 12 0.0000 0.0000 4.2000 -6.8000 60.532 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.3403 64.6990 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.2224 5.0000 11.8000 299.1770 297.9110 300.4110 295.7900 300.000
+ 13 0.0000 0.0000 4.2000 -6.7000 60.652 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.7532 64.9974 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.2224 5.0000 11.7000 299.1730 297.9110 300.0220 295.7130 300.000
+ 14 0.0000 0.0000 4.2000 -6.6000 60.490 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.1669 65.2972 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.2224 5.0000 11.6000 299.1540 297.9030 299.6780 295.7300 300.000
+ 15 0.0000 0.0000 4.2000 -6.5000 60.673 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.5814 65.5983 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.2224 5.0000 11.5000 299.1380 297.8970 299.7610 295.7660 300.000
+ 16 0.0000 0.0000 4.2000 -6.4000 60.583 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.9966 65.9009 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.2224 5.0000 11.4000 299.1500 297.9000 300.5170 295.7780 300.000
+ 17 0.0000 0.0000 4.2000 -6.3000 60.598 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.4127 66.2049 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.2224 5.0000 11.3000 299.1740 297.9080 300.6070 295.8120 300.000
+ 18 0.0000 0.0000 4.2000 -6.2000 60.642 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.8297 66.5104 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.2224 5.0000 11.2000 299.1750 297.9100 300.3010 295.8490 300.000
+ 19 0.0000 0.0000 4.2000 -6.1000 60.786 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.2476 66.8174 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.2224 5.0000 11.1000 299.1660 297.9080 299.9160 295.8310 300.000
+ 20 0.0000 0.0000 4.2000 -6.0000 60.724 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.6664 67.1260 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.2224 5.0000 11.0000 299.1470 297.9020 299.6370 295.7410 300.000
+ 21 0.0000 0.0000 4.2000 -5.9000 60.811 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.0861 67.4362 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.2224 5.0000 10.9000 299.1360 297.8970 299.9950 295.7510 300.000
+ 22 0.0000 0.0000 4.2000 -5.8000 60.680 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.5068 67.7480 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.2224 5.0000 10.8000 299.1610 297.9060 300.6520 295.7780 300.000
+ 23 0.0000 0.0000 4.2000 -5.7000 60.499 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.9285 68.0616 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.2224 5.0000 10.7000 299.1770 297.9120 300.5660 295.8350 300.000
+ 24 0.0000 0.0000 4.2000 -5.6000 60.573 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.3513 68.3768 -2.7386 0.5000 0.0000 0.0000 155.5427 -48.9142 2.2224 5.0000 10.6000 299.1750 297.9150 300.2070 295.8710 300.000
+ 25 0.0000 0.0000 4.2000 -5.5000 60.707 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.7751 68.6939 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.2224 5.0000 10.5000 299.1600 297.9100 299.8190 295.8990 300.000
+ 26 0.0000 0.0000 4.2000 -5.4000 61.084 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.2001 69.0128 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4135 2.2224 5.0000 10.4000 299.1380 297.9020 299.6540 295.9170 300.000
+ 27 0.0000 0.0000 4.2000 -5.3000 60.788 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.6262 69.3336 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.2224 5.0000 10.3000 299.1400 297.9020 300.2090 295.8190 300.000
+ 28 0.0000 0.0000 4.2000 -5.2000 60.935 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.0534 69.6563 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.2224 5.0000 10.2000 299.1640 297.9100 300.6270 295.8540 300.000
+ 29 0.0000 0.0000 4.2000 -5.1000 60.775 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.4818 69.9810 -2.7386 0.5000 0.0000 0.0000 154.9039 -50.1919 2.2224 5.0000 10.1000 299.1720 297.9150 300.4310 295.9480 300.000
+ 30 0.0000 0.0000 4.2000 -5.0000 60.767 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.9115 70.3078 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.2224 5.0000 10.0000 299.1660 297.9140 300.0580 295.9160 300.000
+ 31 0.0000 0.0000 4.2000 -4.9000 60.870 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.3425 70.6366 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.2224 5.0000 9.9000 299.1500 297.9080 299.7050 295.8080 300.000
+ 32 0.0000 0.0000 4.2000 -4.8000 60.612 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.7747 70.9676 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.2224 5.0000 9.8000 299.1330 297.9010 299.7620 295.8460 300.000
+ 33 0.0000 0.0000 4.2000 -4.7000 60.747 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.2083 71.3008 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 2.2224 5.0000 9.7000 299.1480 297.9040 300.4850 295.8400 300.000
+ 34 0.0000 0.0000 4.2000 -4.6000 60.872 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.6433 71.6362 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.2224 5.0000 9.6000 299.1680 297.9120 300.5830 295.8550 300.000
+ 35 0.0000 0.0000 4.2000 -4.5000 60.733 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0797 71.9740 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2224 5.0000 9.5000 299.1700 297.9150 300.2680 295.9370 300.000
+ 36 0.0000 0.0000 4.2000 -4.4000 60.812 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.5176 72.3142 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1625 2.2224 5.0000 9.4000 299.1590 297.9110 299.8980 295.9150 300.000
+ 37 0.0000 0.0000 4.2000 -4.3000 60.502 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9569 72.6569 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2224 5.0000 9.3000 299.1400 297.9050 299.6370 295.8240 300.000
+ 38 0.0000 0.0000 4.2000 -4.2000 60.998 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3978 73.0021 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2224 5.0000 9.2000 299.1330 297.9010 300.0440 295.8580 300.000
+ 39 0.0000 0.0000 4.2000 -4.1000 60.490 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.8403 73.3499 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2224 5.0000 9.1000 299.1560 297.9080 300.6370 295.8830 300.000
+ 40 0.0000 0.0000 4.2000 -4.0000 60.660 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.2844 73.7004 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2224 5.0000 9.0000 299.1720 297.9150 300.5180 295.8940 300.000
+ 41 0.0000 0.0000 4.2000 -3.9000 60.921 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.7302 74.0537 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2224 5.0000 8.9000 299.1740 297.9170 300.1580 295.8160 300.000
+ 42 0.0000 0.0000 4.2000 -3.8000 60.546 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1777 74.4098 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2224 5.0000 8.8000 299.1560 297.9110 299.7740 295.8570 300.000
+ 43 0.0000 0.0000 4.2000 -3.7000 60.617 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.6270 74.7688 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2224 5.0000 8.7000 299.1350 297.9030 299.6470 295.8430 300.000
+ 44 0.0000 0.0000 4.2000 -3.6000 60.759 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.0780 75.1308 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2224 5.0000 8.6000 299.1390 297.9040 300.3320 295.8890 300.000
+ 45 0.0000 0.0000 4.2000 -3.5000 60.506 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.5310 75.4960 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2224 5.0000 8.5000 299.1640 297.9140 300.6840 295.9510 300.000
+# Sum of Counts = 230
+# Center of Mass = -5.664348+/-0.535098
+# Full Width Half-Maximum = 2.597081+/-0.227840
+# 6:43:24 AM 10/25/2011 scan completed.
+
+6:43:24 AM 10/25/2011 Executing "scan h 0 k 0 l 3.9 e -7.0 -2.5 0.1 preset mcu 1.0"
+
+
+# scan = 63
+# date = 10/25/2011
+# time = 6:43:24 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.9 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.9 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.9000 -7.0000 60.757 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 10.3446 58.1489 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.0637 5.0000 12.0000 299.1840 297.9230 300.3280 295.8270 300.000
+ 2 0.0000 0.0000 3.9000 -6.9000 60.529 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 10.7803 58.4364 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.0637 5.0000 11.9000 299.1710 297.9180 299.9310 295.8150 300.000
+ 3 0.0000 0.0000 3.9000 -6.8000 60.523 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 11.2164 58.7248 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2074 2.0637 5.0000 11.8000 299.1490 297.9110 299.6330 295.7780 300.000
+ 4 0.0000 0.0000 3.9000 -6.7000 60.836 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 11.6530 59.0142 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.0637 5.0000 11.7000 299.1380 297.9060 299.9730 295.8370 300.000
+ 5 0.0000 0.0000 3.9000 -6.6000 60.620 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.0902 59.3046 -2.7386 0.5000 0.0000 0.0000 156.6863 -46.6273 2.0637 5.0000 11.6000 299.1580 297.9130 300.5990 295.8430 300.000
+ 6 0.0000 0.0000 3.9000 -6.5000 60.588 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.5280 59.5960 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.0637 5.0000 11.5000 299.1800 297.9210 300.5240 295.7260 300.000
+ 7 0.0000 0.0000 3.9000 -6.4000 60.805 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.9663 59.8883 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0590 2.0637 5.0000 11.4000 299.1800 297.9230 300.1720 295.7700 300.000
+ 8 0.0000 0.0000 3.9000 -6.3000 60.971 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.4053 60.1818 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.0637 5.0000 11.3000 299.1640 297.9180 299.8010 295.7780 300.000
+ 9 0.0000 0.0000 3.9000 -6.2000 60.718 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.8449 60.4763 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.0637 5.0000 11.2000 299.1440 297.9100 299.6410 295.7240 300.000
+ 10 0.0000 0.0000 3.9000 -6.1000 60.895 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.2852 60.7720 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.0637 5.0000 11.1000 299.1470 297.9110 300.2910 295.7290 300.000
+ 11 0.0000 0.0000 3.9000 -6.0000 60.581 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.7262 61.0688 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.0637 5.0000 11.0000 299.1740 297.9190 300.6770 295.7360 300.000
+ 12 0.0000 0.0000 3.9000 -5.9000 60.570 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.1680 61.3668 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.0637 5.0000 10.9000 299.1860 297.9260 300.4140 295.8300 300.000
+ 13 0.0000 0.0000 3.9000 -5.8000 60.644 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.6104 61.6661 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.0637 5.0000 10.8000 299.1740 297.9240 300.0490 295.8540 300.000
+ 14 0.0000 0.0000 3.9000 -5.7000 60.700 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.0538 61.9666 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.0637 5.0000 10.7000 299.1570 297.9170 299.7130 295.8550 300.000
+ 15 0.0000 0.0000 3.9000 -5.6000 60.800 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.4979 62.2684 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.0637 5.0000 10.6000 299.1400 297.9110 299.7600 295.7440 300.000
+ 16 0.0000 0.0000 3.9000 -5.5000 60.689 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.9429 62.5716 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.0637 5.0000 10.5000 299.1570 297.9150 300.5090 295.7830 300.000
+ 17 0.0000 0.0000 3.9000 -5.4000 60.465 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.3888 62.8761 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.0637 5.0000 10.4000 299.1760 297.9240 300.6400 295.9490 300.000
+ 18 0.0000 0.0000 3.9000 -5.3000 60.778 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.8357 63.1821 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.0637 5.0000 10.3000 299.1830 297.9280 300.3080 295.8980 300.000
+ 19 0.0000 0.0000 3.9000 -5.2000 61.058 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.2835 63.4896 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.0637 5.0000 10.2000 299.1710 297.9240 299.9470 295.8870 300.000
+ 20 0.0000 0.0000 3.9000 -5.1000 60.703 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.7322 63.7985 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.0637 5.0000 10.1000 299.1500 297.9170 299.6460 295.8360 300.000
+ 21 0.0000 0.0000 3.9000 -5.0000 60.531 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.1821 64.1090 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.0637 5.0000 10.0000 299.1400 297.9120 299.9350 295.8400 300.000
+ 22 0.0000 0.0000 3.9000 -4.9000 60.689 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.6330 64.4211 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 2.0637 5.0000 9.9000 299.1600 297.9180 300.5920 295.8560 300.000
+ 23 0.0000 0.0000 3.9000 -4.8000 60.560 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.0850 64.7348 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.0637 5.0000 9.8000 299.1760 297.9250 300.5520 295.9630 300.000
+ 24 0.0000 0.0000 3.9000 -4.7000 60.904 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.5381 65.0503 -2.7386 0.5000 0.0000 0.0000 154.3549 -51.2898 2.0637 5.0000 9.7000 299.1760 297.9270 300.1880 295.8750 300.000
+ 25 0.0000 0.0000 3.9000 -4.6000 60.345 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.9924 65.3675 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.0637 5.0000 9.6000 299.1650 297.9230 299.8330 295.8610 300.000
+ 26 0.0000 0.0000 3.9000 -4.5000 60.989 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.4478 65.6864 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.0637 5.0000 9.5000 299.1410 297.9150 299.6510 295.9280 300.000
+ 27 0.0000 0.0000 3.9000 -4.4000 60.477 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.9046 66.0072 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1625 2.0637 5.0000 9.4000 299.1390 297.9150 300.1960 295.8400 300.000
+ 28 0.0000 0.0000 3.9000 -4.3000 60.331 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.3626 66.3300 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 2.0637 5.0000 9.3000 299.1680 297.9230 300.6580 295.8550 300.000
+ 29 0.0000 0.0000 3.9000 -4.2000 60.406 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.8220 66.6546 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0637 5.0000 9.2000 299.1780 297.9270 300.4640 295.9180 300.000
+ 30 0.0000 0.0000 3.9000 -4.1000 60.872 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.2828 66.9813 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.0637 5.0000 9.1000 299.1730 297.9280 300.0700 295.8330 300.000
+ 31 0.0000 0.0000 3.9000 -4.0000 60.613 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7449 67.3100 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0637 5.0000 9.0000 299.1560 297.9220 299.7130 295.8260 300.000
+ 32 0.0000 0.0000 3.9000 -3.9000 60.817 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.2086 67.6409 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.0637 5.0000 8.9000 299.1360 297.9150 299.7630 295.8880 300.000
+ 33 0.0000 0.0000 3.9000 -3.8000 60.830 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.6737 67.9740 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.0637 5.0000 8.8000 299.1450 297.9180 300.4290 295.8970 300.000
+ 34 0.0000 0.0000 3.9000 -3.7000 60.611 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.1404 68.3093 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.0637 5.0000 8.7000 299.1690 297.9250 300.5800 295.8410 300.000
+ 35 0.0000 0.0000 3.9000 -3.6000 61.093 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.6086 68.6470 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.0637 5.0000 8.6000 299.1730 297.9280 300.2800 295.9140 300.000
+ 36 0.0000 0.0000 3.9000 -3.5000 60.779 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0785 68.9870 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.0637 5.0000 8.5000 299.1600 297.9250 299.9150 295.9540 300.000
+ 37 0.0000 0.0000 3.9000 -3.4000 61.131 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.5501 69.3295 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.0637 5.0000 8.4000 299.1410 297.9170 299.6310 295.8890 300.000
+ 38 0.0000 0.0000 3.9000 -3.3000 60.932 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.0234 69.6746 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7925 2.0637 5.0000 8.3000 299.1350 297.9150 300.0540 295.8540 300.000
+ 39 0.0000 0.0000 3.9000 -3.2000 60.885 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.4986 70.0223 -2.7386 0.5000 0.0000 0.0000 151.9192 -56.1615 2.0637 5.0000 8.2000 299.1620 297.9230 300.6390 295.8280 300.000
+ 40 0.0000 0.0000 3.9000 -3.1000 60.336 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.9756 70.3727 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.0637 5.0000 8.1000 299.1740 297.9290 300.5050 295.9040 300.000
+ 41 0.0000 0.0000 3.9000 -3.0000 60.585 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.4545 70.7259 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0637 5.0000 8.0000 299.1710 297.9290 300.1380 295.9150 300.000
+ 42 0.0000 0.0000 3.9000 -2.9000 60.491 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.9353 71.0820 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3147 2.0637 5.0000 7.9000 299.1560 297.9250 299.7670 295.8690 300.000
+ 43 0.0000 0.0000 3.9000 -2.8000 61.086 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.4182 71.4411 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0637 5.0000 7.8000 299.1360 297.9180 299.6860 295.8610 300.000
+ 44 0.0000 0.0000 3.9000 -2.7000 61.188 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.9031 71.8032 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0637 5.0000 7.7000 299.1440 297.9200 300.3480 295.8290 300.000
+ 45 0.0000 0.0000 3.9000 -2.6000 60.794 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.3902 72.1686 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.0637 5.0000 7.6000 299.1710 297.9280 300.6180 295.7800 300.000
+ 46 0.0000 0.0000 3.9000 -2.5000 60.839 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8795 72.5371 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0637 5.0000 7.5000 299.1770 297.9310 300.3660 295.9340 300.000
+# Sum of Counts = 186
+# Center of Mass = -4.623118+/-0.488668
+# Full Width Half-Maximum = 2.584281+/-0.223734
+# 7:32:07 AM 10/25/2011 scan completed.
+
+7:32:07 AM 10/25/2011 Executing "scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 64
+# date = 10/25/2011
+# time = 7:32:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.6000 -5.0000 60.961 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.3051 58.0642 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.9049 5.0000 10.0000 299.1680 297.9310 299.9030 295.8440 300.000
+ 2 0.0000 0.0000 3.6000 -4.9000 60.823 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.7829 58.3636 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.9049 5.0000 9.9000 299.1480 297.9230 299.6230 295.7510 300.000
+ 3 0.0000 0.0000 3.6000 -4.8000 60.540 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.2616 58.6642 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.9049 5.0000 9.8000 299.1440 297.9200 300.1120 295.7670 300.000
+ 4 0.0000 0.0000 3.6000 -4.7000 60.755 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.7412 58.9660 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.9049 5.0000 9.7000 299.1640 297.9270 300.6360 295.8350 300.000
+ 5 0.0000 0.0000 3.6000 -4.6000 60.380 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.2218 59.2690 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.9049 5.0000 9.6000 299.1740 297.9340 300.4790 295.9350 300.000
+ 6 0.0000 0.0000 3.6000 -4.5000 60.470 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.7033 59.5733 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.9049 5.0000 9.5000 299.1710 297.9350 300.1250 295.8950 300.000
+ 7 0.0000 0.0000 3.6000 -4.4000 60.485 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.1859 59.8789 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.9049 5.0000 9.4000 299.1600 297.9310 299.7610 295.7150 300.000
+ 8 0.0000 0.0000 3.6000 -4.3000 60.681 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.6695 60.1859 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.9049 5.0000 9.3000 299.1400 297.9220 299.6870 295.8030 300.000
+ 9 0.0000 0.0000 3.6000 -4.2000 60.499 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.1543 60.4943 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.9049 5.0000 9.2000 299.1440 297.9240 300.3860 295.8780 300.000
+ 10 0.0000 0.0000 3.6000 -4.1000 60.718 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.6402 60.8041 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.9049 5.0000 9.1000 299.1690 297.9310 300.6130 295.9080 300.000
+ 11 0.0000 0.0000 3.6000 -4.0000 60.747 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.1274 61.1155 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 1.9049 5.0000 9.0000 299.1770 297.9360 300.3170 295.8060 300.000
+ 12 0.0000 0.0000 3.6000 -3.9000 60.937 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.6157 61.4284 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 1.9049 5.0000 8.9000 299.1700 297.9340 299.9470 295.8030 300.000
+ 13 0.0000 0.0000 3.6000 -3.8000 60.094 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.1054 61.7429 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.9049 5.0000 8.8000 299.1460 297.9260 299.6530 295.9100 300.000
+ 14 0.0000 0.0000 3.6000 -3.7000 60.404 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.5964 62.0591 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.9049 5.0000 8.7000 299.1350 297.9230 299.9350 295.8260 300.000
+ 15 0.0000 0.0000 3.6000 -3.6000 60.829 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.0887 62.3770 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.9049 5.0000 8.6000 299.1590 297.9300 300.6090 295.7890 300.000
+ 16 0.0000 0.0000 3.6000 -3.5000 60.707 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.5825 62.6966 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.9049 5.0000 8.5000 299.1770 297.9360 300.5600 295.9080 300.000
+ 17 0.0000 0.0000 3.6000 -3.4000 60.715 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.0778 63.0181 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.9049 5.0000 8.4000 299.1760 297.9380 300.1940 295.8730 300.000
+ 18 0.0000 0.0000 3.6000 -3.3000 60.729 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.5746 63.3415 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.9049 5.0000 8.3000 299.1650 297.9350 299.8260 295.7710 300.000
+ 19 0.0000 0.0000 3.6000 -3.2000 60.714 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.0730 63.6668 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.9049 5.0000 8.2000 299.1480 297.9270 299.6400 295.7130 300.000
+ 20 0.0000 0.0000 3.6000 -3.1000 60.433 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.5730 63.9941 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.9049 5.0000 8.1000 299.1460 297.9260 300.2020 295.7400 300.000
+ 21 0.0000 0.0000 3.6000 -3.0000 60.511 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.0748 64.3234 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.9049 5.0000 8.0000 299.1700 297.9340 300.6290 295.7660 300.000
+ 22 0.0000 0.0000 3.6000 -2.9000 60.720 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.5782 64.6550 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.9049 5.0000 7.9000 299.1830 297.9400 300.3930 295.6990 300.000
+ 23 0.0000 0.0000 3.6000 -2.8000 60.806 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.0835 64.9887 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.9049 5.0000 7.8000 299.1740 297.9380 300.0250 295.8170 300.000
+ 24 0.0000 0.0000 3.6000 -2.7000 60.662 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.5907 65.3247 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.9049 5.0000 7.7000 299.1520 297.9310 299.7110 295.8620 300.000
+ 25 0.0000 0.0000 3.6000 -2.6000 60.662 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0998 65.6630 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.9049 5.0000 7.6000 299.1350 297.9240 299.7720 295.8750 300.000
+ 26 0.0000 0.0000 3.6000 -2.5000 60.735 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.6108 66.0038 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.9049 5.0000 7.5000 299.1510 297.9290 300.5230 295.8550 300.000
+ 27 0.0000 0.0000 3.6000 -2.4000 60.302 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.1239 66.3472 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.9049 5.0000 7.4000 299.1760 297.9360 300.6340 295.8950 300.000
+ 28 0.0000 0.0000 3.6000 -2.3000 60.597 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6392 66.6931 -2.7386 0.5000 0.0000 0.0000 150.0734 -59.8530 1.9049 5.0000 7.3000 299.1780 297.9410 300.3340 295.9220 300.000
+ 29 0.0000 0.0000 3.6000 -2.2000 60.270 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.1566 67.0417 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.9049 5.0000 7.2000 299.1690 297.9390 299.9260 295.8720 300.000
+ 30 0.0000 0.0000 3.6000 -2.1000 60.713 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6762 67.3931 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.9049 5.0000 7.1000 299.1490 297.9320 299.6430 295.8340 300.000
+ 31 0.0000 0.0000 3.6000 -2.0000 60.564 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1983 67.7474 -2.7386 0.5000 0.0000 0.0000 149.3716 -61.2567 1.9049 5.0000 7.0000 299.1410 297.9280 299.9920 295.8150 300.000
+ 32 0.0000 0.0000 3.6000 -1.9000 60.922 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7227 68.1046 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.9049 5.0000 6.9000 299.1630 297.9340 300.6130 295.9060 300.000
+ 33 0.0000 0.0000 3.6000 -1.8000 60.893 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2496 68.4650 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.9049 5.0000 6.8000 299.1770 297.9390 300.4990 295.9240 300.000
+ 34 0.0000 0.0000 3.6000 -1.7000 60.907 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.7791 68.8285 -2.7386 0.5000 0.0000 0.0000 148.6173 -62.7649 1.9049 5.0000 6.7000 299.1760 297.9410 300.1540 295.8990 300.000
+ 35 0.0000 0.0000 3.6000 -1.6000 60.547 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.3112 69.1954 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.9049 5.0000 6.6000 299.1600 297.9370 299.7850 295.8960 300.000
+ 36 0.0000 0.0000 3.6000 -1.5000 60.844 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.8461 69.5657 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.9049 5.0000 6.5000 299.1410 297.9300 299.6690 295.8370 300.000
+ 37 0.0000 0.0000 3.6000 -1.4000 60.374 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3838 69.9395 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.9049 5.0000 6.4000 299.1450 297.9300 300.3280 295.9200 300.000
+ 38 0.0000 0.0000 3.6000 -1.3000 60.863 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.9244 70.3171 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9049 5.0000 6.3000 299.1680 297.9380 300.6560 295.9380 300.000
+ 39 0.0000 0.0000 3.6000 -1.2000 60.593 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.4680 70.6984 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9049 5.0000 6.2000 299.1810 297.9440 300.4140 295.8560 300.000
+ 40 0.0000 0.0000 3.6000 -1.1000 60.461 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.0148 71.0838 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9049 5.0000 6.1000 299.1750 297.9420 300.0030 295.8510 300.000
+ 41 0.0000 0.0000 3.6000 -1.0000 60.540 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.5647 71.4733 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9049 5.0000 6.0000 299.1530 297.9360 299.6830 295.9240 300.000
+# Sum of Counts = 235
+# Center of Mass = -3.072340+/-0.291367
+# Full Width Half-Maximum = 2.070462+/-0.151173
+# 8:15:34 AM 10/25/2011 scan completed.
+
+8:15:34 AM 10/25/2011 Executing "scan h 0 k 0 l 3.4 e -2.5 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 65
+# date = 10/25/2011
+# time = 8:15:34 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -2.5 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.4 e -2.5 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -2.5000 60.403 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 61.7710 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7991 5.0000 7.5000 299.1390 297.9320 299.9350 295.8380 300.000
+ 2 0.0000 0.0000 3.4000 -2.4000 60.542 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.2814 62.0979 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.7991 5.0000 7.4000 299.1620 297.9370 300.6050 295.8420 300.000
+ 3 0.0000 0.0000 3.4000 -2.3000 60.304 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.8154 62.4269 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8531 1.7991 5.0000 7.3000 299.1810 297.9450 300.5290 295.8040 300.000
+ 4 0.0000 0.0000 3.4000 -2.2000 60.705 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.3513 62.7580 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7991 5.0000 7.2000 299.1820 297.9480 300.1820 295.8060 300.000
+ 5 0.0000 0.0000 3.4000 -2.1000 60.640 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.8894 63.0913 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.7991 5.0000 7.1000 299.1660 297.9430 299.8250 295.8720 300.000
+ 6 0.0000 0.0000 3.4000 -2.0000 60.712 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4298 63.4268 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.7991 5.0000 7.0000 299.1430 297.9340 299.6360 295.8660 300.000
+ 7 0.0000 0.0000 3.4000 -1.9000 60.698 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9723 63.7648 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.7991 5.0000 6.9000 299.1420 297.9330 300.2460 295.8970 300.000
+ 8 0.0000 0.0000 3.4000 -1.8000 60.836 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.5173 64.1051 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 1.7991 5.0000 6.8000 299.1710 297.9410 300.6610 295.8420 300.000
+ 9 0.0000 0.0000 3.4000 -1.7000 60.812 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.0646 64.4480 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.7991 5.0000 6.7000 299.1840 297.9470 300.4180 295.8760 300.000
+ 10 0.0000 0.0000 3.4000 -1.6000 60.864 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6145 64.7936 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.7991 5.0000 6.6000 299.1760 297.9470 300.0540 295.8970 300.000
+ 11 0.0000 0.0000 3.4000 -1.5000 60.634 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1670 65.1418 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.7991 5.0000 6.5000 299.1600 297.9410 299.7180 295.8520 300.000
+ 12 0.0000 0.0000 3.4000 -1.4000 60.285 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7222 65.4928 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 1.7991 5.0000 6.4000 299.1430 297.9350 299.7700 295.8100 300.000
+ 13 0.0000 0.0000 3.4000 -1.3000 60.576 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2802 65.8468 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.7991 5.0000 6.3000 299.1560 297.9370 300.4790 295.8710 300.000
+ 14 0.0000 0.0000 3.4000 -1.2000 60.414 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8411 66.2039 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.7991 5.0000 6.2000 299.1790 297.9460 300.5940 295.8100 300.000
+ 15 0.0000 0.0000 3.4000 -1.1000 60.636 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4049 66.5640 -2.7386 0.5000 0.0000 0.0000 146.9233 -66.1531 1.7991 5.0000 6.1000 299.1810 297.9480 300.2830 295.9540 300.000
+ 16 0.0000 0.0000 3.4000 -1.0000 60.602 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9718 66.9275 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.7991 5.0000 6.0000 299.1660 297.9450 299.9140 296.0120 300.000
+# Sum of Counts = 198
+# Center of Mass = -1.679798+/-0.171007
+# Full Width Half-Maximum = 0.766195+/-0.090566
+# 8:32:37 AM 10/25/2011 scan completed.
+
+8:32:37 AM 10/25/2011 Executing "scan h 0 k 0 l 3.2 e -1.5 -0.3 0.05 preset mcu 1.0"
+
+
+# scan = 66
+# date = 10/25/2011
+# time = 8:32:37 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.2 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.2 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.2000 -1.5000 60.746 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4931 60.8207 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6933 5.0000 6.5000 299.1440 297.9380 299.6320 295.9410 300.000
+ 2 0.0000 0.0000 3.2000 -1.4500 60.791 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7813 60.9857 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.6933 5.0000 6.4500 299.1400 297.9350 300.1280 295.9220 300.000
+ 3 0.0000 0.0000 3.2000 -1.4000 60.546 49.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.0701 61.1512 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6933 5.0000 6.4000 299.1670 297.9420 300.6370 295.9030 300.000
+ 4 0.0000 0.0000 3.2000 -1.3500 60.861 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3595 61.3173 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6753 1.6933 5.0000 6.3500 299.1800 297.9490 300.4670 295.9130 300.000
+ 5 0.0000 0.0000 3.2000 -1.3000 60.860 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6496 61.4840 -2.7386 0.5000 0.0000 0.0000 147.5184 -64.9628 1.6933 5.0000 6.3000 299.1770 297.9500 300.0830 295.8510 300.000
+ 6 0.0000 0.0000 3.2000 -1.2500 60.698 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.9404 61.6512 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.6933 5.0000 6.2500 299.1630 297.9440 299.7430 295.8050 300.000
+ 7 0.0000 0.0000 3.2000 -1.2000 60.858 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.2319 61.8190 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6933 5.0000 6.2000 299.1440 297.9360 299.7000 295.8310 300.000
+ 8 0.0000 0.0000 3.2000 -1.1500 60.504 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.5242 61.9874 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8493 1.6933 5.0000 6.1500 299.1520 297.9380 300.4200 295.8630 300.000
+ 9 0.0000 0.0000 3.2000 -1.1000 60.750 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.8171 62.1563 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6933 5.0000 6.1000 299.1750 297.9470 300.6510 295.9350 300.000
+ 10 0.0000 0.0000 3.2000 -1.0500 60.457 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1108 62.3259 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.6933 5.0000 6.0500 299.1840 297.9520 300.3440 295.8310 300.000
+ 11 0.0000 0.0000 3.2000 -1.0000 60.517 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.4053 62.4962 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6933 5.0000 6.0000 299.1790 297.9510 299.9700 295.8040 300.000
+ 12 0.0000 0.0000 3.2000 -0.9500 60.576 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7005 62.6670 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.6933 5.0000 5.9500 299.1580 297.9440 299.6560 295.7760 300.000
+ 13 0.0000 0.0000 3.2000 -0.9000 60.754 65.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.9965 62.8386 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6933 5.0000 5.9000 299.1440 297.9380 299.8970 295.7940 300.000
+ 14 0.0000 0.0000 3.2000 -0.8500 60.944 93.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2933 63.0107 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.6933 5.0000 5.8500 299.1640 297.9440 300.5490 295.7680 300.000
+ 15 0.0000 0.0000 3.2000 -0.8000 60.671 83.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.5910 63.1836 -2.7386 0.5000 0.0000 0.0000 145.9652 -68.0694 1.6933 5.0000 5.8000 299.1840 297.9510 300.5120 295.7340 300.000
+ 16 0.0000 0.0000 3.2000 -0.7500 60.511 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8894 63.3571 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.6933 5.0000 5.7500 299.1790 297.9520 300.1770 295.9070 300.000
+ 17 0.0000 0.0000 3.2000 -0.7000 61.078 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.1887 63.5314 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.6933 5.0000 5.7000 299.1600 297.9480 299.8080 295.9190 300.000
+ 18 0.0000 0.0000 3.2000 -0.6500 60.472 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4889 63.7064 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.6933 5.0000 5.6500 299.1400 297.9400 299.6470 295.8780 300.000
+ 19 0.0000 0.0000 3.2000 -0.6000 60.206 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.7899 63.8821 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.6933 5.0000 5.6000 299.1410 297.9390 300.2750 295.9410 300.000
+ 20 0.0000 0.0000 3.2000 -0.5500 60.568 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.0918 64.0585 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.6933 5.0000 5.5500 299.1660 297.9480 300.6610 295.9380 300.000
+ 21 0.0000 0.0000 3.2000 -0.5000 60.806 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3947 64.2357 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6933 5.0000 5.5000 299.1750 297.9530 300.4280 296.0060 300.000
+ 22 0.0000 0.0000 3.2000 -0.4500 60.680 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.6984 64.4137 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.6933 5.0000 5.4500 299.1690 297.9520 300.0530 295.9890 300.000
+ 23 0.0000 0.0000 3.2000 -0.4000 60.721 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.0032 64.5925 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.6933 5.0000 5.4000 299.1530 297.9470 299.6920 295.9030 300.000
+ 24 0.0000 0.0000 3.2000 -0.3500 60.629 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.3088 64.7721 -2.7386 0.5000 0.0000 0.0000 144.3550 -71.2896 1.6933 5.0000 5.3500 299.1390 297.9410 299.7840 295.8230 300.000
+ 25 0.0000 0.0000 3.2000 -0.3000 60.303 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6154 64.9525 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 1.6933 5.0000 5.3000 299.1540 297.9440 300.5090 295.8950 300.000
+# Sum of Counts = 1138
+# Center of Mass = -0.947891+/-0.040896
+# Full Width Half-Maximum = 0.652183+/-0.023854
+# 8:59:02 AM 10/25/2011 scan completed.
+
+8:59:02 AM 10/25/2011 Executing "scantitle "Dispersion G-T transverse (101) zone""
+
+Setting the scantitle to:
+Dispersion G-T transverse (101) zone
+
+
+8:59:02 AM 10/25/2011 Executing "scan h 1 k 0 l -0.5 e -8.5 -4.0 0.1 preset mcu 1.0"
+
+
+# scan = 67
+# date = 10/25/2011
+# time = 8:59:02 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.5 e -8.5 -4.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.5 e -8.5 -4.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.5000 -8.5000 60.536 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.6167 37.2111 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6163 5.0000 13.5000 299.1800 297.9560 300.4720 295.8180 300.000
+ 2 1.0000 0.0000 -0.5000 -8.4000 60.498 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.1924 37.5078 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 1.6164 5.0000 13.4000 299.1770 297.9560 300.1250 295.8460 300.000
+ 3 1.0000 0.0000 -0.5000 -8.3000 60.442 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.7664 37.8037 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.6164 5.0000 13.3000 299.1600 297.9520 299.7570 295.8170 300.000
+ 4 1.0000 0.0000 -0.5000 -8.1999 60.669 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.3387 38.0988 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5552 1.6163 5.0000 13.1999 299.1430 297.9440 299.6750 295.7660 300.000
+ 5 1.0000 0.0000 -0.5000 -8.1000 60.450 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.9094 38.3931 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 1.6164 5.0000 13.1000 299.1500 297.9450 300.3650 295.8050 300.000
+ 6 1.0000 0.0000 -0.5000 -8.0000 60.706 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.4786 38.6867 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6163 5.0000 13.0000 299.1740 297.9530 300.6530 295.8540 300.000
+ 7 1.0000 0.0000 -0.5000 -7.9000 60.576 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0464 38.9797 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.6163 5.0000 12.9000 299.1820 297.9570 300.3670 295.8940 300.000
+ 8 1.0000 0.0000 -0.5000 -7.8000 60.350 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.6128 39.2720 -2.7386 0.5000 0.0000 0.0000 157.8670 -44.2658 1.6163 5.0000 12.8000 299.1750 297.9570 299.9930 295.8320 300.000
+ 9 1.0000 0.0000 -0.5000 -7.7000 60.679 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1778 39.5637 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.6164 5.0000 12.7000 299.1580 297.9510 299.6750 295.7980 300.000
+ 10 1.0000 0.0000 -0.5000 -7.6000 60.541 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.7416 39.8548 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.6163 5.0000 12.6000 299.1390 297.9440 299.8170 295.9170 300.000
+ 11 1.0000 0.0000 -0.5000 -7.5000 60.792 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.3043 40.1454 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6163 5.0000 12.5000 299.1550 297.9470 300.5630 296.0400 300.000
+ 12 1.0000 0.0000 -0.5000 -7.4000 60.668 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.8658 40.4355 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.6163 5.0000 12.4000 299.1780 297.9560 300.6110 295.9840 300.000
+ 13 1.0000 0.0000 -0.5000 -7.3000 60.544 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.4262 40.7251 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.6163 5.0000 12.3000 299.1840 297.9600 300.2780 295.9020 300.000
+ 14 1.0000 0.0000 -0.5000 -7.2000 60.245 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.9856 41.0142 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.6163 5.0000 12.2000 299.1720 297.9570 299.8900 295.8740 300.000
+ 15 1.0000 0.0000 -0.5000 -7.1000 60.338 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.5441 41.3030 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.6163 5.0000 12.1000 299.1510 297.9500 299.6520 295.9070 300.000
+ 16 1.0000 0.0000 -0.5000 -7.0000 60.431 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1016 41.5913 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6163 5.0000 12.0000 299.1430 297.9450 300.0430 295.8880 300.000
+ 17 1.0000 0.0000 -0.5000 -6.9000 60.212 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.6584 41.8793 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.6163 5.0000 11.9000 299.1670 297.9530 300.6240 295.9360 300.000
+ 18 1.0000 0.0000 -0.5000 -6.8000 60.131 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.2144 42.1670 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.6163 5.0000 11.8000 299.1840 297.9590 300.5150 295.8820 300.000
+ 19 1.0000 0.0000 -0.5000 -6.7000 60.320 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.7696 42.4544 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.6164 5.0000 11.7000 299.1830 297.9600 300.1630 295.9190 300.000
+ 20 1.0000 0.0000 -0.5000 -6.6000 59.813 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.3241 42.7411 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.6163 5.0000 11.6000 299.1400 297.9460 299.8900 295.7890 300.000
+ 21 1.0000 0.0000 -0.5000 -6.5000 60.102 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8781 43.0284 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6163 5.0000 11.5000 299.1730 297.9500 300.5940 295.7860 300.000
+ 22 1.0000 0.0000 -0.5000 -6.4000 60.310 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4315 43.3151 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6163 5.0000 11.4000 299.1870 297.9570 300.5840 295.8940 300.000
+ 23 1.0000 0.0000 -0.5000 -6.3000 60.296 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9844 43.6016 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6163 5.0000 11.3000 299.1890 297.9600 300.2520 295.8910 300.000
+ 24 1.0000 0.0000 -0.5000 -6.2000 60.487 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5368 43.8880 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6163 5.0000 11.2000 299.1760 297.9560 299.8750 295.9170 300.000
+ 25 1.0000 0.0000 -0.5000 -6.1000 60.318 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0888 44.1742 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6163 5.0000 11.1000 299.1530 297.9490 299.6390 295.9260 300.000
+ 26 1.0000 0.0000 -0.5000 -6.0000 60.536 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6405 44.4604 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6163 5.0000 11.0000 299.1500 297.9460 300.1030 295.8400 300.000
+ 27 1.0000 0.0000 -0.5000 -5.9000 60.252 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1919 44.7465 -2.7386 0.5000 0.0000 0.0000 155.9034 -48.1930 1.6163 5.0000 10.9000 299.1760 297.9550 300.6550 295.8400 300.000
+ 28 1.0000 0.0000 -0.5000 -5.8000 60.104 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7430 45.0326 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6163 5.0000 10.8000 299.1900 297.9620 300.5060 295.8780 300.000
+ 29 1.0000 0.0000 -0.5000 -5.7000 60.026 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2939 45.3186 -2.7386 0.5000 0.0000 0.0000 155.6649 -48.6702 1.6163 5.0000 10.7000 299.1880 297.9630 300.1300 295.7780 300.000
+ 30 1.0000 0.0000 -0.5000 -5.6000 60.246 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8447 45.6047 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6163 5.0000 10.6000 299.1770 297.9590 299.7830 295.7460 300.000
+ 31 1.0000 0.0000 -0.5000 -5.5000 60.157 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3954 45.8908 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6163 5.0000 10.5000 299.1560 297.9520 299.6600 295.7390 300.000
+ 32 1.0000 0.0000 -0.5000 -5.4000 59.873 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9460 46.1771 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4135 1.6163 5.0000 10.4000 299.1590 297.9520 300.3300 295.8160 300.000
+ 33 1.0000 0.0000 -0.5000 -5.3000 60.497 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4967 46.4634 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6164 5.0000 10.3000 299.1830 297.9600 300.6180 295.8490 300.000
+ 34 1.0000 0.0000 -0.5000 -5.2000 60.244 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.0474 46.7498 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6163 5.0000 10.2000 299.1920 297.9650 300.3880 295.8230 300.000
+ 35 1.0000 0.0000 -0.5000 -5.1000 60.095 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5982 47.0365 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6163 5.0000 10.1000 299.1870 297.9650 300.0140 295.7680 300.000
+ 36 1.0000 0.0000 -0.5000 -5.0000 59.952 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1492 47.3233 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 1.6163 5.0000 10.0000 299.1660 297.9580 299.6910 295.8460 300.000
+ 37 1.0000 0.0000 -0.5000 -4.9000 60.340 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7004 47.6104 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6163 5.0000 9.9000 299.1470 297.9520 299.7970 295.8340 300.000
+ 38 1.0000 0.0000 -0.5000 -4.8000 59.889 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2518 47.8976 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6163 5.0000 9.8000 299.1640 297.9560 300.5150 295.9060 300.000
+ 39 1.0000 0.0000 -0.5000 -4.7000 59.896 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8036 48.1852 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2899 1.6163 5.0000 9.7000 299.1820 297.9630 300.5880 295.9620 300.000
+ 40 1.0000 0.0000 -0.5000 -4.6000 60.122 49.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.3557 48.4731 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.6163 5.0000 9.6000 299.1890 297.9680 300.2770 295.8740 300.000
+ 41 1.0000 0.0000 -0.5000 -4.5000 60.414 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.9082 48.7614 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6163 5.0000 9.5000 299.1790 297.9660 299.9070 295.8530 300.000
+ 42 1.0000 0.0000 -0.5000 -4.4000 60.037 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4612 49.0500 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6163 5.0000 9.4000 299.1580 297.9590 299.6540 295.8490 300.000
+ 43 1.0000 0.0000 -0.5000 -4.3000 60.208 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0148 49.3390 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6163 5.0000 9.3000 299.1480 297.9550 300.0300 295.9090 300.000
+ 44 1.0000 0.0000 -0.5000 -4.2000 60.212 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5689 49.6284 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6163 5.0000 9.2000 299.1710 297.9610 300.5750 295.8440 300.000
+ 45 1.0000 0.0000 -0.5000 -4.1000 60.041 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1236 49.9184 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6163 5.0000 9.1000 299.1870 297.9680 300.4830 295.8490 300.000
+ 46 1.0000 0.0000 -0.5000 -4.0000 60.279 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6791 50.2088 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6163 5.0000 9.0000 299.1830 297.9690 300.1130 295.8670 300.000
+# Sum of Counts = 592
+# Center of Mass = -5.300337+/-0.311579
+# Full Width Half-Maximum = 2.267123+/-0.135493
+# 9:49:10 AM 10/25/2011 scan completed.
+
+9:49:10 AM 10/25/2011 Executing "scan h 1 k 0 l -0.2 e -7.9 -3.5 0.1 preset mcu 1.0"
+
+
+# scan = 68
+# date = 10/25/2011
+# time = 9:49:10 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.2 e -7.9 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.2 e -7.9 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.2000 -7.9000 60.773 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.5608 38.2835 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5981 5.0000 12.9000 299.1630 297.9640 299.7040 295.7980 300.000
+ 2 1.0000 0.0000 -0.2000 -7.7999 60.558 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.1358 38.5776 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2659 1.5981 5.0000 12.7999 299.1560 297.9570 299.7550 295.6320 300.000
+ 3 1.0000 0.0000 -0.2000 -7.7000 60.308 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.7093 38.8709 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5981 5.0000 12.7000 299.1690 297.9600 300.4740 295.6880 300.000
+ 4 1.0000 0.0000 -0.2000 -7.6000 60.259 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.2815 39.1636 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5981 5.0000 12.6000 299.1890 297.9670 300.6050 295.7420 300.000
+ 5 1.0000 0.0000 -0.2000 -7.5000 60.685 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.8524 39.4556 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.5981 5.0000 12.5000 299.1930 297.9720 300.3200 295.7100 300.000
+ 6 1.0000 0.0000 -0.2000 -7.4000 60.502 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.4220 39.7471 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5981 5.0000 12.4000 299.1870 297.9700 299.9420 295.6350 300.000
+ 7 1.0000 0.0000 -0.2000 -7.3000 60.642 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.9904 40.0381 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2053 1.5981 5.0000 12.3000 299.1680 297.9640 299.6700 295.6880 300.000
+ 8 1.0000 0.0000 -0.2000 -7.2000 60.669 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.5577 40.3285 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5981 5.0000 12.2000 299.1550 297.9580 299.9180 295.6510 300.000
+ 9 1.0000 0.0000 -0.2000 -7.1000 60.196 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.1240 40.6184 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5981 5.0000 12.1000 299.1810 297.9620 300.5710 295.7440 300.000
+ 10 1.0000 0.0000 -0.2000 -7.0000 59.901 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.6892 40.9079 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5981 5.0000 12.0000 299.1920 297.9690 300.5400 295.8690 300.000
+ 11 1.0000 0.0000 -0.2000 -6.9000 60.486 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.2536 41.1969 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5981 5.0000 11.9000 299.1900 297.9710 300.1940 295.8660 300.000
+ 12 1.0000 0.0000 -0.2000 -6.8000 60.213 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.8170 41.4856 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5981 5.0000 11.8000 299.1760 297.9670 299.8370 295.8460 300.000
+ 13 1.0000 0.0000 -0.2000 -6.7000 60.786 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.3796 41.7739 -2.7386 0.5000 0.0000 0.0000 156.7920 -46.4159 1.5981 5.0000 11.7000 299.1580 297.9600 299.6540 295.8370 300.000
+ 14 1.0000 0.0000 -0.2000 -6.6000 60.593 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.9415 42.0618 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5981 5.0000 11.6000 299.1570 297.9600 300.1920 295.7750 300.000
+ 15 1.0000 0.0000 -0.2000 -6.5000 60.228 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.5026 42.3495 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5981 5.0000 11.5000 299.1810 297.9660 300.6040 295.9270 300.000
+ 16 1.0000 0.0000 -0.2000 -6.4000 60.024 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.0631 42.6369 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 1.5981 5.0000 11.4000 299.1880 297.9710 300.4140 295.9890 300.000
+ 17 1.0000 0.0000 -0.2000 -6.3000 59.906 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.6230 42.9240 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.5981 5.0000 11.3000 299.1800 297.9720 300.0510 296.0250 300.000
+ 18 1.0000 0.0000 -0.2000 -6.2000 60.004 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1824 43.2110 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5981 5.0000 11.2000 299.1660 297.9680 299.7330 295.8720 300.000
+ 19 1.0000 0.0000 -0.2000 -6.1000 59.977 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.7413 43.4978 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5981 5.0000 11.1000 299.1530 297.9620 299.7310 295.7570 300.000
+ 20 1.0000 0.0000 -0.2000 -6.0000 60.085 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2998 43.7844 -2.7386 0.5000 0.0000 0.0000 156.0201 -47.9596 1.5981 5.0000 11.0000 299.1620 297.9640 300.4480 295.8820 300.000
+ 21 1.0000 0.0000 -0.2000 -5.8999 60.246 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8578 44.0708 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1931 1.5981 5.0000 10.8999 299.1860 297.9720 300.6310 295.8270 300.000
+ 22 1.0000 0.0000 -0.2000 -5.8000 60.122 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.4156 44.3572 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5981 5.0000 10.8000 299.1950 297.9780 300.3420 295.7680 300.000
+ 23 1.0000 0.0000 -0.2000 -5.7000 59.984 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.9731 44.6435 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5981 5.0000 10.7000 299.1840 297.9760 299.9770 295.8880 300.000
+ 24 1.0000 0.0000 -0.2000 -5.6000 60.201 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5304 44.9298 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5981 5.0000 10.6000 299.1620 297.9710 299.6710 295.8920 300.000
+ 25 1.0000 0.0000 -0.2000 -5.5000 60.020 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.0875 45.2161 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5981 5.0000 10.5000 299.1500 297.9650 299.8520 295.8450 300.000
+ 26 1.0000 0.0000 -0.2000 -5.4000 59.837 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6445 45.5024 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5981 5.0000 10.4000 299.1690 297.9690 300.5510 295.8960 300.000
+ 27 1.0000 0.0000 -0.2000 -5.3000 59.851 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.2014 45.7887 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6689 1.5981 5.0000 10.3000 299.1860 297.9770 300.5660 295.9090 300.000
+ 28 1.0000 0.0000 -0.2000 -5.2000 60.272 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7584 46.0751 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5981 5.0000 10.2000 299.1900 297.9800 300.2530 295.9080 300.000
+ 29 1.0000 0.0000 -0.2000 -5.1000 59.967 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.3154 46.3616 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5981 5.0000 10.1000 299.1780 297.9780 299.9050 295.9050 300.000
+ 30 1.0000 0.0000 -0.2000 -5.0000 60.463 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.8725 46.6482 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5981 5.0000 10.0000 299.1570 297.9700 299.6360 295.8990 300.000
+ 31 1.0000 0.0000 -0.2000 -4.9000 60.017 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4297 46.9350 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.5981 5.0000 9.9000 299.1500 297.9660 300.0540 295.9180 300.000
+ 32 1.0000 0.0000 -0.2000 -4.8000 59.716 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.9872 47.2220 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5981 5.0000 9.8000 299.1740 297.9750 300.6370 295.9530 300.000
+ 33 1.0000 0.0000 -0.2000 -4.7000 60.168 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.5449 47.5092 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5981 5.0000 9.7000 299.1910 297.9820 300.5380 295.8870 300.000
+ 34 1.0000 0.0000 -0.2000 -4.6000 60.087 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1029 47.7966 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5981 5.0000 9.6000 299.1920 297.9830 300.1680 295.9170 300.000
+ 35 1.0000 0.0000 -0.2000 -4.5000 59.792 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6613 48.0844 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5981 5.0000 9.5000 299.1770 297.9800 299.8250 295.8110 300.000
+ 36 1.0000 0.0000 -0.2000 -4.4000 59.726 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2202 48.3724 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5981 5.0000 9.4000 299.1590 297.9730 299.6450 295.7930 300.000
+ 37 1.0000 0.0000 -0.2000 -4.3000 59.859 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7794 48.6608 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5981 5.0000 9.3000 299.1590 297.9720 300.2290 295.8010 300.000
+ 38 1.0000 0.0000 -0.2000 -4.2000 60.066 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3392 48.9495 -2.7386 0.5000 0.0000 0.0000 153.6151 -52.7696 1.5981 5.0000 9.2000 299.1860 297.9800 300.6370 295.8460 300.000
+ 39 1.0000 0.0000 -0.2000 -4.1000 59.934 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8996 49.2386 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5981 5.0000 9.1000 299.1950 297.9850 300.4470 295.9500 300.000
+ 40 1.0000 0.0000 -0.2000 -4.0000 60.231 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4607 49.5282 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5981 5.0000 9.0000 299.1870 297.9860 300.0920 296.0030 300.000
+ 41 1.0000 0.0000 -0.2000 -3.9000 59.953 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0224 49.8182 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5981 5.0000 8.9000 299.1700 297.9810 299.7420 295.9180 300.000
+ 42 1.0000 0.0000 -0.2000 -3.8000 60.150 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5849 50.1088 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5981 5.0000 8.8000 299.1530 297.9740 299.7150 295.9630 300.000
+ 43 1.0000 0.0000 -0.2000 -3.7000 60.232 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1482 50.3998 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5981 5.0000 8.7000 299.1650 297.9760 300.3980 295.8840 300.000
+ 44 1.0000 0.0000 -0.2000 -3.6000 59.878 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7124 50.6914 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5981 5.0000 8.6000 299.1890 297.9830 300.6150 295.9270 300.000
+ 45 1.0000 0.0000 -0.2000 -3.5000 60.077 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2775 50.9836 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5981 5.0000 8.5000 299.1900 297.9880 300.3360 296.0040 300.000
+# Sum of Counts = 445
+# Center of Mass = -4.853707+/-0.328467
+# Full Width Half-Maximum = 1.891542+/-0.140751
+# 10:36:19 AM 10/25/2011 scan completed.
+
+10:36:19 AM 10/25/2011 Executing "scan h 1 k 0 l 0.1 e -7.0 -2.5 0.1 preset mcu 1.0"
+
+
+# scan = 69
+# date = 10/25/2011
+# time = 10:36:19 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.1 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.1 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.1000 -7.0000 60.260 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.8770 40.8095 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5954 5.0000 12.0000 299.1800 297.9890 299.9060 295.8400 300.000
+ 2 1.0000 0.0000 0.1000 -6.9000 59.683 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.4425 41.0987 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5954 5.0000 11.9000 299.1660 297.9810 299.6570 295.8410 300.000
+ 3 1.0000 0.0000 0.1000 -6.8000 59.712 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.0070 41.3875 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5954 5.0000 11.8000 299.1920 297.9920 300.1330 295.9170 300.000
+ 4 1.0000 0.0000 0.1000 -6.7000 60.561 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.5707 41.6759 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5954 5.0000 11.7000 299.1770 297.9900 299.7820 295.8580 300.000
+ 5 1.0000 0.0000 0.1000 -6.6000 60.014 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.1337 41.9640 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5954 5.0000 11.6000 299.1610 297.9850 299.6790 295.7180 300.000
+ 6 1.0000 0.0000 0.1000 -6.5000 59.858 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.6959 42.2518 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5954 5.0000 11.5000 299.1700 297.9830 300.3030 295.7110 300.000
+ 7 1.0000 0.0000 0.1000 -6.4000 60.200 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.2574 42.5393 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5954 5.0000 11.4000 299.1910 297.9920 300.6300 295.8200 300.000
+ 8 1.0000 0.0000 0.1000 -6.3000 59.561 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.8184 42.8266 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.5954 5.0000 11.3000 299.2000 297.9960 300.3930 295.8580 300.000
+ 9 1.0000 0.0000 0.1000 -6.2000 59.791 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.3788 43.1136 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5954 5.0000 11.2000 299.1690 297.9860 300.3350 295.7980 300.000
+ 10 1.0000 0.0000 0.1000 -6.1000 60.146 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.9387 43.4004 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 1.5954 5.0000 11.1000 299.1960 297.9960 300.6570 295.8460 300.000
+ 11 1.0000 0.0000 0.1000 -6.0000 60.203 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.4981 43.6871 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5954 5.0000 11.0000 299.2050 298.0000 300.4070 295.8560 300.000
+ 12 1.0000 0.0000 0.1000 -5.9000 60.233 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.0572 43.9736 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5954 5.0000 10.9000 299.1950 298.0000 300.0020 295.8710 300.000
+ 13 1.0000 0.0000 0.1000 -5.8000 59.881 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.6159 44.2601 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5954 5.0000 10.8000 299.1770 297.9940 299.6740 295.9160 300.000
+ 14 1.0000 0.0000 0.1000 -5.7000 59.902 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1744 44.5464 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5954 5.0000 10.7000 299.1580 297.9880 299.8550 295.9760 300.000
+ 15 1.0000 0.0000 0.1000 -5.6000 59.943 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.7326 44.8327 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5954 5.0000 10.6000 299.1800 297.9940 300.5160 295.8990 300.000
+ 16 1.0000 0.0000 0.1000 -5.5000 60.044 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.2907 45.1190 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5954 5.0000 10.5000 299.2030 298.0040 300.5510 295.8320 300.000
+ 17 1.0000 0.0000 0.1000 -5.4000 60.043 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.8486 45.4053 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5954 5.0000 10.4000 299.2040 298.0060 300.2340 295.9310 300.000
+ 18 1.0000 0.0000 0.1000 -5.3000 59.968 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.4065 45.6916 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5954 5.0000 10.3000 299.1850 298.0030 299.8800 296.0440 300.000
+ 19 1.0000 0.0000 0.1000 -5.2000 60.379 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9644 45.9780 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5954 5.0000 10.2000 299.1680 297.9980 299.6500 295.9210 300.000
+ 20 1.0000 0.0000 0.1000 -5.1000 59.800 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5222 46.2645 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5954 5.0000 10.1000 299.1660 297.9970 300.0700 295.8350 300.000
+ 21 1.0000 0.0000 0.1000 -5.0000 59.957 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.0802 46.5512 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5954 5.0000 10.0000 299.1890 298.0040 300.6260 295.8610 300.000
+ 22 1.0000 0.0000 0.1000 -4.9000 60.002 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6384 46.8379 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.5954 5.0000 9.9000 299.2050 298.0110 300.4930 295.9440 300.000
+ 23 1.0000 0.0000 0.1000 -4.8000 59.886 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1967 47.1248 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5954 5.0000 9.8000 299.2020 298.0120 300.1360 295.9240 300.000
+ 24 1.0000 0.0000 0.1000 -4.7000 60.196 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7553 47.4120 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5954 5.0000 9.7000 299.1890 298.0090 299.7780 295.9410 300.000
+ 25 1.0000 0.0000 0.1000 -4.6000 59.830 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.3142 47.6994 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5954 5.0000 9.6000 299.1680 298.0030 299.6650 295.9240 300.000
+ 26 1.0000 0.0000 0.1000 -4.5000 60.036 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8734 47.9870 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5954 5.0000 9.5000 299.1790 298.0060 300.3060 295.9500 300.000
+ 27 1.0000 0.0000 0.1000 -4.4000 60.000 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.4331 48.2750 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5954 5.0000 9.4000 299.2020 298.0130 300.6370 295.9370 300.000
+ 28 1.0000 0.0000 0.1000 -4.3000 59.953 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.9932 48.5633 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5954 5.0000 9.3000 299.2100 298.0190 300.4070 295.9910 300.000
+ 29 1.0000 0.0000 0.1000 -4.2000 60.165 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5539 48.8519 -2.7386 0.5000 0.0000 0.0000 153.6151 -52.7696 1.5954 5.0000 9.2000 299.2040 298.0180 300.0560 295.9880 300.000
+ 30 1.0000 0.0000 0.1000 -4.1000 59.879 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1152 49.1410 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5954 5.0000 9.1000 299.1890 298.0140 299.7110 295.9130 300.000
+ 31 1.0000 0.0000 0.1000 -4.0000 59.751 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6770 49.4304 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5954 5.0000 9.0000 299.1720 298.0080 299.7600 295.9320 300.000
+ 32 1.0000 0.0000 0.1000 -3.9000 59.896 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2396 49.7203 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5954 5.0000 8.9000 299.1860 298.0120 300.4980 296.0220 300.000
+ 33 1.0000 0.0000 0.1000 -3.8000 59.475 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8029 50.0107 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5954 5.0000 8.8000 299.2100 298.0220 300.6190 295.9110 300.000
+ 34 1.0000 0.0000 0.1000 -3.7000 59.722 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3670 50.3016 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5954 5.0000 8.7000 299.2200 298.0260 300.3290 295.9310 300.000
+ 35 1.0000 0.0000 0.1000 -3.6000 59.680 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.9320 50.5930 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5954 5.0000 8.6000 299.2090 298.0250 299.9640 295.9110 300.000
+ 36 1.0000 0.0000 0.1000 -3.5000 59.752 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.4978 50.8851 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5954 5.0000 8.5000 299.1930 298.0200 299.6550 295.8260 300.000
+ 37 1.0000 0.0000 0.1000 -3.4000 59.772 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0647 51.1777 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.5954 5.0000 8.4000 299.1800 298.0140 299.8950 295.9210 300.000
+ 38 1.0000 0.0000 0.1000 -3.3000 59.898 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.6326 51.4710 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.5954 5.0000 8.3000 299.1980 298.0210 300.5560 295.9390 300.000
+ 39 1.0000 0.0000 0.1000 -3.2000 60.159 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2016 51.7650 -2.7386 0.5000 0.0000 0.0000 151.9192 -56.1615 1.5954 5.0000 8.2000 299.2190 298.0300 300.5260 295.9440 300.000
+ 40 1.0000 0.0000 0.1000 -3.1000 59.628 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.7718 52.0597 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.5954 5.0000 8.1000 299.2230 298.0320 300.1960 295.9790 300.000
+ 41 1.0000 0.0000 0.1000 -3.0000 59.787 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.3432 52.3551 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.5954 5.0000 8.0000 299.2090 298.0290 299.8350 295.8690 300.000
+ 42 1.0000 0.0000 0.1000 -2.9000 59.700 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9160 52.6514 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.5954 5.0000 7.9000 299.1920 298.0240 299.6400 295.8510 300.000
+ 43 1.0000 0.0000 0.1000 -2.8000 59.927 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.4900 52.9484 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.5954 5.0000 7.8000 299.1900 298.0220 300.1690 295.8970 300.000
+ 44 1.0000 0.0000 0.1000 -2.7000 59.798 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0656 53.2464 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.5954 5.0000 7.7000 299.2110 298.0290 300.6380 296.0100 300.000
+ 45 1.0000 0.0000 0.1000 -2.6000 59.895 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6426 53.5452 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.5954 5.0000 7.6000 299.2210 298.0350 300.4430 296.0120 300.000
+ 46 1.0000 0.0000 0.1000 -2.5000 59.736 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2212 53.8450 -2.7386 0.5000 0.0000 0.0000 150.5151 -58.9696 1.5954 5.0000 7.5000 299.2200 298.0370 300.0860 295.9810 300.000
+# Sum of Counts = 436
+# Center of Mass = -4.174541+/-0.286959
+# Full Width Half-Maximum = 2.048556+/-0.129094
+# 11:30:34 AM 10/25/2011 scan completed.
+
+11:30:34 AM 10/25/2011 Executing "scan h 1 k 0 l 0.4 e -5.0 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 70
+# date = 10/25/2011
+# time = 11:30:34 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.4 e -5.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.4 e -5.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.4000 -5.0000 60.305 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.8890 47.0348 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6085 5.0000 10.0000 299.2020 298.0360 299.7000 295.9170 300.000
+ 2 1.0000 0.0000 0.4000 -4.9000 60.062 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.4428 47.3218 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.6085 5.0000 9.9000 299.1850 298.0290 299.7610 295.8740 300.000
+ 3 1.0000 0.0000 0.4000 -4.8000 59.814 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.9967 47.6090 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6085 5.0000 9.8000 299.2010 298.0310 300.4730 295.9830 300.000
+ 4 1.0000 0.0000 0.4000 -4.7000 60.012 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.5510 47.8964 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.6085 5.0000 9.7000 299.2220 298.0400 300.6120 295.9590 300.000
+ 5 1.0000 0.0000 0.4000 -4.6000 59.693 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1056 48.1841 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.6085 5.0000 9.6000 299.2330 298.0440 300.2990 295.9070 300.000
+ 6 1.0000 0.0000 0.4000 -4.5000 60.000 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.6606 48.4721 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6085 5.0000 9.5000 299.2210 298.0430 299.9500 296.0200 300.000
+ 7 1.0000 0.0000 0.4000 -4.4000 59.685 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.2161 48.7604 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6085 5.0000 9.4000 299.1970 298.0360 299.6620 296.0490 300.000
+ 8 1.0000 0.0000 0.4000 -4.3000 60.362 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7721 49.0492 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6085 5.0000 9.3000 299.1900 298.0310 299.9090 296.0300 300.000
+ 9 1.0000 0.0000 0.4000 -4.2000 59.763 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.3286 49.3383 -2.7386 0.5000 0.0000 0.0000 153.6150 -52.7696 1.6085 5.0000 9.2000 299.2160 298.0380 300.6020 295.9890 300.000
+ 10 1.0000 0.0000 0.4000 -4.1000 59.813 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8858 49.6279 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6085 5.0000 9.1000 299.2370 298.0460 300.5580 295.8820 300.000
+ 11 1.0000 0.0000 0.4000 -4.0000 59.949 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.4436 49.9179 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6085 5.0000 9.0000 299.2430 298.0510 300.2370 295.8450 300.000
+ 12 1.0000 0.0000 0.4000 -3.9000 60.274 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0021 50.2085 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6085 5.0000 8.9000 299.2290 298.0480 299.8720 295.8600 300.000
+ 13 1.0000 0.0000 0.4000 -3.8000 59.970 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5614 50.4995 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.6085 5.0000 8.8000 299.2090 298.0430 299.6340 295.8600 300.000
+ 14 1.0000 0.0000 0.4000 -3.7000 60.360 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1215 50.7912 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6085 5.0000 8.7000 299.2030 298.0410 300.1280 295.9690 300.000
+ 15 1.0000 0.0000 0.4000 -3.6000 59.968 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6826 51.0834 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6085 5.0000 8.6000 299.2280 298.0480 300.6410 295.9510 300.000
+ 16 1.0000 0.0000 0.4000 -3.5000 60.145 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2445 51.3763 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.6085 5.0000 8.5000 299.2450 298.0550 300.4920 295.9100 300.000
+ 17 1.0000 0.0000 0.4000 -3.4000 59.777 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8075 51.6698 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.6085 5.0000 8.4000 299.2410 298.0590 300.1290 295.9620 300.000
+ 18 1.0000 0.0000 0.4000 -3.3000 59.711 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.3716 51.9640 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.6085 5.0000 8.3000 299.2230 298.0550 299.7870 295.9660 300.000
+ 19 1.0000 0.0000 0.4000 -3.2000 59.845 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9368 52.2590 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.6085 5.0000 8.2000 299.2020 298.0480 299.6720 295.9910 300.000
+ 20 1.0000 0.0000 0.4000 -3.1000 60.026 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5032 52.5548 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.6085 5.0000 8.1000 299.2070 298.0490 300.2860 295.9360 300.000
+ 21 1.0000 0.0000 0.4000 -3.0000 60.121 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0708 52.8513 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9223 1.6085 5.0000 8.0000 299.2330 298.0570 300.5790 295.8790 300.000
+ 22 1.0000 0.0000 0.4000 -2.9000 60.353 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6397 53.1487 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.6085 5.0000 7.9000 299.2400 298.0630 300.3690 295.9380 300.000
+ 23 1.0000 0.0000 0.4000 -2.8000 59.936 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2101 53.4470 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6085 5.0000 7.8000 299.2320 298.0620 299.9820 295.9430 300.000
+ 24 1.0000 0.0000 0.4000 -2.7000 59.987 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7819 53.7462 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.6085 5.0000 7.7000 299.2170 298.0570 299.7010 295.8620 300.000
+ 25 1.0000 0.0000 0.4000 -2.6000 60.176 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3552 54.0464 -2.7386 0.5000 0.0000 0.0000 150.7287 -58.5424 1.6085 5.0000 7.6000 299.2040 298.0520 299.8300 295.8540 300.000
+ 26 1.0000 0.0000 0.4000 -2.5000 60.275 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.9301 54.3477 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6085 5.0000 7.5000 299.2190 298.0570 300.5210 295.9270 300.000
+ 27 1.0000 0.0000 0.4000 -2.4000 60.006 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5067 54.6499 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.6085 5.0000 7.4000 299.2360 298.0650 300.5740 296.0020 300.000
+ 28 1.0000 0.0000 0.4000 -2.3000 60.100 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0850 54.9533 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8531 1.6085 5.0000 7.3000 299.2400 298.0690 300.2710 295.9760 300.000
+ 29 1.0000 0.0000 0.4000 -2.2000 60.095 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6651 55.2578 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3102 1.6085 5.0000 7.2000 299.2290 298.0670 299.9020 296.0020 300.000
+ 30 1.0000 0.0000 0.4000 -2.1000 59.781 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.2471 55.5636 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.6085 5.0000 7.1000 299.2080 298.0610 299.6520 295.9670 300.000
+ 31 1.0000 0.0000 0.4000 -2.0000 60.176 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.8311 55.8705 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.6085 5.0000 7.0000 299.2020 298.0580 300.0130 295.9590 300.000
+ 32 1.0000 0.0000 0.4000 -1.9000 59.793 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.4171 56.1788 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.6085 5.0000 6.9000 299.2250 298.0650 300.5990 295.9600 300.000
+ 33 1.0000 0.0000 0.4000 -1.8000 60.156 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0053 56.4884 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.6085 5.0000 6.8000 299.2440 298.0720 300.5000 295.9160 300.000
+ 34 1.0000 0.0000 0.4000 -1.7000 59.969 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.5956 56.7993 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.6085 5.0000 6.7000 299.2430 298.0740 300.1430 295.9360 300.000
+ 35 1.0000 0.0000 0.4000 -1.6000 59.943 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.1884 57.1118 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.6085 5.0000 6.6000 299.2280 298.0720 299.8060 295.9860 300.000
+ 36 1.0000 0.0000 0.4000 -1.5000 59.747 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7834 57.4258 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6085 5.0000 6.5000 299.2080 298.0640 299.6570 295.9350 300.000
+ 37 1.0000 0.0000 0.4000 -1.4000 59.851 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3810 57.7413 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6085 5.0000 6.4000 299.2140 298.0640 300.2870 295.9130 300.000
+ 38 1.0000 0.0000 0.4000 -1.3000 59.957 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9812 58.0584 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6085 5.0000 6.3000 299.2370 298.0720 300.6540 295.9860 300.000
+ 39 1.0000 0.0000 0.4000 -1.2000 59.942 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5841 58.3773 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6085 5.0000 6.2000 299.2470 298.0790 300.4280 295.9970 300.000
+ 40 1.0000 0.0000 0.4000 -1.1000 60.076 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1897 58.6980 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1531 1.6085 5.0000 6.1000 299.2420 298.0810 300.0770 295.9770 300.000
+ 41 1.0000 0.0000 0.4000 -1.0000 60.088 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.7983 59.0204 -2.7386 0.5000 0.0000 0.0000 146.6132 -66.7735 1.6085 5.0000 6.0000 299.2250 298.0750 299.7360 295.9920 300.000
+# Sum of Counts = 425
+# Center of Mass = -2.748941+/-0.192906
+# Full Width Half-Maximum = 1.675799+/-0.102185
+# 12:13:30 PM 10/25/2011 scan completed.
+
+12:13:30 PM 10/25/2011 Executing "scan h 1 k 0 l 0.6 e -2.5 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 71
+# date = 10/25/2011
+# time = 12:13:30 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.6 e -2.5 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.6 e -2.5 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.6000 -2.5000 60.267 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.7166 55.0130 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6258 5.0000 7.5000 299.2070 298.0710 299.7770 295.9000 300.000
+ 2 1.0000 0.0000 0.6000 -2.4000 59.965 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2884 55.3172 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.6258 5.0000 7.4000 299.2200 298.0750 300.5120 295.9490 300.000
+ 3 1.0000 0.0000 0.6000 -2.3000 60.191 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8621 55.6227 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.6258 5.0000 7.3000 299.2450 298.0830 300.6200 295.8720 300.000
+ 4 1.0000 0.0000 0.6000 -2.2000 60.538 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4375 55.9294 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.6258 5.0000 7.2000 299.2530 298.0880 300.3050 295.9130 300.000
+ 5 1.0000 0.0000 0.6000 -2.1000 60.139 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.0149 56.2373 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.6258 5.0000 7.1000 299.2460 298.0880 299.9390 295.9010 300.000
+ 6 1.0000 0.0000 0.6000 -2.0000 60.328 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.5943 56.5466 -2.7386 0.5000 0.0000 0.0000 149.3716 -61.2567 1.6258 5.0000 7.0000 299.2260 298.0790 299.6650 295.8770 300.000
+ 7 1.0000 0.0000 0.6000 -1.9000 60.061 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.1757 56.8573 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.6258 5.0000 6.9000 299.2130 298.0750 299.9310 295.8810 300.000
+ 8 1.0000 0.0000 0.6000 -1.8000 59.713 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7593 57.1694 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.6258 5.0000 6.8000 299.2360 298.0800 300.5820 295.9120 300.000
+ 9 1.0000 0.0000 0.6000 -1.7000 60.279 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3451 57.4831 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.6258 5.0000 6.7000 299.2530 298.0880 300.5500 295.9770 300.000
+ 10 1.0000 0.0000 0.6000 -1.6000 60.058 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.9333 57.7983 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.6258 5.0000 6.6000 299.2540 298.0940 300.2030 295.9630 300.000
+ 11 1.0000 0.0000 0.6000 -1.5000 60.075 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5239 58.1151 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6258 5.0000 6.5000 299.2410 298.0920 299.8500 295.9290 300.000
+ 12 1.0000 0.0000 0.6000 -1.4000 60.012 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1170 58.4336 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 1.6258 5.0000 6.4000 299.2200 298.0830 299.6480 295.9070 300.000
+ 13 1.0000 0.0000 0.6000 -1.3000 59.905 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7126 58.7538 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6258 5.0000 6.3000 299.2170 298.0820 300.1580 295.9450 300.000
+ 14 1.0000 0.0000 0.6000 -1.2000 59.779 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3110 59.0759 -2.7386 0.5000 0.0000 0.0000 147.2250 -65.5497 1.6258 5.0000 6.2000 299.2400 298.0880 300.6220 295.9410 300.000
+ 15 1.0000 0.0000 0.6000 -1.1000 60.006 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9123 59.3998 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6258 5.0000 6.1000 299.2530 298.0950 300.4600 295.9350 300.000
+ 16 1.0000 0.0000 0.6000 -1.0000 60.174 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5164 59.7257 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6258 5.0000 6.0000 299.2500 298.0960 300.1050 295.9250 300.000
+# Sum of Counts = 419
+# Center of Mass = -1.759189+/-0.122618
+# Full Width Half-Maximum = 0.664203+/-0.067366
+# 12:30:23 PM 10/25/2011 scan completed.
+
+12:30:23 PM 10/25/2011 Executing "scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0"
+
+
+# scan = 72
+# date = 10/25/2011
+# time = 12:30:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.8000 -1.5000 60.150 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.5242 59.0716 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6498 5.0000 6.5000 299.2360 298.0930 299.7570 295.8850 300.000
+ 2 1.0000 0.0000 0.8000 -1.4500 60.003 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8174 59.2327 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.6498 5.0000 6.4500 299.2210 298.0880 299.7230 295.7770 300.000
+ 3 1.0000 0.0000 0.8000 -1.4000 60.149 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.1113 59.3942 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6498 5.0000 6.4000 299.2280 298.0870 300.3340 295.8270 300.000
+ 4 1.0000 0.0000 0.8000 -1.3500 59.731 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4058 59.5563 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.6498 5.0000 6.3500 299.2460 298.0950 300.6030 295.9040 300.000
+ 5 1.0000 0.0000 0.8000 -1.3000 60.311 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7010 59.7188 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6498 5.0000 6.3000 299.2550 298.0990 300.3630 295.8840 300.000
+ 6 1.0000 0.0000 0.8000 -1.2500 60.347 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9969 59.8818 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.6498 5.0000 6.2500 299.2470 298.0980 299.9990 295.9090 300.000
+ 7 1.0000 0.0000 0.8000 -1.2000 60.239 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2935 60.0454 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5498 1.6498 5.0000 6.2000 299.2280 298.0920 299.6930 295.8850 300.000
+ 8 1.0000 0.0000 0.8000 -1.1500 60.125 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5908 60.2094 -2.7386 0.5000 0.0000 0.0000 147.0752 -65.8493 1.6498 5.0000 6.1500 299.2140 298.0880 299.8180 295.9200 300.000
+ 9 1.0000 0.0000 0.8000 -1.1000 60.156 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8888 60.3740 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6498 5.0000 6.1000 299.2280 298.0920 300.5180 296.0070 300.000
+ 10 1.0000 0.0000 0.8000 -1.0500 59.824 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1875 60.5391 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.6498 5.0000 6.0500 299.2520 298.1030 300.5810 295.9130 300.000
+ 11 1.0000 0.0000 0.8000 -1.0000 60.061 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4870 60.7048 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6498 5.0000 6.0000 299.2600 298.1070 300.2730 295.8360 300.000
+ 12 1.0000 0.0000 0.8000 -0.9500 59.986 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.7872 60.8710 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.6498 5.0000 5.9500 299.2470 298.1050 299.9180 295.8340 300.000
+ 13 1.0000 0.0000 0.8000 -0.9000 60.408 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0883 61.0377 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6498 5.0000 5.9000 299.2240 298.0970 299.6580 295.9840 300.000
+ 14 1.0000 0.0000 0.8000 -0.8500 60.032 65.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.3901 61.2051 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.6498 5.0000 5.8500 299.2100 298.0940 299.9770 295.9980 300.000
+ 15 1.0000 0.0000 0.8000 -0.8000 59.932 92.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6927 61.3730 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.6498 5.0000 5.8000 299.2320 298.0990 300.5400 296.0060 300.000
+ 16 1.0000 0.0000 0.8000 -0.7500 59.963 117.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.9962 61.5416 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.6498 5.0000 5.7500 299.2440 298.1070 300.4950 296.0630 300.000
+ 17 1.0000 0.0000 0.8000 -0.7000 60.008 134.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3004 61.7107 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7468 1.6498 5.0000 5.7000 299.2470 298.1090 300.1550 295.9540 300.000
+ 18 1.0000 0.0000 0.8000 -0.6500 59.560 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6056 61.8804 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.6498 5.0000 5.6500 299.2380 298.1060 299.8060 295.8840 300.000
+ 19 1.0000 0.0000 0.8000 -0.6000 60.280 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9116 62.0509 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.6498 5.0000 5.6000 299.2200 298.0990 299.6690 295.8010 300.000
+ 20 1.0000 0.0000 0.8000 -0.5500 59.775 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2184 62.2219 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.6498 5.0000 5.5500 299.2180 298.0970 300.2570 295.9720 300.000
+ 21 1.0000 0.0000 0.8000 -0.5000 60.048 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5262 62.3936 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6498 5.0000 5.5000 299.2380 298.1050 300.5940 295.9890 300.000
+ 22 1.0000 0.0000 0.8000 -0.4500 59.888 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8349 62.5660 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.6498 5.0000 5.4500 299.2460 298.1090 300.3970 296.0650 300.000
+ 23 1.0000 0.0000 0.8000 -0.4000 60.136 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1446 62.7391 -2.7386 0.5000 0.0000 0.0000 144.5456 -70.9087 1.6498 5.0000 5.4000 299.2410 298.1100 300.0280 296.0200 300.000
+ 24 1.0000 0.0000 0.8000 -0.3500 59.417 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4552 62.9129 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.6498 5.0000 5.3500 299.2230 298.1050 299.7200 296.0380 300.000
+ 25 1.0000 0.0000 0.8000 -0.3000 59.663 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.7667 63.0874 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.6498 5.0000 5.3000 299.2050 298.0990 299.7500 296.0260 300.000
+# Sum of Counts = 1128
+# Center of Mass = -0.902261+/-0.038889
+# Full Width Half-Maximum = 0.557864+/-0.021177
+# 12:56:28 PM 10/25/2011 scan completed.
+
+12:56:29 PM 10/25/2011 Executing "scantitle "Dispersion G-L longitudinal (101) zone""
+
+Setting the scantitle to:
+Dispersion G-L longitudinal (101) zone
+
+
+12:56:29 PM 10/25/2011 Executing "scan h 1.1 k 0 l 1.1 e -1.5 -0.3 0.05 preset mcu 1.0"
+
+
+# scan = 73
+# date = 10/25/2011
+# time = 12:56:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 1.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h 1.1 k 0 l 1.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 1.1000 -1.5000 59.622 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0464 67.1746 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8481 5.0000 6.5000 299.2280 298.1010 300.4930 295.8900 300.000
+ 2 1.1000 0.0000 1.1000 -1.4500 59.910 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3193 67.3548 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8481 5.0000 6.4500 299.2480 298.1090 300.5720 295.9010 300.000
+ 3 1.1000 0.0000 1.1000 -1.4000 59.765 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5930 67.5359 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8481 5.0000 6.4000 299.2530 298.1160 300.2690 295.8550 300.000
+ 4 1.1000 0.0000 1.1000 -1.3500 59.945 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8674 67.7178 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.8481 5.0000 6.3500 299.2430 298.1130 299.9110 295.8680 300.000
+ 5 1.1000 0.0000 1.1000 -1.3000 60.009 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1424 67.9005 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8481 5.0000 6.3000 299.2220 298.1050 299.6600 295.8350 300.000
+ 6 1.1000 0.0000 1.1000 -1.2500 60.039 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4182 68.0840 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.8481 5.0000 6.2500 299.2180 298.1030 299.9660 295.7590 300.000
+ 7 1.1000 0.0000 1.1000 -1.2000 60.156 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6948 68.2685 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8481 5.0000 6.2000 299.2390 298.1100 300.5610 295.8650 300.000
+ 8 1.1000 0.0000 1.1000 -1.1500 60.343 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9722 68.4538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8481 5.0000 6.1500 299.2500 298.1160 300.5130 295.9810 300.000
+ 9 1.1000 0.0000 1.1000 -1.1000 59.774 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2503 68.6400 -2.7386 0.5000 0.0000 0.0000 146.9233 -66.1530 1.8481 5.0000 6.1000 299.2480 298.1180 300.1760 295.9000 300.000
+ 10 1.1000 0.0000 1.1000 -1.0500 59.885 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5292 68.8271 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8481 5.0000 6.0500 299.2400 298.1150 299.8330 295.8220 300.000
+ 11 1.1000 0.0000 1.1000 -1.0000 59.758 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.8088 69.0152 -2.7386 0.5000 0.0000 0.0000 146.6131 -66.7735 1.8481 5.0000 6.0000 299.2160 298.1070 299.6740 295.9470 300.000
+ 12 1.1000 0.0000 1.1000 -0.9500 59.865 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0894 69.2042 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8481 5.0000 5.9500 299.2110 298.1060 300.1600 295.9620 300.000
+ 13 1.1000 0.0000 1.1000 -0.9000 59.869 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3707 69.3942 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8481 5.0000 5.9000 299.2340 298.1120 300.5970 296.0140 300.000
+ 14 1.1000 0.0000 1.1000 -0.8500 59.640 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6528 69.5851 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.8481 5.0000 5.8500 299.2460 298.1190 300.4400 295.9950 300.000
+ 15 1.1000 0.0000 1.1000 -0.8000 59.582 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9359 69.7771 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8481 5.0000 5.8000 299.2430 298.1200 300.0870 295.9750 300.000
+ 16 1.1000 0.0000 1.1000 -0.7500 59.626 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2198 69.9701 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.8481 5.0000 5.7500 299.2270 298.1170 299.7480 295.9320 300.000
+ 17 1.1000 0.0000 1.1000 -0.7000 59.771 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5046 70.1642 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8481 5.0000 5.7000 299.2090 298.1100 299.7000 295.9280 300.000
+ 18 1.1000 0.0000 1.1000 -0.6500 59.843 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7903 70.3593 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.8481 5.0000 5.6500 299.2150 298.1110 300.3580 295.9710 300.000
+ 19 1.1000 0.0000 1.1000 -0.6000 59.996 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.0769 70.5555 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.8481 5.0000 5.6000 299.2380 298.1190 300.6040 295.9810 300.000
+ 20 1.1000 0.0000 1.1000 -0.5500 60.028 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3644 70.7528 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.8481 5.0000 5.5500 299.2460 298.1260 300.3650 296.0300 300.000
+ 21 1.1000 0.0000 1.1000 -0.5000 60.326 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.6529 70.9513 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.8481 5.0000 5.5000 299.2390 298.1260 299.9990 296.0250 300.000
+ 22 1.1000 0.0000 1.1000 -0.4500 60.022 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9424 71.1509 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.8481 5.0000 5.4500 299.2210 298.1200 299.7020 295.8940 300.000
+ 23 1.1000 0.0000 1.1000 -0.4000 59.769 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.2328 71.3517 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.8481 5.0000 5.4000 299.2050 298.1130 299.7890 295.9480 300.000
+ 24 1.1000 0.0000 1.1000 -0.3500 59.481 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5242 71.5538 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.8481 5.0000 5.3500 299.2190 298.1180 300.4750 295.9990 300.000
+ 25 1.1000 0.0000 1.1000 -0.3000 59.973 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.8167 71.7570 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 1.8481 5.0000 5.3000 299.2360 298.1240 300.5970 296.0960 300.000
+# Sum of Counts = 349
+# Center of Mass = -1.165186+/-0.089629
+# Full Width Half-Maximum = 0.594430+/-0.050378
+# 1:22:35 PM 10/25/2011 scan completed.
+
+1:22:35 PM 10/25/2011 Executing "scan h 1.2 k 0 l 1.2 e -2.5 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 74
+# date = 10/25/2011
+# time = 1:22:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.2 k 0 l 1.2 e -2.5 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.2 k 0 l 1.2 e -2.5 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.2000 0.0000 1.2000 -2.5000 59.639 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2408 70.5520 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0161 5.0000 7.5000 299.2450 298.1320 300.2150 295.9630 300.000
+ 2 1.2000 0.0000 1.2000 -2.4000 59.814 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7380 70.9148 -2.7386 0.5000 0.0000 0.0000 150.2967 -59.4063 2.0161 5.0000 7.4000 299.2350 298.1260 299.8660 295.8300 300.000
+ 3 1.2000 0.0000 1.2000 -2.3000 60.072 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2375 71.2808 -2.7386 0.5000 0.0000 0.0000 150.0734 -59.8530 2.0161 5.0000 7.3000 299.2160 298.1180 299.6570 295.9040 300.000
+ 4 1.2000 0.0000 1.2000 -2.2000 59.897 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.7394 71.6502 -2.7386 0.5000 0.0000 0.0000 149.8449 -60.3101 2.0161 5.0000 7.2000 299.2090 298.1150 300.0890 295.8570 300.000
+ 5 1.2000 0.0000 1.2000 -2.1000 60.089 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.2436 72.0230 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0161 5.0000 7.1000 299.2350 298.1220 300.5980 295.8820 300.000
+ 6 1.2000 0.0000 1.2000 -2.0000 59.695 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.7504 72.3994 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0161 5.0000 7.0000 299.2430 298.1290 300.4650 295.9920 300.000
+ 7 1.2000 0.0000 1.2000 -1.9000 60.150 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2597 72.7794 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0161 5.0000 6.9000 299.2420 298.1320 300.1140 295.9450 300.000
+ 8 1.2000 0.0000 1.2000 -1.8000 59.974 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7717 73.1633 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0161 5.0000 6.8000 299.2280 298.1280 299.7780 295.8880 300.000
+ 9 1.2000 0.0000 1.2000 -1.7000 59.696 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2864 73.5512 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.0161 5.0000 6.7000 299.2100 298.1220 299.6960 295.8820 300.000
+ 10 1.2000 0.0000 1.2000 -1.6000 60.003 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8039 73.9430 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.0161 5.0000 6.6000 299.2120 298.1220 300.2890 295.9460 300.000
+ 11 1.2000 0.0000 1.2000 -1.5000 59.756 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.3243 74.3392 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0161 5.0000 6.5000 299.2330 298.1290 300.6090 296.0810 300.000
+ 12 1.2000 0.0000 1.2000 -1.4000 59.429 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8477 74.7398 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.0161 5.0000 6.4000 299.2390 298.1330 300.3700 296.1200 300.000
+ 13 1.2000 0.0000 1.2000 -1.3000 59.426 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3742 75.1449 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0161 5.0000 6.3000 299.2360 298.1330 300.0250 295.9860 300.000
+ 14 1.2000 0.0000 1.2000 -1.2000 59.674 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9039 75.5548 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0161 5.0000 6.2000 299.2210 298.1280 299.7090 296.0150 300.000
+ 15 1.2000 0.0000 1.2000 -1.1000 59.941 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.4369 75.9696 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.0161 5.0000 6.1000 299.2010 298.1200 299.7920 296.0560 300.000
+ 16 1.2000 0.0000 1.2000 -1.0000 59.690 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.9733 76.3895 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0161 5.0000 6.0000 299.2170 298.1240 300.4790 296.0220 300.000
+# Sum of Counts = 76
+# Center of Mass = -1.818421+/-0.299256
+# Full Width Half-Maximum = 0.878222+/-0.185767
+# 1:39:28 PM 10/25/2011 scan completed.
+
+1:39:28 PM 10/25/2011 Executing "scan h 1.3 k 0 l 1.3 e -5.0 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 75
+# date = 10/25/2011
+# time = 1:39:28 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 1.3 e -5.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.3 k 0 l 1.3 e -5.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 1.3000 -5.0000 60.128 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4197 68.7936 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.1841 5.0000 10.0000 299.2440 298.1330 300.5380 295.9490 300.000
+ 2 1.3000 0.0000 1.3000 -4.9000 59.952 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8549 69.1180 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.1841 5.0000 9.9000 299.2410 298.1360 300.2050 296.0080 300.000
+ 3 1.3000 0.0000 1.3000 -4.8000 59.777 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2914 69.4444 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.1841 5.0000 9.8000 299.2290 298.1340 299.8650 296.0290 300.000
+ 4 1.3000 0.0000 1.3000 -4.7000 59.870 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.7291 69.7730 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.1841 5.0000 9.7000 299.2120 298.1270 299.6460 295.9410 300.000
+ 5 1.3000 0.0000 1.3000 -4.6000 60.022 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.1682 70.1036 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5758 2.1841 5.0000 9.6000 299.2090 298.1250 300.0940 295.9990 300.000
+ 6 1.3000 0.0000 1.3000 -4.5000 60.065 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.6086 70.4364 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.1841 5.0000 9.5000 299.2310 298.1330 300.5920 296.0520 300.000
+ 7 1.3000 0.0000 1.3000 -4.4000 60.138 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.0505 70.7716 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.1841 5.0000 9.4000 299.2430 298.1400 300.4550 296.0950 300.000
+ 8 1.3000 0.0000 1.3000 -4.3000 59.667 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4938 71.1090 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.1841 5.0000 9.3000 299.2400 298.1390 300.1120 296.0260 300.000
+ 9 1.3000 0.0000 1.3000 -4.2000 59.633 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9385 71.4488 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.1841 5.0000 9.2000 299.2250 298.1340 299.8090 295.9980 300.000
+ 10 1.3000 0.0000 1.3000 -4.1000 59.557 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3848 71.7911 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.1841 5.0000 9.1000 299.2060 298.1280 299.6710 295.9740 300.000
+ 11 1.3000 0.0000 1.3000 -4.0000 59.304 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8327 72.1359 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 2.1841 5.0000 9.0000 299.2060 298.1280 300.2230 295.9990 300.000
+ 12 1.3000 0.0000 1.3000 -3.9000 59.434 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2822 72.4833 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.1841 5.0000 8.9000 299.2270 298.1370 300.6050 296.0680 300.000
+ 13 1.3000 0.0000 1.3000 -3.8000 59.859 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7334 72.8334 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 2.1841 5.0000 8.8000 299.2410 298.1420 300.4170 295.9990 300.000
+ 14 1.3000 0.0000 1.3000 -3.7000 59.644 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1863 73.1862 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.1841 5.0000 8.7000 299.2400 298.1420 300.0690 295.9250 300.000
+ 15 1.3000 0.0000 1.3000 -3.6000 59.462 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6410 73.5420 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.1841 5.0000 8.6000 299.2220 298.1370 299.7400 295.9920 300.000
+ 16 1.3000 0.0000 1.3000 -3.5000 60.338 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0974 73.9006 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.1841 5.0000 8.5000 299.2040 298.1310 299.7180 295.9480 300.000
+ 17 1.3000 0.0000 1.3000 -3.4000 59.721 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5557 74.2622 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.1841 5.0000 8.4000 299.2140 298.1310 300.3840 295.9740 300.000
+ 18 1.3000 0.0000 1.3000 -3.3000 59.859 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0160 74.6269 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.1841 5.0000 8.3000 299.2360 298.1400 300.5880 295.9360 300.000
+ 19 1.3000 0.0000 1.3000 -3.2000 59.713 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4782 74.9948 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1616 2.1841 5.0000 8.2000 299.2430 298.1440 300.3250 295.9060 300.000
+ 20 1.3000 0.0000 1.3000 -3.1000 59.544 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.9424 75.3660 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.1841 5.0000 8.1000 299.2390 298.1440 299.9770 295.9410 300.000
+ 21 1.3000 0.0000 1.3000 -3.0000 59.632 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4087 75.7406 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.1841 5.0000 8.0000 299.2180 298.1370 299.6860 295.9360 300.000
+ 22 1.3000 0.0000 1.3000 -2.9000 59.813 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.8771 76.1188 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.1841 5.0000 7.9000 299.2030 298.1320 299.8600 295.9630 300.000
+ 23 1.3000 0.0000 1.3000 -2.8000 59.629 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.3478 76.5005 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.1841 5.0000 7.8000 299.2200 298.1360 300.5070 296.0010 300.000
+ 24 1.3000 0.0000 1.3000 -2.7000 59.873 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.8207 76.8860 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.1841 5.0000 7.7000 299.2370 298.1430 300.5430 296.0640 300.000
+ 25 1.3000 0.0000 1.3000 -2.6000 59.442 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2959 77.2754 -2.7386 0.5000 0.0000 0.0000 150.7287 -58.5424 2.1841 5.0000 7.6000 299.2390 298.1470 300.2380 296.0920 300.000
+ 26 1.3000 0.0000 1.3000 -2.5000 59.827 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7736 77.6687 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9696 2.1841 5.0000 7.5000 299.2290 298.1440 299.8790 296.0200 300.000
+ 27 1.3000 0.0000 1.3000 -2.4000 59.823 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2536 78.0661 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.1841 5.0000 7.4000 299.2110 298.1370 299.6570 295.9960 300.000
+ 28 1.3000 0.0000 1.3000 -2.3000 59.895 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7363 78.4678 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.1841 5.0000 7.3000 299.2010 298.1350 300.0330 296.0360 300.000
+ 29 1.3000 0.0000 1.3000 -2.2000 59.492 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.2216 78.8739 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.1841 5.0000 7.2000 299.2220 298.1410 300.6050 296.1200 300.000
+ 30 1.3000 0.0000 1.3000 -2.1000 59.620 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.7096 79.2846 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7779 2.1841 5.0000 7.1000 299.2380 298.1490 300.4930 296.0980 300.000
+ 31 1.3000 0.0000 1.3000 -2.0000 59.341 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.2003 79.7000 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1841 5.0000 7.0000 299.2370 298.1510 300.1540 296.0840 300.000
+ 32 1.3000 0.0000 1.3000 -1.9000 59.538 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.6939 80.1202 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.1841 5.0000 6.9000 299.2230 298.1480 299.8410 296.1350 300.000
+ 33 1.3000 0.0000 1.3000 -1.8000 59.646 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1905 80.5456 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.1841 5.0000 6.8000 299.2050 298.1410 299.6540 296.0140 300.000
+ 34 1.3000 0.0000 1.3000 -1.7000 59.619 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6901 80.9762 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.1841 5.0000 6.7000 299.2100 298.1400 300.2060 295.9340 300.000
+ 35 1.3000 0.0000 1.3000 -1.6000 60.151 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.1928 81.4122 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.1841 5.0000 6.6000 299.2310 298.1480 300.6200 296.0200 300.000
+ 36 1.3000 0.0000 1.3000 -1.5000 59.654 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.6988 81.8538 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.1841 5.0000 6.5000 299.2420 298.1540 300.4420 296.0490 300.000
+ 37 1.3000 0.0000 1.3000 -1.4000 59.475 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2082 82.3013 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.1841 5.0000 6.4000 299.2360 298.1530 300.1010 296.1280 300.000
+ 38 1.3000 0.0000 1.3000 -1.3000 59.681 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7210 82.7549 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.1841 5.0000 6.3000 299.2210 298.1480 299.7600 296.0610 300.000
+ 39 1.3000 0.0000 1.3000 -1.2000 59.733 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2373 83.2149 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.1841 5.0000 6.2000 299.2030 298.1420 299.6960 296.0750 300.000
+ 40 1.3000 0.0000 1.3000 -1.1000 59.464 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.7573 83.6814 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.1841 5.0000 6.1000 299.2080 298.1430 300.3270 296.0740 300.000
+ 41 1.3000 0.0000 1.3000 -1.0000 59.460 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.2811 84.1548 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7736 2.1841 5.0000 6.0000 299.2320 298.1500 300.6020 296.0640 300.000
+# Sum of Counts = 263
+# Center of Mass = -3.741825+/-0.335217
+# Full Width Half-Maximum = 2.490743+/-0.194328
+# 2:22:19 PM 10/25/2011 scan completed.
+
+2:22:19 PM 10/25/2011 Executing "scan h 1.4 k 0 l 1.4 e -7.0 -2.5 0.1 preset mcu 1.0"
+
+
+# scan = 76
+# date = 10/25/2011
+# time = 2:22:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.4 k 0 l 1.4 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.4 k 0 l 1.4 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.4000 0.0000 1.4000 -7.0000 59.459 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.2365 69.0608 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3521 5.0000 12.0000 299.2480 298.1610 300.2690 295.8970 300.000
+ 2 1.4000 0.0000 1.4000 -6.9000 59.391 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.6329 69.3662 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3521 5.0000 11.9000 299.2380 298.1580 299.9180 295.8240 300.000
+ 3 1.4000 0.0000 1.4000 -6.8000 59.560 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.0302 69.6732 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3521 5.0000 11.8000 299.2200 298.1490 299.6710 295.8230 300.000
+ 4 1.4000 0.0000 1.4000 -6.7000 59.836 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.4284 69.9818 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3521 5.0000 11.7000 299.2070 298.1480 299.9350 295.8800 300.000
+ 5 1.4000 0.0000 1.4000 -6.6000 59.583 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8275 70.2921 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3521 5.0000 11.6000 299.2630 298.1600 300.4650 295.3620 300.000
+ 6 1.4000 0.0000 1.4000 -6.5000 59.385 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.2276 70.6041 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3521 5.0000 11.5000 299.2430 298.1580 300.5530 295.9900 300.000
+ 7 1.4000 0.0000 1.4000 -6.4000 59.512 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.6286 70.9178 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.3521 5.0000 11.4000 299.2470 298.1630 300.2170 295.8480 300.000
+ 8 1.4000 0.0000 1.4000 -6.3000 59.742 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.0306 71.2332 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 2.3521 5.0000 11.3000 299.2310 298.1580 299.8860 295.9870 300.000
+ 9 1.4000 0.0000 1.4000 -6.2000 59.997 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4336 71.5506 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3521 5.0000 11.2000 299.2080 298.1520 299.6570 295.9550 300.000
+ 10 1.4000 0.0000 1.4000 -6.1000 59.649 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8377 71.8697 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3521 5.0000 11.1000 299.2090 298.1520 300.0340 295.9770 300.000
+ 11 1.4000 0.0000 1.4000 -6.0000 59.573 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2429 72.1908 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3521 5.0000 11.0000 299.2240 298.1570 300.5800 296.0800 300.000
+ 12 1.4000 0.0000 1.4000 -5.9000 59.544 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6492 72.5139 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3521 5.0000 10.9000 299.2360 298.1620 300.4760 296.0740 300.000
+ 13 1.4000 0.0000 1.4000 -5.8000 58.790 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0566 72.8390 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3521 5.0000 10.8000 299.2360 298.1670 300.2840 295.9800 300.000
+ 14 1.4000 0.0000 1.4000 -5.7000 59.465 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4652 73.1661 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3521 5.0000 10.7000 299.2260 298.1650 299.9620 296.0510 300.000
+ 15 1.4000 0.0000 1.4000 -5.6000 59.721 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.8750 73.4954 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3521 5.0000 10.6000 299.2080 298.1580 299.6860 296.0300 300.000
+ 16 1.4000 0.0000 1.4000 -5.5000 59.749 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.2861 73.8268 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3521 5.0000 10.5000 299.1950 298.1550 299.8650 296.0000 300.000
+ 17 1.4000 0.0000 1.4000 -5.4000 59.538 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6984 74.1604 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3521 5.0000 10.4000 299.2090 298.1590 300.5130 296.0510 300.000
+ 18 1.4000 0.0000 1.4000 -5.3000 59.651 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.1120 74.4964 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3521 5.0000 10.3000 299.2240 298.1660 300.5370 296.1030 300.000
+ 19 1.4000 0.0000 1.4000 -5.2000 59.381 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.5270 74.8347 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3521 5.0000 10.2000 299.2280 298.1700 300.2430 296.1050 300.000
+ 20 1.4000 0.0000 1.4000 -5.1000 59.465 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.9433 75.1754 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.3521 5.0000 10.1000 299.2230 298.1680 299.9170 296.0820 300.000
+ 21 1.4000 0.0000 1.4000 -5.0000 59.350 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3610 75.5186 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 2.3521 5.0000 10.0000 299.2070 298.1620 299.7130 296.0670 300.000
+ 22 1.4000 0.0000 1.4000 -4.9000 59.470 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7802 75.8644 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3521 5.0000 9.9000 299.1950 298.1590 299.9690 296.0070 300.000
+ 23 1.4000 0.0000 1.4000 -4.8000 59.517 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2008 76.2127 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3521 5.0000 9.8000 299.2100 298.1640 300.4400 296.0820 300.000
+ 24 1.4000 0.0000 1.4000 -4.7000 59.658 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6230 76.5637 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3521 5.0000 9.7000 299.2230 298.1680 300.4020 296.1000 300.000
+ 25 1.4000 0.0000 1.4000 -4.6000 59.521 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0467 76.9175 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3521 5.0000 9.6000 299.2250 298.1720 300.0870 296.0300 300.000
+ 26 1.4000 0.0000 1.4000 -4.5000 59.425 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4720 77.2740 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3521 5.0000 9.5000 299.2140 298.1670 299.7590 295.9250 300.000
+ 27 1.4000 0.0000 1.4000 -4.4000 5.211 1.000 8033.000 0.088 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8990 77.6336 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3521 5.0000 9.4000 299.1950 298.1600 299.7040 295.9610 300.000
+# Sum of Counts = 331
+# Center of Mass = -5.894562+/-0.459137
+# Full Width Half-Maximum = 1.068473+/-0.166411
+# 2:55:14 PM 10/25/2011 scan stopped!!
+
+Abort issued!!
+
+2:56:23 PM 10/25/2011 Executing "scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0"
+
+
+# scan = 77
+# date = 10/25/2011
+# time = 2:56:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.5000 59.946 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 299.2050 298.1630 300.5170 296.1500 300.000
+ 2 1.5000 0.0000 1.5000 -8.4000 59.311 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1527 71.3308 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 2.5201 5.0000 13.4000 299.2770 298.1810 300.4160 295.2350 300.000
+ 3 1.5000 0.0000 1.5000 -8.3000 59.345 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5225 71.6287 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.5201 5.0000 13.3000 299.2340 298.1750 300.2500 295.9140 300.000
+ 4 1.5000 0.0000 1.5000 -8.2000 59.758 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 299.2220 298.1720 299.9010 295.9290 300.000
+ 5 1.5000 0.0000 1.5000 -8.1000 59.790 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2643 72.2290 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 2.5201 5.0000 13.1000 299.2010 298.1660 299.6650 295.9670 300.000
+ 6 1.5000 0.0000 1.5000 -8.0000 59.669 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 299.2010 298.1670 299.8600 295.6070 300.000
+ 7 1.5000 0.0000 1.5000 -7.9000 59.512 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0094 72.8353 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5201 5.0000 12.9000 299.2200 298.1720 300.9980 296.0190 300.000
+ 8 1.5000 0.0000 1.5000 -7.8000 59.647 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 299.2700 298.1900 301.3240 295.9860 300.000
+ 9 1.5000 0.0000 1.5000 -7.7000 59.399 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7577 73.4480 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5201 5.0000 12.7000 299.2950 298.2040 301.0000 296.0620 300.000
+ 10 1.5000 0.0000 1.5000 -7.6000 59.693 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 299.2990 298.2100 300.5400 296.0210 300.000
+ 11 1.5000 0.0000 1.5000 -7.4999 59.268 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5096 74.0674 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8224 2.5201 5.0000 12.4999 299.2940 298.2090 300.1460 296.0430 300.000
+ 12 1.5000 0.0000 1.5000 -7.4000 59.291 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 299.2760 298.2030 299.7930 295.9970 300.000
+ 13 1.5000 0.0000 1.5000 -7.3000 59.487 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2652 74.6938 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5201 5.0000 12.3000 299.2530 298.1950 299.6770 296.0400 300.000
+ 14 1.5000 0.0000 1.5000 -7.2000 59.133 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 299.2580 298.1940 300.2070 296.0020 300.000
+ 15 1.5000 0.0000 1.5000 -7.1000 59.638 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0246 75.3275 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5201 5.0000 12.1000 299.2710 298.1990 300.5600 296.1240 300.000
+ 16 1.5000 0.0000 1.5000 -7.0000 59.595 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 299.2790 298.2050 300.3730 296.1190 300.000
+ 17 1.5000 0.0000 1.5000 -6.9000 59.292 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7882 75.9689 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5201 5.0000 11.9000 299.2750 298.2030 300.0660 296.1450 300.000
+ 18 1.5000 0.0000 1.5000 -6.8000 59.339 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 299.2550 298.1960 299.7370 296.0350 300.000
+ 19 1.5000 0.0000 1.5000 -6.7000 59.874 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5560 76.6182 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 2.5201 5.0000 11.7000 299.2390 298.1890 299.7500 296.0760 300.000
+ 20 1.5000 0.0000 1.5000 -6.6000 59.835 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 299.2440 298.1910 300.3050 296.0560 300.000
+ 21 1.5000 0.0000 1.5000 -6.5000 59.434 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3283 77.2760 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5201 5.0000 11.5000 299.2610 298.1990 300.5240 296.1020 300.000
+ 22 1.5000 0.0000 1.5000 -6.4000 59.876 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 299.2650 298.2000 300.2970 296.1020 300.000
+ 23 1.5000 0.0000 1.5000 -6.3000 59.857 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1053 77.9426 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5201 5.0000 11.3000 299.2580 298.1990 299.9590 296.0130 300.000
+ 24 1.5000 0.0000 1.5000 -6.2000 59.548 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 299.2420 298.1930 299.7160 296.0610 300.000
+ 25 1.5000 0.0000 1.5000 -6.1000 59.611 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8872 78.6184 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5201 5.0000 11.1000 299.2270 298.1870 299.8190 295.9980 300.000
+ 26 1.5000 0.0000 1.5000 -6.0000 59.178 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 299.2420 298.1920 300.4670 295.9750 300.000
+ 27 1.5000 0.0000 1.5000 -5.9000 59.397 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6744 79.3040 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5201 5.0000 10.9000 299.2600 298.1990 300.5600 295.9740 300.000
+ 28 1.5000 0.0000 1.5000 -5.8000 59.490 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 299.2640 298.2020 300.2970 296.0080 300.000
+ 29 1.5000 0.0000 1.5000 -5.7000 59.671 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4670 79.9997 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5201 5.0000 10.7000 299.2540 298.2010 299.9510 295.9950 300.000
+ 30 1.5000 0.0000 1.5000 -5.6000 59.574 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 299.2350 298.1950 299.6950 296.0040 300.000
+ 31 1.5000 0.0000 1.5000 -5.5000 59.509 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2653 80.7062 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5201 5.0000 10.5000 299.2210 298.1900 299.8550 295.9960 300.000
+# Sum of Counts = 633
+# Center of Mass = -6.927802+/-0.390286
+# Full Width Half-Maximum = 1.313844+/-0.127952
+# 3:28:28 PM 10/25/2011 scan completed.
+
+3:28:28 PM 10/25/2011 Executing "scantitle "Dispersion G-L transverse (-102) zone""
+
+Setting the scantitle to:
+Dispersion G-L transverse (-102) zone
+
+
+3:28:29 PM 10/25/2011 Executing "scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0"
+
+
+# scan = 78
+# date = 10/25/2011
+# time = 3:28:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1695 0.0000 2.1055 -3.2993 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1950 74.1394 -2.7386 0.5000 0.0000 0.0000 150.1396 -55.7950 2.1723 5.0000 8.2993 299.2340 298.1970 300.5240 296.0970 300.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 3:28:37 PM 10/25/2011 scan stopped!!
+
+Abort issued!!
+
+3:28:37 PM 10/25/2011 Executing "scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0"
+
+
+# scan = 79
+# date = 10/25/2011
+# time = 3:28:37 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1536 0.0000 2.1959 -3.9588 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.8591 71.9399 -2.7386 0.5000 0.0000 0.0000 151.9268 -53.5310 2.1757 5.0000 8.9588 299.2370 298.2000 300.5430 296.0920 300.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 3:28:41 PM 10/25/2011 scan stopped!!
+
+Abort issued!!
+
+3:31:44 PM 10/25/2011 Executing "drive h 1 k 0 l 1 e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.47278
+s1 106.82826
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:33:51 PM 10/25/2011 Executing "scantitle "Looking for TO mode at Gamma (1,0,1)""
+
+Setting the scantitle to:
+Looking for TO mode at Gamma (1,0,1)
+
+
+3:33:54 PM 10/25/2011 Executing "scan h 1 k 0 l 1 e -10 -8.5 0.25 preset mcu 1.0"
+
+
+# scan = 80
+# date = 10/25/2011
+# time = 3:33:54 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -10 -8.5 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 1 e -10 -8.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for TO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -10.0000 59.611 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.6801 5.0000 15.0000 299.2250 298.2010 300.4400 296.0200 300.000
+ 2 1.0000 0.0000 1.0000 -9.7500 59.690 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.6801 5.0000 14.7500 299.2410 298.2080 300.5330 295.9550 300.000
+ 3 1.0000 0.0000 1.0000 -9.5000 59.367 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 299.2470 298.2100 300.2680 295.9230 300.000
+ 4 1.0000 0.0000 1.0000 -9.2500 59.746 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.6801 5.0000 14.2500 299.2400 298.2100 299.9100 295.9070 300.000
+ 5 1.0000 0.0000 1.0000 -9.0000 59.633 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.6801 5.0000 14.0000 299.2190 298.2030 299.6660 295.9880 300.000
+ 6 1.0000 0.0000 1.0000 -8.7500 59.534 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 299.2090 298.1970 299.9280 295.9610 300.000
+ 7 1.0000 0.0000 1.0000 -8.5000 59.218 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 299.2340 298.2030 300.5230 295.9600 300.000
+# Sum of Counts = 187
+# Center of Mass = -9.224599+/-0.954543
+# Full Width Half-Maximum = 0.891935+/-0.662010
+# 3:41:41 PM 10/25/2011 scan completed.
+
+3:45:37 PM 10/25/2011 Executing "scan h 1 k 0 l 1 e -10.375 -8.0 0.25 preset mcu 2.0"
+
+
+# scan = 81
+# date = 10/25/2011
+# time = 3:45:37 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -10.375 -8.0 0.25 preset mcu 2.0
+# builtin_command = scan h 1 k 0 l 1 e -10.375 -8.0 0.25 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for TO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -10.3750 119.698 30.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.3520 34.0670 -2.7386 0.5000 0.0000 0.0000 159.8938 -40.2125 1.6801 5.0000 15.3750 299.2130 298.2060 299.9520 295.8340 300.000
+ 2 1.0000 0.0000 1.0000 -10.1250 119.337 30.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.8020 34.8324 -2.7386 0.5000 0.0000 0.0000 159.7209 -40.5579 1.6801 5.0000 15.1250 299.2430 298.2170 300.5030 295.8900 300.000
+ 3 1.0000 0.0000 1.0000 -9.8750 119.571 33.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.2364 35.5901 -2.7386 0.5000 0.0000 0.0000 159.5438 -40.9124 1.6801 5.0000 14.8750 299.2390 298.2170 299.8650 295.8510 300.000
+ 4 1.0000 0.0000 1.0000 -9.6250 119.416 39.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 53.6564 36.3410 -2.7386 0.5000 0.0000 0.0000 159.3618 -41.2764 1.6801 5.0000 14.6250 299.2110 298.2050 299.9860 295.8870 300.000
+ 5 1.0000 0.0000 1.0000 -9.3750 119.620 38.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.0634 37.0856 -2.7386 0.5000 0.0000 0.0000 159.1748 -41.6504 1.6801 5.0000 14.3750 299.2460 298.2180 300.4990 295.9610 300.000
+ 6 1.0000 0.0000 1.0000 -9.1250 119.616 46.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 56.4587 37.8248 -2.7386 0.5000 0.0000 0.0000 158.9826 -42.0346 1.6801 5.0000 14.1250 299.2320 298.2160 299.8620 295.9690 300.000
+ 7 1.0000 0.0000 1.0000 -8.8750 120.073 55.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.8432 38.5590 -2.7386 0.5000 0.0000 0.0000 158.7851 -42.4298 1.6801 5.0000 13.8750 299.2130 298.2090 300.0270 295.9150 300.000
+ 8 1.0000 0.0000 1.0000 -8.6250 119.313 50.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.2180 39.2889 -2.7386 0.5000 0.0000 0.0000 158.5818 -42.8363 1.6801 5.0000 13.6250 299.2480 298.2220 300.5010 296.0310 300.000
+ 9 1.0000 0.0000 1.0000 -8.3750 119.511 36.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 60.5841 40.0149 -2.7386 0.5000 0.0000 0.0000 158.3726 -43.2547 1.6801 5.0000 13.3750 299.2380 298.2180 299.8810 295.9660 300.000
+ 10 1.0000 0.0000 1.0000 -8.1250 118.684 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.9424 40.7376 -2.7386 0.5000 0.0000 0.0000 158.1571 -43.6857 1.6801 5.0000 13.1250 299.2180 298.2110 300.0390 295.9800 300.000
+# Sum of Counts = 371
+# Center of Mass = -9.236860+/-0.679011
+# Full Width Half-Maximum = 1.284818+/-0.412512
+# 4:06:04 PM 10/25/2011 scan completed.
+
+4:17:15 PM 10/25/2011 Executing "scan h 1 k 0 l 1 e -7.875 -6.875 0.25 preset mcu 2.0"
+
+
+# scan = 82
+# date = 10/25/2011
+# time = 4:17:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -7.875 -6.875 0.25 preset mcu 2.0
+# builtin_command = scan h 1 k 0 l 1 e -7.875 -6.875 0.25 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for TO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -7.8750 119.451 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.2938 41.4574 -2.7386 0.5000 0.0000 0.0000 157.9350 -44.1299 1.6801 5.0000 12.8750 299.2380 298.2230 300.4890 295.9210 300.000
+ 2 1.0000 0.0000 1.0000 -7.6250 119.466 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6392 42.1748 -2.7386 0.5000 0.0000 0.0000 157.7061 -44.5879 1.6801 5.0000 12.6250 299.2350 298.2260 299.8460 295.8660 300.000
+ 3 1.0000 0.0000 1.0000 -7.3750 119.805 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.9794 42.8904 -2.7386 0.5000 0.0000 0.0000 157.4698 -45.0605 1.6801 5.0000 12.3750 299.2160 298.2190 300.1240 295.8840 300.000
+ 4 1.0000 0.0000 1.0000 -7.1250 119.811 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.3150 43.6045 -2.7386 0.5000 0.0000 0.0000 157.2258 -45.5485 1.6801 5.0000 12.1250 299.2340 298.2240 300.1950 295.9590 300.000
+ 5 1.0000 0.0000 1.0000 -6.8750 119.311 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 68.6470 44.3176 -2.7386 0.5000 0.0000 0.0000 156.9736 -46.0527 1.6801 5.0000 11.8750 299.2070 298.2170 299.6560 295.8940 300.000
+# Sum of Counts = 62
+# Center of Mass = -7.350806+/-1.321077
+# Full Width Half-Maximum = 0.738949+/-1.243769
+# 4:27:26 PM 10/25/2011 scan completed.
+
+4:34:29 PM 10/25/2011 Executing "scantitle "Looking for LO mode at Gamma (1,0,1)""
+
+Setting the scantitle to:
+Looking for LO mode at Gamma (1,0,1)
+
+
+4:35:16 PM 10/25/2011 Executing "scan h 1 k 0 l 1 e -13.5 -11.5 0.25 preset mcu 1.0"
+
+
+# scan = 83
+# date = 10/25/2011
+# time = 4:35:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -13.5 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 1 e -13.5 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for LO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -13.5000 59.505 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.0653 23.4158 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.6801 5.0000 18.5000 299.2500 298.2450 300.1440 295.8920 300.000
+ 2 1.0000 0.0000 1.0000 -13.2500 59.666 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.9098 24.3806 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.6801 5.0000 18.2500 299.2370 298.2400 299.8170 295.8160 300.000
+ 3 1.0000 0.0000 1.0000 -13.0000 59.812 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.7001 25.3177 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.6801 5.0000 18.0000 299.2320 298.2340 299.6220 295.6350 300.000
+ 4 1.0000 0.0000 1.0000 -12.7500 59.585 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4424 26.2302 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.6801 5.0000 17.7500 299.2790 298.2420 300.0130 295.1370 300.000
+ 5 1.0000 0.0000 1.0000 -12.5000 59.901 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6801 5.0000 17.5000 299.2540 298.2400 300.8300 295.8520 300.000
+ 6 1.0000 0.0000 1.0000 -12.2500 59.716 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0619 -37.8756 1.6801 5.0000 17.2500 299.2770 298.2550 300.7390 295.7780 300.000
+ 7 1.0000 0.0000 1.0000 -12.0000 59.952 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9178 -38.1638 1.6801 5.0000 17.0000 299.2800 298.2570 300.4120 295.9660 300.000
+ 8 1.0000 0.0000 1.0000 -11.7500 60.151 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 299.2750 298.2570 300.0370 295.8520 300.000
+ 9 1.0000 0.0000 1.0000 -11.5000 59.706 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 299.2570 298.2490 299.7320 295.9170 300.000
+# Sum of Counts = 45
+# Center of Mass = -12.361111+/-2.607615
+# Full Width Half-Maximum = 1.249691+/-1.858011
+# 4:44:57 PM 10/25/2011 scan completed.
+
+4:48:53 PM 10/25/2011 Executing "drive s2 60"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 60.00000
+
+Drive completed.
+
+
+4:49:52 PM 10/25/2011 Executing "drive s1 65"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 65.00000
+
+Drive completed.
+
+
+4:50:49 PM 10/25/2011 Executing "drive s2 109"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 109.00000
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s2 100.27960
+
+
+Abort issued!!
+
+4:53:17 PM 10/25/2011 Executing "drive ef 18.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -36.52680
+a1 161.73660
+
+Drive completed.
+
+
+4:53:47 PM 10/25/2011 Executing "drive s2 105"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 105.00000
+
+Drive completed.
+
+
+4:54:02 PM 10/25/2011 Executing "drive s2 109"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 109.00000
+
+Drive completed.
+
+
+4:56:35 PM 10/25/2011 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive completed.
+
+
+4:56:54 PM 10/25/2011 Executing "drive s1 110"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 110.00000
+
+Drive completed.
+
+
+4:57:13 PM 10/25/2011 Executing "drive s1 120"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 120.00000
+
+Drive completed.
+
+
+4:57:51 PM 10/25/2011 Executing "drive s2 70"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 70.00000
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s2 81.76924
+
+
+Abort issued!!
+
+4:58:20 PM 10/25/2011 Executing "drive s1 100"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 100.00000
+
+Drive completed.
+
+
+4:58:59 PM 10/25/2011 Executing "scantitle "Looking for optical phonons at (2,0,2)""
+
+Setting the scantitle to:
+Looking for optical phonons at (2,0,2)
+
+
+4:59:29 PM 10/25/2011 Executing "scan h 2 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0"
+
+
+# scan = 84
+# date = 10/25/2011
+# time = 4:59:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 2 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 2 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for optical phonons at (2,0,2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 2.0000 0.0000 2.0000 -13.5000 59.369 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3142 89.6872 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 3.3601 5.0000 18.5000 299.3580 298.2890 300.1530 293.8900 300.000
+ 2 2.0000 0.0000 2.0000 -13.2500 60.077 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0614 90.4348 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 3.3601 5.0000 18.2500 299.2850 298.2720 300.3700 295.8400 300.000
+ 3 2.0000 0.0000 2.0000 -12.9999 60.005 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8138 91.1928 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0489 3.3601 5.0000 17.9999 299.2730 298.2680 300.0920 296.0240 300.000
+ 4 2.0000 0.0000 2.0000 -12.7500 59.308 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5717 91.9617 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 3.3601 5.0000 17.7500 299.2640 298.2670 299.7660 295.9730 300.000
+ 5 2.0000 0.0000 2.0000 -12.5000 59.424 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.3353 92.7420 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 3.3601 5.0000 17.5000 299.2480 298.2600 299.7440 295.9950 300.000
+ 6 2.0000 0.0000 2.0000 -12.2500 59.630 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1048 93.5342 -2.7386 0.5000 0.0000 0.0000 161.0621 -37.8756 3.3601 5.0000 17.2500 299.2610 298.2640 300.3440 296.0600 300.000
+ 7 2.0000 0.0000 2.0000 -12.0000 59.293 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8807 94.3388 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 3.3601 5.0000 17.0000 299.3120 298.2840 300.2500 294.7690 300.000
+ 8 2.0000 0.0000 2.0000 -11.7499 59.884 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.6631 95.1564 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4588 3.3601 5.0000 16.7499 299.3400 298.2810 300.1220 295.3590 300.000
+ 9 2.0000 0.0000 2.0000 -11.5000 59.661 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4524 95.9877 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 3.3601 5.0000 16.5000 299.2630 298.2680 299.9660 296.2230 300.000
+ 10 2.0000 0.0000 2.0000 -11.2500 59.779 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.2488 96.8334 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 3.3601 5.0000 16.2500 299.2470 298.2620 299.6820 296.0370 300.000
+ 11 2.0000 0.0000 2.0000 -11.0000 59.559 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.0529 97.6941 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 3.3601 5.0000 16.0000 299.2360 298.2590 299.8540 296.0240 300.000
+ 12 2.0000 0.0000 2.0000 -10.7500 59.848 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.8650 98.5706 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 3.3601 5.0000 15.7500 299.2560 298.2660 300.4750 296.0870 300.000
+ 13 2.0000 0.0000 2.0000 -10.5000 59.387 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.6854 99.4638 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0431 3.3601 5.0000 15.5000 299.2710 298.2740 300.5530 296.1720 300.000
+ 14 2.0000 0.0000 2.0000 -10.2500 59.598 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.5147 100.3745 -2.7386 0.5000 0.0000 0.0000 159.8078 -40.3841 3.3601 5.0000 15.2500 299.2770 298.2760 300.2440 296.1710 300.000
+ 15 2.0000 0.0000 2.0000 -10.0000 59.653 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.3532 101.3037 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 3.3601 5.0000 15.0000 299.2660 298.2730 299.9120 296.1120 300.000
+ 16 2.0000 0.0000 2.0000 -9.7500 59.774 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.2016 102.2524 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 3.3601 5.0000 14.7500 299.2450 298.2660 299.6720 296.1570 300.000
+ 17 2.0000 0.0000 2.0000 -9.5000 59.719 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.0602 103.2218 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 3.3601 5.0000 14.5000 299.2390 298.2650 299.9320 296.0930 300.000
+ 18 2.0000 0.0000 2.0000 -9.2500 59.537 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.9298 104.2130 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 3.3601 5.0000 14.2500 299.2680 298.2740 300.4820 296.0240 300.000
+ 19 2.0000 0.0000 2.0000 -9.0000 59.272 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.8110 105.2274 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 3.3601 5.0000 14.0000 299.3090 298.2800 300.3960 295.7140 300.000
+ 20 2.0000 0.0000 2.0000 -8.7500 59.556 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.7044 106.2664 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 3.3601 5.0000 13.7500 299.2660 298.2750 300.1830 296.1450 300.000
+ 21 2.0000 0.0000 2.0000 -8.5000 59.403 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.6108 107.3315 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 3.3601 5.0000 13.5000 299.2520 298.2700 299.8720 296.1850 300.000
+ 22 2.0000 0.0000 2.0000 -8.2500 59.692 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.5311 108.4244 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 3.3601 5.0000 13.2500 299.2380 298.2640 299.6700 296.0410 300.000
+ 23 2.0000 0.0000 2.0000 -8.0000 59.680 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.4660 109.5472 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 3.3601 5.0000 13.0000 299.2350 298.2620 300.0760 296.0640 300.000
+# Sum of Counts = 201
+# Center of Mass = -10.084571+/-1.011643
+# Full Width Half-Maximum = 3.040136+/-0.463754
+# 5:23:25 PM 10/25/2011 scan completed.
+
+5:23:26 PM 10/25/2011 Executing "scantitle "Optical phonons at Gamma (104)""
+
+Setting the scantitle to:
+Optical phonons at Gamma (104)
+
+
+5:23:26 PM 10/25/2011 Executing "scan h 1 k 0 l 4 e -13.5 -8.0 0.25 preset mcu 1.0"
+
+
+# scan = 85
+# date = 10/25/2011
+# time = 5:23:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 4 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 4 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at Gamma (104)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 4.0000 -13.5000 59.698 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.9771 62.2765 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.6500 5.0000 18.5000 299.2780 298.2870 300.4090 295.6050 300.000
+ 2 1.0000 0.0000 4.0000 -13.2500 59.611 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 43.8187 62.9161 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.6500 5.0000 18.2500 299.2640 298.2860 300.2050 295.9380 300.000
+ 3 1.0000 0.0000 4.0000 -13.0000 59.711 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.6613 63.5594 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.6500 5.0000 18.0000 299.2570 298.2850 299.8690 295.8610 300.000
+ 4 1.0000 0.0000 4.0000 -12.7500 59.949 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.5050 64.2067 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.6500 5.0000 17.7500 299.2370 298.2790 299.6570 295.9930 300.000
+ 5 1.0000 0.0000 4.0000 -12.5000 59.866 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 46.3501 64.8582 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.6500 5.0000 17.5000 299.2330 298.2750 300.0110 295.9380 300.000
+ 6 1.0000 0.0000 4.0000 -12.2500 59.654 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1967 65.5142 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.6500 5.0000 17.2500 299.2830 298.2930 300.2800 294.8030 300.000
+ 7 1.0000 0.0000 4.0000 -12.0000 59.835 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.0449 66.1749 -2.7386 0.5000 0.0000 0.0000 160.9180 -38.1638 2.6500 5.0000 17.0000 299.3390 298.3010 300.1580 294.6270 300.000
+ 8 1.0000 0.0000 4.0000 -11.7500 59.694 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.8951 66.8406 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.6500 5.0000 16.7500 299.3160 298.2930 299.9940 295.5370 300.000
+ 9 1.0000 0.0000 4.0000 -11.5000 59.819 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.7474 67.5116 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.6500 5.0000 16.5000 299.2540 298.2830 299.8440 295.8970 300.000
+ 10 1.0000 0.0000 4.0000 -11.2500 60.197 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.6020 68.1881 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 2.6500 5.0000 16.2500 299.2400 298.2760 299.7550 295.9410 300.000
+ 11 1.0000 0.0000 4.0000 -11.0000 60.049 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.4591 68.8705 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.6500 5.0000 16.0000 299.2320 298.2740 300.0990 296.0160 300.000
+ 12 1.0000 0.0000 4.0000 -10.7500 60.000 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.3190 69.5591 -2.7386 0.5000 0.0000 0.0000 160.1446 -39.7105 2.6500 5.0000 15.7500 299.2530 298.2780 300.3610 295.9190 300.000
+ 13 1.0000 0.0000 4.0000 -10.5000 59.813 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 53.1818 70.2543 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.6500 5.0000 15.5000 299.2560 298.2830 300.2110 295.8900 300.000
+ 14 1.0000 0.0000 4.0000 -10.2500 59.815 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.0478 70.9563 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.6500 5.0000 15.2500 299.2510 298.2790 299.9300 295.9390 300.000
+ 15 1.0000 0.0000 4.0000 -9.9999 59.544 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.9172 71.6655 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7342 2.6500 5.0000 14.9999 299.2380 298.2750 299.6590 295.8180 300.000
+ 16 1.0000 0.0000 4.0000 -9.7500 59.805 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7903 72.3824 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.6500 5.0000 14.7500 299.2290 298.2690 299.8920 295.8700 300.000
+ 17 1.0000 0.0000 4.0000 -9.5000 59.678 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 56.6673 73.1073 -2.7386 0.5000 0.0000 0.0000 159.2689 -41.4622 2.6500 5.0000 14.5000 299.2830 298.2900 300.2390 294.6300 300.000
+ 18 1.0000 0.0000 4.0000 -9.2500 60.024 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.5485 73.8407 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.6500 5.0000 14.2500 299.3280 298.2920 300.3010 294.9630 300.000
+ 19 1.0000 0.0000 4.0000 -9.0000 59.792 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.4342 74.5830 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.6500 5.0000 14.0000 299.2820 298.2910 300.0740 295.3050 300.000
+ 20 1.0000 0.0000 4.0000 -8.7500 59.416 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.3246 75.3346 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 2.6500 5.0000 13.7500 299.2970 298.2880 299.8690 295.5790 300.000
+ 21 1.0000 0.0000 4.0000 -8.5000 59.789 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 60.2200 76.0962 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.6500 5.0000 13.5000 299.2560 298.2850 299.9450 295.8890 300.000
+ 22 1.0000 0.0000 4.0000 -8.2500 59.682 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.1207 76.8682 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 2.6500 5.0000 13.2500 299.2490 298.2830 299.9940 295.9920 300.000
+ 23 1.0000 0.0000 4.0000 -8.0000 59.827 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.0272 77.6513 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.6500 5.0000 13.0000 299.2360 298.2760 300.0090 296.0690 300.000
+# Sum of Counts = 196
+# Center of Mass = -10.348210+/-1.051580
+# Full Width Half-Maximum = 3.206093+/-0.484680
+# 5:48:07 PM 10/25/2011 scan completed.
+
+5:48:07 PM 10/25/2011 Executing "scantitle "Optical phonons at Gamma (003)""
+
+Setting the scantitle to:
+Optical phonons at Gamma (003)
+
+
+5:48:07 PM 10/25/2011 Executing "scan h 0 k 0 l 3 e -13.5 -8.0 0.25 preset mcu 1.0"
+
+
+# scan = 86
+# date = 10/25/2011
+# time = 5:48:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at Gamma (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -13.5000 60.109 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.6520 18.1502 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.5874 5.0000 18.5000 299.2230 298.2780 299.9550 296.0890 300.000
+ 2 0.0000 0.0000 3.0000 -13.2500 59.859 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.3260 19.3272 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.5874 5.0000 18.2500 299.2230 298.2800 300.0990 295.9510 300.000
+ 3 0.0000 0.0000 3.0000 -13.0000 59.855 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.1143 20.4466 -2.7386 0.5000 0.0000 0.0000 161.4754 -37.0488 1.5874 5.0000 18.0000 299.2300 298.2820 300.1140 295.8790 300.000
+ 4 0.0000 0.0000 3.0000 -12.7500 59.923 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.9986 21.5176 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.5874 5.0000 17.7500 299.2300 298.2800 299.9110 295.8140 300.000
+ 5 0.0000 0.0000 3.0000 -12.5000 60.015 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9648 22.5473 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.5874 5.0000 17.5000 299.2180 298.2760 299.7860 295.8540 300.000
+ 6 0.0000 0.0000 3.0000 -12.2500 59.770 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.0018 23.5413 -2.7386 0.5000 0.0000 0.0000 161.0620 -37.8756 1.5874 5.0000 17.2500 299.2150 298.2770 300.1020 295.8670 300.000
+ 7 0.0000 0.0000 3.0000 -12.0000 59.578 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.1005 24.5042 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.5874 5.0000 17.0000 299.2340 298.2820 300.3440 295.9550 300.000
+ 8 0.0000 0.0000 3.0000 -11.7500 59.635 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.2536 25.4398 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.5874 5.0000 16.7500 299.2440 298.2850 300.1590 295.8340 300.000
+ 9 0.0000 0.0000 3.0000 -11.5000 60.005 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4549 26.3512 -2.7386 0.5000 0.0000 0.0000 160.6197 -38.7605 1.5874 5.0000 16.5000 299.2370 298.2800 299.8930 295.8940 300.000
+ 10 0.0000 0.0000 3.0000 -11.2500 59.899 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.6992 27.2410 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.5874 5.0000 16.2500 299.2220 298.2740 299.6660 295.8450 300.000
+ 11 0.0000 0.0000 3.0000 -11.0000 59.682 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.9819 28.1114 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.5874 5.0000 16.0000 299.2130 298.2690 299.9760 295.8530 300.000
+ 12 0.0000 0.0000 3.0000 -10.7500 59.947 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.2992 28.9645 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.5874 5.0000 15.7500 299.2270 298.2780 300.5280 295.9640 300.000
+ 13 0.0000 0.0000 3.0000 -10.5000 59.800 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.6477 29.8020 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 1.5874 5.0000 15.5000 299.2420 298.2860 300.4820 296.0010 300.000
+ 14 0.0000 0.0000 3.0000 -10.2500 60.218 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.0244 30.6253 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.5874 5.0000 15.2500 299.2410 298.2860 300.1700 296.0960 300.000
+ 15 0.0000 0.0000 3.0000 -10.0000 60.045 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4268 31.4358 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.5874 5.0000 15.0000 299.2240 298.2840 299.8300 296.0900 300.000
+ 16 0.0000 0.0000 3.0000 -9.7500 60.020 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.8524 32.2348 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.5874 5.0000 14.7500 299.2110 298.2790 299.6810 295.9710 300.000
+ 17 0.0000 0.0000 3.0000 -9.5000 59.801 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.2990 33.0232 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.5874 5.0000 14.5000 299.2150 298.2770 300.1290 295.9470 300.000
+ 18 0.0000 0.0000 3.0000 -9.2500 59.900 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7649 33.8021 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.5874 5.0000 14.2500 299.2400 298.2840 300.5580 295.9100 300.000
+ 19 0.0000 0.0000 3.0000 -9.0000 59.687 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2482 34.5724 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.5874 5.0000 14.0000 299.2500 298.2910 300.4110 295.9550 300.000
+ 20 0.0000 0.0000 3.0000 -8.7500 60.010 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7473 35.3348 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.5874 5.0000 13.7500 299.2480 298.2910 300.0960 295.9600 300.000
+ 21 0.0000 0.0000 3.0000 -8.4999 60.190 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2607 36.0902 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0441 1.5874 5.0000 13.4999 299.2390 298.2880 299.7670 295.8820 300.000
+ 22 0.0000 0.0000 3.0000 -8.2500 60.039 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7871 36.8392 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.5874 5.0000 13.2500 299.2260 298.2830 299.7020 295.7990 300.000
+ 23 0.0000 0.0000 3.0000 -8.0000 59.756 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3252 37.5825 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5874 5.0000 13.0000 299.2270 298.2850 300.3040 295.9600 300.000
+# Sum of Counts = 182
+# Center of Mass = -11.443678+/-1.205214
+# Full Width Half-Maximum = 3.128612+/-0.563116
+# 6:13:04 PM 10/25/2011 scan completed.
+
+6:13:04 PM 10/25/2011 Executing "scantitle "Optical phonons at Gamma (-102)""
+
+Setting the scantitle to:
+Optical phonons at Gamma (-102)
+
+
+6:13:05 PM 10/25/2011 Executing "scan h -1 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0"
+
+
+# scan = 87
+# date = 10/25/2011
+# time = 6:13:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h -1 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at Gamma (-102)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.0000 -13.5000 59.739 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -82.6472 34.1922 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.9138 5.0000 18.5000 299.2580 298.2910 300.4410 295.9150 300.000
+ 2 -1.0000 0.0000 2.0000 -13.2500 59.790 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -81.3303 34.9434 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.9138 5.0000 18.2500 299.2630 298.2930 300.1100 295.9710 300.000
+ 3 -1.0000 0.0000 2.0000 -13.0000 59.840 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -80.0289 35.6872 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.9138 5.0000 18.0000 299.2500 298.2880 299.8020 295.9240 300.000
+ 4 -1.0000 0.0000 2.0000 -12.7500 59.755 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -78.7417 36.4240 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.9138 5.0000 17.7500 299.2340 298.2820 299.6640 295.8920 300.000
+ 5 -1.0000 0.0000 2.0000 -12.5000 59.974 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -77.4677 37.1545 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.9138 5.0000 17.5000 299.2470 298.2860 300.1670 295.8010 300.000
+ 6 -1.0000 0.0000 2.0000 -12.2500 59.917 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -76.2060 37.8794 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.9138 5.0000 17.2500 299.2590 298.2910 300.6040 295.9170 300.000
+ 7 -1.0000 0.0000 2.0000 -12.0000 60.065 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -74.9555 38.5992 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.9138 5.0000 17.0000 299.2690 298.2950 300.4420 295.9850 300.000
+ 8 -1.0000 0.0000 2.0000 -11.7500 60.118 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -73.7154 39.3144 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.9138 5.0000 16.7500 299.2660 298.3000 300.0800 295.9390 300.000
+ 9 -1.0000 0.0000 2.0000 -11.5000 59.907 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -72.4848 40.0255 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.9138 5.0000 16.5000 299.2500 298.2940 299.8090 295.9440 300.000
+ 10 -1.0000 0.0000 2.0000 -11.2500 59.915 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -71.2630 40.7330 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 1.9138 5.0000 16.2500 299.2400 298.2880 299.6720 295.7580 300.000
+ 11 -1.0000 0.0000 2.0000 -11.0000 60.049 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -70.0493 41.4373 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.9138 5.0000 16.0000 299.2500 298.2940 300.2580 295.7580 300.000
+ 12 -1.0000 0.0000 2.0000 -10.7500 60.128 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -68.8429 42.1389 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.9138 5.0000 15.7500 299.2660 298.3000 300.5490 295.8370 300.000
+ 13 -1.0000 0.0000 2.0000 -10.5000 60.107 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -67.6432 42.8381 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 1.9138 5.0000 15.5000 299.2730 298.3060 300.3420 295.9710 300.000
+ 14 -1.0000 0.0000 2.0000 -10.2500 60.177 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -66.4497 43.5354 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.9138 5.0000 15.2500 299.2680 298.3050 300.0130 295.9970 300.000
+ 15 -1.0000 0.0000 2.0000 -10.0000 60.193 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -65.2616 44.2312 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.9138 5.0000 15.0000 299.2520 298.2990 299.7090 295.9700 300.000
+ 16 -1.0000 0.0000 2.0000 -9.7500 60.226 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -64.0784 44.9258 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.9138 5.0000 14.7500 299.2350 298.2910 299.7840 295.9750 300.000
+ 17 -1.0000 0.0000 2.0000 -9.5000 60.108 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -62.8995 45.6196 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.9138 5.0000 14.5000 299.2530 298.2980 300.4150 296.0240 300.000
+ 18 -1.0000 0.0000 2.0000 -9.2499 60.232 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -61.7244 46.3129 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8413 1.9138 5.0000 14.2499 299.2720 298.3070 300.5240 296.0760 300.000
+ 19 -1.0000 0.0000 2.0000 -8.9999 60.116 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -60.5526 47.0062 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2309 1.9138 5.0000 13.9999 299.2830 298.3100 300.2610 296.0010 300.000
+ 20 -1.0000 0.0000 2.0000 -8.7500 59.843 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -59.3836 47.6998 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.9138 5.0000 13.7500 299.2720 298.3050 299.9470 295.9930 300.000
+ 21 -1.0000 0.0000 2.0000 -8.5000 59.878 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -58.2168 48.3941 -2.7386 0.5000 0.0000 0.0000 158.4778 -43.0440 1.9138 5.0000 13.5000 299.2550 298.2960 299.6710 296.0190 300.000
+ 22 -1.0000 0.0000 2.0000 -8.2500 59.808 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -57.0518 49.0894 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.9138 5.0000 13.2500 299.2450 298.2890 299.9340 295.9890 300.000
+ 23 -1.0000 0.0000 2.0000 -8.0000 60.142 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.8880 49.7861 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9062 1.9138 5.0000 13.0000 299.2660 298.2950 300.4990 295.9190 300.000
+# Sum of Counts = 93
+# Center of Mass = -10.618271+/-1.568447
+# Full Width Half-Maximum = 3.626079+/-0.825062
+# 6:37:36 PM 10/25/2011 scan completed.
+
+6:37:36 PM 10/25/2011 Executing "scantitle "Optical phonons at L (1.5,0,1.5)""
+
+Setting the scantitle to:
+Optical phonons at L (1.5,0,1.5)
+
+
+6:37:36 PM 10/25/2011 Executing "scan h 1.5 k 0 l 1.5 e -13.5 -8.0 0.25 preset mcu 1.0"
+
+
+# scan = 88
+# date = 10/25/2011
+# time = 6:37:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at L (1.5,0,1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -13.5000 59.715 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.8899 57.4818 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.5201 5.0000 18.5000 299.2810 298.3030 300.1860 295.9820 300.000
+ 2 1.5000 0.0000 1.5000 -13.2500 59.942 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.7729 58.1194 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7851 2.5201 5.0000 18.2499 299.2670 298.3010 299.8620 296.0360 300.000
+ 3 1.5000 0.0000 1.5000 -13.0000 60.043 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.6558 58.7596 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.5201 5.0000 18.0000 299.2500 298.2980 299.6550 296.0150 300.000
+ 4 1.5000 0.0000 1.5000 -12.7500 59.844 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.5389 59.4026 -2.7386 0.5000 0.0000 0.0000 161.3407 -37.3184 2.5201 5.0000 17.7500 299.2530 298.2970 300.0800 295.9750 300.000
+ 5 1.5000 0.0000 1.5000 -12.4999 59.792 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 76.4223 60.0489 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.5201 5.0000 17.4999 299.2700 298.3010 300.6170 296.0290 300.000
+ 6 1.5000 0.0000 1.5000 -12.2500 59.648 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.3063 60.6984 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.5201 5.0000 17.2500 299.2840 298.3070 300.4980 296.0600 300.000
+ 7 1.5000 0.0000 1.5000 -12.0000 59.846 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.1910 61.3516 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.5201 5.0000 17.0000 299.2830 298.3080 300.1640 296.1190 300.000
+ 8 1.5000 0.0000 1.5000 -11.7500 60.256 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.0767 62.0086 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.5201 5.0000 16.7500 299.2720 298.3060 299.8360 296.0580 300.000
+ 9 1.5000 0.0000 1.5000 -11.5000 60.024 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.9636 62.6697 -2.7386 0.5000 0.0000 0.0000 160.6197 -38.7605 2.5201 5.0000 16.5000 299.2590 298.2990 299.6820 296.0180 300.000
+ 10 1.5000 0.0000 1.5000 -11.2500 59.948 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.8520 63.3352 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.5201 5.0000 16.2500 299.2590 298.2980 300.1150 296.0210 300.000
+ 11 1.5000 0.0000 1.5000 -11.0000 59.763 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.7419 64.0054 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.5201 5.0000 16.0000 299.2820 298.3070 300.5660 296.0980 300.000
+ 12 1.5000 0.0000 1.5000 -10.7500 60.135 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.6338 64.6804 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.5201 5.0000 15.7500 299.2930 298.3110 300.4440 296.1500 300.000
+ 13 1.5000 0.0000 1.5000 -10.5000 59.811 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.5277 65.3608 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.5201 5.0000 15.5000 299.2950 298.3130 300.1060 296.0900 300.000
+ 14 1.5000 0.0000 1.5000 -10.2500 59.925 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.4239 66.0468 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.5201 5.0000 15.2500 299.2890 298.3110 299.7810 296.0370 300.000
+ 15 1.5000 0.0000 1.5000 -10.0000 59.895 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.3227 66.7386 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.5201 5.0000 15.0000 299.2700 298.3020 299.6850 296.0110 300.000
+ 16 1.5000 0.0000 1.5000 -9.7500 60.048 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.2243 67.4367 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.5201 5.0000 14.7500 299.2930 298.3080 300.1690 295.6340 300.000
+ 17 1.5000 0.0000 1.5000 -9.5000 59.960 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.1290 68.1414 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.5201 5.0000 14.5000 299.3310 298.3240 300.3900 295.1380 300.000
+ 18 1.5000 0.0000 1.5000 -9.2500 59.900 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0370 68.8532 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.5201 5.0000 14.2500 299.3070 298.3140 300.3990 296.1270 300.000
+ 19 1.5000 0.0000 1.5000 -9.0000 60.113 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.9486 69.5722 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.5201 5.0000 14.0000 299.2970 298.3120 300.0750 296.1100 300.000
+ 20 1.5000 0.0000 1.5000 -8.7500 60.170 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.8640 70.2992 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 2.5201 5.0000 13.7500 299.2840 298.3080 299.7650 296.1560 300.000
+ 21 1.5000 0.0000 1.5000 -8.5000 60.162 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 299.2630 298.2990 299.7200 296.1630 300.000
+ 22 1.5000 0.0000 1.5000 -8.2500 59.881 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.7076 71.7782 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 2.5201 5.0000 13.2500 299.2740 298.3020 300.3600 296.1240 300.000
+ 23 1.5000 0.0000 1.5000 -8.0000 59.967 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 299.2990 298.3110 300.5820 296.0960 300.000
+# Sum of Counts = 312
+# Center of Mass = -11.270829+/-0.907555
+# Full Width Half-Maximum = 3.416093+/-0.435519
+# 7:02:35 PM 10/25/2011 scan completed.
+
+7:02:35 PM 10/25/2011 Executing "scantitle "Optical phonons at L (0.5,0,3.5)""
+
+Setting the scantitle to:
+Optical phonons at L (0.5,0,3.5)
+
+
+7:02:36 PM 10/25/2011 Executing "scan h 0.5 k 0 l 3.5 e -13.5 -8.0 0.25 preset mcu 1.0"
+
+
+# scan = 89
+# date = 10/25/2011
+# time = 7:02:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0.5 k 0 l 3.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h 0.5 k 0 l 3.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at L (0.5,0,3.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.5000 0.0000 3.5000 -13.5000 59.960 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.7238 38.3958 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.0163 5.0000 18.5000 299.3040 298.3230 300.1010 296.0070 300.000
+ 2 0.5000 0.0000 3.5000 -13.2500 60.261 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.9176 39.1039 -2.7386 0.5000 0.0000 0.0000 161.6074 -36.7850 2.0163 5.0000 18.2500 299.2900 298.3180 299.7710 295.9190 300.000
+ 3 0.5000 0.0000 3.5000 -13.0000 60.154 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.1014 39.8076 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.0163 5.0000 18.0000 299.2790 298.3150 299.6770 295.8360 300.000
+ 4 0.5000 0.0000 3.5000 -12.7500 60.411 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 6.2762 40.5076 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.0163 5.0000 17.7500 299.2920 298.3140 300.2820 295.9470 300.000
+ 5 0.5000 0.0000 3.5000 -12.5000 60.469 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 7.4425 41.2040 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.0163 5.0000 17.5000 299.3040 298.3180 300.6200 296.0660 300.000
+ 6 0.5000 0.0000 3.5000 -12.2500 60.377 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 8.6010 41.8974 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.0163 5.0000 17.2500 299.3150 298.3230 300.4130 296.0610 300.000
+ 7 0.5000 0.0000 3.5000 -12.0000 60.495 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 9.7523 42.5882 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.0163 5.0000 17.0000 299.3090 298.3220 300.0720 295.9510 300.000
+ 8 0.5000 0.0000 3.5000 -11.7500 60.184 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 10.8970 43.2767 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.0163 5.0000 16.7500 299.2930 298.3170 299.7600 295.9430 300.000
+ 9 0.5000 0.0000 3.5000 -11.5000 59.836 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 12.0357 43.9633 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.0163 5.0000 16.5000 299.2780 298.3070 299.7190 295.9540 300.000
+ 10 0.5000 0.0000 3.5000 -11.2500 60.909 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 13.1689 44.6484 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.0163 5.0000 16.2500 299.2830 298.3080 300.3010 295.9620 300.000
+ 11 0.5000 0.0000 3.5000 -11.0000 60.248 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.2971 45.3323 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.0163 5.0000 16.0000 299.3020 298.3160 300.5290 295.9710 300.000
+ 12 0.5000 0.0000 3.5000 -10.7500 60.394 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.4208 46.0154 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.0163 5.0000 15.7500 299.3130 298.3190 300.2910 295.9980 300.000
+ 13 0.5000 0.0000 3.5000 -10.5000 60.558 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.5406 46.6980 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.0163 5.0000 15.5000 299.3020 298.3180 299.9680 296.0430 300.000
+ 14 0.5000 0.0000 3.5000 -10.2500 60.478 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.6568 47.3804 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.0163 5.0000 15.2500 299.2840 298.3110 299.6900 296.0640 300.000
+ 15 0.5000 0.0000 3.5000 -10.0000 60.256 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.7699 48.0630 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7341 2.0163 5.0000 15.0000 299.2780 298.3060 299.8270 296.0450 300.000
+ 16 0.5000 0.0000 3.5000 -9.7500 60.369 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.8804 48.7460 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.0163 5.0000 14.7500 299.2930 298.3080 300.4860 295.9950 300.000
+ 17 0.5000 0.0000 3.5000 -9.5000 60.615 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.9887 49.4299 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.0163 5.0000 14.5000 299.3140 298.3160 300.5630 296.0980 300.000
+ 18 0.5000 0.0000 3.5000 -9.2500 60.395 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.0952 50.1150 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.0163 5.0000 14.2500 299.3240 298.3190 300.2620 296.0340 300.000
+ 19 0.5000 0.0000 3.5000 -9.0000 60.199 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.2003 50.8015 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.0163 5.0000 14.0000 299.3130 298.3170 299.9150 295.9300 300.000
+ 20 0.5000 0.0000 3.5000 -8.7500 60.341 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.3045 51.4899 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 2.0163 5.0000 13.7500 299.2950 298.3100 299.6670 295.9260 300.000
+ 21 0.5000 0.0000 3.5000 -8.5000 60.362 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.4082 52.1804 -2.7386 0.5000 0.0000 0.0000 158.4779 -43.0440 2.0163 5.0000 13.5000 299.2870 298.3080 299.9480 295.8970 300.000
+ 22 0.5000 0.0000 3.5000 -8.2500 60.113 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.5117 52.8734 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 2.0163 5.0000 13.2500 299.3110 298.3120 300.5530 296.1010 300.000
+ 23 0.5000 0.0000 3.5000 -8.0000 60.108 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6155 53.5694 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.0163 5.0000 13.0000 299.3260 298.3180 300.5080 296.0690 300.000
+# Sum of Counts = 216
+# Center of Mass = -11.398148+/-1.103066
+# Full Width Half-Maximum = 3.454424+/-0.549056
+# 7:27:24 PM 10/25/2011 scan completed.
+
+7:27:24 PM 10/25/2011 Executing "scantitle "Optical phonons at L (-0.5,0,2.5)""
+
+Setting the scantitle to:
+Optical phonons at L (-0.5,0,2.5)
+
+
+7:27:25 PM 10/25/2011 Executing "scan h -0.5 k 0 l 2.5 e -13.5 -8.0 0.25 preset mcu 1.0"
+
+
+# scan = 90
+# date = 10/25/2011
+# time = 7:27:25 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# builtin_command = scan h -0.5 k 0 l 2.5 e -13.5 -8.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at L (-0.5,0,2.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -13.5000 60.390 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -88.0059 15.2656 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.5445 5.0000 18.5000 299.3240 298.3200 299.8700 295.9540 300.000
+ 2 -0.5000 0.0000 2.5000 -13.2500 60.259 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -85.2857 16.6216 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.5445 5.0000 18.2500 299.3040 298.3080 299.6620 295.8870 300.000
+ 3 -0.5000 0.0000 2.5000 -13.0000 60.073 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -82.7491 17.8859 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.5446 5.0000 18.0000 299.2970 298.3070 300.0300 295.9660 300.000
+ 4 -0.5000 0.0000 2.5000 -12.7500 60.720 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -80.3592 19.0770 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.5446 5.0000 17.7500 299.3130 298.3110 300.5800 296.0180 300.000
+ 5 -0.5000 0.0000 2.5000 -12.5000 60.707 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -78.0896 20.2082 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.5445 5.0000 17.5000 299.3260 298.3210 300.4720 296.0570 300.000
+ 6 -0.5000 0.0000 2.5000 -12.2500 60.035 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -75.9206 21.2892 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.5445 5.0000 17.2500 299.3250 298.3230 300.1430 295.9400 300.000
+ 7 -0.5000 0.0000 2.5000 -12.0000 60.186 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -73.8371 22.3274 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.5446 5.0000 17.0000 299.3130 298.3180 299.8160 295.9230 300.000
+ 8 -0.5000 0.0000 2.5000 -11.7500 60.518 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -71.8274 23.3289 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.5445 5.0000 16.7500 299.2950 298.3100 299.6800 295.8680 300.000
+ 9 -0.5000 0.0000 2.5000 -11.5000 60.407 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -69.8818 24.2984 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.5445 5.0000 16.5000 299.3020 298.3120 300.1990 295.8030 300.000
+ 10 -0.5000 0.0000 2.5000 -11.2500 60.376 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -67.9926 25.2398 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.5445 5.0000 16.2500 299.3310 298.3160 300.5960 295.8020 300.000
+ 11 -0.5000 0.0000 2.5000 -11.0000 60.610 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -66.1531 26.1562 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.5445 5.0000 16.0000 299.3450 298.3190 300.4100 295.9500 300.000
+ 12 -0.5000 0.0000 2.5000 -10.7500 60.654 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -64.3580 27.0506 -2.7386 0.5000 0.0000 0.0000 160.1447 -39.7105 1.5445 5.0000 15.7500 299.3330 298.3140 300.0830 295.9930 300.000
+ 13 -0.5000 0.0000 2.5000 -10.5000 60.358 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -62.6024 27.9252 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0431 1.5445 5.0000 15.5000 299.3140 298.3070 299.7700 296.0280 300.000
+ 14 -0.5000 0.0000 2.5000 -10.2500 60.411 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -60.8824 28.7820 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.5445 5.0000 15.2500 299.2950 298.3000 299.7070 295.9450 300.000
+ 15 -0.5000 0.0000 2.5000 -10.0000 60.656 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -59.1944 29.6229 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.5445 5.0000 15.0000 299.3080 298.3040 300.3330 295.9250 300.000
+ 16 -0.5000 0.0000 2.5000 -9.7500 60.583 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -57.5352 30.4493 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.5445 5.0000 14.7500 299.3330 298.3120 300.5610 296.0330 300.000
+ 17 -0.5000 0.0000 2.5000 -9.5000 60.470 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.9022 31.2626 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.5445 5.0000 14.5000 299.3350 298.3130 300.3360 296.1060 300.000
+ 18 -0.5000 0.0000 2.5000 -9.2500 60.954 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -54.2928 32.0642 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.5446 5.0000 14.2500 299.3260 298.3090 299.9900 296.0710 300.000
+ 19 -0.5000 0.0000 2.5000 -9.0000 60.409 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.7049 32.8549 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.5445 5.0000 14.0000 299.3060 298.3050 299.7100 296.0520 300.000
+ 20 -0.5000 0.0000 2.5000 -8.7500 60.372 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.1364 33.6360 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.5445 5.0000 13.7500 299.2880 298.3020 299.8370 296.0310 300.000
+ 21 -0.5000 0.0000 2.5000 -8.5000 60.714 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5856 34.4082 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5445 5.0000 13.5000 299.3060 298.3070 300.4620 296.0100 300.000
+ 22 -0.5000 0.0000 2.5000 -8.2500 60.712 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.0506 35.1724 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.5445 5.0000 13.2500 299.3250 298.3110 300.5340 296.0380 300.000
+ 23 -0.5000 0.0000 2.5000 -8.0000 60.684 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 299.3260 298.3120 300.2480 296.0230 300.000
+# Sum of Counts = 165
+# Center of Mass = -11.236364+/-1.244261
+# Full Width Half-Maximum = 3.428603+/-0.633117
+# 7:52:33 PM 10/25/2011 scan completed.
+
+7:52:33 PM 10/25/2011 Executing "scantitle "Optical phonons at X (1.5,0,0)""
+
+Setting the scantitle to:
+Optical phonons at X (1.5,0,0)
+
+
+7:52:33 PM 10/25/2011 Executing "scan h 1.5 k 0 l 0 e -13.0 -9.0 0.25 preset mcu 1.0"
+
+
+# scan = 91
+# date = 10/25/2011
+# time = 7:52:33 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -13.0 -9.0 0.25 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 0 e -13.0 -9.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at X (1.5,0,0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -13.0000 60.286 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1828 54.0250 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3918 5.0000 18.0000 299.3080 298.2970 299.6560 295.8880 300.000
+ 2 1.5000 0.0000 0.0000 -12.7500 60.733 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1152 54.6699 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3918 5.0000 17.7500 299.2990 298.2920 300.0500 295.9240 300.000
+ 3 1.5000 0.0000 0.0000 -12.4999 60.791 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.0466 55.3168 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.3918 5.0000 17.4999 299.3120 298.2980 300.5610 296.1160 300.000
+ 4 1.5000 0.0000 0.0000 -12.2499 60.155 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9774 55.9658 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.3918 5.0000 17.2499 299.3210 298.3030 300.4590 296.1610 300.000
+ 5 1.5000 0.0000 0.0000 -12.0000 60.314 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.9078 56.6172 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3918 5.0000 17.0000 299.3200 298.3040 300.1280 296.0930 300.000
+ 6 1.5000 0.0000 0.0000 -11.7500 60.394 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8381 57.2712 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3918 5.0000 16.7500 299.3050 298.3000 299.8140 296.1410 300.000
+ 7 1.5000 0.0000 0.0000 -11.5000 60.320 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7685 57.9282 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3918 5.0000 16.5000 299.2870 298.2910 299.6790 296.1170 300.000
+ 8 1.5000 0.0000 0.0000 -11.2500 60.616 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6992 58.5884 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 2.3918 5.0000 16.2500 299.2960 298.2910 300.2280 296.0920 300.000
+ 9 1.5000 0.0000 0.0000 -11.0000 60.209 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6306 59.2520 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3918 5.0000 16.0000 299.3140 298.2970 300.5960 296.1420 300.000
+ 10 1.5000 0.0000 0.0000 -10.7499 60.428 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5628 59.9193 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7106 2.3918 5.0000 15.7499 299.3240 298.3000 300.4010 296.1330 300.000
+ 11 1.5000 0.0000 0.0000 -10.5000 60.463 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4960 60.5907 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.3918 5.0000 15.5000 299.3220 298.2990 300.0540 296.1560 300.000
+ 12 1.5000 0.0000 0.0000 -10.2500 60.402 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4306 61.2663 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.3918 5.0000 15.2500 299.3060 298.2930 299.7400 296.1440 300.000
+ 13 1.5000 0.0000 0.0000 -10.0000 60.438 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3668 61.9466 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.3918 5.0000 15.0000 299.2890 298.2850 299.7410 296.1040 300.000
+ 14 1.5000 0.0000 0.0000 -9.7499 60.280 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3049 62.6317 -2.7386 0.5000 0.0000 0.0000 159.4533 -41.0933 2.3918 5.0000 14.7499 299.3020 298.2870 300.4000 296.1090 300.000
+ 15 1.5000 0.0000 0.0000 -9.5000 60.305 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2451 63.3221 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.3918 5.0000 14.5000 299.3240 298.2920 300.5880 296.1260 300.000
+ 16 1.5000 0.0000 0.0000 -9.2500 60.369 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1877 64.0182 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.3918 5.0000 14.2500 299.3310 298.2960 300.3210 296.0530 300.000
+ 17 1.5000 0.0000 0.0000 -9.0000 60.277 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1329 64.7201 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.3918 5.0000 14.0000 299.3270 298.2940 299.9780 296.0080 300.000
+# Sum of Counts = 179
+# Center of Mass = -11.410591+/-1.209389
+# Full Width Half-Maximum = 2.371588+/-0.605926
+# 8:11:28 PM 10/25/2011 scan completed.
+
+8:11:28 PM 10/25/2011 Executing "scantitle "Optical phonons at X (-0.5,0,4)""
+
+Setting the scantitle to:
+Optical phonons at X (-0.5,0,4)
+
+
+8:11:29 PM 10/25/2011 Executing "scan h -0.5 k 0 l 4 e -13.0 -9.0 0.25 preset mcu 1.0"
+
+
+# scan = 92
+# date = 10/25/2011
+# time = 8:11:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 4 e -13.0 -9.0 0.25 preset mcu 1.0
+# builtin_command = scan h -0.5 k 0 l 4 e -13.0 -9.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at X (-0.5,0,4)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 4.0000 -13.0000 60.863 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6768 49.1918 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.2618 5.0000 18.0000 299.2960 298.2820 299.8550 295.9650 300.000
+ 2 -0.5000 0.0000 4.0000 -12.7500 60.631 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.6808 49.8459 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.2618 5.0000 17.7500 299.3080 298.2850 300.5050 296.1530 300.000
+ 3 -0.5000 0.0000 4.0000 -12.5000 60.502 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6874 50.5004 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.2618 5.0000 17.5000 299.3260 298.2920 300.5300 296.1020 300.000
+ 4 -0.5000 0.0000 4.0000 -12.2500 60.544 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.6962 51.1558 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.2618 5.0000 17.2500 299.3370 298.2940 300.2160 295.9620 300.000
+ 5 -0.5000 0.0000 4.0000 -12.0000 60.790 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7070 51.8121 -2.7386 0.5000 0.0000 0.0000 160.9180 -38.1638 2.2618 5.0000 17.0000 299.3310 298.2900 299.8790 295.8800 300.000
+ 6 -0.5000 0.0000 4.0000 -11.7500 60.446 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.7194 52.4698 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.2618 5.0000 16.7500 299.3100 298.2800 299.6750 295.9160 300.000
+ 7 -0.5000 0.0000 4.0000 -11.5000 60.509 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.7332 53.1290 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.2618 5.0000 16.5000 299.3010 298.2760 300.0430 295.9740 300.000
+ 8 -0.5000 0.0000 4.0000 -11.2500 60.514 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7480 53.7900 -2.7386 0.5000 0.0000 0.0000 160.4651 -39.0695 2.2618 5.0000 16.2500 299.3250 298.2810 300.5590 295.8680 300.000
+ 9 -0.5000 0.0000 4.0000 -11.0000 60.565 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7636 54.4532 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.2618 5.0000 16.0000 299.3440 298.2860 300.4690 295.8490 300.000
+ 10 -0.5000 0.0000 4.0000 -10.7500 60.704 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7797 55.1188 -2.7386 0.5000 0.0000 0.0000 160.1447 -39.7105 2.2618 5.0000 15.7500 299.3390 298.2850 300.1220 295.8800 300.000
+ 11 -0.5000 0.0000 4.0000 -10.5000 60.796 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7959 55.7869 -2.7386 0.5000 0.0000 0.0000 159.9784 -40.0430 2.2618 5.0000 15.5000 299.3200 298.2810 299.8020 295.8930 300.000
+ 12 -0.5000 0.0000 4.0000 -10.2500 60.473 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.8120 56.4581 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.2618 5.0000 15.2500 299.3030 298.2730 299.6830 295.8230 300.000
+ 13 -0.5000 0.0000 4.0000 -10.0000 60.179 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8277 57.1324 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.2618 5.0000 15.0000 299.3090 298.2720 300.2540 295.7990 300.000
+ 14 -0.5000 0.0000 4.0000 -9.7500 61.096 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8427 57.8104 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.2618 5.0000 14.7500 299.3320 298.2780 300.6010 295.8760 300.000
+ 15 -0.5000 0.0000 4.0000 -9.5000 60.573 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.8567 58.4922 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.2618 5.0000 14.5000 299.3390 298.2800 300.3880 295.9270 300.000
+ 16 -0.5000 0.0000 4.0000 -9.2500 60.666 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.8694 59.1781 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.2618 5.0000 14.2500 299.3330 298.2780 300.0430 295.9640 300.000
+ 17 -0.5000 0.0000 4.0000 -9.0000 60.978 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8806 59.8686 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.2618 5.0000 14.0000 299.3160 298.2720 299.7220 295.8960 300.000
+# Sum of Counts = 147
+# Center of Mass = -11.375850+/-1.330062
+# Full Width Half-Maximum = 2.220325+/-0.649270
+# 8:30:26 PM 10/25/2011 scan completed.
+
+8:30:26 PM 10/25/2011 Executing "scantitle "Optical phonons at X (1.5,0,3)""
+
+Setting the scantitle to:
+Optical phonons at X (1.5,0,3)
+
+
+8:30:27 PM 10/25/2011 Executing "scan h 1.5 k 0 l 3 e -13.0 -9.0 0.25 preset mcu 1.0"
+
+
+# scan = 93
+# date = 10/25/2011
+# time = 8:30:27 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 3 e -13.0 -9.0 0.25 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 3 e -13.0 -9.0 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at X (1.5,0,3)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 3.0000 -13.0000 60.563 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.6199 71.8067 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.8707 5.0000 18.0000 299.3040 298.2660 300.1920 295.8760 300.000
+ 2 1.5000 0.0000 3.0000 -12.7500 60.767 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.4158 72.4735 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.8707 5.0000 17.7500 299.3200 298.2720 300.6260 296.0140 300.000
+ 3 1.5000 0.0000 3.0000 -12.5000 60.766 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.2145 73.1464 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.8707 5.0000 17.5000 299.3240 298.2770 300.4350 296.0640 300.000
+ 4 1.5000 0.0000 3.0000 -12.2500 60.365 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.0159 73.8257 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.8707 5.0000 17.2500 299.3220 298.2750 300.0900 296.0860 300.000
+ 5 1.5000 0.0000 3.0000 -12.0000 60.424 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.8204 74.5116 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.8707 5.0000 17.0000 299.3070 298.2700 299.7680 296.0670 300.000
+ 6 1.5000 0.0000 3.0000 -11.7500 60.832 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.6282 75.2045 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.8707 5.0000 16.7500 299.2910 298.2630 299.7240 296.0080 300.000
+ 7 1.5000 0.0000 3.0000 -11.5000 60.142 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 76.4394 75.9047 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.8707 5.0000 16.5000 299.2990 298.2640 300.3240 296.0800 300.000
+ 8 1.5000 0.0000 3.0000 -11.2500 60.648 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.2542 76.6126 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 2.8707 5.0000 16.2500 299.3180 298.2680 300.5980 296.1070 300.000
+ 9 1.5000 0.0000 3.0000 -11.0000 60.800 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.0730 77.3285 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.8707 5.0000 16.0000 299.3260 298.2700 300.3540 296.1210 300.000
+ 10 1.5000 0.0000 3.0000 -10.7500 60.737 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.8958 78.0529 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.8707 5.0000 15.7500 299.3190 298.2680 299.9960 296.1010 300.000
+ 11 1.5000 0.0000 3.0000 -10.5000 60.543 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.7229 78.7861 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.8707 5.0000 15.5000 299.3030 298.2600 299.7000 296.0720 300.000
+ 12 1.5000 0.0000 3.0000 -10.2500 60.829 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.5546 79.5286 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.8707 5.0000 15.2500 299.2890 298.2540 299.8330 295.9770 300.000
+ 13 1.5000 0.0000 3.0000 -10.0000 60.773 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.3911 80.2808 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.8707 5.0000 15.0000 299.3100 298.2570 300.5050 296.0580 300.000
+ 14 1.5000 0.0000 3.0000 -9.7500 60.679 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.2328 81.0433 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0933 2.8707 5.0000 14.7500 299.3240 298.2620 300.5370 296.0870 300.000
+ 15 1.5000 0.0000 3.0000 -9.5000 60.563 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.0798 81.8165 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.8707 5.0000 14.5000 299.3280 298.2620 300.2480 296.0480 300.000
+ 16 1.5000 0.0000 3.0000 -9.2500 60.382 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.9324 82.6010 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.8707 5.0000 14.2500 299.3180 298.2590 299.9000 296.0450 300.000
+ 17 1.5000 0.0000 3.0000 -9.0000 60.487 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.7911 83.3973 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.8707 5.0000 14.0000 299.2990 298.2500 299.6760 295.9940 300.000
+# Sum of Counts = 182
+# Center of Mass = -11.174451+/-1.174509
+# Full Width Half-Maximum = 2.303956+/-0.574102
+# 8:49:00 PM 10/25/2011 scan completed.
+
+8:49:00 PM 10/25/2011 Executing "scantitle "Optical phonons at T (0,0,4.5)""
+
+Setting the scantitle to:
+Optical phonons at T (0,0,4.5)
+
+
+8:49:01 PM 10/25/2011 Executing "scan h 0 k 0 l 4.5 e -14.25 -11.5 0.25 preset mcu 1.0"
+
+
+# scan = 94
+# date = 10/25/2011
+# time = 8:49:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at T (0,0,4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.2500 60.577 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 299.3110 298.2530 300.4670 295.8520 300.000
+ 2 0.0000 0.0000 4.5000 -14.0000 60.742 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 299.3290 298.2550 300.5600 295.8550 300.000
+ 3 0.0000 0.0000 4.5000 -13.7500 60.963 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 299.3320 298.2570 300.2590 295.7800 300.000
+ 4 0.0000 0.0000 4.5000 -13.5000 60.442 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3812 5.0000 18.5000 299.3210 298.2520 299.9090 295.9060 300.000
+ 5 0.0000 0.0000 4.5000 -13.2500 60.897 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 299.2950 298.2440 299.6470 295.8920 300.000
+ 6 0.0000 0.0000 4.5000 -13.0000 60.485 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3812 5.0000 18.0000 299.2860 298.2400 300.0220 295.9550 300.000
+ 7 0.0000 0.0000 4.5000 -12.7500 60.646 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 299.3070 298.2460 300.5650 295.9640 300.000
+ 8 0.0000 0.0000 4.5000 -12.5000 60.983 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3812 5.0000 17.5000 299.3230 298.2510 300.4700 295.8450 300.000
+ 9 0.0000 0.0000 4.5000 -12.2500 60.836 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0620 -37.8756 2.3812 5.0000 17.2500 299.3260 298.2500 300.1540 295.8880 300.000
+ 10 0.0000 0.0000 4.5000 -12.0000 60.636 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 299.3050 298.2430 299.8090 295.9330 300.000
+ 11 0.0000 0.0000 4.5000 -11.7500 60.729 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 299.2860 298.2350 299.6730 295.9290 300.000
+ 12 0.0000 0.0000 4.5000 -11.5000 60.668 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 299.2930 298.2340 300.2340 295.8870 300.000
+# Sum of Counts = 239
+# Center of Mass = -13.217573+/-1.210192
+# Full Width Half-Maximum = 1.578152+/-0.751928
+# 9:02:23 PM 10/25/2011 scan completed.
+
+9:02:23 PM 10/25/2011 Executing "scantitle "Optical phonons at T (-1,0,3.5)""
+
+Setting the scantitle to:
+Optical phonons at T (-1,0,3.5)
+
+
+9:02:23 PM 10/25/2011 Executing "scan h -1 k 0 l 3.5 e -14.25 -11.5 0.25 preset mcu 1.0"
+
+
+# scan = 95
+# date = 10/25/2011
+# time = 9:02:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h -1 k 0 l 3.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at T (-1,0,3.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -14.2500 60.611 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.1190 52.7596 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.4439 5.0000 19.2500 299.3280 298.2420 300.5840 295.7840 300.000
+ 2 -1.0000 0.0000 3.5000 -14.0000 60.885 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.2029 53.3943 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.4439 5.0000 19.0000 299.3340 298.2430 300.2770 295.7720 300.000
+ 3 -1.0000 0.0000 3.5000 -13.7500 60.673 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.2882 54.0303 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.4439 5.0000 18.7500 299.3200 298.2380 299.9210 295.8720 300.000
+ 4 -1.0000 0.0000 3.5000 -13.5000 60.474 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.3749 54.6679 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.4439 5.0000 18.5000 299.2990 298.2310 299.6630 295.8650 300.000
+ 5 -1.0000 0.0000 3.5000 -13.2500 60.536 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.4626 55.3071 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.4439 5.0000 18.2500 299.2880 298.2260 299.9710 295.8850 300.000
+ 6 -1.0000 0.0000 3.5000 -13.0000 60.547 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5511 55.9484 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.4439 5.0000 18.0000 299.3110 298.2330 300.5450 295.8370 300.000
+ 7 -1.0000 0.0000 3.5000 -12.7500 60.643 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.6402 56.5918 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.4439 5.0000 17.7500 299.3280 298.2380 300.4870 295.8470 300.000
+ 8 -1.0000 0.0000 3.5000 -12.5000 60.892 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.7296 57.2376 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.4439 5.0000 17.5000 299.3250 298.2360 300.1610 295.9220 300.000
+ 9 -1.0000 0.0000 3.5000 -12.2500 60.849 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.8191 57.8861 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.4439 5.0000 17.2500 299.3100 298.2280 299.8280 295.9100 300.000
+ 10 -1.0000 0.0000 3.5000 -12.0000 60.957 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.9085 58.5375 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.4439 5.0000 17.0000 299.2960 298.2210 299.6660 295.7550 300.000
+ 11 -1.0000 0.0000 3.5000 -11.7500 60.679 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.9976 59.1920 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.4439 5.0000 16.7500 299.3000 298.2190 300.2020 295.8560 300.000
+ 12 -1.0000 0.0000 3.5000 -11.5000 60.652 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.0861 59.8500 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.4439 5.0000 16.5000 299.3190 298.2250 300.6110 295.8580 300.000
+# Sum of Counts = 81
+# Center of Mass = -12.938272+/-2.035027
+# Full Width Half-Maximum = 1.613085+/-1.141048
+# 9:15:24 PM 10/25/2011 scan completed.
+
+9:15:24 PM 10/25/2011 Executing "scantitle "Optical phonons at T (1,0,-0.5)""
+
+Setting the scantitle to:
+Optical phonons at T (1,0,-0.5)
+
+
+9:15:24 PM 10/25/2011 Executing "scan h 1 k 0 l -0.5 e -14.25 -11.5 0.25 preset mcu 1.0"
+
+
+# scan = 96
+# date = 10/25/2011
+# time = 9:15:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at T (1,0,-0.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.5000 -14.2500 60.473 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 43.7449 16.2619 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 1.6163 5.0000 19.2500 299.3180 298.2280 300.1910 296.0380 300.000
+ 2 1.0000 0.0000 -0.5000 -14.0000 60.103 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 46.2636 17.5485 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 1.6164 5.0000 19.0000 299.3020 298.2210 299.8420 296.0300 300.000
+ 3 1.0000 0.0000 -0.5000 -13.7500 60.511 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6299 18.7576 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 1.6164 5.0000 18.7500 299.2830 298.2120 299.6650 295.9790 300.000
+ 4 1.0000 0.0000 -0.5000 -13.5000 60.230 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.8720 19.9036 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.6163 5.0000 18.5000 299.2850 298.2100 300.1400 295.9200 300.000
+ 5 1.0000 0.0000 -0.5000 -13.2500 60.941 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 53.0106 20.9969 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.6163 5.0000 18.2500 299.3090 298.2150 300.5850 295.9220 300.000
+ 6 1.0000 0.0000 -0.5000 -13.0000 60.703 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.0615 22.0457 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.6164 5.0000 18.0000 299.3210 298.2190 300.4200 295.9310 300.000
+ 7 1.0000 0.0000 -0.5000 -12.7499 60.629 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.0369 23.0563 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.6163 5.0000 17.7499 299.3190 298.2170 300.0830 295.9630 300.000
+ 8 1.0000 0.0000 -0.5000 -12.5000 60.054 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.9468 24.0337 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6163 5.0000 17.5000 299.3000 298.2100 299.7490 296.0060 300.000
+ 9 1.0000 0.0000 -0.5000 -12.2500 60.618 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 60.7992 24.9819 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.6164 5.0000 17.2500 299.2830 298.2010 299.7120 295.9470 300.000
+ 10 1.0000 0.0000 -0.5000 -12.0000 60.654 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6008 25.9045 -2.7386 0.5000 0.0000 0.0000 160.9180 -38.1638 1.6164 5.0000 17.0000 299.2930 298.2010 300.3790 295.9480 300.000
+ 11 1.0000 0.0000 -0.5000 -11.7500 60.784 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.3572 26.8042 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6163 5.0000 16.7500 299.3160 298.2070 300.6040 295.9410 300.000
+ 12 1.0000 0.0000 -0.5000 -11.5000 60.551 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.0732 27.6836 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6164 5.0000 16.5000 299.3230 298.2090 300.3660 295.9670 300.000
+# Sum of Counts = 120
+# Center of Mass = -12.852077+/-1.660756
+# Full Width Half-Maximum = 1.576517+/-0.937388
+# 9:28:46 PM 10/25/2011 scan completed.
+
+9:28:46 PM 10/25/2011 Executing "scantitle "Optical phonons at T (1,0,2.5)""
+
+Setting the scantitle to:
+Optical phonons at T (1,0,2.5)
+
+
+9:28:46 PM 10/25/2011 Executing "scan h 1 k 0 l 2.5 e -14.25 -11.5 0.25 preset mcu 1.0"
+
+
+# scan = 97
+# date = 10/25/2011
+# time = 9:28:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 2.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 2.5 e -14.25 -11.5 0.25 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optical phonons at T (1,0,2.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 2.5000 -14.2500 60.793 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.0977 38.5029 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.0719 5.0000 19.2500 299.3200 298.2050 299.8910 295.6940 300.000
+ 2 1.0000 0.0000 2.5000 -13.9999 60.989 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2652 39.2056 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0263 2.0718 5.0000 18.9999 299.3030 298.1970 299.6680 295.7180 300.000
+ 3 1.0000 0.0000 2.5000 -13.7500 60.839 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4228 39.9038 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.0719 5.0000 18.7500 299.2870 298.1890 300.0390 295.8310 300.000
+ 4 1.0000 0.0000 2.5000 -13.5000 60.676 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.5715 40.5982 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.0719 5.0000 18.5000 299.3100 298.1940 300.6020 295.8630 300.000
+ 5 1.0000 0.0000 2.5000 -13.2500 60.703 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.7117 41.2892 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7851 2.0718 5.0000 18.2499 299.3280 298.2000 300.4950 295.8200 300.000
+ 6 1.0000 0.0000 2.5000 -13.0000 60.441 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8441 41.9771 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.0719 5.0000 18.0000 299.3250 298.1990 300.1470 295.8710 300.000
+ 7 1.0000 0.0000 2.5000 -12.7500 60.586 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.9694 42.6623 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.0719 5.0000 17.7500 299.3060 298.1930 299.8090 295.9260 300.000
+ 8 1.0000 0.0000 2.5000 -12.5000 61.100 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.0880 43.3452 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.0719 5.0000 17.5000 299.2840 298.1850 299.6620 295.9390 300.000
+ 9 1.0000 0.0000 2.5000 -12.2500 60.920 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 38.2005 44.0261 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.0718 5.0000 17.2500 299.2890 298.1810 300.2430 295.9730 300.000
+ 10 1.0000 0.0000 2.5000 -12.0000 60.436 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.3074 44.7055 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.0719 5.0000 17.0000 299.3100 298.1860 300.6160 295.9680 300.000
+ 11 1.0000 0.0000 2.5000 -11.7500 60.459 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 40.4092 45.3835 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.0719 5.0000 16.7500 299.3220 298.1890 300.4120 295.9620 300.000
+ 12 1.0000 0.0000 2.5000 -11.5000 60.763 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.5064 46.0606 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.0719 5.0000 16.5000 299.3150 298.1870 300.0600 295.9630 300.000
+# Sum of Counts = 172
+# Center of Mass = -12.968019+/-1.399684
+# Full Width Half-Maximum = 1.586260+/-0.800510
+# 9:41:42 PM 10/25/2011 scan completed.
+
+9:58:53 PM 10/25/2011 Executing "scantitle "Looking for TO mode at Gamma (1,0,1)""
+
+Setting the scantitle to:
+Looking for TO mode at Gamma (1,0,1)
+
+
+10:01:22 PM 10/25/2011 Executing "scan h 1 k 0 l 1 e -10.375 -7.375 0.25 preset mcu 2.0"
+
+
+# scan = 98
+# date = 10/25/2011
+# time = 10:01:22 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -10.375 -7.375 0.25 preset mcu 2.0
+# builtin_command = scan h 1 k 0 l 1 e -10.375 -7.375 0.25 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Looking for TO mode at Gamma (1,0,1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -10.3750 121.299 27.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 49.3521 34.0670 -2.7386 0.5000 0.0000 0.0000 159.8938 -40.2125 1.6801 5.0000 15.3750 299.2840 298.1410 300.3570 295.9770 300.000
+ 2 1.0000 0.0000 1.0000 -10.1250 121.097 29.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.8020 34.8324 -2.7386 0.5000 0.0000 0.0000 159.7210 -40.5579 1.6801 5.0000 15.1250 299.3140 298.1520 300.3850 295.9510 300.000
+ 3 1.0000 0.0000 1.0000 -9.8750 121.487 43.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.2364 35.5901 -2.7386 0.5000 0.0000 0.0000 159.5438 -40.9124 1.6801 5.0000 14.8750 299.2890 298.1430 299.7070 295.8900 300.000
+ 4 1.0000 0.0000 1.0000 -9.6250 121.487 45.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 53.6564 36.3410 -2.7386 0.5000 0.0000 0.0000 159.3617 -41.2765 1.6801 5.0000 14.6250 299.2870 298.1370 300.4400 295.8410 300.000
+ 5 1.0000 0.0000 1.0000 -9.3750 121.667 44.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.0634 37.0856 -2.7386 0.5000 0.0000 0.0000 159.1748 -41.6504 1.6801 5.0000 14.3750 299.3110 298.1430 300.3020 295.8500 300.000
+ 6 1.0000 0.0000 1.0000 -9.1250 121.180 42.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 56.4587 37.8248 -2.7386 0.5000 0.0000 0.0000 158.9826 -42.0346 1.6801 5.0000 14.1250 299.2810 298.1280 299.6640 295.9060 300.000
+ 7 1.0000 0.0000 1.0000 -8.8750 121.424 33.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.8432 38.5590 -2.7386 0.5000 0.0000 0.0000 158.7850 -42.4298 1.6801 5.0000 13.8750 299.2840 298.1260 300.5500 296.0340 300.000
+ 8 1.0000 0.0000 1.0000 -8.6250 121.098 54.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.2180 39.2889 -2.7386 0.5000 0.0000 0.0000 158.5818 -42.8363 1.6801 5.0000 13.6250 299.3010 298.1310 300.2130 296.0310 300.000
+ 9 1.0000 0.0000 1.0000 -8.3750 120.548 26.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 60.5841 40.0149 -2.7386 0.5000 0.0000 0.0000 158.3726 -43.2547 1.6801 5.0000 13.3750 299.2710 298.1150 299.6470 295.9340 300.000
+ 10 1.0000 0.0000 1.0000 -8.1250 121.370 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.9424 40.7376 -2.7386 0.5000 0.0000 0.0000 158.1571 -43.6857 1.6801 5.0000 13.1250 299.2950 298.1180 300.8220 295.9540 300.000
+ 11 1.0000 0.0000 1.0000 -7.8750 120.892 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.2938 41.4574 -2.7386 0.5000 0.0000 0.0000 157.9350 -44.1299 1.6801 5.0000 12.8750 299.3360 298.1330 300.5750 295.9150 300.000
+ 12 1.0000 0.0000 1.0000 -7.6250 120.753 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 64.6392 42.1748 -2.7386 0.5000 0.0000 0.0000 157.7061 -44.5879 1.6801 5.0000 12.6250 299.3160 298.1240 299.7950 295.8840 300.000
+ 13 1.0000 0.0000 1.0000 -7.3750 122.213 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.9794 42.8904 -2.7386 0.5000 0.0000 0.0000 157.4698 -45.0605 1.6801 5.0000 12.3750 299.2950 298.1110 300.2620 295.9040 300.000
+# Sum of Counts = 394
+# Center of Mass = -9.138325+/-0.652244
+# Full Width Half-Maximum = 1.547448+/-0.339391
+# 10:28:25 PM 10/25/2011 scan completed.
+
+10:50:24 PM 10/25/2011 Executing "scantitle "Dispersion G-L transverse (-102) zone""
+
+Setting the scantitle to:
+Dispersion G-L transverse (-102) zone
+
+
+10:50:24 PM 10/25/2011 Executing "scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0"
+
+
+# scan = 99
+# date = 10/25/2011
+# time = 10:50:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -1.5000 61.198 280.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.6798 65.8000 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8150 5.0000 6.5000 299.2950 298.0690 300.6430 295.8910 300.000
+ 2 -0.9000 0.0000 2.1000 -1.4500 61.048 285.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4040 65.9768 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8150 5.0000 6.4500 299.3100 298.0720 300.4950 296.0200 300.000
+ 3 -0.9000 0.0000 2.1000 -1.4000 60.803 233.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1275 66.1544 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8150 5.0000 6.4000 299.2980 298.0670 300.1380 296.0530 300.000
+ 4 -0.9000 0.0000 2.1000 -1.3500 60.533 244.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8503 66.3327 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.8150 5.0000 6.3500 299.2820 298.0600 299.7750 295.9650 300.000
+ 5 -0.9000 0.0000 2.1000 -1.3000 61.255 230.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.5724 66.5118 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8150 5.0000 6.3000 299.2620 298.0510 299.6780 295.8940 300.000
+ 6 -0.9000 0.0000 2.1000 -1.2500 60.862 208.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2938 66.6916 -2.7386 0.5000 0.0000 0.0000 147.3728 -65.2542 1.8150 5.0000 6.2500 299.2680 298.0500 300.3580 295.9330 300.000
+ 7 -0.9000 0.0000 2.1000 -1.2000 61.046 125.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.0144 66.8723 -2.7386 0.5000 0.0000 0.0000 147.2250 -65.5497 1.8150 5.0000 6.2000 299.2940 298.0570 300.6410 295.8780 300.000
+ 8 -0.9000 0.0000 2.1000 -1.1500 60.682 108.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7343 67.0538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8150 5.0000 6.1500 299.3050 298.0590 300.3840 295.8120 300.000
+ 9 -0.9000 0.0000 2.1000 -1.1000 60.974 78.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4534 67.2361 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8150 5.0000 6.1000 299.2970 298.0550 300.0130 295.8510 300.000
+ 10 -0.9000 0.0000 2.1000 -1.0500 60.914 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1717 67.4193 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8150 5.0000 6.0500 299.2720 298.0460 299.6810 295.8750 300.000
+ 11 -0.9000 0.0000 2.1000 -1.0000 61.011 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8892 67.6033 -2.7386 0.5000 0.0000 0.0000 146.6132 -66.7735 1.8150 5.0000 6.0000 299.2620 298.0400 299.8350 295.6760 300.000
+ 12 -0.9000 0.0000 2.1000 -0.9500 60.739 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6060 67.7882 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8150 5.0000 5.9500 299.2850 298.0420 300.5540 295.7110 300.000
+ 13 -0.9000 0.0000 2.1000 -0.9000 60.617 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.3219 67.9740 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8150 5.0000 5.9000 299.2990 298.0480 300.6000 295.8310 300.000
+ 14 -0.9000 0.0000 2.1000 -0.8500 60.664 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0370 68.1608 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.8150 5.0000 5.8500 299.3070 298.0500 300.2810 295.6780 300.000
+ 15 -0.9000 0.0000 2.1000 -0.8000 61.095 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7512 68.3484 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8150 5.0000 5.8000 299.2970 298.0440 299.9080 295.6660 300.000
+ 16 -0.9000 0.0000 2.1000 -0.7500 60.949 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4646 68.5371 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.8150 5.0000 5.7500 299.2740 298.0340 299.6430 295.6860 300.000
+ 17 -0.9000 0.0000 2.1000 -0.7000 60.986 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1772 68.7267 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8150 5.0000 5.7000 299.2670 298.0290 300.0480 295.6630 300.000
+ 18 -0.9000 0.0000 2.1000 -0.6500 60.939 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.8888 68.9172 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.8150 5.0000 5.6500 299.2940 298.0370 300.6250 295.7030 300.000
+ 19 -0.9000 0.0000 2.1000 -0.6000 61.140 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5995 69.1088 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.8150 5.0000 5.6000 299.3070 298.0390 300.5190 295.7540 300.000
+ 20 -0.9000 0.0000 2.1000 -0.5500 60.796 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.3093 69.3015 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.8150 5.0000 5.5500 299.3000 298.0350 300.1410 295.8270 300.000
+ 21 -0.9000 0.0000 2.1000 -0.5000 60.902 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.0181 69.4952 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.8150 5.0000 5.5000 299.2790 298.0270 299.7900 295.8140 300.000
+ 22 -0.9000 0.0000 2.1000 -0.4500 60.974 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7260 69.6900 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.8150 5.0000 5.4500 299.2620 298.0170 299.6580 295.7190 300.000
+ 23 -0.9000 0.0000 2.1000 -0.4000 60.730 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.4330 69.8858 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9088 1.8150 5.0000 5.4000 299.2680 298.0160 300.3160 295.7860 300.000
+ 24 -0.9000 0.0000 2.1000 -0.3500 61.067 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.1389 70.0828 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.8150 5.0000 5.3500 299.2910 298.0220 300.6510 295.7980 300.000
+ 25 -0.9000 0.0000 2.1000 -0.3000 60.689 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8438 70.2810 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 1.8150 5.0000 5.3000 299.3020 298.0240 300.4070 295.7510 300.000
+# Sum of Counts = 2228
+# Center of Mass = -1.225337+/-0.037205
+# Full Width Half-Maximum = 0.569556+/-0.021096
+# 11:17:33 PM 10/25/2011 scan completed.
+
+11:17:33 PM 10/25/2011 Executing "scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0"
+
+
+# scan = 100
+# date = 10/25/2011
+# time = 11:17:33 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.8000 0.0000 2.2000 -6.0000 61.029 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.2391 48.5425 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.7270 5.0000 11.0000 299.2780 298.0180 299.8960 295.9710 300.000
+ 2 -0.8000 0.0000 2.2000 -5.8999 61.032 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.7236 48.8280 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1931 1.7270 5.0000 10.8999 299.2560 298.0090 299.6450 295.8190 300.000
+ 3 -0.8000 0.0000 2.2000 -5.8000 60.529 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.2080 49.1138 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.7270 5.0000 10.8000 299.2520 298.0030 300.0300 295.8310 300.000
+ 4 -0.8000 0.0000 2.2000 -5.7000 61.092 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.6923 49.4000 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.7270 5.0000 10.7000 299.2730 298.0100 300.6210 295.9330 300.000
+ 5 -0.8000 0.0000 2.2000 -5.6000 60.812 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.1763 49.6866 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.7270 5.0000 10.6000 299.2890 298.0140 300.5160 295.9650 300.000
+ 6 -0.8000 0.0000 2.2000 -5.5000 60.979 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.6601 49.9735 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.7270 5.0000 10.5000 299.2810 298.0090 300.1620 295.9550 300.000
+ 7 -0.8000 0.0000 2.2000 -5.4000 60.879 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1436 50.2609 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.7270 5.0000 10.4000 299.2660 298.0020 299.7970 295.9400 300.000
+ 8 -0.8000 0.0000 2.2000 -5.3000 61.192 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.6268 50.5488 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6689 1.7270 5.0000 10.3000 299.2440 297.9920 299.6590 295.8650 300.000
+ 9 -0.8000 0.0000 2.2000 -5.2000 61.284 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.1097 50.8372 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.7270 5.0000 10.2000 299.2540 297.9910 300.2910 295.8290 300.000
+ 10 -0.8000 0.0000 2.2000 -5.1000 60.809 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.5921 51.1260 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.7270 5.0000 10.1000 299.2780 297.9970 300.6490 295.8400 300.000
+ 11 -0.8000 0.0000 2.2000 -5.0000 60.979 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.0740 51.4155 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.7270 5.0000 10.0000 299.2860 297.9980 300.4280 295.9370 300.000
+ 12 -0.8000 0.0000 2.2000 -4.9000 60.888 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.5555 51.7055 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.7270 5.0000 9.9000 299.2800 297.9950 300.0350 295.7330 300.000
+ 13 -0.8000 0.0000 2.2000 -4.8000 60.942 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.0364 51.9961 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.7270 5.0000 9.8000 299.2680 297.9860 299.6950 295.6460 300.000
+ 14 -0.8000 0.0000 2.2000 -4.7000 61.298 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.5167 52.2874 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.7270 5.0000 9.7000 299.2470 297.9770 299.7940 295.6950 300.000
+ 15 -0.8000 0.0000 2.2000 -4.6000 60.647 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.9964 52.5794 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.7270 5.0000 9.6000 299.2640 297.9800 300.5160 295.7130 300.000
+ 16 -0.8000 0.0000 2.2000 -4.5000 60.900 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4754 52.8721 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.7270 5.0000 9.5000 299.2790 297.9850 300.6000 295.8610 300.000
+ 17 -0.8000 0.0000 2.2000 -4.4000 60.832 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.9537 53.1655 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.7270 5.0000 9.4000 299.2800 297.9830 300.2760 295.9620 300.000
+ 18 -0.8000 0.0000 2.2000 -4.3000 61.117 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4312 53.4597 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4634 1.7270 5.0000 9.3000 299.2650 297.9780 299.9030 295.8460 300.000
+ 19 -0.8000 0.0000 2.2000 -4.2000 60.843 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9079 53.7548 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.7270 5.0000 9.2000 299.2520 297.9700 299.6400 295.6940 300.000
+ 20 -0.8000 0.0000 2.2000 -4.1000 61.048 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.3837 54.0506 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.7270 5.0000 9.1000 299.2450 297.9650 300.0830 295.7440 300.000
+ 21 -0.8000 0.0000 2.2000 -4.0000 60.939 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8586 54.3474 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.7270 5.0000 9.0000 299.2710 297.9710 300.6410 295.6930 300.000
+ 22 -0.8000 0.0000 2.2000 -3.9000 60.752 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3326 54.6452 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.7270 5.0000 8.9000 299.2830 297.9730 300.4960 295.7850 300.000
+ 23 -0.8000 0.0000 2.2000 -3.8000 60.973 73.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.8055 54.9438 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.7270 5.0000 8.8000 299.2720 297.9700 300.1380 295.9460 300.000
+ 24 -0.8000 0.0000 2.2000 -3.7000 60.766 112.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2773 55.2435 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.7270 5.0000 8.7000 299.2520 297.9620 299.7780 295.9710 300.000
+ 25 -0.8000 0.0000 2.2000 -3.6000 60.648 136.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.7481 55.5442 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.7270 5.0000 8.6000 299.2310 297.9520 299.6800 295.8770 300.000
+ 26 -0.8000 0.0000 2.2000 -3.5000 61.090 122.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2177 55.8460 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.7270 5.0000 8.5000 299.2400 297.9510 300.3380 295.8720 300.000
+ 27 -0.8000 0.0000 2.2000 -3.4000 60.727 156.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6860 56.1490 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.7270 5.0000 8.4000 299.2590 297.9540 300.6350 296.0080 300.000
+ 28 -0.8000 0.0000 2.2000 -3.3000 61.121 124.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1531 56.4531 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.7270 5.0000 8.3000 299.2640 297.9570 300.3680 296.0050 300.000
+ 29 -0.8000 0.0000 2.2000 -3.2000 60.816 86.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6188 56.7584 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.7270 5.0000 8.2000 299.2600 297.9540 299.9910 295.8910 300.000
+ 30 -0.8000 0.0000 2.2000 -3.1000 61.065 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.0832 57.0650 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.7270 5.0000 8.1000 299.2410 297.9450 299.6680 295.8910 300.000
+ 31 -0.8000 0.0000 2.2000 -3.0000 61.018 64.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.5461 57.3729 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.7270 5.0000 8.0000 299.2240 297.9360 299.8700 295.9600 300.000
+ 32 -0.8000 0.0000 2.2000 -2.9000 60.652 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0075 57.6822 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.7270 5.0000 7.9000 299.2400 297.9390 300.5760 295.9970 300.000
+ 33 -0.8000 0.0000 2.2000 -2.8000 60.505 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.4674 57.9929 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.7270 5.0000 7.8000 299.2600 297.9430 300.5710 295.9740 300.000
+ 34 -0.8000 0.0000 2.2000 -2.7000 60.972 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.9256 58.3050 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.7270 5.0000 7.7000 299.2580 297.9420 300.2300 296.0670 300.000
+ 35 -0.8000 0.0000 2.2000 -2.6000 60.879 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.3821 58.6187 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.7270 5.0000 7.6000 299.2410 297.9350 299.8520 296.0970 300.000
+ 36 -0.8000 0.0000 2.2000 -2.5000 61.345 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8368 58.9339 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7270 5.0000 7.5000 299.2200 297.9260 299.6260 296.0610 300.000
+ 37 -0.8000 0.0000 2.2000 -2.4000 61.094 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2898 59.2508 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.7270 5.0000 7.4000 299.2170 297.9210 300.1940 296.0250 300.000
+ 38 -0.8000 0.0000 2.2000 -2.3000 60.745 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.7408 59.5694 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.7270 5.0000 7.3000 299.2480 297.9290 300.6650 295.8830 300.000
+ 39 -0.8000 0.0000 2.2000 -2.2000 60.868 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1898 59.8896 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7270 5.0000 7.2000 299.2640 297.9310 300.4780 295.8760 300.000
+ 40 -0.8000 0.0000 2.2000 -2.1000 61.023 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.6368 60.2118 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.7270 5.0000 7.1000 299.2540 297.9290 300.0810 295.8610 300.000
+ 41 -0.8000 0.0000 2.2000 -2.0000 60.714 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.0818 60.5358 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.7270 5.0000 7.0000 299.2330 297.9200 299.7270 295.9360 300.000
+# Sum of Counts = 1682
+# Center of Mass = -3.717598+/-0.129741
+# Full Width Half-Maximum = 1.639188+/-0.054053
+# 12:01:16 AM 10/26/2011 scan completed.
+
+12:01:16 AM 10/26/2011 Executing "scan h -0.7 k 0 l 2.3 e -7.0 -2.5 0.1 preset mcu 1.0"
+
+
+# scan = 101
+# date = 10/26/2011
+# time = 12:01:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.7 k 0 l 2.3 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.7 k 0 l 2.3 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -7.0000 61.267 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.3659 42.8962 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6514 5.0000 12.0000 299.2210 297.9120 299.8930 295.7340 300.000
+ 2 -0.7000 0.0000 2.3000 -6.9000 61.061 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.8229 43.1825 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.6514 5.0000 11.9000 299.2400 297.9170 300.5870 295.8080 300.000
+ 3 -0.7000 0.0000 2.3000 -6.8000 60.866 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.2805 43.4686 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.6514 5.0000 11.8000 299.2580 297.9210 300.5810 295.8040 300.000
+ 4 -0.7000 0.0000 2.3000 -6.7000 61.007 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.7386 43.7546 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 1.6514 5.0000 11.7000 299.2600 297.9200 300.2210 295.7290 300.000
+ 5 -0.7000 0.0000 2.3000 -6.6000 61.013 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.1973 44.0404 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.6514 5.0000 11.6000 299.2480 297.9130 299.8350 295.6860 300.000
+ 6 -0.7000 0.0000 2.3000 -6.5000 61.287 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.6564 44.3260 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8417 1.6514 5.0000 11.5000 299.2250 297.9030 299.6350 295.6750 300.000
+ 7 -0.7000 0.0000 2.3000 -6.4000 60.951 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1159 44.6116 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6514 5.0000 11.4000 299.2200 297.9000 300.2090 295.8200 300.000
+ 8 -0.7000 0.0000 2.3000 -6.3000 60.569 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5758 44.8972 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6514 5.0000 11.3000 299.2440 297.9050 300.6580 295.8520 300.000
+ 9 -0.7000 0.0000 2.3000 -6.2000 60.619 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.0359 45.1827 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6514 5.0000 11.2000 299.2580 297.9080 300.4540 295.7010 300.000
+ 10 -0.7000 0.0000 2.3000 -6.0999 60.928 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.4964 45.4682 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7297 1.6514 5.0000 11.0999 299.2560 297.9030 300.0750 295.7530 300.000
+ 11 -0.7000 0.0000 2.3000 -6.0000 60.814 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.9570 45.7538 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6514 5.0000 11.0000 299.2350 297.8950 299.7160 295.6200 300.000
+ 12 -0.7000 0.0000 2.3000 -5.9000 61.384 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.4179 46.0394 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6514 5.0000 10.9000 299.2210 297.8860 299.7160 295.6020 300.000
+ 13 -0.7000 0.0000 2.3000 -5.8000 60.756 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.8788 46.3251 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6514 5.0000 10.8000 299.2310 297.8880 300.4910 295.7070 300.000
+ 14 -0.7000 0.0000 2.3000 -5.7000 60.754 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.3398 46.6109 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6514 5.0000 10.7000 299.2580 297.8960 300.6640 295.7010 300.000
+ 15 -0.7000 0.0000 2.3000 -5.6000 60.760 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.8009 46.8968 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6514 5.0000 10.6000 299.2630 297.8960 300.3350 295.7290 300.000
+ 16 -0.7000 0.0000 2.3000 -5.5000 61.148 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.2619 47.1830 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6514 5.0000 10.5000 299.2440 297.8880 299.9520 295.8560 300.000
+ 17 -0.7000 0.0000 2.3000 -5.4000 61.049 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.7228 47.4693 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.6514 5.0000 10.4000 299.2190 297.8780 299.6450 295.7850 300.000
+ 18 -0.7000 0.0000 2.3000 -5.3000 60.815 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.1837 47.7558 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6514 5.0000 10.3000 299.2110 297.8710 299.9330 295.7400 300.000
+ 19 -0.7000 0.0000 2.3000 -5.2000 60.814 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6443 48.0426 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 1.6514 5.0000 10.2000 299.2390 297.8770 300.6160 295.7200 300.000
+ 20 -0.7000 0.0000 2.3000 -5.1000 60.953 75.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1048 48.3297 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6514 5.0000 10.1000 299.2520 297.8800 300.5720 295.7420 300.000
+ 21 -0.7000 0.0000 2.3000 -5.0000 60.692 80.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5650 48.6171 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 1.6514 5.0000 10.0000 299.2520 297.8800 300.2170 295.8440 300.000
+ 22 -0.7000 0.0000 2.3000 -4.9000 60.929 75.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0248 48.9048 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6514 5.0000 9.9000 299.2360 297.8740 299.8220 295.6990 300.000
+ 23 -0.7000 0.0000 2.3000 -4.8000 60.555 65.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4843 49.1929 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6514 5.0000 9.8000 299.2220 297.8640 299.6130 295.5800 300.000
+ 24 -0.7000 0.0000 2.3000 -4.7000 60.912 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9434 49.4814 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.6514 5.0000 9.7000 299.2230 297.8620 300.2280 295.6190 300.000
+ 25 -0.7000 0.0000 2.3000 -4.6000 61.050 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.4021 49.7703 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.6514 5.0000 9.6000 299.2480 297.8670 300.6830 295.6340 300.000
+ 26 -0.7000 0.0000 2.3000 -4.5000 60.753 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8602 50.0597 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6514 5.0000 9.5000 299.2550 297.8690 300.4530 295.7550 300.000
+ 27 -0.7000 0.0000 2.3000 -4.4000 61.008 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3178 50.3496 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6514 5.0000 9.4000 299.2410 297.8640 300.0590 295.8990 300.000
+ 28 -0.7000 0.0000 2.3000 -4.3000 61.208 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.7747 50.6400 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6514 5.0000 9.3000 299.2200 297.8560 299.7030 295.8600 300.000
+ 29 -0.7000 0.0000 2.3000 -4.2000 61.100 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2310 50.9310 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6514 5.0000 9.2000 299.2050 297.8470 299.7530 295.8460 300.000
+ 30 -0.7000 0.0000 2.3000 -4.1000 61.121 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.6866 51.2226 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6514 5.0000 9.1000 299.2200 297.8500 300.5330 295.8770 300.000
+ 31 -0.7000 0.0000 2.3000 -4.0000 60.947 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.1414 51.5148 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 1.6514 5.0000 9.0000 299.2400 297.8540 300.6460 295.8630 300.000
+ 32 -0.7000 0.0000 2.3000 -3.9000 61.338 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.5955 51.8076 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6514 5.0000 8.9000 299.2420 297.8540 300.3060 295.8790 300.000
+ 33 -0.7000 0.0000 2.3000 -3.8000 60.957 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0486 52.1012 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.6514 5.0000 8.8000 299.2290 297.8490 299.9200 295.8940 300.000
+ 34 -0.7000 0.0000 2.3000 -3.7000 60.761 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5008 52.3954 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6514 5.0000 8.7000 299.2090 297.8400 299.6270 295.8330 300.000
+ 35 -0.7000 0.0000 2.3000 -3.6000 61.142 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9520 52.6904 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7276 1.6514 5.0000 8.6000 299.2010 297.8320 300.0350 295.7860 300.000
+ 36 -0.7000 0.0000 2.3000 -3.5000 60.896 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.4022 52.9863 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.6514 5.0000 8.5000 299.2270 297.8370 300.6850 295.8220 300.000
+ 37 -0.7000 0.0000 2.3000 -3.4000 60.851 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8514 53.2829 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.6514 5.0000 8.4000 299.2380 297.8410 300.5670 295.9640 300.000
+ 38 -0.7000 0.0000 2.3000 -3.3000 60.966 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2993 53.5805 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.6514 5.0000 8.3000 299.2300 297.8390 300.1960 296.1070 300.000
+ 39 -0.7000 0.0000 2.3000 -3.2000 61.030 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7461 53.8789 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.6514 5.0000 8.2000 299.2110 297.8300 299.8020 296.0760 300.000
+ 40 -0.7000 0.0000 2.3000 -3.1000 60.898 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.1916 54.1783 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.6514 5.0000 8.1000 299.1870 297.8190 299.6510 296.0470 300.000
+ 41 -0.7000 0.0000 2.3000 -3.0000 60.720 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6357 54.4787 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.6514 5.0000 8.0000 299.1900 297.8170 300.3290 296.0370 300.000
+ 42 -0.7000 0.0000 2.3000 -2.9000 60.856 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.0785 54.7801 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.6514 5.0000 7.9000 299.2170 297.8230 300.7030 296.0690 300.000
+ 43 -0.7000 0.0000 2.3000 -2.8000 60.808 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5198 55.0826 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6514 5.0000 7.8000 299.2320 297.8270 300.4340 295.8580 300.000
+ 44 -0.7000 0.0000 2.3000 -2.7000 60.968 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.9596 55.3863 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.6514 5.0000 7.7000 299.2300 297.8240 300.0340 295.8880 300.000
+ 45 -0.7000 0.0000 2.3000 -2.6000 60.795 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3978 55.6911 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.6514 5.0000 7.6000 299.2050 297.8150 299.6790 295.9020 300.000
+ 46 -0.7000 0.0000 2.3000 -2.5000 61.035 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8343 55.9971 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6514 5.0000 7.5000 299.1880 297.8050 299.7880 295.8660 300.000
+# Sum of Counts = 923
+# Center of Mass = -4.995449+/-0.234775
+# Full Width Half-Maximum = 1.965818+/-0.088087
+# 12:50:09 AM 10/26/2011 scan completed.
+
+12:50:09 AM 10/26/2011 Executing "scan h -0.6 k 0 l 2.4 e -7.0 -2.5 0.1 preset mcu 1.0"
+
+
+# scan = 102
+# date = 10/26/2011
+# time = 12:50:09 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.6 k 0 l 2.4 e -7.0 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.6 k 0 l 2.4 e -7.0 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.6000 0.0000 2.4000 -7.0000 60.949 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.4517 40.6066 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5900 5.0000 12.0000 299.2110 297.8110 300.6680 295.8370 300.000
+ 2 -0.6000 0.0000 2.4000 -6.9000 60.494 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.8839 40.8961 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5900 5.0000 11.9000 299.2310 297.8160 300.5660 295.7500 300.000
+ 3 -0.6000 0.0000 2.4000 -6.8000 61.173 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.3170 41.1852 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2074 1.5900 5.0000 11.8000 299.2300 297.8140 300.2000 295.7630 300.000
+ 4 -0.6000 0.0000 2.4000 -6.7000 60.863 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.7511 41.4740 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5900 5.0000 11.7000 299.2100 297.8060 299.8050 295.8620 300.000
+ 5 -0.6000 0.0000 2.4000 -6.6000 60.890 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.1859 41.7623 -2.7386 0.5000 0.0000 0.0000 156.6863 -46.6273 1.5900 5.0000 11.6000 299.1860 297.7950 299.6350 295.7990 300.000
+ 6 -0.6000 0.0000 2.4000 -6.5000 60.795 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.6215 42.0504 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5900 5.0000 11.5000 299.1930 297.7920 300.2920 295.7400 300.000
+ 7 -0.6000 0.0000 2.4000 -6.4000 60.790 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.0578 42.3381 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5900 5.0000 11.4000 299.2230 297.7980 300.6720 295.6690 300.000
+ 8 -0.6000 0.0000 2.4000 -6.3000 60.921 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.4947 42.6256 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 1.5900 5.0000 11.3000 299.2330 297.8000 300.4320 295.7180 300.000
+ 9 -0.6000 0.0000 2.4000 -6.2000 60.755 59.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9322 42.9128 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5900 5.0000 11.2000 299.2240 297.7970 300.0360 295.6360 300.000
+ 10 -0.6000 0.0000 2.4000 -6.1000 60.498 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3702 43.1998 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5900 5.0000 11.1000 299.2070 297.7880 299.6840 295.6450 300.000
+ 11 -0.6000 0.0000 2.4000 -6.0000 61.031 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8087 43.4866 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5900 5.0000 11.0000 299.1840 297.7770 299.7860 295.7580 300.000
+ 12 -0.6000 0.0000 2.4000 -5.9000 61.171 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2476 43.7733 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5900 5.0000 10.9000 299.1960 297.7790 300.5710 295.8020 300.000
+ 13 -0.6000 0.0000 2.4000 -5.8000 61.093 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6868 44.0598 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5900 5.0000 10.8000 299.2220 297.7870 300.6300 295.7490 300.000
+ 14 -0.6000 0.0000 2.4000 -5.7000 61.220 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1263 44.3463 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5900 5.0000 10.7000 299.2260 297.7880 300.2760 295.7330 300.000
+ 15 -0.6000 0.0000 2.4000 -5.6000 60.663 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5661 44.6327 -2.7386 0.5000 0.0000 0.0000 155.5428 -48.9142 1.5900 5.0000 10.6000 299.2130 297.7820 299.8900 295.8300 300.000
+ 16 -0.6000 0.0000 2.4000 -5.5000 61.205 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0061 44.9190 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5900 5.0000 10.5000 299.1860 297.7720 299.6210 295.7780 300.000
+ 17 -0.6000 0.0000 2.4000 -5.4000 61.155 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4462 45.2054 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5900 5.0000 10.4000 299.1790 297.7640 300.1300 295.8260 300.000
+ 18 -0.6000 0.0000 2.4000 -5.3000 60.630 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.8864 45.4917 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5900 5.0000 10.3000 299.2040 297.7710 300.7070 295.8350 300.000
+ 19 -0.6000 0.0000 2.4000 -5.2000 60.746 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.3266 45.7781 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5900 5.0000 10.2000 299.2220 297.7760 300.5310 295.7960 300.000
+ 20 -0.6000 0.0000 2.4000 -5.1000 61.041 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.7669 46.0646 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5900 5.0000 10.1000 299.2180 297.7720 300.1480 295.8210 300.000
+ 21 -0.6000 0.0000 2.4000 -5.0000 60.328 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.2070 46.3511 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5900 5.0000 10.0000 299.1970 297.7630 299.7540 295.8040 300.000
+ 22 -0.6000 0.0000 2.4000 -4.9000 61.132 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.6470 46.6378 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.5900 5.0000 9.9000 299.1750 297.7510 299.6650 295.7900 300.000
+ 23 -0.6000 0.0000 2.4000 -4.8000 60.755 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.0869 46.9247 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5900 5.0000 9.8000 299.1840 297.7520 300.3770 295.7770 300.000
+ 24 -0.6000 0.0000 2.4000 -4.7000 60.955 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.5265 47.2118 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5900 5.0000 9.7000 299.2100 297.7590 300.6850 295.9530 300.000
+ 25 -0.6000 0.0000 2.4000 -4.6000 61.151 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.9658 47.4990 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5900 5.0000 9.6000 299.2140 297.7600 300.4030 295.9380 300.000
+ 26 -0.6000 0.0000 2.4000 -4.5000 61.062 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4048 47.7866 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5900 5.0000 9.5000 299.2030 297.7550 299.9960 295.8310 300.000
+ 27 -0.6000 0.0000 2.4000 -4.4000 60.565 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.8433 48.0744 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5900 5.0000 9.4000 299.1840 297.7450 299.6420 295.8150 300.000
+ 28 -0.6000 0.0000 2.4000 -4.3000 60.820 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.2814 48.3625 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5900 5.0000 9.3000 299.1670 297.7370 299.8680 295.7850 300.000
+ 29 -0.6000 0.0000 2.4000 -4.2000 60.741 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.7190 48.6509 -2.7386 0.5000 0.0000 0.0000 153.6151 -52.7696 1.5900 5.0000 9.2000 299.1900 297.7420 300.6090 295.8120 300.000
+ 30 -0.6000 0.0000 2.4000 -4.1000 61.138 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.1561 48.9397 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5900 5.0000 9.1000 299.2100 297.7480 300.5860 295.9030 300.000
+ 31 -0.6000 0.0000 2.4000 -4.0000 60.663 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5925 49.2290 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5900 5.0000 9.0000 299.2090 297.7470 300.2140 296.0160 300.000
+ 32 -0.6000 0.0000 2.4000 -3.9000 61.141 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.0283 49.5186 -2.7386 0.5000 0.0000 0.0000 153.1390 -53.7217 1.5900 5.0000 8.9000 299.1890 297.7370 299.8240 296.0220 300.000
+ 33 -0.6000 0.0000 2.4000 -3.8000 60.542 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4633 49.8087 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5900 5.0000 8.8000 299.1620 297.7260 299.6350 296.0250 300.000
+ 34 -0.6000 0.0000 2.4000 -3.7000 60.930 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8975 50.0993 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5900 5.0000 8.7000 299.1600 297.7220 300.2380 296.0250 300.000
+ 35 -0.6000 0.0000 2.4000 -3.6000 61.055 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.3309 50.3904 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7276 1.5900 5.0000 8.6000 299.1850 297.7280 300.6950 296.0450 300.000
+ 36 -0.6000 0.0000 2.4000 -3.5000 60.745 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.7634 50.6821 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5900 5.0000 8.5000 299.2020 297.7330 300.4690 295.9300 300.000
+ 37 -0.6000 0.0000 2.4000 -3.4000 60.546 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1948 50.9744 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.5900 5.0000 8.4000 299.2010 297.7310 300.0560 295.8710 300.000
+ 38 -0.6000 0.0000 2.4000 -3.3000 60.961 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.6253 51.2673 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.5900 5.0000 8.3000 299.1780 297.7190 299.6890 295.8130 300.000
+ 39 -0.6000 0.0000 2.4000 -3.2000 61.447 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.0547 51.5609 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.5900 5.0000 8.2000 299.1590 297.7100 299.7730 295.7800 300.000
+ 40 -0.6000 0.0000 2.4000 -3.1000 61.256 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4829 51.8551 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 1.5900 5.0000 8.1000 299.1830 297.7150 300.5550 295.8150 300.000
+ 41 -0.6000 0.0000 2.4000 -3.0000 60.670 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.9098 52.1501 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.5900 5.0000 8.0000 299.2070 297.7200 300.6420 295.9710 300.000
+ 42 -0.6000 0.0000 2.4000 -2.9000 60.751 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3356 52.4459 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.5900 5.0000 7.9000 299.2070 297.7190 300.2920 295.8190 300.000
+ 43 -0.6000 0.0000 2.4000 -2.8000 60.893 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7599 52.7425 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.5900 5.0000 7.8000 299.1910 297.7140 299.8880 295.8030 300.000
+ 44 -0.6000 0.0000 2.4000 -2.7000 60.814 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1828 53.0399 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.5900 5.0000 7.7000 299.1690 297.7030 299.6150 295.7350 300.000
+ 45 -0.6000 0.0000 2.4000 -2.6000 61.083 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6042 53.3382 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.5900 5.0000 7.6000 299.1640 297.6970 300.1330 295.7580 300.000
+ 46 -0.6000 0.0000 2.4000 -2.5000 60.884 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0241 53.6374 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.5900 5.0000 7.5000 299.1860 297.7030 300.7110 295.8110 300.000
+# Sum of Counts = 650
+# Center of Mass = -5.762615+/-0.322073
+# Full Width Half-Maximum = 2.009671+/-0.130905
+# 1:38:58 AM 10/26/2011 scan completed.
+
+1:38:59 AM 10/26/2011 Executing "scan h -0.5 k 0 l 2.5 e -8.5 -3.5 0.1 preset mcu 1.0"
+
+
+# scan = 103
+# date = 10/26/2011
+# time = 1:38:59 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -8.5 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.5 k 0 l 2.5 e -8.5 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -8.5000 61.267 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5856 34.4080 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5445 5.0000 13.5000 299.2010 297.7070 300.4120 295.8760 300.000
+ 2 -0.5000 0.0000 2.5000 -8.4000 61.194 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9698 34.7148 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 1.5446 5.0000 13.4000 299.1910 297.7020 299.9930 295.6910 300.000
+ 3 -0.5000 0.0000 2.5000 -8.3000 61.125 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.3564 35.0202 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.5445 5.0000 13.3000 299.1720 297.6930 299.6390 295.6730 300.000
+ 4 -0.5000 0.0000 2.5000 -8.2000 61.254 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.7454 35.3244 -2.7386 0.5000 0.0000 0.0000 158.2222 -43.5551 1.5445 5.0000 13.2000 299.1500 297.6840 299.8860 295.7360 300.000
+ 5 -0.5000 0.0000 2.5000 -8.1000 60.635 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.1366 35.6274 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 1.5445 5.0000 13.1000 299.1770 297.6900 300.6440 295.7850 300.000
+ 6 -0.5000 0.0000 2.5000 -8.0000 60.943 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 299.1990 297.6960 300.6210 295.8330 300.000
+ 7 -0.5000 0.0000 2.5000 -7.9000 60.886 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.9255 36.2304 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5445 5.0000 12.9000 299.1970 297.6950 300.2470 295.8320 300.000
+ 8 -0.5000 0.0000 2.5000 -7.8000 60.952 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.3230 36.5303 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.5445 5.0000 12.8000 299.1790 297.6860 299.8410 295.7240 300.000
+ 9 -0.5000 0.0000 2.5000 -7.7000 61.191 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.7223 36.8293 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5446 5.0000 12.7000 299.1580 297.6740 299.6150 295.6420 300.000
+ 10 -0.5000 0.0000 2.5000 -7.6000 60.993 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1234 37.1274 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5445 5.0000 12.6000 299.1580 297.6740 300.2320 295.8170 300.000
+ 11 -0.5000 0.0000 2.5000 -7.5000 60.917 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5263 37.4246 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.5445 5.0000 12.5000 299.1840 297.6800 300.7250 295.9310 300.000
+ 12 -0.5000 0.0000 2.5000 -7.4000 61.385 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9308 37.7210 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5445 5.0000 12.4000 299.1960 297.6850 300.4910 295.8460 300.000
+ 13 -0.5000 0.0000 2.5000 -7.3000 61.144 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.3370 38.0166 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.5445 5.0000 12.3000 299.1920 297.6810 300.0850 295.7860 300.000
+ 14 -0.5000 0.0000 2.5000 -7.2000 61.039 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.7446 38.3114 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5445 5.0000 12.2000 299.1640 297.6680 299.7090 295.7770 300.000
+ 15 -0.5000 0.0000 2.5000 -7.1000 60.812 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1536 38.6055 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5445 5.0000 12.1000 299.1440 297.6590 299.7060 295.7220 300.000
+ 16 -0.5000 0.0000 2.5000 -7.0000 61.057 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5640 38.8989 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5445 5.0000 12.0000 299.1590 297.6620 300.5330 295.7780 300.000
+ 17 -0.5000 0.0000 2.5000 -6.9000 61.061 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9756 39.1917 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5445 5.0000 11.9000 299.1740 297.6690 300.7180 295.8540 300.000
+ 18 -0.5000 0.0000 2.5000 -6.8000 61.005 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3885 39.4839 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5445 5.0000 11.8000 299.1830 297.6710 300.3590 295.6970 300.000
+ 19 -0.5000 0.0000 2.5000 -6.7000 61.224 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8025 39.7754 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5445 5.0000 11.7000 299.1710 297.6650 299.9470 295.7920 300.000
+ 20 -0.5000 0.0000 2.5000 -6.6000 61.464 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2176 40.0665 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5445 5.0000 11.6000 299.1460 297.6550 299.6210 295.7470 300.000
+ 21 -0.5000 0.0000 2.5000 -6.5000 60.954 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6337 40.3570 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8417 1.5445 5.0000 11.5000 299.1370 297.6450 299.9870 295.7790 300.000
+ 22 -0.5000 0.0000 2.5000 -6.4000 61.375 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.0507 40.6470 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5445 5.0000 11.4000 299.1610 297.6510 300.6760 295.7620 300.000
+ 23 -0.5000 0.0000 2.5000 -6.3000 61.366 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4686 40.9366 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 1.5445 5.0000 11.3000 299.1820 297.6550 300.6000 295.7210 300.000
+ 24 -0.5000 0.0000 2.5000 -6.2000 61.049 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.8873 41.2258 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5445 5.0000 11.2000 299.1820 297.6560 300.1900 295.8260 300.000
+ 25 -0.5000 0.0000 2.5000 -6.1000 61.210 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.3068 41.5146 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 1.5445 5.0000 11.1000 299.1680 297.6510 299.7790 295.8140 300.000
+ 26 -0.5000 0.0000 2.5000 -6.0000 61.017 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.7270 41.8030 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5445 5.0000 11.0000 299.1430 297.6370 299.6400 295.7080 300.000
+ 27 -0.5000 0.0000 2.5000 -5.9000 61.271 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.1478 42.0911 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5445 5.0000 10.9000 299.1430 297.6350 300.4040 295.8180 300.000
+ 28 -0.5000 0.0000 2.5000 -5.8000 60.980 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5691 42.3790 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5445 5.0000 10.8000 299.1650 297.6400 300.7220 295.7770 300.000
+ 29 -0.5000 0.0000 2.5000 -5.7000 61.022 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.9910 42.6665 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5445 5.0000 10.7000 299.1780 297.6440 300.4390 295.8120 300.000
+ 30 -0.5000 0.0000 2.5000 -5.6000 61.398 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.4133 42.9538 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5445 5.0000 10.6000 299.1690 297.6410 300.0160 295.8760 300.000
+ 31 -0.5000 0.0000 2.5000 -5.5000 61.595 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.8360 43.2409 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5445 5.0000 10.5000 299.1460 297.6300 299.6560 295.8320 300.000
+ 32 -0.5000 0.0000 2.5000 -5.4000 60.693 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2590 43.5278 -2.7386 0.5000 0.0000 0.0000 155.2932 -49.4134 1.5445 5.0000 10.4000 299.1250 297.6200 299.8540 295.8060 300.000
+ 33 -0.5000 0.0000 2.5000 -5.3000 61.390 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6822 43.8146 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5445 5.0000 10.3000 299.1460 297.6220 300.6250 295.7980 300.000
+ 34 -0.5000 0.0000 2.5000 -5.2000 61.042 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1058 44.1013 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5445 5.0000 10.2000 299.1670 297.6290 300.6010 295.8810 300.000
+ 35 -0.5000 0.0000 2.5000 -5.1000 60.902 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5294 44.3878 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5445 5.0000 10.1000 299.1700 297.6280 300.2280 295.8820 300.000
+ 36 -0.5000 0.0000 2.5000 -5.0000 61.372 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9531 44.6744 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5445 5.0000 10.0000 299.1530 297.6180 299.8180 295.7910 300.000
+ 37 -0.5000 0.0000 2.5000 -4.9000 61.405 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3769 44.9608 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.5445 5.0000 9.9000 299.1320 297.6080 299.6010 295.7630 300.000
+ 38 -0.5000 0.0000 2.5000 -4.8000 61.139 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8006 45.2473 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5445 5.0000 9.8000 299.1270 297.6010 300.3090 295.8610 300.000
+ 39 -0.5000 0.0000 2.5000 -4.7000 61.448 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2243 45.5338 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2899 1.5445 5.0000 9.7000 299.1480 297.6050 300.7410 296.0000 300.000
+ 40 -0.5000 0.0000 2.5000 -4.6000 61.175 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.6478 45.8204 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5445 5.0000 9.6000 299.1580 297.6090 300.4870 296.0420 300.000
+ 41 -0.5000 0.0000 2.5000 -4.5000 61.170 0.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0711 46.1070 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5445 5.0000 9.5000 299.1520 297.6070 300.0480 295.9730 300.000
+ 42 -0.5000 0.0000 2.5000 -4.4000 60.948 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4942 46.3937 -2.7386 0.5000 0.0000 0.0000 153.9187 -52.1624 1.5445 5.0000 9.4000 299.1290 297.5950 299.6740 295.9560 300.000
+ 43 -0.5000 0.0000 2.5000 -4.3000 61.267 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.9169 46.6806 -2.7386 0.5000 0.0000 0.0000 153.7682 -52.4633 1.5445 5.0000 9.3000 299.1130 297.5860 299.7830 295.8880 300.000
+ 44 -0.5000 0.0000 2.5000 -4.2000 61.014 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.3392 46.9677 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.5445 5.0000 9.2000 299.1370 297.5890 300.6290 295.8350 300.000
+ 45 -0.5000 0.0000 2.5000 -4.1000 61.405 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7612 47.2549 -2.7386 0.5000 0.0000 0.0000 153.4593 -53.0813 1.5445 5.0000 9.1000 299.1590 297.5960 300.6950 295.8930 300.000
+ 46 -0.5000 0.0000 2.5000 -4.0000 61.292 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.1826 47.5424 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5445 5.0000 9.0000 299.1610 297.5980 300.3250 295.8970 300.000
+ 47 -0.5000 0.0000 2.5000 -3.9000 60.900 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.6035 47.8301 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5445 5.0000 8.9000 299.1510 297.5920 299.9100 295.8610 300.000
+ 48 -0.5000 0.0000 2.5000 -3.8000 61.198 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0237 48.1182 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5446 5.0000 8.8000 299.1220 297.5790 299.6020 295.8400 300.000
+ 49 -0.5000 0.0000 2.5000 -3.7000 61.271 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.4433 48.4065 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5445 5.0000 8.7000 299.1170 297.5750 300.1140 295.7720 300.000
+ 50 -0.5000 0.0000 2.5000 -3.6000 61.361 2.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8621 48.6952 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5445 5.0000 8.6000 299.1460 297.5790 300.7280 295.7620 300.000
+ 51 -0.5000 0.0000 2.5000 -3.5000 61.059 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2802 48.9842 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5445 5.0000 8.5000 299.1600 297.5850 300.5650 295.9040 300.000
+# Sum of Counts = 459
+# Center of Mass = -6.546841+/-0.435714
+# Full Width Half-Maximum = 2.381159+/-0.160064
+# 2:33:17 AM 10/26/2011 scan completed.
+
+2:33:18 AM 10/26/2011 Executing "scantitle "Optic dispersion G (101)""
+
+Setting the scantitle to:
+Optic dispersion G (101)
+
+
+2:33:18 AM 10/26/2011 Executing "scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0"
+
+
+# scan = 104
+# date = 10/26/2011
+# time = 2:33:18 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+# builtin_command = scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion G (101)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -13.5000 245.807 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.0653 23.4158 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.6801 5.0000 18.5000 299.1500 297.5810 299.9520 295.9120 300.000
+ 2 1.0000 0.0000 1.0000 -13.2500 245.717 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.9098 24.3806 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 1.6801 5.0000 18.2500 299.1520 297.5710 300.6250 295.9070 300.000
+ 3 1.0000 0.0000 1.0000 -13.0000 244.752 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.7001 25.3177 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.6801 5.0000 18.0000 299.1080 297.5460 300.2310 295.8900 300.000
+ 4 1.0000 0.0000 1.0000 -12.7500 244.566 21.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4424 26.2302 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.6801 5.0000 17.7500 299.1170 297.5430 299.7010 295.8190 300.000
+ 5 1.0000 0.0000 1.0000 -12.5000 246.080 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6801 5.0000 17.5000 299.1430 297.5420 300.3690 295.9020 300.000
+ 6 1.0000 0.0000 1.0000 -12.2500 245.504 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.6801 5.0000 17.2500 299.1170 297.5230 300.7150 295.9340 300.000
+ 7 1.0000 0.0000 1.0000 -12.0000 246.184 9.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.6801 5.0000 17.0000 299.1000 297.5120 299.5980 295.8240 300.000
+ 8 1.0000 0.0000 1.0000 -11.7500 245.757 31.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 299.1330 297.5150 300.0840 295.8540 300.000
+ 9 1.0000 0.0000 1.0000 -11.5000 245.981 18.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 299.1310 297.5030 300.7210 295.8550 300.000
+ 10 1.0000 0.0000 1.0000 -11.2500 245.127 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1316 31.3166 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.6801 5.0000 16.2500 299.0870 297.4810 299.9390 295.7710 300.000
+ 11 1.0000 0.0000 1.0000 -11.0000 245.428 34.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6488 32.1152 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.6801 5.0000 16.0000 299.1160 297.4840 299.8260 295.8250 300.000
+ 12 1.0000 0.0000 1.0000 -10.7500 245.618 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1446 32.9031 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.6801 5.0000 15.7500 299.1270 297.4780 300.5370 295.9410 300.000
+ 13 1.0000 0.0000 1.0000 -10.5000 245.435 60.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6208 33.6813 -2.7386 0.5000 0.0000 0.0000 159.9784 -40.0430 1.6801 5.0000 15.5000 299.0890 297.4580 300.4880 295.8520 300.000
+ 14 1.0000 0.0000 1.0000 -10.2500 245.177 54.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.0791 34.4507 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.6801 5.0000 15.2500 299.0900 297.4490 299.6530 295.7060 300.000
+ 15 1.0000 0.0000 1.0000 -10.0000 244.246 77.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.6801 5.0000 15.0000 299.1240 297.4540 300.3190 295.8060 300.000
+ 16 1.0000 0.0000 1.0000 -9.7500 245.146 77.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4533 -41.0932 1.6801 5.0000 14.7500 299.0970 297.4340 300.7460 295.7710 300.000
+ 17 1.0000 0.0000 1.0000 -9.5000 245.600 98.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 299.0620 297.4160 299.6180 295.7470 300.000
+ 18 1.0000 0.0000 1.0000 -9.2499 244.884 111.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8413 1.6800 5.0000 14.2499 299.0970 297.4220 300.0580 295.7610 300.000
+ 19 1.0000 0.0000 1.0000 -9.0000 244.286 97.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.6801 5.0000 14.0000 299.0970 297.4100 300.8390 295.7790 300.000
+ 20 1.0000 0.0000 1.0000 -8.7500 244.351 122.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 299.0410 297.3870 299.7040 295.7770 300.000
+ 21 1.0000 0.0000 1.0000 -8.5000 244.726 87.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 299.0690 297.3900 299.9730 295.8200 300.000
+ 22 1.0000 0.0000 1.0000 -8.2500 244.250 45.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.2642 40.3766 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.6801 5.0000 13.2500 299.0780 297.3830 300.6870 295.8670 300.000
+ 23 1.0000 0.0000 1.0000 -8.0000 245.027 29.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6190 41.0978 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6801 5.0000 13.0000 299.0300 297.3610 300.1720 295.7910 300.000
+ 24 1.0000 0.0000 1.0000 -7.7499 245.085 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.9672 41.8164 -2.7386 0.5000 0.0000 0.0000 157.8214 -44.3572 1.6801 5.0000 12.7499 299.0510 297.3620 299.7550 295.7660 300.000
+ 25 1.0000 0.0000 1.0000 -7.5000 245.799 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.3099 42.5328 -2.7386 0.5000 0.0000 0.0000 157.5888 -44.8223 1.6801 5.0000 12.5000 299.0720 297.3610 300.4430 295.8220 300.000
+ 26 1.0000 0.0000 1.0000 -7.2500 246.012 21.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.6477 43.2476 -2.7386 0.5000 0.0000 0.0000 157.3487 -45.3026 1.6801 5.0000 12.2500 299.0410 297.3400 300.6530 295.8440 300.000
+ 27 1.0000 0.0000 1.0000 -7.0000 246.125 23.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.9814 43.9612 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6801 5.0000 12.0000 299.0130 297.3260 299.5890 295.8170 300.000
+# Sum of Counts = 1257
+# Center of Mass = -9.807865+/-0.393638
+# Full Width Half-Maximum = 3.088717+/-0.159512
+# 4:25:16 AM 10/26/2011 scan completed.
+
+4:25:16 AM 10/26/2011 Executing "scantitle "Optic dispersion L (1.5 0 1.5)""
+
+Setting the scantitle to:
+Optic dispersion L (1.5 0 1.5)
+
+
+4:25:16 AM 10/26/2011 Executing "scan h 1.5 k 0 l 1.5 e -14 -10.5 0.25 preset mcu 4.0"
+
+
+# scan = 105
+# date = 10/26/2011
+# time = 4:25:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -14 -10.5 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -14 -10.5 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion L (1.5 0 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -14.0000 246.111 72.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.1228 56.2137 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.5201 5.0000 19.0000 299.0540 297.3330 300.0500 295.8220 300.000
+ 2 1.5000 0.0000 1.5000 -13.7500 246.251 73.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.0066 56.8466 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.5201 5.0000 18.7500 299.0490 297.3220 300.7450 295.8610 300.000
+ 3 1.5000 0.0000 1.5000 -13.5000 246.914 96.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.8899 57.4818 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.5201 5.0000 18.5000 299.0000 297.3000 300.0140 295.8180 300.000
+ 4 1.5000 0.0000 1.5000 -13.2500 247.037 85.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.7729 58.1194 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.5201 5.0000 18.2500 299.0240 297.3030 299.7680 295.7450 300.000
+ 5 1.5000 0.0000 1.5000 -13.0000 247.733 107.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.6558 58.7596 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.5201 5.0000 18.0000 299.0570 297.3050 300.4840 295.8000 300.000
+ 6 1.5000 0.0000 1.5000 -12.7500 247.340 83.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.5389 59.4026 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.5201 5.0000 17.7500 299.0230 297.2850 300.6950 295.7660 300.000
+ 7 1.5000 0.0000 1.5000 -12.5000 248.108 99.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 76.4223 60.0489 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.5201 5.0000 17.5000 299.0010 297.2730 299.5870 295.8080 300.000
+ 8 1.5000 0.0000 1.5000 -12.2500 248.602 86.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.3063 60.6984 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.5201 5.0000 17.2500 299.0360 297.2810 300.1640 295.8960 300.000
+ 9 1.5000 0.0000 1.5000 -12.0000 247.820 82.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.1910 61.3516 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.5201 5.0000 17.0000 299.0270 297.2700 300.7760 295.9160 300.000
+ 10 1.5000 0.0000 1.5000 -11.7500 248.168 75.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.0767 62.0086 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.5201 5.0000 16.7500 298.9860 297.2520 299.9250 295.7630 300.000
+ 11 1.5000 0.0000 1.5000 -11.5000 248.813 49.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.9636 62.6697 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.5201 5.0000 16.5000 299.0150 297.2530 299.8190 295.8200 300.000
+ 12 1.5000 0.0000 1.5000 -11.2500 248.214 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.8520 63.3352 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.5201 5.0000 16.2500 299.0220 297.2510 300.5240 295.8910 300.000
+ 13 1.5000 0.0000 1.5000 -11.0000 250.252 30.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.7419 64.0054 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.5201 5.0000 16.0000 298.9950 297.2340 300.6970 295.7940 300.000
+ 14 1.5000 0.0000 1.5000 -10.7500 249.071 47.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.6338 64.6804 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.5201 5.0000 15.7500 298.9800 297.2240 299.5870 295.7430 300.000
+ 15 1.5000 0.0000 1.5000 -10.5000 250.571 29.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.5277 65.3608 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.5201 5.0000 15.5000 299.0140 297.2310 300.1300 295.8620 300.000
+# Sum of Counts = 1049
+# Center of Mass = -12.533603+/-0.548061
+# Full Width Half-Maximum = 1.904666+/-0.268276
+# 5:28:06 AM 10/26/2011 scan completed.
+
+5:28:06 AM 10/26/2011 Executing "scantitle "Optic dispersion X (1.5 0 0)""
+
+Setting the scantitle to:
+Optic dispersion X (1.5 0 0)
+
+
+5:28:06 AM 10/26/2011 Executing "scan h 1.5 k 0 l 0 e -13 -9 0.25 preset mcu 4.0"
+
+
+# scan = 106
+# date = 10/26/2011
+# time = 5:28:06 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -13 -9 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 0 e -13 -9 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion X (1.5 0 0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -13.0000 251.366 58.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1828 54.0250 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3918 5.0000 18.0000 299.0120 297.2230 300.7330 295.9290 300.000
+ 2 1.5000 0.0000 0.0000 -12.7500 251.326 61.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1152 54.6699 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3918 5.0000 17.7500 298.9740 297.2040 300.3050 295.8370 300.000
+ 3 1.5000 0.0000 0.0000 -12.5000 250.834 54.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.0466 55.3168 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3918 5.0000 17.5000 298.9790 297.2020 299.6710 295.8820 300.000
+ 4 1.5000 0.0000 0.0000 -12.2500 251.138 59.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9774 55.9658 -2.7386 0.5000 0.0000 0.0000 161.0621 -37.8756 2.3918 5.0000 17.2500 299.0010 297.2070 300.3070 295.9190 300.000
+ 5 1.5000 0.0000 0.0000 -12.0000 251.159 53.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.9078 56.6172 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3918 5.0000 17.0000 298.9910 297.1960 300.8430 295.8920 300.000
+ 6 1.5000 0.0000 0.0000 -11.7500 250.966 58.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8381 57.2712 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3918 5.0000 16.7500 298.9620 297.1810 299.7500 295.7990 300.000
+ 7 1.5000 0.0000 0.0000 -11.5000 253.166 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7685 57.9282 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3918 5.0000 16.5000 298.9850 297.1860 299.8630 295.7810 300.000
+ 8 1.5000 0.0000 0.0000 -11.2500 252.299 34.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6992 58.5884 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0696 2.3918 5.0000 16.2500 299.0020 297.1830 300.5580 295.8340 300.000
+ 9 1.5000 0.0000 0.0000 -11.0000 253.333 52.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6306 59.2520 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3918 5.0000 16.0000 298.9780 297.1700 300.6950 295.7880 300.000
+ 10 1.5000 0.0000 0.0000 -10.7500 253.048 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5628 59.9193 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.3918 5.0000 15.7500 298.9590 297.1600 299.5750 295.7500 300.000
+ 11 1.5000 0.0000 0.0000 -10.5000 253.534 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4960 60.5907 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.3918 5.0000 15.5000 298.9870 297.1680 300.0640 295.8760 300.000
+ 12 1.5000 0.0000 0.0000 -10.2500 253.598 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4306 61.2663 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.3918 5.0000 15.2500 298.9920 297.1620 300.7190 295.8810 300.000
+ 13 1.5000 0.0000 0.0000 -10.0000 255.100 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3668 61.9466 -2.7386 0.5000 0.0000 0.0000 159.6328 -40.7341 2.3918 5.0000 15.0000 298.9530 297.1450 300.4320 295.8320 300.000
+ 14 1.5000 0.0000 0.0000 -9.7500 254.808 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3049 62.6317 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 2.3918 5.0000 14.7500 298.9590 297.1450 299.6140 295.8490 300.000
+ 15 1.5000 0.0000 0.0000 -9.5000 255.464 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2451 63.3221 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.3918 5.0000 14.5000 298.9890 297.1530 300.2100 295.9100 300.000
+ 16 1.5000 0.0000 0.0000 -9.2500 255.349 18.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1877 64.0182 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.3918 5.0000 14.2500 298.9810 297.1420 300.8010 295.8000 300.000
+ 17 1.5000 0.0000 0.0000 -9.0000 255.858 29.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1329 64.7201 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.3918 5.0000 14.0000 298.9450 297.1250 300.1550 295.7500 300.000
+# Sum of Counts = 675
+# Center of Mass = -11.428148+/-0.623690
+# Full Width Half-Maximum = 2.334305+/-0.309532
+# 6:40:42 AM 10/26/2011 scan completed.
+
+6:40:42 AM 10/26/2011 Executing "scantitle "Optic dispersion T (0 0 4.5)""
+
+Setting the scantitle to:
+Optic dispersion T (0 0 4.5)
+
+
+6:40:43 AM 10/26/2011 Executing "scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0"
+
+
+# scan = 107
+# date = 10/26/2011
+# time = 6:40:43 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.5000 257.429 99.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7834 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 298.9430 297.1190 299.6350 295.5320 300.000
+ 2 0.0000 0.0000 4.5000 -14.2500 258.144 105.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 298.9780 297.1310 299.9340 295.7370 300.000
+ 3 0.0000 0.0000 4.5000 -14.0000 259.007 106.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 298.9900 297.1300 300.5730 295.5700 300.000
+ 4 0.0000 0.0000 4.5000 -13.7500 258.524 87.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 298.9740 297.1160 300.7670 295.4610 300.000
+ 5 0.0000 0.0000 4.5000 -13.5000 259.477 118.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3812 5.0000 18.5000 298.9500 297.1080 299.6150 295.5210 300.000
+ 6 0.0000 0.0000 4.5000 -13.2500 259.604 116.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 298.9750 297.1150 299.9190 295.6010 300.000
+ 7 0.0000 0.0000 4.5000 -13.0000 259.826 105.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3812 5.0000 18.0000 298.9800 297.1120 300.5550 295.7610 300.000
+ 8 0.0000 0.0000 4.5000 -12.7500 261.166 83.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 298.9490 297.0970 300.7710 295.7490 300.000
+ 9 0.0000 0.0000 4.5000 -12.5000 261.623 73.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3812 5.0000 17.5000 298.9240 297.0870 299.6580 295.6190 300.000
+ 10 0.0000 0.0000 4.5000 -12.2500 262.377 60.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.3812 5.0000 17.2500 298.9600 297.0970 299.8660 295.7290 300.000
+ 11 0.0000 0.0000 4.5000 -12.0000 263.358 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 298.9750 297.0980 300.5100 295.7300 300.000
+ 12 0.0000 0.0000 4.5000 -11.7500 262.521 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 298.9580 297.0840 300.8280 295.7310 300.000
+ 13 0.0000 0.0000 4.5000 -11.5000 263.422 32.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 298.9240 297.0730 299.7550 295.7200 300.000
+ 14 0.0000 0.0000 4.5000 -11.2500 264.646 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.3151 58.1951 -2.7386 0.5000 0.0000 0.0000 160.4651 -39.0695 2.3812 5.0000 16.2500 298.9470 297.0790 299.7750 295.7100 300.000
+ 15 0.0000 0.0000 4.5000 -11.0000 266.349 13.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.2503 58.8584 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3812 5.0000 16.0000 298.9800 297.0860 300.3910 295.7280 300.000
+# Sum of Counts = 1110
+# Center of Mass = -13.198649+/-0.560906
+# Full Width Half-Maximum = 1.805720+/-0.278939
+# 7:47:30 AM 10/26/2011 scan completed.
+
+7:47:31 AM 10/26/2011 Executing "scantitle "Optic dispersion T (0 0 4.5)""
+
+Setting the scantitle to:
+Optic dispersion T (0 0 4.5)
+
+
+7:47:31 AM 10/26/2011 Executing "scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0"
+
+
+# scan = 108
+# date = 10/26/2011
+# time = 7:47:31 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.5000 266.988 111.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7834 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 298.9780 297.0790 300.8280 295.7670 300.000
+ 2 0.0000 0.0000 4.5000 -14.2500 267.741 101.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 298.9310 297.0640 300.2840 295.6540 300.000
+ 3 0.0000 0.0000 4.5000 -14.0000 266.897 93.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 298.9400 297.0640 299.5950 295.6120 300.000
+ 4 0.0000 0.0000 4.5000 -13.7500 268.470 93.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 298.9650 297.0720 300.0910 295.6930 300.000
+ 5 0.0000 0.0000 4.5000 -13.5000 268.633 116.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3812 5.0000 18.5000 298.9660 297.0670 300.6440 295.7500 300.000
+ 6 0.0000 0.0000 4.5000 -13.2500 269.165 100.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 298.9300 297.0520 300.7480 295.7460 300.000
+ 7 0.0000 0.0000 4.5000 -13.0000 269.212 95.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3812 5.0000 18.0000 298.9040 297.0440 299.6420 295.7180 300.000
+ 8 0.0000 0.0000 4.5000 -12.7500 269.160 86.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 298.9270 297.0520 299.8240 295.7520 300.000
+ 9 0.0000 0.0000 4.5000 -12.5000 269.764 84.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3812 5.0000 17.5000 298.9420 297.0550 300.3660 295.7790 300.000
+ 10 0.0000 0.0000 4.5000 -12.2500 271.995 57.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.3812 5.0000 17.2500 298.9290 297.0460 300.8160 295.7590 300.000
+ 11 0.0000 0.0000 4.5000 -12.0000 271.011 49.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 298.8860 297.0300 300.2950 295.7490 300.000
+ 12 0.0000 0.0000 4.5000 -11.7500 272.832 42.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 298.8890 297.0300 299.5900 295.7160 300.000
+ 13 0.0000 0.0000 4.5000 -11.5000 274.365 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 298.9130 297.0380 300.0050 295.7440 300.000
+ 14 0.0000 0.0000 4.5000 -11.2500 275.278 31.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.3151 58.1951 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.3812 5.0000 16.2500 298.9160 297.0350 300.5390 295.7830 300.000
+ 15 0.0000 0.0000 4.5000 -11.0000 275.718 28.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.2503 58.8584 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3812 5.0000 16.0000 298.8930 297.0240 300.8160 295.7300 300.000
+# Sum of Counts = 1122
+# Center of Mass = -13.148396+/-0.555858
+# Full Width Half-Maximum = 1.911050+/-0.279655
+# 8:55:54 AM 10/26/2011 scan completed.
+
+10:38:02 AM 10/26/2011 Executing "method temp set_setpoint d 200.000000"
+ Derived from "set_temp 200"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+10:50:09 AM 10/26/2011 Executing "method temp set_setpoint d 373.000000"
+ Derived from "set_temp 373"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+10:52:53 AM 10/26/2011 Executing "drive e -2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -61.25670
+a1 149.37165
+mfocus 34.98513
+
+Drive completed.
+
+
+11:00:02 AM 10/26/2011 Executing "method temp set_setpoint d 400.000000"
+ Derived from "set_temp 400"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+11:11:49 AM 10/26/2011 Executing "method temp set_setpoint d 473.000000"
+ Derived from "set_temp 473"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+11:35:34 AM 10/26/2011 Executing "method temp set_setpoint d 525.000000"
+ Derived from "set_temp 525"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+11:48:40 AM 10/26/2011 Executing "method temp set_setpoint d 520.000000"
+ Derived from "set_temp 520"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+11:51:32 AM 10/26/2011 Executing "method temp set_setpoint d 515.000000"
+ Derived from "set_temp 515"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+11:52:11 AM 10/26/2011 Executing "method temp set_setpoint d 500.000000"
+ Derived from "set_temp 500"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+11:58:12 AM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.6), add data
+
+
+11:58:12 AM 10/26/2011 Executing "scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5"
+
+
+# scan = 109
+# date = 10/26/2011
+# time = 11:58:12 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -2.0000 28.845 84.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 474.9060 74.5320 497.3320 481.8780 500.000
+ 2 -1.0000 0.0000 2.6000 -1.9000 29.149 58.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2316 76.6655 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.1060 5.0000 6.9000 474.2530 71.4270 498.9070 482.3370 500.000
+ 3 -1.0000 0.0000 2.6000 -1.8000 29.409 41.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7290 77.0706 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 2.1060 5.0000 6.8000 474.8890 70.0030 503.5600 482.6770 500.000
+ 4 -1.0000 0.0000 2.6000 -1.7000 29.629 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.2234 77.4803 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.1060 5.0000 6.7000 474.5450 69.1780 498.4860 481.6090 500.000
+ 5 -1.0000 0.0000 2.6000 -1.6000 29.801 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7149 77.8948 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 2.1060 5.0000 6.6000 473.7720 68.7240 497.8240 481.7050 500.000
+ 6 -1.0000 0.0000 2.6000 -1.5000 29.724 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2033 78.3142 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8353 2.1060 5.0000 6.5000 474.4530 68.4420 503.5890 482.2180 500.000
+ 7 -1.0000 0.0000 2.6000 -1.4000 29.783 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6886 78.7388 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.1060 5.0000 6.4000 474.2070 67.9990 498.9470 481.2920 500.000
+ 8 -1.0000 0.0000 2.6000 -1.3000 29.894 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1705 79.1688 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.1060 5.0000 6.3000 473.4250 67.6970 497.4600 481.3520 500.000
+ 9 -1.0000 0.0000 2.6000 -1.2000 29.780 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.6492 79.6043 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.1060 5.0000 6.2000 474.1250 67.6170 503.5820 482.1020 500.000
+ 10 -1.0000 0.0000 2.6000 -1.1000 29.824 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.1243 80.0456 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.1060 5.0000 6.1000 473.9310 67.3270 499.1790 481.2010 500.000
+ 11 -1.0000 0.0000 2.6000 -1.0000 29.899 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5958 80.4928 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.1060 5.0000 6.0000 473.1580 67.0950 497.2450 481.0560 500.000
+ 12 -1.0000 0.0000 2.6000 -0.9000 29.689 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0636 80.9464 -2.7386 0.5000 0.0000 0.0000 146.2939 -67.4120 2.1060 5.0000 5.9000 473.8750 67.0150 503.5850 481.9080 500.000
+ 13 -1.0000 0.0000 2.6000 -0.8000 29.685 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.5275 81.4064 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 2.1060 5.0000 5.8000 473.7260 66.7800 499.3070 481.0610 500.000
+ 14 -1.0000 0.0000 2.6000 -0.7000 30.028 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.9875 81.8732 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 2.1060 5.0000 5.7000 472.9580 66.6210 497.0860 480.8880 500.000
+ 15 -1.0000 0.0000 2.6000 -0.6000 29.753 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.4434 82.3471 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 2.1060 5.0000 5.6000 473.6890 66.6520 503.6020 481.7070 500.000
+ 16 -1.0000 0.0000 2.6000 -0.5000 30.071 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8949 82.8283 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.1060 5.0000 5.5000 473.5760 72.5200 499.3570 481.0680 500.000
+ 17 -1.0000 0.0000 2.6000 -0.4000 29.794 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.3421 83.3173 -2.7386 0.5000 0.0000 0.0000 144.5456 -70.9087 2.1060 5.0000 5.4000 472.8470 77.4620 497.1340 480.9200 500.000
+ 18 -1.0000 0.0000 2.6000 -0.3000 29.783 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.7847 83.8144 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6768 2.1060 5.0000 5.3000 473.6580 81.4420 503.5520 481.8310 500.000
+ 19 -1.0000 0.0000 2.6000 -0.2000 30.034 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2225 84.3198 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 2.1060 5.0000 5.2000 473.5440 76.7810 499.2650 480.9580 500.000
+ 20 -1.0000 0.0000 2.6000 -0.1000 29.460 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.6554 84.8341 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 2.1060 5.0000 5.1000 472.8240 71.4920 497.4350 480.8590 500.000
+ 21 -1.0000 0.0000 2.6000 0.0000 29.699 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.0832 85.3576 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 2.1060 5.0000 5.0000 473.5930 69.0290 503.5380 481.6610 500.000
+ 22 -1.0000 0.0000 2.6000 0.1000 29.849 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5056 85.8909 -2.7386 0.5000 0.0000 0.0000 142.4878 -75.0243 2.1060 5.0000 4.9000 473.4460 67.8410 499.0650 480.8310 500.000
+ 23 -1.0000 0.0000 2.6000 0.2000 29.753 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.9226 86.4343 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 2.1060 5.0000 4.8000 472.7540 67.2680 497.6460 480.8420 500.000
+ 24 -1.0000 0.0000 2.6000 0.3000 29.674 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3338 86.9885 -2.7386 0.5000 0.0000 0.0000 141.5559 -76.8882 2.1060 5.0000 4.7000 473.5250 67.0320 503.5880 481.6300 500.000
+# Sum of Counts = 547
+# Center of Mass = -1.186289+/-0.078355
+# Full Width Half-Maximum = 1.474778+/-0.067140
+# 12:11:32 PM 10/26/2011 scan completed.
+
+12:11:32 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.9), add data
+
+
+12:11:32 PM 10/26/2011 Executing "scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5"
+
+
+# scan = 110
+# date = 10/26/2011
+# time = 12:11:32 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -4.0000 29.632 133.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0830 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 472.7380 66.4400 495.4080 480.2560 500.000
+ 2 -1.0000 0.0000 2.9000 -3.9000 29.791 136.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6363 73.6665 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2130 5.0000 8.9000 473.2050 66.3790 503.0050 481.5340 500.000
+ 3 -1.0000 0.0000 2.9000 -3.8000 29.883 147.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1880 74.0211 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2130 5.0000 8.8000 473.4590 66.1470 501.3970 481.1190 500.000
+ 4 -1.0000 0.0000 2.9000 -3.7000 29.444 142.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7378 74.3786 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2130 5.0000 8.7000 472.7130 65.8760 495.2550 480.2120 500.000
+ 5 -1.0000 0.0000 2.9000 -3.6000 29.666 131.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2859 74.7390 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2130 5.0000 8.6000 473.0960 65.9310 502.7500 481.4120 500.000
+ 6 -1.0000 0.0000 2.9000 -3.5000 29.877 101.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8321 75.1025 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2130 5.0000 8.5000 473.4280 65.7920 501.7490 480.9860 500.000
+ 7 -1.0000 0.0000 2.9000 -3.4000 29.740 76.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3764 75.4692 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2130 5.0000 8.4000 472.7210 65.5590 495.2160 480.0620 500.000
+ 8 -1.0000 0.0000 2.9000 -3.3000 29.776 75.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.9188 75.8391 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2130 5.0000 8.3000 473.0060 65.6970 502.4670 481.4800 500.000
+ 9 -1.0000 0.0000 2.9000 -3.2000 29.816 58.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4592 76.2123 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.2130 5.0000 8.2000 473.4320 70.6360 501.9900 481.1480 500.000
+ 10 -1.0000 0.0000 2.9000 -3.1000 29.987 33.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9974 76.5890 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 2.2130 5.0000 8.1000 472.8030 75.5730 495.2690 480.1880 500.000
+ 11 -1.0000 0.0000 2.9000 -3.0000 29.741 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5336 76.9692 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.2130 5.0000 8.0000 473.0620 79.7970 502.2390 481.3210 500.000
+ 12 -1.0000 0.0000 2.9000 -2.9000 29.985 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.0675 77.3532 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2130 5.0000 7.9000 473.5310 77.1100 502.1730 481.1520 500.000
+ 13 -1.0000 0.0000 2.9000 -2.8000 29.642 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.5992 77.7408 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2130 5.0000 7.8000 472.9030 71.2970 495.4000 480.1690 500.000
+ 14 -1.0000 0.0000 2.9000 -2.7000 30.024 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1286 78.1325 -2.7386 0.5000 0.0000 0.0000 150.9376 -58.1243 2.2130 5.0000 7.7000 473.0460 68.5220 502.0000 481.3590 500.000
+ 15 -1.0000 0.0000 2.9000 -2.6000 29.742 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6556 78.5281 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.2130 5.0000 7.6000 473.5460 67.3730 502.3820 481.2220 500.000
+ 16 -1.0000 0.0000 2.9000 -2.5000 29.756 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1802 78.9279 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.2130 5.0000 7.5000 472.9410 66.7930 495.5380 480.1420 500.000
+# Sum of Counts = 1154
+# Center of Mass = -3.559012+/-0.148539
+# Full Width Half-Maximum = 0.716992+/-0.075098
+# 12:20:33 PM 10/26/2011 scan completed.
+
+12:20:33 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.2), add data
+
+
+12:20:33 PM 10/26/2011 Executing "scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5"
+
+
+# scan = 111
+# date = 10/26/2011
+# time = 12:20:33 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -7.9000 29.730 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0596 65.3849 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3259 5.0000 12.9000 473.3730 66.5120 503.5750 481.6190 500.000
+ 2 -1.0000 0.0000 3.2000 -7.8000 8.331 3.000 12943.000 0.141 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6669 65.6762 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.3259 5.0000 12.8000 473.4320 66.1020 500.3110 480.9000 500.000
+# Sum of Counts = 15
+# Center of Mass = -7.880000+/-2.877388
+# Full Width Half-Maximum = 0.080000+/-3.255462
+# 12:21:30 PM 10/26/2011 scan stopped!!
+
+Abort issued!!
+
+12:21:40 PM 10/26/2011 Executing "drive e -5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -50.45973
+a1 154.77013
+mfocus 34.98513
+
+Drive completed.
+
+
+12:22:11 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.6), add data
+
+
+12:22:11 PM 10/26/2011 Executing "scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5"
+
+
+# scan = 112
+# date = 10/26/2011
+# time = 12:22:11 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -2.0000 29.806 66.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 473.2870 65.5690 503.2120 481.5790 500.000
+ 2 -1.0000 0.0000 2.6000 -1.9000 30.016 63.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2316 76.6655 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.1060 5.0000 6.9000 473.5090 65.3050 501.1030 481.0990 500.000
+ 3 -1.0000 0.0000 2.6000 -1.8000 29.630 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7290 77.0706 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.1060 5.0000 6.8000 472.7400 65.0070 495.3220 480.3650 500.000
+ 4 -1.0000 0.0000 2.6000 -1.7000 29.976 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.2234 77.4803 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.1060 5.0000 6.7000 473.2570 65.0190 503.0660 481.6220 500.000
+ 5 -1.0000 0.0000 2.6000 -1.6000 29.832 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7149 77.8948 -2.7386 0.5000 0.0000 0.0000 148.3533 -63.2932 2.1060 5.0000 6.6000 473.5430 64.8270 501.4040 481.2470 500.000
+ 6 -1.0000 0.0000 2.6000 -1.5000 29.503 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2033 78.3142 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.1060 5.0000 6.5000 472.7920 64.6300 495.1830 480.4490 500.000
+ 7 -1.0000 0.0000 2.6000 -1.4000 29.738 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6886 78.7388 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.1060 5.0000 6.4000 473.2410 70.5780 502.7820 481.8280 500.000
+ 8 -1.0000 0.0000 2.6000 -1.3000 29.601 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1705 79.1688 -2.7386 0.5000 0.0000 0.0000 147.5185 -64.9628 2.1060 5.0000 6.3000 473.6340 75.4270 501.6430 481.4750 500.000
+ 9 -1.0000 0.0000 2.6000 -1.2000 29.824 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.6492 79.6043 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.1060 5.0000 6.2000 472.9690 79.2440 495.1870 480.4620 500.000
+ 10 -1.0000 0.0000 2.6000 -1.1000 29.595 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.1243 80.0456 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.1060 5.0000 6.1000 473.3390 74.8030 502.6930 481.7450 500.000
+ 11 -1.0000 0.0000 2.6000 -1.0000 29.617 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5958 80.4928 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.1060 5.0000 6.0000 473.7340 69.3110 501.9240 481.4520 500.000
+ 12 -1.0000 0.0000 2.6000 -0.9000 29.853 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0636 80.9464 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 2.1060 5.0000 5.9000 473.0670 66.7310 495.1660 480.4400 500.000
+ 13 -1.0000 0.0000 2.6000 -0.8000 29.882 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.5275 81.4064 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 2.1060 5.0000 5.8000 473.3140 66.1010 502.3540 481.7110 500.000
+ 14 -1.0000 0.0000 2.6000 -0.7000 29.609 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.9875 81.8732 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 2.1060 5.0000 5.7000 473.7710 65.6250 502.1520 481.5540 500.000
+ 15 -1.0000 0.0000 2.6000 -0.6000 29.743 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.4434 82.3471 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 2.1060 5.0000 5.6000 473.1170 65.1310 495.2680 480.4950 500.000
+ 16 -1.0000 0.0000 2.6000 -0.5000 29.769 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8949 82.8283 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.1060 5.0000 5.5000 473.2790 65.0430 502.0890 481.7610 500.000
+ 17 -1.0000 0.0000 2.6000 -0.4000 29.925 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.3421 83.3173 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 2.1060 5.0000 5.4000 473.7860 64.7910 502.3570 481.5790 500.000
+ 18 -1.0000 0.0000 2.6000 -0.3000 29.765 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.7847 83.8144 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 2.1060 5.0000 5.3000 473.1550 64.5040 495.3900 480.5580 500.000
+ 19 -1.0000 0.0000 2.6000 -0.2000 29.864 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2225 84.3198 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4707 2.1060 5.0000 5.2000 473.2570 64.5540 501.9160 481.7510 500.000
+ 20 -1.0000 0.0000 2.6000 -0.1000 29.476 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.6554 84.8341 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 2.1060 5.0000 5.1000 473.8010 64.3550 502.5220 481.7270 500.000
+ 21 -1.0000 0.0000 2.6000 0.0000 29.837 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.0832 85.3576 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 2.1060 5.0000 5.0000 473.2030 64.0910 495.5830 480.5770 500.000
+ 22 -1.0000 0.0000 2.6000 0.1000 29.483 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5056 85.8909 -2.7386 0.5000 0.0000 0.0000 142.4877 -75.0243 2.1060 5.0000 4.9000 473.2270 64.1280 501.6290 481.8540 500.000
+ 23 -1.0000 0.0000 2.6000 0.2000 29.799 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.9226 86.4343 -2.7386 0.5000 0.0000 0.0000 142.0306 -75.9388 2.1060 5.0000 4.8000 473.8210 63.9990 502.7480 481.8630 500.000
+ 24 -1.0000 0.0000 2.6000 0.3000 29.896 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3338 86.9885 -2.7386 0.5000 0.0000 0.0000 141.5559 -76.8882 2.1060 5.0000 4.7000 473.2690 66.8650 495.8190 480.7550 500.000
+# Sum of Counts = 454
+# Center of Mass = -1.220044+/-0.088150
+# Full Width Half-Maximum = 1.484272+/-0.075723
+# 12:35:27 PM 10/26/2011 scan completed.
+
+12:35:27 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.9), add data
+
+
+12:35:27 PM 10/26/2011 Executing "scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5"
+
+
+# scan = 113
+# date = 10/26/2011
+# time = 12:35:27 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -4.0000 29.502 139.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0831 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 473.8370 75.6880 503.6570 482.1320 500.000
+ 2 -1.0000 0.0000 2.9000 -3.9000 29.869 143.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6363 73.6665 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.2130 5.0000 8.9000 473.7100 78.4560 498.9180 481.2630 500.000
+ 3 -1.0000 0.0000 2.9000 -3.8000 29.933 126.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1880 74.0211 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2130 5.0000 8.8000 473.0380 72.2470 497.3470 481.2440 500.000
+ 4 -1.0000 0.0000 2.9000 -3.7000 29.425 114.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7378 74.3786 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2130 5.0000 8.7000 473.8900 67.5420 503.7100 482.0440 500.000
+ 5 -1.0000 0.0000 2.9000 -3.6000 29.557 150.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2859 74.7390 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2130 5.0000 8.6000 473.8180 65.8380 499.6380 481.2670 500.000
+ 6 -1.0000 0.0000 2.9000 -3.5000 29.612 114.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.8321 75.1025 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2130 5.0000 8.5000 473.0460 65.2330 496.2690 480.9440 500.000
+ 7 -1.0000 0.0000 2.9000 -3.4000 29.787 81.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.3764 75.4692 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2130 5.0000 8.4000 473.8020 65.0600 503.6250 481.9580 500.000
+ 8 -1.0000 0.0000 2.9000 -3.3000 29.801 76.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.9188 75.8391 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.2130 5.0000 8.3000 473.8710 64.5870 500.5530 481.3600 500.000
+ 9 -1.0000 0.0000 2.9000 -3.2000 29.763 62.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4592 76.2123 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1616 2.2130 5.0000 8.2000 473.0610 64.1450 495.4340 480.7440 500.000
+ 10 -1.0000 0.0000 2.9000 -3.1000 29.704 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9974 76.5890 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5382 2.2130 5.0000 8.1000 473.6940 64.1170 503.3360 482.0240 500.000
+ 11 -1.0000 0.0000 2.9000 -3.0000 29.794 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5336 76.9692 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.2130 5.0000 8.0000 473.9210 63.8990 501.3360 481.6570 500.000
+ 12 -1.0000 0.0000 2.9000 -2.9000 29.728 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.0675 77.3532 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2130 5.0000 7.9000 473.1540 63.6500 495.0280 480.7970 500.000
+ 13 -1.0000 0.0000 2.9000 -2.8000 29.492 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.5992 77.7408 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2130 5.0000 7.8000 473.5730 63.6740 502.7670 482.1450 500.000
+ 14 -1.0000 0.0000 2.9000 -2.7000 29.745 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.1286 78.1325 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.2130 5.0000 7.7000 473.9550 63.5120 502.0220 481.8590 500.000
+ 15 -1.0000 0.0000 2.9000 -2.6000 29.698 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6556 78.5281 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.2130 5.0000 7.6000 473.2780 63.2540 495.1220 480.8050 500.000
+ 16 -1.0000 0.0000 2.9000 -2.5000 29.642 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1802 78.9279 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.2130 5.0000 7.5000 473.4640 63.8840 502.0640 482.0430 500.000
+# Sum of Counts = 1195
+# Center of Mass = -3.532301+/-0.144916
+# Full Width Half-Maximum = 0.752687+/-0.073468
+# 12:44:25 PM 10/26/2011 scan completed.
+
+12:44:26 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.2), add data
+
+
+12:44:26 PM 10/26/2011 Executing "scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5"
+
+
+# scan = 114
+# date = 10/26/2011
+# time = 12:44:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -7.9000 29.593 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0596 65.3850 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.3259 5.0000 12.9000 473.8660 72.1730 499.9960 481.5780 500.000
+ 2 -1.0000 0.0000 3.2000 -7.8000 29.395 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6669 65.6762 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.3259 5.0000 12.8000 473.1160 76.2430 495.8550 481.1410 500.000
+ 3 -1.0000 0.0000 3.2000 -7.7000 29.637 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2736 65.9686 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.3259 5.0000 12.7000 473.8330 75.9400 503.4220 482.3850 500.000
+ 4 -1.0000 0.0000 3.2000 -7.6000 29.645 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.8796 66.2622 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.3259 5.0000 12.6000 474.0190 69.0050 501.0590 481.8600 500.000
+ 5 -1.0000 0.0000 3.2000 -7.5000 29.714 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4850 66.5572 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.3259 5.0000 12.5000 473.2700 65.4320 495.1220 480.9900 500.000
+ 6 -1.0000 0.0000 3.2000 -7.4000 29.602 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.0897 66.8534 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.3259 5.0000 12.4000 473.7330 64.7960 502.8880 482.3500 500.000
+ 7 -1.0000 0.0000 3.2000 -7.3000 29.554 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6936 67.1510 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.3259 5.0000 12.3000 474.0690 64.2590 501.9680 481.9400 500.000
+ 8 -1.0000 0.0000 3.2000 -7.2000 29.792 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2968 67.4500 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.3259 5.0000 12.2000 473.3870 64.2230 495.1460 480.7940 500.000
+ 9 -1.0000 0.0000 3.2000 -7.1000 29.821 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8993 67.7504 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.3259 5.0000 12.1000 473.5240 64.1840 501.9470 482.0020 500.000
+ 10 -1.0000 0.0000 3.2000 -7.0000 29.648 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5010 68.0522 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3259 5.0000 12.0000 474.0590 64.0590 502.7030 481.8710 500.000
+ 11 -1.0000 0.0000 3.2000 -6.9000 29.735 47.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1018 68.3555 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3259 5.0000 11.9000 473.4980 63.7620 495.9650 480.8050 500.000
+ 12 -1.0000 0.0000 3.2000 -6.8000 29.522 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7018 68.6602 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3259 5.0000 11.8000 473.3350 63.7060 500.7670 481.9810 500.000
+ 13 -1.0000 0.0000 3.2000 -6.7000 29.433 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3010 68.9666 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.3259 5.0000 11.7000 474.0200 63.5710 503.2600 482.1480 500.000
+ 14 -1.0000 0.0000 3.2000 -6.6000 29.707 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8992 69.2746 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.3259 5.0000 11.6000 473.6110 63.3210 497.2880 481.0460 500.000
+ 15 -1.0000 0.0000 3.2000 -6.5000 29.618 48.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4966 69.5841 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3259 5.0000 11.5000 473.1510 63.3740 499.1770 481.7800 500.000
+ 16 -1.0000 0.0000 3.2000 -6.4000 29.538 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0930 69.8954 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.3259 5.0000 11.4000 473.9630 63.3720 503.6400 482.1190 500.000
+ 17 -1.0000 0.0000 3.2000 -6.3000 29.831 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6884 70.2083 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 2.3259 5.0000 11.3000 473.7290 66.5340 498.5480 481.3270 500.000
+ 18 -1.0000 0.0000 3.2000 -6.2000 29.773 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2829 70.5230 -2.7386 0.5000 0.0000 0.0000 156.2485 -47.5028 2.3259 5.0000 11.2000 473.0830 71.9010 497.5090 481.5120 500.000
+ 19 -1.0000 0.0000 3.2000 -6.1000 29.636 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8763 70.8395 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 2.3259 5.0000 11.1000 473.9900 76.1430 503.6900 482.3790 500.000
+ 20 -1.0000 0.0000 3.2000 -6.0000 29.707 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4687 71.1579 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3259 5.0000 11.0000 473.9260 75.6870 499.5780 481.4840 500.000
+ 21 -1.0000 0.0000 3.2000 -5.9000 29.657 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.0600 71.4781 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3259 5.0000 10.9000 473.1760 68.7680 496.3850 481.2170 500.000
+ 22 -1.0000 0.0000 3.2000 -5.8000 29.557 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6502 71.8003 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.3259 5.0000 10.8000 473.9620 65.5670 503.6090 482.1980 500.000
+ 23 -1.0000 0.0000 3.2000 -5.7000 29.620 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2392 72.1244 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3259 5.0000 10.7000 474.0260 64.4740 500.5740 481.5130 500.000
+ 24 -1.0000 0.0000 3.2000 -5.6000 29.317 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.8271 72.4507 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3259 5.0000 10.6000 473.2060 63.9930 495.4140 480.9690 500.000
+ 25 -1.0000 0.0000 3.2000 -5.5000 29.725 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4138 72.7790 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3259 5.0000 10.5000 473.7790 63.9590 503.1490 482.1580 500.000
+ 26 -1.0000 0.0000 3.2000 -5.4000 29.667 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9992 73.1094 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3259 5.0000 10.4000 474.0150 63.5660 501.4890 481.7460 500.000
+ 27 -1.0000 0.0000 3.2000 -5.3000 29.613 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5834 73.4421 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.3259 5.0000 10.3000 473.2640 63.3220 495.0410 480.9350 500.000
+ 28 -1.0000 0.0000 3.2000 -5.2000 29.712 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1662 73.7770 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.3259 5.0000 10.2000 473.5920 63.3580 502.5220 482.1980 500.000
+ 29 -1.0000 0.0000 3.2000 -5.1000 29.827 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7478 74.1142 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.3259 5.0000 10.1000 474.0170 63.2850 502.2540 482.0110 500.000
+ 30 -1.0000 0.0000 3.2000 -5.0000 29.773 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3280 74.4538 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3259 5.0000 10.0000 473.3640 63.0950 495.3220 480.8960 500.000
+ 31 -1.0000 0.0000 3.2000 -4.9000 29.789 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9067 74.7959 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3259 5.0000 9.9000 473.4340 63.2240 501.7120 481.9540 500.000
+ 32 -1.0000 0.0000 3.2000 -4.8000 29.700 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.4840 75.1405 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3259 5.0000 9.8000 473.9960 63.1190 502.8590 482.0150 500.000
+ 33 -1.0000 0.0000 3.2000 -4.7000 29.495 54.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.0599 75.4876 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3259 5.0000 9.7000 473.4520 62.9160 496.1990 480.8650 500.000
+ 34 -1.0000 0.0000 3.2000 -4.6000 29.789 65.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.6342 75.8374 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3259 5.0000 9.6000 473.2470 67.6900 500.4720 481.9870 500.000
+ 35 -1.0000 0.0000 3.2000 -4.5000 29.735 84.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.2070 76.1900 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3259 5.0000 9.5000 474.0110 72.6340 503.2490 482.2810 500.000
+ 36 -1.0000 0.0000 3.2000 -4.4000 29.642 79.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7781 76.5453 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3259 5.0000 9.4000 473.6430 76.4550 497.1550 481.2310 500.000
+ 37 -1.0000 0.0000 3.2000 -4.3000 29.786 72.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3476 76.9035 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.3259 5.0000 9.3000 473.2430 73.3880 499.4610 481.9940 500.000
+ 38 -1.0000 0.0000 3.2000 -4.2000 29.833 82.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9154 77.2647 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3259 5.0000 9.2000 474.0620 67.6700 503.6080 482.2130 500.000
+ 39 -1.0000 0.0000 3.2000 -4.1000 29.503 58.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.4815 77.6289 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.3259 5.0000 9.1000 473.7810 65.1080 498.1600 481.2700 500.000
+ 40 -1.0000 0.0000 3.2000 -4.0000 29.452 61.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.0458 77.9962 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3259 5.0000 9.0000 473.1650 64.1560 498.0010 481.6090 500.000
+ 41 -1.0000 0.0000 3.2000 -3.9000 29.734 43.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.6083 78.3668 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.3259 5.0000 8.9000 473.9950 63.7110 503.7820 482.3580 500.000
+ 42 -1.0000 0.0000 3.2000 -3.8000 29.964 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1689 78.7406 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 2.3259 5.0000 8.8000 473.8270 63.2950 499.2880 481.4550 500.000
+ 43 -1.0000 0.0000 3.2000 -3.7000 29.644 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7276 79.1179 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.3259 5.0000 8.7000 473.0450 63.0900 496.6310 481.2850 500.000
+ 44 -1.0000 0.0000 3.2000 -3.6000 29.673 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.2842 79.4987 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3259 5.0000 8.6000 473.8380 63.0830 503.7110 482.2440 500.000
+ 45 -1.0000 0.0000 3.2000 -3.5000 29.556 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.8389 79.8830 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3259 5.0000 8.5000 473.8360 62.8580 500.2770 481.5980 500.000
+# Sum of Counts = 1476
+# Center of Mass = -5.387060+/-0.201078
+# Full Width Half-Maximum = 2.559145+/-0.085855
+# 1:08:42 PM 10/26/2011 scan completed.
+
+1:08:42 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.5), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.5), add data
+
+
+1:08:42 PM 10/26/2011 Executing "scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5"
+
+
+# scan = 115
+# date = 10/26/2011
+# time = 1:08:42 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.5), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.2000 29.743 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8852 68.9950 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.4439 5.0000 13.2000 473.0420 62.7000 498.6290 481.8000 500.000
+ 2 -1.0000 0.0000 3.5000 -8.1000 29.700 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.5072 69.2901 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 2.4439 5.0000 13.1000 473.8850 62.6830 503.7350 482.3060 500.000
+ 3 -1.0000 0.0000 3.5000 -8.0000 29.685 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1284 69.5865 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.4439 5.0000 13.0000 473.6840 62.4330 498.8770 481.3920 500.000
+ 4 -1.0000 0.0000 3.5000 -7.9000 29.671 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.7488 69.8843 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.4439 5.0000 12.9000 472.9580 62.3080 496.9980 481.4200 500.000
+ 5 -1.0000 0.0000 3.5000 -7.8000 29.724 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3686 70.1836 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.4439 5.0000 12.8000 473.7940 63.1820 503.7480 482.4200 500.000
+ 6 -1.0000 0.0000 3.5000 -7.7000 29.637 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.9876 70.4843 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.4439 5.0000 12.7000 473.7940 69.1250 500.0110 481.6890 500.000
+ 7 -1.0000 0.0000 3.5000 -7.6000 29.403 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.6058 70.7866 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.4439 5.0000 12.6000 473.0270 73.4340 495.8080 481.2090 500.000
+ 8 -1.0000 0.0000 3.5000 -7.5000 29.596 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2231 71.0903 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.4439 5.0000 12.5000 473.7740 76.6280 503.4010 482.4180 500.000
+ 9 -1.0000 0.0000 3.5000 -7.4000 29.727 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8396 71.3956 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.4439 5.0000 12.4000 473.9610 70.3690 501.0610 481.7350 500.000
+ 10 -1.0000 0.0000 3.5000 -7.3000 29.708 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4553 71.7026 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.4439 5.0000 12.3000 473.2030 65.0470 495.1450 480.9260 500.000
+ 11 -1.0000 0.0000 3.5000 -7.2000 29.515 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0701 72.0111 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.4439 5.0000 12.2000 473.6980 63.7930 502.9390 482.1500 500.000
+ 12 -1.0000 0.0000 3.5000 -7.1000 29.657 33.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6840 72.3214 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.4439 5.0000 12.1000 474.0370 63.1850 502.0170 481.8740 500.000
+ 13 -1.0000 0.0000 3.5000 -7.0000 29.626 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2970 72.6334 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.4439 5.0000 12.0000 473.3290 62.7710 495.1240 480.9230 500.000
+ 14 -1.0000 0.0000 3.5000 -6.9000 29.923 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.9090 72.9471 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.4439 5.0000 11.9000 473.4720 62.7200 501.9630 482.0200 500.000
+ 15 -1.0000 0.0000 3.4999 -6.8000 29.538 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5223 73.2626 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.4439 5.0000 11.8000 473.1140 62.2200 499.0140 481.7430 500.000
+ 16 -1.0000 0.0000 3.5000 -6.7000 29.740 44.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1301 73.5800 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.4439 5.0000 11.7000 473.9430 62.1020 503.6960 482.1650 500.000
+ 17 -1.0000 0.0000 3.5000 -6.6000 29.508 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7391 73.8993 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.4439 5.0000 11.6000 473.6920 61.8050 498.6240 481.2400 500.000
+ 18 -1.0000 0.0000 3.5000 -6.5000 29.735 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.3470 74.2205 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.4439 5.0000 11.5000 472.9860 61.7510 497.2630 481.3750 500.000
+ 19 -1.0000 0.0000 3.5000 -6.4000 29.682 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.9539 74.5437 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.4439 5.0000 11.4000 473.8380 61.7730 503.7630 482.2060 500.000
+ 20 -1.0000 0.0000 3.5000 -6.3000 29.496 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5596 74.8689 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.4439 5.0000 11.3000 473.7670 61.5790 499.8330 481.4200 500.000
+ 21 -1.0000 0.0000 3.5000 -6.2000 29.867 31.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.1642 75.1962 -2.7386 0.5000 0.0000 0.0000 156.2485 -47.5028 2.4439 5.0000 11.2000 472.9610 61.4600 495.8920 481.1580 500.000
+ 22 -1.0000 0.0000 3.5000 -6.1000 29.930 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7677 75.5257 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.4439 5.0000 11.1000 473.7140 65.2030 503.5230 482.3140 500.000
+ 23 -1.0000 0.0000 3.5000 -6.0000 29.822 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.3699 75.8573 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.4439 5.0000 11.0000 473.8490 70.4120 500.7850 481.7790 500.000
+ 24 -1.0000 0.0000 3.5000 -5.9000 29.682 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9710 76.1912 -2.7386 0.5000 0.0000 0.0000 155.9034 -48.1930 2.4439 5.0000 10.9000 473.0830 74.3540 495.2750 481.1380 500.000
+ 25 -1.0000 0.0000 3.5000 -5.8000 29.769 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.5707 76.5273 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.4439 5.0000 10.8000 473.6620 73.3300 503.1600 482.4370 500.000
+ 26 -1.0000 0.0000 3.5000 -5.7000 29.536 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1692 76.8658 -2.7386 0.5000 0.0000 0.0000 155.6648 -48.6702 2.4439 5.0000 10.7000 473.9680 66.5090 501.6600 481.9030 500.000
+ 27 -1.0000 0.0000 3.5000 -5.6000 29.381 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.7663 77.2068 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.4439 5.0000 10.6000 473.2560 63.6840 495.0130 481.0030 500.000
+ 28 -1.0000 0.0000 3.5000 -5.5000 29.700 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.3621 77.5502 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.4439 5.0000 10.5000 473.5240 63.2630 502.3210 482.3200 500.000
+ 29 -1.0000 0.0000 3.5000 -5.4000 29.441 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.9565 77.8961 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.4439 5.0000 10.4000 474.0040 63.1460 502.5100 482.0610 500.000
+ 30 -1.0000 0.0000 3.5000 -5.3000 29.731 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.5495 78.2447 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.4439 5.0000 10.3000 473.3920 62.9020 495.6140 480.9010 500.000
+ 31 -1.0000 0.0000 3.5000 -5.2000 29.848 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.1410 78.5959 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.4439 5.0000 10.2000 473.3280 62.7270 501.1620 482.1320 500.000
+ 32 -1.0000 0.0000 3.5000 -5.1000 29.614 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7310 78.9498 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.4439 5.0000 10.1000 473.9770 62.2440 503.1710 482.2260 500.000
+ 33 -1.0000 0.0000 3.5000 -5.0000 29.814 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3195 79.3066 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.4439 5.0000 10.0000 473.4970 61.7600 496.7760 481.0410 500.000
+ 34 -1.0000 0.0000 3.5000 -4.9000 29.891 34.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9064 79.6663 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.4439 5.0000 9.9000 473.1230 61.5920 499.7150 481.9760 500.000
+ 35 -1.0000 0.0000 3.5000 -4.8000 29.769 57.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.4917 80.0289 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.4439 5.0000 9.8000 473.9180 61.4640 503.5950 482.1940 500.000
+ 36 -1.0000 0.0000 3.5000 -4.7000 29.727 39.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.0753 80.3946 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 2.4439 5.0000 9.7000 473.5800 61.2370 497.9690 481.2000 500.000
+ 37 -1.0000 0.0000 3.5000 -4.6000 29.757 48.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.6572 80.7634 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 2.4439 5.0000 9.6000 472.9650 61.1830 498.1530 481.7180 500.000
+ 38 -1.0000 0.0000 3.5000 -4.5000 29.505 50.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.2374 81.1354 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.4439 5.0000 9.5000 473.8180 61.1800 503.7730 482.4070 500.000
+ 39 -1.0000 0.0000 3.5000 -4.4000 29.587 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8158 81.5108 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.4439 5.0000 9.4000 473.6470 61.0010 499.2040 481.5270 500.000
+ 40 -1.0000 0.0000 3.5000 -4.3000 29.853 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.3924 81.8895 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.4439 5.0000 9.3000 472.8840 61.4490 496.5520 481.3750 500.000
+ 41 -1.0000 0.0000 3.5000 -4.2000 29.651 38.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9671 82.2717 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.4439 5.0000 9.2000 473.7400 67.6740 503.6870 482.4890 500.000
+ 42 -1.0000 0.0000 3.5000 -4.1000 29.694 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.5399 82.6575 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.4439 5.0000 9.1000 473.7780 72.0430 500.2170 481.8160 500.000
+ 43 -1.0000 0.0000 3.5000 -4.0000 29.813 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.1107 83.0470 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 2.4439 5.0000 9.0000 473.0060 74.8550 495.6880 481.2170 500.000
+# Sum of Counts = 1264
+# Center of Mass = -5.990665+/-0.240971
+# Full Width Half-Maximum = 2.546212+/-0.098197
+# 1:32:49 PM 10/26/2011 scan completed.
+
+1:32:49 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.8), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.8), add data
+
+
+1:32:50 PM 10/26/2011 Executing "scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5"
+
+
+# scan = 116
+# date = 10/26/2011
+# time = 1:32:50 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.8), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.8000 -7.9000 29.715 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6093 74.6442 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5663 5.0000 12.9000 473.9050 66.4100 503.7820 482.4380 500.000
+ 2 -1.0000 0.0000 3.8000 -7.8000 29.711 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2389 74.9540 -2.7386 0.5000 0.0000 0.0000 157.8670 -44.2658 2.5663 5.0000 12.8000 473.7590 63.0260 499.2580 481.5160 500.000
+ 3 -1.0000 0.0000 3.8000 -7.7000 29.855 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8677 75.2656 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5663 5.0000 12.7000 472.9910 62.2370 496.5020 481.3210 500.000
+ 4 -1.0000 0.0000 3.8000 -7.6000 29.623 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4955 75.5789 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5663 5.0000 12.6000 473.8020 61.9900 503.7000 482.2740 500.000
+ 5 -1.0000 0.0000 3.8000 -7.5000 29.672 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1223 75.8940 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5663 5.0000 12.5000 473.8130 61.6720 500.4810 481.6180 500.000
+ 6 -1.0000 0.0000 3.8000 -7.4000 29.754 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7482 76.2110 -2.7386 0.5000 0.0000 0.0000 157.4936 -45.0126 2.5663 5.0000 12.4000 472.9730 61.4060 495.3410 481.0510 500.000
+ 7 -1.0000 0.0000 3.8000 -7.3000 29.865 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3730 76.5298 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5663 5.0000 12.3000 473.5870 61.4020 503.2630 482.2270 500.000
+ 8 -0.9963 0.0000 3.8050 -7.2711 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.1734 76.5592 -2.7386 0.5000 0.0000 0.0000 157.3313 -45.2615 2.5647 5.0000 12.2710 473.8300 61.1690 501.7780 481.7580 500.000
+# Sum of Counts = 140
+# Center of Mass = -7.582857+/-0.906493
+# Full Width Half-Maximum = 0.413309+/-0.721053
+# 1:36:44 PM 10/26/2011 scan stopped!!
+
+Abort issued!!
+
+1:37:32 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.5), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.5), add data
+
+
+1:38:11 PM 10/26/2011 Executing "scan h -1 k 0 l 3.5 e -4.0 -3.0 0.1 preset mcu 0.5"
+
+
+# scan = 117
+# date = 10/26/2011
+# time = 1:38:11 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.5 e -4.0 -3.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.5 e -4.0 -3.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.5), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -4.0000 29.857 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.1107 83.0470 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.4439 5.0000 9.0000 473.8130 60.7890 502.5080 482.1220 500.000
+ 2 -1.0000 0.0000 3.5000 -3.9000 30.163 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.6794 83.4404 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.4439 5.0000 8.9000 473.1710 60.5350 495.4490 480.7530 500.000
+ 3 -1.0000 0.0000 3.5000 -3.8000 29.895 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2461 83.8376 -2.7386 0.5000 0.0000 0.0000 152.9745 -54.0507 2.4439 5.0000 8.8000 473.1590 60.6350 501.4420 482.1420 500.000
+ 4 -1.0000 0.0000 3.5000 -3.7000 29.861 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.8106 84.2389 -2.7386 0.5000 0.0000 0.0000 152.8069 -54.3860 2.4439 5.0000 8.7000 473.7860 60.5670 503.0850 482.2050 500.000
+ 5 -1.0000 0.0000 3.5000 -3.6000 30.011 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.3730 84.6443 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.4439 5.0000 8.6000 473.2680 60.3660 496.4760 481.0090 500.000
+ 6 -1.0000 0.0000 3.5000 -3.5000 29.939 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.9330 85.0541 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.4439 5.0000 8.5000 472.9820 65.5830 500.1070 482.0870 500.000
+ 7 -1.0000 0.0000 3.5000 -3.4000 29.808 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.4908 85.4682 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.4439 5.0000 8.4000 473.7950 70.4630 503.4370 482.3480 500.000
+ 8 -1.0000 0.0000 3.5000 -3.3000 29.739 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.0461 85.8869 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.4439 5.0000 8.3000 473.4500 74.2100 497.5130 481.3470 500.000
+ 9 -1.0000 0.0000 3.5000 -3.2000 29.972 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.5990 86.3103 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.4439 5.0000 8.2000 472.9790 69.3190 498.9370 481.9450 500.000
+ 10 -1.0000 0.0000 3.5000 -3.1000 29.753 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.1494 86.7386 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.4439 5.0000 8.1000 473.8440 63.4750 503.6590 482.3890 500.000
+ 11 -1.0000 0.0000 3.5000 -3.0000 29.415 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.6972 87.1718 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.4439 5.0000 8.0000 473.5830 61.9260 498.4420 481.3780 500.000
+# Sum of Counts = 122
+# Center of Mass = -3.616393+/-0.463963
+# Full Width Half-Maximum = 0.649015+/-0.317432
+# 1:44:15 PM 10/26/2011 scan completed.
+
+1:44:15 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.2), add data
+
+
+1:44:15 PM 10/26/2011 Executing "scan h -1 k 0 l 3.2 e -3.5 -3.0 0.1 preset mcu 0.5"
+
+
+# scan = 118
+# date = 10/26/2011
+# time = 1:44:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.2 e -3.5 -3.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.2 e -3.5 -3.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.2), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.2000 -3.5000 29.983 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.8389 79.8830 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3259 5.0000 8.5000 473.0700 61.4840 500.0860 482.1460 500.000
+ 2 -1.0000 0.0000 3.2000 -3.4000 29.551 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.3914 80.2712 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.3259 5.0000 8.4000 473.8330 61.2540 503.4660 482.2040 500.000
+ 3 -1.0000 0.0000 3.2000 -3.3000 29.736 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.9419 80.6632 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.3259 5.0000 8.3000 473.4540 60.9460 497.6720 481.1500 500.000
+ 4 -1.0000 0.0000 3.2000 -3.2000 29.788 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.4901 81.0591 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.3259 5.0000 8.2000 472.9020 60.8570 498.6430 481.7080 500.000
+ 5 -1.0000 0.0000 3.2000 -3.1000 29.902 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.0360 81.4591 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.3259 5.0000 8.1000 473.7470 60.7790 503.7530 482.2550 500.000
+ 6 -1.0000 0.0000 3.2000 -3.0000 29.995 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.5796 81.8633 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.3259 5.0000 8.0000 473.4990 60.5380 498.7600 481.3460 500.000
+# Sum of Counts = 83
+# Center of Mass = -3.287952+/-0.510734
+# Full Width Half-Maximum = 0.342067+/-0.444451
+# 1:47:37 PM 10/26/2011 scan completed.
+
+1:49:06 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.9), add data
+
+
+1:50:08 PM 10/26/2011 Executing "scan h -1 k 0 l 2.9 e -5.5 -4.0 0.1 preset mcu 0.5"
+
+
+# scan = 119
+# date = 10/26/2011
+# time = 1:50:08 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -5.5 -4.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -5.5 -4.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -5.5000 29.870 85.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.6072 68.3259 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.2130 5.0000 10.5000 473.5510 60.0870 500.3420 481.6430 500.000
+ 2 -1.0000 0.0000 2.9000 -5.4000 29.978 50.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1810 68.6439 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.2130 5.0000 10.4000 472.7200 59.9890 495.4650 481.0690 500.000
+ 3 -1.0000 0.0000 2.9000 -5.3000 30.027 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7539 68.9636 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.2130 5.0000 10.3000 473.4260 66.0560 503.3850 482.4350 500.000
+ 4 -1.0000 0.0000 2.9000 -5.2000 30.024 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.3256 69.2854 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 2.2130 5.0000 10.2000 473.6430 70.6370 501.1820 481.9110 500.000
+ 5 -1.0000 0.0000 2.9000 -5.0999 29.868 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.8961 69.6090 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.2130 5.0000 10.1000 472.8790 73.9580 495.0840 481.0260 500.000
+ 6 -1.0000 0.0000 2.9000 -5.0000 29.787 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4654 69.9347 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 2.2130 5.0000 10.0000 473.3840 67.3730 502.9570 482.3570 500.000
+ 7 -1.0000 0.0000 2.9000 -4.9000 29.851 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.0334 70.2624 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.2130 5.0000 9.9000 473.7330 62.4300 501.8930 481.8580 500.000
+ 8 -1.0000 0.0000 2.9000 -4.8000 30.057 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.6002 70.5922 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.2130 5.0000 9.8000 473.0110 61.2770 495.0380 480.8730 500.000
+ 9 -1.0000 0.0000 2.9000 -4.7000 29.933 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.1656 70.9242 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.2130 5.0000 9.7000 473.2440 61.0870 502.2310 482.0900 500.000
+ 10 -1.0000 0.0000 2.9000 -4.6000 30.042 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7297 71.2585 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.2130 5.0000 9.6000 473.7230 60.7960 502.5390 482.0060 500.000
+ 11 -1.0000 0.0000 2.9000 -4.5000 29.927 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2923 71.5951 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2130 5.0000 9.5000 473.0810 60.4670 495.5140 480.7010 500.000
+ 12 -1.0000 0.0000 2.9000 -4.4000 30.146 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8535 71.9340 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.2130 5.0000 9.4000 473.0660 60.4870 501.3770 481.9180 500.000
+ 13 -1.0000 0.0000 2.9000 -4.3000 30.228 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.4132 72.2754 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2130 5.0000 9.3000 473.7040 60.3510 503.0620 482.0570 500.000
+ 14 -1.0000 0.0000 2.9000 -4.2000 29.973 37.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.9714 72.6192 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2130 5.0000 9.2000 473.1560 60.0740 496.3500 480.8080 500.000
+ 15 -1.0000 0.0000 2.9000 -4.1000 29.823 57.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.5280 72.9656 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2130 5.0000 9.1000 472.8840 60.1050 500.2980 482.0580 500.000
+ 16 -1.0000 0.0000 2.9000 -4.0000 29.990 103.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.0830 73.3147 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2130 5.0000 9.0000 473.6370 60.0650 503.4660 482.0890 500.000
+# Sum of Counts = 526
+# Center of Mass = -4.725662+/-0.292572
+# Full Width Half-Maximum = 1.201844+/-0.219090
+# 1:59:01 PM 10/26/2011 scan completed.
+
+1:59:01 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.6), add data
+
+
+1:59:01 PM 10/26/2011 Executing "scan h -1 k 0 l 2.6 e -3.0 -2.0 0.1 preset mcu 0.5"
+
+
+# scan = 120
+# date = 10/26/2011
+# time = 1:59:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.6 e -3.0 -2.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.6 e -3.0 -2.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.6), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.6000 -3.0000 29.715 114.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.5933 72.4729 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.1060 5.0000 8.0000 473.1210 59.8020 496.5350 480.7020 500.000
+ 2 -1.0000 0.0000 2.6000 -2.9000 29.704 208.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.1172 72.8364 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.1060 5.0000 7.9000 472.7940 59.8110 500.0670 481.8980 500.000
+ 3 -1.0000 0.0000 2.6000 -2.8000 29.897 278.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.6391 73.2031 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.1060 5.0000 7.8000 473.5660 59.7910 503.5580 482.0940 500.000
+ 4 -1.0000 0.0000 2.6000 -2.7000 29.851 280.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1589 73.5731 -2.7386 0.5000 0.0000 0.0000 150.9377 -58.1243 2.1060 5.0000 7.7000 473.1760 59.4860 497.7260 481.0890 500.000
+ 5 -1.0000 0.0000 2.6000 -2.6000 29.954 210.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.6764 73.9464 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.1060 5.0000 7.6000 472.6150 60.6170 498.5260 481.7800 500.000
+ 6 -1.0000 0.0000 2.6000 -2.5000 30.129 158.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1917 74.3234 -2.7386 0.5000 0.0000 0.0000 150.5150 -58.9696 2.1060 5.0000 7.5000 473.5220 66.7400 503.6930 482.2920 500.000
+ 7 -1.0000 0.0000 2.6000 -2.4000 29.904 163.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.7046 74.7039 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.1060 5.0000 7.4000 473.3170 71.0450 498.5260 481.3300 500.000
+ 8 -1.0000 0.0000 2.6000 -2.3000 30.154 200.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.2151 75.0882 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.1060 5.0000 7.3000 472.6860 72.6390 497.6800 481.5620 500.000
+ 9 -1.0000 0.0000 2.6000 -2.2000 29.786 114.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.7232 75.4763 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.1060 5.0000 7.2000 473.6010 64.9620 503.7280 482.1690 500.000
+ 10 -1.0000 0.0000 2.6000 -2.1000 30.049 91.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2286 75.8685 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.1060 5.0000 7.1000 473.4650 61.5310 499.2730 481.2280 500.000
+ 11 -1.0000 0.0000 2.6000 -2.0000 30.332 74.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.7315 76.2648 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.1060 5.0000 7.0000 472.6820 60.7730 496.7800 481.2270 500.000
+# Sum of Counts = 1890
+# Center of Mass = -2.572328+/-0.083917
+# Full Width Half-Maximum = 0.550445+/-0.048792
+# 2:05:03 PM 10/26/2011 scan completed.
+
+2:05:03 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.9), add data
+
+
+2:05:04 PM 10/26/2011 Executing "scan h -1 k 0 l 2.9 e -7.0 -5.5 0.1 preset mcu 0.5"
+
+
+# scan = 121
+# date = 10/26/2011
+# time = 2:05:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.9 e -7.0 -5.5 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 2.9 e -7.0 -5.5 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.9), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -7.0000 30.011 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.8829 63.7494 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.2130 5.0000 12.0000 473.6340 60.4660 503.0010 482.0330 500.000
+ 2 -1.0000 0.0000 2.9000 -6.9000 29.954 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4702 64.0447 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.2130 5.0000 11.9000 473.0930 60.1450 496.4380 480.7660 500.000
+ 3 -1.0000 0.0000 2.9000 -6.8000 29.955 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0568 64.3412 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2073 2.2130 5.0000 11.8000 472.8090 60.1640 500.2050 481.8910 500.000
+ 4 -1.0000 0.0000 2.9000 -6.7000 30.165 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6427 64.6390 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.2130 5.0000 11.7000 473.5600 60.0550 503.4940 481.9810 500.000
+ 5 -1.0000 0.0000 2.9000 -6.6000 29.984 9.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.2278 64.9381 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.2130 5.0000 11.6000 473.1490 59.8090 497.6100 480.8960 500.000
+ 6 -1.0000 0.0000 2.9000 -6.5000 29.871 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.8122 65.2385 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.2130 5.0000 11.5000 472.6020 59.7260 498.7330 481.6030 500.000
+ 7 -1.0000 0.0000 2.9000 -6.4000 29.888 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3957 65.5404 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.2130 5.0000 11.4000 473.4450 59.7530 503.7320 482.0920 500.000
+ 8 -1.0000 0.0000 2.9000 -6.3000 30.122 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.9784 65.8436 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.2130 5.0000 11.3000 473.1990 59.5780 498.8300 481.1930 500.000
+ 9 -1.0000 0.0000 2.9000 -6.2000 29.875 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5603 66.1484 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.2130 5.0000 11.2000 472.4610 59.4630 497.0970 481.2800 500.000
+ 10 -1.0000 0.0000 2.9000 -6.1000 29.912 22.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.1412 66.4546 -2.7386 0.5000 0.0000 0.0000 156.1351 -47.7296 2.2130 5.0000 11.1000 473.3070 59.5430 503.7690 482.2540 500.000
+ 11 -1.0000 0.0000 2.9000 -6.0000 29.970 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7213 66.7624 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.2130 5.0000 11.0000 473.2280 59.3900 499.9300 481.5330 500.000
+ 12 -1.0000 0.0000 2.9000 -5.9000 29.931 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.3005 67.0718 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.2130 5.0000 10.9000 472.3930 59.2530 495.8530 481.0550 500.000
+ 13 -1.0000 0.0000 2.9000 -5.8000 29.851 36.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8786 67.3828 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.2130 5.0000 10.8000 473.1630 64.0210 503.4800 482.3740 500.000
+ 14 -1.0000 0.0000 2.9000 -5.7000 29.926 59.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4558 67.6954 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.2130 5.0000 10.7000 473.2990 68.8370 500.7930 481.7420 500.000
+ 15 -1.0000 0.0000 2.9000 -5.6000 30.244 97.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.0319 68.0098 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.2130 5.0000 10.6000 472.5360 72.6030 495.3370 480.9770 500.000
+ 16 -1.0000 0.0000 2.9000 -5.5000 29.895 64.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.6070 68.3259 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.2130 5.0000 10.5000 473.1660 68.4800 503.1780 482.1580 500.000
+# Sum of Counts = 426
+# Center of Mass = -5.886854+/-0.403809
+# Full Width Half-Maximum = 0.785708+/-0.218463
+# 2:13:56 PM 10/26/2011 scan completed.
+
+2:23:52 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,1.8), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,1.8), add data
+
+
+2:23:52 PM 10/26/2011 Executing "scan h -1 k 0 l 3.8 e -7.9 -3.0 0.1 preset mcu 0.5"
+
+
+# scan = 122
+# date = 10/26/2011
+# time = 2:23:52 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 3.8 e -7.9 -3.0 0.1 preset mcu 0.5
+# builtin_command = scan h -1 k 0 l 3.8 e -7.9 -3.0 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,1.8), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.8000 -7.9000 30.135 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.6093 74.6442 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5663 5.0000 12.9000 473.3840 62.1020 502.4050 481.6440 500.000
+ 2 -1.0000 0.0000 3.8000 -7.8000 29.734 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.2389 74.9540 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5663 5.0000 12.8000 472.7450 60.4970 495.4340 480.5340 500.000
+ 3 -1.0000 0.0000 3.8000 -7.7000 30.071 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.8677 75.2656 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5663 5.0000 12.7000 472.7640 60.2710 501.4570 481.8400 500.000
+ 4 -1.0000 0.0000 3.8000 -7.6000 29.890 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4955 75.5789 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6346 2.5663 5.0000 12.6000 473.3910 60.0170 503.0400 481.8210 500.000
+ 5 -1.0000 0.0000 3.8000 -7.5000 30.015 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.1223 75.8940 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5663 5.0000 12.5000 472.8640 59.6580 496.5110 480.6630 500.000
+ 6 -1.0000 0.0000 3.8000 -7.4000 30.028 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.7482 76.2110 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5663 5.0000 12.4000 472.5740 59.5980 500.1140 481.8540 500.000
+ 7 -1.0000 0.0000 3.8000 -7.3000 29.661 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3730 76.5298 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5663 5.0000 12.3000 473.3350 59.4940 503.4310 481.9540 500.000
+ 8 -1.0000 0.0000 3.8000 -7.2000 29.947 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.9969 76.8507 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5663 5.0000 12.2000 472.9430 59.2450 497.7500 480.9050 500.000
+ 9 -1.0000 0.0000 3.8000 -7.1000 30.089 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6197 77.1735 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5663 5.0000 12.1000 472.3830 59.2020 498.5790 481.4860 500.000
+ 10 -1.0000 0.0000 3.8000 -7.0000 29.959 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2414 77.4984 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5663 5.0000 12.0000 473.2300 59.1730 503.7000 482.0390 500.000
+ 11 -1.0000 0.0000 3.8000 -6.9000 29.889 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.8620 77.8253 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5663 5.0000 11.9000 472.9870 58.9690 498.7870 481.0570 500.000
+ 12 -1.0000 0.0000 3.8000 -6.8000 29.878 21.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.4815 78.1544 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2074 2.5663 5.0000 11.8000 472.2680 58.8870 497.1940 481.1910 500.000
+ 13 -1.0000 0.0000 3.8000 -6.6999 30.000 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.0999 78.4856 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4160 2.5663 5.0000 11.6999 473.1220 58.9680 503.7310 482.0800 500.000
+ 14 -1.0000 0.0000 3.8000 -6.6000 30.001 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7170 78.8191 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6274 2.5663 5.0000 11.6000 473.0370 58.7900 499.8430 481.3210 500.000
+ 15 -1.0000 0.0000 3.8000 -6.5000 29.777 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.3330 79.1549 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5663 5.0000 11.5000 472.2180 58.6630 496.0300 480.9480 500.000
+ 16 -1.0000 0.0000 3.8000 -6.4000 29.911 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.9477 79.4930 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5663 5.0000 11.4000 473.0000 63.1440 503.5020 482.2080 500.000
+ 17 -1.0000 0.0000 3.8000 -6.3000 29.923 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.5611 79.8336 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5663 5.0000 11.3000 473.1100 67.9990 500.6430 481.5650 500.000
+ 18 -1.0000 0.0000 3.8000 -6.2000 29.981 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.1732 80.1766 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5663 5.0000 11.2000 472.3430 71.7630 495.4400 480.8520 500.000
+ 19 -1.0000 0.0000 3.8000 -6.1000 29.716 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.7841 80.5220 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5663 5.0000 11.1000 473.0080 67.6770 503.2070 482.0390 500.000
+ 20 -1.0000 0.0000 3.8000 -6.0000 30.008 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.3935 80.8701 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5663 5.0000 11.0000 473.2530 61.5930 501.4020 481.4550 500.000
+ 21 -1.0000 0.0000 3.8000 -5.9000 30.042 32.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.0016 81.2208 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5663 5.0000 10.9000 472.4940 60.2420 495.1050 480.5860 500.000
+ 22 -1.0000 0.0000 3.8000 -5.8000 30.081 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.6082 81.5743 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 2.5663 5.0000 10.8000 472.9170 60.0660 502.7240 481.9350 500.000
+ 23 -1.0000 0.0000 3.8000 -5.7000 30.175 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.2134 81.9305 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5663 5.0000 10.7000 473.2730 59.7280 501.9920 481.5450 500.000
+ 24 -1.0000 0.0000 3.8000 -5.6000 30.094 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.8170 82.2896 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5663 5.0000 10.6000 472.5540 59.3250 495.1250 480.6310 500.000
+ 25 -1.0000 0.0000 3.8000 -5.5000 29.905 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.4192 82.6515 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5663 5.0000 10.5000 472.7660 59.3560 502.1410 481.8870 500.000
+ 26 -1.0000 0.0000 3.8000 -5.4000 29.896 17.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.0197 83.0165 -2.7386 0.5000 0.0000 0.0000 155.2932 -49.4134 2.5663 5.0000 10.4000 473.2530 59.1890 502.5370 481.7490 500.000
+ 27 -1.0000 0.0000 3.8000 -5.3000 29.800 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.6186 83.3846 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.5663 5.0000 10.3000 472.6220 58.8930 495.6280 480.4900 500.000
+ 28 -1.0000 0.0000 3.8000 -5.2000 29.961 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.2159 83.7558 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.5663 5.0000 10.2000 472.5760 58.9720 501.2090 481.8170 500.000
+ 29 -1.0000 0.0000 3.8000 -5.1000 29.710 26.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.8115 84.1302 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.5663 5.0000 10.1000 473.2190 58.8660 503.0770 481.9220 500.000
+ 30 -1.0000 0.0000 3.8000 -5.0000 30.205 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.4054 84.5080 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.5663 5.0000 10.0000 472.7090 58.6210 496.7030 480.7480 500.000
+ 31 -1.0000 0.0000 3.8000 -4.9000 29.829 28.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.9975 84.8892 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.5663 5.0000 9.9000 472.3860 58.6760 500.0210 481.8190 500.000
+ 32 -1.0000 0.0000 3.8000 -4.8000 30.145 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.5878 85.2739 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.5663 5.0000 9.8000 473.1510 58.6520 503.5040 482.0030 500.000
+ 33 -1.0000 0.0000 3.8000 -4.7000 29.801 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1762 85.6622 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 2.5663 5.0000 9.7000 472.7590 58.4490 497.7130 480.9390 500.000
+ 34 -1.0000 0.0000 3.8000 -4.6000 30.238 35.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.7627 86.0542 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.5663 5.0000 9.6000 472.2050 58.4560 498.5620 481.4850 500.000
+ 35 -1.0000 0.0000 3.8000 -4.5000 30.030 46.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.3472 86.4500 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.5663 5.0000 9.5000 473.0790 62.2530 503.7250 482.1790 500.000
+ 36 -1.0000 0.0000 3.8000 -4.4000 29.935 53.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.9297 86.8498 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.5663 5.0000 9.4000 472.8480 67.2860 498.6500 481.2170 500.000
+ 37 -1.0000 0.0000 3.8000 -4.3000 29.816 47.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.5102 87.2535 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.5663 5.0000 9.3000 472.1870 71.1950 497.3940 481.3820 500.000
+ 38 -1.0000 0.0000 3.8000 -4.2000 30.117 41.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.0885 87.6614 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.5663 5.0000 9.2000 473.0880 67.9940 503.7460 482.1050 500.000
+ 39 -1.0000 0.0000 3.8000 -4.1000 30.227 25.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.6647 88.0736 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.5663 5.0000 9.1000 473.0170 61.2920 499.6820 481.1900 500.000
+ 40 -1.0000 0.0000 3.8000 -4.0000 29.733 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.2386 88.4902 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.5663 5.0000 9.0000 472.2270 59.9680 496.2610 480.9470 500.000
+ 41 -1.0000 0.0000 3.8000 -3.9000 30.139 23.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.1898 88.9113 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.5663 5.0000 8.9000 473.0420 59.7790 503.6250 482.0850 500.000
+ 42 -1.0000 0.0000 3.8000 -3.8000 29.883 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.6205 89.3370 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 2.5663 5.0000 8.8000 473.0750 59.4260 500.5450 481.4130 500.000
+ 43 -1.0000 0.0000 3.8000 -3.7000 30.025 30.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.0536 89.7676 -2.7386 0.5000 0.0000 0.0000 152.8068 -54.3860 2.5663 5.0000 8.7000 472.2420 59.1140 495.4350 480.7760 500.000
+ 44 -1.0000 0.0000 3.8000 -3.6000 30.095 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.4892 90.2032 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.5663 5.0000 8.6000 472.9020 59.1090 503.2830 482.1300 500.000
+ 45 -1.0000 0.0000 3.8000 -3.5000 30.166 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.9274 90.6438 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.5663 5.0000 8.5000 473.0820 58.9060 501.2760 481.5890 500.000
+ 46 -1.0000 0.0000 3.8000 -3.4000 30.137 18.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.3682 91.0897 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.5663 5.0000 8.4000 472.2770 58.6560 495.0750 480.7010 500.000
+ 47 -1.0000 0.0000 3.8000 -3.3000 30.136 11.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.8117 91.5411 -2.7386 0.5000 0.0000 0.0000 152.1037 -55.7925 2.5663 5.0000 8.3000 472.7550 58.7330 502.8600 482.0710 500.000
+ 48 -1.0000 0.0000 3.8000 -3.2000 29.977 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.2579 91.9981 -2.7386 0.5000 0.0000 0.0000 151.9192 -56.1615 2.5663 5.0000 8.2000 473.0540 58.6120 501.8150 481.6440 500.000
+ 49 -1.0000 0.0000 3.8000 -3.1000 30.111 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.7070 92.4609 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.5663 5.0000 8.1000 472.2910 58.3660 495.0520 480.7240 500.000
+ 50 -1.0000 0.0000 3.8000 -3.0000 30.139 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.1591 92.9297 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.5663 5.0000 8.0000 472.5810 58.5130 502.3890 482.0230 500.000
+# Sum of Counts = 1167
+# Center of Mass = -5.434102+/-0.228236
+# Full Width Half-Maximum = 2.632183+/-0.092139
+# 2:50:58 PM 10/26/2011 scan completed.
+
+2:50:58 PM 10/26/2011 Executing "scantitle "Optic dispersion G (101)""
+
+Setting the scantitle to:
+Optic dispersion G (101)
+
+
+2:50:58 PM 10/26/2011 Executing "scan h 1 k 0 l 1 e -12.5 -5.0 0.25 preset mcu 4.0"
+
+
+# scan = 123
+# date = 10/26/2011
+# time = 2:50:58 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -12.5 -5.0 0.25 preset mcu 4.0
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -5.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion G (101)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 240.445 40.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6801 5.0000 17.5000 472.4460 58.3600 502.0220 481.9660 500.000
+ 2 1.0000 0.0000 1.0000 -12.2500 241.410 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0620 -37.8756 1.6801 5.0000 17.2500 473.0380 59.4170 501.0710 481.4840 500.000
+ 3 1.0000 0.0000 1.0000 -12.0000 240.185 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.6801 5.0000 17.0000 472.0420 58.3930 497.1640 481.1860 500.000
+ 4 1.0000 0.0000 1.0000 -11.7500 240.540 38.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 473.0090 70.8530 503.2980 481.9520 500.000
+ 5 1.0000 0.0000 1.0000 -11.5000 240.825 43.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 472.3550 58.5330 495.4150 480.5620 500.000
+ 6 1.0000 0.0000 1.0000 -11.2500 241.031 43.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1316 31.3166 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.6801 5.0000 16.2500 472.5270 58.1260 503.0560 481.9710 500.000
+ 7 1.0000 0.0000 1.0000 -11.0000 240.646 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6488 32.1152 -2.7386 0.5000 0.0000 0.0000 160.3068 -39.3861 1.6801 5.0000 16.0000 472.8220 58.8310 500.2580 481.2330 500.000
+ 8 1.0000 0.0000 1.0000 -10.7500 240.498 39.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1446 32.9031 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.6801 5.0000 15.7500 471.7950 57.6540 497.5620 481.2360 500.000
+ 9 1.0000 0.0000 1.0000 -10.5000 240.482 47.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6208 33.6813 -2.7386 0.5000 0.0000 0.0000 159.9784 -40.0430 1.6801 5.0000 15.5000 472.7980 70.8640 503.2690 481.9140 500.000
+ 10 1.0000 0.0000 1.0000 -10.2500 240.677 65.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.0791 34.4507 -2.7386 0.5000 0.0000 0.0000 159.8078 -40.3841 1.6801 5.0000 15.2500 472.1390 57.7410 495.3850 480.4730 500.000
+ 11 1.0000 0.0000 1.0000 -10.0000 239.708 89.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6329 -40.7340 1.6801 5.0000 15.0000 472.3580 57.3960 502.9120 481.9540 500.000
+ 12 1.0000 0.0000 1.0000 -9.7500 241.091 83.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.6801 5.0000 14.7500 472.7950 58.5610 500.8100 481.4170 500.000
+ 13 1.0000 0.0000 1.0000 -9.5000 240.933 129.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 471.7640 58.0930 496.3530 480.9410 500.000
+ 14 1.0000 0.0000 1.0000 -9.2500 240.483 149.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.6801 5.0000 14.2500 472.6720 65.5060 503.7360 482.0580 500.000
+ 15 1.0000 0.0000 1.0000 -9.0000 240.688 175.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.6801 5.0000 14.0000 472.4040 58.1240 497.0040 480.6870 500.000
+ 16 1.0000 0.0000 1.0000 -8.7500 240.008 198.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 472.1500 57.5430 501.7370 481.8290 500.000
+ 17 1.0000 0.0000 1.0000 -8.5000 240.068 197.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 472.7710 59.0150 501.4610 481.5090 500.000
+ 18 1.0000 0.0000 1.0000 -8.2500 240.343 140.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.2642 40.3766 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.6801 5.0000 13.2500 471.7450 58.3020 495.4690 480.7370 500.000
+ 19 1.0000 0.0000 1.0000 -8.0000 239.882 90.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6190 41.0978 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6801 5.0000 13.0000 472.5570 68.0380 503.6580 482.0950 500.000
+ 20 1.0000 0.0000 1.0000 -7.7500 240.729 71.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.9672 41.8164 -2.7386 0.5000 0.0000 0.0000 157.8214 -44.3571 1.6801 5.0000 12.7500 472.5450 59.6830 498.3860 480.9630 500.000
+ 21 1.0000 0.0000 1.0000 -7.5000 240.877 57.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.3099 42.5328 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6801 5.0000 12.5000 472.0730 58.7340 500.4930 481.8640 500.000
+ 22 1.0000 0.0000 1.0000 -7.2500 240.276 42.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.6477 43.2476 -2.7386 0.5000 0.0000 0.0000 157.3487 -45.3025 1.6801 5.0000 12.2500 472.8990 60.5500 502.0820 481.5980 500.000
+ 23 1.0000 0.0000 1.0000 -7.0000 240.557 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.9814 43.9612 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6801 5.0000 12.0000 471.9560 58.5400 495.1590 480.7000 500.000
+ 24 1.0000 0.0000 1.0000 -6.7500 239.906 35.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 69.3119 44.6739 -2.7386 0.5000 0.0000 0.0000 156.8444 -46.3112 1.6801 5.0000 11.7500 472.6210 65.3500 503.6590 482.1660 500.000
+ 25 1.0000 0.0000 1.0000 -6.5000 240.272 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 70.6397 45.3863 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6801 5.0000 11.5000 472.5190 58.6400 498.3380 480.9550 500.000
+ 26 1.0000 0.0000 1.0000 -6.2500 240.146 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.9657 46.0988 -2.7386 0.5000 0.0000 0.0000 156.3046 -47.3907 1.6801 5.0000 11.2500 471.8740 57.6560 500.0890 481.7930 500.000
+ 27 1.0000 0.0000 1.0000 -6.0000 239.918 38.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.2906 46.8118 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6801 5.0000 11.0000 472.7750 60.9320 502.3760 481.7410 500.000
+ 28 1.0000 0.0000 1.0000 -5.7500 240.437 27.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.6150 47.5256 -2.7386 0.5000 0.0000 0.0000 155.7252 -48.5495 1.6801 5.0000 10.7500 471.7710 57.4750 495.1000 480.6780 500.000
+ 29 1.0000 0.0000 1.0000 -5.5000 239.638 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.9397 48.2409 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6801 5.0000 10.5000 472.4680 66.2670 503.6340 482.2050 500.000
+ 30 1.0000 0.0000 1.0000 -5.2500 239.893 23.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.2654 48.9580 -2.7386 0.5000 0.0000 0.0000 155.1010 -49.7981 1.6801 5.0000 10.2500 472.3730 57.9890 498.4040 481.0280 500.000
+ 31 1.0000 0.0000 1.0000 -5.0000 239.907 20.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.5928 49.6773 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6801 5.0000 10.0000 471.8140 57.4230 500.1880 481.9590 500.000
+# Sum of Counts = 2148
+# Center of Mass = -8.905144+/-0.273990
+# Full Width Half-Maximum = 3.254523+/-0.104476
+# 4:57:40 PM 10/26/2011 scan completed.
+
+4:57:40 PM 10/26/2011 Executing "scantitle "LA + TA phonons in (-102) at (0,0,0.3), add data""
+
+Setting the scantitle to:
+LA + TA phonons in (-102) at (0,0,0.3), add data
+
+
+4:57:40 PM 10/26/2011 Executing "scan h -1 k 0 l 2.3 e -2.3 -0.4 0.1 preset mcu 0.25"
+
+
+# scan = 124
+# date = 10/26/2011
+# time = 4:57:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -1 k 0 l 2.3 e -2.3 -0.4 0.1 preset mcu 0.25
+# builtin_command = scan h -1 k 0 l 2.3 e -2.3 -0.4 0.1 preset mcu 0.25
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA phonons in (-102) at (0,0,0.3), add data
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.250000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.3000 -2.3000 15.065 42.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.3212 70.8576 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0059 5.0000 7.3000 471.8160 58.5620 497.3230 481.4890 500.000
+ 2 -1.0000 0.0000 2.3000 -2.2000 15.089 61.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8180 71.2250 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.0059 5.0000 7.2000 472.3000 58.6000 502.3680 482.2900 500.000
+ 3 -1.0000 0.0000 2.3000 -2.1000 15.058 55.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.3125 71.5957 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0059 5.0000 7.1000 472.7090 58.5610 503.6920 482.3550 500.000
+ 4 -1.0000 0.0000 2.3000 -2.0000 14.975 47.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.8045 71.9700 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0059 5.0000 7.0000 472.6960 58.4910 501.9020 481.9450 500.000
+ 5 -1.0000 0.0000 2.3000 -1.9000 14.738 57.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.2940 72.3478 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0059 5.0000 6.9000 472.3750 58.3600 498.2700 481.3090 500.000
+ 6 -1.0000 0.0000 2.3000 -1.8000 14.965 76.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.7808 72.7294 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0059 5.0000 6.8000 471.8620 58.1880 495.0450 480.9290 500.000
+ 7 -1.0000 0.0000 2.3000 -1.7000 15.103 147.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.2650 73.1149 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.0059 5.0000 6.7000 471.8110 58.2240 499.0090 481.8450 500.000
+ 8 -1.0000 0.0000 2.3000 -1.6000 15.086 237.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7463 73.5044 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2933 2.0059 5.0000 6.6000 472.3690 58.2770 503.1890 482.3830 500.000
+ 9 -1.0000 0.0000 2.3000 -1.5000 15.072 404.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.2247 73.8981 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0059 5.0000 6.5000 472.6520 58.1930 503.4270 482.2160 500.000
+ 10 -1.0000 0.0000 2.3000 -1.4000 15.207 392.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.7002 74.2961 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 2.0059 5.0000 6.4000 472.5250 58.0650 500.9010 481.7000 500.000
+ 11 -1.0000 0.0000 2.3000 -1.3000 14.891 276.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.1726 74.6986 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 2.0059 5.0000 6.3000 472.1140 57.8700 496.7670 480.9760 500.000
+ 12 -1.0000 0.0000 2.3000 -1.2000 14.979 224.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.6418 75.1057 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 2.0059 5.0000 6.2000 471.6270 57.7230 495.6440 480.9800 500.000
+ 13 -1.0000 0.0000 2.3000 -1.1000 15.095 373.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -16.1077 75.5177 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 2.0059 5.0000 6.1000 471.8960 57.7150 500.9050 482.1010 500.000
+ 14 -1.0000 0.0000 2.3000 -1.0000 15.248 241.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.5702 75.9347 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 2.0059 5.0000 6.0000 472.4220 57.5840 503.7150 482.3180 500.000
+ 15 -1.0000 0.0000 2.3000 -0.9000 15.010 89.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -15.0292 76.3569 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 2.0059 5.0000 5.9000 472.5510 57.3940 502.8230 482.0220 500.000
+ 16 -1.0000 0.0000 2.3000 -0.8000 15.023 57.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -14.4846 76.7846 -2.7386 0.5000 0.0000 0.0000 145.9652 -68.0695 2.0059 5.0000 5.8000 472.3180 57.0950 499.6190 481.4340 500.000
+ 17 -1.0000 0.0000 2.3000 -0.7000 15.056 28.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.9363 77.2179 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 2.0059 5.0000 5.7000 471.8310 56.6420 495.3120 480.7540 500.000
+ 18 -1.0000 0.0000 2.3000 -0.6000 15.064 31.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.3841 77.6571 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 2.0059 5.0000 5.6000 471.5140 56.8030 497.1890 481.3410 500.000
+ 19 -1.0000 0.0000 2.3000 -0.5000 14.831 18.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.8278 78.1025 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 2.0059 5.0000 5.5000 472.0160 56.7210 502.4230 482.1020 500.000
+ 20 -1.0000 0.0000 2.3000 -0.4000 14.980 19.000 22898.000 0.250 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.2675 78.5543 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9088 2.0059 5.0000 5.4000 472.4340 56.6940 503.7960 482.1110 500.000
+# Sum of Counts = 2874
+# Center of Mass = -1.366980+/-0.036661
+# Full Width Half-Maximum = 0.708548+/-0.020109
+# 5:04:27 PM 10/26/2011 scan completed.
+
+5:04:27 PM 10/26/2011 Executing "scantitle "Dispersion G-X in (101) zone""
+
+Setting the scantitle to:
+Dispersion G-X in (101) zone
+
+
+5:04:27 PM 10/26/2011 Executing "scan h 1.5 k 0 l 0 e -5.0 -2.2 0.1 preset mcu 0.5"
+
+
+# scan = 125
+# date = 10/26/2011
+# time = 5:04:27 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -5.0 -2.2 0.1 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 0 e -5.0 -2.2 0.1 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 29.914 16.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.8832 77.1477 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3918 5.0000 10.0000 471.9080 65.7840 501.9600 481.9980 500.000
+ 2 1.5000 0.0000 0.0000 -4.9000 29.984 8.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.2996 77.4993 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.3918 5.0000 9.9000 472.5160 69.4520 502.6040 481.8620 500.000
+ 3 1.5000 0.0000 0.0000 -4.8000 30.012 10.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.7174 77.8536 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.3918 5.0000 9.8000 471.9330 64.7870 495.8060 480.6120 500.000
+ 4 1.5000 0.0000 0.0000 -4.7000 29.784 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.1368 78.2107 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.3918 5.0000 9.7000 471.9260 60.4320 501.1930 481.8720 500.000
+ 5 1.5000 0.0000 0.0000 -4.6000 29.809 5.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.5578 78.5708 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.3918 5.0000 9.6000 472.5880 59.2500 503.0740 481.9010 500.000
+ 6 1.5000 0.0000 0.0000 -4.5000 29.691 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9806 78.9338 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3918 5.0000 9.5000 472.0680 58.5190 496.7380 480.7160 500.000
+ 7 1.5000 0.0000 0.0000 -4.4000 30.091 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.4050 79.2999 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.3918 5.0000 9.4000 471.7540 58.3380 499.8910 481.7390 500.000
+ 8 1.5000 0.0000 0.0000 -4.3000 29.829 20.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.8311 79.6692 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.3918 5.0000 9.3000 472.5260 57.8130 503.4500 481.9820 500.000
+ 9 1.5000 0.0000 0.0000 -4.2000 30.256 27.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.2590 80.0417 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.3918 5.0000 9.2000 472.1030 57.1240 497.7390 480.9260 500.000
+ 10 1.5000 0.0000 0.0000 -4.1000 29.918 45.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.6888 80.4176 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.3918 5.0000 9.1000 471.5800 57.5470 498.8050 481.4870 500.000
+ 11 1.5000 0.0000 0.0000 -4.0000 29.963 59.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.1205 80.7969 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3918 5.0000 9.0000 472.4310 56.8200 503.6570 481.9990 500.000
+ 12 1.5000 0.0000 0.0000 -3.9000 29.850 76.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.5541 81.1797 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 2.3918 5.0000 8.9000 472.1260 57.0220 498.5950 481.0070 500.000
+ 13 1.5000 0.0000 0.0000 -3.8000 29.678 106.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.9897 81.5662 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 2.3918 5.0000 8.8000 471.4390 57.3260 497.4850 481.2570 500.000
+ 14 1.5000 0.0000 0.0000 -3.7000 29.975 156.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.4273 81.9564 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.3918 5.0000 8.7000 472.3270 57.4890 503.8100 482.0850 500.000
+ 15 1.5000 0.0000 0.0000 -3.6000 29.983 199.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.8670 82.3505 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.3918 5.0000 8.6000 472.1720 57.2550 499.5920 481.2750 500.000
+ 16 1.5000 0.0000 0.0000 -3.5000 29.741 181.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.3089 82.7486 -2.7386 0.5000 0.0000 0.0000 152.4621 -55.0756 2.3918 5.0000 8.5000 471.3700 57.1050 496.2790 480.9970 500.000
+ 17 1.5000 0.0000 0.0000 -3.4000 29.774 192.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.7530 83.1508 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4306 2.3918 5.0000 8.4000 472.2110 57.7600 503.7230 482.1560 500.000
+ 18 1.5000 0.0000 0.0000 -3.3000 29.898 146.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.1994 83.5572 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.3918 5.0000 8.3000 472.2440 63.2740 500.5040 481.4750 500.000
+ 19 1.5000 0.0000 0.0000 -3.2000 29.729 105.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.6481 83.9679 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.3918 5.0000 8.2000 471.4470 67.2870 495.3950 480.8510 500.000
+ 20 1.5000 0.0000 0.0000 -3.1000 29.701 84.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.0992 84.3832 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.3918 5.0000 8.1000 472.2090 69.4410 503.3300 482.1770 500.000
+ 21 1.5000 0.0000 0.0000 -3.0000 29.825 46.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.5528 84.8030 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.3918 5.0000 8.0000 472.4310 62.6630 501.2770 481.4750 500.000
+ 22 1.5000 0.0000 0.0000 -2.9000 29.851 29.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.0089 85.2277 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.3918 5.0000 7.9000 471.6770 59.7050 495.0080 480.6010 500.000
+ 23 1.5000 0.0000 0.0000 -2.8000 29.844 24.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.4676 85.6574 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.3918 5.0000 7.8000 472.1800 58.5250 502.8980 482.0040 500.000
+ 24 1.5000 0.0000 0.0000 -2.7000 30.090 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.9290 86.0921 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.3918 5.0000 7.7000 472.5040 58.0660 501.9620 481.6530 500.000
+ 25 1.5000 0.0000 0.0000 -2.6000 29.752 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.3932 86.5322 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.3918 5.0000 7.6000 471.7500 57.7350 495.0120 480.5950 500.000
+ 26 1.5000 0.0000 0.0000 -2.5000 29.870 15.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.8602 86.9777 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.3918 5.0000 7.5000 471.9970 57.5740 502.2340 481.8720 500.000
+ 27 1.5000 0.0000 0.0000 -2.4000 30.049 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 130.3302 87.4288 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.3918 5.0000 7.4000 472.4680 57.4360 502.5150 481.7180 500.000
+ 28 1.5000 0.0000 0.0000 -2.3000 29.977 13.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 130.8032 87.8858 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.3918 5.0000 7.3000 471.7900 57.1180 495.5180 480.5900 500.000
+ 29 1.5000 0.0000 0.0000 -2.2000 29.872 7.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 131.2792 88.3489 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 2.3918 5.0000 7.2000 471.7980 57.1820 501.4280 481.8710 500.000
+# Sum of Counts = 1665
+# Center of Mass = -3.529670+/-0.122863
+# Full Width Half-Maximum = 0.930748+/-0.044608
+# 5:21:14 PM 10/26/2011 scan completed.
+
+5:21:14 PM 10/26/2011 Executing "scan h 1.4 k 0 l 0.2 e -5.3 -2.5 0.1 preset mcu 1.0"
+
+
+# scan = 126
+# date = 10/26/2011
+# time = 5:21:14 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.4 k 0 l 0.2 e -5.3 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.4 k 0 l 0.2 e -5.3 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.4000 0.0000 0.2000 -5.3000 59.615 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.2831 69.8236 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.2349 5.0000 10.3000 472.1650 56.8980 499.6670 481.1390 500.000
+ 2 1.4000 0.0000 0.2000 -5.2000 60.137 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.7090 70.1476 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.2349 5.0000 10.2000 472.0900 56.7280 503.4550 481.9780 500.000
+ 3 1.4000 0.0000 0.2000 -5.1000 60.312 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.1361 70.4738 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.2349 5.0000 10.1000 471.4390 57.2470 494.9540 480.5830 500.000
+ 4 1.4000 0.0000 0.2000 -5.0000 59.844 68.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.5645 70.8020 -2.7386 0.5000 0.0000 0.0000 154.7701 -50.4597 2.2349 5.0000 10.0000 472.3260 66.9020 502.3780 481.7370 500.000
+ 5 1.4000 0.0000 0.2000 -4.9000 59.882 77.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.9941 71.1323 -2.7386 0.5000 0.0000 0.0000 154.6340 -50.7319 2.2349 5.0000 9.9000 471.7560 62.3070 501.0380 481.7530 500.000
+ 6 1.4000 0.0000 0.2000 -4.8000 59.544 77.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.4251 71.4648 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.2349 5.0000 9.8000 472.0300 58.1840 497.4060 480.6590 500.000
+ 7 1.4000 0.0000 0.2000 -4.7000 59.622 75.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.8574 71.7996 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.2349 5.0000 9.7000 472.3840 57.7330 503.7230 481.8590 500.000
+ 8 1.4000 0.0000 0.2000 -4.6000 59.871 95.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.2912 72.1366 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.2349 5.0000 9.6000 471.3990 57.0960 496.2800 480.8340 500.000
+ 9 1.4000 0.0000 0.2000 -4.5000 60.102 103.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.7263 72.4761 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.2349 5.0000 9.5000 472.2570 57.0770 500.9390 481.2660 500.000
+ 10 1.4000 0.0000 0.2000 -4.4000 60.237 96.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1630 72.8180 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.2349 5.0000 9.4000 471.9240 56.8830 502.7650 481.8690 500.000
+ 11 1.4000 0.0000 0.2000 -4.3000 59.890 93.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.6011 73.1624 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.2349 5.0000 9.3000 471.5990 56.2360 495.4160 480.4500 500.000
+ 12 1.4000 0.0000 0.2000 -4.2000 60.059 120.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.0408 73.5095 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.2349 5.0000 9.2000 472.2690 56.5210 503.1410 481.6780 500.000
+ 13 1.4000 0.0000 0.2000 -4.1000 59.701 120.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.4822 73.8591 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.2349 5.0000 9.1000 471.4180 64.1890 499.3260 481.6100 500.000
+ 14 1.4000 0.0000 0.2000 -4.0000 60.000 116.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.9251 74.2115 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.2349 5.0000 9.0000 472.0530 65.8230 498.5220 480.9230 500.000
+ 15 1.4000 0.0000 0.2000 -3.9000 59.946 91.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.3698 74.5668 -2.7386 0.5000 0.0000 0.0000 153.1391 -53.7217 2.2349 5.0000 8.9000 472.3280 58.3030 503.5470 481.9810 500.000
+ 16 1.4000 0.0000 0.2000 -3.8000 60.053 80.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.8162 74.9249 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.2349 5.0000 8.8000 471.4550 57.4790 496.3170 480.8980 500.000
+ 17 1.4000 0.0000 0.2000 -3.7000 59.789 99.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.2643 75.2860 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.2349 5.0000 8.7000 472.2610 56.9450 500.6760 481.3520 500.000
+ 18 1.4000 0.0000 0.2000 -3.6000 59.904 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.7144 75.6501 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.2349 5.0000 8.6000 472.0220 56.5290 502.9220 482.0350 500.000
+ 19 1.4000 0.0000 0.2000 -3.5000 59.679 75.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.1662 76.0174 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.2349 5.0000 8.5000 471.5450 56.0740 495.2870 480.6540 500.000
+ 20 1.4000 0.0000 0.2000 -3.4000 59.480 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.6201 76.3880 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.2349 5.0000 8.4000 472.2490 55.8650 502.3640 481.6820 500.000
+ 21 1.4000 0.0000 0.2000 -3.3000 59.737 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.0759 76.7620 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7925 2.2349 5.0000 8.3000 471.6020 55.6600 501.0650 481.7650 500.000
+ 22 1.4000 0.0000 0.2000 -3.2000 59.657 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.5338 77.1394 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.2349 5.0000 8.2000 471.7960 64.3930 496.9640 480.8560 500.000
+ 23 1.4000 0.0000 0.2000 -3.1000 59.914 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.9938 77.5203 -2.7386 0.5000 0.0000 0.0000 151.7308 -56.5380 2.2349 5.0000 8.1000 472.3420 63.6840 503.3420 481.9210 500.000
+ 24 1.4000 0.0000 0.2000 -3.0000 59.663 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.4559 77.9049 -2.7386 0.5000 0.0000 0.0000 151.5387 -56.9223 2.2349 5.0000 8.0000 471.5170 56.8140 498.2830 481.3490 500.000
+ 25 1.4000 0.0000 0.2000 -2.9000 59.649 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9203 78.2934 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.2349 5.0000 7.9000 472.1470 56.2980 499.2730 481.1320 500.000
+ 26 1.4000 0.0000 0.2000 -2.8000 60.062 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.3869 78.6857 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.2349 5.0000 7.8000 472.1940 56.1390 503.4800 481.9900 500.000
+ 27 1.4000 0.0000 0.2000 -2.7000 59.680 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 121.8560 79.0821 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.2349 5.0000 7.7000 471.3870 55.7510 495.7980 480.8120 500.000
+ 28 1.4000 0.0000 0.2000 -2.6000 59.763 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.3274 79.4826 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.2349 5.0000 7.6000 472.1860 55.6520 501.2210 481.5010 500.000
+ 29 1.4000 0.0000 0.2000 -2.5000 59.612 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.8013 79.8875 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9696 2.2349 5.0000 7.5000 471.8370 55.5290 502.5440 482.0320 500.000
+# Sum of Counts = 1981
+# Center of Mass = -4.092277+/-0.130956
+# Full Width Half-Maximum = 1.385227+/-0.051527
+# 5:51:42 PM 10/26/2011 scan completed.
+
+5:51:42 PM 10/26/2011 Executing "scan h 1.3 k 0 l 0.4 e -4.2 -1.5 0.1 preset mcu 1.0"
+
+
+# scan = 127
+# date = 10/26/2011
+# time = 5:51:42 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 0.4 e -4.2 -1.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.3 k 0 l 0.4 e -4.2 -1.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 0.4000 -4.2000 60.230 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.5724 67.4435 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0837 5.0000 9.2000 471.2540 55.1330 496.6160 480.9960 500.000
+ 2 1.3000 0.0000 0.4000 -4.1000 59.832 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0304 67.7726 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.0837 5.0000 9.1000 472.0300 62.6960 500.2630 481.3660 500.000
+ 3 1.3000 0.0000 0.4000 -4.0000 59.953 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.4900 68.1039 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0837 5.0000 9.0000 472.0500 66.9290 503.0930 482.0030 500.000
+ 4 1.3000 0.0000 0.4000 -3.9000 60.150 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.9510 68.4373 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.0837 5.0000 8.9000 471.5060 56.7760 495.6620 480.7440 500.000
+ 5 1.3000 0.0000 0.4000 -3.8000 59.500 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.4135 68.7730 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.0837 5.0000 8.8000 472.2570 56.3450 501.4080 481.5000 500.000
+ 6 1.3000 0.0000 0.4000 -3.7000 59.840 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.8776 69.1111 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.0837 5.0000 8.7000 471.8830 56.1630 502.3650 481.9400 500.000
+ 7 1.3000 0.0000 0.4000 -3.6000 59.973 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.3434 69.4516 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.0837 5.0000 8.6000 471.5610 55.7950 495.5820 480.6940 500.000
+ 8 1.3000 0.0000 0.4000 -3.5000 59.965 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.8108 69.7945 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0757 2.0837 5.0000 8.5000 472.1770 55.8170 502.2870 481.6590 500.000
+ 9 1.3000 0.0000 0.4000 -3.4000 59.860 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2799 70.1400 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.0837 5.0000 8.4000 471.5880 55.7650 501.3780 481.8590 500.000
+ 10 1.3000 0.0000 0.4000 -3.3000 59.836 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7508 70.4882 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.0837 5.0000 8.3000 471.5730 55.5070 496.3330 480.5740 500.000
+ 11 1.3000 0.0000 0.4000 -3.2000 60.253 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2235 70.8390 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.0837 5.0000 8.2000 472.1010 61.0010 502.6420 481.7910 500.000
+ 12 1.3000 0.0000 0.4000 -3.1000 59.993 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.6981 71.1927 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 2.0837 5.0000 8.1000 471.5710 68.8590 500.7440 481.8510 500.000
+ 13 1.3000 0.0000 0.4000 -3.0000 59.701 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.1746 71.5492 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0837 5.0000 8.0000 471.8360 57.3940 496.8790 480.6750 500.000
+ 14 1.3000 0.0000 0.4000 -2.9000 59.845 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.6531 71.9088 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.0837 5.0000 7.9000 472.3050 56.7920 503.0080 481.8190 500.000
+ 15 1.3000 0.0000 0.4000 -2.8000 59.716 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1337 72.2714 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0837 5.0000 7.8000 471.5240 56.4760 499.6780 481.6640 500.000
+ 16 1.3000 0.0000 0.4000 -2.7000 59.719 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.6164 72.6372 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0837 5.0000 7.7000 471.8720 56.2160 497.8640 480.8400 500.000
+ 17 1.3000 0.0000 0.4000 -2.6000 59.494 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.1012 73.0063 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 2.0837 5.0000 7.6000 472.1820 56.2060 503.2690 481.8590 500.000
+ 18 1.3000 0.0000 0.4000 -2.5000 59.537 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.5883 73.3787 -2.7386 0.5000 0.0000 0.0000 150.5151 -58.9696 2.0837 5.0000 7.5000 471.3230 55.9860 498.3180 481.3570 500.000
+ 19 1.3000 0.0000 0.4000 -2.4000 59.739 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.0776 73.7547 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 2.0837 5.0000 7.4000 471.8890 55.8530 499.0290 481.1330 500.000
+ 20 1.3000 0.0000 0.4000 -2.3000 59.675 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.5694 74.1343 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 2.0837 5.0000 7.3000 472.0400 60.4230 503.3300 482.1110 500.000
+ 21 1.3000 0.0000 0.4000 -2.2000 59.497 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.0636 74.5176 -2.7386 0.5000 0.0000 0.0000 149.8449 -60.3101 2.0837 5.0000 7.2000 471.3120 68.5330 497.0380 481.1660 500.000
+ 22 1.3000 0.0000 0.4000 -2.1000 60.200 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.5603 74.9048 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 2.0837 5.0000 7.1000 472.1470 58.0020 500.0900 481.3530 500.000
+ 23 1.3000 0.0000 0.4000 -2.0000 59.628 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.0596 75.2960 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 2.0837 5.0000 7.0000 472.1510 57.0520 503.1880 482.0710 500.000
+ 24 1.3000 0.0000 0.4000 -1.9000 59.669 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.5616 75.6913 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 2.0837 5.0000 6.9000 471.4400 56.4730 496.0810 480.8220 500.000
+ 25 1.3000 0.0000 0.4000 -1.8000 59.460 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.0664 76.0909 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 2.0837 5.0000 6.8000 472.1620 56.3950 500.8640 481.2920 500.000
+ 26 1.3000 0.0000 0.4000 -1.7000 59.721 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.5739 76.4950 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 2.0837 5.0000 6.7000 471.9500 56.3750 502.8350 481.9790 500.000
+ 27 1.3000 0.0000 0.4000 -1.6000 59.661 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.0844 76.9036 -2.7386 0.5000 0.0000 0.0000 148.3533 -63.2932 2.0837 5.0000 6.6000 471.4060 56.0840 495.6480 480.6920 500.000
+ 28 1.3000 0.0000 0.4000 -1.5000 59.919 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.5980 77.3171 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 2.0837 5.0000 6.5000 472.0940 56.0260 501.4350 481.4960 500.000
+# Sum of Counts = 378
+# Center of Mass = -2.841270+/-0.210093
+# Full Width Half-Maximum = 1.468311+/-0.100378
+# 6:21:03 PM 10/26/2011 scan completed.
+
+6:21:03 PM 10/26/2011 Executing "scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 128
+# date = 10/26/2011
+# time = 6:21:03 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.2000 0.0000 0.6000 -4.0000 60.005 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.7259 62.4547 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.9396 5.0000 9.0000 472.1090 63.4600 503.0600 481.9850 500.000
+ 2 1.2000 0.0000 0.6000 -3.9000 59.604 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2082 62.7712 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.9396 5.0000 8.9000 471.4520 67.3340 498.9120 481.5300 500.000
+ 3 1.2000 0.0000 0.6000 -3.8000 59.988 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.6918 63.0894 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.9396 5.0000 8.8000 472.0140 57.5840 498.4370 480.9560 500.000
+ 4 1.2000 0.0000 0.6000 -3.7000 59.646 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1768 63.4094 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.9396 5.0000 8.7000 472.2750 57.1490 503.1990 481.7590 500.000
+ 5 1.2000 0.0000 0.6000 -3.6000 59.571 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6633 63.7312 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.9396 5.0000 8.6000 471.4250 56.8570 498.2060 481.2640 500.000
+ 6 1.2000 0.0000 0.6000 -3.5000 59.490 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1512 64.0550 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.9396 5.0000 8.5000 472.0070 56.6730 499.0800 480.9220 500.000
+ 7 1.2000 0.0000 0.6000 -3.4000 59.997 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6407 64.3807 -2.7386 0.5000 0.0000 0.0000 152.2846 -55.4305 1.9396 5.0000 8.4000 472.1330 56.6610 503.2370 481.8160 500.000
+ 8 1.2000 0.0000 0.6000 -3.3000 59.560 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1318 64.7084 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.9396 5.0000 8.3000 471.3160 56.4190 497.4050 481.1320 500.000
+ 9 1.2000 0.0000 0.6000 -3.2000 59.833 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6244 65.0382 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.9396 5.0000 8.2000 471.9620 56.3230 499.6980 481.1800 500.000
+ 10 1.2000 0.0000 0.6000 -3.1000 59.779 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1188 65.3702 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 1.9396 5.0000 8.1000 472.0350 62.6520 503.1390 482.0740 500.000
+ 11 1.2000 0.0000 0.6000 -3.0000 59.340 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6149 65.7044 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.9396 5.0000 8.0000 471.4040 69.7630 496.9170 481.0560 500.000
+ 12 1.2000 0.0000 0.6000 -2.9000 60.120 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.1128 66.0408 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.9396 5.0000 7.9000 472.2300 58.0950 500.3090 481.3050 500.000
+ 13 1.2000 0.0000 0.6000 -2.8000 59.843 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.6125 66.3797 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.9396 5.0000 7.8000 472.2080 57.2800 503.0700 482.0070 500.000
+ 14 1.2000 0.0000 0.6000 -2.7000 59.254 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1141 66.7210 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.9396 5.0000 7.7000 471.5190 56.9680 496.1260 480.9240 500.000
+ 15 1.2000 0.0000 0.6000 -2.6000 59.454 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.6178 67.0648 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5424 1.9396 5.0000 7.6000 472.2340 56.7700 500.8080 481.4500 500.000
+ 16 1.2000 0.0000 0.6000 -2.5000 59.969 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.1234 67.4113 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.9396 5.0000 7.5000 472.0760 56.7140 502.8830 482.0850 500.000
+ 17 1.2000 0.0000 0.6000 -2.4000 59.699 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.6311 67.7604 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4064 1.9396 5.0000 7.4000 471.4910 56.4900 495.7210 480.8600 500.000
+ 18 1.2000 0.0000 0.6000 -2.3000 59.873 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1410 68.1124 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.9396 5.0000 7.3000 472.2070 56.6740 501.4410 481.6170 500.000
+ 19 1.2000 0.0000 0.6000 -2.2000 59.435 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6532 68.4672 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3102 1.9396 5.0000 7.2000 471.9130 61.9690 502.4920 482.1920 500.000
+ 20 1.2000 0.0000 0.6000 -2.1000 59.621 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.1676 68.8250 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.9396 5.0000 7.1000 471.6820 69.9250 495.4130 480.8160 500.000
+ 21 1.2000 0.0000 0.6000 -2.0000 59.548 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.6845 69.1859 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.9396 5.0000 7.0000 472.4870 58.7170 502.7280 481.8130 500.000
+ 22 1.2000 0.0000 0.6000 -1.9000 59.617 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.2038 69.5500 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.9396 5.0000 6.9000 471.8070 57.5460 500.5180 482.0050 500.000
+ 23 1.2000 0.0000 0.6000 -1.8000 59.764 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.7256 69.9173 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.9396 5.0000 6.8000 472.0740 57.0890 497.5520 481.0170 500.000
+ 24 1.2000 0.0000 0.6000 -1.7000 59.068 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.2500 70.2882 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.9396 5.0000 6.7000 472.4320 56.9750 503.4830 482.0950 500.000
+ 25 1.2000 0.0000 0.6000 -1.6000 59.386 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.7772 70.6625 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.9396 5.0000 6.6000 471.4950 56.7690 497.1790 481.3010 500.000
+ 26 1.2000 0.0000 0.6000 -1.5000 58.815 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.3071 71.0406 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.9396 5.0000 6.5000 472.2500 56.7590 500.2440 481.4090 500.000
+ 27 1.2000 0.0000 0.6000 -1.4000 59.400 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.8399 71.4224 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.9396 5.0000 6.4000 472.1130 56.6150 503.1640 482.2070 500.000
+ 28 1.2000 0.0000 0.6000 -1.3000 59.538 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.3756 71.8083 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9396 5.0000 6.3000 471.5820 61.3220 495.0500 480.8510 500.000
+ 29 1.2000 0.0000 0.6000 -1.2000 59.452 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.9145 72.1982 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9396 5.0000 6.2000 472.4570 69.6350 502.5610 481.9490 500.000
+ 30 1.2000 0.0000 0.6000 -1.1000 59.873 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.4565 72.5924 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9396 5.0000 6.1000 471.8200 58.7030 500.6140 482.0350 500.000
+ 31 1.2000 0.0000 0.6000 -1.0000 59.098 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.0018 72.9910 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9396 5.0000 6.0000 472.1800 57.4460 497.7690 480.9220 500.000
+# Sum of Counts = 389
+# Center of Mass = -2.532648+/-0.185339
+# Full Width Half-Maximum = 1.461117+/-0.092300
+# 6:53:29 PM 10/26/2011 scan completed.
+
+6:53:29 PM 10/26/2011 Executing "scan h 1.1 k 0 l 0.8 e -1.7 -0.8 0.1 preset mcu 1.0"
+
+
+# scan = 129
+# date = 10/26/2011
+# time = 6:53:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 0.8 e -1.7 -0.8 0.1 preset mcu 1.0
+# builtin_command = scan h 1.1 k 0 l 0.8 e -1.7 -0.8 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-X in (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 0.8000 -1.7000 59.545 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6308 64.6633 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8044 5.0000 6.7000 472.5440 57.1530 503.4320 481.9420 500.000
+ 2 1.1000 0.0000 0.8000 -1.6000 59.702 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1799 65.0098 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2933 1.8044 5.0000 6.6000 471.5510 56.8470 498.1600 481.4470 500.000
+ 3 1.1000 0.0000 0.8000 -1.5000 59.929 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7314 65.3591 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8044 5.0000 6.5000 472.2370 56.7940 499.6750 481.2450 500.000
+ 4 1.1000 0.0000 0.8000 -1.4000 59.799 178.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2856 65.7113 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8044 5.0000 6.4000 472.1980 56.7500 503.4630 482.1170 500.000
+ 5 1.1000 0.0000 0.8000 -1.3000 59.833 266.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8426 66.0664 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8044 5.0000 6.3000 471.5070 56.1570 494.9980 480.7570 500.000
+ 6 1.1000 0.0000 0.8000 -1.2000 59.652 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4026 66.4246 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8044 5.0000 6.2000 472.3240 64.0310 502.0790 481.8340 500.000
+ 7 1.1000 0.0000 0.8000 -1.1000 59.783 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9654 66.7859 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8044 5.0000 6.1000 471.8600 67.8020 501.5490 482.0260 500.000
+ 8 1.1000 0.0000 0.8000 -1.0000 59.637 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5314 67.1506 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8044 5.0000 6.0000 471.9800 57.9180 496.5160 480.7310 500.000
+ 9 1.1000 0.0000 0.8000 -0.9000 60.073 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1006 67.5187 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8044 5.0000 5.9000 472.5000 57.3130 503.2820 482.1060 500.000
+ 10 1.1000 0.0000 0.8000 -0.8000 59.322 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6732 67.8904 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8044 5.0000 5.8000 471.5990 56.8330 498.7800 481.6540 500.000
+# Sum of Counts = 622
+# Center of Mass = -1.310450+/-0.074550
+# Full Width Half-Maximum = 0.298572+/-0.039155
+# 7:04:03 PM 10/26/2011 scan completed.
+
+7:04:03 PM 10/26/2011 Executing "scantitle "Dispersion G-T longitudinal (003) zone""
+
+Setting the scantitle to:
+Dispersion G-T longitudinal (003) zone
+
+
+7:04:03 PM 10/26/2011 Executing "scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 130
+# date = 10/26/2011
+# time = 7:04:03 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+# Wed, Oct 26, 2011 [7:04:52 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# s2 hit lower hardware limit
+ 2 0.0000 0.0000 3.6000 -4.9000 59.730 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 14.7829 58.3636 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.9049 5.0000 9.9000 471.8460 56.7000 501.8350 482.2120 500.000
+ 3 0.0000 0.0000 3.6000 -4.8000 59.511 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.2616 58.6642 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.9049 5.0000 9.8000 471.8460 56.1280 496.6530 481.0210 500.000
+ 4 0.0000 0.0000 3.6000 -4.7000 59.874 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 15.7412 58.9660 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.9049 5.0000 9.7000 472.2900 56.2460 503.6860 482.3250 500.000
+ 5 0.0000 0.0000 3.6000 -4.6000 59.654 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.2218 59.2690 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 1.9049 5.0000 9.6000 471.2620 61.1570 496.9140 481.2720 500.000
+ 6 0.0000 0.0000 3.6000 -4.5000 59.681 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 16.7033 59.5733 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.9049 5.0000 9.5000 472.1910 69.2790 500.3920 481.5250 500.000
+ 7 0.0000 0.0000 3.6000 -4.4000 59.918 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.1859 59.8789 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.9049 5.0000 9.4000 472.1210 58.2910 503.1290 482.3050 500.000
+ 8 0.0000 0.0000 3.6000 -4.3000 59.941 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 17.6695 60.1859 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.9049 5.0000 9.3000 471.6970 56.8960 495.0900 480.7790 500.000
+ 9 0.0000 0.0000 3.6000 -4.2000 59.940 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.1543 60.4943 -2.7386 0.5000 0.0000 0.0000 153.6150 -52.7696 1.9049 5.0000 9.2000 472.4040 56.7750 503.1590 481.9380 500.000
+ 10 0.0000 0.0000 3.6000 -4.1000 59.943 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 18.6402 60.8041 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.9049 5.0000 9.1000 471.4470 56.4750 499.1700 481.6810 500.000
+ 11 0.0000 0.0000 3.6000 -4.0000 59.874 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.1274 61.1155 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.9049 5.0000 9.0000 471.9840 56.1450 499.0210 481.1010 500.000
+ 12 0.0000 0.0000 3.6000 -3.9000 59.501 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 19.6157 61.4284 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.9049 5.0000 8.9000 472.0480 56.2090 503.6040 482.0290 500.000
+ 13 0.0000 0.0000 3.6000 -3.8000 59.698 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.1054 61.7429 -2.7386 0.5000 0.0000 0.0000 152.9745 -54.0507 1.9049 5.0000 8.8000 471.2600 55.7310 494.9840 480.7510 500.000
+ 14 0.0000 0.0000 3.6000 -3.7000 59.508 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 20.5964 62.0591 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.9049 5.0000 8.7000 472.1570 64.4170 502.2810 481.9380 500.000
+ 15 0.0000 0.0000 3.6000 -3.6000 59.700 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.0887 62.3770 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.9049 5.0000 8.6000 471.6020 64.5110 501.1000 482.0770 500.000
+ 16 0.0000 0.0000 3.6000 -3.5000 59.460 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 21.5825 62.6966 -2.7386 0.5000 0.0000 0.0000 152.4621 -55.0756 1.9049 5.0000 8.5000 471.8680 57.0840 497.4380 480.9820 500.000
+ 17 0.0000 0.0000 3.6000 -3.4000 60.006 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.0778 63.0181 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.9049 5.0000 8.4000 472.2300 56.6690 503.6950 482.2090 500.000
+ 18 0.0000 0.0000 3.6000 -3.3000 59.465 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 22.5746 63.3415 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.9049 5.0000 8.3000 471.2190 56.0820 496.1800 481.0180 500.000
+ 19 0.0000 0.0000 3.6000 -3.2000 60.045 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.0730 63.6668 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.9049 5.0000 8.2000 472.0770 55.9340 501.2330 481.6050 500.000
+ 20 0.0000 0.0000 3.6000 -3.1000 59.728 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.5730 63.9941 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.9049 5.0000 8.1000 471.6740 55.7230 502.5350 482.1480 500.000
+ 21 0.0000 0.0000 3.6000 -3.0000 59.798 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.0748 64.3234 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.9049 5.0000 8.0000 471.4800 55.1800 495.9330 480.7050 500.000
+ 22 0.0000 0.0000 3.6000 -2.9000 59.579 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.5782 64.6550 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.9049 5.0000 7.9000 472.0730 56.8380 503.6950 481.9930 500.000
+ 23 0.0000 0.0000 3.6000 -2.8000 59.513 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.0835 64.9887 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.9049 5.0000 7.8000 471.0700 66.0390 496.9760 481.1590 500.000
+ 24 0.0000 0.0000 3.6000 -2.7000 59.792 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.5907 65.3247 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.9049 5.0000 7.7000 472.0950 58.2410 500.7630 481.5580 500.000
+ 25 0.0000 0.0000 3.6000 -2.6000 59.857 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.0998 65.6630 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.9049 5.0000 7.6000 471.8640 56.5890 502.9180 482.2580 500.000
+ 26 0.0000 0.0000 3.6000 -2.5000 59.808 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.6108 66.0038 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.9049 5.0000 7.5000 471.5560 55.8180 495.5760 480.6740 500.000
+ 27 0.0000 0.0000 3.6000 -2.4000 59.535 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.1239 66.3472 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.9049 5.0000 7.4000 472.1730 55.8170 503.8320 482.1340 500.000
+ 28 0.0000 0.0000 3.6000 -2.3000 59.732 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6392 66.6931 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.9049 5.0000 7.3000 471.0390 55.4330 496.3200 481.0850 500.000
+ 29 0.0000 0.0000 3.6000 -2.2000 59.836 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.1566 67.0417 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.9049 5.0000 7.2000 471.9760 55.2440 501.2760 481.5890 500.000
+ 30 0.0000 0.0000 3.6000 -2.1000 59.951 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6762 67.3931 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.9049 5.0000 7.1000 471.4660 55.1280 502.1750 482.0840 500.000
+ 31 0.0000 0.0000 3.6000 -2.0000 59.343 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1983 67.7474 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.9049 5.0000 7.0000 471.5480 63.3160 496.8660 480.8250 500.000
+ 32 0.0000 0.0000 3.6000 -1.9000 59.521 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7227 68.1046 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.9049 5.0000 6.9000 472.1060 63.4880 503.9870 482.2520 500.000
+ 33 0.0000 0.0000 3.6000 -1.8000 59.923 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2496 68.4650 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.9049 5.0000 6.8000 471.2010 56.5590 495.2200 480.8130 500.000
+ 34 0.0000 0.0000 3.6000 -1.7000 59.317 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.7791 68.8285 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7650 1.9049 5.0000 6.7000 472.1650 56.0010 502.0820 481.7810 500.000
+ 35 0.0000 0.0000 3.6000 -1.6000 59.637 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.3112 69.1954 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.9049 5.0000 6.6000 471.4560 55.6990 501.1660 482.0470 500.000
+ 36 0.0000 0.0000 3.6000 -1.5000 59.503 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.8461 69.5657 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.9049 5.0000 6.5000 471.6860 55.3040 497.8090 481.0330 500.000
+ 37 0.0000 0.0000 3.6000 -1.4000 59.944 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3838 69.9395 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.9049 5.0000 6.4000 471.9540 55.2990 504.0280 482.2440 500.000
+ 38 0.0000 0.0000 3.6000 -1.3000 59.640 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.9244 70.3171 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.9049 5.0000 6.3000 471.0260 54.9140 494.7260 480.6430 500.000
+ 39 0.0000 0.0000 3.6000 -1.2000 59.891 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.4680 70.6984 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.9049 5.0000 6.2000 471.9970 60.4830 502.5980 481.7530 500.000
+ 40 0.0000 0.0000 3.6000 -1.1000 59.625 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.0148 71.0838 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.9049 5.0000 6.1000 471.3100 68.0610 500.4960 481.8890 500.000
+ 41 0.0000 0.0000 3.6000 -1.0000 59.586 1.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.5647 71.4733 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.9049 5.0000 6.0000 471.8120 56.8650 498.2020 481.0480 500.000
+# Sum of Counts = 355
+# Center of Mass = -3.087324+/-0.237834
+# Full Width Half-Maximum = 2.017370+/-0.120584
+# 7:46:26 PM 10/26/2011 scan completed.
+
+7:46:26 PM 10/26/2011 Executing "scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0"
+
+
+# scan = 131
+# date = 10/26/2011
+# time = 7:46:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.1435 0.0000 3.8276 -2.5000 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 71.4733 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0382 5.0000 7.5000 471.2910 55.6180 494.7430 480.5620 500.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 8:04:49 PM 10/26/2011 scan stopped!!
+
+Abort issued!!
+
+8:05:15 PM 10/26/2011 Executing "calc h 0 k 0 l 3.4 e -2.5"
+
+Calculating motor positions based on:
+h=0.00000 k=0.00000 l=3.40000 e=-2.50000
+
+Resulting calculated motor positions:
+m2=-74.14280 m1=142.92860 a2=-58.96953 a1=150.51523 s2=61.77101 s1=23.74949 sgl=-2.73870 sgu=0.50000 mfocus=34.98513
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+8:05:33 PM 10/26/2011 Executing "drive h 0 k 0 l 3.4 e -2.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -58.96953
+a1 150.51523
+s2 61.77101
+s1 23.74949
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+m2 -74.14278
+m1 142.92860
+a2 -58.96952
+a1 150.51520
+s2 71.47332
+s1 23.74948
+sgl -2.73864
+sgu 0.50002
+mfocus 34.98400
+
+
+Abort issued!!
+
+8:08:29 PM 10/26/2011 Executing "drive h 0 k 0 l 3.4 e -2.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -58.96953
+a1 150.51523
+s2 61.77101
+s1 23.74949
+sgl -2.73870
+sgu 0.50000
+mfocus 34.98513
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+m2 -74.14279
+m1 142.92860
+a2 -58.96952
+a1 150.51520
+s2 71.47332
+s1 23.74948
+sgl -2.73864
+sgu 0.50002
+mfocus 34.98400
+
+
+Abort issued!!
+
+8:09:01 PM 10/26/2011 Executing "drive s1 0 s2 40"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+s2 40.00000
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s1 -0.00016
+s2 71.47332
+
+
+Abort issued!!
+
+8:09:40 PM 10/26/2011 Executing "drive s1 23.74"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 23.74000
+
+Drive completed.
+
+
+8:09:52 PM 10/26/2011 Executing "drive s1 23.74948"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 23.74948
+
+Drive completed.
+
+
+8:10:56 PM 10/26/2011 Executing "drive s2 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 0.00000
+
+Drive completed.
+
+
+8:12:36 PM 10/26/2011 Executing "drive s2 71.47332"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 71.47332
+
+Drive completed.
+
+
+8:16:58 PM 10/26/2011 Executing "scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0"
+
+
+# scan = 132
+# date = 10/26/2011
+# time = 8:16:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -2.5000 58.377 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 61.7710 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7991 5.0000 7.5000 471.3000 54.8730 495.5610 480.4380 500.000
+ 2 0.0000 0.0000 3.4000 -2.4000 59.205 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.2814 62.0979 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4064 1.7991 5.0000 7.4000 471.9400 54.9340 504.2250 481.9070 500.000
+ 3 0.0000 0.0000 3.4000 -2.3000 59.180 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.8154 62.4269 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8531 1.7991 5.0000 7.3000 470.8790 63.5220 495.1200 480.7230 500.000
+ 4 0.0000 0.0000 3.4000 -2.2000 59.300 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.3513 62.7580 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7991 5.0000 7.2000 472.0740 62.2950 502.2940 481.6130 500.000
+ 5 0.0000 0.0000 3.4000 -2.1000 58.819 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.8894 63.0913 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.7991 5.0000 7.1000 471.3610 56.2380 500.6420 481.8200 500.000
+ 6 -0.0005 0.0000 3.3988 -1.9926 58.581 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4298 63.4265 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2926 1.7985 5.0000 6.9926 470.9240 55.1390 495.7970 480.8450 500.000
+ 7 0.0000 0.0000 3.4000 -1.9000 59.112 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9723 63.7648 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.7991 5.0000 6.9000 471.9950 55.0890 502.0650 481.4860 500.000
+ 8 0.0000 0.0000 3.4000 -1.8000 58.494 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.5173 64.1051 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.7991 5.0000 6.8000 471.2570 54.9720 501.0170 481.8470 500.000
+ 9 0.0000 0.0000 3.4000 -1.7000 59.571 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.0646 64.4480 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.7991 5.0000 6.7000 471.6540 60.3810 498.4760 481.0100 500.000
+ 10 0.0000 0.0000 3.4000 -1.6000 59.390 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6145 64.7936 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.7991 5.0000 6.6000 471.9270 68.1280 504.0360 482.0860 500.000
+ 11 0.0000 0.0000 3.4000 -1.5000 59.440 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1670 65.1418 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.7991 5.0000 6.5000 471.3110 56.3770 494.4750 480.3520 500.000
+ 12 0.0000 0.0000 3.4000 -1.4000 59.340 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7222 65.4928 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.7991 5.0000 6.4000 472.2240 55.9070 503.6230 481.6690 500.000
+ 13 0.0000 0.0000 3.4000 -1.3000 59.397 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2802 65.8468 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.7991 5.0000 6.3000 471.0890 55.5110 497.6510 481.2540 500.000
+ 14 0.0000 0.0000 3.4000 -1.2000 59.429 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8411 66.2039 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.7991 5.0000 6.2000 471.9480 55.2970 500.5000 481.1380 500.000
+ 15 0.0000 0.0000 3.4000 -1.1000 59.558 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4049 66.5640 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.7991 5.0000 6.1000 471.6420 55.1950 502.9380 481.9080 500.000
+ 16 0.0000 0.0000 3.4000 -1.0000 59.160 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9718 66.9275 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.7991 5.0000 6.0000 471.4470 54.8180 495.9710 480.3860 500.000
+ 17 0.0000 0.0000 3.4000 -0.9000 59.110 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.5420 67.2944 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.7991 5.0000 5.9000 472.0090 54.8720 504.1900 481.9730 500.000
+ 18 0.0000 0.0000 3.4000 -0.8000 59.194 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1154 67.6647 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.7991 5.0000 5.8000 470.9390 63.5810 495.3190 480.8120 500.000
+ 19 0.0000 0.0000 3.4000 -0.7000 59.327 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6923 68.0388 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.7991 5.0000 5.7000 472.1020 62.2840 501.9730 481.4690 500.000
+ 20 0.0000 0.0000 3.4000 -0.6000 59.215 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.2727 68.4167 -2.7386 0.5000 0.0000 0.0000 145.2773 -69.4449 1.7991 5.0000 5.6000 471.5350 56.2920 501.3870 481.7400 500.000
+ 21 0.0000 0.0000 3.4000 -0.5000 59.343 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8567 68.7985 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.7991 5.0000 5.5000 471.7690 55.5610 497.5860 480.7490 500.000
+# Sum of Counts = 299
+# Center of Mass = -1.523065+/-0.127198
+# Full Width Half-Maximum = 0.890365+/-0.069129
+# 8:41:09 PM 10/26/2011 scan completed.
+
+8:41:09 PM 10/26/2011 Executing "scan h 0 k 0 l 3.2 e -1.5 0.0 0.05 preset mcu 1.0"
+
+
+# scan = 133
+# date = 10/26/2011
+# time = 8:41:09 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.2 e -1.5 0.0 0.05 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.2 e -1.5 0.0 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.2000 -1.5000 59.615 63.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4932 60.8207 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6933 5.0000 6.5000 472.1700 55.4810 504.0390 481.9390 500.000
+ 2 0.0000 0.0000 3.2000 -1.4500 58.942 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.7813 60.9857 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.6933 5.0000 6.4500 471.0250 55.1830 495.9830 480.8660 500.000
+ 3 0.0000 0.0000 3.2000 -1.4000 59.236 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.0701 61.1512 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6933 5.0000 6.4000 472.0370 55.1280 501.7440 481.4420 500.000
+ 4 0.0000 0.0000 3.2000 -1.3500 59.547 64.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.3595 61.3173 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.6933 5.0000 6.3500 471.3730 55.0220 501.4140 481.7800 500.000
+ 5 0.0000 0.0000 3.2000 -1.3000 59.278 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.6496 61.4840 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6933 5.0000 6.3000 471.6240 59.0620 497.7280 480.8270 500.000
+ 6 0.0000 0.0000 3.2000 -1.2500 59.200 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.9404 61.6512 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2543 1.6933 5.0000 6.2500 472.0020 67.3650 504.1440 482.2010 500.000
+ 7 0.0000 0.0000 3.2000 -1.2000 59.469 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.2319 61.8190 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6933 5.0000 6.2000 471.2640 56.7310 494.4340 480.4790 500.000
+ 8 0.0000 0.0000 3.2000 -1.1500 59.325 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.5242 61.9874 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.6933 5.0000 6.1500 472.2350 56.1290 503.3400 481.7500 500.000
+ 9 0.0000 0.0000 3.2000 -1.1000 59.313 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.8171 62.1563 -2.7386 0.5000 0.0000 0.0000 146.9234 -66.1530 1.6933 5.0000 6.1000 471.1770 55.8250 498.3500 481.4750 500.000
+ 10 0.0000 0.0000 3.2000 -1.0500 59.263 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1108 62.3259 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.6933 5.0000 6.0500 471.9540 55.6580 500.1230 481.1510 500.000
+ 11 0.0000 0.0000 3.2000 -1.0000 59.171 81.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.4053 62.4962 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6933 5.0000 6.0000 471.7170 55.5910 503.1620 481.9080 500.000
+ 12 0.0000 0.0000 3.2000 -0.9500 59.746 95.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7005 62.6670 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0905 1.6933 5.0000 5.9500 471.4580 55.2400 495.8440 480.3130 500.000
+ 13 0.0000 0.0000 3.2000 -0.9000 59.455 117.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.9965 62.8386 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6933 5.0000 5.9000 472.0520 55.2960 504.2740 481.8860 500.000
+ 14 0.0000 0.0000 3.2000 -0.8500 58.849 136.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2933 63.0107 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.6933 5.0000 5.8500 470.9710 64.2820 495.3350 480.7660 500.000
+ 15 0.0000 0.0000 3.2000 -0.8000 59.380 134.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.5910 63.1836 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.6933 5.0000 5.8000 472.1600 63.0590 502.1690 481.4260 500.000
+ 16 0.0000 0.0000 3.2000 -0.7500 59.392 125.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8894 63.3571 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.6933 5.0000 5.7500 471.5060 56.7760 500.8800 481.8690 500.000
+ 17 0.0000 0.0000 3.2000 -0.7000 59.515 86.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.1887 63.5314 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.6933 5.0000 5.7000 471.8640 56.2220 498.1730 480.9160 500.000
+ 18 0.0000 0.0000 3.2000 -0.6500 59.530 70.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4889 63.7064 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0932 1.6933 5.0000 5.6500 472.0640 56.1780 504.1140 482.0580 500.000
+ 19 0.0000 0.0000 3.2000 -0.6000 59.323 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.7899 63.8821 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4450 1.6933 5.0000 5.6000 471.2630 55.7950 494.4480 480.4630 500.000
+ 20 0.0000 0.0000 3.2000 -0.5500 59.104 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.0918 64.0585 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.6933 5.0000 5.5500 472.1760 55.8830 503.5910 481.7630 500.000
+ 21 0.0000 0.0000 3.2000 -0.5000 59.080 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.3947 64.2357 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6933 5.0000 5.5000 471.0640 55.6680 497.7020 481.2830 500.000
+ 22 0.0000 0.0000 3.2000 -0.4500 59.528 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.6984 64.4137 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.6933 5.0000 5.4500 471.9420 59.7270 500.5330 481.4350 500.000
+ 23 0.0000 0.0000 3.2000 -0.4000 59.173 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.0032 64.5925 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.6933 5.0000 5.4000 471.7140 68.2280 502.7480 482.2200 500.000
+ 24 0.0000 0.0000 3.2000 -0.3500 59.317 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.3088 64.7721 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.6933 5.0000 5.3500 471.6480 58.0920 496.0670 480.6970 500.000
+ 25 0.0000 0.0000 3.2000 -0.3000 59.138 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6154 64.9525 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.6933 5.0000 5.3000 472.2870 57.1320 504.2870 482.1450 500.000
+ 26 0.0000 0.0000 3.2000 -0.2500 58.925 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.9231 65.1338 -2.7386 0.5000 0.0000 0.0000 143.9648 -72.0704 1.6933 5.0000 5.2500 471.1990 56.5460 495.1690 480.8090 500.000
+ 27 0.0000 0.0000 3.2000 -0.2000 59.389 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.2318 65.3159 -2.7386 0.5000 0.0000 0.0000 143.7646 -72.4708 1.6933 5.0000 5.2000 472.2390 56.4310 502.4430 481.7460 500.000
+ 28 0.0000 0.0000 3.2000 -0.1500 58.761 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.5414 65.4989 -2.7386 0.5000 0.0000 0.0000 143.5610 -72.8779 1.6933 5.0000 5.1500 471.4420 56.3380 500.5260 482.0110 500.000
+ 29 0.0000 0.0000 3.2000 -0.1000 59.290 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8522 65.6828 -2.7386 0.5000 0.0000 0.0000 143.3539 -73.2922 1.6933 5.0000 5.1000 471.8940 56.0410 498.8830 481.1760 500.000
+ 30 0.0000 0.0000 3.2000 -0.0500 59.636 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.1640 65.8676 -2.7386 0.5000 0.0000 0.0000 143.1431 -73.7138 1.6933 5.0000 5.0500 471.9630 56.1460 503.9890 482.3060 500.000
+ 31 0.0000 0.0000 3.2000 0.0000 59.153 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 35.4769 66.0534 -2.7386 0.5000 0.0000 0.0000 142.9286 -74.1428 1.6933 5.0000 5.0000 471.4110 64.6690 494.7060 480.6090 500.000
+# Sum of Counts = 1878
+# Center of Mass = -0.810517+/-0.028053
+# Full Width Half-Maximum = 0.810106+/-0.019569
+# 9:13:14 PM 10/26/2011 scan completed.
+
+9:13:14 PM 10/26/2011 Executing "scantitle "Dispersion G-T transverse (101) zone""
+
+Setting the scantitle to:
+Dispersion G-T transverse (101) zone
+
+
+9:13:15 PM 10/26/2011 Executing "scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 1.0"
+
+
+# scan = 134
+# date = 10/26/2011
+# time = 9:13:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.5000 -6.5000 58.887 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8781 43.0283 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6163 5.0000 11.5000 472.0210 58.5720 498.7050 481.1420 500.000
+ 2 1.0000 0.0000 -0.5000 -6.4000 59.048 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4315 43.3151 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6163 5.0000 11.4000 472.1610 57.0200 504.0450 482.2730 500.000
+ 3 1.0000 0.0000 -0.5000 -6.3000 59.406 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9844 43.6016 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6163 5.0000 11.3000 471.5840 56.6120 494.8370 480.5670 500.000
+ 4 1.0000 0.0000 -0.5000 -6.2000 59.040 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5368 43.8880 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6163 5.0000 11.2000 472.3700 56.6530 504.1410 482.0840 500.000
+ 5 1.0000 0.0000 -0.5000 -6.1000 59.299 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0888 44.1742 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6163 5.0000 11.1000 471.2100 56.4700 496.0360 481.0020 500.000
+ 6 1.0000 0.0000 -0.5000 -6.0000 58.664 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6405 44.4604 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6163 5.0000 11.0000 472.2370 56.5020 501.7850 481.5130 500.000
+ 7 1.0000 0.0000 -0.5000 -5.9000 59.189 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1919 44.7465 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6163 5.0000 10.9000 471.5440 56.5270 501.1950 481.8930 500.000
+ 8 1.0000 0.0000 -0.5000 -5.8000 59.056 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7430 45.0326 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6163 5.0000 10.8000 471.9070 63.5270 498.2120 480.9090 500.000
+ 9 1.0000 0.0000 -0.5000 -5.7000 59.044 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2939 45.3186 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6163 5.0000 10.7000 472.2050 69.3430 504.0370 481.9620 500.000
+ 10 1.0000 0.0000 -0.5000 -5.6000 59.193 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8447 45.6047 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6163 5.0000 10.6000 471.5760 57.6770 494.5100 480.4260 500.000
+ 11 1.0000 0.0000 -0.5000 -5.5000 59.078 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3954 45.8908 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6163 5.0000 10.5000 472.4700 57.1600 503.8640 481.8430 500.000
+ 12 1.0000 0.0000 -0.5000 -5.4000 58.661 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9460 46.1771 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.6164 5.0000 10.4000 471.3220 56.8150 496.7540 481.0140 500.000
+ 13 1.0000 0.0000 -0.5000 -5.3000 59.262 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4967 46.4634 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6164 5.0000 10.3000 472.3020 56.8190 501.3640 481.2410 500.000
+ 14 1.0000 0.0000 -0.5000 -5.2000 58.819 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.0474 46.7498 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6163 5.0000 10.2000 471.7510 56.6760 501.9270 481.7300 500.000
+ 15 1.0000 0.0000 -0.5000 -5.1000 59.215 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5982 47.0365 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6163 5.0000 10.1000 471.9240 56.4220 497.7470 480.5810 500.000
+ 16 1.0000 0.0000 -0.5000 -5.0000 58.883 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1492 47.3233 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6164 5.0000 10.0000 472.2030 58.0460 504.2810 482.1090 500.000
+ 17 1.0000 0.0000 -0.5000 -4.9000 59.085 49.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7004 47.6104 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6163 5.0000 9.9000 471.4660 67.3110 494.4200 480.4920 500.000
+ 18 1.0000 0.0000 -0.5000 -4.8000 59.260 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2518 47.8976 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6163 5.0000 9.8000 472.4570 60.9970 503.7690 481.8570 500.000
+ 19 1.0000 0.0000 -0.5000 -4.7000 59.064 71.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8036 48.1852 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.6163 5.0000 9.7000 471.3800 57.0200 496.9970 481.1060 500.000
+ 20 1.0000 0.0000 -0.5000 -4.6000 58.786 66.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.3557 48.4731 -2.7386 0.5000 0.0000 0.0000 154.2120 -51.5757 1.6163 5.0000 9.6000 472.3500 56.9380 501.2310 481.3440 500.000
+ 21 1.0000 0.0000 -0.5000 -4.5000 58.949 81.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.9082 48.7614 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6163 5.0000 9.5000 471.7910 56.9010 501.9670 481.8910 500.000
+ 22 1.0000 0.0000 -0.5000 -4.4000 58.983 57.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4612 49.0500 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6163 5.0000 9.4000 471.9710 56.5410 497.8270 480.7530 500.000
+ 23 1.0000 0.0000 -0.5000 -4.3000 59.071 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0148 49.3390 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6163 5.0000 9.3000 472.2280 56.6430 504.2790 482.0550 500.000
+ 24 1.0000 0.0000 -0.5000 -4.2000 58.903 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5689 49.6284 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6163 5.0000 9.2000 471.4230 56.2780 494.4740 480.4070 500.000
+ 25 1.0000 0.0000 -0.5000 -4.1000 59.002 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1236 49.9184 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6163 5.0000 9.1000 472.3400 63.6860 503.6610 481.9140 500.000
+ 26 1.0000 0.0000 -0.5000 -4.0000 58.977 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.6791 50.2088 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6163 5.0000 9.0000 471.3030 69.2710 497.1300 481.1840 500.000
+ 27 1.0000 0.0000 -0.5000 -3.9000 58.978 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.2352 50.4997 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6163 5.0000 8.9000 472.3150 57.7800 501.0930 481.3330 500.000
+ 28 1.0000 0.0000 -0.5000 -3.8000 59.074 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 110.7922 50.7912 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 1.6163 5.0000 8.8000 471.8600 57.1290 502.2100 481.7940 500.000
+ 29 1.0000 0.0000 -0.5000 -3.7000 59.160 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.3500 51.0833 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6163 5.0000 8.7000 471.9480 56.8560 497.4510 480.7130 500.000
+ 30 1.0000 0.0000 -0.5000 -3.6000 58.835 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 111.9087 51.3760 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6163 5.0000 8.6000 472.2750 56.7860 504.3850 481.9730 500.000
+ 31 1.0000 0.0000 -0.5000 -3.5000 59.212 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 112.4684 51.6694 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.6163 5.0000 8.5000 471.3920 56.8950 494.3700 480.4060 500.000
+ 32 1.0000 0.0000 -0.5000 -3.4000 59.385 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.0291 51.9634 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.6163 5.0000 8.4000 472.3450 57.1780 503.8310 481.7540 500.000
+ 33 1.0000 0.0000 -0.5000 -3.3000 58.953 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 113.5909 52.2583 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.6163 5.0000 8.3000 471.1900 58.6780 497.1600 481.1770 500.000
+ 34 1.0000 0.0000 -0.5000 -3.2000 58.851 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.1539 52.5538 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.6163 5.0000 8.2000 472.2340 68.3890 501.0990 481.4360 500.000
+ 35 1.0000 0.0000 -0.5000 -3.1000 58.955 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 114.7180 52.8502 -2.7386 0.5000 0.0000 0.0000 151.7309 -56.5380 1.6163 5.0000 8.1000 471.8270 62.0540 502.3030 481.8790 500.000
+ 36 1.0000 0.0000 -0.5000 -3.0000 59.162 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.2834 53.1475 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.6163 5.0000 8.0000 472.0120 57.4630 497.5120 480.7210 500.000
+ 37 1.0000 0.0000 -0.5000 -2.9000 59.013 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 115.8502 53.4456 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.6163 5.0000 7.9000 472.3510 57.2610 504.3900 481.9130 500.000
+ 38 1.0000 0.0000 -0.5000 -2.8000 59.028 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.4184 53.7446 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6163 5.0000 7.8000 471.4870 57.4110 494.3630 480.3950 500.000
+ 39 1.0000 0.0000 -0.5000 -2.7000 59.037 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 116.9880 54.0446 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.6163 5.0000 7.7000 472.4400 57.5590 503.9320 481.7580 500.000
+ 40 1.0000 0.0000 -0.5000 -2.6000 58.785 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 117.5591 54.3457 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.6163 5.0000 7.6000 471.2660 57.2330 496.7770 481.0740 500.000
+ 41 1.0000 0.0000 -0.5000 -2.5000 59.303 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.1319 54.6477 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6163 5.0000 7.5000 472.2730 57.1520 501.5660 481.3580 500.000
+# Sum of Counts = 967
+# Center of Mass = -4.534540+/-0.207889
+# Full Width Half-Maximum = 1.633854+/-0.074284
+# 9:55:46 PM 10/26/2011 scan completed.
+
+9:55:46 PM 10/26/2011 Executing "scan h 1 k 0 l -0.2 e -6.0 -3.0 0.1 preset mcu 1.0"
+
+
+# scan = 135
+# date = 10/26/2011
+# time = 9:55:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.2 e -6.0 -3.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l -0.2 e -6.0 -3.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.2000 -6.0000 59.359 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2998 43.7844 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5981 5.0000 11.0000 472.1640 68.1850 503.9380 482.2250 500.000
+ 2 1.0000 0.0000 -0.2000 -5.9000 59.265 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8578 44.0708 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5981 5.0000 10.9000 471.6650 62.6320 494.8050 480.4580 500.000
+ 3 1.0000 0.0000 -0.2000 -5.8000 58.644 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.4156 44.3572 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 1.5981 5.0000 10.8000 472.5300 57.5540 504.2730 482.0210 500.000
+ 4 1.0000 0.0000 -0.2000 -5.7000 59.584 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.9731 44.6435 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5981 5.0000 10.7000 471.3530 57.5830 495.4940 480.8510 500.000
+ 5 1.0000 0.0000 -0.2000 -5.6000 59.242 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5304 44.9298 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5981 5.0000 10.6000 472.4110 57.5950 502.2660 481.5690 500.000
+ 6 1.0000 0.0000 -0.2000 -5.5000 59.199 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.0875 45.2161 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5981 5.0000 10.5000 471.6140 57.5580 500.6080 481.8700 500.000
+ 7 1.0000 0.0000 -0.2000 -5.4000 59.321 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6445 45.5024 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5981 5.0000 10.4000 472.1080 57.3210 499.0530 480.9920 500.000
+ 8 1.0000 0.0000 -0.2000 -5.3000 59.051 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.2014 45.7887 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5981 5.0000 10.3000 472.1330 57.2020 503.9170 482.0030 500.000
+ 9 1.0000 0.0000 -0.2000 -5.2000 59.549 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7584 46.0751 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5981 5.0000 10.2000 471.6570 63.7160 495.1270 480.3770 500.000
+ 10 1.0000 0.0000 -0.2000 -5.1000 59.189 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.3154 46.3616 -2.7386 0.5000 0.0000 0.0000 154.9040 -50.1919 1.5981 5.0000 10.1000 472.4950 70.4200 504.2460 481.9260 500.000
+ 11 1.0000 0.0000 -0.2000 -5.0000 59.493 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.8725 46.6482 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5981 5.0000 10.0000 471.3890 58.8780 495.4160 480.6860 500.000
+ 12 1.0000 0.0000 -0.2000 -4.9000 59.185 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4297 46.9350 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.5981 5.0000 9.9000 472.5080 57.0150 502.3740 481.3670 500.000
+ 13 1.0000 0.0000 -0.2000 -4.8000 59.435 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.9872 47.2220 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5981 5.0000 9.8000 471.6480 57.4140 500.3890 481.7320 500.000
+ 14 1.0000 0.0000 -0.2000 -4.7000 59.201 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.5449 47.5092 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.5981 5.0000 9.7000 472.1860 57.4550 499.2780 480.8560 500.000
+ 15 1.0000 0.0000 -0.2000 -4.6000 58.987 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1029 47.7966 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5981 5.0000 9.6000 472.1510 57.4560 503.8520 481.8440 500.000
+ 16 1.0000 0.0000 -0.2000 -4.5000 59.101 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6613 48.0844 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5981 5.0000 9.5000 471.7340 57.0480 495.6150 480.2110 500.000
+ 17 1.0000 0.0000 -0.2000 -4.4000 58.971 65.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2202 48.3724 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5981 5.0000 9.4000 472.3760 58.0420 504.4610 481.9570 500.000
+ 18 1.0000 0.0000 -0.2000 -4.3000 59.024 66.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7794 48.6608 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5981 5.0000 9.3000 471.2980 67.5900 494.8020 480.5580 500.000
+ 19 1.0000 0.0000 -0.2000 -4.2000 59.060 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3392 48.9495 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.5981 5.0000 9.2000 472.4770 62.8490 502.8840 481.3420 500.000
+ 20 1.0000 0.0000 -0.2000 -4.1000 59.380 57.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8996 49.2386 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5981 5.0000 9.1000 471.5790 57.5670 499.4590 481.5570 500.000
+ 21 1.0000 0.0000 -0.2000 -4.0000 59.141 40.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4607 49.5282 -2.7386 0.5000 0.0000 0.0000 153.3006 -53.3986 1.5981 5.0000 9.0000 472.2380 57.4840 499.7250 480.9020 500.000
+ 22 1.0000 0.0000 -0.2000 -3.9000 59.089 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0224 49.8182 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5981 5.0000 8.9000 472.0950 57.6030 503.5210 481.8020 500.000
+ 23 1.0000 0.0000 -0.2000 -3.8000 58.813 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5849 50.1088 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 1.5981 5.0000 8.8000 471.7450 57.3380 495.7570 480.2330 500.000
+ 24 1.0000 0.0000 -0.2000 -3.7000 59.221 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.1482 50.3998 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5981 5.0000 8.7000 472.3680 57.2590 504.4950 481.7860 500.000
+ 25 1.0000 0.0000 -0.2000 -3.6000 58.823 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.7124 50.6914 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5981 5.0000 8.6000 471.2480 57.5600 494.7740 480.5400 500.000
+ 26 1.0000 0.0000 -0.2000 -3.5000 59.072 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2775 50.9836 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5981 5.0000 8.5000 472.3590 66.9300 502.7710 481.6910 500.000
+ 27 1.0000 0.0000 -0.2000 -3.4000 58.994 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8436 51.2764 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.5981 5.0000 8.4000 471.5230 61.1410 499.6020 481.6180 500.000
+ 28 1.0000 0.0000 -0.2000 -3.3000 59.486 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4107 51.5699 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7925 1.5981 5.0000 8.3000 472.2240 57.8630 499.6600 480.9970 500.000
+ 29 1.0000 0.0000 -0.2000 -3.2000 58.819 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9790 51.8640 -2.7386 0.5000 0.0000 0.0000 151.9192 -56.1615 1.5981 5.0000 8.2000 472.1070 57.4350 503.5330 481.9010 500.000
+ 30 1.0000 0.0000 -0.2000 -3.1000 59.046 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5484 52.1590 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.5981 5.0000 8.1000 471.7150 57.0290 495.5850 480.2910 500.000
+ 31 1.0000 0.0000 -0.2000 -3.0000 59.026 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1190 52.4546 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.5981 5.0000 8.0000 472.3350 57.5840 504.2260 481.8830 500.000
+# Sum of Counts = 703
+# Center of Mass = -4.351920+/-0.233205
+# Full Width Half-Maximum = 1.190037+/-0.081530
+# 10:27:49 PM 10/26/2011 scan completed.
+
+10:27:49 PM 10/26/2011 Executing "scan h 1 k 0 l 0.1 e -5.0 -2.3 0.1 preset mcu 1.0"
+
+
+# scan = 136
+# date = 10/26/2011
+# time = 10:27:49 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.1 e -5.0 -2.3 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.1 e -5.0 -2.3 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.1000 -5.0000 59.092 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.0802 46.5512 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5954 5.0000 10.0000 471.2080 57.3010 497.2150 481.1290 500.000
+ 2 1.0000 0.0000 0.1000 -4.9000 59.077 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6384 46.8379 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.5954 5.0000 9.9000 472.1230 57.0760 500.9860 481.3410 500.000
+ 3 1.0000 0.0000 0.1000 -4.8000 59.452 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1967 47.1248 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5954 5.0000 9.8000 471.6710 65.2430 502.1900 481.9340 500.000
+ 4 1.0000 0.0000 0.1000 -4.7000 59.273 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7553 47.4120 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5954 5.0000 9.7000 471.8080 68.5800 496.8710 480.5920 500.000
+ 5 1.0000 0.0000 0.1000 -4.6000 58.911 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.3142 47.6994 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.5954 5.0000 9.6000 472.3300 58.9830 504.2480 481.9210 500.000
+ 6 1.0000 0.0000 0.1000 -4.5000 58.788 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8734 47.9870 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5954 5.0000 9.5000 471.3510 57.7980 494.6330 480.3620 500.000
+ 7 1.0000 0.0000 0.1000 -4.4000 58.656 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.4331 48.2750 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.5954 5.0000 9.4000 472.3720 57.1550 503.0080 481.4990 500.000
+ 8 1.0000 0.0000 0.1000 -4.3000 58.926 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.9932 48.5633 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.5954 5.0000 9.3000 471.3350 57.1860 498.7330 481.3260 500.000
+ 9 1.0000 0.0000 0.1000 -4.2000 59.146 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5539 48.8519 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.5954 5.0000 9.2000 472.0570 57.1040 499.9170 480.9800 500.000
+ 10 1.0000 0.0000 0.1000 -4.1000 59.085 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1152 49.1410 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.5954 5.0000 9.1000 471.8620 57.0760 503.2720 481.7840 500.000
+ 11 1.0000 0.0000 0.1000 -4.0000 59.134 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6770 49.4304 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.5954 5.0000 9.0000 471.5530 62.7690 495.6860 480.3000 500.000
+ 12 1.0000 0.0000 0.1000 -3.9000 59.274 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2396 49.7203 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.5954 5.0000 8.9000 472.2610 70.3520 503.8770 481.8340 500.000
+ 13 1.0000 0.0000 0.1000 -3.8000 59.600 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8029 50.0107 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.5954 5.0000 8.8000 471.2420 58.4650 495.8900 480.6720 500.000
+ 14 1.0000 0.0000 0.1000 -3.7000 58.837 67.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3670 50.3016 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.5954 5.0000 8.7000 472.2630 57.8250 501.5980 481.2320 500.000
+ 15 1.0000 0.0000 0.1000 -3.6000 58.947 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.9320 50.5930 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.5954 5.0000 8.6000 471.6560 57.5120 501.6190 481.5630 500.000
+ 16 1.0000 0.0000 0.1000 -3.5000 58.984 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.4978 50.8851 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.5954 5.0000 8.5000 471.8410 57.4930 497.6650 480.4700 500.000
+ 17 1.0000 0.0000 0.1000 -3.4000 58.791 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0647 51.1777 -2.7386 0.5000 0.0000 0.0000 152.2846 -55.4306 1.5954 5.0000 8.4000 472.1300 57.1090 504.0680 481.6410 500.000
+ 18 1.0000 0.0000 0.1000 -3.3000 58.854 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.6326 51.4710 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.5954 5.0000 8.3000 471.2190 56.5220 494.6100 480.2050 500.000
+ 19 1.0000 0.0000 0.1000 -3.2000 59.265 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2016 51.7650 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.5954 5.0000 8.2000 472.1470 58.9540 502.9100 481.4690 500.000
+ 20 1.0000 0.0000 0.1000 -3.1000 58.780 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.7718 52.0597 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5381 1.5954 5.0000 8.1000 471.2660 67.7380 499.4070 481.4460 500.000
+ 21 1.0000 0.0000 0.1000 -3.0000 58.932 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.3432 52.3551 -2.7386 0.5000 0.0000 0.0000 151.5386 -56.9223 1.5954 5.0000 8.0000 471.9780 59.7520 499.3280 480.7190 500.000
+ 22 1.0000 0.0000 0.1000 -2.9000 59.041 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9160 52.6514 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.5954 5.0000 7.9000 472.0360 57.5690 503.6220 481.6650 500.000
+ 23 1.0000 0.0000 0.1000 -2.8000 58.877 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.4900 52.9484 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.5954 5.0000 7.8000 471.4400 56.8510 494.8770 480.2010 500.000
+ 24 1.0000 0.0000 0.1000 -2.7000 59.134 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0656 53.2464 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.5954 5.0000 7.7000 472.2030 56.7920 503.5060 481.4940 500.000
+ 25 1.0000 0.0000 0.1000 -2.6000 59.078 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6426 53.5452 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.5954 5.0000 7.6000 471.1160 56.3490 497.7190 481.0140 500.000
+ 26 1.0000 0.0000 0.1000 -2.5000 59.243 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2212 53.8450 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.5954 5.0000 7.5000 471.9060 56.0860 500.3510 480.9680 500.000
+ 27 1.0000 0.0000 0.1000 -2.4000 58.833 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8014 54.1458 -2.7386 0.5000 0.0000 0.0000 150.2967 -59.4063 1.5954 5.0000 7.4000 471.6690 60.0480 503.0020 481.8710 500.000
+ 28 1.0000 0.0000 0.1000 -2.3000 59.211 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3834 54.4477 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.5954 5.0000 7.3000 471.4240 68.0500 495.5210 480.2870 500.000
+# Sum of Counts = 601
+# Center of Mass = -3.568885+/-0.207056
+# Full Width Half-Maximum = 1.081221+/-0.078320
+# 10:56:41 PM 10/26/2011 scan completed.
+
+10:56:41 PM 10/26/2011 Executing "scan h 1 k 0 l 0.4 e -4.0 -1.0 0.1 preset mcu 1.0"
+
+
+# scan = 137
+# date = 10/26/2011
+# time = 10:56:41 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.4 e -4.0 -1.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.4 e -4.0 -1.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.4000 -4.0000 59.028 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.4436 49.9179 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6085 5.0000 9.0000 472.1740 57.8630 503.0070 481.5620 500.000
+ 2 1.0000 0.0000 0.4000 -3.9000 59.152 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0021 50.2085 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6085 5.0000 8.9000 471.2460 56.8590 499.0080 481.4260 500.000
+ 3 1.0000 0.0000 0.4000 -3.8000 58.860 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5614 50.4995 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0508 1.6085 5.0000 8.8000 471.8940 56.3370 499.6000 480.9790 500.000
+ 4 1.0000 0.0000 0.4000 -3.7000 59.351 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1215 50.7912 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6085 5.0000 8.7000 471.7870 56.2210 503.4920 481.7960 500.000
+ 5 1.0000 0.0000 0.4000 -3.6000 59.520 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6826 51.0834 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6085 5.0000 8.6000 471.2880 55.7440 495.1280 480.1360 500.000
+ 6 1.0000 0.0000 0.4000 -3.5000 59.291 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2445 51.3763 -2.7386 0.5000 0.0000 0.0000 152.4621 -55.0756 1.6085 5.0000 8.5000 471.9790 55.7250 503.9630 481.7020 500.000
+ 7 1.0000 0.0000 0.4000 -3.4000 59.144 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8075 51.6698 -2.7386 0.5000 0.0000 0.0000 152.2846 -55.4305 1.6085 5.0000 8.4000 470.8140 57.0160 496.2770 480.7710 500.000
+ 8 1.0000 0.0000 0.4000 -3.3000 59.388 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.3716 51.9640 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 1.6085 5.0000 8.3000 471.8460 66.2260 501.2360 481.2340 500.000
+ 9 1.0000 0.0000 0.4000 -3.2000 59.327 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9368 52.2590 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.6085 5.0000 8.2000 471.5180 58.8860 502.2310 481.6960 500.000
+ 10 1.0000 0.0000 0.4000 -3.1000 58.938 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5032 52.5548 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.6085 5.0000 8.1000 471.5390 56.5460 496.7520 480.3470 500.000
+ 11 1.0000 0.0000 0.4000 -3.0000 59.655 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0708 52.8513 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.6085 5.0000 8.0000 472.0080 56.3040 504.2760 481.7070 500.000
+ 12 1.0000 0.0000 0.4000 -2.9000 59.094 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6397 53.1487 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.6085 5.0000 7.9000 470.9370 55.9760 494.8160 480.3610 500.000
+ 13 1.0000 0.0000 0.4000 -2.8000 59.335 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2101 53.4470 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.6085 5.0000 7.8000 471.9520 55.7870 502.7980 481.3920 500.000
+ 14 1.0000 0.0000 0.4000 -2.7000 59.198 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7819 53.7462 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.6085 5.0000 7.7000 471.0050 55.9740 499.6800 481.4000 500.000
+ 15 1.0000 0.0000 0.4000 -2.6000 58.652 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3552 54.0464 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.6085 5.0000 7.6000 471.6050 56.1300 499.3430 480.6380 500.000
+ 16 1.0000 0.0000 0.4000 -2.5000 59.437 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.9301 54.3477 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6085 5.0000 7.5000 471.5770 63.8250 503.5010 481.8300 500.000
+ 17 1.0000 0.0000 0.4000 -2.4000 59.541 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5067 54.6499 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.6085 5.0000 7.4000 471.2420 66.7310 495.0030 480.1180 500.000
+ 18 1.0000 0.0000 0.4000 -2.3000 59.182 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0850 54.9533 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.6085 5.0000 7.3000 472.1120 57.7590 504.0300 481.5220 500.000
+ 19 1.0000 0.0000 0.4000 -2.2000 58.789 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.6651 55.2578 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.6085 5.0000 7.2000 470.9750 57.2140 496.1190 480.6520 500.000
+ 20 1.0000 0.0000 0.4000 -2.1000 59.344 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.2471 55.5636 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.6085 5.0000 7.1000 472.0010 57.2460 501.7590 481.1410 500.000
+ 21 1.0000 0.0000 0.4000 -2.0000 59.108 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.8311 55.8705 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.6085 5.0000 7.0000 471.3620 57.2950 501.5320 481.6460 500.000
+ 22 1.0000 0.0000 0.4000 -1.9000 59.365 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.4171 56.1788 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.6085 5.0000 6.9000 471.5930 57.0320 497.9100 480.5250 500.000
+ 23 1.0000 0.0000 0.4000 -1.8000 58.979 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0053 56.4884 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 1.6085 5.0000 6.8000 471.8710 56.9770 504.2740 481.7880 500.000
+ 24 1.0000 0.0000 0.4000 -1.7000 58.659 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.5956 56.7993 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.6085 5.0000 6.7000 471.0810 64.3220 494.4020 480.3410 500.000
+ 25 1.0000 0.0000 0.4000 -1.6000 59.278 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.1884 57.1118 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.6085 5.0000 6.6000 472.1360 67.5640 503.3430 481.4550 500.000
+ 26 1.0000 0.0000 0.4000 -1.5000 59.100 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.7834 57.4258 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6085 5.0000 6.5000 471.1930 58.7910 498.2410 481.1590 500.000
+ 27 1.0000 0.0000 0.4000 -1.4000 59.210 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.3810 57.7413 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6085 5.0000 6.4000 472.0380 58.0590 500.2250 480.9870 500.000
+ 28 1.0000 0.0000 0.4000 -1.3000 59.096 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.9812 58.0584 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6085 5.0000 6.3000 471.8300 57.7040 503.1370 481.8460 500.000
+ 29 1.0000 0.0000 0.4000 -1.2000 59.281 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5841 58.3773 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6085 5.0000 6.2000 471.5650 57.1380 495.9600 480.2860 500.000
+ 30 1.0000 0.0000 0.4000 -1.1000 58.754 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1897 58.6980 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6085 5.0000 6.1000 472.1580 57.2030 504.2410 481.7140 500.000
+ 31 1.0000 0.0000 0.4000 -1.0000 58.875 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.7983 59.0204 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6085 5.0000 6.0000 471.0360 57.0190 495.0880 480.3750 500.000
+# Sum of Counts = 626
+# Center of Mass = -2.487540+/-0.142924
+# Full Width Half-Maximum = 1.283473+/-0.067044
+# 11:28:45 PM 10/26/2011 scan completed.
+
+11:28:45 PM 10/26/2011 Executing "scan h 1 k 0 l 0.6 e -2.5 -0.7 0.1 preset mcu 1.0"
+
+
+# scan = 138
+# date = 10/26/2011
+# time = 11:28:45 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.6 e -2.5 -0.7 0.1 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.6 e -2.5 -0.7 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.6000 -2.5000 59.102 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.7166 55.0130 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.6258 5.0000 7.5000 472.0230 64.6660 501.0740 481.0960 500.000
+ 2 1.0000 0.0000 0.6000 -2.4000 59.095 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.2884 55.3172 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.6258 5.0000 7.4000 471.6510 67.3120 502.3030 481.7010 500.000
+ 3 1.0000 0.0000 0.6000 -2.3000 58.899 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8621 55.6227 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.6258 5.0000 7.3000 471.7930 59.0030 497.0520 480.3880 500.000
+ 4 1.0000 0.0000 0.6000 -2.2000 59.186 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4375 55.9294 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.6258 5.0000 7.2000 472.2450 58.2790 504.3560 481.7920 500.000
+ 5 1.0000 0.0000 0.6000 -2.1000 58.999 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.0149 56.2373 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.6258 5.0000 7.1000 471.2880 57.5510 494.4740 480.1690 500.000
+ 6 1.0000 0.0000 0.6000 -2.0000 59.081 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.5943 56.5466 -2.7386 0.5000 0.0000 0.0000 149.3716 -61.2567 1.6258 5.0000 7.0000 472.2850 57.5320 503.2320 481.4070 500.000
+ 7 1.0000 0.0000 0.6000 -1.9000 58.935 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.1757 56.8573 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7473 1.6258 5.0000 6.9000 471.2340 57.3520 498.5760 481.1860 500.000
+ 8 1.0000 0.0000 0.6000 -1.8000 59.337 63.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7593 57.1694 -2.7386 0.5000 0.0000 0.0000 148.8750 -62.2498 1.6258 5.0000 6.8000 471.9920 56.0130 500.1110 480.8750 500.000
+ 9 1.0000 0.0000 0.6000 -1.7000 59.056 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3451 57.4831 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.6258 5.0000 6.7000 471.8020 64.3250 503.1190 481.7590 500.000
+ 10 1.0000 0.0000 0.6000 -1.6000 59.032 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.9333 57.7983 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2933 1.6258 5.0000 6.6000 471.5570 65.3390 495.4540 480.1020 500.000
+ 11 1.0000 0.0000 0.6000 -1.5000 59.066 59.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5239 58.1151 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6258 5.0000 6.5000 472.3120 58.7540 503.9500 481.6280 500.000
+ 12 1.0000 0.0000 0.6000 -1.4000 58.726 78.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1170 58.4336 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6258 5.0000 6.4000 471.1920 57.0780 496.0110 480.5830 500.000
+ 13 1.0000 0.0000 0.6000 -1.3000 58.938 69.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7126 58.7538 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6258 5.0000 6.3000 472.1840 56.3240 501.6820 481.0500 500.000
+ 14 1.0000 0.0000 0.6000 -1.2000 58.842 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3110 59.0759 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6258 5.0000 6.2000 471.5140 56.1480 501.5170 481.5350 500.000
+ 15 1.0000 0.0000 0.6000 -1.1000 58.866 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9123 59.3998 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6258 5.0000 6.1000 471.7050 55.8370 497.8520 480.4170 500.000
+ 16 1.0000 0.0000 0.6000 -1.0000 59.107 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5164 59.7257 -2.7386 0.5000 0.0000 0.0000 146.6132 -66.7735 1.6258 5.0000 6.0000 471.9360 55.8620 504.1040 481.7080 500.000
+ 17 1.0000 0.0000 0.6000 -0.9000 59.229 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1236 60.0537 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6258 5.0000 5.9000 471.0860 63.6730 494.5180 480.2500 500.000
+ 18 1.0000 0.0000 0.6000 -0.8000 59.146 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.7339 60.3837 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.6258 5.0000 5.8000 472.0990 66.1190 502.9550 481.3930 500.000
+ 19 1.0000 0.0000 0.6000 -0.7000 58.797 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.3475 60.7160 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.6258 5.0000 5.7000 471.2410 58.5790 499.2120 481.3320 500.000
+# Sum of Counts = 679
+# Center of Mass = -1.594845+/-0.087832
+# Full Width Half-Maximum = 0.777186+/-0.046645
+# 11:48:27 PM 10/26/2011 scan completed.
+
+11:48:28 PM 10/26/2011 Executing "scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0"
+
+
+# scan = 139
+# date = 10/26/2011
+# time = 11:48:28 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+# builtin_command = scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 0.8000 -1.5000 59.351 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.5241 59.0716 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.6498 5.0000 6.5000 471.8380 57.7540 498.6790 480.4110 500.000
+ 2 1.0000 0.0000 0.8000 -1.4500 59.426 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8174 59.2327 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.6498 5.0000 6.4500 471.9530 57.5610 503.9430 481.5700 500.000
+ 3 1.0000 0.0000 0.8000 -1.4000 59.258 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.1113 59.3942 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.6498 5.0000 6.4000 471.2530 57.1450 494.6040 480.0360 500.000
+ 4 1.0000 0.0000 0.8000 -1.3500 58.787 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4058 59.5563 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.6498 5.0000 6.3500 472.0830 57.2450 503.7780 481.3890 500.000
+ 5 1.0000 0.0000 0.8000 -1.3000 59.130 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7010 59.7188 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.6498 5.0000 6.3000 470.9150 57.0500 496.5650 480.5540 500.000
+ 6 1.0000 0.0000 0.8000 -1.2500 58.928 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9969 59.8818 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.6498 5.0000 6.2500 471.9400 64.9090 501.2380 480.9330 500.000
+ 7 1.0000 0.0000 0.8000 -1.2000 59.072 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2935 60.0454 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.6498 5.0000 6.2000 471.5020 67.4840 501.9350 481.3500 500.000
+ 8 1.0000 0.0000 0.8000 -1.1500 59.189 78.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5908 60.2094 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.6498 5.0000 6.1500 471.7450 58.9830 497.5640 480.2410 500.000
+ 9 1.0000 0.0000 0.8000 -1.1000 59.170 76.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8888 60.3740 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.6498 5.0000 6.1000 472.1110 58.1490 504.1830 481.5660 500.000
+ 10 1.0000 0.0000 0.8000 -1.0500 59.199 99.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1875 60.5391 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.6498 5.0000 6.0500 471.2230 57.4530 494.4010 479.9700 500.000
+ 11 1.0000 0.0000 0.8000 -1.0000 59.028 103.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4870 60.7048 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.6498 5.0000 6.0000 472.1750 57.3890 503.4230 481.1500 500.000
+ 12 1.0000 0.0000 0.8000 -0.9500 58.891 109.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.7872 60.8710 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.6498 5.0000 5.9500 471.0400 57.1320 497.6660 480.7870 500.000
+ 13 1.0000 0.0000 0.8000 -0.9000 58.954 107.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.0883 61.0377 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.6498 5.0000 5.9000 471.9090 57.0060 500.6730 480.6900 500.000
+ 14 1.0000 0.0000 0.8000 -0.8500 59.045 112.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.3901 61.2051 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7383 1.6498 5.0000 5.8500 471.5220 63.2330 502.4570 481.5290 500.000
+ 15 1.0000 0.0000 0.8000 -0.8000 58.902 115.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.6927 61.3730 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0695 1.6498 5.0000 5.8000 471.5520 68.9910 496.5700 480.1920 500.000
+ 16 1.0000 0.0000 0.8000 -0.7500 58.784 154.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.9962 61.5416 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.6498 5.0000 5.7500 472.1500 59.0080 504.0960 481.4850 500.000
+ 17 1.0000 0.0000 0.8000 -0.7000 59.299 182.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3004 61.7107 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.6498 5.0000 5.7000 471.1180 57.4670 495.1020 480.1960 500.000
+ 18 1.0000 0.0000 0.8000 -0.6500 58.709 138.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6056 61.8804 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.6498 5.0000 5.6500 472.1180 57.0260 502.3630 481.0100 500.000
+ 19 1.0000 0.0000 0.8000 -0.6000 59.162 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9116 62.0509 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4449 1.6498 5.0000 5.6000 471.2400 56.7510 500.1360 481.4190 500.000
+ 20 1.0000 0.0000 0.8000 -0.5500 59.011 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2184 62.2219 -2.7386 0.5000 0.0000 0.0000 145.0989 -69.8022 1.6498 5.0000 5.5500 471.6970 56.3700 498.9790 480.5690 500.000
+ 21 1.0000 0.0000 0.8000 -0.5000 58.897 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5262 62.3936 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.6498 5.0000 5.5000 471.7280 56.3700 503.6730 481.6420 500.000
+ 22 1.0000 0.0000 0.8000 -0.4500 59.018 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.8349 62.5660 -2.7386 0.5000 0.0000 0.0000 144.7330 -70.5340 1.6498 5.0000 5.4500 471.0800 58.8800 494.8130 480.0330 500.000
+ 23 1.0000 0.0000 0.8000 -0.4000 59.054 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.1446 62.7391 -2.7386 0.5000 0.0000 0.0000 144.5457 -70.9087 1.6498 5.0000 5.4000 471.9350 67.3820 503.4240 481.2950 500.000
+ 24 1.0000 0.0000 0.8000 -0.3500 59.003 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4552 62.9129 -2.7386 0.5000 0.0000 0.0000 144.3552 -71.2896 1.6498 5.0000 5.3500 470.9610 59.0140 497.7220 480.8040 500.000
+ 25 1.0000 0.0000 0.8000 -0.3000 59.240 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.7667 63.0874 -2.7386 0.5000 0.0000 0.0000 144.1616 -71.6767 1.6498 5.0000 5.3000 471.8460 57.6090 500.5010 480.7900 500.000
+# Sum of Counts = 1794
+# Center of Mass = -0.906438+/-0.030935
+# Full Width Half-Maximum = 0.542370+/-0.016622
+# 12:14:12 AM 10/27/2011 scan completed.
+
+12:14:12 AM 10/27/2011 Executing "scantitle "Dispersion G-L longitudinal (101) zone""
+
+Setting the scantitle to:
+Dispersion G-L longitudinal (101) zone
+
+
+12:14:12 AM 10/27/2011 Executing "scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 1.0"
+
+
+# scan = 140
+# date = 10/27/2011
+# time = 12:14:12 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 1.0
+# builtin_command = scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 1.1000 -2.0000 59.267 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3528 65.4132 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8481 5.0000 7.0000 471.8570 56.8620 504.0620 481.5750 500.000
+ 2 1.1000 0.0000 1.1000 -1.9500 59.125 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.6195 65.5862 -2.7386 0.5000 0.0000 0.0000 149.2498 -61.5005 1.8481 5.0000 6.9500 471.0010 56.3100 494.4920 479.9660 500.000
+ 3 1.1000 0.0000 1.1000 -1.9000 58.857 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8866 65.7598 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.8481 5.0000 6.9000 471.8980 56.2990 503.5900 481.1900 500.000
+ 4 1.1000 0.0000 1.1000 -1.8500 59.140 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1544 65.9342 -2.7386 0.5000 0.0000 0.0000 149.0015 -61.9969 1.8481 5.0000 6.8500 470.7220 55.9800 497.1520 480.5840 500.000
+ 5 1.1000 0.0000 1.1000 -1.8000 59.267 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.4227 66.1092 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8481 5.0000 6.8000 471.6200 59.9300 500.9010 480.7690 500.000
+ 6 1.1000 0.0000 1.1000 -1.7500 59.052 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6917 66.2849 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.8481 5.0000 6.7500 471.2760 67.8950 502.3170 481.5460 500.000
+ 7 1.1000 0.0000 1.1000 -1.7000 58.997 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.9614 66.4613 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8481 5.0000 6.7000 471.3390 58.2800 496.7450 479.9210 500.000
+ 8 1.1000 0.0000 1.1000 -1.6500 59.214 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2316 66.6385 -2.7386 0.5000 0.0000 0.0000 148.4863 -63.0274 1.8481 5.0000 6.6500 471.8640 57.0840 504.1070 481.3850 500.000
+ 9 1.1000 0.0000 1.1000 -1.6000 59.278 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5025 66.8164 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8481 5.0000 6.6000 470.7940 56.3800 495.0160 480.0490 500.000
+ 10 1.1000 0.0000 1.1000 -1.5500 59.219 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7741 66.9951 -2.7386 0.5000 0.0000 0.0000 148.2188 -63.5624 1.8481 5.0000 6.5500 471.7860 56.3030 502.5580 480.9060 500.000
+ 11 1.1000 0.0000 1.1000 -1.5000 59.033 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0464 67.1746 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8481 5.0000 6.5000 470.8770 56.1460 499.9260 481.1780 500.000
+ 12 1.1000 0.0000 1.1000 -1.4500 58.958 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3193 67.3548 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8481 5.0000 6.4500 471.3930 55.8720 499.1800 480.3780 500.000
+ 13 1.1000 0.0000 1.1000 -1.4000 58.747 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5930 67.5359 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3916 1.8481 5.0000 6.4000 471.3730 58.1390 503.6030 481.4720 500.000
+ 14 1.1000 0.0000 1.1000 -1.3500 59.194 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8674 67.7178 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6752 1.8481 5.0000 6.3500 470.9270 66.6260 495.0460 479.9940 500.000
+ 15 1.1000 0.0000 1.1000 -1.3000 59.095 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1424 67.9005 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8481 5.0000 6.3000 471.7830 59.5080 503.8830 481.2190 500.000
+ 16 1.1000 0.0000 1.1000 -1.2500 59.266 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4182 68.0840 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2543 1.8481 5.0000 6.2500 470.7000 56.9510 496.2750 480.3240 500.000
+ 17 1.1000 0.0000 1.1000 -1.2000 59.054 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6948 68.2685 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5498 1.8481 5.0000 6.2000 471.6580 56.4820 501.3800 480.7690 500.000
+ 18 1.1000 0.0000 1.1000 -1.1500 59.018 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9722 68.4538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8481 5.0000 6.1500 471.0920 56.3170 501.8520 481.2700 500.000
+ 19 1.1000 0.0000 1.1000 -1.1000 59.059 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2503 68.6400 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8481 5.0000 6.1000 471.1950 55.9700 497.5100 480.1180 500.000
+ 20 1.1000 0.0000 1.1000 -1.0500 58.994 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5292 68.8271 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8481 5.0000 6.0500 471.5140 55.9530 504.1460 481.3400 500.000
+ 21 1.1000 0.0000 1.1000 -1.0000 58.955 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.8088 69.0152 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8481 5.0000 6.0000 470.5880 55.5620 494.5930 479.8310 500.000
+ 22 1.1000 0.0000 1.1000 -0.9500 58.911 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0894 69.2042 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8481 5.0000 5.9500 471.5830 64.6960 502.8970 481.2170 500.000
+ 23 1.1000 0.0000 1.1000 -0.9000 58.718 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3707 69.3942 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8481 5.0000 5.9000 470.7860 63.1290 499.2100 481.0540 500.000
+ 24 1.1000 0.0000 1.1000 -0.8500 58.569 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6528 69.5851 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.8481 5.0000 5.8500 471.5150 57.0420 499.5560 480.3980 500.000
+ 25 1.1000 0.0000 1.1000 -0.8000 59.293 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9359 69.7771 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8481 5.0000 5.8000 471.4530 56.6060 503.3680 481.4560 500.000
+ 26 1.1000 0.0000 1.1000 -0.7500 59.044 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2198 69.9701 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4055 1.8481 5.0000 5.7500 470.9590 56.0930 495.2230 479.8040 500.000
+ 27 1.1000 0.0000 1.1000 -0.7000 59.052 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5046 70.1642 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8481 5.0000 5.7000 471.6510 56.0830 503.8130 481.3200 500.000
+# Sum of Counts = 790
+# Center of Mass = -1.434873+/-0.073238
+# Full Width Half-Maximum = 0.692004+/-0.034866
+# 12:42:02 AM 10/27/2011 scan completed.
+
+12:42:02 AM 10/27/2011 Executing "scan h 1.2 k 0 l 1.2 e -5.5 -2.5 0.1 preset mcu 1.0"
+
+
+# scan = 141
+# date = 10/27/2011
+# time = 12:42:02 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.2 k 0 l 1.2 e -5.5 -2.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.2 k 0 l 1.2 e -5.5 -2.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.2000 0.0000 1.2000 -5.5000 59.282 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.1038 60.7635 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.0161 5.0000 10.5000 471.0480 55.8320 502.1930 481.4500 500.000
+ 2 1.2000 0.0000 1.2000 -5.4000 59.127 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.5574 61.0646 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.0161 5.0000 10.4000 471.0150 55.4810 496.9640 480.1420 500.000
+ 3 1.2000 0.0000 1.2000 -5.3000 59.285 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0118 61.3669 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.0161 5.0000 10.3000 471.4900 63.6050 503.9260 481.5640 500.000
+ 4 1.2000 0.0000 1.2000 -5.2000 59.142 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.4670 61.6705 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.0161 5.0000 10.2000 470.6070 65.1470 495.3060 480.1900 500.000
+ 5 1.2000 0.0000 1.2000 -5.1000 59.041 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.9232 61.9755 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.0161 5.0000 10.1000 471.6730 57.0540 502.1890 480.9030 500.000
+ 6 1.2000 0.0000 1.2000 -5.0000 58.977 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.3804 62.2819 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.0161 5.0000 10.0000 470.9420 56.5110 500.6900 481.3090 500.000
+ 7 1.2000 0.0000 1.2000 -4.9000 59.463 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.8386 62.5898 -2.7386 0.5000 0.0000 0.0000 154.6340 -50.7319 2.0161 5.0000 9.9000 471.2960 56.0800 498.6150 480.3650 500.000
+ 8 1.2000 0.0000 1.2000 -4.8000 59.164 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.2978 62.8992 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.0161 5.0000 9.8000 471.4160 55.9730 503.9080 481.5380 500.000
+ 9 1.2000 0.0000 1.2000 -4.7000 59.059 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7580 63.2101 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 2.0161 5.0000 9.7000 470.6690 55.5700 494.6050 479.9320 500.000
+ 10 1.2000 0.0000 1.2000 -4.6000 58.586 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.2194 63.5226 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.0161 5.0000 9.6000 471.5040 55.5990 503.5640 481.1580 500.000
+ 11 1.2000 0.0000 1.2000 -4.5000 59.053 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.6820 63.8367 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.0161 5.0000 9.5000 470.3930 61.8650 497.1240 480.5600 500.000
+ 12 1.2000 0.0000 1.2000 -4.4000 59.091 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.1457 64.1526 -2.7386 0.5000 0.0000 0.0000 153.9187 -52.1624 2.0161 5.0000 9.4000 471.4320 68.4640 500.6290 480.5400 500.000
+ 13 1.2000 0.0000 1.2000 -4.3000 59.115 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6106 64.4701 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.0161 5.0000 9.3000 471.2170 57.3490 502.7230 481.2590 500.000
+ 14 1.2000 0.0000 1.2000 -4.2000 58.869 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0768 64.7895 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.0161 5.0000 9.2000 471.0490 56.3890 496.3230 479.7620 500.000
+ 15 1.2000 0.0000 1.2000 -4.1000 59.389 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5444 65.1107 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.0161 5.0000 9.1000 471.5780 56.2030 504.0510 481.2420 500.000
+ 16 1.2000 0.0000 1.2000 -4.0000 58.999 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.0132 65.4338 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.0161 5.0000 9.0000 470.4670 55.7590 495.1900 480.0200 500.000
+ 17 1.2000 0.0000 1.2000 -3.9000 58.776 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4835 65.7588 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.0161 5.0000 8.9000 471.4730 55.7140 502.3330 480.8470 500.000
+ 18 1.2000 0.0000 1.2000 -3.8000 58.935 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.9552 66.0858 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.0161 5.0000 8.8000 470.6290 55.5730 500.2620 481.1960 500.000
+ 19 1.2000 0.0000 1.2000 -3.7000 58.877 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.4284 66.4150 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.0161 5.0000 8.7000 471.1030 58.6490 498.8600 480.4180 500.000
+ 20 1.2000 0.0000 1.2000 -3.6000 58.976 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.9031 66.7462 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.0161 5.0000 8.6000 471.2850 67.1150 503.5750 481.5390 500.000
+ 21 1.2000 0.0000 1.2000 -3.5000 59.045 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.3794 67.0797 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.0161 5.0000 8.5000 470.7450 57.8780 494.8090 479.8890 500.000
+ 22 1.2000 0.0000 1.2000 -3.4000 58.980 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.8573 67.4155 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 2.0161 5.0000 8.4000 471.6390 56.6220 503.4030 481.1850 500.000
+ 23 1.2000 0.0000 1.2000 -3.3000 58.882 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.3370 67.7536 -2.7386 0.5000 0.0000 0.0000 152.1038 -55.7924 2.0161 5.0000 8.3000 470.5540 56.1010 497.8130 480.7000 500.000
+ 24 1.2000 0.0000 1.2000 -3.2000 58.861 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.8183 68.0940 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 2.0161 5.0000 8.2000 471.3520 55.8570 500.5080 480.6110 500.000
+ 25 1.2000 0.0000 1.2000 -3.1000 58.682 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3014 68.4370 -2.7386 0.5000 0.0000 0.0000 151.7309 -56.5380 2.0161 5.0000 8.1000 471.0440 55.7630 502.7880 481.3630 500.000
+ 26 1.2000 0.0000 1.2000 -3.0000 59.171 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7864 68.7826 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.0161 5.0000 8.0000 470.8740 55.3870 496.4360 479.9670 500.000
+ 27 1.2000 0.0000 1.2000 -2.9000 59.050 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2732 69.1308 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 2.0161 5.0000 7.9000 471.3960 55.4260 504.0540 481.3720 500.000
+ 28 1.2000 0.0000 1.2000 -2.8000 59.273 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7620 69.4818 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 2.0161 5.0000 7.8000 470.3650 62.6430 495.1590 480.0880 500.000
+ 29 1.2000 0.0000 1.2000 -2.7000 58.606 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2528 69.8356 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 2.0161 5.0000 7.7000 471.4920 66.4100 502.1230 480.9030 500.000
+ 30 1.2000 0.0000 1.2000 -2.6000 58.930 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.7458 70.1923 -2.7386 0.5000 0.0000 0.0000 150.7288 -58.5423 2.0161 5.0000 7.6000 470.8520 56.9000 500.8320 481.2640 500.000
+ 31 1.2000 0.0000 1.2000 -2.5000 59.292 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2408 70.5520 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 2.0161 5.0000 7.5000 471.1960 56.1740 498.2930 480.2240 500.000
+# Sum of Counts = 364
+# Center of Mass = -3.647527+/-0.273436
+# Full Width Half-Maximum = 1.557357+/-0.120423
+# 1:14:10 AM 10/27/2011 scan completed.
+
+1:14:10 AM 10/27/2011 Executing "scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 1.0"
+
+
+# scan = 142
+# date = 10/27/2011
+# time = 1:14:10 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 1.3000 -6.5000 59.172 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0202 64.1370 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.1841 5.0000 11.5000 471.5490 55.9580 503.9490 481.4800 500.000
+ 2 1.3000 0.0000 1.3000 -6.4000 58.913 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.4404 64.4367 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.1841 5.0000 11.4000 470.3710 55.5770 495.8890 480.3540 500.000
+ 3 1.3000 0.0000 1.3000 -6.3000 58.832 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.8614 64.7378 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.1841 5.0000 11.3000 471.3590 55.4830 501.8000 480.8350 500.000
+ 4 1.3000 0.0000 1.3000 -6.2000 59.352 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.2833 65.0403 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.1841 5.0000 11.2000 470.6830 55.3870 501.2610 481.2950 500.000
+ 5 1.3000 0.0000 1.3000 -6.1000 58.900 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.7060 65.3443 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.1841 5.0000 11.1000 470.9630 60.4830 498.0330 480.2380 500.000
+ 6 1.3000 0.0000 1.3000 -6.0000 58.872 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.1295 65.6496 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.1841 5.0000 11.0000 471.3270 68.2250 503.8080 481.4790 500.000
+ 7 1.3000 0.0000 1.3000 -5.9000 59.160 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.5540 65.9566 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.1841 5.0000 10.9000 470.5880 57.0030 494.7200 479.8720 500.000
+ 8 1.3000 0.0000 1.3000 -5.8000 58.744 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9794 66.2650 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.1841 5.0000 10.8000 471.5200 56.3520 503.1860 480.8790 500.000
+ 9 1.3000 0.0000 1.3000 -5.7000 58.862 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.4057 66.5750 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.1841 5.0000 10.7000 470.4680 55.9300 498.3220 480.5980 500.000
+ 10 1.3000 0.0000 1.3000 -5.6000 58.497 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8331 66.8867 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9143 2.1841 5.0000 10.5999 471.2280 55.6570 500.1950 480.3400 500.000
+ 11 1.3000 0.0000 1.3000 -5.5000 58.938 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2614 67.2001 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.1841 5.0000 10.5000 470.9890 55.6200 502.9360 481.2160 500.000
+ 12 1.3000 0.0000 1.3000 -5.4000 58.742 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6909 67.5151 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.1841 5.0000 10.4000 470.7200 55.2490 496.1070 479.7230 500.000
+ 13 1.3000 0.0000 1.3000 -5.3000 58.878 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1214 67.8320 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.1841 5.0000 10.3000 471.2930 55.7570 504.0120 481.3020 500.000
+ 14 1.3000 0.0000 1.3000 -5.2000 59.200 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5530 68.1506 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.1841 5.0000 10.2000 470.2710 65.1810 495.4230 480.0910 500.000
+ 15 1.3000 0.0000 1.3000 -5.1000 58.592 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.9858 68.4712 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.1841 5.0000 10.1000 471.3970 60.0360 501.9100 480.7530 500.000
+ 16 1.3000 0.0000 1.3000 -5.0000 58.664 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4198 68.7936 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4598 2.1841 5.0000 10.0000 470.7790 56.5180 500.9840 481.1840 500.000
+ 17 1.3000 0.0000 1.3000 -4.9000 58.726 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8549 69.1180 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.1841 5.0000 9.9000 471.1080 55.9340 498.3800 480.0300 500.000
+ 18 1.3000 0.0000 1.3000 -4.8000 58.802 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2914 69.4444 -2.7386 0.5000 0.0000 0.0000 154.4955 -51.0086 2.1841 5.0000 9.8000 471.2880 55.8330 503.8870 481.3430 500.000
+ 19 1.3000 0.0000 1.3000 -4.7000 59.118 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.7291 69.7730 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.1841 5.0000 9.7000 470.4970 55.3890 494.6460 479.7890 500.000
+ 20 1.3000 0.0000 1.3000 -4.6000 58.825 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.1682 70.1036 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.1841 5.0000 9.6000 471.3750 55.3670 503.3820 480.9950 500.000
+ 21 1.3000 0.0000 1.3000 -4.5000 58.351 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.6086 70.4364 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.1841 5.0000 9.5000 470.2950 55.1500 497.7410 480.6290 500.000
+ 22 1.3000 0.0000 1.3000 -4.4000 58.985 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.0505 70.7716 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.1841 5.0000 9.4000 471.1830 62.9820 500.4760 480.6480 500.000
+ 23 1.3000 0.0000 1.3000 -4.3000 58.789 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4938 71.1090 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.1841 5.0000 9.3000 471.0370 66.1710 502.7760 481.2950 500.000
+ 24 1.3000 0.0000 1.3000 -4.2000 58.942 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9385 71.4488 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.1841 5.0000 9.2000 470.9100 56.6880 496.1410 479.7860 500.000
+ 25 1.3000 0.0000 1.3000 -4.1000 58.500 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3848 71.7911 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 2.1841 5.0000 9.1000 471.5190 56.2100 504.0670 481.3050 500.000
+ 26 1.3000 0.0000 1.3000 -4.0000 58.540 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8327 72.1359 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.1841 5.0000 9.0000 470.4170 55.7200 495.2660 480.0560 500.000
+ 27 1.3000 0.0000 1.3000 -3.9000 58.863 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2822 72.4833 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.1841 5.0000 8.9000 471.4390 55.6590 502.3990 480.9220 500.000
+ 28 1.3000 0.0000 1.3000 -3.8000 58.462 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7334 72.8334 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.1841 5.0000 8.8000 470.5610 55.4750 500.0120 481.1210 500.000
+ 29 1.3000 0.0000 1.3000 -3.7000 58.497 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1863 73.1862 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.1841 5.0000 8.7000 471.1400 55.2340 499.4370 480.3450 500.000
+ 30 1.3000 0.0000 1.3000 -3.6000 58.688 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6410 73.5420 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.1841 5.0000 8.6000 471.0660 55.8490 503.5100 481.5060 500.000
+ 31 1.3000 0.0000 1.3000 -3.5000 58.633 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0974 73.9006 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.1841 5.0000 8.5000 470.7710 65.2100 495.6020 479.8600 500.000
+# Sum of Counts = 418
+# Center of Mass = -4.892584+/-0.340517
+# Full Width Half-Maximum = 1.540170+/-0.130022
+# 1:46:00 AM 10/27/2011 scan completed.
+
+1:46:00 AM 10/27/2011 Executing "scan h 1.4 k 0 l 1.4 e -7.0 -5.0 0.1 preset mcu 1.0"
+
+
+# scan = 143
+# date = 10/27/2011
+# time = 1:46:00 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.4 k 0 l 1.4 e -7.0 -5.0 0.1 preset mcu 1.0
+# builtin_command = scan h 1.4 k 0 l 1.4 e -7.0 -5.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.4000 0.0000 1.4000 -7.0000 58.898 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.2365 69.0608 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.3521 5.0000 12.0000 471.5800 58.6900 503.5070 481.2100 500.000
+ 2 1.4000 0.0000 1.4000 -6.9000 58.819 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.6329 69.3662 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.3521 5.0000 11.9000 470.5030 56.3530 497.2520 480.5890 500.000
+ 3 1.4000 0.0000 1.4000 -6.8000 58.871 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.0302 69.6732 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.3521 5.0000 11.8000 471.4220 55.8690 501.0320 480.5520 500.000
+ 4 1.4000 0.0000 1.4000 -6.7000 58.806 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.4284 69.9818 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 2.3521 5.0000 11.7000 470.9220 55.8100 502.1090 481.2060 500.000
+ 5 1.4000 0.0000 1.4000 -6.6000 59.141 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8275 70.2921 -2.7386 0.5000 0.0000 0.0000 156.6862 -46.6273 2.3521 5.0000 11.6000 471.0300 55.3890 497.6970 480.0210 500.000
+ 6 1.4000 0.0000 1.4000 -6.5000 58.637 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.2276 70.6041 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.3521 5.0000 11.5000 471.3200 55.4010 504.0910 481.2390 500.000
+ 7 1.4000 0.0000 1.4000 -6.4000 58.866 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.6286 70.9178 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.3521 5.0000 11.4000 470.4720 54.9680 494.4850 479.8160 500.000
+ 8 1.4000 0.0000 1.4000 -6.3000 58.900 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.0306 71.2332 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2794 2.3521 5.0000 11.3000 471.3940 61.1700 503.4140 481.1710 500.000
+ 9 1.4000 0.0000 1.4000 -6.2000 58.588 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4336 71.5506 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.3521 5.0000 11.2000 470.4330 68.2320 497.7640 480.6600 500.000
+ 10 1.4000 0.0000 1.4000 -6.1000 58.688 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8377 71.8697 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.3521 5.0000 11.1000 471.3660 57.0120 500.5260 480.5150 500.000
+ 11 1.4000 0.0000 1.4000 -6.0000 58.642 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2429 72.1908 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.3521 5.0000 11.0000 471.0700 56.3220 502.6780 481.2240 500.000
+ 12 1.4000 0.0000 1.4000 -5.9000 58.996 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6492 72.5139 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.3521 5.0000 10.9000 470.9330 55.7830 496.6370 479.8140 500.000
+ 13 1.4000 0.0000 1.4000 -5.8000 59.052 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0566 72.8390 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4299 2.3521 5.0000 10.8000 471.4170 55.6740 504.0800 481.2730 500.000
+ 14 1.4000 0.0000 1.4000 -5.7000 58.607 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4652 73.1661 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.3521 5.0000 10.7000 470.3530 55.3190 494.9180 479.9270 500.000
+ 15 1.4000 0.0000 1.4000 -5.6000 58.923 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.8750 73.4954 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.3521 5.0000 10.6000 471.3510 55.2770 502.6220 480.9460 500.000
+ 16 1.4000 0.0000 1.4000 -5.5000 58.610 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.2861 73.8268 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.3521 5.0000 10.5000 470.4370 56.7920 499.6180 481.0970 500.000
+ 17 1.4000 0.0000 1.4000 -5.4000 58.494 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.6984 74.1604 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.3521 5.0000 10.4000 471.1110 66.0200 499.2410 480.4860 500.000
+ 18 1.4000 0.0000 1.4000 -5.3000 58.816 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.1120 74.4964 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6689 2.3521 5.0000 10.3000 471.2500 59.3910 503.5130 481.3670 500.000
+ 19 1.4000 0.0000 1.4000 -5.2000 58.298 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.5270 74.8347 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 2.3521 5.0000 10.2000 470.7570 56.3510 495.0370 479.7740 500.000
+ 20 1.4000 0.0000 1.4000 -5.1000 58.836 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.9433 75.1754 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 2.3521 5.0000 10.1000 471.5230 56.1530 503.5610 481.1190 500.000
+ 21 1.4000 0.0000 1.4000 -5.0000 58.951 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3610 75.5186 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3521 5.0000 10.0000 470.4090 55.7310 496.9490 480.4130 500.000
+# Sum of Counts = 561
+# Center of Mass = -5.919786+/-0.354073
+# Full Width Half-Maximum = 0.987156+/-0.137893
+# 2:07:33 AM 10/27/2011 scan completed.
+
+2:07:33 AM 10/27/2011 Executing "scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0"
+
+
+# scan = 144
+# date = 10/27/2011
+# time = 2:07:33 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.5000 58.765 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 471.1600 55.5400 499.5100 480.5750 500.000
+ 2 1.5000 0.0000 1.5000 -8.4000 58.772 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1527 71.3308 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 2.5201 5.0000 13.4000 471.1010 55.4460 503.4220 481.5620 500.000
+ 3 1.5000 0.0000 1.5000 -8.3000 58.774 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5225 71.6287 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.5201 5.0000 13.3000 470.6250 55.0180 495.3750 479.6140 500.000
+ 4 1.5000 0.0000 1.5000 -8.2000 59.042 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 471.3650 62.0250 503.7420 481.1570 500.000
+ 5 1.5000 0.0000 1.5000 -8.1000 58.474 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2643 72.2290 -2.7386 0.5000 0.0000 0.0000 158.1351 -43.7295 2.5201 5.0000 13.1000 470.4080 67.7210 496.7080 480.3730 500.000
+ 6 1.5000 0.0000 1.5000 -8.0000 58.684 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 471.3890 56.9730 500.9810 480.5730 500.000
+ 7 1.5000 0.0000 1.5000 -7.9000 58.641 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0094 72.8353 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 2.5201 5.0000 12.9000 471.0080 56.4170 502.3590 481.1370 500.000
+ 8 1.5000 0.0000 1.5000 -7.8000 58.479 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 470.9550 55.7860 496.9230 479.8390 500.000
+ 9 1.5000 0.0000 1.5000 -7.7000 58.425 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7577 73.4480 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5201 5.0000 12.7000 471.3820 55.7080 503.8900 481.2090 500.000
+ 10 1.5000 0.0000 1.5000 -7.6000 58.844 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6827 -44.6345 2.5201 5.0000 12.6000 470.3450 55.3490 495.1640 479.8720 500.000
+ 11 1.5000 0.0000 1.5000 -7.5000 58.832 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5096 74.0674 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8224 2.5201 5.0000 12.5000 471.2830 55.3400 502.3260 480.7290 500.000
+ 12 1.5000 0.0000 1.5000 -7.4000 58.936 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 470.4750 55.1660 500.3900 481.0520 500.000
+ 13 1.5000 0.0000 1.5000 -7.3000 58.684 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2652 74.6938 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5201 5.0000 12.3000 470.9380 63.7110 498.5450 480.2570 500.000
+ 14 1.5000 0.0000 1.5000 -7.2000 58.439 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4005 2.5201 5.0000 12.2000 471.2320 65.1950 503.6330 481.2700 500.000
+ 15 1.5000 0.0000 1.5000 -7.1000 58.517 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0246 75.3275 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5201 5.0000 12.1000 470.5670 56.4590 494.8420 479.8020 500.000
+ 16 1.5000 0.0000 1.5000 -7.0000 59.051 53.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 471.4500 56.4220 502.9770 480.9650 500.000
+ 17 1.5000 0.0000 1.5000 -6.9000 58.661 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7882 75.9689 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5201 5.0000 11.9000 470.5010 55.8380 499.1120 480.8710 500.000
+ 18 1.5000 0.0000 1.5000 -6.8000 58.669 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 471.1090 55.5790 499.6360 480.3510 500.000
+ 19 1.5000 0.0000 1.5000 -6.7000 58.531 57.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5560 76.6182 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.5201 5.0000 11.7000 471.0160 55.6970 503.4130 481.2630 500.000
+ 20 1.5000 0.0000 1.5000 -6.6000 58.825 67.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 470.5590 55.1780 495.4900 479.6540 500.000
+ 21 1.5000 0.0000 1.5000 -6.5000 58.457 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3283 77.2760 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5201 5.0000 11.5000 471.2530 57.4440 503.8710 481.2240 500.000
+ 22 1.5000 0.0000 1.5000 -6.4000 58.305 72.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 2.5201 5.0000 11.4000 470.2250 66.2850 496.0710 480.2830 500.000
+ 23 1.5000 0.0000 1.5000 -6.3000 58.833 46.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1053 77.9426 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5201 5.0000 11.3000 471.3320 59.3410 501.4370 480.6570 500.000
+ 24 1.5000 0.0000 1.5000 -6.2000 58.330 66.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 470.8780 56.6960 501.9230 481.1320 500.000
+ 25 1.5000 0.0000 1.5000 -6.1000 58.436 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8872 78.6184 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5201 5.0000 11.1000 470.9580 56.3180 497.4450 479.9740 500.000
+ 26 1.5000 0.0000 1.5000 -6.0000 58.617 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 471.3370 56.3100 504.0340 481.2750 500.000
+ 27 1.5000 0.0000 1.5000 -5.9000 58.478 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6744 79.3040 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5201 5.0000 10.9000 470.4000 55.9780 494.6460 479.7960 500.000
+ 28 1.5000 0.0000 1.5000 -5.8000 59.060 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 471.4000 56.1220 503.1100 480.9370 500.000
+ 29 1.5000 0.0000 1.5000 -5.7000 58.405 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4670 79.9997 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5201 5.0000 10.7000 470.3650 55.8180 498.4610 480.7750 500.000
+ 30 1.5000 0.0000 1.5000 -5.6000 58.348 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5428 -48.9142 2.5201 5.0000 10.6000 471.2150 65.0990 500.1360 480.5910 500.000
+ 31 1.5000 0.0000 1.5000 -5.5000 58.799 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2653 80.7062 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5201 5.0000 10.5000 471.1100 63.5780 502.9880 481.4460 500.000
+# Sum of Counts = 1062
+# Center of Mass = -6.854520+/-0.298334
+# Full Width Half-Maximum = 1.486655+/-0.104928
+# 2:39:10 AM 10/27/2011 scan completed.
+
+2:39:11 AM 10/27/2011 Executing "scantitle "Dispersion G-L transverse (-102) zone""
+
+Setting the scantitle to:
+Dispersion G-L transverse (-102) zone
+
+
+2:39:11 AM 10/27/2011 Executing "scan h -0.9 k 0 l 2.1 e -2.0 -0.6 0.05 preset mcu 1.0"
+
+
+# scan = 145
+# date = 10/27/2011
+# time = 2:39:11 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -2.0 -0.6 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -2.0 -0.6 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -2.0000 58.568 427.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4024 64.0703 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8150 5.0000 7.0000 471.5970 57.1730 503.8110 481.3840 500.000
+ 2 -0.9000 0.0000 2.1000 -1.9500 58.993 469.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.1329 64.2403 -2.7386 0.5000 0.0000 0.0000 149.2498 -61.5005 1.8150 5.0000 6.9500 470.4850 56.5810 495.9590 480.3050 500.000
+ 3 -0.9000 0.0000 2.1000 -1.9000 58.677 525.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8628 64.4110 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.8150 5.0000 6.9000 471.4510 56.4570 501.5180 480.8650 500.000
+ 4 -0.9000 0.0000 2.1000 -1.8500 58.944 564.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5921 64.5822 -2.7386 0.5000 0.0000 0.0000 149.0015 -61.9969 1.8150 5.0000 6.8500 470.8910 56.3650 501.7610 481.3430 500.000
+ 5 -0.9000 0.0000 2.1000 -1.8000 58.572 608.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.3208 64.7542 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8150 5.0000 6.8000 471.0070 56.0560 497.3940 480.2090 500.000
+ 6 -0.9000 0.0000 2.1000 -1.7500 58.633 653.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.0489 64.9268 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.8150 5.0000 6.7500 471.3930 60.1490 503.9450 481.6250 500.000
+ 7 -0.9000 0.0000 2.1000 -1.7000 58.573 596.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7764 65.1000 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8150 5.0000 6.7000 470.5400 67.9360 495.0390 480.1790 500.000
+ 8 -0.9000 0.0000 2.1000 -1.6500 59.117 547.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.5032 65.2740 -2.7386 0.5000 0.0000 0.0000 148.4863 -63.0274 1.8150 5.0000 6.6500 471.5660 58.0380 502.3420 481.1470 500.000
+ 9 -0.9000 0.0000 2.1000 -1.6000 58.545 454.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.2294 65.4486 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8150 5.0000 6.6000 470.8630 56.9490 500.4840 481.3650 500.000
+ 10 -0.9000 0.0000 2.1000 -1.5500 58.779 446.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.9550 65.6240 -2.7386 0.5000 0.0000 0.0000 148.2188 -63.5624 1.8150 5.0000 6.5500 471.2580 56.4720 498.6450 480.5130 500.000
+ 11 -0.9000 0.0000 2.1000 -1.5000 58.939 437.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.6798 65.8000 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8150 5.0000 6.5000 471.4140 56.4280 503.8220 481.6770 500.000
+ 12 -0.9000 0.0000 2.1000 -1.4500 58.868 414.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4040 65.9768 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1116 1.8150 5.0000 6.4500 470.6700 55.7700 494.7170 480.0320 500.000
+ 13 -0.9000 0.0000 2.1000 -1.4000 59.003 423.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1275 66.1544 -2.7386 0.5000 0.0000 0.0000 147.8041 -64.3915 1.8150 5.0000 6.4000 471.5100 55.7970 503.2940 481.3960 500.000
+ 14 -0.9000 0.0000 2.1000 -1.3500 58.632 455.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8503 66.3327 -2.7386 0.5000 0.0000 0.0000 147.6623 -64.6752 1.8150 5.0000 6.3500 470.4640 55.5700 498.1170 480.9120 500.000
+ 15 -0.9000 0.0000 2.1000 -1.3000 58.834 394.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.5724 66.5118 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8150 5.0000 6.3000 471.2350 61.1570 500.1320 480.7270 500.000
+ 16 -0.9000 0.0000 2.1000 -1.2500 59.057 368.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2938 66.6916 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.8150 5.0000 6.2500 471.1600 68.8550 502.9540 481.6620 500.000
+ 17 -0.9000 0.0000 2.1000 -1.2000 59.102 322.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.0144 66.8723 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8150 5.0000 6.2000 470.8370 57.4550 495.4140 480.0270 500.000
+ 18 -0.9000 0.0000 2.1000 -1.1500 58.838 246.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7343 67.0538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8150 5.0000 6.1500 471.5810 56.8800 503.4280 481.4100 500.000
+ 19 -0.9000 0.0000 2.1000 -1.1000 58.674 164.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4534 67.2361 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8150 5.0000 6.1000 470.5430 56.4460 497.6850 480.7550 500.000
+ 20 -0.9000 0.0000 2.1000 -1.0500 58.845 130.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1717 67.4193 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8150 5.0000 6.0500 471.3150 56.1370 500.4120 480.8410 500.000
+ 21 -0.9000 0.0000 2.1000 -1.0000 58.847 74.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8892 67.6033 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8150 5.0000 6.0000 471.0530 55.9930 502.9570 481.5810 500.000
+ 22 -0.9000 0.0000 2.1000 -0.9500 59.109 91.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6060 67.7882 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8150 5.0000 5.9500 470.7850 55.5780 496.1960 480.0680 500.000
+ 23 -0.9000 0.0000 2.1000 -0.9000 58.767 59.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.3219 67.9740 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8150 5.0000 5.9000 471.3560 55.6150 504.0420 481.5500 500.000
+ 24 -0.9000 0.0000 2.1000 -0.8500 59.014 69.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0370 68.1608 -2.7386 0.5000 0.0000 0.0000 146.1308 -67.7382 1.8150 5.0000 5.8500 470.3010 64.6900 495.5510 480.1980 500.000
+ 25 -0.9000 0.0000 2.1000 -0.8000 58.696 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7512 68.3484 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8150 5.0000 5.8000 471.3730 63.4110 501.6340 481.0190 500.000
+ 26 -0.9000 0.0000 2.1000 -0.7500 58.860 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4646 68.5371 -2.7386 0.5000 0.0000 0.0000 145.7973 -68.4056 1.8150 5.0000 5.7500 470.8660 57.2490 501.5980 481.4050 500.000
+ 27 -0.9000 0.0000 2.1000 -0.7000 59.103 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1772 68.7267 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8150 5.0000 5.7000 471.0340 56.5280 497.6450 480.3200 500.000
+ 28 -0.9000 0.0000 2.1000 -0.6500 58.700 61.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.8888 68.9172 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.8150 5.0000 5.6500 471.3850 56.4900 503.9430 481.5950 500.000
+ 29 -0.9000 0.0000 2.1000 -0.6000 58.781 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5995 69.1088 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.8150 5.0000 5.6000 470.4110 55.9730 494.7600 480.0380 500.000
+# Sum of Counts = 9198
+# Center of Mass = -1.549908+/-0.023087
+# Full Width Half-Maximum = 0.626583+/-0.010640
+# 3:09:52 AM 10/27/2011 scan completed.
+
+3:09:52 AM 10/27/2011 Executing "scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0"
+
+
+# scan = 146
+# date = 10/27/2011
+# time = 3:09:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.8000 0.0000 2.2000 -6.0000 59.266 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.2391 48.5425 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.7270 5.0000 11.0000 470.9990 55.7160 498.7380 480.4410 500.000
+ 2 -0.8000 0.0000 2.2000 -5.9000 58.547 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.7236 48.8280 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.7270 5.0000 10.9000 471.1210 55.6740 503.9300 481.5860 500.000
+ 3 -0.8000 0.0000 2.2000 -5.8000 58.708 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.2080 49.1138 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4299 1.7270 5.0000 10.8000 470.4950 62.6340 494.7560 479.9910 500.000
+ 4 -0.8000 0.0000 2.2000 -5.7000 58.955 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.6923 49.4000 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.7270 5.0000 10.7000 471.4020 67.6890 503.3500 481.3420 500.000
+ 5 -0.8000 0.0000 2.2000 -5.6000 58.713 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.1763 49.6866 -2.7386 0.5000 0.0000 0.0000 155.5429 -48.9142 1.7270 5.0000 10.6000 470.4230 57.2160 497.5040 480.6270 500.000
+ 6 -0.8000 0.0000 2.2000 -5.5000 58.792 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.6601 49.9735 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.7270 5.0000 10.5000 471.2770 56.6310 500.6360 480.8000 500.000
+ 7 -0.8000 0.0000 2.2000 -5.4000 58.691 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1436 50.2609 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.7270 5.0000 10.4000 470.9390 56.5020 502.6850 481.4810 500.000
+ 8 -0.8000 0.0000 2.2000 -5.3000 58.716 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.6268 50.5488 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6689 1.7270 5.0000 10.3000 470.8660 55.9700 497.1490 480.1750 500.000
+ 9 -0.8000 0.0000 2.2000 -5.2000 58.593 31.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.1097 50.8372 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9284 1.7270 5.0000 10.2000 471.2690 55.9750 504.2740 481.5860 500.000
+ 10 -0.8000 0.0000 2.2000 -5.1000 58.700 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.5921 51.1260 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 1.7270 5.0000 10.1000 470.3390 55.4670 494.2380 479.8400 500.000
+ 11 -0.8000 0.0000 2.2000 -5.0000 58.830 51.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.0740 51.4155 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.7270 5.0000 10.0000 471.3130 57.6970 503.7190 481.3420 500.000
+ 12 -0.8000 0.0000 2.2000 -4.9000 58.812 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.5555 51.7055 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.7270 5.0000 9.9000 470.2310 66.5800 496.9400 480.6000 500.000
+ 13 -0.8000 0.0000 2.2000 -4.8000 58.916 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.0364 51.9961 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.7270 5.0000 9.8000 471.2700 59.0880 500.9400 480.7890 500.000
+ 14 -0.8000 0.0000 2.2000 -4.7000 58.956 63.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.5167 52.2874 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.7270 5.0000 9.7000 470.8800 56.9070 502.3140 481.4000 500.000
+ 15 -0.8000 0.0000 2.2000 -4.6000 58.690 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.9964 52.5794 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 1.7270 5.0000 9.6000 470.9090 56.3090 497.3580 480.1610 500.000
+ 16 -0.8000 0.0000 2.2000 -4.5000 58.891 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4754 52.8721 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.7270 5.0000 9.5000 471.2790 56.1720 504.3250 481.5540 500.000
+ 17 -0.8000 0.0000 2.2000 -4.4000 58.681 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.9537 53.1655 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.7270 5.0000 9.4000 470.3790 55.6850 494.2820 479.8110 500.000
+ 18 -0.8000 0.0000 2.2000 -4.3000 58.667 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4312 53.4597 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.7270 5.0000 9.3000 471.3190 55.7170 503.8410 481.3180 500.000
+ 19 -0.8000 0.0000 2.2000 -4.2000 58.734 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9079 53.7548 -2.7386 0.5000 0.0000 0.0000 153.6151 -52.7696 1.7270 5.0000 9.2000 470.1090 55.3160 496.3030 480.3590 500.000
+ 20 -0.8000 0.0000 2.2000 -4.1000 58.779 42.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.3837 54.0506 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.7270 5.0000 9.1000 471.1400 60.5530 501.6350 480.9140 500.000
+ 21 -0.8000 0.0000 2.2000 -4.0000 58.923 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8586 54.3474 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.7270 5.0000 9.0000 470.6070 68.4070 501.4360 481.3260 500.000
+ 22 -0.8000 0.0000 2.2000 -3.9000 58.983 63.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3326 54.6452 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.7270 5.0000 8.9000 470.9120 57.3750 497.8950 480.1920 500.000
+ 23 -0.8000 0.0000 2.2000 -3.8000 58.267 83.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.8055 54.9438 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.7270 5.0000 8.8000 471.2430 56.6340 504.0540 481.4610 500.000
+ 24 -0.8000 0.0000 2.2000 -3.7000 58.616 108.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2773 55.2435 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.7270 5.0000 8.7000 470.3720 56.0270 494.3880 479.7930 500.000
+ 25 -0.8000 0.0000 2.2000 -3.6000 58.456 136.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.7481 55.5442 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.7270 5.0000 8.6000 471.2930 56.0230 503.6420 481.2160 500.000
+ 26 -0.8000 0.0000 2.2000 -3.5000 58.686 188.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2177 55.8460 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.7270 5.0000 8.5000 470.1270 55.6890 496.7710 480.4110 500.000
+ 27 -0.8000 0.0000 2.2000 -3.4000 58.997 201.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6860 56.1490 -2.7386 0.5000 0.0000 0.0000 152.2847 -55.4305 1.7270 5.0000 8.4000 471.0750 55.5620 501.2580 480.7660 500.000
+ 28 -0.8000 0.0000 2.2000 -3.3000 58.782 198.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1531 56.4531 -2.7386 0.5000 0.0000 0.0000 152.1037 -55.7925 1.7270 5.0000 8.3000 470.5000 55.4360 501.8030 481.3260 500.000
+ 29 -0.8000 0.0000 2.2000 -3.2000 58.514 163.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6188 56.7584 -2.7386 0.5000 0.0000 0.0000 151.9193 -56.1615 1.7270 5.0000 8.2000 470.7670 63.8620 497.8300 480.0200 500.000
+ 30 -0.8000 0.0000 2.2000 -3.1000 58.654 130.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.0832 57.0650 -2.7386 0.5000 0.0000 0.0000 151.7310 -56.5380 1.7270 5.0000 8.1000 471.1390 65.4910 503.9270 481.4840 500.000
+ 31 -0.8000 0.0000 2.2000 -3.0000 59.119 113.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.5461 57.3729 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.7270 5.0000 8.0000 470.4190 56.8260 494.5110 479.7720 500.000
+ 32 -0.8000 0.0000 2.2000 -2.9000 58.375 88.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0075 57.6822 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3147 1.7270 5.0000 7.9000 471.3570 56.5090 503.5520 481.2090 500.000
+ 33 -0.8000 0.0000 2.2000 -2.8000 58.608 86.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.4674 57.9929 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.7270 5.0000 7.8000 470.2000 56.0650 496.9630 480.4630 500.000
+ 34 -0.8000 0.0000 2.2000 -2.7000 58.536 82.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.9256 58.3050 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.7270 5.0000 7.7000 471.1440 55.9360 501.2220 480.7960 500.000
+ 35 -0.8000 0.0000 2.2000 -2.6000 58.557 69.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.3821 58.6187 -2.7386 0.5000 0.0000 0.0000 150.7288 -58.5424 1.7270 5.0000 7.6000 470.5820 55.8490 501.8540 481.3770 500.000
+ 36 -0.8000 0.0000 2.2000 -2.5000 58.628 48.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.8368 58.9339 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7270 5.0000 7.5000 470.7540 55.5250 497.9310 480.2780 500.000
+ 37 -0.8000 0.0000 2.2000 -2.4000 58.553 43.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.2898 59.2508 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.7270 5.0000 7.4000 471.0460 58.3950 504.1520 481.5950 500.000
+ 38 -0.8000 0.0000 2.2000 -2.3000 58.466 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.7408 59.5694 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.7270 5.0000 7.3000 470.3490 66.9770 494.4950 479.8800 500.000
+ 39 -0.8000 0.0000 2.2000 -2.2000 58.766 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.1898 59.8896 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7270 5.0000 7.2000 471.3200 58.3120 503.4330 481.2050 500.000
+ 40 -0.8000 0.0000 2.2000 -2.1000 58.842 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.6368 60.2118 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.7270 5.0000 7.1000 470.2820 56.6790 497.3620 480.5580 500.000
+ 41 -0.8000 0.0000 2.2000 -2.0000 58.485 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.0818 60.5358 -2.7386 0.5000 0.0000 0.0000 149.3715 -61.2567 1.7270 5.0000 7.0000 471.1470 56.2710 500.7330 480.6760 500.000
+# Sum of Counts = 2532
+# Center of Mass = -3.596761+/-0.102473
+# Full Width Half-Maximum = 1.690440+/-0.043770
+# 3:52:04 AM 10/27/2011 scan completed.
+
+3:52:04 AM 10/27/2011 Executing "scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 1.0"
+
+
+# scan = 147
+# date = 10/27/2011
+# time = 3:52:04 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 58.932 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.8412 40.0160 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6514 5.0000 13.0000 471.2630 56.0590 504.2040 481.4400 500.000
+ 2 -0.7000 0.0000 2.3000 -7.9000 58.952 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.2892 40.3059 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.6514 5.0000 12.9000 470.1410 55.6520 494.7250 479.9150 500.000
+ 3 -0.7000 0.0000 2.3000 -7.8000 58.591 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.7383 40.5953 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.6514 5.0000 12.8000 471.2000 55.7170 502.8520 481.1000 500.000
+ 4 -0.7000 0.0000 2.3000 -7.7000 58.898 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.1885 40.8842 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.6514 5.0000 12.7000 470.1940 55.5130 498.7840 480.8790 500.000
+ 5 -0.7000 0.0000 2.3000 -7.6000 58.572 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.6398 41.1727 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.6514 5.0000 12.6000 471.0060 65.1820 500.0070 480.6530 500.000
+ 6 -0.7000 0.0000 2.3000 -7.5000 58.794 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.0920 41.4608 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6514 5.0000 12.5000 470.8970 62.5860 503.0150 481.4320 500.000
+ 7 -0.7000 0.0000 2.3000 -7.4000 58.676 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5452 41.7485 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.6514 5.0000 12.4000 470.7320 56.9470 496.1930 479.9140 500.000
+ 8 -0.7000 0.0000 2.3000 -7.3000 58.711 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9992 42.0358 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.6514 5.0000 12.3000 471.3210 56.5630 504.1200 481.4280 500.000
+ 9 -0.7000 0.0000 2.3000 -7.2000 58.823 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.4540 42.3229 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.6514 5.0000 12.2000 470.2410 56.0340 494.8490 479.9540 500.000
+ 10 -0.7000 0.0000 2.3000 -7.1000 58.714 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.9096 42.6097 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.6514 5.0000 12.1000 471.2560 55.9920 502.6660 481.0530 500.000
+ 11 -0.7000 0.0000 2.3000 -7.0000 58.800 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.3659 42.8962 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7986 1.6514 5.0000 12.0000 470.3180 55.7320 499.3760 481.0200 500.000
+ 12 -0.7000 0.0000 2.3000 -6.9000 58.768 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.8229 43.1825 -2.7386 0.5000 0.0000 0.0000 156.9991 -46.0016 1.6514 5.0000 11.9000 470.9280 55.5720 499.6790 480.4950 500.000
+ 13 -0.7000 0.0000 2.3000 -6.8000 58.985 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.2805 43.4686 -2.7386 0.5000 0.0000 0.0000 156.8962 -46.2074 1.6514 5.0000 11.8000 470.8470 59.5520 503.3570 481.5330 500.000
+ 14 -0.7000 0.0000 2.3000 -6.7000 58.383 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.7386 43.7546 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.6514 5.0000 11.7000 470.5590 67.6780 495.4290 479.9590 500.000
+ 15 -0.7000 0.0000 2.3000 -6.6000 59.152 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.1973 44.0404 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.6514 5.0000 11.6000 471.3240 58.0280 503.7080 481.3320 500.000
+ 16 -0.7000 0.0000 2.3000 -6.5000 58.691 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.6564 44.3260 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6514 5.0000 11.5000 470.2850 56.6150 496.3390 480.2970 500.000
+ 17 -0.7000 0.0000 2.3000 -6.4000 58.653 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1159 44.6116 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0590 1.6514 5.0000 11.4000 471.2260 56.2800 501.4210 480.8470 500.000
+ 18 -0.7000 0.0000 2.3000 -6.3000 58.749 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5758 44.8972 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6514 5.0000 11.3000 470.6610 56.0110 501.7070 481.3320 500.000
+ 19 -0.7000 0.0000 2.3000 -6.2000 58.611 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.0359 45.1827 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6514 5.0000 11.2000 470.8100 55.6020 497.8380 480.2300 500.000
+ 20 -0.7000 0.0000 2.3000 -6.1000 58.790 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.4964 45.4682 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6514 5.0000 11.1000 471.0990 55.5920 504.0840 481.5070 500.000
+ 21 -0.7000 0.0000 2.3000 -6.0000 58.662 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.9570 45.7538 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6514 5.0000 11.0000 470.2780 56.6140 494.4210 479.8510 500.000
+ 22 -0.7000 0.0000 2.3000 -5.9000 58.902 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.4179 46.0394 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6514 5.0000 10.9000 471.2390 66.1120 503.3160 481.2790 500.000
+ 23 -0.7000 0.0000 2.3000 -5.8000 58.444 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.8788 46.3251 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6514 5.0000 10.8000 470.3320 59.1480 498.1140 480.7290 500.000
+ 24 -0.7000 0.0000 2.3000 -5.7000 58.821 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.3398 46.6109 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6514 5.0000 10.7000 471.1470 56.7250 500.1570 480.6170 500.000
+ 25 -0.7000 0.0000 2.3000 -5.6000 58.409 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.8009 46.8968 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6514 5.0000 10.6000 470.9770 56.4510 503.1310 481.4860 500.000
+ 26 -0.7000 0.0000 2.3000 -5.5000 58.598 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.2619 47.1830 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6514 5.0000 10.5000 470.6190 55.8860 495.8250 479.8890 500.000
+ 27 -0.7000 0.0000 2.3000 -5.4000 58.257 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.7228 47.4693 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.6514 5.0000 10.4000 471.2490 55.9130 503.9410 481.4050 500.000
+ 28 -0.7000 0.0000 2.3000 -5.3000 58.537 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.1837 47.7558 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6514 5.0000 10.3000 470.1260 55.5510 495.4100 480.1070 500.000
+ 29 -0.7000 0.0000 2.3000 -5.2000 58.740 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6443 48.0426 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6514 5.0000 10.2000 471.1350 55.5110 502.1930 480.9730 500.000
+ 30 -0.7000 0.0000 2.3000 -5.1000 58.941 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1048 48.3297 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6514 5.0000 10.1000 470.3390 57.9640 500.2640 481.2460 500.000
+ 31 -0.7000 0.0000 2.3000 -5.0000 58.273 81.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5650 48.6171 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6514 5.0000 10.0000 470.9000 66.7850 498.8320 480.4700 500.000
+ 32 -0.7000 0.0000 2.3000 -4.9000 58.531 105.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0248 48.9048 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6514 5.0000 9.9000 471.0880 58.6570 503.6610 481.4930 500.000
+ 33 -0.7000 0.0000 2.3000 -4.8000 58.933 84.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4843 49.1929 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.6514 5.0000 9.8000 470.5240 56.6300 494.8860 479.8370 500.000
+ 34 -0.7000 0.0000 2.3000 -4.7000 58.790 82.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9434 49.4814 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.6514 5.0000 9.7000 471.3150 56.4310 503.5460 481.2680 500.000
+ 35 -0.7000 0.0000 2.3000 -4.6000 58.814 85.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.4021 49.7703 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 1.6514 5.0000 9.6000 470.1930 55.9350 497.0400 480.4310 500.000
+ 36 -0.7000 0.0000 2.3000 -4.5000 58.443 58.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8602 50.0597 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6514 5.0000 9.5000 471.0900 55.7330 501.0560 480.7280 500.000
+ 37 -0.7000 0.0000 2.3000 -4.4000 58.707 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3178 50.3496 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6514 5.0000 9.4000 470.6100 55.6030 502.0730 481.3420 500.000
+ 38 -0.7000 0.0000 2.3000 -4.3000 58.439 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.7747 50.6400 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4634 1.6514 5.0000 9.3000 470.6570 55.2280 497.4260 480.1260 500.000
+ 39 -0.7000 0.0000 2.3000 -4.2000 58.471 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2310 50.9310 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6514 5.0000 9.2000 471.0610 62.5590 504.0490 481.5120 500.000
+ 40 -0.7000 0.0000 2.3000 -4.1000 58.701 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.6866 51.2226 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6514 5.0000 9.1000 470.3000 67.5840 494.7710 479.8890 500.000
+ 41 -0.7000 0.0000 2.3000 -4.0000 58.639 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.1414 51.5148 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6514 5.0000 9.0000 471.2880 57.1750 502.7960 481.0620 500.000
+ 42 -0.7000 0.0000 2.3000 -3.9000 58.763 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.5955 51.8076 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6514 5.0000 8.9000 470.3560 56.5080 498.9650 480.8680 500.000
+ 43 -0.7000 0.0000 2.3000 -3.8000 58.670 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0486 52.1012 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.6514 5.0000 8.8000 471.0220 56.1060 499.9870 480.4990 500.000
+ 44 -0.7000 0.0000 2.3000 -3.7000 58.788 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5008 52.3954 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6514 5.0000 8.7000 470.8490 55.9460 503.2400 481.4420 500.000
+ 45 -0.7000 0.0000 2.3000 -3.6000 58.718 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9520 52.6904 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6514 5.0000 8.6000 470.5250 55.4610 496.0130 479.8590 500.000
+ 46 -0.7000 0.0000 2.3000 -3.5000 58.690 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.4022 52.9863 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0757 1.6514 5.0000 8.5000 471.1210 55.4430 504.1460 481.4070 500.000
+# Sum of Counts = 1343
+# Center of Mass = -5.205063+/-0.202804
+# Full Width Half-Maximum = 2.051014+/-0.076919
+# 4:39:16 AM 10/27/2011 scan completed.
+
+4:39:16 AM 10/27/2011 Executing "scan h -0.6 k 0 l 2.4 e -8.5 -4.5 0.1 preset mcu 1.0"
+
+
+# scan = 148
+# date = 10/27/2011
+# time = 4:39:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.6 k 0 l 2.4 e -8.5 -4.5 0.1 preset mcu 1.0
+# builtin_command = scan h -0.6 k 0 l 2.4 e -8.5 -4.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.6000 0.0000 2.4000 -8.5000 58.543 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.1226 36.1899 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5900 5.0000 13.5000 470.2180 61.3230 499.7670 481.0600 500.000
+ 2 -0.6000 0.0000 2.4000 -8.4000 58.740 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.5331 36.4899 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 1.5900 5.0000 13.4000 470.9320 68.4850 499.4470 480.4940 500.000
+ 3 -0.6000 0.0000 2.4000 -8.3000 58.616 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.9456 36.7889 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.5900 5.0000 13.3000 470.9670 57.2230 503.4040 481.4320 500.000
+ 4 -0.6000 0.0000 2.4000 -8.2000 58.294 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.3599 37.0870 -2.7386 0.5000 0.0000 0.0000 158.2222 -43.5551 1.5900 5.0000 13.2000 470.5770 56.1450 495.5390 479.7800 500.000
+ 5 -0.6000 0.0000 2.4000 -8.1000 58.414 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.7760 37.3842 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7295 1.5900 5.0000 13.1000 471.2380 55.8950 504.0310 481.3300 500.000
+ 6 -0.6000 0.0000 2.4000 -8.0000 58.560 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.1938 37.6806 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5900 5.0000 13.0000 470.1060 55.2480 495.1330 479.9440 500.000
+ 7 -0.6000 0.0000 2.4000 -7.9000 58.219 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.6133 37.9762 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5900 5.0000 12.9000 471.1110 55.0840 502.5140 480.9290 500.000
+ 8 -0.6000 0.0000 2.4000 -7.8000 58.754 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.0344 38.2711 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.5900 5.0000 12.8000 470.2240 54.8150 499.7430 481.0080 500.000
+ 9 -0.6000 0.0000 2.4000 -7.7000 58.880 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.4570 38.5652 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5900 5.0000 12.7000 470.7710 55.6150 499.3940 480.4300 500.000
+ 10 -0.6000 0.0000 2.4000 -7.6000 58.532 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.8810 38.8586 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5900 5.0000 12.6000 470.8240 65.0190 503.4000 481.5120 500.000
+ 11 -0.6000 0.0000 2.4000 -7.5000 58.875 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.3064 39.1514 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.5900 5.0000 12.5000 470.4340 57.9130 495.0970 479.8090 500.000
+ 12 -0.6000 0.0000 2.4000 -7.4000 58.573 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.7331 39.4435 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5900 5.0000 12.4000 471.2480 55.8240 503.6720 481.2290 500.000
+ 13 -0.6000 0.0000 2.4000 -7.3000 58.545 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.1610 39.7351 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2053 1.5900 5.0000 12.3000 470.1270 55.3160 496.5070 480.2940 500.000
+ 14 -0.6000 0.0000 2.4000 -7.2000 58.991 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.5902 40.0261 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5900 5.0000 12.2000 471.0630 55.2090 501.5630 480.7450 500.000
+ 15 -0.6000 0.0000 2.4000 -7.1000 58.754 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.0204 40.3166 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5900 5.0000 12.1000 470.4600 55.0090 501.6520 481.2090 500.000
+ 16 -0.6000 0.0000 2.4000 -7.0000 58.392 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.4516 40.6066 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5900 5.0000 12.0000 470.6610 54.6870 498.0950 480.1430 500.000
+ 17 -0.6000 0.0000 2.4000 -6.9000 58.690 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.8839 40.8961 -2.7386 0.5000 0.0000 0.0000 156.9990 -46.0016 1.5900 5.0000 11.9000 470.8950 54.7600 504.0310 481.4570 500.000
+ 18 -0.6000 0.0000 2.4000 -6.8000 58.853 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.3170 41.1852 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5900 5.0000 11.8000 470.2030 59.3110 494.6260 479.8040 500.000
+ 19 -0.6000 0.0000 2.4000 -6.7000 58.647 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.7511 41.4740 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5900 5.0000 11.7000 471.1430 67.2960 503.4260 481.2550 500.000
+ 20 -0.6000 0.0000 2.4000 -6.6000 58.400 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.1859 41.7623 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5900 5.0000 11.6000 470.1760 56.3450 497.0970 480.4110 500.000
+ 21 -0.6000 0.0000 2.4000 -6.5000 58.548 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.6215 42.0504 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5900 5.0000 11.5000 471.0970 55.5770 501.0700 480.6890 500.000
+ 22 -0.6000 0.0000 2.4000 -6.4000 58.443 32.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.0578 42.3381 -2.7386 0.5000 0.0000 0.0000 156.4705 -47.0589 1.5900 5.0000 11.4000 470.6370 55.3570 502.1790 481.2790 500.000
+ 23 -0.6000 0.0000 2.4000 -6.3000 58.465 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.4947 42.6256 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.5900 5.0000 11.3000 470.6540 55.0160 497.3760 480.0500 500.000
+ 24 -0.6000 0.0000 2.4000 -6.2000 58.585 52.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9322 42.9128 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5900 5.0000 11.2000 471.0340 54.9170 504.1010 481.4350 500.000
+ 25 -0.6000 0.0000 2.4000 -6.1000 58.615 55.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3702 43.1998 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5900 5.0000 11.1000 470.1150 54.4610 494.4450 479.7800 500.000
+ 26 -0.6000 0.0000 2.4000 -6.0000 58.207 62.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8087 43.4866 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5900 5.0000 11.0000 471.0680 54.4630 503.2210 481.1010 500.000
+ 27 -0.6000 0.0000 2.4000 -5.9000 58.572 54.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2476 43.7733 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5900 5.0000 10.9000 470.0530 61.7420 498.0570 480.6650 500.000
+ 28 -0.6000 0.0000 2.4000 -5.8000 58.459 56.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6868 44.0598 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 1.5900 5.0000 10.8000 470.9730 66.0000 500.1890 480.5640 500.000
+ 29 -0.6000 0.0000 2.4000 -5.7000 59.192 39.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1263 44.3463 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5900 5.0000 10.7000 470.8840 56.1270 503.0270 481.3950 500.000
+ 30 -0.6000 0.0000 2.4000 -5.6000 58.566 41.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5661 44.6327 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5900 5.0000 10.6000 470.6100 55.3200 495.9170 479.8740 500.000
+ 31 -0.6000 0.0000 2.4000 -5.5000 58.554 38.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0061 44.9190 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5900 5.0000 10.5000 471.2300 55.2510 504.1170 481.4320 500.000
+ 32 -0.6000 0.0000 2.4000 -5.4000 58.551 36.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4462 45.2054 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5900 5.0000 10.4000 470.1080 54.7520 494.9270 479.9660 500.000
+ 33 -0.6000 0.0000 2.4000 -5.3000 58.647 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.8864 45.4917 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5900 5.0000 10.3000 471.1250 54.6200 502.5680 480.9920 500.000
+ 34 -0.6000 0.0000 2.4000 -5.2000 58.385 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.3266 45.7781 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5900 5.0000 10.2000 470.2170 54.3620 499.6280 481.0110 500.000
+ 35 -0.6000 0.0000 2.4000 -5.1000 58.769 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.7669 46.0646 -2.7386 0.5000 0.0000 0.0000 154.9040 -50.1919 1.5900 5.0000 10.1000 470.8180 57.2790 499.4980 480.4800 500.000
+ 36 -0.6000 0.0000 2.4000 -5.0000 58.944 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.2070 46.3511 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5900 5.0000 10.0000 470.8570 66.1300 503.3260 481.5180 500.000
+ 37 -0.6000 0.0000 2.4000 -4.9000 58.737 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.6470 46.6378 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.5900 5.0000 9.9000 470.4760 57.0750 495.1780 479.7740 500.000
+ 38 -0.6000 0.0000 2.4000 -4.8000 58.936 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.0869 46.9247 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 1.5900 5.0000 9.8000 471.2790 55.8320 503.7420 481.2190 500.000
+ 39 -0.6000 0.0000 2.4000 -4.7000 58.686 4.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.5265 47.2118 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 1.5900 5.0000 9.7000 470.1490 55.3270 496.3540 480.2810 500.000
+ 40 -0.6000 0.0000 2.4000 -4.6000 58.540 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.9658 47.4990 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5758 1.5900 5.0000 9.6000 471.1060 55.1420 501.5320 480.7690 500.000
+ 41 -0.6000 0.0000 2.4000 -4.5000 58.557 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4048 47.7866 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.5900 5.0000 9.5000 470.4920 54.9700 501.5020 481.2470 500.000
+# Sum of Counts = 905
+# Center of Mass = -6.190276+/-0.292560
+# Full Width Half-Maximum = 1.812485+/-0.098225
+# 5:21:13 AM 10/27/2011 scan completed.
+
+5:21:13 AM 10/27/2011 Executing "scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 1.0"
+
+
+# scan = 149
+# date = 10/27/2011
+# time = 5:21:13 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -9.5000 58.403 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.9023 31.2626 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.5445 5.0000 14.5000 470.2130 54.3500 494.3530 479.7460 500.000
+ 2 -0.5000 0.0000 2.5000 -9.4000 58.161 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.2558 31.5846 -2.7386 0.5000 0.0000 0.0000 159.1938 -41.6125 1.5445 5.0000 14.4000 471.1160 54.9790 503.7230 481.2090 500.000
+ 3 -0.5000 0.0000 2.5000 -9.3000 58.652 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -54.6129 31.9048 -2.7386 0.5000 0.0000 0.0000 159.1178 -41.7645 1.5446 5.0000 14.3000 470.0190 64.3380 496.4440 480.3290 500.000
+ 4 -0.5000 0.0000 2.5000 -9.2000 58.402 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.9736 32.2231 -2.7386 0.5000 0.0000 0.0000 159.0409 -41.9182 1.5445 5.0000 14.2000 471.1090 59.4010 501.4280 480.7090 500.000
+ 5 -0.5000 0.0000 2.5000 -9.1000 58.337 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.3377 32.5398 -2.7386 0.5000 0.0000 0.0000 158.9632 -42.0737 1.5445 5.0000 14.1000 470.6080 56.0020 501.5810 481.2410 500.000
+ 6 -0.5000 0.0000 2.5000 -9.0000 58.664 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.7049 32.8549 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.5445 5.0000 14.0000 470.8580 55.3610 498.3410 480.2430 500.000
+ 7 -0.5000 0.0000 2.5000 -8.9000 58.621 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.0753 33.1684 -2.7386 0.5000 0.0000 0.0000 158.8051 -42.3898 1.5445 5.0000 13.9000 471.0560 55.3040 503.9680 481.5100 500.000
+ 8 -0.5000 0.0000 2.5000 -8.8000 58.736 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.4487 33.4805 -2.7386 0.5000 0.0000 0.0000 158.7247 -42.5505 1.5445 5.0000 13.8000 470.3720 54.7710 494.7420 479.7460 500.000
+ 9 -0.5000 0.0000 2.5000 -8.7000 58.304 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.8249 33.7911 -2.7386 0.5000 0.0000 0.0000 158.6434 -42.7131 1.5445 5.0000 13.7000 471.1770 54.7670 504.0980 481.3380 500.000
+ 10 -0.5000 0.0000 2.5000 -8.6000 58.851 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.2039 34.1003 -2.7386 0.5000 0.0000 0.0000 158.5612 -42.8776 1.5445 5.0000 13.6000 469.9930 54.2770 495.2090 479.9960 500.000
+ 11 -0.5000 0.0000 2.5000 -8.5000 58.403 17.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5856 34.4082 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5445 5.0000 13.5000 471.0780 58.9940 502.4270 481.0170 500.000
+ 12 -0.5000 0.0000 2.5000 -8.4000 58.633 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9698 34.7148 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 1.5446 5.0000 13.4000 470.2990 66.9360 499.8650 481.1250 500.000
+ 13 -0.5000 0.0000 2.5000 -8.3000 58.461 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.3564 35.0202 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.5445 5.0000 13.3000 470.9760 56.4820 499.4830 480.4630 500.000
+ 14 -0.5000 0.0000 2.5000 -8.2000 58.427 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.7454 35.3244 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 1.5445 5.0000 13.2000 470.9640 55.8910 503.4800 481.4650 500.000
+ 15 -0.5000 0.0000 2.5000 -8.1000 58.616 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.1366 35.6274 -2.7386 0.5000 0.0000 0.0000 158.1350 -43.7295 1.5445 5.0000 13.1000 470.5870 55.3110 495.9640 479.8440 500.000
+ 16 -0.5000 0.0000 2.5000 -8.0000 58.542 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 471.1870 55.2410 504.2510 481.4350 500.000
+ 17 -0.5000 0.0000 2.5000 -7.9000 58.561 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.9255 36.2304 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5445 5.0000 12.9000 470.1100 54.7210 494.5180 479.8350 500.000
+ 18 -0.5000 0.0000 2.5000 -7.8000 58.277 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.3230 36.5303 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.5445 5.0000 12.8000 471.1450 54.6950 503.1430 481.0630 500.000
+ 19 -0.5000 0.0000 2.5000 -7.7000 58.952 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.7223 36.8293 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5446 5.0000 12.7000 470.0550 54.3280 497.9360 480.6730 500.000
+ 20 -0.5000 0.0000 2.5000 -7.6000 58.241 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1234 37.1274 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5445 5.0000 12.6000 470.9550 63.7140 500.5040 480.7250 500.000
+ 21 -0.5000 0.0000 2.5000 -7.5000 58.831 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5263 37.4246 -2.7386 0.5000 0.0000 0.0000 157.5888 -44.8223 1.5445 5.0000 12.5000 470.7480 60.7690 502.6160 481.3480 500.000
+ 22 -0.5000 0.0000 2.5000 -7.4000 58.592 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9308 37.7210 -2.7386 0.5000 0.0000 0.0000 157.4937 -45.0126 1.5445 5.0000 12.4000 470.7300 55.7470 496.8150 479.9820 500.000
+ 23 -0.5000 0.0000 2.5000 -7.3000 58.451 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.3370 38.0166 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.5445 5.0000 12.3000 471.2220 55.6290 504.2080 481.4260 500.000
+ 24 -0.5000 0.0000 2.5000 -7.2000 58.494 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.7446 38.3114 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 1.5445 5.0000 12.2000 470.2300 55.0160 494.3890 479.7990 500.000
+ 25 -0.5000 0.0000 2.5000 -7.1000 58.274 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1536 38.6055 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5445 5.0000 12.1000 471.2000 54.9880 503.3340 481.1380 500.000
+ 26 -0.5000 0.0000 2.5000 -7.0000 58.829 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5640 38.8989 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5445 5.0000 12.0000 470.0640 54.6300 497.3810 480.4820 500.000
+ 27 -0.5000 0.0000 2.5000 -6.9000 58.763 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9756 39.1917 -2.7386 0.5000 0.0000 0.0000 156.9990 -46.0016 1.5445 5.0000 11.9000 470.9520 54.3750 500.9480 480.6920 500.000
+ 28 -0.5000 0.0000 2.5000 -6.8000 58.446 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3885 39.4839 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5445 5.0000 11.8000 470.5150 58.3170 502.2100 481.3760 500.000
+ 29 -0.5000 0.0000 2.5000 -6.7000 58.680 33.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8025 39.7754 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.5445 5.0000 11.7000 470.6620 66.3720 497.2310 480.1900 500.000
+ 30 -0.5000 0.0000 2.5000 -6.6000 58.846 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2176 40.0665 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5445 5.0000 11.6000 471.1780 56.6350 503.9080 481.3990 500.000
+ 31 -0.5000 0.0000 2.5000 -6.5000 58.460 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6337 40.3570 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5445 5.0000 11.5000 470.2610 55.4850 494.7200 479.8130 500.000
+ 32 -0.5000 0.0000 2.5000 -6.4000 58.538 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.0507 40.6470 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5445 5.0000 11.4000 471.2250 55.2670 502.9440 481.0210 500.000
+ 33 -0.5000 0.0000 2.5000 -6.3000 58.515 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4686 40.9366 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 1.5445 5.0000 11.3000 470.2260 55.1330 498.7120 480.8050 500.000
+ 34 -0.5000 0.0000 2.5000 -6.2000 58.400 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.8873 41.2258 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5445 5.0000 11.2000 470.9520 54.8370 500.2320 480.4890 500.000
+ 35 -0.5000 0.0000 2.5000 -6.1000 58.528 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.3068 41.5146 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5445 5.0000 11.1000 470.6920 54.7840 502.9520 481.3800 500.000
+ 36 -0.5000 0.0000 2.5000 -6.0000 58.820 19.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.7270 41.8030 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5445 5.0000 11.0000 470.5300 54.3630 496.7610 479.9320 500.000
+ 37 -0.5000 0.0000 2.5000 -5.9000 58.436 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.1478 42.0911 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5445 5.0000 10.9000 471.0650 63.3510 504.1470 481.4620 500.000
+ 38 -0.5000 0.0000 2.5000 -5.8000 58.481 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5691 42.3790 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.5445 5.0000 10.8000 470.2160 62.3940 494.5040 479.7920 500.000
+ 39 -0.5000 0.0000 2.5000 -5.7000 58.480 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.9910 42.6665 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5445 5.0000 10.7000 471.3050 56.1100 503.2350 481.1150 500.000
+ 40 -0.5000 0.0000 2.5000 -5.6000 58.667 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.4133 42.9538 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5445 5.0000 10.6000 470.2310 55.5980 497.6760 480.5950 500.000
+ 41 -0.5000 0.0000 2.5000 -5.5000 58.612 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.8360 43.2409 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5445 5.0000 10.5000 471.0990 55.3230 500.9090 480.6740 500.000
+ 42 -0.5000 0.0000 2.5000 -5.4000 58.717 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2590 43.5278 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5445 5.0000 10.4000 470.6460 55.2330 502.2990 481.3370 500.000
+ 43 -0.5000 0.0000 2.5000 -5.3000 58.896 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6822 43.8146 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5445 5.0000 10.3000 470.6860 54.8940 497.5850 480.1160 500.000
+ 44 -0.5000 0.0000 2.5000 -5.2000 58.481 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1058 44.1013 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5445 5.0000 10.2000 471.0340 55.0970 504.1910 481.4620 500.000
+ 45 -0.5000 0.0000 2.5000 -5.1000 58.750 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5294 44.3878 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5445 5.0000 10.1000 470.1930 57.6160 494.3880 479.6140 500.000
+ 46 -0.5000 0.0000 2.5000 -5.0000 58.678 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9531 44.6744 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.5445 5.0000 10.0000 471.1920 66.6700 503.5210 481.0750 500.000
+# Sum of Counts = 764
+# Center of Mass = -7.071204+/-0.364094
+# Full Width Half-Maximum = 2.258511+/-0.122232
+# 6:08:12 AM 10/27/2011 scan completed.
+
+6:08:12 AM 10/27/2011 Executing "scantitle "Optic dispersion L (1.5 0 1.5)""
+
+Setting the scantitle to:
+Optic dispersion L (1.5 0 1.5)
+
+
+6:08:12 AM 10/27/2011 Executing "scan h 1.5 k 0 l 1.5 e -15 -10.5 0.25 preset mcu 4.0"
+
+
+# scan = 150
+# date = 10/27/2011
+# time = 6:08:12 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -15 -10.5 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15 -10.5 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion L (1.5 0 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.0000 233.487 66.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.5784 53.6998 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0840 2.5201 5.0000 20.0000 471.3180 56.4330 503.3060 480.8260 500.000
+ 2 1.5000 0.0000 1.5000 -14.7500 233.838 54.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 68.4663 54.3260 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.5201 5.0000 19.7500 470.9620 56.1220 499.7880 480.2200 500.000
+ 3 1.5000 0.0000 1.5000 -14.5000 233.113 59.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 69.3528 54.9536 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.5201 5.0000 19.5000 470.4270 60.9520 494.6860 479.5570 500.000
+ 4 1.5000 0.0000 1.5000 -14.2500 233.569 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 70.2383 55.5828 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.5201 5.0000 19.2500 470.4870 56.8060 499.9930 480.8780 500.000
+ 5 1.5000 0.0000 1.5000 -14.0000 234.225 62.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.1228 56.2137 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.5201 5.0000 19.0000 471.2590 69.4060 503.8370 481.2600 500.000
+ 6 1.5000 0.0000 1.5000 -13.7500 233.390 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.0066 56.8466 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.5201 5.0000 18.7500 471.3880 56.8570 502.0920 480.5650 500.000
+ 7 1.5000 0.0000 1.5000 -13.5000 234.717 84.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 72.8899 57.4818 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.5201 5.0000 18.5000 470.8860 63.9440 497.5270 479.9090 500.000
+ 8 1.5000 0.0000 1.5000 -13.2500 233.979 130.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 73.7729 58.1194 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.5201 5.0000 18.2500 470.3150 56.7400 495.3960 479.7580 500.000
+ 9 1.5000 0.0000 1.5000 -13.0000 234.018 124.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 74.6558 58.7596 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.5201 5.0000 18.0000 470.7320 56.4120 502.4060 480.8610 500.000
+ 10 1.5000 0.0000 1.5000 -12.7499 234.054 126.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 75.5389 59.4026 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.5201 5.0000 17.7499 471.3930 56.6200 503.6550 480.7290 500.000
+ 11 1.5000 0.0000 1.5000 -12.5000 234.589 129.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 76.4223 60.0489 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.5201 5.0000 17.5000 470.8840 55.2160 499.4170 479.9370 500.000
+ 12 1.5000 0.0000 1.5000 -12.2500 234.919 135.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 77.3063 60.6984 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.5201 5.0000 17.2500 470.2250 56.0280 494.7380 479.5080 500.000
+ 13 1.5000 0.0000 1.5000 -12.0000 234.508 124.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 78.1910 61.3516 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.5201 5.0000 17.0000 470.3680 54.9890 501.7670 480.8420 500.000
+ 14 1.5000 0.0000 1.5000 -11.7500 234.336 103.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.0767 62.0086 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.5201 5.0000 16.7500 471.0830 56.5160 504.1340 480.9000 500.000
+ 15 1.5000 0.0000 1.5000 -11.5000 234.496 103.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 79.9636 62.6697 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.5201 5.0000 16.5000 470.8600 54.9330 501.7770 480.2610 500.000
+ 16 1.5000 0.0000 1.5000 -11.2500 234.685 101.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.8520 63.3352 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.5201 5.0000 16.2500 470.3550 68.3860 496.4880 479.5360 500.000
+ 17 1.5000 0.0000 1.5000 -11.0000 234.151 68.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.7419 64.0054 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.5201 5.0000 16.0000 469.8820 55.2660 497.2240 480.0740 500.000
+ 18 1.5000 0.0000 1.5000 -10.7500 234.563 65.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.6338 64.6804 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.5201 5.0000 15.7500 470.7060 65.3420 503.6600 481.0500 500.000
+ 19 1.5000 0.0000 1.5000 -10.5000 233.393 57.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.5277 65.3608 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.5201 5.0000 15.5000 471.0510 56.7210 502.1450 480.2730 500.000
+# Sum of Counts = 1686
+# Center of Mass = -12.609423+/-0.435262
+# Full Width Half-Maximum = 2.384923+/-0.186867
+# 7:23:53 AM 10/27/2011 scan completed.
+
+7:23:54 AM 10/27/2011 Executing "scantitle "Optic dispersion X (1.5 0 0)""
+
+Setting the scantitle to:
+Optic dispersion X (1.5 0 0)
+
+
+7:23:54 AM 10/27/2011 Executing "scan h 1.5 k 0 l 0 e -15 -9 0.25 preset mcu 4.0"
+
+
+# scan = 151
+# date = 10/27/2011
+# time = 7:23:54 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -15 -9 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 0 e -15 -9 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion X (1.5 0 0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -15.0000 234.758 46.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.6616 48.9067 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0840 2.3918 5.0000 20.0000 470.0640 65.0610 494.6510 479.5340 500.000
+ 2 1.5000 0.0000 0.0000 -14.7500 235.222 52.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.6103 49.5446 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.3918 5.0000 19.7500 470.7260 56.5750 502.3330 480.8220 500.000
+ 3 1.5000 0.0000 0.0000 -14.5000 234.586 38.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.5560 50.1826 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3918 5.0000 19.5000 471.1390 59.8140 504.0260 480.8640 500.000
+ 4 1.5000 0.0000 0.0000 -14.2500 234.203 43.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.4990 50.8210 -2.7386 0.5000 0.0000 0.0000 162.1081 -35.7836 2.3918 5.0000 19.2500 471.0040 56.4900 499.9360 479.8430 500.000
+ 5 1.5000 0.0000 0.0000 -14.0000 235.137 29.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.4396 51.4598 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3918 5.0000 19.0000 470.3070 55.4870 494.7990 479.1720 500.000
+ 6 1.5000 0.0000 0.0000 -13.7499 234.698 32.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.3780 52.0994 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2740 2.3918 5.0000 18.7499 470.2840 56.5890 498.6170 480.3760 500.000
+ 7 1.5000 0.0000 0.0000 -13.5000 234.982 47.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.3145 52.7400 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3918 5.0000 18.5000 470.9270 55.8950 503.9050 480.9470 500.000
+ 8 1.5000 0.0000 0.0000 -13.2500 233.939 41.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.2494 53.3817 -2.7386 0.5000 0.0000 0.0000 161.6074 -36.7850 2.3918 5.0000 18.2500 471.2890 56.9370 502.8750 480.5660 500.000
+ 9 1.5000 0.0000 0.0000 -13.0000 234.656 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1828 54.0250 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3918 5.0000 18.0000 470.7920 55.7750 498.6610 479.8170 500.000
+ 10 1.5000 0.0000 0.0000 -12.7500 234.045 62.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.1152 54.6699 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3918 5.0000 17.7500 470.2490 57.0010 494.8770 479.5500 500.000
+ 11 1.5000 0.0000 0.0000 -12.5000 234.776 90.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.0466 55.3168 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3918 5.0000 17.5000 470.5030 56.0940 501.3850 480.8560 500.000
+ 12 1.5000 0.0000 0.0000 -12.2500 234.801 67.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9774 55.9658 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8757 2.3918 5.0000 17.2500 471.2920 57.8510 504.0920 480.9070 500.000
+ 13 1.5000 0.0000 0.0000 -12.0000 234.726 93.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.9078 56.6172 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3918 5.0000 17.0000 471.1360 56.0830 501.6200 480.2660 500.000
+ 14 1.5000 0.0000 0.0000 -11.7500 234.068 91.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.8381 57.2712 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3918 5.0000 16.7500 470.6160 61.0910 496.0620 479.3660 500.000
+ 15 1.5000 0.0000 0.0000 -11.5000 234.182 92.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7685 57.9282 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3918 5.0000 16.5000 470.0970 56.0280 495.9770 479.9100 500.000
+ 16 1.5000 0.0000 0.0000 -11.2500 234.173 70.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.6992 58.5884 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 2.3918 5.0000 16.2500 470.7630 68.1880 502.7280 480.9310 500.000
+ 17 1.5000 0.0000 0.0000 -11.0000 235.088 73.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6306 59.2520 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3918 5.0000 16.0000 471.2500 56.1740 504.1810 480.8020 500.000
+ 18 1.5000 0.0000 0.0000 -10.7500 235.127 71.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.5628 59.9193 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 2.3918 5.0000 15.7500 471.0430 67.3770 500.9870 480.3360 500.000
+ 19 1.5000 0.0000 0.0000 -10.5000 234.332 62.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4960 60.5907 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 2.3918 5.0000 15.5000 470.4890 56.0550 495.3390 479.2670 500.000
+ 20 1.5000 0.0000 0.0000 -10.2500 235.148 53.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.4306 61.2663 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 2.3918 5.0000 15.2500 470.0040 64.4100 496.7390 480.1600 500.000
+ 21 1.5000 0.0000 0.0000 -10.0000 234.804 48.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3668 61.9466 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 2.3918 5.0000 15.0000 470.9190 56.3860 503.6690 481.0030 500.000
+ 22 1.5000 0.0000 0.0000 -9.7500 234.394 45.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.3049 62.6317 -2.7386 0.5000 0.0000 0.0000 159.4531 -41.0932 2.3918 5.0000 14.7500 471.1210 63.8140 503.6400 480.8510 500.000
+ 23 1.5000 0.0000 0.0000 -9.5000 233.644 45.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2451 63.3221 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 2.3918 5.0000 14.5000 470.8960 56.3020 499.3910 479.8990 500.000
+ 24 1.5000 0.0000 0.0000 -9.2500 234.774 44.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.1877 64.0182 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 2.3918 5.0000 14.2500 470.1860 60.0740 494.5030 479.5340 500.000
+ 25 1.5000 0.0000 0.0000 -9.0000 233.464 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1329 64.7201 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 2.3918 5.0000 14.0000 470.2670 56.4360 499.1810 480.6230 500.000
+# Sum of Counts = 1434
+# Center of Mass = -11.872557+/-0.445453
+# Full Width Half-Maximum = 3.243763+/-0.180068
+# 9:02:57 AM 10/27/2011 scan completed.
+
+9:02:58 AM 10/27/2011 Executing "scantitle "Optic dispersion T (0 0 4.5)""
+
+Setting the scantitle to:
+Optic dispersion T (0 0 4.5)
+
+
+9:02:58 AM 10/27/2011 Executing "scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0"
+
+
+# scan = 152
+# date = 10/27/2011
+# time = 9:02:58 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.5000 235.166 96.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7834 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 470.5180 65.2520 496.6050 479.7670 500.000
+ 2 0.0000 0.0000 4.5000 -14.2500 235.242 94.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 470.0300 56.0610 495.7150 479.8700 500.000
+ 3 0.0000 0.0000 4.5000 -14.0000 235.250 109.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 470.5320 63.5970 502.5840 481.0400 500.000
+ 4 0.0000 0.0000 4.5000 -13.7500 234.557 128.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 471.2020 56.2320 504.1880 480.9330 500.000
+ 5 0.0000 0.0000 4.5000 -13.5000 236.030 174.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3812 5.0000 18.5000 470.9100 61.3950 501.3810 480.5100 500.000
+ 6 0.0000 0.0000 4.5000 -13.2500 235.371 143.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 470.5030 56.1910 495.9700 479.6040 500.000
+ 7 0.0000 0.0000 4.5000 -12.9999 235.133 175.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0489 2.3812 5.0000 17.9999 469.9010 62.1230 496.1500 480.0550 500.000
+ 8 0.0000 0.0000 4.5000 -12.7500 234.859 139.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 470.8090 56.5000 503.2200 481.1610 500.000
+ 9 0.0000 0.0000 4.5000 -12.5000 235.344 148.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 2.3812 5.0000 17.5000 471.1150 60.4970 504.2900 481.1490 500.000
+ 10 0.0000 0.0000 4.5000 -12.2500 235.127 104.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.3812 5.0000 17.2500 471.1390 56.5550 501.6890 480.4940 500.000
+ 11 0.0000 0.0000 4.5000 -12.0000 235.541 104.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 470.5940 59.4230 497.2750 479.7880 500.000
+ 12 0.0000 0.0000 4.5000 -11.7500 234.068 73.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 470.1700 56.5950 494.8730 479.6740 500.000
+ 13 0.0000 0.0000 4.5000 -11.5000 234.778 68.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 470.7570 60.3190 502.2230 480.9960 500.000
+ 14 0.0000 0.0000 4.5000 -11.2500 235.294 41.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.3151 58.1951 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0696 2.3812 5.0000 16.2500 471.3170 57.1000 504.3200 481.0110 500.000
+ 15 0.0000 0.0000 4.5000 -11.0000 234.626 51.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.2503 58.8584 -2.7386 0.5000 0.0000 0.0000 160.3068 -39.3861 2.3812 5.0000 16.0000 471.3010 58.4000 501.6630 480.4280 500.000
+# Sum of Counts = 1647
+# Center of Mass = -12.958399+/-0.452135
+# Full Width Half-Maximum = 1.842805+/-0.213608
+# 10:05:07 AM 10/27/2011 scan completed.
+
+10:05:07 AM 10/27/2011 Executing "scantitle "Optic dispersion T (0 0 4.5)""
+
+Setting the scantitle to:
+Optic dispersion T (0 0 4.5)
+
+
+10:05:07 AM 10/27/2011 Executing "scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0"
+
+
+# scan = 153
+# date = 10/27/2011
+# time = 10:05:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -14.5000 234.602 107.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7833 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 470.3790 55.5260 494.5270 479.4220 500.000
+ 2 0.0000 0.0000 4.5000 -14.2500 235.155 95.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -6.9404 50.4228 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3812 5.0000 19.2500 470.3530 57.4840 499.4210 480.5760 500.000
+ 3 0.0000 0.0000 4.5000 -14.0000 235.502 109.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.9946 51.0626 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3812 5.0000 19.0000 470.9820 55.8440 504.0010 480.9070 500.000
+ 4 0.0000 0.0000 4.5000 -13.7500 234.812 114.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -5.0510 51.7031 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3812 5.0000 18.7500 471.0790 58.2860 502.2590 480.3960 500.000
+ 5 0.0000 0.0000 4.5000 -13.4999 235.014 127.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -4.1095 52.3444 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5269 2.3812 5.0000 18.4999 470.5140 55.4010 497.5520 479.5920 500.000
+ 6 0.0000 0.0000 4.5000 -13.2500 234.771 155.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -3.1697 52.9869 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3812 5.0000 18.2500 469.9860 56.8240 496.3910 479.8660 500.000
+ 7 0.0000 0.0000 4.5000 -13.0000 234.899 147.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -2.2315 53.6307 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 2.3812 5.0000 18.0000 470.6490 55.6110 503.4470 480.9860 500.000
+ 8 0.0000 0.0000 4.5000 -12.7500 234.458 128.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -1.2945 54.2761 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 2.3812 5.0000 17.7500 471.0310 56.9710 502.5030 480.4660 500.000
+ 9 0.0000 0.0000 4.5000 -12.4999 233.880 120.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -0.3585 54.9232 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 2.3812 5.0000 17.4999 470.3430 55.7280 496.5400 479.5320 500.000
+ 10 0.0000 0.0000 4.5000 -12.2500 234.038 131.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 0.5767 55.5725 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 2.3812 5.0000 17.2500 470.0690 57.1380 498.1990 480.2850 500.000
+ 11 0.0000 0.0000 4.5000 -12.0000 234.449 100.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 1.5114 56.2240 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 2.3812 5.0000 17.0000 470.8360 55.9320 504.0300 481.0020 500.000
+ 12 0.0000 0.0000 4.5000 -11.7500 234.403 68.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 2.4459 56.8782 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 2.3812 5.0000 16.7500 471.0690 57.6090 502.4490 480.3920 500.000
+ 13 0.0000 0.0000 4.5000 -11.5000 234.873 81.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 3.3804 57.5351 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 2.3812 5.0000 16.5000 470.5360 55.8510 497.6930 479.6250 500.000
+ 14 0.0000 0.0000 4.5000 -11.2500 235.092 53.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 4.3151 58.1951 -2.7386 0.5000 0.0000 0.0000 160.4651 -39.0695 2.3812 5.0000 16.2500 470.0240 61.7650 496.4460 479.8230 500.000
+ 15 0.0000 0.0000 4.5000 -11.0000 235.187 47.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 5.2503 58.8584 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 2.3812 5.0000 16.0000 470.9060 56.4840 503.6410 480.9170 500.000
+# Sum of Counts = 1582
+# Center of Mass = -12.932032+/-0.460438
+# Full Width Half-Maximum = 1.912723+/-0.223366
+# 11:04:35 AM 10/27/2011 scan completed.
+
+11:36:35 AM 10/27/2011 Executing "scantitle "Dispersion G-L transverse (-102) zone""
+
+Setting the scantitle to:
+Dispersion G-L transverse (-102) zone
+
+
+11:38:02 AM 10/27/2011 Executing "scan h -0.9 k 0 l 2.1 e -3.0 -2.0 0.05 preset mcu 1.0"
+
+
+# scan = 154
+# date = 10/27/2011
+# time = 11:38:02 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -3.0 -2.0 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.0 -2.0 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -3.0000 59.215 74.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6840 60.7852 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.8150 5.0000 8.0000 471.2050 59.3730 503.7260 480.8440 500.000
+ 2 -0.9000 0.0000 2.1000 -2.9500 59.541 94.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4242 60.9448 -2.7386 0.5000 0.0000 0.0000 151.4413 -57.1174 1.8150 5.0000 7.9500 470.1120 57.6140 496.1220 479.7800 500.000
+ 3 -0.9000 0.0000 2.1000 -2.9000 59.465 102.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1642 61.1049 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.8150 5.0000 7.9000 471.0550 57.3420 501.5600 480.2940 500.000
+ 4 -0.9000 0.0000 2.1000 -2.8500 59.336 119.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.9036 61.2653 -2.7386 0.5000 0.0000 0.0000 151.2431 -57.5139 1.8150 5.0000 7.8500 470.5290 57.1360 501.8270 480.8410 500.000
+ 5 -0.9000 0.0000 2.1000 -2.8000 59.334 155.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6426 61.4263 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.8150 5.0000 7.8000 470.6020 56.7490 497.5270 479.6070 500.000
+ 6 -0.9000 0.0000 2.1000 -2.7500 59.282 141.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.3813 61.5877 -2.7386 0.5000 0.0000 0.0000 151.0407 -57.9186 1.8150 5.0000 7.7500 470.9730 56.6850 504.1420 480.9210 500.000
+ 7 -0.9000 0.0000 2.1000 -2.7000 59.141 162.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.1194 61.7495 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.8150 5.0000 7.7000 470.0060 58.1080 494.3880 479.3530 500.000
+ 8 -0.9000 0.0000 2.1000 -2.6500 59.039 205.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.8571 61.9119 -2.7386 0.5000 0.0000 0.0000 150.8339 -58.3322 1.8150 5.0000 7.6500 471.0400 67.6630 503.1180 480.7380 500.000
+ 9 -0.9000 0.0000 2.1000 -2.6000 59.291 190.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.5944 62.0747 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5423 1.8150 5.0000 7.6000 470.1250 60.5690 498.3920 480.3240 500.000
+ 10 -0.9000 0.0000 2.1000 -2.5500 59.419 177.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3312 62.2381 -2.7386 0.5000 0.0000 0.0000 150.6226 -58.7548 1.8150 5.0000 7.5500 470.9370 58.0430 500.2970 480.0920 500.000
+ 11 -0.9000 0.0000 2.1000 -2.5000 59.161 184.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0674 62.4019 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.8150 5.0000 7.5000 470.7550 57.7750 503.0710 481.0150 500.000
+ 12 -0.9000 0.0000 2.1000 -2.4500 59.485 165.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8033 62.5663 -2.7386 0.5000 0.0000 0.0000 150.4066 -59.1867 1.8150 5.0000 7.4500 470.4810 56.9550 496.3250 479.4420 500.000
+ 13 -0.9000 0.0000 2.1000 -2.4000 59.305 161.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5386 62.7312 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.8150 5.0000 7.4000 471.0810 56.8510 504.3880 481.0100 500.000
+ 14 -0.9000 0.0000 2.1000 -2.3500 59.198 150.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2734 62.8966 -2.7386 0.5000 0.0000 0.0000 150.1858 -59.6284 1.8150 5.0000 7.3500 469.9800 56.4750 494.5330 479.4550 500.000
+ 15 -0.9000 0.0000 2.1000 -2.3000 59.196 148.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.0077 63.0626 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.8150 5.0000 7.3000 471.0330 56.7930 503.3200 480.7180 500.000
+ 16 -0.9000 0.0000 2.1000 -2.2500 59.315 172.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7415 63.2291 -2.7386 0.5000 0.0000 0.0000 149.9599 -60.0802 1.8150 5.0000 7.2500 470.0300 66.6840 498.4840 480.4950 500.000
+ 17 -0.9000 0.0000 2.1000 -2.2000 58.827 204.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4748 63.3962 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.8150 5.0000 7.2000 470.8710 62.7550 500.3200 480.1240 500.000
+ 18 -0.9000 0.0000 2.1000 -2.1500 59.329 243.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.2075 63.5638 -2.7386 0.5000 0.0000 0.0000 149.7287 -60.5426 1.8150 5.0000 7.1500 470.7150 57.9920 502.9250 480.9910 500.000
+ 19 -0.9000 0.0000 2.1000 -2.1000 59.095 321.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.9397 63.7320 -2.7386 0.5000 0.0000 0.0000 149.6111 -60.7778 1.8150 5.0000 7.1000 470.5260 57.6020 496.6110 479.4780 500.000
+ 20 -0.9000 0.0000 2.1000 -2.0500 58.975 345.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6713 63.9008 -2.7386 0.5000 0.0000 0.0000 149.4921 -61.0158 1.8150 5.0000 7.0500 471.0780 57.7060 504.4190 481.0210 500.000
+ 21 -0.9000 0.0000 2.1000 -2.0000 59.128 416.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4024 64.0703 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8150 5.0000 7.0000 470.0430 57.0630 494.4000 479.4020 500.000
+# Sum of Counts = 3928
+# Center of Mass = -2.392350+/-0.054195
+# Full Width Half-Maximum = 0.600854+/-0.027247
+# 11:59:53 AM 10/27/2011 scan completed.
+
+12:03:25 PM 10/27/2011 Executing "scantitle "Dispersion G-T longitudinal (003) zone""
+
+Setting the scantitle to:
+Dispersion G-T longitudinal (003) zone
+
+
+12:04:56 PM 10/27/2011 Executing "scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0"
+
+
+# scan = 155
+# date = 10/27/2011
+# time = 12:04:56 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# builtin_command = scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T longitudinal (003) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.4000 -2.5000 59.202 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 23.7495 61.7710 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.7991 5.0000 7.5000 471.1400 57.6580 503.1070 480.4090 500.000
+ 2 0.0000 0.0000 3.4000 -2.4000 59.050 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.2814 62.0979 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4064 1.7991 5.0000 7.4000 470.1390 57.1200 498.8410 480.2400 500.000
+ 3 0.0000 0.0000 3.4000 -2.3000 59.177 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 24.8154 62.4269 -2.7386 0.5000 0.0000 0.0000 150.0734 -59.8530 1.7991 5.0000 7.3000 470.8360 56.9350 500.0680 479.7630 500.000
+ 4 0.0000 0.0000 3.4000 -2.2000 59.381 7.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.3513 62.7580 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.7991 5.0000 7.2000 470.6830 56.8080 503.2620 480.7480 500.000
+ 5 0.0000 0.0000 3.4000 -2.1000 59.080 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 25.8894 63.0913 -2.7386 0.5000 0.0000 0.0000 149.6110 -60.7778 1.7991 5.0000 7.1000 470.2870 56.7840 495.7760 479.2270 500.000
+ 6 0.0000 0.0000 3.4000 -2.0000 58.808 10.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.4298 63.4268 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.7991 5.0000 7.0000 471.0030 67.0520 504.0510 480.8340 500.000
+ 7 0.0000 0.0000 3.4000 -1.9000 58.985 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 26.9723 63.7648 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.7991 5.0000 6.9000 469.9700 62.8260 495.3500 479.4830 500.000
+ 8 0.0000 0.0000 3.4000 -1.8000 58.681 18.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 27.5173 64.1051 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.7991 5.0000 6.8000 471.0910 57.8600 502.3430 480.1340 500.000
+ 9 0.0000 0.0000 3.4000 -1.7000 59.135 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.0646 64.4480 -2.7386 0.5000 0.0000 0.0000 148.6174 -62.7649 1.7991 5.0000 6.7000 470.2860 57.3870 500.3240 480.5750 500.000
+ 10 0.0000 0.0000 3.4000 -1.6000 58.895 27.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 28.6145 64.7936 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.7991 5.0000 6.6000 470.7100 56.9230 499.1180 479.6450 500.000
+ 11 0.0000 0.0000 3.4000 -1.5000 58.814 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.1670 65.1418 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.7991 5.0000 6.5000 470.7750 56.8400 503.8530 480.7110 500.000
+ 12 0.0000 0.0000 3.4000 -1.4000 58.937 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.7222 65.4928 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.7991 5.0000 6.4000 470.1960 56.2640 495.2040 479.0160 500.000
+ 13 0.0000 0.0000 3.4000 -1.3000 59.162 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.2802 65.8468 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.7991 5.0000 6.3000 470.9410 56.2940 504.1730 480.6310 500.000
+ 14 0.0000 0.0000 3.4000 -1.2000 58.835 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.8411 66.2039 -2.7386 0.5000 0.0000 0.0000 147.2250 -65.5497 1.7991 5.0000 6.2000 469.8070 65.8740 495.7550 479.6530 500.000
+ 15 0.0000 0.0000 3.4000 -1.1000 59.050 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.4049 66.5640 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.7991 5.0000 6.1000 470.8930 61.3290 501.7430 480.0980 500.000
+ 16 0.0000 0.0000 3.4000 -1.0000 59.243 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 31.9718 66.9275 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.7991 5.0000 6.0000 470.3650 57.8150 501.5470 480.5840 500.000
+ 17 0.0000 0.0000 3.4000 -0.9000 58.995 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.5420 67.2944 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.7991 5.0000 5.9000 470.5140 57.3400 497.7200 479.3570 500.000
+ 18 0.0000 0.0000 3.4000 -0.8000 59.080 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.1154 67.6647 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.7991 5.0000 5.8000 470.8580 56.9120 504.1330 480.7620 500.000
+ 19 0.0000 0.0000 3.4000 -0.7000 58.893 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 33.6923 68.0388 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.7991 5.0000 5.7000 469.8990 56.6440 494.4360 479.2130 500.000
+ 20 0.0000 0.0000 3.4000 -0.6000 58.835 6.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.2727 68.4167 -2.7386 0.5000 0.0000 0.0000 145.2775 -69.4450 1.7991 5.0000 5.6000 470.8490 56.7270 503.4130 480.4920 500.000
+ 21 0.0000 0.0000 3.4000 -0.5000 58.504 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.8567 68.7985 -2.7386 0.5000 0.0000 0.0000 144.9174 -70.1652 1.7991 5.0000 5.5000 469.7420 56.3760 497.8400 480.1070 500.000
+# Sum of Counts = 287
+# Center of Mass = -1.579791+/-0.134982
+# Full Width Half-Maximum = 0.975110+/-0.074635
+# 12:26:58 PM 10/27/2011 scan completed.
+
+12:32:58 PM 10/27/2011 Executing "method temp set_setpoint d 383.000000"
+ Derived from "set_temp 383"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+1:12:38 PM 10/27/2011 Executing "scantitle "TO at G (101)""
+
+Setting the scantitle to:
+TO at G (101)
+
+
+1:12:38 PM 10/27/2011 Executing "scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0"
+
+
+# scan = 156
+# date = 10/27/2011
+# time = 1:12:38 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+# builtin_command = scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (101)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -13.5000 235.523 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 29.0653 23.4158 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 1.6801 5.0000 18.5000 369.8910 33.3420 385.9630 383.9830 383.000
+ 2 1.0000 0.0000 1.0000 -13.2500 235.535 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 30.9098 24.3806 -2.7386 0.5000 0.0000 0.0000 161.6074 -36.7850 1.6801 5.0000 18.2500 365.9940 34.0640 383.7670 379.7400 383.000
+ 3 1.0000 0.0000 1.0000 -13.0000 235.227 22.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 32.7001 25.3177 -2.7386 0.5000 0.0000 0.0000 161.4756 -37.0488 1.6801 5.0000 18.0000 361.8950 32.3000 383.4830 376.1200 383.000
+ 4 1.0000 0.0000 1.0000 -12.7500 235.805 25.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 34.4424 26.2302 -2.7386 0.5000 0.0000 0.0000 161.3408 -37.3184 1.6801 5.0000 17.7500 359.1240 33.5030 385.5790 373.1030 383.000
+ 5 1.0000 0.0000 1.0000 -12.5000 235.527 22.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5939 1.6801 5.0000 17.5000 356.1100 31.5190 388.1580 370.5400 383.000
+ 6 1.0000 0.0000 1.0000 -12.2500 234.988 34.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0622 -37.8756 1.6801 5.0000 17.2500 354.3810 32.6790 389.1840 368.4380 383.000
+ 7 1.0000 0.0000 1.0000 -12.0000 235.063 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.6801 5.0000 17.0000 352.0760 31.1770 387.1680 366.3410 383.000
+ 8 1.0000 0.0000 1.0000 -11.7500 236.013 30.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 350.5880 32.5730 383.4140 364.2470 383.000
+ 9 1.0000 0.0000 1.0000 -11.5000 235.264 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 348.3010 31.1150 380.4090 362.2260 383.000
+ 10 1.0000 0.0000 1.0000 -11.2500 235.943 22.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1316 31.3166 -2.7386 0.5000 0.0000 0.0000 160.4650 -39.0695 1.6801 5.0000 16.2500 348.0120 32.1000 388.6830 362.0950 383.000
+ 11 1.0000 0.0000 1.0000 -11.0000 235.833 39.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6488 32.1152 -2.7386 0.5000 0.0000 0.0000 160.3070 -39.3861 1.6801 5.0000 16.0000 346.7800 30.9850 385.8590 360.9400 383.000
+ 12 1.0000 0.0000 1.0000 -10.7500 235.044 53.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1446 32.9031 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.6801 5.0000 15.7500 345.8050 30.7360 387.9100 359.8020 383.000
+ 13 1.0000 0.0000 1.0000 -10.5000 236.023 51.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6208 33.6813 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 1.6801 5.0000 15.5000 344.7830 39.3170 382.0580 358.5470 383.000
+ 14 1.0000 0.0000 1.0000 -10.2500 235.331 50.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.0791 34.4507 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.6801 5.0000 15.2500 344.0400 30.1100 386.3890 358.1090 383.000
+ 15 1.0000 0.0000 1.0000 -10.0000 235.928 64.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6330 -40.7340 1.6801 5.0000 15.0000 344.0070 36.1070 386.5100 358.0470 383.000
+ 16 1.0000 0.0000 1.0000 -9.7500 235.627 92.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0932 1.6801 5.0000 14.7500 343.1260 29.8870 379.8530 356.4020 383.000
+ 17 1.0000 0.0000 1.0000 -9.5000 235.539 92.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 343.2460 37.6950 388.4050 357.4690 383.000
+ 18 1.0000 0.0000 1.0000 -9.2500 236.243 122.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.6801 5.0000 14.2500 342.8540 30.2480 382.8440 356.3770 383.000
+ 19 1.0000 0.0000 1.0000 -9.0000 235.921 128.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8845 -42.2308 1.6801 5.0000 14.0000 342.1890 36.8540 386.4570 356.4830 383.000
+ 20 1.0000 0.0000 1.0000 -8.7500 235.707 128.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 342.5530 30.0580 385.5060 356.2080 383.000
+ 21 1.0000 0.0000 1.0000 -8.5000 235.651 115.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 341.4420 37.2530 381.2010 355.1750 383.000
+ 22 1.0000 0.0000 1.0000 -8.2500 235.518 60.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.2642 40.3766 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.6801 5.0000 13.2500 342.2230 29.9370 387.5800 356.0660 383.000
+ 23 1.0000 0.0000 1.0000 -8.0000 235.097 42.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6190 41.0978 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6801 5.0000 13.0000 341.2250 34.4870 380.4160 354.9320 383.000
+ 24 1.0000 0.0000 1.0000 -7.7500 235.272 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.9672 41.8164 -2.7386 0.5000 0.0000 0.0000 157.8214 -44.3571 1.6801 5.0000 12.7500 341.7690 29.6130 388.3480 355.8030 383.000
+ 25 1.0000 0.0000 1.0000 -7.5000 234.943 35.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.3099 42.5328 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6801 5.0000 12.5000 341.3070 33.6490 382.6540 355.1460 383.000
+ 26 1.0000 0.0000 1.0000 -7.2500 236.194 22.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.6477 43.2476 -2.7386 0.5000 0.0000 0.0000 157.3487 -45.3025 1.6801 5.0000 12.2500 341.2600 29.5540 386.8580 355.3210 383.000
+ 27 1.0000 0.0000 1.0000 -7.0000 236.219 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.9814 43.9612 -2.7386 0.5000 0.0000 0.0000 157.1005 -45.7985 1.6801 5.0000 12.0000 341.3030 33.1780 384.6730 355.4000 383.000
+# Sum of Counts = 1428
+# Center of Mass = -9.758403+/-0.367552
+# Full Width Half-Maximum = 3.138225+/-0.150291
+# 3:02:09 PM 10/27/2011 scan completed.
+
+3:02:09 PM 10/27/2011 Executing "scantitle "LA at X (1.5 0 1.5)""
+
+Setting the scantitle to:
+LA at X (1.5 0 1.5)
+
+
+3:02:10 PM 10/27/2011 Executing "scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0"
+
+
+# scan = 157
+# date = 10/27/2011
+# time = 3:02:10 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (1.5 0 1.5)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.5000 59.068 15.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 341.1760 29.3330 387.8820 355.7230 383.000
+ 2 1.5000 0.0000 1.5000 -8.4000 58.837 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1527 71.3308 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2124 2.5201 5.0000 13.4000 341.2960 29.0310 384.9960 355.3760 383.000
+ 3 1.5000 0.0000 1.5000 -8.3000 58.668 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5225 71.6287 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.5201 5.0000 13.3000 340.4460 28.5820 380.3900 354.1710 383.000
+ 4 1.5000 0.0000 1.5000 -8.2000 58.902 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 341.1480 27.9430 388.1380 355.5320 383.000
+ 5 1.5000 0.0000 1.5000 -8.1000 58.785 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2643 72.2290 -2.7386 0.5000 0.0000 0.0000 158.1351 -43.7295 2.5201 5.0000 13.1000 340.8740 30.1090 382.9070 354.9330 383.000
+ 6 1.5000 0.0000 1.5000 -8.0000 58.794 8.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 340.6470 39.0030 384.7030 355.1060 383.000
+ 7 1.5000 0.0000 1.5000 -7.9000 58.742 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0094 72.8353 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0849 2.5201 5.0000 12.9000 341.6350 31.2770 387.2000 355.5310 383.000
+ 8 1.5000 0.0000 1.5000 -7.8000 58.836 20.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 340.9530 29.6110 380.9220 354.4380 383.000
+ 9 1.5000 0.0000 1.5000 -7.7000 58.988 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7577 73.4480 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5201 5.0000 12.7000 340.9630 29.1590 387.4640 355.3970 383.000
+ 10 1.5000 0.0000 1.5000 -7.6000 58.809 13.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 341.1810 29.1490 385.3300 355.3260 383.000
+ 11 1.5000 0.0000 1.5000 -7.5000 58.612 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5096 74.0674 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5201 5.0000 12.5000 340.3430 28.9360 379.9710 354.2860 383.000
+ 12 1.5000 0.0000 1.5000 -7.4000 58.970 21.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 341.0020 28.1970 388.2270 355.7010 383.000
+ 13 1.5000 0.0000 1.5000 -7.3000 58.780 35.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2652 74.6938 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2053 2.5201 5.0000 12.3000 340.7780 28.8000 383.3120 355.0920 383.000
+ 14 1.5000 0.0000 1.5000 -7.2000 58.817 30.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 340.4050 38.6470 384.0880 355.0110 383.000
+ 15 1.5000 0.0000 1.5000 -7.1000 59.103 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0246 75.3275 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5201 5.0000 12.1000 341.5750 31.9130 387.7310 355.6000 383.000
+ 16 1.5000 0.0000 1.5000 -7.0000 58.686 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 340.9600 29.9430 381.4150 354.5090 383.000
+ 17 1.5000 0.0000 1.5000 -6.9000 58.674 57.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7882 75.9689 -2.7386 0.5000 0.0000 0.0000 156.9990 -46.0016 2.5201 5.0000 11.9000 340.8190 29.5460 386.9650 355.2300 383.000
+ 18 1.5000 0.0000 1.5000 -6.8000 58.624 49.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 341.1400 29.2630 385.8540 355.3430 383.000
+ 19 1.5000 0.0000 1.5000 -6.7000 58.365 47.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5560 76.6182 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 2.5201 5.0000 11.7000 340.3220 28.9870 379.7580 354.1570 383.000
+ 20 1.5000 0.0000 1.5000 -6.6000 58.548 37.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 340.8700 28.2990 388.1960 355.5620 383.000
+ 21 1.5000 0.0000 1.5000 -6.5000 58.613 50.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3283 77.2760 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5201 5.0000 11.5000 340.7620 27.8260 383.9220 354.9840 383.000
+ 22 1.5000 0.0000 1.5000 -6.4000 58.504 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 340.1010 35.6020 382.4000 354.6460 383.000
+ 23 1.5000 0.0000 1.5000 -6.3000 58.832 45.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1053 77.9426 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5201 5.0000 11.3000 341.3140 32.6910 387.6820 355.5700 383.000
+ 24 1.5000 0.0000 1.5000 -6.2000 58.776 29.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2484 -47.5028 2.5201 5.0000 11.2000 340.8680 29.8390 381.7800 354.5550 383.000
+ 25 1.5000 0.0000 1.5000 -6.1000 58.793 22.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8872 78.6184 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5201 5.0000 11.1000 340.6160 29.3330 386.4380 355.0310 383.000
+ 26 1.5000 0.0000 1.5000 -6.0000 59.265 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 341.0010 28.3110 386.0950 355.2670 383.000
+ 27 1.5000 0.0000 1.5000 -5.9000 58.686 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6744 79.3040 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.5201 5.0000 10.9000 340.1550 27.8280 379.8270 353.9340 383.000
+ 28 1.5000 0.0000 1.5000 -5.8000 58.669 9.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 340.6180 27.8850 388.1210 355.2500 383.000
+ 29 1.5000 0.0000 1.5000 -5.7000 58.696 14.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4670 79.9997 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5201 5.0000 10.7000 340.5780 27.6700 384.0330 354.8670 383.000
+ 30 1.5000 0.0000 1.5000 -5.6000 58.748 5.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 339.8790 33.7170 382.2300 354.3880 383.000
+ 31 1.5000 0.0000 1.5000 -5.5000 58.714 11.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2653 80.7062 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5201 5.0000 10.5000 341.0830 35.8280 387.6410 355.3740 383.000
+# Sum of Counts = 764
+# Center of Mass = -6.885733+/-0.353162
+# Full Width Half-Maximum = 1.359232+/-0.119280
+# 3:34:11 PM 10/27/2011 scan completed.
+
+3:34:11 PM 10/27/2011 Executing "scantitle "LA at L (1.5 0 0)""
+
+Setting the scantitle to:
+LA at L (1.5 0 0)
+
+
+3:34:11 PM 10/27/2011 Executing "scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 0.5"
+
+
+# scan = 158
+# date = 10/27/2011
+# time = 3:34:11 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 0.5
+# builtin_command = scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5 0 0)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 29.361 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.8832 77.1477 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.3918 5.0000 10.0000 340.6470 30.0620 381.0400 354.2380 383.000
+ 2 1.5000 0.0000 0.0000 -4.7500 29.334 4.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.9269 78.0318 -2.7386 0.5000 0.0000 0.0000 154.4257 -51.1486 2.3918 5.0000 9.7500 340.2250 29.5740 381.9990 354.1020 383.000
+ 3 1.5000 0.0000 0.0000 -4.5000 29.497 14.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9806 78.9338 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3918 5.0000 9.5000 340.6920 28.9810 387.6500 355.0070 383.000
+ 4 1.5000 0.0000 0.0000 -4.2500 29.194 40.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.0448 79.8550 -2.7386 0.5000 0.0000 0.0000 153.6921 -52.6158 2.3918 5.0000 9.2500 340.9480 28.7500 387.5250 355.2530 383.000
+ 5 1.5000 0.0000 0.0000 -4.0000 29.667 101.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.1205 80.7969 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3918 5.0000 9.0000 340.7760 28.6710 384.6190 354.8890 383.000
+ 6 1.5000 0.0000 0.0000 -3.7500 29.223 172.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.2082 81.7608 -2.7386 0.5000 0.0000 0.0000 152.8912 -54.2176 2.3918 5.0000 8.7500 340.3250 28.0690 381.1090 354.1800 383.000
+ 7 1.5000 0.0000 0.0000 -3.5000 29.256 125.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 125.3089 82.7486 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.3918 5.0000 8.5000 339.9200 27.9040 381.8630 354.2130 383.000
+ 8 1.5000 0.0000 0.0000 -3.2500 29.383 42.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 126.4234 83.7620 -2.7386 0.5000 0.0000 0.0000 152.0120 -55.9760 2.3918 5.0000 8.2500 340.4160 27.8280 387.6140 355.0930 383.000
+ 9 1.5000 0.0000 0.0000 -3.0000 29.499 19.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 127.5528 84.8030 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 2.3918 5.0000 8.0000 340.7110 27.7350 387.5780 355.3540 383.000
+ 10 1.5000 0.0000 0.0000 -2.7500 29.696 12.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 128.6980 85.8741 -2.7386 0.5000 0.0000 0.0000 151.0407 -57.9186 2.3918 5.0000 7.7500 340.5590 27.6370 384.6510 354.9270 383.000
+ 11 1.5000 0.0000 0.0000 -2.5000 29.411 6.000 45796.000 0.500 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 129.8602 86.9777 -2.7386 0.5000 0.0000 0.0000 150.5150 -58.9695 2.3918 5.0000 7.5000 340.1220 27.5340 381.1180 354.2330 383.000
+# Sum of Counts = 539
+# Center of Mass = -3.710575+/-0.226666
+# Full Width Half-Maximum = 0.789423+/-0.122406
+# 3:40:16 PM 10/27/2011 scan completed.
+
+3:40:16 PM 10/27/2011 Executing "scantitle "Dispersion G-L transverse (-102) zone""
+
+Setting the scantitle to:
+Dispersion G-L transverse (-102) zone
+
+
+3:40:16 PM 10/27/2011 Executing "scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0"
+
+
+# scan = 159
+# date = 10/27/2011
+# time = 3:40:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -3.0000 58.945 100.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6840 60.7852 -2.7386 0.5000 0.0000 0.0000 151.5388 -56.9223 1.8150 5.0000 8.0000 340.9700 36.0840 386.3520 355.2470 383.000
+ 2 -0.9000 0.0000 2.1000 -2.9500 59.187 98.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.4242 60.9448 -2.7386 0.5000 0.0000 0.0000 151.4412 -57.1174 1.8150 5.0000 7.9500 340.3850 30.1480 380.0850 353.8360 383.000
+ 3 -0.9000 0.0000 2.1000 -2.9000 58.979 89.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1642 61.1049 -2.7386 0.5000 0.0000 0.0000 151.3427 -57.3146 1.8150 5.0000 7.9000 340.6960 29.3040 387.9690 355.0520 383.000
+ 4 -0.9000 0.0000 2.1000 -2.8500 58.914 130.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.9036 61.2653 -2.7386 0.5000 0.0000 0.0000 151.2431 -57.5138 1.8150 5.0000 7.8500 340.6770 28.4870 384.2800 354.7130 383.000
+ 5 -0.9000 0.0000 2.1000 -2.8000 58.945 131.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.6426 61.4263 -2.7386 0.5000 0.0000 0.0000 151.1424 -57.7152 1.8150 5.0000 7.8000 339.8300 27.8490 381.6620 354.0500 383.000
+ 6 -0.9000 0.0000 2.1000 -2.7500 58.862 148.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.3813 61.5877 -2.7386 0.5000 0.0000 0.0000 151.0407 -57.9186 1.8150 5.0000 7.7500 340.6110 27.7990 387.8030 355.2180 383.000
+ 7 -0.9000 0.0000 2.1000 -2.7000 59.293 144.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.1194 61.7495 -2.7386 0.5000 0.0000 0.0000 150.9378 -58.1243 1.8150 5.0000 7.7000 340.1710 27.5280 382.0990 354.3740 383.000
+ 8 -0.9000 0.0000 2.1000 -2.6500 59.073 152.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.8571 61.9119 -2.7386 0.5000 0.0000 0.0000 150.8339 -58.3322 1.8150 5.0000 7.6500 339.9620 31.7170 386.0320 354.9020 383.000
+ 9 -0.9000 0.0000 2.1000 -2.6000 58.889 135.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.5944 62.0747 -2.7386 0.5000 0.0000 0.0000 150.7289 -58.5424 1.8150 5.0000 7.6000 340.8030 39.3250 386.1280 355.2020 383.000
+ 10 -0.9000 0.0000 2.1000 -2.5500 58.971 126.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.3312 62.2381 -2.7386 0.5000 0.0000 0.0000 150.6226 -58.7548 1.8150 5.0000 7.5500 340.2400 29.9090 379.9200 353.8950 383.000
+ 11 -0.9000 0.0000 2.1000 -2.5000 57.172 125.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.0674 62.4019 -2.7386 0.5000 0.0000 0.0000 150.5152 -58.9695 1.8150 5.0000 7.5000 340.6150 29.1660 388.0090 355.1710 383.000
+ 12 -0.9000 0.0000 2.1000 -2.4500 58.836 112.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.8033 62.5663 -2.7386 0.5000 0.0000 0.0000 150.4066 -59.1867 1.8150 5.0000 7.4500 340.0480 29.4630 382.3670 353.9160 383.000
+ 13 -0.9000 0.0000 2.1000 -2.4000 58.665 118.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.5386 62.7312 -2.7386 0.5000 0.0000 0.0000 150.2968 -59.4063 1.8150 5.0000 7.4000 340.7220 28.2660 387.5770 355.0140 383.000
+ 14 -0.9000 0.0000 2.1000 -2.3500 59.079 134.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.2734 62.8966 -2.7386 0.5000 0.0000 0.0000 150.1858 -59.6284 1.8150 5.0000 7.3500 340.1240 27.9340 381.7480 354.0330 383.000
+ 15 -0.9000 0.0000 2.1000 -2.3000 59.186 134.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.0077 63.0626 -2.7386 0.5000 0.0000 0.0000 150.0735 -59.8530 1.8150 5.0000 7.3000 339.9550 27.8360 386.4560 354.6580 383.000
+ 16 -0.9000 0.0000 2.1000 -2.2500 59.296 161.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.7415 63.2291 -2.7386 0.5000 0.0000 0.0000 149.9599 -60.0802 1.8150 5.0000 7.2500 340.3790 27.7170 385.8860 354.7730 383.000
+ 17 -0.9000 0.0000 2.1000 -2.2000 59.063 216.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.4748 63.3962 -2.7386 0.5000 0.0000 0.0000 149.8450 -60.3101 1.8150 5.0000 7.2000 339.5850 27.5310 379.7700 353.5200 383.000
+ 18 -0.9000 0.0000 2.1000 -2.1500 59.197 221.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -26.2075 63.5638 -2.7386 0.5000 0.0000 0.0000 149.7287 -60.5426 1.8150 5.0000 7.1500 340.2810 33.9590 387.9850 355.1120 383.000
+ 19 -0.9000 0.0000 2.1000 -2.1000 58.831 313.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.9397 63.7320 -2.7386 0.5000 0.0000 0.0000 149.6110 -60.7778 1.8150 5.0000 7.1000 340.5630 33.4470 383.3770 354.4190 383.000
+ 20 -0.9000 0.0000 2.1000 -2.0500 59.320 349.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.6713 63.9008 -2.7386 0.5000 0.0000 0.0000 149.4920 -61.0158 1.8150 5.0000 7.0500 340.0060 29.3320 383.5160 354.0380 383.000
+ 21 -0.9000 0.0000 2.1000 -2.0000 58.970 387.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.4024 64.0703 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8150 5.0000 7.0000 340.6420 28.6160 387.1530 354.9080 383.000
+ 22 -0.9000 0.0000 2.1000 -1.9500 58.938 381.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -25.1329 64.2403 -2.7386 0.5000 0.0000 0.0000 149.2498 -61.5005 1.8150 5.0000 6.9500 339.9730 27.7890 381.0490 353.7590 383.000
+ 23 -0.9000 0.0000 2.1000 -1.9000 59.296 448.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.8628 64.4110 -2.7386 0.5000 0.0000 0.0000 149.1264 -61.7472 1.8150 5.0000 6.9000 340.0240 27.6850 387.2620 354.6880 383.000
+ 24 -0.9000 0.0000 2.1000 -1.8500 59.089 415.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.5921 64.5822 -2.7386 0.5000 0.0000 0.0000 149.0014 -61.9970 1.8150 5.0000 6.8500 340.2830 27.5230 385.2440 354.4240 383.000
+ 25 -0.9000 0.0000 2.1000 -1.8000 58.901 474.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.3208 64.7542 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8150 5.0000 6.8000 339.4360 27.3980 380.0540 353.3030 383.000
+ 26 -0.9000 0.0000 2.1000 -1.7500 58.639 336.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -24.0489 64.9268 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.8150 5.0000 6.7500 340.2480 33.2530 387.9950 354.9550 383.000
+ 27 -0.9000 0.0000 2.1000 -1.7000 58.960 366.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.7764 65.1000 -2.7386 0.5000 0.0000 0.0000 148.6175 -62.7649 1.8150 5.0000 6.7000 340.4060 34.1620 382.8110 354.0740 383.000
+ 28 -0.9000 0.0000 2.1000 -1.6500 58.695 276.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.5032 65.2740 -2.7386 0.5000 0.0000 0.0000 148.4863 -63.0274 1.8150 5.0000 6.6500 340.0570 29.3290 384.7620 354.0770 383.000
+ 29 -0.9000 0.0000 2.1000 -1.6000 58.814 282.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -23.2294 65.4486 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8150 5.0000 6.6000 340.6070 28.5830 386.6900 354.6080 383.000
+ 30 -0.9000 0.0000 2.1000 -1.5500 59.270 296.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.9550 65.6240 -2.7386 0.5000 0.0000 0.0000 148.2187 -63.5624 1.8150 5.0000 6.5500 339.8510 27.7020 380.4980 353.3150 383.000
+ 31 -0.9000 0.0000 2.1000 -1.5000 58.996 304.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.6798 65.8000 -2.7386 0.5000 0.0000 0.0000 148.0824 -63.8352 1.8150 5.0000 6.5000 340.0730 27.6240 387.7180 354.5910 383.000
+ 32 -0.9000 0.0000 2.1000 -1.4500 59.055 287.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.4040 65.9768 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8150 5.0000 6.4500 340.1790 27.4680 384.6470 354.2910 383.000
+ 33 -0.9000 0.0000 2.1000 -1.4000 58.819 266.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -22.1275 66.1544 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8150 5.0000 6.4000 339.3450 27.4070 380.9260 353.4450 383.000
+ 34 -0.9000 0.0000 2.1000 -1.3500 58.619 246.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.8503 66.3327 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6753 1.8150 5.0000 6.3500 340.2230 32.8190 387.8170 354.8490 383.000
+ 35 -0.9000 0.0000 2.1000 -1.3000 58.983 213.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.5724 66.5118 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8150 5.0000 6.3000 340.2600 36.0240 382.1810 353.8700 383.000
+ 36 -0.9000 0.0000 2.1000 -1.2500 59.044 208.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.2938 66.6916 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.8150 5.0000 6.2500 340.1550 29.3540 385.9150 354.2910 383.000
+ 37 -0.9000 0.0000 2.1000 -1.2000 58.943 149.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -21.0144 66.8723 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8150 5.0000 6.2000 340.5510 28.1250 386.1940 354.5550 383.000
+ 38 -0.9000 0.0000 2.1000 -1.1500 58.931 103.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.7343 67.0538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8150 5.0000 6.1500 339.6840 27.6750 379.9580 353.2850 383.000
+ 39 -0.9000 0.0000 2.1000 -1.1000 58.866 80.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.4534 67.2361 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8150 5.0000 6.1000 340.1040 27.6710 387.9700 354.5320 383.000
+ 40 -0.9000 0.0000 2.1000 -1.0500 59.319 60.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -20.1717 67.4193 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4611 1.8150 5.0000 6.0500 340.0820 27.5180 384.0320 354.0930 383.000
+ 41 -0.9000 0.0000 2.1000 -1.0000 58.907 44.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.8892 67.6033 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8150 5.0000 6.0000 339.3350 27.4830 382.2330 353.6410 383.000
+ 42 -0.9000 0.0000 2.1000 -0.9500 58.817 24.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.6060 67.7882 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8150 5.0000 5.9500 340.2410 33.5700 387.4820 354.7020 383.000
+ 43 -0.9000 0.0000 2.1000 -0.9000 59.104 34.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.3219 67.9740 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8150 5.0000 5.9000 340.1710 35.3070 381.4620 353.6520 383.000
+ 44 -0.9000 0.0000 2.1000 -0.8500 58.810 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -19.0370 68.1608 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7383 1.8150 5.0000 5.8500 340.2760 29.4040 386.8860 354.2500 383.000
+ 45 -0.9000 0.0000 2.1000 -0.8000 58.920 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.7512 68.3484 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8150 5.0000 5.8000 340.5170 28.3680 385.5870 354.3070 383.000
+ 46 -0.9000 0.0000 2.1000 -0.7500 59.111 25.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.4646 68.5371 -2.7386 0.5000 0.0000 0.0000 145.7971 -68.4055 1.8150 5.0000 5.7500 339.5890 27.7390 379.8360 353.0400 383.000
+ 47 -0.9000 0.0000 2.1000 -0.7000 59.097 28.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -18.1772 68.7267 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8150 5.0000 5.7000 340.2140 27.6290 388.0420 354.5100 383.000
+ 48 -0.9000 0.0000 2.1000 -0.6500 59.028 26.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.8888 68.9172 -2.7386 0.5000 0.0000 0.0000 145.4534 -69.0931 1.8150 5.0000 5.6500 340.0000 27.4580 383.1920 353.8020 383.000
+ 49 -0.9000 0.0000 2.1000 -0.6000 59.394 23.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -17.5995 69.1088 -2.7386 0.5000 0.0000 0.0000 145.2774 -69.4449 1.8150 5.0000 5.6000 339.4490 27.3930 384.0200 353.8440 383.000
+# Sum of Counts = 8973
+# Center of Mass = -1.891575+/-0.028727
+# Full Width Half-Maximum = 0.997817+/-0.012462
+# 4:38:12 PM 10/27/2011 scan completed.
+
+4:38:13 PM 10/27/2011 Executing "scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0"
+
+
+# scan = 160
+# date = 10/27/2011
+# time = 4:38:13 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9227 0.0000 1.8440 -1.4107 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -27.6307 64.0616 -2.7386 0.5000 0.0000 0.0000 149.3428 -64.3313 1.7654 5.0000 6.4107 339.9710 38.8590 381.1870 353.9620 383.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 4:39:11 PM 10/27/2011 scan stopped!!
+
+Abort issued!!
+
+4:39:18 PM 10/27/2011 Executing "method temp set_setpoint d 400.000000"
+ Derived from "set_temp 400"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+4:52:03 PM 10/27/2011 Executing "method temp set_setpoint d 300.000000"
+ Derived from "set_temp 300"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+5:15:26 PM 10/27/2011 Executing "scantitle "TO at X (1.5,0,0), add data, T=300K""
+
+Setting the scantitle to:
+TO at X (1.5,0,0), add data, T=300K
+
+
+5:15:26 PM 10/27/2011 Executing "scan h 1.5 k 0 l 0 e -15.0 -13.0 0.25 preset mcu 4.0"
+
+
+# scan = 161
+# date = 10/27/2011
+# time = 5:15:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -15.0 -13.0 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 0 e -15.0 -13.0 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at X (1.5,0,0), add data, T=300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -15.0000 235.258 38.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 80.6616 48.9067 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0840 2.3918 5.0000 20.0000 319.6650 26.2510 300.5860 331.2430 300.000
+ 2 1.5000 0.0000 0.0000 -14.7500 235.963 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 81.6103 49.5446 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.3918 5.0000 19.7500 314.6080 43.4900 299.0850 326.5680 300.000
+ 3 1.5000 0.0000 0.0000 -14.5000 235.905 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 82.5560 50.1826 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3918 5.0000 19.5000 310.8720 25.9800 297.5720 322.4210 300.000
+ 4 1.5000 0.0000 0.0000 -14.2499 235.956 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 83.4990 50.8210 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.3918 5.0000 19.2499 307.0620 38.7810 296.3730 318.9400 300.000
+ 5 1.5000 0.0000 0.0000 -14.0000 235.983 24.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 84.4396 51.4598 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.3918 5.0000 19.0000 304.4490 25.7410 296.7070 315.7440 300.000
+ 6 1.5000 0.0000 0.0000 -13.7500 235.656 26.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 85.3780 52.0994 -2.7386 0.5000 0.0000 0.0000 161.8630 -36.2739 2.3918 5.0000 18.7500 301.2340 37.8330 299.4570 313.0150 300.000
+ 7 1.5000 0.0000 0.0000 -13.5000 236.511 20.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 86.3145 52.7400 -2.7386 0.5000 0.0000 0.0000 161.7366 -36.5268 2.3918 5.0000 18.5000 299.1190 24.9600 300.7250 310.4090 300.000
+ 8 1.5000 0.0000 0.0000 -13.2500 237.244 21.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 87.2494 53.3817 -2.7386 0.5000 0.0000 0.0000 161.6075 -36.7850 2.3918 5.0000 18.2500 296.3240 38.0580 304.3320 308.1330 300.000
+ 9 1.5000 0.0000 0.0000 -13.0000 235.732 51.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.1828 54.0250 -2.7386 0.5000 0.0000 0.0000 161.4755 -37.0488 2.3918 5.0000 18.0000 294.4210 23.8640 306.1650 305.7770 300.000
+# Sum of Counts = 267
+# Center of Mass = -14.003736+/-1.212788
+# Full Width Half-Maximum = 1.426711+/-0.937990
+# 5:52:05 PM 10/27/2011 scan completed.
+
+5:52:05 PM 10/27/2011 Executing "scantitle "Optic dispersion L (1.5 0 1.5), add data, 300K""
+
+Setting the scantitle to:
+Optic dispersion L (1.5 0 1.5), add data, 300K
+
+
+5:52:05 PM 10/27/2011 Executing "scan h 1.5 k 0 l 1.5 e -15 -14 0.25 preset mcu 4.0"
+
+
+# scan = 162
+# date = 10/27/2011
+# time = 5:52:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -15 -14 0.25 preset mcu 4.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15 -14 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion L (1.5 0 1.5), add data, 300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.0000 236.606 30.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 67.5784 53.6998 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0840 2.5201 5.0000 20.0000 292.0190 35.2420 310.7740 303.8160 300.000
+ 2 1.5000 0.0000 1.5000 -14.7500 237.233 36.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 68.4663 54.3260 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.5201 5.0000 19.7500 290.3840 23.4260 311.8980 301.7810 300.000
+ 3 1.5000 0.0000 1.5000 -14.5000 238.160 41.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 69.3528 54.9536 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.5201 5.0000 19.5000 288.2550 29.3430 312.3330 299.9420 300.000
+ 4 1.5000 0.0000 1.5000 -14.2500 236.231 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 70.2383 55.5828 -2.7386 0.5000 0.0000 0.0000 162.1082 -35.7836 2.5201 5.0000 19.2500 286.9970 23.1090 311.6130 298.1600 300.000
+ 5 1.5000 0.0000 1.5000 -14.0000 237.511 65.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 71.1228 56.2137 -2.7386 0.5000 0.0000 0.0000 161.9869 -36.0262 2.5201 5.0000 19.0000 284.9710 27.0860 310.3160 296.6840 300.000
+# Sum of Counts = 209
+# Center of Mass = -14.415072+/-1.410346
+# Full Width Half-Maximum = 0.716251+/-1.322657
+# 6:12:12 PM 10/27/2011 scan completed.
+
+6:12:13 PM 10/27/2011 Executing "scantitle "Optic dispersion T (0 0 4.5), add data, 300K""
+
+Setting the scantitle to:
+Optic dispersion T (0 0 4.5), add data, 300K
+
+
+6:12:13 PM 10/27/2011 Executing "scan h 0 k 0 l 4.5 e -16 -14.5 0.25 preset mcu 4.0"
+
+
+# scan = 163
+# date = 10/27/2011
+# time = 6:12:13 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 0 k 0 l 4.5 e -16 -14.5 0.25 preset mcu 4.0
+# builtin_command = scan h 0 k 0 l 4.5 e -16 -14.5 0.25 preset mcu 4.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Optic dispersion T (0 0 4.5), add data, 300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -16.0000 236.332 32.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -13.6506 45.9421 -2.7386 0.5000 0.0000 0.0000 162.8940 -34.2121 2.3812 5.0000 21.0000 283.4510 23.5030 301.8710 294.6750 300.000
+ 2 0.0000 0.0000 4.5000 -15.7500 237.173 33.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -12.6803 46.5841 -2.7386 0.5000 0.0000 0.0000 162.7879 -34.4240 2.3812 5.0000 20.7500 281.7770 39.6530 298.3830 293.2900 300.000
+ 3 0.0000 0.0000 4.5000 -15.5000 237.650 21.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -11.7145 47.2250 -2.7386 0.5000 0.0000 0.0000 162.6801 -34.6398 2.3812 5.0000 20.5000 280.7090 23.8120 297.2180 291.7840 300.000
+ 4 0.0000 0.0000 4.5000 -15.2500 237.082 37.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -10.7528 47.8652 -2.7386 0.5000 0.0000 0.0000 162.5701 -34.8598 2.3812 5.0000 20.2500 279.3030 34.3150 307.1420 291.0260 300.000
+ 5 0.0000 0.0000 4.5000 -14.9999 237.533 42.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -9.7948 48.5048 -2.7386 0.5000 0.0000 0.0000 162.4580 -35.0841 2.3812 5.0000 19.9999 278.7040 22.0430 311.2520 290.0500 300.000
+ 6 0.0000 0.0000 4.5000 -14.7500 237.349 61.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -8.8403 49.1441 -2.7386 0.5000 0.0000 0.0000 162.3437 -35.3126 2.3812 5.0000 19.7500 277.4140 26.6240 310.8640 289.2170 300.000
+ 7 0.0000 0.0000 4.5000 -14.5000 236.318 64.000 366372.000 4.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -7.8889 49.7834 -2.7386 0.5000 0.0000 0.0000 162.2271 -35.5458 2.3812 5.0000 19.5000 276.9880 22.9080 306.7670 288.0600 300.000
+# Sum of Counts = 290
+# Center of Mass = -15.100848+/-1.254413
+# Full Width Half-Maximum = 1.017015+/-0.984852
+# 6:40:50 PM 10/27/2011 scan completed.
+
+6:46:38 PM 10/27/2011 Executing "method temp set_setpoint d 150.000000"
+ Derived from "set_temp 150"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+9:16:46 PM 10/27/2011 Executing "scantitle "TO at G (101), 150 K""
+
+Setting the scantitle to:
+TO at G (101), 150 K
+
+
+9:16:46 PM 10/27/2011 Executing "scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12.0"
+
+
+# scan = 164
+# date = 10/27/2011
+# time = 9:16:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12.0
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (101), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.4999 707.790 38.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 36.1418 27.1208 -2.7386 0.5000 0.0000 0.0000 161.2030 -37.5940 1.6800 5.0000 17.4999 170.2960 16.3030 154.7200 178.5370 150.000
+ 2 1.0000 0.0000 1.0000 -12.2500 708.049 36.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 37.8028 27.9919 -2.7386 0.5000 0.0000 0.0000 161.0621 -37.8756 1.6801 5.0000 17.2500 168.0700 40.2580 154.7830 175.3710 150.000
+ 3 1.0000 0.0000 1.0000 -12.0000 706.499 37.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 39.4291 28.8454 -2.7386 0.5000 0.0000 0.0000 160.9181 -38.1638 1.6801 5.0000 17.0000 163.6640 15.4840 151.8090 171.9670 150.000
+ 4 1.0000 0.0000 1.0000 -11.7500 706.802 26.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 41.0242 29.6830 -2.7386 0.5000 0.0000 0.0000 160.7706 -38.4587 1.6801 5.0000 16.7500 161.3120 36.4940 147.6860 168.8100 150.000
+ 5 1.0000 0.0000 1.0000 -11.5000 707.180 37.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 42.5908 30.5063 -2.7386 0.5000 0.0000 0.0000 160.6198 -38.7605 1.6801 5.0000 16.5000 157.9930 17.4670 149.7150 165.3170 150.000
+ 6 1.0000 0.0000 1.0000 -11.2500 706.490 48.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 44.1316 31.3166 -2.7386 0.5000 0.0000 0.0000 160.4652 -39.0695 1.6801 5.0000 16.2500 155.1580 26.1280 154.7670 162.7990 150.000
+ 7 1.0000 0.0000 1.0000 -11.0000 708.525 55.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 45.6488 32.1152 -2.7386 0.5000 0.0000 0.0000 160.3069 -39.3861 1.6801 5.0000 16.0000 153.2950 16.1710 150.5570 160.3850 150.000
+ 8 1.0000 0.0000 1.0000 -10.7500 706.451 66.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 47.1446 32.9031 -2.7386 0.5000 0.0000 0.0000 160.1448 -39.7105 1.6801 5.0000 15.7500 150.7320 14.5520 149.6910 157.8820 150.000
+ 9 1.0000 0.0000 1.0000 -10.5000 705.191 74.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 48.6208 33.6813 -2.7386 0.5000 0.0000 0.0000 159.9785 -40.0430 1.6801 5.0000 15.5000 149.8520 16.0380 154.4450 156.1320 150.000
+ 10 1.0000 0.0000 1.0000 -10.2500 705.638 89.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 50.0791 34.4507 -2.7386 0.5000 0.0000 0.0000 159.8079 -40.3841 1.6801 5.0000 15.2500 147.5590 15.0590 148.1000 154.1140 150.000
+ 11 1.0000 0.0000 1.0000 -10.0000 702.863 102.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 51.5211 35.2121 -2.7386 0.5000 0.0000 0.0000 159.6329 -40.7340 1.6801 5.0000 15.0000 146.7530 15.9090 154.7110 152.5480 150.000
+ 12 1.0000 0.0000 1.0000 -9.7500 704.208 132.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 52.9481 35.9663 -2.7386 0.5000 0.0000 0.0000 159.4534 -41.0933 1.6801 5.0000 14.7500 144.9110 14.5370 150.5430 151.0980 150.000
+ 13 1.0000 0.0000 1.0000 -9.5000 702.695 135.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 54.3615 36.7140 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.6801 5.0000 14.5000 144.3340 16.7390 151.3120 149.8560 150.000
+ 14 1.0000 0.0000 1.0000 -9.2500 704.237 133.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 55.7624 37.4559 -2.7386 0.5000 0.0000 0.0000 159.0794 -41.8412 1.6801 5.0000 14.2500 143.3950 30.0330 152.1500 149.0950 150.000
+ 15 1.0000 0.0000 1.0000 -9.0000 704.412 167.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 57.1522 38.1925 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.6801 5.0000 14.0000 142.4350 15.9640 150.5890 147.8840 150.000
+ 16 1.0000 0.0000 1.0000 -8.7500 702.520 163.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 58.5317 38.9245 -2.7386 0.5000 0.0000 0.0000 158.6842 -42.6316 1.6801 5.0000 13.7500 141.7880 28.9070 151.6670 147.4490 150.000
+ 17 1.0000 0.0000 1.0000 -8.5000 699.631 48.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 59.9021 39.6523 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.6801 5.0000 13.5000 141.1280 15.4510 151.7810 146.6120 150.000
+ 18 1.0000 0.0000 1.0000 -8.2500 699.687 34.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 61.2642 40.3766 -2.7386 0.5000 0.0000 0.0000 158.2657 -43.4686 1.6801 5.0000 13.2500 140.7470 28.8660 151.3770 146.3500 150.000
+ 19 1.0000 0.0000 1.0000 -8.0000 699.766 25.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 62.6190 41.0978 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6801 5.0000 13.0000 140.2120 15.2480 151.6830 145.5680 150.000
+ 20 1.0000 0.0000 1.0000 -7.7500 702.229 26.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 63.9672 41.8164 -2.7386 0.5000 0.0000 0.0000 157.8214 -44.3571 1.6801 5.0000 12.7500 139.6110 14.6460 150.7970 145.4980 150.000
+ 21 1.0000 0.0000 1.0000 -7.5000 699.782 21.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 65.3099 42.5328 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.6801 5.0000 12.5000 140.0840 15.7950 153.8690 144.8810 150.000
+ 22 1.0000 0.0000 1.0000 -7.2500 701.096 27.000 1099116.000 12.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 66.6477 43.2476 -2.7386 0.5000 0.0000 0.0000 157.3487 -45.3025 1.6801 5.0000 12.2500 139.1110 14.6260 149.6170 144.5840 150.000
+# Sum of Counts = 1519
+# Center of Mass = -9.761024+/-0.355501
+# Full Width Half-Maximum = 2.380927+/-0.148072
+# 1:36:17 AM 10/28/2011 scan completed.
+
+1:36:17 AM 10/28/2011 Executing "scantitle "LA at L (1.5 0 1.5), 150 K""
+
+Setting the scantitle to:
+LA at L (1.5 0 1.5), 150 K
+
+
+1:36:17 AM 10/28/2011 Executing "scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3.0"
+
+
+# scan = 165
+# date = 10/28/2011
+# time = 1:36:17 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5 0 1.5), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 3.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 174.736 8.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 140.6510 17.0540 153.1420 144.7970 150.000
+ 2 1.5000 0.0000 1.5000 -8.0000 175.246 16.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 138.8720 15.2750 154.0010 144.3180 150.000
+ 3 1.5000 0.0000 1.5000 -7.8000 174.789 16.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 140.7980 41.0480 147.8940 144.4510 150.000
+ 4 1.5000 0.0000 1.5000 -7.6000 175.166 27.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 139.2660 15.8400 153.9050 144.4540 150.000
+ 5 1.5000 0.0000 1.5000 -7.4000 174.770 49.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 138.7380 15.6400 153.1540 144.2680 150.000
+ 6 1.5000 0.0000 1.5000 -7.2000 175.415 73.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 142.2610 39.6650 149.4000 144.5160 150.000
+ 7 1.5000 0.0000 1.5000 -7.0000 174.960 55.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 138.8640 16.0640 154.5090 144.6860 150.000
+ 8 1.5000 0.0000 1.5000 -6.8000 175.148 61.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 2.5201 5.0000 11.8000 138.6330 16.2650 151.6540 144.5630 150.000
+ 9 1.5000 0.0000 1.5000 -6.6000 174.798 33.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 2.5201 5.0000 11.6000 140.8950 19.0540 149.3970 144.6530 150.000
+ 10 1.5000 0.0000 1.5000 -6.4000 175.432 20.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 138.6390 15.3470 154.7570 144.6900 150.000
+ 11 1.5000 0.0000 1.5000 -6.2000 175.355 19.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 140.2340 40.1060 150.9720 144.7020 150.000
+ 12 1.5000 0.0000 1.5000 -6.0000 174.999 11.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 139.0840 16.1350 149.8670 144.5760 150.000
+ 13 1.5000 0.0000 1.5000 -5.8000 174.974 16.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.5201 5.0000 10.8000 138.4370 14.4360 155.0080 144.6560 150.000
+ 14 1.5000 0.0000 1.5000 -5.6000 175.524 10.000 274779.000 3.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 141.5060 44.6140 148.2020 144.5080 150.000
+# Sum of Counts = 414
+# Center of Mass = -6.980676+/-0.486024
+# Full Width Half-Maximum = 1.158065+/-0.221466
+# 2:18:13 AM 10/28/2011 scan completed.
+
+2:18:13 AM 10/28/2011 Executing "scantitle "LA at X (1.5 0 0), 150 K""
+
+Setting the scantitle to:
+LA at X (1.5 0 0), 150 K
+
+
+2:18:14 AM 10/28/2011 Executing "scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 1"
+
+
+# scan = 166
+# date = 10/28/2011
+# time = 2:18:14 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 1
+# builtin_command = scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (1.5 0 0), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 58.252 3.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 118.8832 77.1477 -2.7386 0.5000 0.0000 0.0000 154.7701 -50.4598 2.3918 5.0000 10.0000 138.5020 15.0710 148.8470 144.2780 150.000
+ 2 1.5000 0.0000 0.0000 -4.7500 58.507 12.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 119.9269 78.0318 -2.7386 0.5000 0.0000 0.0000 154.4257 -51.1486 2.3918 5.0000 9.7500 138.3890 14.5920 155.1910 144.4760 150.000
+ 3 1.5000 0.0000 0.0000 -4.5000 58.339 16.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 120.9806 78.9338 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.3918 5.0000 9.5000 138.2590 14.3600 146.6140 144.2200 150.000
+ 4 1.5000 0.0000 0.0000 -4.2500 58.688 67.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 122.0448 79.8550 -2.7386 0.5000 0.0000 0.0000 153.6921 -52.6158 2.3918 5.0000 9.2500 138.3060 14.0250 153.9050 144.4070 150.000
+ 5 1.5000 0.0000 0.0000 -4.0000 58.274 124.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 123.1205 80.7969 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.3918 5.0000 9.0000 139.6690 38.0500 150.5150 144.4520 150.000
+ 6 1.5000 0.0000 0.0000 -3.7500 58.446 127.000 91593.000 1.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 124.2082 81.7608 -2.7386 0.5000 0.0000 0.0000 152.8912 -54.2176 2.3918 5.0000 8.7500 141.7450 40.1000 152.0750 144.4560 150.000
+# Fri, Oct 28, 2011 [2:24:32 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:25:35 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:26:35 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:27:35 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:28:35 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Sum of Counts = 349
+# Center of Mass = -4.014327+/-0.304237
+# Full Width Half-Maximum = 0.543820+/-0.252716
+# 2:28:35 AM 10/28/2011 scan completed.
+
+2:28:35 AM 10/28/2011 Executing "scantitle "Dispersion G-L transverse (-102) zone, 150 K""
+
+Setting the scantitle to:
+Dispersion G-L transverse (-102) zone, 150 K
+
+
+2:28:35 AM 10/28/2011 Executing "scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0"
+
+
+# scan = 167
+# date = 10/28/2011
+# time = 2:28:35 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:30:53 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:30:56 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:31:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:32:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:33:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:34:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:35:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:36:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:37:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:38:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:39:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:40:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:41:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:42:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:43:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:44:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:45:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:46:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:47:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:48:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:49:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:50:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:51:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:52:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:53:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:54:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:55:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:56:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:57:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:58:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [2:59:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:00:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:01:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:02:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:03:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:04:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:05:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:06:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:07:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:08:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:09:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:10:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:11:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:12:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:13:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:14:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:15:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:16:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Drive not issued due to lower limit # Fri, Oct 28, 2011 [3:17:55 AM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit lower controller software limit
+# Sum of Counts = 0
+# Center of Mass = 0.000000+/-0.000000
+# Full Width Half-Maximum = 0.000000+/-0.000000
+# 3:17:55 AM 10/28/2011 scan completed.
+
+3:17:55 AM 10/28/2011 Executing "scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0"
+
+
+# scan = 168
+# date = 10/28/2011
+# time = 3:17:55 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 116.858 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.8412 40.0160 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.6514 5.0000 13.0000 138.9190 34.6310 155.5860 144.1310 150.000
+ 2 -0.7000 0.0000 2.3000 -7.9000 116.476 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.2892 40.3059 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0849 1.6514 5.0000 12.9000 140.6370 19.8140 154.1850 144.0130 150.000
+ 3 -0.7000 0.0000 2.3000 -7.8000 117.122 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.7383 40.5953 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 1.6514 5.0000 12.8000 138.1530 14.9670 153.5120 143.8220 150.000
+ 4 -0.7000 0.0000 2.3000 -7.7000 117.120 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.1885 40.8842 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.6514 5.0000 12.7000 137.9560 14.0990 151.6160 143.7520 150.000
+ 5 -0.7000 0.0000 2.3000 -7.6000 116.620 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.6398 41.1727 -2.7386 0.5000 0.0000 0.0000 157.6827 -44.6345 1.6514 5.0000 12.6000 138.6300 32.8360 149.6350 143.8300 150.000
+ 6 -0.7000 0.0000 2.3000 -7.5000 116.265 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.0920 41.4608 -2.7386 0.5000 0.0000 0.0000 157.5888 -44.8223 1.6514 5.0000 12.5000 140.6360 20.2190 147.7830 143.3800 150.000
+ 7 -0.7000 0.0000 2.3000 -7.4000 117.004 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5452 41.7485 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.6514 5.0000 12.4000 138.0470 15.0940 146.6950 143.3030 150.000
+ 8 -0.7000 0.0000 2.3000 -7.3000 117.398 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9992 42.0358 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.6514 5.0000 12.3000 137.8390 14.2310 149.5720 143.0600 150.000
+ 9 -0.7000 0.0000 2.3000 -7.2000 116.905 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.4540 42.3229 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4005 1.6514 5.0000 12.2000 138.5500 32.9170 153.5490 143.6040 150.000
+ 10 -0.7000 0.0000 2.3000 -7.1000 116.900 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.9096 42.6097 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.6514 5.0000 12.1000 140.7020 20.7030 153.3680 143.5500 150.000
+ 11 -0.7000 0.0000 2.3000 -7.0000 116.776 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.3659 42.8962 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.6514 5.0000 12.0000 138.1120 14.9360 155.0820 143.8910 150.000
+ 12 -0.7000 0.0000 2.3000 -6.9000 117.549 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.8229 43.1825 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.6514 5.0000 11.9000 137.9290 13.9590 154.3090 144.0210 150.000
+ 13 -0.7000 0.0000 2.3000 -6.8000 117.211 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.2805 43.4686 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.6514 5.0000 11.8000 138.2180 28.8270 152.7100 143.9900 150.000
+ 14 -0.7000 0.0000 2.3000 -6.7000 117.285 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.7386 43.7546 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4158 1.6514 5.0000 11.7000 141.0120 22.8360 150.9110 143.7830 150.000
+ 15 -0.7000 0.0000 2.3000 -6.6000 117.216 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.1973 44.0404 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.6514 5.0000 11.6000 138.1170 15.1390 148.5230 143.6910 150.000
+ 16 -0.7000 0.0000 2.3000 -6.5000 117.105 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.6564 44.3260 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6514 5.0000 11.5000 137.8370 14.2520 146.6190 143.4570 150.000
+ 17 -0.7000 0.0000 2.3000 -6.4000 117.003 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1159 44.6116 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6514 5.0000 11.4000 138.1140 29.7710 148.8080 143.8550 150.000
+ 18 -0.7000 0.0000 2.3000 -6.3000 116.512 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5758 44.8972 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 1.6514 5.0000 11.3000 140.9000 22.9700 149.9550 143.7510 150.000
+ 19 -0.7000 0.0000 2.3000 -6.2000 116.857 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.0359 45.1827 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6514 5.0000 11.2000 138.0790 15.1490 154.0740 143.7470 150.000
+ 20 -0.7000 0.0000 2.3000 -6.1000 117.075 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.4964 45.4682 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6514 5.0000 11.1000 137.8690 14.0490 155.2460 143.7790 150.000
+ 21 -0.7000 0.0000 2.3000 -6.0000 116.813 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.9570 45.7538 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6514 5.0000 11.0000 138.1870 28.9510 154.7420 143.8370 150.000
+ 22 -0.7000 0.0000 2.3000 -5.9000 116.455 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.4179 46.0394 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6514 5.0000 10.9000 140.9690 22.7790 153.1880 143.6610 150.000
+ 23 -0.7000 0.0000 2.3000 -5.8000 116.785 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.8788 46.3251 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6514 5.0000 10.8000 138.0950 15.1470 151.4360 144.0690 150.000
+ 24 -0.7000 0.0000 2.3000 -5.7000 117.094 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.3398 46.6109 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6514 5.0000 10.7000 137.8220 13.9810 149.2640 143.9220 150.000
+ 25 -0.7000 0.0000 2.3000 -5.6000 117.192 22.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.8009 46.8968 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6514 5.0000 10.6000 137.8930 26.4250 147.0300 143.6780 150.000
+ 26 -0.7000 0.0000 2.3000 -5.5000 116.748 38.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.2619 47.1830 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6514 5.0000 10.5000 141.0360 24.6910 146.7280 143.7360 150.000
+ 27 -0.7000 0.0000 2.3000 -5.4000 117.363 52.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.7228 47.4693 -2.7386 0.5000 0.0000 0.0000 155.2932 -49.4134 1.6514 5.0000 10.4000 138.0000 15.2370 149.8300 143.8770 150.000
+ 28 -0.7000 0.0000 2.3000 -5.3000 116.620 54.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.1837 47.7558 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6514 5.0000 10.3000 137.7550 14.1110 153.7820 143.9970 150.000
+ 29 -0.7000 0.0000 2.3000 -5.2000 116.717 50.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6443 48.0426 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6514 5.0000 10.2000 137.7170 16.8550 155.2900 144.2170 150.000
+ 30 -0.7000 0.0000 2.3000 -5.1000 116.636 81.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.1048 48.3297 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6514 5.0000 10.1000 141.2540 31.4560 154.6460 144.1340 150.000
+ 31 -0.7000 0.0000 2.3000 -5.0000 117.495 71.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.5650 48.6171 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6514 5.0000 10.0000 138.1970 15.2550 153.7720 144.0020 150.000
+ 32 -0.7000 0.0000 2.3000 -4.9000 117.107 48.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.0248 48.9048 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 1.6514 5.0000 9.9000 137.8220 13.9180 151.8110 143.5750 150.000
+ 33 -0.7000 0.0000 2.3000 -4.8000 117.185 35.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.4843 49.1929 -2.7386 0.5000 0.0000 0.0000 154.4956 -51.0086 1.6514 5.0000 9.8000 137.7250 13.6090 149.4760 143.3180 150.000
+ 34 -0.7000 0.0000 2.3000 -4.7000 117.099 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.9434 49.4814 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.6514 5.0000 9.7000 141.1580 41.5910 148.5480 143.3420 150.000
+ 35 -0.7000 0.0000 2.3000 -4.6000 116.699 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.4021 49.7703 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 1.6514 5.0000 9.6000 138.2780 15.6300 146.7040 143.1300 150.000
+ 36 -0.7000 0.0000 2.3000 -4.5000 116.840 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.8602 50.0597 -2.7386 0.5000 0.0000 0.0000 154.0666 -51.8666 1.6514 5.0000 9.5000 137.7280 14.1950 149.4300 143.1470 150.000
+ 37 -0.7000 0.0000 2.3000 -4.4000 116.111 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.3178 50.3496 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6514 5.0000 9.4000 137.6880 13.7540 153.2300 143.2230 150.000
+ 38 -0.7000 0.0000 2.3000 -4.3000 116.947 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.7747 50.6400 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6514 5.0000 9.3000 140.9660 44.0740 154.0860 143.4130 150.000
+ 39 -0.7000 0.0000 2.3000 -4.2000 116.901 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.2310 50.9310 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6514 5.0000 9.2000 138.4590 15.6320 155.0930 143.3970 150.000
+ 40 -0.7000 0.0000 2.3000 -4.1000 116.797 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.6866 51.2226 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6514 5.0000 9.1000 137.8450 13.9400 154.2580 143.3560 150.000
+ 41 -0.7000 0.0000 2.3000 -4.0000 116.609 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.1414 51.5148 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 1.6514 5.0000 9.0000 137.7480 13.5730 152.5560 143.3020 150.000
+ 42 -0.7000 0.0000 2.3000 -3.9000 116.490 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.5955 51.8076 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 1.6514 5.0000 8.9000 140.7260 45.2210 151.5830 143.5450 150.000
+ 43 -0.7000 0.0000 2.3000 -3.8000 117.263 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.0486 52.1012 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 1.6514 5.0000 8.8000 138.6900 16.0800 149.1610 143.3440 150.000
+ 44 -0.7000 0.0000 2.3000 -3.7000 116.961 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5008 52.3954 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 1.6514 5.0000 8.7000 137.7710 14.2270 146.8080 143.3700 150.000
+ 45 -0.7000 0.0000 2.3000 -3.6000 117.077 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9520 52.6904 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 1.6514 5.0000 8.6000 137.6300 13.9650 148.0140 143.3880 150.000
+ 46 -0.7000 0.0000 2.3000 -3.5000 116.703 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.4022 52.9863 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 1.6514 5.0000 8.5000 140.1700 43.4070 151.2790 143.9640 150.000
+# Sum of Counts = 818
+# Center of Mass = -5.458435+/-0.271875
+# Full Width Half-Maximum = 1.869988+/-0.098394
+# 4:49:52 AM 10/28/2011 scan completed.
+
+4:49:52 AM 10/28/2011 Executing "scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 2.0"
+
+
+# scan = 169
+# date = 10/28/2011
+# time = 4:49:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 2.0
+# builtin_command = scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -9.5000 116.929 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.9022 31.2626 -2.7386 0.5000 0.0000 0.0000 159.2690 -41.4622 1.5445 5.0000 14.5000 138.5330 15.8080 154.8430 143.9180 150.000
+ 2 -0.5000 0.0000 2.5000 -9.4000 116.809 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -55.2558 31.5846 -2.7386 0.5000 0.0000 0.0000 159.1938 -41.6125 1.5445 5.0000 14.4000 137.8230 14.0530 153.5960 143.8700 150.000
+ 3 -0.5000 0.0000 2.5000 -9.3000 116.899 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -54.6129 31.9048 -2.7386 0.5000 0.0000 0.0000 159.1177 -41.7645 1.5446 5.0000 14.3000 137.7200 13.6210 151.7300 143.8410 150.000
+ 4 -0.5000 0.0000 2.5000 -9.2000 117.667 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.9736 32.2231 -2.7386 0.5000 0.0000 0.0000 159.0408 -41.9182 1.5445 5.0000 14.2000 140.6750 45.2300 150.6440 143.8900 150.000
+ 5 -0.5000 0.0000 2.5000 -9.1000 116.896 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -53.3377 32.5398 -2.7386 0.5000 0.0000 0.0000 158.9632 -42.0737 1.5445 5.0000 14.1000 138.5870 16.0850 147.5190 143.3850 150.000
+ 6 -0.5000 0.0000 2.5000 -9.0000 117.019 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.7049 32.8549 -2.7386 0.5000 0.0000 0.0000 158.8846 -42.2308 1.5445 5.0000 14.0000 137.6970 14.2810 146.9170 143.3030 150.000
+ 7 -0.5000 0.0000 2.5000 -8.9000 117.458 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -52.0753 33.1684 -2.7386 0.5000 0.0000 0.0000 158.8051 -42.3898 1.5445 5.0000 13.9000 137.5940 13.9240 150.4510 143.3730 150.000
+ 8 -0.5000 0.0000 2.5000 -8.8000 117.529 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -51.4487 33.4805 -2.7386 0.5000 0.0000 0.0000 158.7247 -42.5505 1.5445 5.0000 13.8000 140.5790 45.6010 153.0990 143.6420 150.000
+ 9 -0.5000 0.0000 2.5000 -8.7000 117.012 1.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.8249 33.7911 -2.7386 0.5000 0.0000 0.0000 158.6434 -42.7131 1.5445 5.0000 13.7000 138.5940 16.0190 155.0430 143.6000 150.000
+ 10 -0.5000 0.0000 2.5000 -8.6000 116.687 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -50.2039 34.1003 -2.7386 0.5000 0.0000 0.0000 158.5612 -42.8776 1.5445 5.0000 13.6000 137.7960 14.1620 154.9140 143.6610 150.000
+ 11 -0.5000 0.0000 2.5000 -8.5000 116.886 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -49.5856 34.4082 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 1.5445 5.0000 13.5000 137.6930 13.6080 153.5900 143.6280 150.000
+ 12 -0.5000 0.0000 2.5000 -8.4000 116.956 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.9698 34.7148 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2124 1.5445 5.0000 13.4000 140.3820 43.7700 152.6560 143.9710 150.000
+ 13 -0.5000 0.0000 2.5000 -8.3000 117.028 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -48.3564 35.0202 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 1.5445 5.0000 13.3000 138.9070 16.4150 150.2530 143.7250 150.000
+ 14 -0.5000 0.0000 2.5000 -8.2000 117.036 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.7454 35.3244 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 1.5445 5.0000 13.2000 137.7290 14.2510 147.8210 143.7260 150.000
+ 15 -0.5000 0.0000 2.5000 -8.1000 116.765 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -47.1366 35.6274 -2.7386 0.5000 0.0000 0.0000 158.1350 -43.7295 1.5445 5.0000 13.1000 137.5690 13.9140 146.6320 143.6200 150.000
+ 16 -0.5000 0.0000 2.5000 -8.0000 117.069 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -46.5300 35.9294 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 1.5445 5.0000 13.0000 139.9050 42.3180 148.6910 143.6980 150.000
+ 17 -0.5000 0.0000 2.5000 -7.9000 116.770 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.9255 36.2304 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0848 1.5445 5.0000 12.9000 139.1290 16.9960 152.3630 143.5450 150.000
+ 18 -0.5000 0.0000 2.5000 -7.7999 116.427 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -45.3230 36.5303 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2659 1.5445 5.0000 12.7999 137.7480 14.3150 154.8360 143.6420 150.000
+ 19 -0.5000 0.0000 2.5000 -7.7000 117.229 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.7223 36.8293 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 1.5446 5.0000 12.7000 137.6540 13.6800 155.2500 143.6980 150.000
+ 20 -0.5000 0.0000 2.5000 -7.6000 117.276 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -44.1234 37.1274 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 1.5445 5.0000 12.6000 139.9030 41.5220 154.6950 144.0870 150.000
+ 21 -0.5000 0.0000 2.5000 -7.5000 116.799 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -43.5263 37.4246 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 1.5445 5.0000 12.5000 139.2860 16.8530 152.8620 143.5860 150.000
+ 22 -0.5000 0.0000 2.5000 -7.4000 117.090 26.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.9308 37.7210 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 1.5445 5.0000 12.4000 137.7950 14.2940 150.9390 143.4920 150.000
+ 23 -0.5000 0.0000 2.5000 -7.3000 117.126 29.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -42.3370 38.0166 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 1.5445 5.0000 12.3000 137.6360 13.8170 148.3740 143.1480 150.000
+ 24 -0.5000 0.0000 2.5000 -7.1999 117.067 23.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.7446 38.3114 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4005 1.5445 5.0000 12.1999 139.6100 40.4670 146.9500 143.3020 150.000
+ 25 -0.5000 0.0000 2.5000 -7.1000 117.082 25.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -41.1536 38.6055 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 1.5445 5.0000 12.1000 139.3310 17.3280 147.8280 143.1140 150.000
+ 26 -0.5000 0.0000 2.5000 -7.0000 116.573 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -40.5640 38.8989 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 1.5445 5.0000 12.0000 137.7110 14.4000 152.1150 143.3230 150.000
+ 27 -0.5000 0.0000 2.5000 -6.9000 117.095 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.9756 39.1917 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 1.5445 5.0000 11.9000 137.6200 13.7970 154.7210 143.4470 150.000
+ 28 -0.5000 0.0000 2.5000 -6.8000 116.862 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -39.3885 39.4839 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2073 1.5445 5.0000 11.8000 139.3960 38.9680 155.5370 143.8160 150.000
+ 29 -0.5000 0.0000 2.5000 -6.7000 116.881 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.8025 39.7754 -2.7386 0.5000 0.0000 0.0000 156.7921 -46.4159 1.5445 5.0000 11.7000 139.7310 17.6220 154.3840 143.5650 150.000
+ 30 -0.5000 0.0000 2.5000 -6.6000 116.664 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -38.2176 40.0665 -2.7386 0.5000 0.0000 0.0000 156.6864 -46.6273 1.5445 5.0000 11.6000 137.8340 14.3050 153.2600 143.3740 150.000
+ 31 -0.5000 0.0000 2.5000 -6.5000 116.703 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.6337 40.3570 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.5445 5.0000 11.5000 137.6810 13.7270 151.4200 143.4070 150.000
+ 32 -0.5000 0.0000 2.5000 -6.4000 116.919 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -37.0507 40.6470 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.5445 5.0000 11.4000 139.6080 40.0370 149.9850 143.5520 150.000
+ 33 -0.5000 0.0000 2.5000 -6.3000 117.074 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -36.4686 40.9366 -2.7386 0.5000 0.0000 0.0000 156.3602 -47.2793 1.5445 5.0000 11.3000 139.3830 17.2940 147.2620 143.1450 150.000
+ 34 -0.5000 0.0000 2.5000 -6.2000 117.141 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.8873 41.2258 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.5445 5.0000 11.2000 137.6980 14.4520 147.2870 142.9500 150.000
+ 35 -0.5000 0.0000 2.5000 -6.1000 117.224 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -35.3068 41.5146 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.5445 5.0000 11.1000 137.5660 13.8450 150.9510 142.9860 150.000
+ 36 -0.5000 0.0000 2.5000 -6.0000 117.366 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.7270 41.8030 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.5445 5.0000 11.0000 139.3810 38.8270 154.1720 143.3030 150.000
+ 37 -0.5000 0.0000 2.5000 -5.9000 116.711 2.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -34.1478 42.0911 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.5445 5.0000 10.9000 139.7870 17.9330 154.5780 143.1050 150.000
+ 38 -0.5000 0.0000 2.5000 -5.8000 116.496 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -33.5691 42.3790 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 1.5445 5.0000 10.8000 137.8580 14.5020 154.7660 142.9800 150.000
+ 39 -0.5000 0.0000 2.5000 -5.7000 116.772 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.9910 42.6665 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.5445 5.0000 10.7000 137.6890 13.6990 153.7370 143.4150 150.000
+ 40 -0.5000 0.0000 2.5000 -5.6000 116.807 1.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -32.4133 42.9538 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.5445 5.0000 10.6000 139.1030 37.0590 152.4090 143.7540 150.000
+ 41 -0.5000 0.0000 2.5000 -5.5000 116.913 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.8360 43.2409 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.5445 5.0000 10.5000 139.9590 18.3580 149.9800 143.2170 150.000
+ 42 -0.5000 0.0000 2.5000 -5.4000 117.424 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -31.2590 43.5278 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.5445 5.0000 10.4000 137.7910 14.5730 147.5400 143.1700 150.000
+ 43 -0.5000 0.0000 2.5000 -5.3000 116.792 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.6822 43.8146 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.5445 5.0000 10.3000 137.5650 13.9650 146.7940 143.2300 150.000
+ 44 -0.5000 0.0000 2.5000 -5.2000 117.174 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -30.1058 44.1013 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.5445 5.0000 10.2000 138.4060 33.9990 149.9800 143.2760 150.000
+ 45 -0.5000 0.0000 2.5000 -5.1000 117.295 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -29.5294 44.3878 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.5445 5.0000 10.1000 140.2770 19.8960 151.3560 143.0960 150.000
+ 46 -0.5000 0.0000 2.5000 -5.0000 116.761 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 -28.9531 44.6744 -2.7386 0.5000 0.0000 0.0000 154.7701 -50.4597 1.5445 5.0000 10.0000 137.8380 14.5410 154.6800 143.1770 150.000
+# Sum of Counts = 413
+# Center of Mass = -7.178684+/-0.501911
+# Full Width Half-Maximum = 1.973605+/-0.159927
+# 6:21:43 AM 10/28/2011 scan completed.
+
+6:21:43 AM 10/28/2011 Executing "scantitle "Dispersion G-L longitudinal (101) zone, 150 K""
+
+Setting the scantitle to:
+Dispersion G-L longitudinal (101) zone, 150 K
+
+
+6:21:43 AM 10/28/2011 Executing "scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 2.0"
+
+
+# scan = 170
+# date = 10/28/2011
+# time = 6:21:43 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 2.0
+# builtin_command = scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.1000 0.0000 1.1000 -2.0000 116.393 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.3529 65.4132 -2.7386 0.5000 0.0000 0.0000 149.3717 -61.2567 1.8481 5.0000 7.0000 137.5420 13.8330 146.7270 143.5800 150.000
+ 2 1.1000 0.0000 1.1000 -1.9500 116.264 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.6195 65.5862 -2.7386 0.5000 0.0000 0.0000 149.2498 -61.5005 1.8481 5.0000 6.9500 140.8080 44.2600 148.1550 143.4380 150.000
+ 3 1.1000 0.0000 1.1000 -1.9000 116.318 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8866 65.7598 -2.7386 0.5000 0.0000 0.0000 149.1262 -61.7473 1.8481 5.0000 6.9000 138.3030 15.8950 153.0210 143.3690 150.000
+ 4 1.1000 0.0000 1.1000 -1.8500 116.370 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1544 65.9342 -2.7386 0.5000 0.0000 0.0000 149.0015 -61.9969 1.8481 5.0000 6.8500 137.6680 13.9620 155.1830 143.5010 150.000
+ 5 1.1000 0.0000 1.1000 -1.8000 116.709 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.4227 66.1092 -2.7386 0.5000 0.0000 0.0000 148.8751 -62.2498 1.8481 5.0000 6.8000 137.6240 13.7220 154.9250 143.4920 150.000
+ 6 1.1000 0.0000 1.1000 -1.7500 116.674 22.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6917 66.2849 -2.7386 0.5000 0.0000 0.0000 148.7471 -62.5057 1.8481 5.0000 6.7500 140.9820 43.7070 153.8380 143.6150 150.000
+ 7 1.1000 0.0000 1.1000 -1.7000 116.881 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.9614 66.4613 -2.7386 0.5000 0.0000 0.0000 148.6174 -62.7649 1.8481 5.0000 6.7000 138.3770 15.7860 152.1550 143.4460 150.000
+ 8 1.1000 0.0000 1.1000 -1.6500 116.459 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.2316 66.6385 -2.7386 0.5000 0.0000 0.0000 148.4863 -63.0274 1.8481 5.0000 6.6500 137.6830 13.9050 149.8230 143.4280 150.000
+ 9 1.1000 0.0000 1.1000 -1.6000 116.281 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.5025 66.8164 -2.7386 0.5000 0.0000 0.0000 148.3534 -63.2932 1.8481 5.0000 6.6000 137.5440 13.5600 147.4260 143.3260 150.000
+ 10 1.1000 0.0000 1.1000 -1.5500 117.141 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.7741 66.9951 -2.7386 0.5000 0.0000 0.0000 148.2188 -63.5624 1.8481 5.0000 6.5500 140.5810 45.6350 146.8990 143.4250 150.000
+ 11 1.1000 0.0000 1.1000 -1.5000 116.619 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.0464 67.1746 -2.7386 0.5000 0.0000 0.0000 148.0823 -63.8352 1.8481 5.0000 6.5000 138.4140 16.1580 149.5710 143.2680 150.000
+ 12 1.1000 0.0000 1.1000 -1.4500 116.407 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.3193 67.3548 -2.7386 0.5000 0.0000 0.0000 147.9442 -64.1115 1.8481 5.0000 6.4500 137.6090 14.0250 153.5630 143.4040 150.000
+ 13 1.1000 0.0000 1.1000 -1.4000 116.519 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.5930 67.5359 -2.7386 0.5000 0.0000 0.0000 147.8042 -64.3915 1.8481 5.0000 6.4000 137.5590 13.5760 155.1950 143.4280 150.000
+ 14 1.1000 0.0000 1.1000 -1.3500 116.398 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.8674 67.7178 -2.7386 0.5000 0.0000 0.0000 147.6624 -64.6753 1.8481 5.0000 6.3500 140.6710 45.7180 154.8920 143.6270 150.000
+ 15 1.1000 0.0000 1.1000 -1.3000 116.255 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.1424 67.9005 -2.7386 0.5000 0.0000 0.0000 147.5186 -64.9628 1.8481 5.0000 6.3000 138.5310 15.8630 153.9940 143.4800 150.000
+ 16 1.1000 0.0000 1.1000 -1.2500 116.898 35.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.4182 68.0840 -2.7386 0.5000 0.0000 0.0000 147.3729 -65.2542 1.8481 5.0000 6.2500 137.6900 13.8370 152.2870 143.4770 150.000
+ 17 1.1000 0.0000 1.1000 -1.2000 116.279 24.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.6948 68.2685 -2.7386 0.5000 0.0000 0.0000 147.2251 -65.5497 1.8481 5.0000 6.2000 137.5820 13.5930 150.0000 143.4310 150.000
+ 18 1.1000 0.0000 1.1000 -1.1500 116.862 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.9722 68.4538 -2.7386 0.5000 0.0000 0.0000 147.0754 -65.8492 1.8481 5.0000 6.1500 140.6290 45.4590 149.1000 143.5230 150.000
+ 19 1.1000 0.0000 1.1000 -1.1000 116.377 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.2503 68.6400 -2.7386 0.5000 0.0000 0.0000 146.9235 -66.1530 1.8481 5.0000 6.1000 138.4270 16.1400 146.6920 143.2600 150.000
+ 20 1.1000 0.0000 1.1000 -1.0500 116.073 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.5292 68.8271 -2.7386 0.5000 0.0000 0.0000 146.7694 -66.4610 1.8481 5.0000 6.0500 137.5650 14.0340 149.7810 143.3460 150.000
+ 21 1.1000 0.0000 1.1000 -1.0000 116.306 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.8088 69.0152 -2.7386 0.5000 0.0000 0.0000 146.6133 -66.7735 1.8481 5.0000 6.0000 137.4800 13.4870 153.3790 143.4370 150.000
+ 22 1.1000 0.0000 1.1000 -0.9500 116.253 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.0894 69.2042 -2.7386 0.5000 0.0000 0.0000 146.4548 -67.0904 1.8481 5.0000 5.9500 140.5330 45.7530 154.7070 143.7870 150.000
+ 23 1.1000 0.0000 1.1000 -0.9000 116.641 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.3707 69.3942 -2.7386 0.5000 0.0000 0.0000 146.2940 -67.4120 1.8481 5.0000 5.9000 138.6490 16.1650 155.0160 143.5280 150.000
+ 24 1.1000 0.0000 1.1000 -0.8500 116.472 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.6528 69.5851 -2.7386 0.5000 0.0000 0.0000 146.1309 -67.7382 1.8481 5.0000 5.8500 137.7040 13.9780 154.0610 143.4970 150.000
+ 25 1.1000 0.0000 1.1000 -0.8000 116.818 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.9359 69.7771 -2.7386 0.5000 0.0000 0.0000 145.9653 -68.0694 1.8481 5.0000 5.8000 137.5870 13.4000 152.2330 143.4540 150.000
+ 26 1.1000 0.0000 1.1000 -0.7500 116.202 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.2198 69.9701 -2.7386 0.5000 0.0000 0.0000 145.7972 -68.4055 1.8481 5.0000 5.7500 140.3740 43.6730 151.1170 143.7110 150.000
+ 27 1.1000 0.0000 1.1000 -0.7000 116.511 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.5046 70.1642 -2.7386 0.5000 0.0000 0.0000 145.6266 -68.7467 1.8481 5.0000 5.7000 138.7530 16.4430 148.1990 143.4360 150.000
+# Sum of Counts = 449
+# Center of Mass = -1.437862+/-0.097344
+# Full Width Half-Maximum = 0.692154+/-0.046739
+# 7:16:17 AM 10/28/2011 scan completed.
+
+7:16:17 AM 10/28/2011 Executing "scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 2.0"
+
+
+# scan = 171
+# date = 10/28/2011
+# time = 7:16:17 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 2.0
+# builtin_command = scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.3000 0.0000 1.3000 -6.5000 116.789 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.0202 64.1370 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.1841 5.0000 11.5000 137.5840 14.0030 152.6030 143.3710 150.000
+ 2 1.3000 0.0000 1.3000 -6.4000 116.588 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.4404 64.4367 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.1841 5.0000 11.4000 137.5360 13.5490 154.9760 143.4660 150.000
+ 3 1.3000 0.0000 1.3000 -6.3000 116.610 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 88.8614 64.7378 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.1841 5.0000 11.3000 140.8960 44.2620 155.0320 143.5810 150.000
+ 4 1.3000 0.0000 1.3000 -6.2000 116.965 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.2833 65.0403 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5029 2.1841 5.0000 11.2000 138.3720 15.6400 154.4150 143.4120 150.000
+ 5 1.3000 0.0000 1.3000 -6.1000 116.442 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 89.7060 65.3443 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.1841 5.0000 11.1000 137.6840 13.7980 152.7770 143.3320 150.000
+ 6 1.3000 0.0000 1.3000 -6.0000 116.474 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.1295 65.6496 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.1841 5.0000 11.0000 137.5770 13.4270 150.6310 143.2020 150.000
+ 7 1.3000 0.0000 1.3000 -5.9000 116.788 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.5540 65.9566 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 2.1841 5.0000 10.9000 140.6400 45.5690 149.6080 143.2680 150.000
+ 8 1.3000 0.0000 1.3000 -5.8000 116.973 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.9794 66.2650 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 2.1841 5.0000 10.8000 138.4560 16.0170 146.7240 143.0350 150.000
+ 9 1.3000 0.0000 1.3000 -5.7000 116.977 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.4057 66.5750 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.1841 5.0000 10.7000 137.5740 14.0730 148.7520 142.9840 150.000
+ 10 1.3000 0.0000 1.3000 -5.6000 117.110 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8331 66.8867 -2.7386 0.5000 0.0000 0.0000 155.5427 -48.9142 2.1841 5.0000 10.6000 137.4960 13.6300 152.7780 143.1000 150.000
+ 11 1.3000 0.0000 1.3000 -5.5000 116.773 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2614 67.2001 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1620 2.1841 5.0000 10.5000 140.5440 45.7340 154.4820 143.2360 150.000
+ 12 1.3000 0.0000 1.3000 -5.4000 117.050 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6909 67.5151 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 2.1841 5.0000 10.4000 138.5690 15.9480 155.0770 143.1950 150.000
+ 13 1.3000 0.0000 1.3000 -5.3000 116.186 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.1214 67.8320 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 2.1841 5.0000 10.3000 137.6960 13.8240 154.0110 143.1520 150.000
+ 14 1.3000 0.0000 1.3000 -5.2000 116.154 23.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.5530 68.1506 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 2.1841 5.0000 10.2000 137.5930 13.3950 152.2750 143.1040 150.000
+ 15 1.3000 0.0000 1.3000 -5.1000 116.460 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.9858 68.4712 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1920 2.1841 5.0000 10.1000 140.8030 44.9290 151.3630 143.2420 150.000
+ 16 1.3000 0.0000 1.3000 -5.0000 116.516 24.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.4198 68.7936 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 2.1841 5.0000 10.0000 138.3810 15.7210 148.9350 143.1200 150.000
+ 17 1.3000 0.0000 1.3000 -4.9000 116.712 29.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8549 69.1180 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7319 2.1841 5.0000 9.9000 137.6170 14.0220 146.7910 143.2260 150.000
+ 18 1.3000 0.0000 1.3000 -4.8000 116.568 19.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2914 69.4444 -2.7386 0.5000 0.0000 0.0000 154.4958 -51.0086 2.1841 5.0000 9.8000 137.4960 13.8010 148.1320 143.2390 150.000
+ 19 1.3000 0.0000 1.3000 -4.7000 116.707 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.7291 69.7730 -2.7386 0.5000 0.0000 0.0000 154.3551 -51.2898 2.1841 5.0000 9.7000 140.8930 40.6150 150.1020 143.3710 150.000
+ 20 1.3000 0.0000 1.3000 -4.6000 116.165 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.1682 70.1036 -2.7386 0.5000 0.0000 0.0000 154.2122 -51.5757 2.1841 5.0000 9.6000 138.1540 15.4730 154.4180 143.2800 150.000
+ 21 1.3000 0.0000 1.3000 -4.5000 116.466 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.6086 70.4364 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 2.1841 5.0000 9.5000 137.6480 13.7600 155.2230 143.2640 150.000
+ 22 1.3000 0.0000 1.3000 -4.4000 116.152 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.0505 70.7716 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 2.1841 5.0000 9.4000 137.5740 14.1780 154.3490 143.5210 150.000
+ 23 1.3000 0.0000 1.3000 -4.3000 116.326 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.4938 71.1090 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 2.1841 5.0000 9.3000 141.1470 34.9450 153.1220 143.5600 150.000
+ 24 1.3000 0.0000 1.3000 -4.2000 116.484 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9385 71.4488 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 2.1841 5.0000 9.2000 138.1090 15.2770 151.2320 143.3990 150.000
+ 25 1.3000 0.0000 1.3000 -4.1000 116.394 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3848 71.7911 -2.7386 0.5000 0.0000 0.0000 153.4593 -53.0813 2.1841 5.0000 9.1000 137.6270 13.9160 148.8620 143.2940 150.000
+ 26 1.3000 0.0000 1.3000 -4.0000 116.442 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.8327 72.1359 -2.7386 0.5000 0.0000 0.0000 153.3007 -53.3986 2.1841 5.0000 9.0000 137.5340 19.3790 146.7800 143.4600 150.000
+ 27 1.3000 0.0000 1.3000 -3.9000 116.576 3.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.2822 72.4833 -2.7386 0.5000 0.0000 0.0000 153.1392 -53.7217 2.1841 5.0000 8.9000 141.0680 30.3330 146.8230 143.3540 150.000
+ 28 1.3000 0.0000 1.3000 -3.8000 116.206 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7334 72.8334 -2.7386 0.5000 0.0000 0.0000 152.9746 -54.0507 2.1841 5.0000 8.8000 137.9450 15.3410 150.7520 143.2570 150.000
+ 29 1.3000 0.0000 1.3000 -3.7000 116.469 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.1863 73.1862 -2.7386 0.5000 0.0000 0.0000 152.8070 -54.3860 2.1841 5.0000 8.7000 137.6020 13.9390 154.1790 143.3130 150.000
+ 30 1.3000 0.0000 1.3000 -3.6000 116.538 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6410 73.5420 -2.7386 0.5000 0.0000 0.0000 152.6362 -54.7275 2.1841 5.0000 8.6000 137.7070 25.0830 155.3010 143.7710 150.000
+ 31 1.3000 0.0000 1.3000 -3.5000 116.727 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0974 73.9006 -2.7386 0.5000 0.0000 0.0000 152.4622 -55.0756 2.1841 5.0000 8.5000 140.9530 25.5290 154.2950 143.5370 150.000
+# Sum of Counts = 292
+# Center of Mass = -4.951370+/-0.412114
+# Full Width Half-Maximum = 1.497438+/-0.158336
+# 8:18:08 AM 10/28/2011 scan completed.
+
+8:18:08 AM 10/28/2011 Executing "scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 2.0"
+
+
+# scan = 172
+# date = 10/28/2011
+# time = 8:18:08 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 2.0
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L longitudinal (101) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.5000 116.113 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 90.7836 71.0343 -2.7386 0.5000 0.0000 0.0000 158.4780 -43.0440 2.5201 5.0000 13.5000 137.8630 14.8010 151.2830 143.5990 150.000
+ 2 1.5000 0.0000 1.5000 -8.4000 116.398 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.1527 71.3308 -2.7386 0.5000 0.0000 0.0000 158.3938 -43.2123 2.5201 5.0000 13.4000 137.5980 13.8160 149.0390 143.3000 150.000
+ 3 1.5000 0.0000 1.5000 -8.3000 116.122 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.5225 71.6287 -2.7386 0.5000 0.0000 0.0000 158.3086 -43.3827 2.5201 5.0000 13.3000 138.0050 30.3650 146.9400 143.1150 150.000
+ 4 1.5000 0.0000 1.5000 -8.2000 116.719 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 91.8930 71.9281 -2.7386 0.5000 0.0000 0.0000 158.2225 -43.5551 2.5201 5.0000 13.2000 140.6540 22.5610 146.7430 142.9920 150.000
+ 5 1.5000 0.0000 1.5000 -8.0999 116.866 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.2643 72.2290 -2.7386 0.5000 0.0000 0.0000 158.1352 -43.7296 2.5201 5.0000 13.0999 137.7840 15.1100 150.4320 143.0050 150.000
+ 6 1.5000 0.0000 1.5000 -8.0000 116.889 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 92.6364 72.5314 -2.7386 0.5000 0.0000 0.0000 158.0470 -43.9061 2.5201 5.0000 13.0000 137.5990 13.9160 154.1360 143.0180 150.000
+ 7 1.5000 0.0000 1.5000 -7.9000 116.521 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.0094 72.8353 -2.7386 0.5000 0.0000 0.0000 157.9576 -44.0849 2.5201 5.0000 12.9000 138.5030 33.8820 155.4330 143.3690 150.000
+ 8 1.5000 0.0000 1.5000 -7.8000 115.967 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.3831 73.1408 -2.7386 0.5000 0.0000 0.0000 157.8671 -44.2658 2.5201 5.0000 12.8000 140.3590 20.0780 154.1710 143.1030 150.000
+ 9 1.5000 0.0000 1.5000 -7.7000 116.675 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 93.7577 73.4480 -2.7386 0.5000 0.0000 0.0000 157.7755 -44.4490 2.5201 5.0000 12.7000 137.8550 14.6130 153.3940 143.0440 150.000
+ 10 1.5000 0.0000 1.5000 -7.6000 116.259 13.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.1332 73.7569 -2.7386 0.5000 0.0000 0.0000 157.6828 -44.6345 2.5201 5.0000 12.6000 137.6220 13.6280 151.5380 143.0110 150.000
+ 11 1.5000 0.0000 1.5000 -7.5000 116.132 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.5096 74.0674 -2.7386 0.5000 0.0000 0.0000 157.5889 -44.8223 2.5201 5.0000 12.5000 138.9750 36.8550 149.8160 143.1570 150.000
+ 12 1.5000 0.0000 1.5000 -7.4000 116.489 42.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 94.8869 74.3797 -2.7386 0.5000 0.0000 0.0000 157.4938 -45.0126 2.5201 5.0000 12.4000 139.9610 18.6390 147.5890 142.8740 150.000
+ 13 1.5000 0.0000 1.5000 -7.3000 116.805 40.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.2652 74.6938 -2.7386 0.5000 0.0000 0.0000 157.3974 -45.2052 2.5201 5.0000 12.3000 137.7080 14.4890 146.8020 142.7820 150.000
+ 14 1.5000 0.0000 1.5000 -7.2000 116.579 42.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.6444 75.0097 -2.7386 0.5000 0.0000 0.0000 157.2998 -45.4004 2.5201 5.0000 12.2000 137.4840 13.4770 150.6730 143.2740 150.000
+ 15 1.5000 0.0000 1.5000 -7.1000 116.332 43.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.0246 75.3275 -2.7386 0.5000 0.0000 0.0000 157.2009 -45.5982 2.5201 5.0000 12.1000 138.6400 35.5270 154.2130 143.7810 150.000
+ 16 1.5000 0.0000 1.5000 -7.0000 116.551 64.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4059 75.6472 -2.7386 0.5000 0.0000 0.0000 157.1007 -45.7985 2.5201 5.0000 12.0000 140.1520 19.2670 154.0850 143.4940 150.000
+ 17 1.5000 0.0000 1.5000 -6.9000 116.567 39.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.7882 75.9689 -2.7386 0.5000 0.0000 0.0000 156.9992 -46.0016 2.5201 5.0000 11.9000 137.8080 14.4920 155.0270 143.4590 150.000
+ 18 1.5000 0.0000 1.5000 -6.8000 116.476 46.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.1715 76.2925 -2.7386 0.5000 0.0000 0.0000 156.8963 -46.2074 2.5201 5.0000 11.8000 137.6180 13.5730 153.9530 143.5550 150.000
+ 19 1.5000 0.0000 1.5000 -6.7000 116.162 24.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5560 76.6182 -2.7386 0.5000 0.0000 0.0000 156.7918 -46.4158 2.5201 5.0000 11.7000 139.0930 37.4100 152.5130 143.7190 150.000
+ 20 1.5000 0.0000 1.5000 -6.6000 116.508 22.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.9415 76.9461 -2.7386 0.5000 0.0000 0.0000 156.6862 -46.6273 2.5201 5.0000 11.6000 139.9400 18.5240 150.3210 143.3740 150.000
+ 21 1.5000 0.0000 1.5000 -6.5000 116.309 21.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.3283 77.2760 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 2.5201 5.0000 11.5000 137.7330 14.4610 147.8380 143.3580 150.000
+ 22 1.5000 0.0000 1.5000 -6.4000 116.608 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.7162 77.6082 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 2.5201 5.0000 11.4000 137.5240 13.8800 146.6790 143.2780 150.000
+ 23 1.5000 0.0000 1.5000 -6.3000 116.724 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1053 77.9426 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 2.5201 5.0000 11.3000 138.8580 37.2310 149.8930 143.4350 150.000
+ 24 1.5000 0.0000 1.5000 -6.2000 116.120 14.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.4956 78.2794 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 2.5201 5.0000 11.2000 139.8610 18.5860 152.0190 143.3270 150.000
+ 25 1.5000 0.0000 1.5000 -6.1000 116.298 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.8872 78.6184 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 2.5201 5.0000 11.1000 137.7500 14.3860 154.7960 143.3280 150.000
+ 26 1.5000 0.0000 1.5000 -6.0000 116.329 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2802 78.9600 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 2.5201 5.0000 11.0000 137.6260 13.7860 155.2260 143.4350 150.000
+ 27 1.5000 0.0000 1.5000 -5.9000 116.238 11.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.6744 79.3040 -2.7386 0.5000 0.0000 0.0000 155.9034 -48.1930 2.5201 5.0000 10.9000 139.0680 37.1510 154.6360 143.8810 150.000
+ 28 1.5000 0.0000 1.5000 -5.8000 116.220 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.0700 79.6506 -2.7386 0.5000 0.0000 0.0000 155.7850 -48.4298 2.5201 5.0000 10.8000 139.9180 18.3780 152.6270 143.6780 150.000
+ 29 1.5000 0.0000 1.5000 -5.7000 116.540 9.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.4670 79.9997 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 2.5201 5.0000 10.7000 137.7750 14.4970 150.5680 143.7210 150.000
+ 30 1.5000 0.0000 1.5000 -5.6000 116.163 10.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.8654 80.3516 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 2.5201 5.0000 10.6000 137.5670 13.7880 148.0900 143.4720 150.000
+ 31 1.5000 0.0000 1.5000 -5.5000 116.510 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.2653 80.7062 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 2.5201 5.0000 10.5000 139.5840 40.7910 146.8950 143.4830 150.000
+# Sum of Counts = 611
+# Center of Mass = -7.001963+/-0.401468
+# Full Width Half-Maximum = 1.302185+/-0.127709
+# 9:19:41 AM 10/28/2011 scan completed.
+
+9:19:41 AM 10/28/2011 Executing "scantitle "Dispersion G-T transverse (101) zone, 150 K""
+
+Setting the scantitle to:
+Dispersion G-T transverse (101) zone, 150 K
+
+
+9:19:41 AM 10/28/2011 Executing "scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 2.0"
+
+
+# scan = 173
+# date = 10/28/2011
+# time = 9:19:41 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 25
+# command = scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 2.0
+# builtin_command = scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-T transverse (101) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = 0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+# mode = 0
+# plane_normal = 0.028751,0.005245,0.601004
+# ubconf = UB24Oct2011_63347PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 -0.5000 -6.5000 117.166 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 95.8781 43.0284 -2.7386 0.5000 0.0000 0.0000 156.5792 -46.8416 1.6163 5.0000 11.5000 138.3140 15.5730 154.8450 143.3750 150.000
+ 2 1.0000 0.0000 -0.5000 -6.4000 116.553 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.4315 43.3151 -2.7386 0.5000 0.0000 0.0000 156.4706 -47.0589 1.6163 5.0000 11.4000 137.6740 13.9070 153.6790 143.2940 150.000
+ 3 1.0000 0.0000 -0.5000 -6.3000 116.329 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 96.9844 43.6016 -2.7386 0.5000 0.0000 0.0000 156.3603 -47.2793 1.6163 5.0000 11.3000 137.5920 13.6100 151.7530 143.2540 150.000
+ 4 1.0000 0.0000 -0.5000 -6.2000 116.978 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 97.5368 43.8880 -2.7386 0.5000 0.0000 0.0000 156.2486 -47.5028 1.6163 5.0000 11.2000 141.0650 40.6060 150.6420 143.2450 150.000
+ 5 1.0000 0.0000 -0.5000 -6.1000 116.728 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.0888 44.1742 -2.7386 0.5000 0.0000 0.0000 156.1352 -47.7296 1.6163 5.0000 11.1000 138.1750 15.5060 148.0230 143.1920 150.000
+ 6 1.0000 0.0000 -0.5000 -6.0000 116.481 7.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 98.6405 44.4604 -2.7386 0.5000 0.0000 0.0000 156.0202 -47.9596 1.6163 5.0000 11.0000 137.5870 14.1170 146.6070 143.1030 150.000
+ 7 1.0000 0.0000 -0.5000 -5.9000 115.784 6.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.1919 44.7465 -2.7386 0.5000 0.0000 0.0000 155.9035 -48.1930 1.6163 5.0000 10.9000 137.4830 17.6460 149.6980 143.3460 150.000
+ 8 1.0000 0.0000 -0.5000 -5.8000 116.668 5.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 99.7430 45.0326 -2.7386 0.5000 0.0000 0.0000 155.7851 -48.4298 1.6163 5.0000 10.8000 141.0590 32.8000 150.7700 143.2460 150.000
+ 9 1.0000 0.0000 -0.5000 -5.7000 116.628 8.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.2939 45.3186 -2.7386 0.5000 0.0000 0.0000 155.6650 -48.6702 1.6163 5.0000 10.7000 138.0240 15.2800 154.8440 143.2100 150.000
+ 10 1.0000 0.0000 -0.5000 -5.6000 116.232 4.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 100.8447 45.6047 -2.7386 0.5000 0.0000 0.0000 155.5430 -48.9142 1.6163 5.0000 10.6000 137.6560 13.8160 155.0310 143.1640 150.000
+ 11 1.0000 0.0000 -0.5000 -5.5000 116.072 16.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.3954 45.8908 -2.7386 0.5000 0.0000 0.0000 155.4190 -49.1619 1.6163 5.0000 10.5000 137.5880 15.9120 153.8110 143.3510 150.000
+ 12 1.0000 0.0000 -0.5000 -5.4000 116.352 12.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 101.9460 46.1771 -2.7386 0.5000 0.0000 0.0000 155.2933 -49.4134 1.6164 5.0000 10.4000 141.1840 33.7810 152.5390 143.3500 150.000
+ 13 1.0000 0.0000 -0.5000 -5.3000 116.578 17.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 102.4967 46.4634 -2.7386 0.5000 0.0000 0.0000 155.1656 -49.6688 1.6164 5.0000 10.3000 138.0840 15.2510 150.4740 143.2280 150.000
+ 14 1.0000 0.0000 -0.5000 -5.2000 116.320 29.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.0474 46.7498 -2.7386 0.5000 0.0000 0.0000 155.0358 -49.9283 1.6163 5.0000 10.2000 137.6160 13.9180 147.9730 143.1630 150.000
+ 15 1.0000 0.0000 -0.5000 -5.1000 115.859 46.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 103.5982 47.0365 -2.7386 0.5000 0.0000 0.0000 154.9041 -50.1919 1.6163 5.0000 10.1000 137.5140 19.2010 146.6600 143.2310 150.000
+ 16 1.0000 0.0000 -0.5000 -5.0000 116.310 49.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.1492 47.3233 -2.7386 0.5000 0.0000 0.0000 154.7702 -50.4597 1.6164 5.0000 10.0000 141.1190 32.4170 147.2300 143.1680 150.000
+ 17 1.0000 0.0000 -0.5000 -4.8999 116.011 44.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 104.7004 47.6104 -2.7386 0.5000 0.0000 0.0000 154.6341 -50.7320 1.6163 5.0000 9.9000 137.9930 15.3330 152.2140 143.0650 150.000
+ 18 1.0000 0.0000 -0.5000 -4.8000 116.027 53.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.2518 47.8976 -2.7386 0.5000 0.0000 0.0000 154.4957 -51.0086 1.6163 5.0000 9.8000 137.6120 13.9080 154.8270 143.3140 150.000
+ 19 1.0000 0.0000 -0.5000 -4.7000 116.217 47.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 105.8036 48.1852 -2.7386 0.5000 0.0000 0.0000 154.3550 -51.2898 1.6163 5.0000 9.7000 137.7130 24.7620 155.2630 143.5050 150.000
+ 20 1.0000 0.0000 -0.5000 -4.6000 116.599 51.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.3557 48.4731 -2.7386 0.5000 0.0000 0.0000 154.2121 -51.5757 1.6163 5.0000 9.6000 141.0300 26.2250 154.2310 143.3170 150.000
+ 21 1.0000 0.0000 -0.5000 -4.5000 116.407 20.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 106.9082 48.7614 -2.7386 0.5000 0.0000 0.0000 154.0667 -51.8666 1.6163 5.0000 9.5000 137.9860 15.0140 152.7300 143.2960 150.000
+ 22 1.0000 0.0000 -0.5000 -4.4000 116.317 30.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 107.4612 49.0500 -2.7386 0.5000 0.0000 0.0000 153.9188 -52.1624 1.6163 5.0000 9.4000 137.6430 13.8310 150.5900 143.3110 150.000
+ 23 1.0000 0.0000 -0.5000 -4.3000 116.284 18.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.0148 49.3390 -2.7386 0.5000 0.0000 0.0000 153.7683 -52.4633 1.6163 5.0000 9.3000 137.7980 27.0590 148.3050 143.2990 150.000
+ 24 1.0000 0.0000 -0.5000 -4.2000 116.604 15.000 183186.000 2.000 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 108.5689 49.6284 -2.7386 0.5000 0.0000 0.0000 153.6152 -52.7696 1.6163 5.0000 9.2000 140.9320 25.1140 147.2170 143.2840 150.000
+ 25 1.0000 0.0000 -0.5000 -4.1000 1.168 0.000 1799.000 0.020 96.4440 142.9286 -74.1428 0.6500 0.0000 34.9840 109.1236 49.9184 -2.7386 0.5000 0.0000 0.0000 153.4594 -53.0813 1.6163 5.0000 9.1000 137.8550 15.1710 147.6040 143.0760 150.000
+# Sum of Counts = 505
+# Center of Mass = -4.975041+/-0.313884
+# Full Width Half-Maximum = 1.004017+/-0.120537
+# 10:07:54 AM 10/28/2011 scan stopped!!
+
+Abort issued!!
+
+10:10:54 AM 10/28/2011 Executing "method temp set_setpoint d 300.000000"
+ Derived from "set_temp 300"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+10:14:11 AM 10/28/2011 Executing "drive sgl 0 sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+sgu 0.00000
+
+Drive completed.
+
+
+10:15:24 AM 10/28/2011 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+10:27:53 AM 10/28/2011 Executing "initialize"
+
+Reinitializing experiment ... # Device could not be initialized or is not at the specified VISA resource []. Completed initialization.
+
+
+10:28:29 AM 10/28/2011 Executing "begin"
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/OvernightAcoustic_102411.macro b/test_data/Bi_CTAX/exp25/Macros/OvernightAcoustic_102411.macro
new file mode 100644
index 0000000..35a1ea0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/OvernightAcoustic_102411.macro
@@ -0,0 +1,55 @@
+scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data"
+scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data"
+scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data"
+scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,1.5), add data"
+scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,1.8), add data"
+scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,0.3), add data"
+scan h -1 k 0 l 2.3 e -1.75 -0.55 0.1 preset mcu 0.25
+
+scantitle "Dispersion G-X in (101) zone"
+scan h 1.5 k 0 l 0 e -5.0 -1.9 0.2 preset mcu 0.5
+
+scan h 1.4 k 0 l 0.2 e -4.5 -1.9 0.1 preset mcu 1.0
+scan h 1.3 k 0 l 0.4 e -4.2 -1.9 0.1 preset mcu 1.0
+scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+scan h 1.1 k 0 l 0.8 e -3.5 -0.2 0.1 preset mcu 1.0
+
+scantitle "Dispersion G-T longitudinal (003) zone"
+scan h 0 k 0 l 4.5 e -8.5 -4.0 0.1 preset mcu 1.0
+scan h 0 k 0 l 4.2 e -7.9 -3.5 0.1 preset mcu 1.0
+scan h 0 k 0 l 3.9 e -7.0 -2.5 0.1 preset mcu 1.0
+scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+scan h 0 k 0 l 3.4 e -2.5 -1.0 0.1 preset mcu 1.0
+scan h 0 k 0 l 3.2 e -1.5 -0.3 0.05 preset mcu 1.0
+
+scantitle "Dispersion G-T transverse (101) zone"
+scan h 1 k 0 l -0.5 e -8.5 -4.0 0.1 preset mcu 1.0
+scan h 1 k 0 l -0.2 e -7.9 -3.5 0.1 preset mcu 1.0
+scan h 1 k 0 l 0.1 e -7.0 -2.5 0.1 preset mcu 1.0
+scan h 1 k 0 l 0.4 e -5.0 -1.0 0.1 preset mcu 1.0
+scan h 1 k 0 l 0.6 e -2.5 -1.0 0.1 preset mcu 1.0
+scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+
+scantitle "Dispersion G-L longitudinal (101) zone"
+scan h 1.1 k 0 l 1.1 e -1.5 -0.3 0.05 preset mcu 1.0
+scan h 1.2 k 0 l 1.2 e -2.5 -1.0 0.1 preset mcu 1.0
+scan h 1.3 k 0 l 1.3 e -5.0 -1.0 0.1 preset mcu 1.0
+scan h 1.4 k 0 l 1.4 e -7.0 -2.5 0.1 preset mcu 1.0
+scan h 1.5 k 0 l 1.5 e -8.5 -3.5 0.1 preset mcu 1.0
+
+scantitle "Dispersion G-L transverse (-102) zone"
+scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+scan h -0.8 k 0 l 2.2 e -2.5 -1.0 0.1 preset mcu 1.0
+scan h -0.7 k 0 l 2.3 e -5.0 -1.0 0.1 preset mcu 1.0
+scan h -0.6 k 0 l 2.4 e -7.0 -2.5 0.1 preset mcu 1.0
+scan h -0.5 k 0 l 2.5 e -8.5 -3.5 0.1 preset mcu 1.0
diff --git a/test_data/Bi_CTAX/exp25/Macros/crash.macro b/test_data/Bi_CTAX/exp25/Macros/crash.macro
new file mode 100644
index 0000000..63d9892
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/crash.macro
@@ -0,0 +1,69 @@
+scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data"
+scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data"
+scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data"
+scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,1.5), add data"
+scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,1.8), add data"
+scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+
+scantitle "LA + TA phonons in (-102) at (0,0,0.3), add data"
+scan h -1 k 0 l 2.3 e -1.75 -0.55 0.1 preset mcu 0.25
+
+scantitle "Dispersion G-X in (101) zone"
+scan h 1.5 k 0 l 0 e -5.0 -1.9 0.2 preset mcu 0.5
+scan h 1.4 k 0 l 0.2 e -4.5 -1.9 0.1 preset mcu 1.0
+scan h 1.3 k 0 l 0.4 e -4.2 -1.9 0.1 preset mcu 1.0
+scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+scan h 1.1 k 0 l 0.8 e -3.5 -0.2 0.1 preset mcu 1.0
+
+scantitle "Dispersion G-T longitudinal (003) zone"
+scan h 0 k 0 l 4.5 e -8.5 -4.0 0.1 preset mcu 1.0
+scan h 0 k 0 l 4.2 e -7.9 -3.5 0.1 preset mcu 1.0
+scan h 0 k 0 l 3.9 e -7.0 -2.5 0.1 preset mcu 1.0
+scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+scan h 0 k 0 l 3.4 e -2.5 -1.0 0.1 preset mcu 1.0
+scan h 0 k 0 l 3.2 e -1.5 -0.3 0.05 preset mcu 1.0
+
+scantitle "Dispersion G-T transverse (101) zone"
+scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 1.0
+scan h 1 k 0 l -0.2 e -7.9 -3.0 0.1 preset mcu 1.0
+scan h 1 k 0 l 0.1 e -7.0 -2.3 0.1 preset mcu 1.0
+scan h 1 k 0 l 0.4 e -5.0 -1.0 0.1 preset mcu 1.0
+scan h 1 k 0 l 0.6 e -2.5 -1.0 0.1 preset mcu 1.0
+scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+
+scantitle "Dispersion G-L longitudinal (101) zone"
+scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 1.0
+scan h 1.2 k 0 l 1.2 e -5.5 -2.5 0.1 preset mcu 1.0
+scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 1.0
+scan h 1.4 k 0 l 1.4 e -7.0 -5.0 0.1 preset mcu 1.0
+scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+
+scantitle "Dispersion G-L transverse (-102) zone"
+scan h -0.9 k 0 l 2.1 e -2.0 -0.6 0.05 preset mcu 1.0
+scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+scan h -0.7 k 0 l 2.3 e -6.3 -3.5 0.1 preset mcu 1.0
+scan h -0.6 k 0 l 2.4 e -7.5 -3.5 0.1 preset mcu 1.0
+scan h -0.5 k 0 l 2.5 e -8.5 -3.5 0.1 preset mcu 1.0
+
+scantitle "Optic dispersion G (101)"
+scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+
+scantitle "Optic dispersion L (1.5 0 1.5)"
+scan h 1.5 k 0 l 1.5 e -14 -10.5 0.25 preset mcu 4.0
+
+scantitle "Optic dispersion X (1.5 0 0)"
+scan h 1.5 k 0 l 0 e -13 -9 0.25 preset mcu 4.0
+
+scantitle "Optic dispersion T (0 0 4.5)"
+scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+
+scantitle "Optic dispersion T (0 0 4.5)"
+scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
\ No newline at end of file
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html b/test_data/Bi_CTAX/exp25/Macros/index.html
new file mode 100644
index 0000000..cb93df8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html@C=D;O=A b/test_data/Bi_CTAX/exp25/Macros/index.html@C=D;O=A
new file mode 100644
index 0000000..51b88eb
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html@C=D;O=A
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html@C=D;O=D b/test_data/Bi_CTAX/exp25/Macros/index.html@C=D;O=D
new file mode 100644
index 0000000..d7cde55
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html@C=D;O=D
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html@C=M;O=A b/test_data/Bi_CTAX/exp25/Macros/index.html@C=M;O=A
new file mode 100644
index 0000000..928512d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html@C=M;O=A
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html@C=M;O=D b/test_data/Bi_CTAX/exp25/Macros/index.html@C=M;O=D
new file mode 100644
index 0000000..d7cde55
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html@C=M;O=D
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html@C=N;O=A b/test_data/Bi_CTAX/exp25/Macros/index.html@C=N;O=A
new file mode 100644
index 0000000..cb93df8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html@C=N;O=A
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html@C=N;O=D b/test_data/Bi_CTAX/exp25/Macros/index.html@C=N;O=D
new file mode 100644
index 0000000..d7cde55
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html@C=N;O=D
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html@C=S;O=A b/test_data/Bi_CTAX/exp25/Macros/index.html@C=S;O=A
new file mode 100644
index 0000000..6acac6c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html@C=S;O=A
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Macros/index.html@C=S;O=D b/test_data/Bi_CTAX/exp25/Macros/index.html@C=S;O=D
new file mode 100644
index 0000000..d7cde55
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Macros/index.html@C=S;O=D
@@ -0,0 +1,16 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Macros
+
+
+Index of /user_data/cg4c/exp25/Macros
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html b/test_data/Bi_CTAX/exp25/Scripts/index.html
new file mode 100644
index 0000000..b583859
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html@C=D;O=A b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=D;O=A
new file mode 100644
index 0000000..c008d0f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=D;O=A
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html@C=D;O=D b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=D;O=D
new file mode 100644
index 0000000..64f091e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=D;O=D
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html@C=M;O=A b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=M;O=A
new file mode 100644
index 0000000..3c33599
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=M;O=A
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html@C=M;O=D b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=M;O=D
new file mode 100644
index 0000000..64f091e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=M;O=D
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html@C=N;O=A b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=N;O=A
new file mode 100644
index 0000000..b583859
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=N;O=A
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html@C=N;O=D b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=N;O=D
new file mode 100644
index 0000000..64f091e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=N;O=D
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html@C=S;O=A b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=S;O=A
new file mode 100644
index 0000000..97cb938
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=S;O=A
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/Scripts/index.html@C=S;O=D b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=S;O=D
new file mode 100644
index 0000000..64f091e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/Scripts/index.html@C=S;O=D
@@ -0,0 +1,14 @@
+
+
+
+ Index of /user_data/cg4c/exp25/Scripts
+
+
+Index of /user_data/cg4c/exp25/Scripts
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_100518AM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_100518AM.ini
new file mode 100644
index 0000000..55ecfc4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_100518AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,1.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=1.000000,1.000000,0.000000,69.783626,34.891813,0.000000,0.000000,5.000000,5.000000
+LatticeParams=5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+UBInverse=-3.535534,0.000000,3.535534,-3.535534,0.000000,-3.535534,0.000000,-5.000000,0.000000
+BMatrix=0.200000,0.000000,0.000000,0.000000,0.200000,0.000000,0.000000,0.000000,0.200000
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_104813AM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_104813AM.ini
new file mode 100644
index 0000000..e14acef
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_104813AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,1.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=1.000000,1.000000,0.000000,69.783626,34.891813,0.000000,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.850000,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084388,0.179450,-0.065683,0.000000
+UBInverse=-1.177627,0.000000,4.394963,-3.217336,0.000000,-3.217336,0.000000,-11.850000,0.000000
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084388
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_114334AM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_114334AM.ini
new file mode 100644
index 0000000..51ac2dd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_114334AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,1.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=1.000000,1.000000,0.000000,69.783626,34.891813,0.000000,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084208,0.179450,-0.065683,0.000000
+UBInverse=-1.177627,0.000000,4.394963,-3.217336,0.000000,-3.217336,0.000000,-11.875419,0.000000
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084208
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_114401AM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_114401AM.ini
new file mode 100644
index 0000000..ed177a2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_114401AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.449040,35.990640,2.000000,0.000000,5.000001,5.000000
+LatticeParams=4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.015731,-0.024588,-0.083801,-0.218853,-0.218853,0.007729,-0.127517,0.126109,-0.002926
+UBInverse=-0.071158,-2.265398,-3.945302,-0.346195,-2.265398,3.930728,-11.818091,1.089946,-0.412697
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084208
+[AngleMode]
+Mode=0
+PlaneNormal=-0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=2.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_115124AM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_115124AM.ini
new file mode 100644
index 0000000..8488d3a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_115124AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.449040,35.990640,2.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.003969,-0.023278,-0.083801,-0.126355,-0.252709,0.007729,-0.220053,-0.000813,-0.002926
+UBInverse=0.158793,0.000000,-4.547228,-0.440835,-3.923784,2.260992,-11.818091,1.089948,-0.412697
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084208
+[AngleMode]
+Mode=0
+PlaneNormal=-0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=2.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_121211PM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_121211PM.ini
new file mode 100644
index 0000000..728b5c4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_121211PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.449040,35.990640,2.000048,0.000000,5.000001,5.000000
+LatticeParams=4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.023278,-0.019310,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+UBInverse=-0.282039,-3.923784,-2.286236,-0.158797,0.000000,4.547228,-11.818091,1.089946,-0.412707
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084208
+[AngleMode]
+Mode=0
+PlaneNormal=-0.034900,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=2.000048
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_24425PM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_24425PM.ini
new file mode 100644
index 0000000..4a002a0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_24425PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.449040,35.990640,2.000048,0.000000,5.000001,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.023278,-0.019310,-0.083810,-0.252709,-0.126355,0.007730,-0.000813,0.219240,-0.002927
+UBInverse=-0.282039,-3.923784,-2.286236,-0.158797,0.000000,4.547228,-11.816831,1.089830,-0.412663
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=-0.034900,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=2.000048
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_24436PM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_24436PM.ini
new file mode 100644
index 0000000..2ecedb8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_24436PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.455440,33.177920,-2.738704,0.000000,5.000001,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.010837,0.005083,-0.084043,-0.253548,-0.126774,0.003600,0.000518,0.219788,0.004020
+UBInverse=-0.276966,-3.936813,-2.264353,0.217404,0.000000,4.544803,-11.849747,0.507631,0.566843
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.047781,0.000000,0.998858
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=-2.738704
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_25015PM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_25015PM.ini
new file mode 100644
index 0000000..c052a88
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_25015PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.010837,0.005083,-0.084043,-0.253548,-0.126774,0.003600,0.000518,0.219788,0.004020
+UBInverse=-0.276967,-3.936813,-2.264352,0.217404,0.000000,4.544803,-11.849747,0.507632,0.566843
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.047781,0.000000,0.998858
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=-2.738704
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_25948PM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_25948PM.ini
new file mode 100644
index 0000000..65b64d4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_25948PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.010837,-0.005083,-0.084043,0.253548,0.126774,0.003600,-0.000518,-0.219788,0.004020
+UBInverse=0.276967,3.936813,2.264352,-0.217404,0.000000,-4.544803,-11.849747,0.507632,0.566843
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.047781,0.000000,0.998858
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=-2.738704
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_30108PM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_30108PM.ini
new file mode 100644
index 0000000..8ac5ed6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_30108PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.000000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.490200,64.688080,-2.738704,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.010837,-0.005083,-0.084043,0.253548,0.126774,0.003600,-0.000518,-0.219788,0.004020
+UBInverse=0.276967,3.936813,2.264352,-0.217404,0.000000,-4.544803,-11.849747,0.507632,0.566843
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.028751,0.000000,0.601027
+InPlaneRef=-0.997945,0.042751,0.047738
+UpperArc=0.000000
+LowerArc=-2.738704
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_30648PM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_30648PM.ini
new file mode 100644
index 0000000..7e815ce
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_30648PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.500000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.490200,64.688080,-2.738704,0.500000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+UBInverse=0.276967,3.956423,2.229912,-0.217404,-0.039660,-4.544630,-11.849747,0.512559,0.562391
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.028751,0.005245,0.601004
+InPlaneRef=-0.997945,0.043166,0.047363
+UpperArc=0.500000
+LowerArc=-2.738704
diff --git a/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_63347PM.ini b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_63347PM.ini
new file mode 100644
index 0000000..7e815ce
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/UB24Oct2011_63347PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.500000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.490200,64.688080,-2.738704,0.500000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+UBInverse=0.276967,3.956423,2.229912,-0.217404,-0.039660,-4.544630,-11.849747,0.512559,0.562391
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.028751,0.005245,0.601004
+InPlaneRef=-0.997945,0.043166,0.047363
+UpperArc=0.500000
+LowerArc=-2.738704
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html b/test_data/Bi_CTAX/exp25/UBConf/index.html
new file mode 100644
index 0000000..3084a27
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html@C=D;O=A b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=D;O=A
new file mode 100644
index 0000000..19ad2f4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=D;O=A
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html@C=D;O=D b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=D;O=D
new file mode 100644
index 0000000..421028b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=D;O=D
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html@C=M;O=A b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=M;O=A
new file mode 100644
index 0000000..1cf2432
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=M;O=A
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html@C=M;O=D b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=M;O=D
new file mode 100644
index 0000000..5d6a262
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=M;O=D
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html@C=N;O=A b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=N;O=A
new file mode 100644
index 0000000..3084a27
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=N;O=A
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html@C=N;O=D b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=N;O=D
new file mode 100644
index 0000000..421028b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=N;O=D
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html@C=S;O=A b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=S;O=A
new file mode 100644
index 0000000..bf0c641
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=S;O=A
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/index.html@C=S;O=D b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=S;O=D
new file mode 100644
index 0000000..fac36e2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/index.html@C=S;O=D
@@ -0,0 +1,28 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf
+
+
+Index of /user_data/cg4c/exp25/UBConf
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_114359AM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_114359AM.ini
new file mode 100644
index 0000000..78304a7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_114359AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.449040,35.990640,2.000000,0.000000,5.000001,5.000000
+LatticeParams=4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.015731,-0.024588,-0.083801,-0.218853,-0.218853,0.007729,-0.127517,0.126109,-0.002926
+UBInverse=-0.071158,-2.265398,-3.945302,-0.346195,-2.265398,3.930728,-11.818091,1.089946,-0.412697
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084208
+[AngleMode]
+Mode=0
+PlaneNormal=-0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_115122AM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_115122AM.ini
new file mode 100644
index 0000000..10ae145
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_115122AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.449040,35.990640,2.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.003969,-0.023278,-0.083801,-0.126355,-0.252709,0.007729,-0.220053,-0.000813,-0.002926
+UBInverse=0.158793,0.000000,-4.547228,-0.440835,-3.923784,2.260992,-11.818091,1.089947,-0.412697
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084208
+[AngleMode]
+Mode=0
+PlaneNormal=-0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_121209PM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_121209PM.ini
new file mode 100644
index 0000000..a247f07
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_121209PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.449040,35.990640,2.000048,0.000000,5.000001,5.000000
+LatticeParams=4.550000,4.550000,11.875419,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.023278,-0.019309,-0.083801,-0.252709,-0.126355,0.007729,-0.000813,0.219240,-0.002926
+UBInverse=-0.282039,-3.923784,-2.286236,-0.158797,0.000000,4.547228,-11.818091,1.089946,-0.412707
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084208
+[AngleMode]
+Mode=0
+PlaneNormal=-0.034900,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_24432PM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_24432PM.ini
new file mode 100644
index 0000000..5e4d15d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_24432PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.455440,33.177920,-2.738704,0.000000,5.000001,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.010837,0.005083,-0.084043,-0.253548,-0.126774,0.003600,0.000518,0.219788,0.004020
+UBInverse=-0.276966,-3.936813,-2.264353,0.217404,0.000000,4.544803,-11.849747,0.507631,0.566843
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.047781,0.000000,0.998858
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_25010PM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_25010PM.ini
new file mode 100644
index 0000000..fed50e7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_25010PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.010837,0.005083,-0.084043,-0.253548,-0.126774,0.003600,0.000518,0.219788,0.004020
+UBInverse=-0.276967,-3.936813,-2.264352,0.217404,0.000000,4.544803,-11.849747,0.507632,0.566843
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.047781,0.000000,0.998858
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_25945PM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_25945PM.ini
new file mode 100644
index 0000000..718ea0e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_25945PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.010837,-0.005083,-0.084043,0.253548,0.126774,0.003600,-0.000518,-0.219788,0.004020
+UBInverse=0.276967,3.936813,2.264352,-0.217404,0.000000,-4.544803,-11.849747,0.507632,0.566843
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.047781,0.000000,0.998858
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_30106PM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_30106PM.ini
new file mode 100644
index 0000000..6565447
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_30106PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.000000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.490200,64.688080,-2.738704,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.010837,-0.005083,-0.084043,0.253548,0.126774,0.003600,-0.000518,-0.219788,0.004020
+UBInverse=0.276967,3.936813,2.264352,-0.217404,0.000000,-4.544803,-11.849747,0.507632,0.566843
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.028751,0.000000,0.601027
+InPlaneRef=-0.997945,0.042751,0.047738
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_30644PM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_30644PM.ini
new file mode 100644
index 0000000..d92c4bc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_30644PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.500000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.490200,64.688080,-2.738704,0.500000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+UBInverse=0.276967,3.956423,2.229912,-0.217404,-0.039660,-4.544630,-11.849747,0.512559,0.562391
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.028751,0.005245,0.601004
+InPlaneRef=-0.997945,0.043166,0.047363
+UpperArc=0.500000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_63258PM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_63258PM.ini
new file mode 100644
index 0000000..bcf65a3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_63258PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.449040,35.990640,2.000048,0.000000,5.000001,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.023278,-0.019310,-0.083810,-0.252709,-0.126355,0.007730,-0.000813,0.219240,-0.002927
+UBInverse=-0.282039,-3.923784,-2.286236,-0.158797,0.000000,4.547228,-11.816831,1.089830,-0.412663
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=-0.034900,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_63344PM.ini b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_63344PM.ini
new file mode 100644
index 0000000..d92c4bc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/UB24Oct2011_63344PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.456320,33.178360,-2.738704,0.500000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.490200,64.688080,-2.738704,0.500000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.010837,-0.005083,-0.084043,0.253534,0.124851,0.003635,-0.002731,-0.220886,0.003989
+UBInverse=0.276967,3.956423,2.229912,-0.217404,-0.039660,-4.544630,-11.849747,0.512559,0.562391
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.028751,0.005245,0.601004
+InPlaneRef=-0.997945,0.043166,0.047363
+UpperArc=0.500000
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html
new file mode 100644
index 0000000..507580c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=D;O=A b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=D;O=A
new file mode 100644
index 0000000..9a377dc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=D;O=A
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=D;O=D b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=D;O=D
new file mode 100644
index 0000000..4e32a77
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=D;O=D
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=M;O=A b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=M;O=A
new file mode 100644
index 0000000..46dc2ce
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=M;O=A
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=M;O=D b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=M;O=D
new file mode 100644
index 0000000..7485982
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=M;O=D
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=N;O=A b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=N;O=A
new file mode 100644
index 0000000..507580c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=N;O=A
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=N;O=D b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=N;O=D
new file mode 100644
index 0000000..4e32a77
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=N;O=D
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=S;O=A b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=S;O=A
new file mode 100644
index 0000000..f670079
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=S;O=A
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=S;O=D b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=S;O=D
new file mode 100644
index 0000000..cbacfe0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/UBConf/tmp/index.html@C=S;O=D
@@ -0,0 +1,24 @@
+
+
+
+ Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp25/UBConf/tmp
+
+
diff --git a/test_data/exp978/UserAlias.txt b/test_data/Bi_CTAX/exp25/UserAlias.txt
similarity index 100%
rename from test_data/exp978/UserAlias.txt
rename to test_data/Bi_CTAX/exp25/UserAlias.txt
diff --git a/test_data/Bi_CTAX/exp25/expconf.ini b/test_data/Bi_CTAX/exp25/expconf.ini
new file mode 100644
index 0000000..7ea307e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/expconf.ini
@@ -0,0 +1,32 @@
+[Proposal]
+ID=5137
+[Experiment]
+title="Measurement of the phonon dispersion of Bismuch at high temperatures"
+users="Michael Manley and Olivier Delaire"
+localcontact="T. Hong"
+currentexpnumber=25
+[Sample]
+samplename=C32D24CuN2O14
+sampletype=crystal
+mosaic=30.000000
+[Orientation]
+ubfile=UB24Oct2011_63347PM.ini
+plusminus=-1,1,-1
+[Instrument]
+energy=5.000000
+fixed_ei_ef_mode=0
+mononame=PG002
+monodspace=3.355000
+analyzername=Pg002
+analyzerdspace=3.355000
+collimation=48.000,40.000,40.000,120.000
+[Scan]
+nextscannumber=174
+scantitle="Dispersion G-T transverse (101) zone, 150 K"
+[Preset]
+mode=normal
+defaultindex=0
+channels=clock,det1,mon1,scaled_monitor
+values=1.000000,0.000000,0.000000,20.000000
+defcountfile=""
+defcountchannel=detector
diff --git a/test_data/Bi_CTAX/exp25/history.txt b/test_data/Bi_CTAX/exp25/history.txt
new file mode 100644
index 0000000..2c5e6fe
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/history.txt
@@ -0,0 +1,449 @@
+10/24/2011 10:28 AM drive a2 0 a1 90
+10/24/2011 10:30 AM drive s2 0
+10/24/2011 10:31 AM drive s1 0.5
+10/24/2011 10:31 AM drive s1 0 s2 0.5
+10/24/2011 10:31 AM drive s2 0.7
+10/24/2011 10:32 AM zero s2 0
+10/24/2011 10:32 AM spos s2 0
+10/24/2011 10:32 AM drive s2 40
+10/24/2011 10:34 AM drive s2 60
+10/24/2011 10:34 AM drive ei 5
+10/24/2011 10:34 AM preset time 10
+10/24/2011 10:34 AM scantitle "Ni powder (1/2,1/2,1/2)"
+10/24/2011 10:34 AM scan s2 56 63 0.2
+10/24/2011 10:41 AM scantitle "Ni powder (1,0,0)"
+10/24/2011 10:41 AM scan s2 67 73 0.2
+10/24/2011 10:48 AM lattice 4.550000 4.550000 11.850000 90.000000 90.000000 120.000000
+10/24/2011 10:51 AM drive s2 59.78
+10/24/2011 10:51 AM count preset time 10
+10/24/2011 10:52 AM zero s2 0
+10/24/2011 10:52 AM spos s2 59.61
+10/24/2011 10:54 AM ef 5
+10/24/2011 10:54 AM drive e 0
+10/24/2011 10:56 AM scantitle "analyzer calibration using polyethelyne sample, open-80 mode"
+10/24/2011 10:56 AM scanrel a1 -2 2 0.2
+10/24/2011 11:04 AM scanrel a2 -5 5 0.25
+10/24/2011 11:14 AM preset time 15
+10/24/2011 11:15 AM scan ei 4.2 5.8 0.05
+10/24/2011 11:29 AM drive e 0
+10/24/2011 11:35 AM drive s1 19.653
+10/24/2011 11:35 AM drive s2 19.653
+10/24/2011 11:36 AM drive s2 61.595
+10/24/2011 11:37 AM drive s1 30
+10/24/2011 11:37 AM drive s1 40
+10/24/2011 11:38 AM drive s1 35
+10/24/2011 11:38 AM drive s1 36
+10/24/2011 11:38 AM scantitle "Bi (003) room temperature check"
+10/24/2011 11:39 AM scanrel s1 -1 1 0.1
+10/24/2011 11:39 AM drive s1 36
+10/24/2011 11:39 AM preset time 1
+10/24/2011 11:39 AM scanrel s1 -1 1 0.1
+10/24/2011 11:39 AM drive s1 36.0636
+10/24/2011 11:40 AM scanrel sgl -4 4 0.5
+10/24/2011 11:41 AM drive sgl 2
+10/24/2011 11:41 AM th2th -2 2 0.2
+10/24/2011 11:43 AM lattice a 4.550000 b 4.550000 c 11.875419
+10/24/2011 11:44 AM ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_114359AM.ini"
+10/24/2011 11:44 AM br 0.5 0.5 0
+10/24/2011 11:45 AM drive sgu 4
+10/24/2011 11:45 AM drive sgu 0
+10/24/2011 11:46 AM drive sgu -4
+10/24/2011 11:46 AM drive sgu 0
+10/24/2011 11:48 AM drive s1 -90
+10/24/2011 11:49 AM br 0 0 3
+10/24/2011 11:51 AM br 0 1 2
+10/24/2011 11:51 AM ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_115122AM.ini"
+10/24/2011 11:51 AM br 0 1 2
+10/24/2011 11:53 AM br 0 0 3
+10/24/2011 12:12 PM ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_121209PM.ini"
+10/24/2011 12:12 PM br 0.5 0 2
+10/24/2011 12:14 PM scantitle "Bi (0.5 0 2) room temperature check"
+10/24/2011 12:14 PM scanrel s1 -1 1 0.1
+10/24/2011 12:15 PM br 0.5 0 2.5
+10/24/2011 12:17 PM scanrel s1 -1 1 0.1
+10/24/2011 12:17 PM drive s1 90
+10/24/2011 12:18 PM br 1 0 0.5
+10/24/2011 12:19 PM br 1 0 -1
+10/24/2011 12:20 PM br 0.5 0 2
+10/24/2011 1:21 PM drive s1 0 sgl 0
+10/24/2011 1:24 PM calc ef 16
+10/24/2011 1:24 PM calc ef 18
+10/24/2011 1:24 PM calc ef 20
+10/24/2011 2:28 PM set_temp 300
+10/24/2011 2:36 PM drive s1 61.449
+10/24/2011 2:36 PM drive s1 62.449
+10/24/2011 2:36 PM drive s2 61.449
+10/24/2011 2:37 PM drive s1 35
+10/24/2011 2:37 PM drive s1 34
+10/24/2011 2:37 PM drive s1 33
+10/24/2011 2:37 PM scantitle "Bi (0 0 3) room temperature inside CCR check"
+10/24/2011 2:37 PM scanrel s1 -2 2 0.1
+10/24/2011 2:39 PM drive s1 33.1898
+10/24/2011 2:39 PM scanrel sgl -4 4 0.5
+10/24/2011 2:40 PM drive sgl -2.7387
+10/24/2011 2:40 PM scanrel s1 -2 2 0.1
+10/24/2011 2:42 PM drive s1 33.1749
+10/24/2011 2:42 PM th2th -2 2 0.1
+10/24/2011 2:44 PM drive s2 61.4563 s1 33.1786
+10/24/2011 2:44 PM lattice a 4.550000 b 4.550000 c 11.874153
+10/24/2011 2:44 PM ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_24432PM.ini"
+10/24/2011 2:44 PM br 0.5 0 2
+10/24/2011 2:46 PM drive s1 -30
+10/24/2011 2:47 PM drive s1 10
+10/24/2011 2:47 PM br 0.5 0 2
+10/24/2011 2:48 PM drive sgu 3
+10/24/2011 2:48 PM drive sgu 0
+10/24/2011 2:48 PM drive sgu -3
+10/24/2011 2:48 PM drive sgl 0
+10/24/2011 2:49 PM drive sgl 0
+10/24/2011 2:49 PM drive sgu 0
+10/24/2011 2:49 PM br 0 0 3
+10/24/2011 2:50 PM ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_25010PM.ini"
+10/24/2011 2:50 PM br 0.5 0 2
+10/24/2011 2:50 PM drive s1 -90
+10/24/2011 2:52 PM drive s2 0
+10/24/2011 2:53 PM br 0.5 0 2
+10/24/2011 2:55 PM drive s1 90
+10/24/2011 2:57 PM drive s1 67
+10/24/2011 2:57 PM drive s1 65
+10/24/2011 2:57 PM drive s1 65.5
+10/24/2011 2:57 PM drive s1 65.2
+10/24/2011 2:57 PM drive s1 64.8
+10/24/2011 2:58 PM scantitle "Bi (0.5 0 2) room temperature inside CCR check"
+10/24/2011 2:58 PM scanrel s1 -2 2 0.1
+10/24/2011 2:59 PM ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_25945PM.ini"
+10/24/2011 2:59 PM calc h 0.5 k 0 l 2 e 0
+10/24/2011 3:00 PM drive s1 64.68809
+10/24/2011 3:01 PM ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_30106PM.ini"
+10/24/2011 3:01 PM scanrel sgu -4 4 0.5
+10/24/2011 3:02 PM drive sgu 0.5
+10/24/2011 3:04 PM br 0 0 3
+10/24/2011 3:04 PM scantitle "Bi (0 0 3) room temperature inside CCR check"
+10/24/2011 3:04 PM scanrel sgu -4 4 0.5
+10/24/2011 3:06 PM drive sgu 0.5
+10/24/2011 3:06 PM ubcalc file "C:\User\exp25\UBConf\tmp\UB24Oct2011_30644PM.ini"
+10/24/2011 3:06 PM br 0 0 3
+10/24/2011 3:07 PM br 0.5 0 2
+10/24/2011 3:18 PM br 0 0 3
+10/24/2011 3:19 PM scantitle "Bi (0 0 3) room temperature inside CCR check with Be filter"
+10/24/2011 3:19 PM scanrel s1 -1 1 0.1
+10/24/2011 3:20 PM th2th -2 2 0.2
+10/24/2011 3:21 PM br 0 0 3
+10/24/2011 3:21 PM ei 5
+10/24/2011 3:23 PM calc ef 10
+10/24/2011 3:26 PM count preset time 60
+10/24/2011 3:27 PM mcu 91593
+10/24/2011 3:33 PM scantitle "Looking for some LA phonon in (003) along Z"
+10/24/2011 3:33 PM scan h 0 k 0 l 3.4 e -3.25 -1.75 0.25 preset mcu 1
+10/24/2011 3:42 PM scan h 0 k 0 l 3.4 e -1.75 0.25 0.25 preset mcu 1
+10/24/2011 3:55 PM scan h 0 k 0 l 3.5 e -2.6 -0.6 0.2 preset mcu 2
+10/24/2011 4:22 PM scantitle "check focusing condition for LA in (003)"
+10/24/2011 4:23 PM scan h 0 k 0 l 2.6 e -2.5 -0.5 0.25 preset mcu 1
+10/24/2011 4:36 PM scantitle "checking optical modes at Gamma (003)"
+10/24/2011 4:37 PM scan h 0 k 0 l 3 e -6.5 -5.25 0.25 preset mcu 2
+10/24/2011 4:53 PM scan h 0 k 0 l 3 e -8.5 -7.0 0.25 preset mcu 2
+10/24/2011 5:14 PM scantitle "checking for TA modes in (003) along (h00)"
+10/24/2011 5:14 PM scan h 0.2 k 0 l 3 e -3.0 -0.5 0.25 preset mcu 1
+10/24/2011 5:37 PM scan h 0.2 k 0 l 3 e -3.25 -1.6 0.15 preset mcu 2
+10/24/2011 6:04 PM br 0 0 3
+10/24/2011 6:08 PM scantitle "check LA phonon (0,0,3.4) phonon creation side"
+10/24/2011 6:08 PM scan h 0 k 0 l 3.4 e 1.0 2.0 0.2 preset mcu 1
+10/24/2011 6:13 PM scan h 0 k 0 l 2.6 e 1.0 2.0 0.2 preset mcu 1
+10/24/2011 6:21 PM drive h 0 k 0 l 2.6 e 1.5
+10/24/2011 6:21 PM count preset mcu 1
+10/24/2011 6:22 PM drive h 0 k 0 l 3.4 e -1.5
+10/24/2011 6:23 PM count preset mcu 1
+10/24/2011 6:27 PM drive h 0 k 0 l 3.2 e -0.75
+10/24/2011 6:27 PM count preset mcu 1
+10/24/2011 6:33 PM ubcalc file c:\user\exp25\ubconf\ub24oct2011_30648pm.ini
+10/24/2011 6:33 PM br 0 0 3
+10/24/2011 6:38 PM br 1 0 2
+10/24/2011 6:52 PM driverel s2 1
+10/24/2011 6:53 PM driverel s2 1
+10/24/2011 6:53 PM driverel s2 1
+10/24/2011 6:53 PM driverel s2 1
+10/24/2011 6:53 PM driverel s2 1
+10/24/2011 6:53 PM driverel s2 1
+10/24/2011 6:53 PM driverel s2 -51
+10/24/2011 6:54 PM br 1 0 2
+10/24/2011 6:59 PM br 0 0 3
+10/24/2011 7:17 PM calc h 1 k 0 l -2 e 0
+10/24/2011 7:17 PM br -1 0 2
+10/24/2011 7:24 PM br 0 0 3
+10/24/2011 7:30 PM br -1 0 2
+10/24/2011 7:33 PM scantitle "Check LA phonon at (0,0,0.4) in (-1,0,2)"
+10/24/2011 7:34 PM scan h -1 k 0 l 2.4 e -2.5 -0.5 0.25 preset mcu 1
+10/24/2011 7:46 PM scan h -1 k 0 l 2.4 e -2.5 -1.0 0.1 preset mcu 0.5
+10/24/2011 8:31 PM scantitle "LA + TA phonons in (-102) at (0,0,0.1)"
+10/24/2011 8:31 PM scan h -1 k 0 l 2.1 e -1.0 0.4 0.1 preset mcu 0.25
+10/24/2011 8:36 PM scantitle "LA + TA phonons in (-102) at (0,0,0.2)"
+10/24/2011 8:36 PM scan h -1 k 0 l 2.2 e -1.3 0.4 0.1 preset mcu 0.25
+10/24/2011 8:41 PM scantitle "LA + TA phonons in (-102) at (0,0,0.6)"
+10/24/2011 8:41 PM scan h -1 k 0 l 2.6 e -6.5 -2.0 0.1 preset mcu 0.5
+10/24/2011 9:07 PM scantitle "LA + TA phonons in (-102) at (0,0,0.9)"
+10/24/2011 9:07 PM scan h -1 k 0 l 2.9 e -7.2 -3.0 0.1 preset mcu 0.5
+10/24/2011 9:31 PM scantitle "LA + TA phonons in (-102) at (0,0,1.2)"
+10/24/2011 9:31 PM scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+10/24/2011 9:56 PM scantitle "LA + TA phonons in (-102) at (0,0,1.5)"
+10/24/2011 9:56 PM scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+10/24/2011 10:19 PM scantitle "LA + TA phonons in (-102) at (0,0,1.8)"
+10/24/2011 10:19 PM scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+10/24/2011 10:44 PM scantitle "LA + TA phonons in (-102) at (0,0,0.3)"
+10/24/2011 10:44 PM scan h -1 k 0 l 2.3 e -2.3 -1.0 0.1 preset mcu 0.25
+10/24/2011 10:48 PM scantitle "LA + TA phonons in (-102) at (0,0,0.5)"
+10/24/2011 10:48 PM scan h -1 k 0 l 2.5 e -3.0 -1.0 0.1 preset mcu 0.5
+10/24/2011 11:16 PM calc h 1 k 0 l 2 e 0
+10/24/2011 11:19 PM br 1 0 2
+10/24/2011 11:21 PM br 1 0 1
+10/24/2011 11:31 PM scantitle "Looking for acoustic modes at X point in (0.5, 0, 2)"
+10/24/2011 11:31 PM scan h 0.5 k 0 l 2 e -4.5 -2.0 0.2 preset mcu 0.5
+10/24/2011 11:39 PM scantitle "Looking for acoustic modes at X point in (1.5, 0, 0)"
+10/24/2011 11:40 PM scan h 1.5 k 0 l 0 e -4.5 -1.9 0.2 preset mcu 0.5
+10/24/2011 11:55 PM scantitle "Looking for acoustic modes at X point in (-0.5, 0, 1)"
+10/24/2011 11:55 PM scan h -0.5 k 0 l 1 e -4.5 -2.0 0.2 preset mcu 0.5
+10/25/2011 12:10 AM scantitle "Looking for acoustic modes at L point in (1.5, 0, 1.5)"
+10/25/2011 12:10 AM scan h 1.5 k 0 l 1.5 e -7.0 -4.2 0.2 preset mcu 0.5
+10/25/2011 12:20 AM scan h 1.5 k 0 l 1.5 e -8.2 -7.0 0.2 preset mcu 0.5
+10/25/2011 12:28 AM scantitle "Looking for acoustic modes at L point in (-0.5, 0, 2.5)"
+10/25/2011 12:28 AM scan h -0.5 k 0 l 2.5 e -8.2 -4.0 0.2 preset mcu 0.5
+10/25/2011 12:43 AM scantitle "Looking for acoustic modes at L point in (0.5, 0, 3.5)"
+10/25/2011 12:43 AM scan h 0.5 k 0 l 3.5 e -8.2 -4.0 0.2 preset mcu 0.5
+10/25/2011 1:07 AM scantitle "LA + TA phonons in (-102) at (0,0,0.2), add points"
+10/25/2011 1:07 AM scan h -1 k 0 l 2.2 e -1.25 -0.45 0.1 preset mcu 0.25
+10/25/2011 1:13 AM scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data"
+10/25/2011 1:13 AM scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+10/25/2011 1:26 AM scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data"
+10/25/2011 1:26 AM scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+10/25/2011 1:36 AM scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data"
+10/25/2011 1:36 AM scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+10/25/2011 2:00 AM scantitle "LA + TA phonons in (-102) at (0,0,1.5), add data"
+10/25/2011 2:00 AM scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+10/25/2011 2:24 AM scantitle "LA + TA phonons in (-102) at (0,0,1.8), add data"
+10/25/2011 2:24 AM scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+10/25/2011 2:49 AM scantitle "LA + TA phonons in (-102) at (0,0,0.3), add data"
+10/25/2011 2:49 AM scan h -1 k 0 l 2.3 e -1.75 -0.55 0.1 preset mcu 0.25
+10/25/2011 2:53 AM scantitle "Dispersion G-X in (101) zone"
+10/25/2011 2:53 AM scan h 1.5 k 0 l 0 e -5.0 -1.9 0.2 preset mcu 0.5
+10/25/2011 3:03 AM scan h 1.4 k 0 l 0.2 e -4.5 -1.9 0.1 preset mcu 1.0
+10/25/2011 3:32 AM scan h 1.3 k 0 l 0.4 e -4.2 -1.9 0.1 preset mcu 1.0
+10/25/2011 3:57 AM scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+10/25/2011 4:30 AM scan h 1.1 k 0 l 0.8 e -3.5 -0.2 0.1 preset mcu 1.0
+10/25/2011 5:06 AM scantitle "Dispersion G-T longitudinal (003) zone"
+10/25/2011 5:06 AM scan h 0 k 0 l 4.5 e -8.5 -4.0 0.1 preset mcu 1.0
+10/25/2011 5:55 AM scan h 0 k 0 l 4.2 e -7.9 -3.5 0.1 preset mcu 1.0
+10/25/2011 6:43 AM scan h 0 k 0 l 3.9 e -7.0 -2.5 0.1 preset mcu 1.0
+10/25/2011 7:32 AM scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+10/25/2011 8:15 AM scan h 0 k 0 l 3.4 e -2.5 -1.0 0.1 preset mcu 1.0
+10/25/2011 8:32 AM scan h 0 k 0 l 3.2 e -1.5 -0.3 0.05 preset mcu 1.0
+10/25/2011 8:59 AM scantitle "Dispersion G-T transverse (101) zone"
+10/25/2011 8:59 AM scan h 1 k 0 l -0.5 e -8.5 -4.0 0.1 preset mcu 1.0
+10/25/2011 9:49 AM scan h 1 k 0 l -0.2 e -7.9 -3.5 0.1 preset mcu 1.0
+10/25/2011 10:36 AM scan h 1 k 0 l 0.1 e -7.0 -2.5 0.1 preset mcu 1.0
+10/25/2011 11:30 AM scan h 1 k 0 l 0.4 e -5.0 -1.0 0.1 preset mcu 1.0
+10/25/2011 12:13 PM scan h 1 k 0 l 0.6 e -2.5 -1.0 0.1 preset mcu 1.0
+10/25/2011 12:30 PM scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+10/25/2011 12:56 PM scantitle "Dispersion G-L longitudinal (101) zone"
+10/25/2011 12:56 PM scan h 1.1 k 0 l 1.1 e -1.5 -0.3 0.05 preset mcu 1.0
+10/25/2011 1:22 PM scan h 1.2 k 0 l 1.2 e -2.5 -1.0 0.1 preset mcu 1.0
+10/25/2011 1:39 PM scan h 1.3 k 0 l 1.3 e -5.0 -1.0 0.1 preset mcu 1.0
+10/25/2011 2:22 PM scan h 1.4 k 0 l 1.4 e -7.0 -2.5 0.1 preset mcu 1.0
+10/25/2011 2:56 PM scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+10/25/2011 3:28 PM scantitle "Dispersion G-L transverse (-102) zone"
+10/25/2011 3:28 PM scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+10/25/2011 3:28 PM scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+10/25/2011 3:31 PM drive h 1 k 0 l 1 e 0
+10/25/2011 3:33 PM scantitle "Looking for TO mode at Gamma (1,0,1)"
+10/25/2011 3:33 PM scan h 1 k 0 l 1 e -10 -8.5 0.25 preset mcu 1.0
+10/25/2011 3:45 PM scan h 1 k 0 l 1 e -10.375 -8.0 0.25 preset mcu 2.0
+10/25/2011 4:17 PM scan h 1 k 0 l 1 e -7.875 -6.875 0.25 preset mcu 2.0
+10/25/2011 4:34 PM scantitle "Looking for LO mode at Gamma (1,0,1)"
+10/25/2011 4:35 PM scan h 1 k 0 l 1 e -13.5 -11.5 0.25 preset mcu 1.0
+10/25/2011 4:48 PM drive s2 60
+10/25/2011 4:49 PM drive s1 65
+10/25/2011 4:50 PM drive s2 109
+10/25/2011 4:53 PM drive ef 18.5
+10/25/2011 4:53 PM drive s2 105
+10/25/2011 4:54 PM drive s2 109
+10/25/2011 4:56 PM drive s1 90
+10/25/2011 4:56 PM drive s1 110
+10/25/2011 4:57 PM drive s1 120
+10/25/2011 4:57 PM drive s2 70
+10/25/2011 4:58 PM drive s1 100
+10/25/2011 4:58 PM scantitle "Looking for optical phonons at (2,0,2)"
+10/25/2011 4:59 PM scan h 2 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+10/25/2011 5:23 PM scantitle "Optical phonons at Gamma (104)"
+10/25/2011 5:23 PM scan h 1 k 0 l 4 e -13.5 -8.0 0.25 preset mcu 1.0
+10/25/2011 5:48 PM scantitle "Optical phonons at Gamma (003)"
+10/25/2011 5:48 PM scan h 0 k 0 l 3 e -13.5 -8.0 0.25 preset mcu 1.0
+10/25/2011 6:13 PM scantitle "Optical phonons at Gamma (-102)"
+10/25/2011 6:13 PM scan h -1 k 0 l 2 e -13.5 -8.0 0.25 preset mcu 1.0
+10/25/2011 6:37 PM scantitle "Optical phonons at L (1.5,0,1.5)"
+10/25/2011 6:37 PM scan h 1.5 k 0 l 1.5 e -13.5 -8.0 0.25 preset mcu 1.0
+10/25/2011 7:02 PM scantitle "Optical phonons at L (0.5,0,3.5)"
+10/25/2011 7:02 PM scan h 0.5 k 0 l 3.5 e -13.5 -8.0 0.25 preset mcu 1.0
+10/25/2011 7:27 PM scantitle "Optical phonons at L (-0.5,0,2.5)"
+10/25/2011 7:27 PM scan h -0.5 k 0 l 2.5 e -13.5 -8.0 0.25 preset mcu 1.0
+10/25/2011 7:52 PM scantitle "Optical phonons at X (1.5,0,0)"
+10/25/2011 7:52 PM scan h 1.5 k 0 l 0 e -13.0 -9.0 0.25 preset mcu 1.0
+10/25/2011 8:11 PM scantitle "Optical phonons at X (-0.5,0,4)"
+10/25/2011 8:11 PM scan h -0.5 k 0 l 4 e -13.0 -9.0 0.25 preset mcu 1.0
+10/25/2011 8:30 PM scantitle "Optical phonons at X (1.5,0,3)"
+10/25/2011 8:30 PM scan h 1.5 k 0 l 3 e -13.0 -9.0 0.25 preset mcu 1.0
+10/25/2011 8:49 PM scantitle "Optical phonons at T (0,0,4.5)"
+10/25/2011 8:49 PM scan h 0 k 0 l 4.5 e -14.25 -11.5 0.25 preset mcu 1.0
+10/25/2011 9:02 PM scantitle "Optical phonons at T (-1,0,3.5)"
+10/25/2011 9:02 PM scan h -1 k 0 l 3.5 e -14.25 -11.5 0.25 preset mcu 1.0
+10/25/2011 9:15 PM scantitle "Optical phonons at T (1,0,-0.5)"
+10/25/2011 9:15 PM scan h 1 k 0 l -0.5 e -14.25 -11.5 0.25 preset mcu 1.0
+10/25/2011 9:28 PM scantitle "Optical phonons at T (1,0,2.5)"
+10/25/2011 9:28 PM scan h 1 k 0 l 2.5 e -14.25 -11.5 0.25 preset mcu 1.0
+10/25/2011 9:58 PM scantitle "Looking for TO mode at Gamma (1,0,1)"
+10/25/2011 10:01 PM scan h 1 k 0 l 1 e -10.375 -7.375 0.25 preset mcu 2.0
+10/25/2011 10:50 PM scantitle "Dispersion G-L transverse (-102) zone"
+10/25/2011 10:50 PM scan h -0.9 k 0 l 2.1 e -1.5 -0.3 0.05 preset mcu 1.0
+10/25/2011 11:17 PM scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+10/26/2011 12:01 AM scan h -0.7 k 0 l 2.3 e -7.0 -2.5 0.1 preset mcu 1.0
+10/26/2011 12:50 AM scan h -0.6 k 0 l 2.4 e -7.0 -2.5 0.1 preset mcu 1.0
+10/26/2011 1:38 AM scan h -0.5 k 0 l 2.5 e -8.5 -3.5 0.1 preset mcu 1.0
+10/26/2011 2:33 AM scantitle "Optic dispersion G (101)"
+10/26/2011 2:33 AM scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+10/26/2011 4:25 AM scantitle "Optic dispersion L (1.5 0 1.5)"
+10/26/2011 4:25 AM scan h 1.5 k 0 l 1.5 e -14 -10.5 0.25 preset mcu 4.0
+10/26/2011 5:28 AM scantitle "Optic dispersion X (1.5 0 0)"
+10/26/2011 5:28 AM scan h 1.5 k 0 l 0 e -13 -9 0.25 preset mcu 4.0
+10/26/2011 6:40 AM scantitle "Optic dispersion T (0 0 4.5)"
+10/26/2011 6:40 AM scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+10/26/2011 7:47 AM scantitle "Optic dispersion T (0 0 4.5)"
+10/26/2011 7:47 AM scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+10/26/2011 10:38 AM set_temp 200
+10/26/2011 10:50 AM set_temp 373
+10/26/2011 10:52 AM drive e -2
+10/26/2011 11:00 AM set_temp 400
+10/26/2011 11:11 AM set_temp 473
+10/26/2011 11:35 AM set_temp 525
+10/26/2011 11:48 AM set_temp 520
+10/26/2011 11:51 AM set_temp 515
+10/26/2011 11:52 AM set_temp 500
+10/26/2011 11:58 AM scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data"
+10/26/2011 11:58 AM scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+10/26/2011 12:11 PM scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data"
+10/26/2011 12:11 PM scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+10/26/2011 12:20 PM scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data"
+10/26/2011 12:20 PM scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+10/26/2011 12:21 PM drive e -5
+10/26/2011 12:22 PM scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data"
+10/26/2011 12:22 PM scan h -1 k 0 l 2.6 e -2.0 0.3 0.1 preset mcu 0.5
+10/26/2011 12:35 PM scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data"
+10/26/2011 12:35 PM scan h -1 k 0 l 2.9 e -4.0 -2.5 0.1 preset mcu 0.5
+10/26/2011 12:44 PM scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data"
+10/26/2011 12:44 PM scan h -1 k 0 l 3.2 e -7.9 -3.5 0.1 preset mcu 0.5
+10/26/2011 1:08 PM scantitle "LA + TA phonons in (-102) at (0,0,1.5), add data"
+10/26/2011 1:08 PM scan h -1 k 0 l 3.5 e -8.2 -4.0 0.1 preset mcu 0.5
+10/26/2011 1:32 PM scantitle "LA + TA phonons in (-102) at (0,0,1.8), add data"
+10/26/2011 1:32 PM scan h -1 k 0 l 3.8 e -7.9 -3.5 0.1 preset mcu 0.5
+10/26/2011 1:37 PM scantitle "LA + TA phonons in (-102) at (0,0,1.5), add data"
+10/26/2011 1:38 PM scan h -1 k 0 l 3.5 e -4.0 -3.0 0.1 preset mcu 0.5
+10/26/2011 1:44 PM scantitle "LA + TA phonons in (-102) at (0,0,1.2), add data"
+10/26/2011 1:44 PM scan h -1 k 0 l 3.2 e -3.5 -3.0 0.1 preset mcu 0.5
+10/26/2011 1:49 PM scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data"
+10/26/2011 1:50 PM scan h -1 k 0 l 2.9 e -5.5 -4.0 0.1 preset mcu 0.5
+10/26/2011 1:59 PM scantitle "LA + TA phonons in (-102) at (0,0,0.6), add data"
+10/26/2011 1:59 PM scan h -1 k 0 l 2.6 e -3.0 -2.0 0.1 preset mcu 0.5
+10/26/2011 2:05 PM scantitle "LA + TA phonons in (-102) at (0,0,0.9), add data"
+10/26/2011 2:05 PM scan h -1 k 0 l 2.9 e -7.0 -5.5 0.1 preset mcu 0.5
+10/26/2011 2:23 PM scantitle "LA + TA phonons in (-102) at (0,0,1.8), add data"
+10/26/2011 2:23 PM scan h -1 k 0 l 3.8 e -7.9 -3.0 0.1 preset mcu 0.5
+10/26/2011 2:50 PM scantitle "Optic dispersion G (101)"
+10/26/2011 2:50 PM scan h 1 k 0 l 1 e -12.5 -5.0 0.25 preset mcu 4.0
+10/26/2011 4:57 PM scantitle "LA + TA phonons in (-102) at (0,0,0.3), add data"
+10/26/2011 4:57 PM scan h -1 k 0 l 2.3 e -2.3 -0.4 0.1 preset mcu 0.25
+10/26/2011 5:04 PM scantitle "Dispersion G-X in (101) zone"
+10/26/2011 5:04 PM scan h 1.5 k 0 l 0 e -5.0 -2.2 0.1 preset mcu 0.5
+10/26/2011 5:21 PM scan h 1.4 k 0 l 0.2 e -5.3 -2.5 0.1 preset mcu 1.0
+10/26/2011 5:51 PM scan h 1.3 k 0 l 0.4 e -4.2 -1.5 0.1 preset mcu 1.0
+10/26/2011 6:21 PM scan h 1.2 k 0 l 0.6 e -4.0 -1.0 0.1 preset mcu 1.0
+10/26/2011 6:53 PM scan h 1.1 k 0 l 0.8 e -1.7 -0.8 0.1 preset mcu 1.0
+10/26/2011 7:04 PM scantitle "Dispersion G-T longitudinal (003) zone"
+10/26/2011 7:04 PM scan h 0 k 0 l 3.6 e -5.0 -1.0 0.1 preset mcu 1.0
+10/26/2011 7:46 PM scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+10/26/2011 8:05 PM calc h 0 k 0 l 3.4 e -2.5
+10/26/2011 8:05 PM drive h 0 k 0 l 3.4 e -2.5
+10/26/2011 8:08 PM drive h 0 k 0 l 3.4 e -2.5
+10/26/2011 8:09 PM drive s1 0 s2 40
+10/26/2011 8:09 PM drive s1 23.74
+10/26/2011 8:09 PM drive s1 23.74948
+10/26/2011 8:10 PM drive s2 0
+10/26/2011 8:12 PM drive s2 71.47332
+10/26/2011 8:16 PM scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+10/26/2011 8:41 PM scan h 0 k 0 l 3.2 e -1.5 0.0 0.05 preset mcu 1.0
+10/26/2011 9:13 PM scantitle "Dispersion G-T transverse (101) zone"
+10/26/2011 9:13 PM scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 1.0
+10/26/2011 9:55 PM scan h 1 k 0 l -0.2 e -6.0 -3.0 0.1 preset mcu 1.0
+10/26/2011 10:27 PM scan h 1 k 0 l 0.1 e -5.0 -2.3 0.1 preset mcu 1.0
+10/26/2011 10:56 PM scan h 1 k 0 l 0.4 e -4.0 -1.0 0.1 preset mcu 1.0
+10/26/2011 11:28 PM scan h 1 k 0 l 0.6 e -2.5 -0.7 0.1 preset mcu 1.0
+10/26/2011 11:48 PM scan h 1 k 0 l 0.8 e -1.5 -0.3 0.05 preset mcu 1.0
+10/27/2011 12:14 AM scantitle "Dispersion G-L longitudinal (101) zone"
+10/27/2011 12:14 AM scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 1.0
+10/27/2011 12:42 AM scan h 1.2 k 0 l 1.2 e -5.5 -2.5 0.1 preset mcu 1.0
+10/27/2011 1:14 AM scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 1.0
+10/27/2011 1:46 AM scan h 1.4 k 0 l 1.4 e -7.0 -5.0 0.1 preset mcu 1.0
+10/27/2011 2:07 AM scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+10/27/2011 2:39 AM scantitle "Dispersion G-L transverse (-102) zone"
+10/27/2011 2:39 AM scan h -0.9 k 0 l 2.1 e -2.0 -0.6 0.05 preset mcu 1.0
+10/27/2011 3:09 AM scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+10/27/2011 3:52 AM scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 1.0
+10/27/2011 4:39 AM scan h -0.6 k 0 l 2.4 e -8.5 -4.5 0.1 preset mcu 1.0
+10/27/2011 5:21 AM scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 1.0
+10/27/2011 6:08 AM scantitle "Optic dispersion L (1.5 0 1.5)"
+10/27/2011 6:08 AM scan h 1.5 k 0 l 1.5 e -15 -10.5 0.25 preset mcu 4.0
+10/27/2011 7:23 AM scantitle "Optic dispersion X (1.5 0 0)"
+10/27/2011 7:23 AM scan h 1.5 k 0 l 0 e -15 -9 0.25 preset mcu 4.0
+10/27/2011 9:02 AM scantitle "Optic dispersion T (0 0 4.5)"
+10/27/2011 9:02 AM scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+10/27/2011 10:05 AM scantitle "Optic dispersion T (0 0 4.5)"
+10/27/2011 10:05 AM scan h 0 k 0 l 4.5 e -14.5 -11.0 0.25 preset mcu 4.0
+10/27/2011 11:36 AM scantitle "Dispersion G-L transverse (-102) zone"
+10/27/2011 11:38 AM scan h -0.9 k 0 l 2.1 e -3.0 -2.0 0.05 preset mcu 1.0
+10/27/2011 12:03 PM scantitle "Dispersion G-T longitudinal (003) zone"
+10/27/2011 12:04 PM scan h 0 k 0 l 3.4 e -2.5 -0.5 0.1 preset mcu 1.0
+10/27/2011 12:32 PM set_temp 383
+10/27/2011 1:12 PM scantitle "TO at G (101)"
+10/27/2011 1:12 PM scan h 1 k 0 l 1 e -13.5 -7.0 0.25 preset mcu 4.0
+10/27/2011 3:02 PM scantitle "LA at X (1.5 0 1.5)"
+10/27/2011 3:02 PM scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 1.0
+10/27/2011 3:34 PM scantitle "LA at L (1.5 0 0)"
+10/27/2011 3:34 PM scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 0.5
+10/27/2011 3:40 PM scantitle "Dispersion G-L transverse (-102) zone"
+10/27/2011 3:40 PM scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+10/27/2011 4:38 PM scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 1.0
+10/27/2011 4:39 PM set_temp 400
+10/27/2011 4:52 PM set_temp 300
+10/27/2011 5:15 PM scantitle "TO at X (1.5,0,0), add data, T=300K"
+10/27/2011 5:15 PM scan h 1.5 k 0 l 0 e -15.0 -13.0 0.25 preset mcu 4.0
+10/27/2011 5:52 PM scantitle "Optic dispersion L (1.5 0 1.5), add data, 300K"
+10/27/2011 5:52 PM scan h 1.5 k 0 l 1.5 e -15 -14 0.25 preset mcu 4.0
+10/27/2011 6:12 PM scantitle "Optic dispersion T (0 0 4.5), add data, 300K"
+10/27/2011 6:12 PM scan h 0 k 0 l 4.5 e -16 -14.5 0.25 preset mcu 4.0
+10/27/2011 6:46 PM set_temp 150
+10/27/2011 9:16 PM scantitle "TO at G (101), 150 K"
+10/27/2011 9:16 PM scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12.0
+10/28/2011 1:36 AM scantitle "LA at L (1.5 0 1.5), 150 K"
+10/28/2011 1:36 AM scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3.0
+10/28/2011 2:18 AM scantitle "LA at X (1.5 0 0), 150 K"
+10/28/2011 2:18 AM scan h 1.5 k 0 l 0 e -5 -2.5 0.25 preset mcu 1
+10/28/2011 2:28 AM scantitle "Dispersion G-L transverse (-102) zone, 150 K"
+10/28/2011 2:28 AM scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 1.0
+10/28/2011 3:17 AM scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+10/28/2011 4:49 AM scan h -0.5 k 0 l 2.5 e -9.5 -5.0 0.1 preset mcu 2.0
+10/28/2011 6:21 AM scantitle "Dispersion G-L longitudinal (101) zone, 150 K"
+10/28/2011 6:21 AM scan h 1.1 k 0 l 1.1 e -2.0 -0.7 0.05 preset mcu 2.0
+10/28/2011 7:16 AM scan h 1.3 k 0 l 1.3 e -6.5 -3.5 0.1 preset mcu 2.0
+10/28/2011 8:18 AM scan h 1.5 k 0 l 1.5 e -8.5 -5.5 0.1 preset mcu 2.0
+10/28/2011 9:19 AM scantitle "Dispersion G-T transverse (101) zone, 150 K"
+10/28/2011 9:19 AM scan h 1 k 0 l -0.5 e -6.5 -2.5 0.1 preset mcu 2.0
+10/28/2011 10:10 AM set_temp 300
+10/28/2011 10:14 AM drive sgl 0 sgu 0
+10/28/2011 10:15 AM drive e 0
+10/28/2011 10:27 AM initialize
+10/28/2011 10:28 AM begin
diff --git a/test_data/Bi_CTAX/exp25/index.html b/test_data/Bi_CTAX/exp25/index.html
new file mode 100644
index 0000000..11601eb
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/Bi_CTAX/exp25/index.html@C=D;O=A b/test_data/Bi_CTAX/exp25/index.html@C=D;O=A
new file mode 100644
index 0000000..bef4566
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html@C=D;O=A
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/Bi_CTAX/exp25/index.html@C=D;O=D b/test_data/Bi_CTAX/exp25/index.html@C=D;O=D
new file mode 100644
index 0000000..d58cdc0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html@C=D;O=D
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/Bi_CTAX/exp25/index.html@C=M;O=A b/test_data/Bi_CTAX/exp25/index.html@C=M;O=A
new file mode 100644
index 0000000..dbe1bbd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html@C=M;O=A
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/Bi_CTAX/exp25/index.html@C=M;O=D b/test_data/Bi_CTAX/exp25/index.html@C=M;O=D
new file mode 100644
index 0000000..b716667
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html@C=M;O=D
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/Bi_CTAX/exp25/index.html@C=N;O=A b/test_data/Bi_CTAX/exp25/index.html@C=N;O=A
new file mode 100644
index 0000000..11601eb
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html@C=N;O=A
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/Bi_CTAX/exp25/index.html@C=N;O=D b/test_data/Bi_CTAX/exp25/index.html@C=N;O=D
new file mode 100644
index 0000000..d58cdc0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html@C=N;O=D
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/Bi_CTAX/exp25/index.html@C=S;O=A b/test_data/Bi_CTAX/exp25/index.html@C=S;O=A
new file mode 100644
index 0000000..280d15c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html@C=S;O=A
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/Bi_CTAX/exp25/index.html@C=S;O=D b/test_data/Bi_CTAX/exp25/index.html@C=S;O=D
new file mode 100644
index 0000000..787f19f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp25/index.html@C=S;O=D
@@ -0,0 +1,26 @@
+
+
+
+ Index of /user_data/cg4c/exp25
+
+
+Index of /user_data/cg4c/exp25
+
+
diff --git a/test_data/exp978/webcontrol.ini b/test_data/Bi_CTAX/exp25/webcontrol.ini
similarity index 100%
rename from test_data/exp978/webcontrol.ini
rename to test_data/Bi_CTAX/exp25/webcontrol.ini
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html b/test_data/Bi_CTAX/exp50/Calibration/index.html
new file mode 100644
index 0000000..5fde27b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html@C=D;O=A b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=D;O=A
new file mode 100644
index 0000000..5e12be3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=D;O=A
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html@C=D;O=D b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=D;O=D
new file mode 100644
index 0000000..77de42e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=D;O=D
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html@C=M;O=A b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=M;O=A
new file mode 100644
index 0000000..dadbc43
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=M;O=A
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html@C=M;O=D b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=M;O=D
new file mode 100644
index 0000000..77de42e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=M;O=D
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html@C=N;O=A b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=N;O=A
new file mode 100644
index 0000000..5fde27b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=N;O=A
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html@C=N;O=D b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=N;O=D
new file mode 100644
index 0000000..77de42e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=N;O=D
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html@C=S;O=A b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=S;O=A
new file mode 100644
index 0000000..cfb6f39
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=S;O=A
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Calibration/index.html@C=S;O=D b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=S;O=D
new file mode 100644
index 0000000..77de42e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Calibration/index.html@C=S;O=D
@@ -0,0 +1,13 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Calibration
+
+
+Index of /user_data/cg4c/exp50/Calibration
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/CountLog.txt b/test_data/Bi_CTAX/exp50/CountLog.txt
new file mode 100644
index 0000000..e69de29
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0001.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0001.dat
new file mode 100644
index 0000000..20f78c0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0001.dat
@@ -0,0 +1,53 @@
+# scan = 1
+# date = 6/21/2012
+# time = 11:07:38 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 75.000 20857.000 10.323 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 0.7246 0.7246 0.5449 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 56.2000 10.000 84.000 20628.000 10.209 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 0.7263 0.7263 0.5485 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 56.4000 10.000 83.000 20590.000 10.190 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 0.7280 0.7280 0.5521 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 56.6000 10.000 69.000 20480.000 10.136 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 0.7297 0.7297 0.5557 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 56.8000 10.000 83.000 20458.000 10.125 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 0.7314 0.7314 0.5593 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 57.0000 10.000 93.000 20743.000 10.266 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 0.7331 0.7331 0.5629 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 57.2000 10.000 115.000 20641.000 10.216 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 0.7347 0.7347 0.5665 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 57.4000 10.000 128.000 20605.000 10.198 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 0.7364 0.7364 0.5701 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 57.6000 10.000 165.000 20358.000 10.076 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 0.7380 0.7380 0.5738 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 57.8000 10.000 177.000 20713.000 10.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 0.7396 0.7396 0.5774 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 58.0000 10.000 212.000 20300.000 10.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 0.7413 0.7413 0.5811 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 58.2000 10.000 201.000 20368.000 10.081 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 0.7429 0.7429 0.5847 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 58.4000 10.000 167.000 20407.000 10.100 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 0.7445 0.7445 0.5884 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 58.6000 10.000 114.000 20364.000 10.079 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 0.7461 0.7461 0.5921 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 58.8000 10.000 89.000 20379.000 10.086 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 0.7477 0.7477 0.5958 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 59.0000 10.000 88.000 20707.000 10.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 0.7492 0.7492 0.5995 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 59.2000 10.000 71.000 20563.000 10.177 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 0.7508 0.7508 0.6032 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 59.4000 10.000 75.000 20218.000 10.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 0.7524 0.7524 0.6069 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 59.6000 7.546 57.000 15528.000 7.685 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 0.7539 0.7539 0.6106 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 2146
+# Center of Mass = 57.824138+/-1.765375
+# Full Width Half-Maximum = 1.849465+/-0.706357
+# 11:11:25 AM 6/21/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0002.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0002.dat
new file mode 100644
index 0000000..e5050b3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0002.dat
@@ -0,0 +1,70 @@
+# scan = 2
+# date = 6/21/2012
+# time = 11:13:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 354.000 20489.000 10.140 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 0.7246 0.7246 0.5449 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 56.2000 10.000 343.000 20541.000 10.166 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 0.7263 0.7263 0.5485 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 56.4000 10.000 326.000 20682.000 10.236 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 0.7280 0.7280 0.5521 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 56.6000 10.000 338.000 20530.000 10.161 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 0.7297 0.7297 0.5557 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 56.8000 10.000 350.000 20854.000 10.321 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 0.7314 0.7314 0.5593 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 57.0000 10.000 387.000 20468.000 10.130 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 0.7331 0.7331 0.5629 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 57.2000 10.000 386.000 20357.000 10.075 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 0.7347 0.7347 0.5665 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 57.4000 10.000 370.000 20525.000 10.158 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 0.7364 0.7364 0.5701 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 57.6000 10.000 368.000 20430.000 10.111 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 0.7380 0.7380 0.5738 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 57.8000 10.000 369.000 20494.000 10.143 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 0.7396 0.7396 0.5774 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 58.0000 10.000 400.000 20384.000 10.088 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 0.7413 0.7413 0.5811 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 58.2000 10.000 380.000 20710.000 10.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 0.7429 0.7429 0.5847 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 58.4000 10.000 365.000 20707.000 10.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 0.7445 0.7445 0.5884 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 58.6000 10.000 399.000 20643.000 10.217 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 0.7461 0.7461 0.5921 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 58.8000 10.000 575.000 20466.000 10.129 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 0.7477 0.7477 0.5958 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 59.0000 10.000 756.000 20505.000 10.148 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 0.7492 0.7492 0.5995 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 59.2000 10.000 1083.000 20255.000 10.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 0.7508 0.7508 0.6032 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 59.4000 10.000 1327.000 20406.000 10.099 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 0.7524 0.7524 0.6069 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 59.6000 10.000 1342.000 20385.000 10.089 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 0.7539 0.7539 0.6106 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 59.8000 10.000 1136.000 20457.000 10.125 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5487 0.7554 0.7554 0.6143 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 60.0000 10.000 1055.000 20195.000 9.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5534 0.7570 0.7570 0.6181 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 22 60.2000 10.000 769.000 20467.000 10.130 96.4440 142.9286 -74.1427 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5581 0.7585 0.7585 0.6218 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 23 60.4000 10.000 529.000 20405.000 10.099 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5628 0.7600 0.7600 0.6256 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 24 60.6000 10.000 398.000 20417.000 10.105 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5674 0.7615 0.7615 0.6293 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 25 60.8000 10.000 392.000 20013.000 9.905 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5721 0.7630 0.7630 0.6331 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 26 61.0000 10.000 392.000 20372.000 10.082 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5768 0.7645 0.7645 0.6368 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 27 61.2000 10.000 362.000 20472.000 10.132 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5815 0.7660 0.7660 0.6406 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 28 61.4000 10.000 388.000 20516.000 10.154 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5861 0.7674 0.7674 0.6444 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 29 61.6000 10.000 369.000 20583.000 10.187 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5908 0.7689 0.7689 0.6482 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 30 61.8000 10.000 365.000 20403.000 10.098 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5954 0.7703 0.7703 0.6520 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 31 62.0000 10.000 333.000 20474.000 10.133 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6001 0.7718 0.7718 0.6558 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 32 62.2000 10.000 387.000 20528.000 10.160 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6047 0.7732 0.7732 0.6596 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 33 62.4000 10.000 357.000 20276.000 10.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6094 0.7746 0.7746 0.6634 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 34 62.6000 10.000 359.000 20654.000 10.222 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6140 0.7760 0.7760 0.6673 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 35 62.8000 10.000 355.000 20487.000 10.139 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6186 0.7774 0.7774 0.6711 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 36 63.0000 10.000 348.000 20518.000 10.155 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6233 0.7788 0.7788 0.6749 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 18512
+# Center of Mass = 59.531126+/-0.618908
+# Full Width Half-Maximum = 3.498862+/-0.177179
+# 11:20:48 AM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0003.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0003.dat
new file mode 100644
index 0000000..200933b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0003.dat
@@ -0,0 +1,65 @@
+# scan = 3
+# date = 6/21/2012
+# time = 11:20:48 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s2 67 73 0.2
+# builtin_command = scan s2 67 73 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1,0,0), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 67.0000 10.000 392.000 20589.000 10.190 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7147 0.8046 0.8046 0.7531 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 67.2000 10.000 343.000 20737.000 10.263 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7193 0.8058 0.8058 0.7571 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 67.4000 10.000 353.000 20454.000 10.123 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7238 0.8070 0.8070 0.7611 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 67.6000 10.000 374.000 20425.000 10.109 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7283 0.8081 0.8081 0.7651 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 67.8000 10.000 349.000 20199.000 9.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7328 0.8093 0.8093 0.7691 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 68.0000 10.000 340.000 20743.000 10.266 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7373 0.8104 0.8104 0.7731 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 68.2000 10.000 384.000 20419.000 10.106 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7418 0.8116 0.8116 0.7771 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 68.4000 10.000 342.000 20392.000 10.092 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7463 0.8127 0.8127 0.7811 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 68.6000 10.000 389.000 20170.000 9.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7507 0.8138 0.8138 0.7851 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 68.8000 10.000 371.000 20278.000 10.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7552 0.8149 0.8149 0.7891 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 69.0000 10.000 397.000 20267.000 10.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7597 0.8160 0.8160 0.7931 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 69.2000 10.000 487.000 20342.000 10.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7642 0.8171 0.8171 0.7972 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 69.4000 10.000 636.000 20725.000 10.257 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7686 0.8182 0.8182 0.8012 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 69.6000 10.000 759.000 20264.000 10.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7731 0.8193 0.8193 0.8053 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 69.8000 10.000 903.000 20497.000 10.144 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7775 0.8203 0.8203 0.8093 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 70.0000 10.000 874.000 20487.000 10.139 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7820 0.8214 0.8214 0.8134 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 70.2000 10.000 835.000 20386.000 10.089 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7864 0.8224 0.8224 0.8174 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 70.4000 10.000 699.000 20649.000 10.220 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7908 0.8234 0.8234 0.8215 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 70.6000 10.000 638.000 20559.000 10.175 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7953 0.8245 0.8245 0.8255 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 70.8000 10.000 548.000 20424.000 10.108 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7997 0.8255 0.8255 0.8296 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 71.0000 10.000 411.000 20422.000 10.107 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8041 0.8265 0.8265 0.8337 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 22 71.2000 10.000 403.000 20618.000 10.204 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8085 0.8274 0.8274 0.8378 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 23 71.4000 10.000 366.000 20501.000 10.146 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8129 0.8284 0.8284 0.8419 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 24 71.6000 10.000 384.000 20478.000 10.135 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8173 0.8294 0.8294 0.8460 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 25 71.8000 10.000 376.000 20490.000 10.141 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8217 0.8304 0.8304 0.8500 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 26 72.0000 10.000 377.000 20522.000 10.157 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8261 0.8313 0.8313 0.8542 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 27 72.2000 10.000 361.000 20218.000 10.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8305 0.8322 0.8322 0.8583 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 28 72.4000 10.000 361.000 20680.000 10.235 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8349 0.8332 0.8332 0.8624 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 29 72.6000 10.000 376.000 20677.000 10.233 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8392 0.8341 0.8341 0.8665 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 30 72.8000 10.000 346.000 20220.000 10.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8436 0.8350 0.8350 0.8706 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 31 73.0000 10.000 366.000 20401.000 10.097 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 14540
+# Center of Mass = 70.009959+/-0.821200
+# Full Width Half-Maximum = 3.183326+/-0.265191
+# 11:26:40 AM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0004.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0004.dat
new file mode 100644
index 0000000..5ed1e8c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0004.dat
@@ -0,0 +1,55 @@
+# scan = 4
+# date = 6/21/2012
+# time = 11:31:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel a1 -2 2 0.2
+# builtin_command = scan a1 @(a1)+-2 @(a1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 30.000000
+# def_x = a1
+# def_y = detector
+# col_headers =
+# Pt. a1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 140.9286 30.000 14.000 62068.000 30.719 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 141.1286 30.000 17.000 61556.000 30.465 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 141.3286 30.000 29.000 60759.000 30.071 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 141.5286 30.000 45.000 61390.000 30.383 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 141.7286 30.000 86.000 61297.000 30.337 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 141.9286 30.000 127.000 61134.000 30.256 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 142.1286 30.000 189.000 61139.000 30.259 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 142.3286 30.000 248.000 61523.000 30.449 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 142.5286 30.000 262.000 60847.000 30.114 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 142.7286 30.000 373.000 60895.000 30.138 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 142.9286 30.000 399.000 61304.000 30.341 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 143.1286 30.000 396.000 61229.000 30.303 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 143.3286 30.000 365.000 60906.000 30.144 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 143.5286 30.000 295.000 61295.000 30.336 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 143.7286 30.000 214.000 60993.000 30.187 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 143.9286 30.000 153.000 61026.000 30.203 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 144.1286 30.000 90.000 61337.000 30.357 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 144.3286 30.000 48.000 61220.000 30.299 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 144.5286 30.000 26.000 61137.000 30.258 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 144.7286 30.000 27.000 61430.000 30.403 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 144.9286 30.000 16.000 61634.000 30.504 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 3419
+# Center of Mass = 142.971361+/-3.457937
+# Full Width Half-Maximum = 1.409162+/-1.363653
+# 11:42:22 AM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0005.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0005.dat
new file mode 100644
index 0000000..fbd7ffb
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0005.dat
@@ -0,0 +1,60 @@
+# scan = 5
+# date = 6/21/2012
+# time = 11:44:33 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel a2 -5 5 0.4
+# builtin_command = scan a2 @(a2)+-5 @(a2)+5 0.400000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 30.000000
+# def_x = a2
+# def_y = detector
+# col_headers =
+# Pt. a2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -79.1428 30.000 3.000 60901.000 30.141 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.7996 0.7910 0.7910 0.8941 5.0000 4.4771 0.5229 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 -78.7428 30.000 0.000 61201.000 30.290 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8031 0.7943 0.7943 0.8927 5.0000 4.5152 0.4848 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 -78.3428 30.000 0.000 61195.000 30.287 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8067 0.7977 0.7977 0.8912 5.0000 4.5539 0.4461 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 -77.9428 30.000 4.000 61397.000 30.387 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8103 0.8012 0.8012 0.8897 5.0000 4.5933 0.4067 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 -77.5428 30.000 16.000 61017.000 30.198 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8140 0.8046 0.8046 0.8882 5.0000 4.6332 0.3668 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 -77.1428 30.000 36.000 61272.000 30.325 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8178 0.8082 0.8082 0.8867 5.0000 4.6738 0.3262 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 -76.7428 30.000 105.000 61613.000 30.493 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8216 0.8117 0.8117 0.8852 5.0000 4.7151 0.2849 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 -76.3428 30.000 159.000 61223.000 30.300 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8255 0.8153 0.8153 0.8836 5.0000 4.7570 0.2430 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 -75.9428 30.000 230.000 61389.000 30.383 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8294 0.8190 0.8190 0.8820 5.0000 4.7996 0.2004 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 -75.5428 30.000 340.000 61050.000 30.215 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8334 0.8226 0.8226 0.8805 5.0000 4.8428 0.1572 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 -75.1428 30.000 321.000 61793.000 30.583 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8375 0.8264 0.8264 0.8788 5.0000 4.8868 0.1132 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 -74.7428 30.000 389.000 61273.000 30.325 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8416 0.8301 0.8301 0.8772 5.0000 4.9315 0.0685 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 -74.3428 30.000 376.000 61462.000 30.419 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8458 0.8340 0.8340 0.8756 5.0000 4.9770 0.0230 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 -73.9428 30.000 397.000 61085.000 30.232 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8501 0.8378 0.8378 0.8739 5.0000 5.0232 -0.0232 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 -73.5428 30.000 392.000 61970.000 30.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8545 0.8417 0.8417 0.8722 5.0000 5.0702 -0.0702 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 -73.1428 30.000 350.000 61933.000 30.652 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8589 0.8457 0.8457 0.8705 5.0000 5.1179 -0.1179 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 -72.7428 30.000 307.000 61266.000 30.322 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8633 0.8497 0.8497 0.8688 5.0000 5.1665 -0.1665 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 -72.3428 30.000 280.000 61322.000 30.349 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8679 0.8537 0.8537 0.8670 5.0000 5.2159 -0.2159 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 -71.9428 30.000 197.000 61422.000 30.399 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8725 0.8578 0.8578 0.8652 5.0000 5.2661 -0.2661 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 -71.5428 30.000 136.000 61302.000 30.340 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8772 0.8620 0.8620 0.8634 5.0000 5.3172 -0.3172 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 -71.1428 30.000 76.000 61466.000 30.421 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8820 0.8662 0.8662 0.8616 5.0000 5.3692 -0.3692 1.0000 504.9990 0.0000 0.0000 300.000
+ 22 -70.7428 30.000 26.000 61172.000 30.275 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8869 0.8705 0.8705 0.8598 5.0000 5.4220 -0.4220 1.0000 504.9990 0.0000 0.0000 300.000
+ 23 -70.3428 30.000 15.000 60734.000 30.058 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8918 0.8748 0.8748 0.8579 5.0000 5.4758 -0.4758 1.0000 504.9990 0.0000 0.0000 300.000
+ 24 -69.9428 30.000 1.000 61380.000 30.378 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8969 0.8791 0.8791 0.8560 5.0000 5.5305 -0.5305 1.0000 504.9990 0.0000 0.0000 300.000
+ 25 -69.5428 30.000 2.000 61053.000 30.216 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.9020 0.8835 0.8835 0.8541 5.0000 5.5862 -0.5862 1.0000 504.9990 0.0000 0.0000 300.000
+ 26 -69.1428 30.000 1.000 61678.000 30.526 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.9072 0.8880 0.8880 0.8522 5.0000 5.6429 -0.6429 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 4159
+# Center of Mass = -74.036476+/-1.623715
+# Full Width Half-Maximum = 2.964343+/-0.701010
+# 11:59:27 AM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0006.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0006.dat
new file mode 100644
index 0000000..fd30504
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0006.dat
@@ -0,0 +1,59 @@
+# scan = 6
+# date = 6/21/2012
+# time = 12:02:13 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.8 e -0.6 0.6 0.05 preset mcu 1
+# builtin_command = scan q 1.8 e -0.6 0.6 0.05 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.8000 -0.6000 56.713 6.000 122754.000 1.000 102.8211 140.0142 -79.9715 0.6359 0.0000 36.2000 0.0000 73.3597 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8375 0.8375 0.8056 4.4000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 1.8000 -0.5500 56.683 7.000 122754.000 1.000 102.2429 140.2844 -79.4312 0.6359 0.0000 36.0960 0.0000 73.1391 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8365 0.8365 0.8076 4.4500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 1.8000 -0.5000 56.478 14.000 122754.000 1.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 0.0000 72.9202 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8355 0.8355 0.8096 4.5000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 1.8000 -0.4500 55.980 13.000 122754.000 1.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 0.0000 72.7029 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8346 0.8346 0.8117 4.5500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 1.8000 -0.4000 55.988 12.000 122754.000 1.000 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 0.0000 72.4872 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8336 0.8336 0.8137 4.6000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 1.8000 -0.3500 55.647 12.000 122754.000 1.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 0.0000 72.2730 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8326 0.8326 0.8157 4.6500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 1.8000 -0.3000 55.430 12.000 122754.000 1.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 0.0000 72.0603 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8316 0.8316 0.8177 4.7000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 1.8000 -0.2500 55.156 35.000 122754.000 1.000 98.9472 141.7955 -76.4089 0.6359 0.0000 35.4800 0.0000 71.8492 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8306 0.8306 0.8198 4.7500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 1.8000 -0.2000 55.326 93.000 122754.000 1.000 98.4321 142.0306 -75.9388 0.6359 0.0000 35.3800 0.0000 71.6394 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8296 0.8296 0.8218 4.8000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 1.8000 -0.1500 55.290 321.000 122754.000 1.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 0.0000 71.4311 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8286 0.8286 0.8238 4.8500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 1.8000 -0.1000 56.786 658.000 122754.000 1.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 0.0000 71.2242 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8276 0.8276 0.8258 4.9000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 1.8000 -0.0500 58.424 840.000 122754.000 1.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 0.0000 71.0186 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8266 0.8266 0.8279 4.9500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 1.8000 0.0000 59.889 793.000 122754.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 70.8142 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8255 0.8255 0.8299 5.0000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 1.8000 0.0500 61.527 731.000 122754.000 1.000 95.9741 143.1431 -73.7138 0.6359 0.0000 34.8880 0.0000 70.6112 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8245 0.8245 0.8319 5.0500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 1.8000 0.1000 62.495 601.000 122754.000 1.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 0.0000 70.4095 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8235 0.8235 0.8340 5.1000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 1.8000 0.1500 61.784 435.000 122754.000 1.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 0.0000 70.2090 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8225 0.8225 0.8360 5.1500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 1.8000 0.2000 60.743 255.000 122754.000 1.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 0.0000 70.0097 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8214 0.8214 0.8380 5.2000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 1.8000 0.2500 59.576 124.000 122754.000 1.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 0.0000 69.8115 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8204 0.8204 0.8401 5.2500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 1.8000 0.3000 59.047 56.000 122754.000 1.000 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 0.0000 69.6146 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8193 0.8193 0.8421 5.3000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 1.8000 0.3500 59.500 22.000 122754.000 1.000 93.2479 144.3552 -71.2895 0.6359 0.0000 34.3120 0.0000 69.4187 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8183 0.8183 0.8441 5.3500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 1.8000 0.4000 59.306 16.000 122754.000 1.000 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 0.0000 69.2240 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8172 0.8172 0.8462 5.4000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 22 1.8000 0.4500 59.080 15.000 122754.000 1.000 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 0.0000 69.0303 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8162 0.8162 0.8482 5.4500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 23 1.8000 0.5000 58.981 20.000 122754.000 1.000 91.9600 144.9174 -70.1652 0.6359 0.0000 34.0280 0.0000 68.8377 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8151 0.8151 0.8502 5.5000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 24 1.8000 0.5500 59.152 9.000 122754.000 1.000 91.5504 145.0989 -69.8022 0.6359 0.0000 33.9360 0.0000 68.6461 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8141 0.8141 0.8522 5.5500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 25 1.8000 0.6000 59.035 7.000 122754.000 1.000 91.1444 145.2776 -69.4449 0.6359 0.0000 33.8440 0.0000 68.4556 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8130 0.8130 0.8543 5.6000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 5107
+# Center of Mass = 0.016546+/-0.001931
+# Full Width Half-Maximum = 0.271975+/-0.004929
+# 12:30:38 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0007.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0007.dat
new file mode 100644
index 0000000..e631f0f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0007.dat
@@ -0,0 +1,55 @@
+# scan = 7
+# date = 6/21/2012
+# time = 12:35:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.8 e -0.5 0.5 0.05 preset mcu 0.5
+# builtin_command = scan q 1.8 e -0.5 0.5 0.05 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.8000 -0.5000 28.056 5.000 61377.000 0.500 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 0.0000 72.9202 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8355 0.8355 0.8096 4.5000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 1.8000 -0.4500 27.845 6.000 61377.000 0.500 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 0.0000 72.7029 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8346 0.8346 0.8117 4.5500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 1.8000 -0.4000 27.896 5.000 61377.000 0.500 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 0.0000 72.4872 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8336 0.8336 0.8137 4.6000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 1.8000 -0.3500 27.899 5.000 61377.000 0.500 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 0.0000 72.2730 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8326 0.8326 0.8157 4.6500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 1.8000 -0.3000 27.861 9.000 61377.000 0.500 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 0.0000 72.0603 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8316 0.8316 0.8177 4.7000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 1.8000 -0.2500 27.569 18.000 61377.000 0.500 98.9472 141.7955 -76.4090 0.6359 0.0000 35.4800 0.0000 71.8492 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8306 0.8306 0.8198 4.7500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 1.8000 -0.2000 27.636 77.000 61377.000 0.500 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 0.0000 71.6394 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8296 0.8296 0.8218 4.8000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 1.8000 -0.1500 27.503 213.000 61377.000 0.500 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 0.0000 71.4311 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8286 0.8286 0.8238 4.8500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 1.8000 -0.1000 28.353 360.000 61377.000 0.500 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 0.0000 71.2242 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8276 0.8276 0.8258 4.9000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 1.8000 -0.0500 29.238 437.000 61377.000 0.500 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 0.0000 71.0186 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8266 0.8266 0.8279 4.9500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 1.8000 0.0000 30.300 392.000 61377.000 0.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 70.8142 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8255 0.8255 0.8299 5.0000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 1.8000 0.0500 30.849 306.000 61377.000 0.500 95.9741 143.1431 -73.7138 0.6359 0.0000 34.8880 0.0000 70.6112 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8245 0.8245 0.8319 5.0500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 1.8000 0.1000 30.986 272.000 61377.000 0.500 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 0.0000 70.4095 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8235 0.8235 0.8340 5.1000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 1.8000 0.1500 30.910 174.000 61377.000 0.500 95.0287 143.5610 -72.8780 0.6359 0.0000 34.6920 0.0000 70.2090 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8225 0.8225 0.8360 5.1500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 1.8000 0.2000 30.508 98.000 61377.000 0.500 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 0.0000 70.0097 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8214 0.8214 0.8380 5.2000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 1.8000 0.2500 30.028 36.000 61377.000 0.500 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 0.0000 69.8116 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8204 0.8204 0.8401 5.2500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 1.8000 0.3000 29.721 19.000 61377.000 0.500 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 0.0000 69.6146 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8193 0.8193 0.8421 5.3000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 1.8000 0.3500 29.401 8.000 61377.000 0.500 93.2479 144.3552 -71.2896 0.6359 0.0000 34.3120 0.0000 69.4187 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8183 0.8183 0.8441 5.3500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 1.8000 0.4000 29.689 8.000 61377.000 0.500 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 0.0000 69.2240 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8172 0.8172 0.8462 5.4000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 1.8000 0.4500 29.510 3.000 61377.000 0.500 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 0.0000 69.0303 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8162 0.8162 0.8482 5.4500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 1.8000 0.5000 29.787 3.000 61377.000 0.500 91.9600 144.9174 -70.1651 0.6359 0.0000 34.0280 0.0000 68.8377 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8151 0.8151 0.8502 5.5000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 2454
+# Center of Mass = -0.003912+/-0.002489
+# Full Width Half-Maximum = 0.246367+/-0.005805
+# 12:48:52 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0008.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0008.dat
new file mode 100644
index 0000000..4130301
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0008.dat
@@ -0,0 +1,55 @@
+# scan = 8
+# date = 6/21/2012
+# time = 2:30:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -2 2 0.2
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 22.5000 1.000 23.000 2041.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9746 0.0000 -0.6120 5.0000 5.0000 0.0000 155.3370 150.9550 0.0000 0.0000 152.000
+ 2 22.7000 1.000 52.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9739 0.0000 -0.6223 5.0000 5.0000 0.0000 155.3250 150.7390 0.0000 0.0000 152.000
+ 3 22.9000 1.000 56.000 2008.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9732 0.0000 -0.6325 5.0000 5.0000 0.0000 155.3110 150.9960 0.0000 0.0000 152.000
+ 4 23.1000 1.000 107.000 2046.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9724 0.0000 -0.6428 5.0000 5.0000 0.0000 155.2970 151.0160 0.0000 0.0000 152.000
+ 5 23.3000 1.000 142.000 2090.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9717 0.0000 -0.6530 5.0000 5.0000 0.0000 155.2840 151.1650 0.0000 0.0000 152.000
+ 6 23.5000 1.000 252.000 2079.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9709 0.0000 -0.6632 5.0000 5.0000 0.0000 155.2740 150.8170 0.0000 0.0000 152.000
+ 7 23.7000 1.000 461.000 2101.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9701 0.0000 -0.6734 5.0000 5.0000 0.0000 155.2570 150.8320 0.0000 0.0000 152.000
+ 8 23.9000 1.000 878.000 2121.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9693 0.0000 -0.6836 5.0000 5.0000 0.0000 155.2470 151.0810 0.0000 0.0000 152.000
+ 9 24.1000 1.000 2157.000 2126.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9685 0.0000 -0.6938 5.0000 5.0000 0.0000 155.2340 151.1190 0.0000 0.0000 152.000
+ 10 24.3000 1.000 8190.000 2134.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9677 0.0000 -0.7040 5.0000 5.0000 0.0000 155.2240 151.0760 0.0000 0.0000 152.000
+ 11 24.5000 1.000 44131.000 2101.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9669 0.0000 -0.7142 5.0000 5.0000 0.0000 155.2100 150.9170 0.0000 0.0000 152.000
+ 12 24.7000 1.000 85218.000 2096.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9661 0.0000 -0.7243 5.0000 5.0000 0.0000 155.1990 150.8960 0.0000 0.0000 152.000
+ 13 24.9000 1.000 62584.000 2046.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9652 0.0000 -0.7345 5.0000 5.0000 0.0000 155.1860 151.0160 0.0000 0.0000 152.000
+ 14 25.1000 1.000 16779.000 2063.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9644 0.0000 -0.7446 5.0000 5.0000 0.0000 155.1740 150.9460 0.0000 0.0000 152.000
+ 15 25.3000 1.000 3302.000 2068.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9635 0.0000 -0.7548 5.0000 5.0000 0.0000 155.1630 151.0090 0.0000 0.0000 152.000
+ 16 25.5000 1.000 1001.000 2045.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9626 0.0000 -0.7649 5.0000 5.0000 0.0000 155.1500 151.1280 0.0000 0.0000 152.000
+ 17 25.7000 1.000 476.000 2094.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9617 0.0000 -0.7750 5.0000 5.0000 0.0000 155.1370 151.2910 0.0000 0.0000 152.000
+ 18 25.9000 1.000 273.000 2055.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9608 0.0000 -0.7851 5.0000 5.0000 0.0000 155.1250 151.2360 0.0000 0.0000 152.000
+ 19 26.1000 1.000 166.000 2109.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9599 0.0000 -0.7953 5.0000 5.0000 0.0000 155.1130 151.0560 0.0000 0.0000 152.000
+ 20 26.3000 1.000 112.000 2095.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9590 0.0000 -0.8053 5.0000 5.0000 0.0000 155.1050 151.0970 0.0000 0.0000 152.000
+ 21 26.5000 1.000 65.000 2065.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9581 0.0000 -0.8154 5.0000 5.0000 0.0000 155.0910 151.3270 0.0000 0.0000 152.000
+# Sum of Counts = 226425
+# Center of Mass = 24.734691+/-0.073514
+# Full Width Half-Maximum = 0.510075+/-0.042687
+# 2:31:16 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0009.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0009.dat
new file mode 100644
index 0000000..faecd2f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0009.dat
@@ -0,0 +1,55 @@
+# scan = 9
+# date = 6/21/2012
+# time = 2:35:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -2 2 0.2
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.4000 1.000 53.000 2032.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9374 0.0000 -1.0099 5.0000 5.0000 0.0000 154.2950 150.5330 0.0000 0.0000 152.000
+ 2 30.6000 1.000 81.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9363 0.0000 -1.0198 5.0000 5.0000 0.0000 154.2940 150.6000 0.0000 0.0000 152.000
+ 3 30.8000 1.000 133.000 2028.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9351 0.0000 -1.0296 5.0000 5.0000 0.0000 154.2900 150.2950 0.0000 0.0000 152.000
+ 4 31.0000 1.000 201.000 2040.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9339 0.0000 -1.0394 5.0000 5.0000 0.0000 154.2880 150.4450 0.0000 0.0000 152.000
+ 5 31.2000 1.000 374.000 2059.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9327 0.0000 -1.0492 5.0000 5.0000 0.0000 154.2840 150.3230 0.0000 0.0000 152.000
+ 6 31.4000 1.000 687.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9314 0.0000 -1.0590 5.0000 5.0000 0.0000 154.2810 150.2700 0.0000 0.0000 152.000
+ 7 31.6000 1.000 1289.000 2109.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9302 0.0000 -1.0688 5.0000 5.0000 0.0000 154.2800 150.3150 0.0000 0.0000 152.000
+ 8 31.8000 1.000 4121.000 2005.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9290 0.0000 -1.0786 5.0000 5.0000 0.0000 154.2770 150.2850 0.0000 0.0000 152.000
+ 9 32.0000 1.000 22537.000 2055.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9277 0.0000 -1.0884 5.0000 5.0000 0.0000 154.2720 150.4110 0.0000 0.0000 152.000
+ 10 32.2000 1.000 73338.000 2091.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9264 0.0000 -1.0981 5.0000 5.0000 0.0000 154.2720 150.4620 0.0000 0.0000 152.000
+ 11 32.4000 1.000 83143.000 2017.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9252 0.0000 -1.1079 5.0000 5.0000 0.0000 154.2680 150.4440 0.0000 0.0000 152.000
+ 12 32.6000 1.000 35249.000 2139.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9239 0.0000 -1.1176 5.0000 5.0000 0.0000 154.2650 150.6020 0.0000 0.0000 152.000
+ 13 32.8000 1.000 6772.000 2079.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9226 0.0000 -1.1273 5.0000 5.0000 0.0000 154.2620 150.3730 0.0000 0.0000 152.000
+ 14 33.0000 1.000 1677.000 1977.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9213 0.0000 -1.1370 5.0000 5.0000 0.0000 154.2600 150.3790 0.0000 0.0000 152.000
+ 15 33.2000 1.000 679.000 2147.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9199 0.0000 -1.1467 5.0000 5.0000 0.0000 154.2600 150.3480 0.0000 0.0000 152.000
+ 16 33.4000 1.000 363.000 2082.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9186 0.0000 -1.1564 5.0000 5.0000 0.0000 154.2570 150.3320 0.0000 0.0000 152.000
+ 17 33.6000 1.000 205.000 2063.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9173 0.0000 -1.1660 5.0000 5.0000 0.0000 154.2560 150.3550 0.0000 0.0000 152.000
+ 18 33.8000 1.000 122.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9159 0.0000 -1.1757 5.0000 5.0000 0.0000 154.2490 150.2890 0.0000 0.0000 152.000
+ 19 34.0000 1.000 82.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9145 0.0000 -1.1853 5.0000 5.0000 0.0000 154.2480 150.5730 0.0000 0.0000 152.000
+ 20 34.2000 1.000 55.000 2079.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9132 0.0000 -1.1949 5.0000 5.0000 0.0000 154.2470 150.5670 0.0000 0.0000 152.000
+ 21 34.4000 1.000 45.000 2027.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9118 0.0000 -1.2045 5.0000 5.0000 0.0000 154.2450 150.1850 0.0000 0.0000 152.000
+# Sum of Counts = 231206
+# Center of Mass = 32.327943+/-0.095082
+# Full Width Half-Maximum = 0.510762+/-0.054779
+# 2:35:52 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0010.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0010.dat
new file mode 100644
index 0000000..ff0fbb2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0010.dat
@@ -0,0 +1,47 @@
+# scan = 10
+# date = 6/21/2012
+# time = 2:36:08 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel sgl -4 4 0.5
+# builtin_command = scan sgl @(sgl)+-4 @(sgl)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 86590.000 2052.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9634 -0.0802 -1.1020 5.0000 5.0000 0.0000 154.2030 150.3270 0.0000 0.0000 152.000
+ 2 -3.5000 1.000 93597.000 2068.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9589 -0.0702 -1.1026 5.0000 5.0000 0.0000 154.1970 150.3440 0.0000 0.0000 152.000
+ 3 -3.0000 1.000 99142.000 2080.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9544 -0.0601 -1.1031 5.0000 5.0000 0.0000 154.1900 150.1990 0.0000 0.0000 152.000
+ 4 -2.5000 1.000 102593.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9498 -0.0501 -1.1035 5.0000 5.0000 0.0000 154.1860 150.1770 0.0000 0.0000 152.000
+ 5 -2.0000 1.000 103169.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9451 -0.0401 -1.1038 5.0000 5.0000 0.0000 154.1790 150.3930 0.0000 0.0000 152.000
+ 6 -1.5000 1.000 101449.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9403 -0.0301 -1.1041 5.0000 5.0000 0.0000 154.1740 150.3380 0.0000 0.0000 152.000
+ 7 -1.0000 1.000 98451.000 1994.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9355 -0.0201 -1.1043 5.0000 5.0000 0.0000 154.1680 150.3550 0.0000 0.0000 152.000
+ 8 -0.5000 1.000 93794.000 2020.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9306 -0.0100 -1.1044 5.0000 5.0000 0.0000 154.1630 150.1570 0.0000 0.0000 152.000
+ 9 0.0000 1.000 87745.000 2090.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9256 0.0000 -1.1045 5.0000 5.0000 0.0000 154.1590 150.0640 0.0000 0.0000 152.000
+ 10 0.5000 1.000 79510.000 2111.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9206 0.0100 -1.1044 5.0000 5.0000 0.0000 154.1520 150.4240 0.0000 0.0000 152.000
+ 11 1.0000 1.000 69997.000 2178.000 0.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9154 0.0201 -1.1043 5.0000 5.0000 0.0000 154.1450 150.4450 0.0000 0.0000 152.000
+ 12 1.5000 1.000 61703.000 2004.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9103 0.0301 -1.1041 5.0000 5.0000 0.0000 154.1400 150.3590 0.0000 0.0000 152.000
+ 13 2.0000 0.729 39251.000 1527.000 0.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9050 0.0401 -1.1038 5.0000 5.0000 0.0000 154.1350 150.2960 0.0000 0.0000 152.000
+# Sum of Counts = 1116991
+# Center of Mass = -1.298944+/-0.002385
+# Full Width Half-Maximum = 3.452924+/-0.003077
+# 2:37:06 PM 6/21/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0011.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0011.dat
new file mode 100644
index 0000000..188f114
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0011.dat
@@ -0,0 +1,55 @@
+# scan = 11
+# date = 6/21/2012
+# time = 2:37:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.3300 1.000 774.000 2039.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9514 -0.0401 -1.0550 5.0000 5.0000 0.0000 154.1090 150.5400 0.0000 0.0000 152.000
+ 2 31.4300 1.000 1058.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9507 -0.0401 -1.0599 5.0000 5.0000 0.0000 154.1090 150.2700 0.0000 0.0000 152.000
+ 3 31.5300 1.000 1533.000 2068.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9501 -0.0401 -1.0648 5.0000 5.0000 0.0000 154.1070 150.3140 0.0000 0.0000 152.000
+ 4 31.6300 1.000 2304.000 1996.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9495 -0.0401 -1.0697 5.0000 5.0000 0.0000 154.1050 150.3980 0.0000 0.0000 152.000
+ 5 31.7300 1.000 3728.000 2141.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9489 -0.0401 -1.0746 5.0000 5.0000 0.0000 154.1040 150.2160 0.0000 0.0000 152.000
+ 6 31.8300 1.000 7503.000 2112.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9483 -0.0401 -1.0795 5.0000 5.0000 0.0000 154.1030 150.4440 0.0000 0.0000 152.000
+ 7 31.9300 1.000 17457.000 2101.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9476 -0.0401 -1.0843 5.0000 5.0000 0.0000 154.1010 150.1130 0.0000 0.0000 152.000
+ 8 32.0300 1.000 41462.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9470 -0.0401 -1.0892 5.0000 5.0000 0.0000 154.0980 150.4420 0.0000 0.0000 152.000
+ 9 32.1300 1.000 73002.000 2060.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9464 -0.0401 -1.0941 5.0000 5.0000 0.0000 154.0960 150.5430 0.0000 0.0000 152.000
+ 10 32.2300 1.000 96739.000 2022.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9457 -0.0401 -1.0990 5.0000 5.0000 0.0000 154.0950 150.3620 0.0000 0.0000 152.000
+ 11 32.3300 1.000 102915.000 2037.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9451 -0.0401 -1.1038 5.0000 5.0000 0.0000 154.0930 150.6320 0.0000 0.0000 152.000
+ 12 32.4300 1.000 88421.000 2024.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9445 -0.0401 -1.1087 5.0000 5.0000 0.0000 154.0930 150.4420 0.0000 0.0000 152.000
+ 13 32.5300 1.000 60105.000 2000.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9438 -0.0401 -1.1136 5.0000 5.0000 0.0000 154.0910 150.1390 0.0000 0.0000 152.000
+ 14 32.6300 1.000 31921.000 2059.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9432 -0.0401 -1.1184 5.0000 5.0000 0.0000 154.0890 150.1080 0.0000 0.0000 152.000
+ 15 32.7300 1.000 14954.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9425 -0.0401 -1.1233 5.0000 5.0000 0.0000 154.0870 150.2840 0.0000 0.0000 152.000
+ 16 32.8300 1.000 6569.000 2015.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9419 -0.0401 -1.1281 5.0000 5.0000 0.0000 154.0870 150.3480 0.0000 0.0000 152.000
+ 17 32.9300 1.000 3263.000 2001.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9412 -0.0401 -1.1330 5.0000 5.0000 0.0000 154.0830 150.4230 0.0000 0.0000 152.000
+ 18 33.0300 1.000 1660.000 1979.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9405 -0.0401 -1.1378 5.0000 5.0000 0.0000 154.0810 150.2500 0.0000 0.0000 152.000
+ 19 33.1300 1.000 1098.000 2106.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9399 -0.0401 -1.1427 5.0000 5.0000 0.0000 154.0780 150.1620 0.0000 0.0000 152.000
+ 20 33.2300 1.000 761.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9392 -0.0401 -1.1475 5.0000 5.0000 0.0000 154.0770 150.1630 0.0000 0.0000 152.000
+ 21 33.3300 1.000 566.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9385 -0.0401 -1.1524 5.0000 5.0000 0.0000 154.0760 150.1170 0.0000 0.0000 152.000
+# Sum of Counts = 557793
+# Center of Mass = 32.313336+/-0.061188
+# Full Width Half-Maximum = 0.473659+/-0.027626
+# 2:37:54 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0012.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0012.dat
new file mode 100644
index 0000000..2328761
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0012.dat
@@ -0,0 +1,55 @@
+# scan = 12
+# date = 6/21/2012
+# time = 2:38:14 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.4560 31.3140 1.000 10.000 2041.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5406 0.9173 -0.0389 -1.0705 5.0000 5.0000 0.0000 154.0430 150.4040 0.0000 0.0000 152.000
+ 2 59.6560 31.4142 1.000 11.000 1993.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5453 0.9201 -0.0390 -1.0738 5.0000 5.0000 0.0000 154.0410 150.4890 0.0000 0.0000 152.000
+ 3 59.8560 31.5142 1.000 21.000 1984.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5500 0.9229 -0.0392 -1.0771 5.0000 5.0000 0.0000 154.0400 150.2430 0.0000 0.0000 152.000
+ 4 60.0560 31.6142 1.000 33.000 2019.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5547 0.9257 -0.0393 -1.0803 5.0000 5.0000 0.0000 154.0370 150.5520 0.0000 0.0000 152.000
+ 5 60.2560 31.7142 1.000 58.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5594 0.9285 -0.0394 -1.0836 5.0000 5.0000 0.0000 154.0350 150.3890 0.0000 0.0000 152.000
+ 6 60.4560 31.8142 1.000 217.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5641 0.9313 -0.0395 -1.0868 5.0000 5.0000 0.0000 154.0310 150.2010 0.0000 0.0000 152.000
+ 7 60.6560 31.9142 1.000 1378.000 2003.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5688 0.9341 -0.0396 -1.0901 5.0000 5.0000 0.0000 154.0300 150.4920 0.0000 0.0000 152.000
+ 8 60.8560 32.0142 1.000 7028.000 1961.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5734 0.9369 -0.0397 -1.0933 5.0000 5.0000 0.0000 154.0260 150.4980 0.0000 0.0000 152.000
+ 9 61.0560 32.1142 1.000 25939.000 2016.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5781 0.9396 -0.0399 -1.0966 5.0000 5.0000 0.0000 154.0250 149.9690 0.0000 0.0000 152.000
+ 10 61.2560 32.2142 1.000 62991.000 2097.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5828 0.9424 -0.0400 -1.0998 5.0000 5.0000 0.0000 154.0210 150.0800 0.0000 0.0000 152.000
+ 11 61.4560 32.3142 1.000 101887.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9452 -0.0401 -1.1031 5.0000 5.0000 0.0000 154.0200 150.4700 0.0000 0.0000 152.000
+ 12 61.6560 32.4142 1.000 120496.000 2025.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5921 0.9480 -0.0402 -1.1063 5.0000 5.0000 0.0000 154.0180 150.4770 0.0000 0.0000 152.000
+ 13 61.8560 32.5142 1.000 109289.000 2074.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5967 0.9507 -0.0403 -1.1095 5.0000 5.0000 0.0000 154.0140 150.4270 0.0000 0.0000 152.000
+ 14 62.0560 32.6142 1.000 71184.000 2025.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6014 0.9535 -0.0405 -1.1128 5.0000 5.0000 0.0000 154.0110 150.0170 0.0000 0.0000 152.000
+ 15 62.2560 32.7142 1.000 29317.000 2015.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6060 0.9563 -0.0406 -1.1160 5.0000 5.0000 0.0000 154.0090 150.4480 0.0000 0.0000 152.000
+ 16 62.4560 32.8142 1.000 7659.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6107 0.9590 -0.0407 -1.1192 5.0000 5.0000 0.0000 154.0060 150.4050 0.0000 0.0000 152.000
+ 17 62.6560 32.9142 1.000 1705.000 1967.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6153 0.9618 -0.0408 -1.1224 5.0000 5.0000 0.0000 154.0040 150.2630 0.0000 0.0000 152.000
+ 18 62.8560 33.0142 1.000 358.000 2051.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6199 0.9646 -0.0409 -1.1257 5.0000 5.0000 0.0000 154.0050 150.2440 0.0000 0.0000 152.000
+ 19 63.0560 33.1142 1.000 85.000 2039.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6246 0.9673 -0.0410 -1.1289 5.0000 5.0000 0.0000 154.0000 150.4100 0.0000 0.0000 152.000
+ 20 63.2560 33.2142 1.000 25.000 2028.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6292 0.9701 -0.0412 -1.1321 5.0000 5.0000 0.0000 153.9970 150.2170 0.0000 0.0000 152.000
+ 21 63.4560 33.3142 1.000 18.000 2067.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6338 0.9728 -0.0413 -1.1353 5.0000 5.0000 0.0000 153.9960 150.2910 0.0000 0.0000 152.000
+# Sum of Counts = 539709
+# Center of Mass = 61.670380+/-0.118718
+# Full Width Half-Maximum = 0.686851+/-0.069574
+# 2:39:04 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0013.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0013.dat
new file mode 100644
index 0000000..4f6ba33
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0013.dat
@@ -0,0 +1,55 @@
+# scan = 13
+# date = 6/21/2012
+# time = 2:39:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.4212 1.000 1063.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9544 -0.0402 -1.0575 5.0000 5.0000 0.0000 153.9620 150.5450 0.0000 0.0000 152.000
+ 2 31.5212 1.000 1437.000 2104.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9538 -0.0402 -1.0624 5.0000 5.0000 0.0000 153.9600 150.4160 0.0000 0.0000 152.000
+ 3 31.6212 1.000 2168.000 1989.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9532 -0.0402 -1.0674 5.0000 5.0000 0.0000 153.9580 150.5820 0.0000 0.0000 152.000
+ 4 31.7212 1.000 3216.000 2001.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9526 -0.0402 -1.0723 5.0000 5.0000 0.0000 153.9560 150.4050 0.0000 0.0000 152.000
+ 5 31.8212 1.000 5440.000 2028.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9520 -0.0402 -1.0772 5.0000 5.0000 0.0000 153.9560 150.1830 0.0000 0.0000 152.000
+ 6 31.9212 1.000 10789.000 1969.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9513 -0.0402 -1.0821 5.0000 5.0000 0.0000 153.9530 150.5230 0.0000 0.0000 152.000
+ 7 32.0212 1.000 24068.000 2050.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9507 -0.0402 -1.0870 5.0000 5.0000 0.0000 153.9520 150.4430 0.0000 0.0000 152.000
+ 8 32.1212 1.000 55154.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9501 -0.0402 -1.0919 5.0000 5.0000 0.0000 153.9500 150.4600 0.0000 0.0000 152.000
+ 9 32.2212 1.000 93562.000 1993.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9494 -0.0402 -1.0968 5.0000 5.0000 0.0000 153.9490 150.3780 0.0000 0.0000 152.000
+ 10 32.3212 1.000 116675.000 2089.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9488 -0.0402 -1.1016 5.0000 5.0000 0.0000 153.9460 150.5230 0.0000 0.0000 152.000
+ 11 32.4212 1.000 120087.000 2101.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9482 -0.0402 -1.1065 5.0000 5.0000 0.0000 153.9450 150.2850 0.0000 0.0000 152.000
+ 12 32.5212 1.000 103458.000 2041.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9475 -0.0402 -1.1114 5.0000 5.0000 0.0000 153.9430 150.5230 0.0000 0.0000 152.000
+ 13 32.6212 1.000 68304.000 2052.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9469 -0.0402 -1.1163 5.0000 5.0000 0.0000 153.9410 150.1760 0.0000 0.0000 152.000
+ 14 32.7212 1.000 33901.000 2048.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9462 -0.0402 -1.1212 5.0000 5.0000 0.0000 153.9410 150.3130 0.0000 0.0000 152.000
+ 15 32.8212 1.000 15266.000 2022.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9456 -0.0402 -1.1260 5.0000 5.0000 0.0000 153.9390 150.2870 0.0000 0.0000 152.000
+ 16 32.9212 1.000 6891.000 2054.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9449 -0.0402 -1.1309 5.0000 5.0000 0.0000 153.9370 150.4340 0.0000 0.0000 152.000
+ 17 33.0212 1.000 3337.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9443 -0.0402 -1.1358 5.0000 5.0000 0.0000 153.9350 150.4310 0.0000 0.0000 152.000
+ 18 33.1212 1.000 1921.000 2116.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9436 -0.0402 -1.1406 5.0000 5.0000 0.0000 153.9330 150.3020 0.0000 0.0000 152.000
+ 19 33.2212 1.000 1210.000 2103.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9429 -0.0402 -1.1455 5.0000 5.0000 0.0000 153.9320 150.4670 0.0000 0.0000 152.000
+ 20 33.3212 1.000 880.000 1990.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9423 -0.0402 -1.1504 5.0000 5.0000 0.0000 153.9310 150.2190 0.0000 0.0000 152.000
+ 21 33.4212 1.000 663.000 2091.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9416 -0.0402 -1.1552 5.0000 5.0000 0.0000 153.9290 150.4830 0.0000 0.0000 152.000
+# Sum of Counts = 669490
+# Center of Mass = 32.388257+/-0.055980
+# Full Width Half-Maximum = 0.477233+/-0.025245
+# 2:40:09 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0014.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0014.dat
new file mode 100644
index 0000000..48a9b7e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0014.dat
@@ -0,0 +1,55 @@
+# scan = 14
+# date = 6/21/2012
+# time = 2:42:34 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+# mode = 0
+# plane_normal = 0.034899,0.000000,0.999391
+# ubconf = UB21Jun2012_24150PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 62.7606 1.000 63.000 1998.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4883 0.0000 2.0259 5.0000 5.0000 0.0000 153.7910 150.3730 0.0000 0.0000 152.000
+ 2 62.8606 1.000 96.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4895 0.0000 2.0233 5.0000 5.0000 0.0000 153.7910 150.1750 0.0000 0.0000 152.000
+ 3 62.9606 1.000 127.000 2027.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4907 0.0000 2.0208 5.0000 5.0000 0.0000 153.7900 150.2100 0.0000 0.0000 152.000
+ 4 63.0606 1.000 165.000 2057.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4918 0.0000 2.0182 5.0000 5.0000 0.0000 153.7880 150.1420 0.0000 0.0000 152.000
+ 5 63.1606 1.000 244.000 2154.000 0.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4930 0.0000 2.0156 5.0000 5.0000 0.0000 153.7850 150.2160 0.0000 0.0000 152.000
+ 6 63.2606 1.000 372.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4942 0.0000 2.0130 5.0000 5.0000 0.0000 153.7840 150.1150 0.0000 0.0000 152.000
+ 7 63.3606 1.000 710.000 2036.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4953 0.0000 2.0104 5.0000 5.0000 0.0000 153.7830 150.3320 0.0000 0.0000 152.000
+ 8 63.4606 1.000 1569.000 2062.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4965 0.0000 2.0078 5.0000 5.0000 0.0000 153.7820 150.2610 0.0000 0.0000 152.000
+ 9 63.5606 1.000 4012.000 1978.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4977 0.0000 2.0052 5.0000 5.0000 0.0000 153.7800 150.4350 0.0000 0.0000 152.000
+ 10 63.6606 1.000 8781.000 2036.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4988 0.0000 2.0026 5.0000 5.0000 0.0000 153.7770 150.4730 0.0000 0.0000 152.000
+ 11 63.7606 1.000 14051.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 153.7760 150.4350 0.0000 0.0000 152.000
+ 12 63.8606 1.000 14335.000 2036.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5012 0.0000 1.9974 5.0000 5.0000 0.0000 153.7760 150.2540 0.0000 0.0000 152.000
+ 13 63.9606 1.000 9523.000 2097.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5023 0.0000 1.9947 5.0000 5.0000 0.0000 153.7730 150.0890 0.0000 0.0000 152.000
+ 14 64.0606 1.000 4545.000 1997.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5035 0.0000 1.9921 5.0000 5.0000 0.0000 153.7740 150.3420 0.0000 0.0000 152.000
+ 15 64.1606 1.000 2183.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5046 0.0000 1.9895 5.0000 5.0000 0.0000 153.7730 150.3830 0.0000 0.0000 152.000
+ 16 64.2606 1.000 1036.000 2001.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5058 0.0000 1.9868 5.0000 5.0000 0.0000 153.7710 150.3490 0.0000 0.0000 152.000
+ 17 64.3606 1.000 461.000 2011.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5069 0.0000 1.9842 5.0000 5.0000 0.0000 153.7680 150.4390 0.0000 0.0000 152.000
+ 18 64.4606 1.000 235.000 2029.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5081 0.0000 1.9815 5.0000 5.0000 0.0000 153.7660 150.2330 0.0000 0.0000 152.000
+ 19 64.5606 1.000 169.000 2004.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5092 0.0000 1.9788 5.0000 5.0000 0.0000 153.7640 150.3440 0.0000 0.0000 152.000
+ 20 64.6606 1.000 109.000 1972.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5104 0.0000 1.9762 5.0000 5.0000 0.0000 153.7650 150.2590 0.0000 0.0000 152.000
+ 21 64.7606 1.000 73.000 2082.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5115 0.0000 1.9735 5.0000 5.0000 0.0000 153.7650 150.3930 0.0000 0.0000 152.000
+# Sum of Counts = 62859
+# Center of Mass = 63.819559+/-0.359987
+# Full Width Half-Maximum = 0.426644+/-0.156316
+# 2:43:08 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0015.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0015.dat
new file mode 100644
index 0000000..56ac649
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0015.dat
@@ -0,0 +1,47 @@
+# scan = 15
+# date = 6/21/2012
+# time = 2:43:51 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel sgu -3 3 0.5
+# builtin_command = scan sgu @(sgu)+-3 @(sgu)+3 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+# mode = 0
+# plane_normal = 0.034899,0.000000,0.999391
+# ubconf = UB21Jun2012_24150PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -3.0000 1.000 9052.000 2041.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5137 -0.0312 2.0027 5.0000 5.0000 0.0000 153.7240 150.0890 0.0000 0.0000 152.000
+ 2 -2.5000 1.000 9918.000 1998.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5115 -0.0260 2.0022 5.0000 5.0000 0.0000 153.7160 150.1900 0.0000 0.0000 152.000
+ 3 -2.0000 1.000 10947.000 2019.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5093 -0.0208 2.0018 5.0000 5.0000 0.0000 153.7140 150.2830 0.0000 0.0000 152.000
+ 4 -1.5000 1.000 11904.000 1948.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5070 -0.0156 2.0014 5.0000 5.0000 0.0000 153.7040 150.3910 0.0000 0.0000 152.000
+ 5 -1.0000 1.000 12786.000 1934.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5047 -0.0104 2.0009 5.0000 5.0000 0.0000 153.7010 150.3860 0.0000 0.0000 152.000
+ 6 -0.5000 1.000 13247.000 1998.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5024 -0.0052 2.0005 5.0000 5.0000 0.0000 153.6970 150.4310 0.0000 0.0000 152.000
+ 7 0.0000 1.000 14047.000 2022.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 153.6920 150.2990 0.0000 0.0000 152.000
+ 8 0.5000 1.000 14691.000 2033.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4976 0.0052 1.9995 5.0000 5.0000 0.0000 153.6910 150.1790 0.0000 0.0000 152.000
+ 9 1.0000 1.000 15174.000 2109.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4951 0.0104 1.9991 5.0000 5.0000 0.0000 153.6840 150.5960 0.0000 0.0000 152.000
+ 10 1.5000 1.000 15158.000 2026.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4926 0.0157 1.9986 5.0000 5.0000 0.0000 153.6850 150.0870 0.0000 0.0000 152.000
+ 11 2.0000 1.000 15109.000 2072.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4901 0.0209 1.9981 5.0000 5.0000 0.0000 153.6830 150.0680 0.0000 0.0000 152.000
+ 12 2.5000 1.000 14850.000 1933.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4875 0.0261 1.9977 5.0000 5.0000 0.0000 153.6800 150.1750 0.0000 0.0000 152.000
+ 13 3.0000 1.000 13923.000 2064.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4848 0.0313 1.9972 5.0000 5.0000 0.0000 153.6780 150.2420 0.0000 0.0000 152.000
+# Sum of Counts = 170806
+# Center of Mass = 0.253258+/-0.004430
+# Full Width Half-Maximum = 3.591097+/-0.007768
+# 2:44:46 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0016.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0016.dat
new file mode 100644
index 0000000..de2afe8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0016.dat
@@ -0,0 +1,55 @@
+# scan = 16
+# date = 6/21/2012
+# time = 2:45:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+# mode = 0
+# plane_normal = 0.034899,0.000000,0.999391
+# ubconf = UB21Jun2012_24150PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 62.7604 1.000 68.000 2035.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4835 0.0102 2.0250 5.0000 5.0000 0.0000 153.6300 150.0230 0.0000 0.0000 152.000
+ 2 62.8604 1.000 106.000 2045.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4847 0.0102 2.0224 5.0000 5.0000 0.0000 153.6280 150.4790 0.0000 0.0000 152.000
+ 3 62.9604 1.000 113.000 2016.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4859 0.0102 2.0199 5.0000 5.0000 0.0000 153.6280 150.3270 0.0000 0.0000 152.000
+ 4 63.0604 1.000 159.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4870 0.0103 2.0173 5.0000 5.0000 0.0000 153.6260 150.1560 0.0000 0.0000 152.000
+ 5 63.1604 1.000 292.000 2007.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4882 0.0103 2.0147 5.0000 5.0000 0.0000 153.6260 150.3910 0.0000 0.0000 152.000
+ 6 63.2604 1.000 457.000 2048.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4893 0.0103 2.0121 5.0000 5.0000 0.0000 153.6240 150.4000 0.0000 0.0000 152.000
+ 7 63.3604 1.000 857.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4905 0.0103 2.0095 5.0000 5.0000 0.0000 153.6210 150.4880 0.0000 0.0000 152.000
+ 8 63.4604 1.000 1966.000 2105.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4917 0.0104 2.0069 5.0000 5.0000 0.0000 153.6210 150.4020 0.0000 0.0000 152.000
+ 9 63.5604 1.000 5077.000 2089.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4928 0.0104 2.0043 5.0000 5.0000 0.0000 153.6200 150.0940 0.0000 0.0000 152.000
+ 10 63.6604 1.000 10467.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4940 0.0104 2.0017 5.0000 5.0000 0.0000 153.6180 150.0710 0.0000 0.0000 152.000
+ 11 63.7604 1.000 15020.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4951 0.0104 1.9991 5.0000 5.0000 0.0000 153.6150 150.0250 0.0000 0.0000 152.000
+ 12 63.8604 1.000 13981.000 2092.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4963 0.0105 1.9965 5.0000 5.0000 0.0000 153.6140 150.4920 0.0000 0.0000 152.000
+ 13 63.9604 1.000 8289.000 2017.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4974 0.0105 1.9938 5.0000 5.0000 0.0000 153.6150 150.2940 0.0000 0.0000 152.000
+ 14 64.0604 1.000 3809.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4986 0.0105 1.9912 5.0000 5.0000 0.0000 153.6140 150.5450 0.0000 0.0000 152.000
+ 15 64.1604 1.000 1774.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4997 0.0105 1.9885 5.0000 5.0000 0.0000 153.6130 150.0710 0.0000 0.0000 152.000
+ 16 64.2604 1.000 815.000 2003.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5008 0.0105 1.9859 5.0000 5.0000 0.0000 153.6110 150.2020 0.0000 0.0000 152.000
+ 17 64.3604 1.000 424.000 2000.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5020 0.0106 1.9832 5.0000 5.0000 0.0000 153.6080 150.2140 0.0000 0.0000 152.000
+ 18 64.4604 1.000 236.000 1989.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5031 0.0106 1.9806 5.0000 5.0000 0.0000 153.6080 150.1540 0.0000 0.0000 152.000
+ 19 64.5604 1.000 119.000 2034.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5043 0.0106 1.9779 5.0000 5.0000 0.0000 153.6060 150.1880 0.0000 0.0000 152.000
+ 20 64.6604 1.000 88.000 2066.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5054 0.0106 1.9752 5.0000 5.0000 0.0000 153.6040 150.2190 0.0000 0.0000 152.000
+ 21 64.7604 1.000 70.000 2025.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5065 0.0107 1.9725 5.0000 5.0000 0.0000 153.6030 150.4700 0.0000 0.0000 152.000
+# Sum of Counts = 64187
+# Center of Mass = 63.794927+/-0.356106
+# Full Width Half-Maximum = 0.421894+/-0.155864
+# 2:45:50 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0017.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0017.dat
new file mode 100644
index 0000000..54392ca
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0017.dat
@@ -0,0 +1,55 @@
+# scan = 17
+# date = 6/21/2012
+# time = 2:46:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+# mode = 0
+# plane_normal = 0.034899,0.000000,0.999391
+# ubconf = UB21Jun2012_24150PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 48.5984 62.7599 1.000 2.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2784 0.4767 0.0100 1.9250 5.0000 5.0000 0.0000 153.5820 150.3750 0.0000 0.0000 152.000
+ 2 48.7984 62.8600 1.000 1.000 2020.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2834 0.4786 0.0101 1.9324 5.0000 5.0000 0.0000 153.5810 150.0570 0.0000 0.0000 152.000
+ 3 48.9984 62.9600 1.000 2.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2883 0.4804 0.0101 1.9398 5.0000 5.0000 0.0000 153.5790 150.0590 0.0000 0.0000 152.000
+ 4 49.1984 63.0600 1.000 4.000 1996.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2932 0.4823 0.0102 1.9473 5.0000 5.0000 0.0000 153.5750 150.3390 0.0000 0.0000 152.000
+ 5 49.3984 63.1600 1.000 8.000 2108.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2982 0.4841 0.0102 1.9547 5.0000 5.0000 0.0000 153.5740 150.3410 0.0000 0.0000 152.000
+ 6 49.5984 63.2600 1.000 30.000 1980.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3031 0.4859 0.0102 1.9621 5.0000 5.0000 0.0000 153.5740 150.4450 0.0000 0.0000 152.000
+ 7 49.7984 63.3600 1.000 199.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3080 0.4878 0.0103 1.9695 5.0000 5.0000 0.0000 153.5740 150.2380 0.0000 0.0000 152.000
+ 8 49.9984 63.4600 1.000 898.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3129 0.4896 0.0103 1.9769 5.0000 5.0000 0.0000 153.5730 150.0030 0.0000 0.0000 152.000
+ 9 50.1984 63.5600 1.000 3919.000 1983.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3178 0.4914 0.0104 1.9843 5.0000 5.0000 0.0000 153.5680 150.0840 0.0000 0.0000 152.000
+ 10 50.3984 63.6600 1.000 10044.000 2055.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3228 0.4933 0.0104 1.9917 5.0000 5.0000 0.0000 153.5660 150.2860 0.0000 0.0000 152.000
+ 11 50.5984 63.7600 1.000 15099.000 2084.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4951 0.0104 1.9991 5.0000 5.0000 0.0000 153.5620 150.2070 0.0000 0.0000 152.000
+ 12 50.7984 63.8600 1.000 13314.000 1975.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3326 0.4969 0.0105 2.0065 5.0000 5.0000 0.0000 153.5620 150.2970 0.0000 0.0000 152.000
+ 13 50.9984 63.9600 1.000 7366.000 2014.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3375 0.4988 0.0105 2.0138 5.0000 5.0000 0.0000 153.5620 150.1420 0.0000 0.0000 152.000
+ 14 51.1984 64.0600 1.000 2283.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3423 0.5006 0.0105 2.0212 5.0000 5.0000 0.0000 153.5570 150.1830 0.0000 0.0000 152.000
+ 15 51.3984 64.1600 1.000 484.000 2047.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3472 0.5024 0.0106 2.0286 5.0000 5.0000 0.0000 153.5550 150.2480 0.0000 0.0000 152.000
+ 16 51.5984 64.2600 1.000 112.000 1986.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3521 0.5042 0.0106 2.0359 5.0000 5.0000 0.0000 153.5550 150.2050 0.0000 0.0000 152.000
+ 17 51.7984 64.3600 1.000 34.000 1997.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3570 0.5060 0.0107 2.0433 5.0000 5.0000 0.0000 153.5520 150.1900 0.0000 0.0000 152.000
+ 18 51.9984 64.4600 1.000 9.000 2059.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3619 0.5079 0.0107 2.0506 5.0000 5.0000 0.0000 153.5490 150.4490 0.0000 0.0000 152.000
+ 19 52.1984 64.5600 1.000 5.000 1975.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3667 0.5097 0.0107 2.0579 5.0000 5.0000 0.0000 153.5470 150.5270 0.0000 0.0000 152.000
+ 20 52.3984 64.6600 1.000 4.000 1980.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3716 0.5115 0.0108 2.0653 5.0000 5.0000 0.0000 153.5470 150.2120 0.0000 0.0000 152.000
+ 21 52.5984 64.7600 1.000 1.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3765 0.5133 0.0108 2.0726 5.0000 5.0000 0.0000 153.5460 150.0740 0.0000 0.0000 152.000
+# Sum of Counts = 53818
+# Center of Mass = 50.658235+/-0.308820
+# Full Width Half-Maximum = 0.572098+/-0.191083
+# 2:46:56 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0018.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0018.dat
new file mode 100644
index 0000000..623ee21
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0018.dat
@@ -0,0 +1,43 @@
+# scan = 18
+# date = 6/21/2012
+# time = 2:47:56 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel sgl -2 2 0.5
+# builtin_command = scan sgl @(sgl)+-2 @(sgl)+2 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_24741PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 12508.000 2100.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5131 -0.0263 1.9988 5.0000 5.0000 0.0000 153.4890 150.2070 0.0000 0.0000 152.000
+ 2 -3.5000 1.000 13355.000 2037.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5099 -0.0197 1.9993 5.0000 5.0000 0.0000 153.4860 149.9580 0.0000 0.0000 152.000
+ 3 -3.0000 1.000 14712.000 2035.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5066 -0.0131 1.9997 5.0000 5.0000 0.0000 153.4810 150.1810 0.0000 0.0000 152.000
+ 4 -2.4999 1.000 15014.000 2024.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5033 -0.0066 1.9999 5.0000 5.0000 0.0000 153.4770 149.9600 0.0000 0.0000 152.000
+ 5 -2.0000 1.000 15244.000 2057.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 153.4720 149.9820 0.0000 0.0000 152.000
+ 6 -1.4999 1.000 14808.000 2044.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.4967 0.0066 1.9999 5.0000 5.0000 0.0000 153.4700 150.0840 0.0000 0.0000 152.000
+ 7 -1.0000 1.000 14473.000 2113.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.4934 0.0131 1.9997 5.0000 5.0000 0.0000 153.4670 150.2270 0.0000 0.0000 152.000
+ 8 -0.5000 1.000 13943.000 2003.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.4901 0.0197 1.9993 5.0000 5.0000 0.0000 153.4630 150.3860 0.0000 0.0000 152.000
+ 9 0.0000 1.000 12771.000 1950.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.4869 0.0263 1.9988 5.0000 5.0000 0.0000 153.4610 150.0060 0.0000 0.0000 152.000
+# Sum of Counts = 126828
+# Center of Mass = -1.991571+/-0.008656
+# Full Width Half-Maximum = 2.506295+/-0.008160
+# 2:48:33 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0019.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0019.dat
new file mode 100644
index 0000000..a825c18
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0019.dat
@@ -0,0 +1,55 @@
+# scan = 19
+# date = 6/21/2012
+# time = 2:49:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (1 0 1) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_24741PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 104.8906 1.000 201.000 2030.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9940 0.0000 1.0523 5.0000 5.0000 0.0000 153.3770 150.0670 0.0000 0.0000 152.000
+ 2 104.9906 1.000 230.000 2098.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9946 0.0000 1.0471 5.0000 5.0000 0.0000 153.3760 150.0470 0.0000 0.0000 152.000
+ 3 105.0906 1.000 315.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9953 0.0000 1.0418 5.0000 5.0000 0.0000 153.3750 150.1570 0.0000 0.0000 152.000
+ 4 105.1906 1.000 517.000 1998.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9959 0.0000 1.0366 5.0000 5.0000 0.0000 153.3740 150.3480 0.0000 0.0000 152.000
+ 5 105.2906 1.000 821.000 2011.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9965 0.0000 1.0314 5.0000 5.0000 0.0000 153.3700 150.1270 0.0000 0.0000 152.000
+ 6 105.3906 1.000 1548.000 2070.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9971 0.0000 1.0262 5.0000 5.0000 0.0000 153.3670 150.2040 0.0000 0.0000 152.000
+ 7 105.4906 1.000 3717.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9977 0.0000 1.0209 5.0000 5.0000 0.0000 153.3690 150.2100 0.0000 0.0000 152.000
+ 8 105.5906 1.000 11625.000 2076.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9982 0.0000 1.0157 5.0000 5.0000 0.0000 153.3680 150.0560 0.0000 0.0000 152.000
+ 9 105.6906 1.000 29397.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9988 0.0000 1.0105 5.0000 5.0000 0.0000 153.3650 150.2750 0.0000 0.0000 152.000
+ 10 105.7906 1.000 50967.000 1989.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9994 0.0000 1.0052 5.0000 5.0000 0.0000 153.3650 150.0610 0.0000 0.0000 152.000
+ 11 105.8906 1.000 61267.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 153.3640 150.2760 0.0000 0.0000 152.000
+ 12 105.9906 1.000 53327.000 1992.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0006 0.0000 0.9948 5.0000 5.0000 0.0000 153.3640 150.4040 0.0000 0.0000 152.000
+ 13 106.0906 1.000 33755.000 1973.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0012 0.0000 0.9895 5.0000 5.0000 0.0000 153.3620 150.1860 0.0000 0.0000 152.000
+ 14 106.1906 1.000 16174.000 2078.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0017 0.0000 0.9843 5.0000 5.0000 0.0000 153.3610 149.9340 0.0000 0.0000 152.000
+ 15 106.2906 1.000 6644.000 2061.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0023 0.0000 0.9790 5.0000 5.0000 0.0000 153.3580 149.9500 0.0000 0.0000 152.000
+ 16 106.3906 1.000 2746.000 2037.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0029 0.0000 0.9737 5.0000 5.0000 0.0000 153.3560 150.2240 0.0000 0.0000 152.000
+ 17 106.4906 1.000 1365.000 2032.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0034 0.0000 0.9685 5.0000 5.0000 0.0000 153.3560 150.1960 0.0000 0.0000 152.000
+ 18 106.5906 1.000 630.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0040 0.0000 0.9632 5.0000 5.0000 0.0000 153.3540 150.0680 0.0000 0.0000 152.000
+ 19 106.6906 1.000 323.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0046 0.0000 0.9580 5.0000 5.0000 0.0000 153.3530 150.0980 0.0000 0.0000 152.000
+ 20 106.7906 1.000 245.000 1962.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0051 0.0000 0.9527 5.0000 5.0000 0.0000 153.3530 150.2360 0.0000 0.0000 152.000
+ 21 106.8906 1.000 164.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0057 0.0000 0.9474 5.0000 5.0000 0.0000 153.3510 150.2370 0.0000 0.0000 152.000
+# Sum of Counts = 275978
+# Center of Mass = 105.907379+/-0.285105
+# Full Width Half-Maximum = 0.403471+/-0.138312
+# 2:50:33 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0020.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0020.dat
new file mode 100644
index 0000000..9c41059
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0020.dat
@@ -0,0 +1,55 @@
+# scan = 20
+# date = 6/21/2012
+# time = 2:50:45 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (1 0 1) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_24741PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.4958 104.8905 1.000 2.000 2061.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6347 0.9727 0.0000 0.9727 5.0000 5.0000 0.0000 153.3350 150.1580 0.0000 0.0000 152.000
+ 2 63.6958 104.9906 1.000 6.000 2066.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6393 0.9755 0.0000 0.9755 5.0000 5.0000 0.0000 153.3340 150.0520 0.0000 0.0000 152.000
+ 3 63.8958 105.0906 1.000 11.000 2051.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6439 0.9782 0.0000 0.9782 5.0000 5.0000 0.0000 153.3330 150.1360 0.0000 0.0000 152.000
+ 4 64.0958 105.1906 1.000 25.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6485 0.9809 0.0000 0.9809 5.0000 5.0000 0.0000 153.3300 150.1620 0.0000 0.0000 152.000
+ 5 64.2958 105.2906 1.000 27.000 2078.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6531 0.9837 0.0000 0.9837 5.0000 5.0000 0.0000 153.3280 150.1820 0.0000 0.0000 152.000
+ 6 64.4958 105.3906 1.000 111.000 1953.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6577 0.9864 0.0000 0.9864 5.0000 5.0000 0.0000 153.3260 150.1940 0.0000 0.0000 152.000
+ 7 64.6958 105.4906 1.000 492.000 2042.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6623 0.9891 0.0000 0.9891 5.0000 5.0000 0.0000 153.3230 150.0550 0.0000 0.0000 152.000
+ 8 64.8958 105.5906 1.000 2665.000 2009.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6669 0.9918 0.0000 0.9918 5.0000 5.0000 0.0000 153.3220 149.9900 0.0000 0.0000 152.000
+ 9 65.0958 105.6906 1.000 12096.000 2053.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6714 0.9946 0.0000 0.9946 5.0000 5.0000 0.0000 153.3220 150.2930 0.0000 0.0000 152.000
+ 10 65.2958 105.7906 1.000 34980.000 1994.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6760 0.9973 0.0000 0.9973 5.0000 5.0000 0.0000 153.3190 150.1030 0.0000 0.0000 152.000
+ 11 65.4958 105.8906 1.000 60123.000 1966.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 153.3170 150.0710 0.0000 0.0000 152.000
+ 12 65.6958 105.9906 1.000 69169.000 2016.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6851 1.0027 0.0000 1.0027 5.0000 5.0000 0.0000 153.3150 150.1740 0.0000 0.0000 152.000
+ 13 65.8958 106.0906 1.000 53016.000 2125.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6897 1.0054 0.0000 1.0054 5.0000 5.0000 0.0000 153.3120 150.0270 0.0000 0.0000 152.000
+ 14 66.0958 106.1906 1.000 25702.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6942 1.0081 0.0000 1.0081 5.0000 5.0000 0.0000 153.3100 150.1560 0.0000 0.0000 152.000
+ 15 66.2958 106.2906 1.000 7076.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6988 1.0108 0.0000 1.0108 5.0000 5.0000 0.0000 153.3090 150.2410 0.0000 0.0000 152.000
+ 16 66.4958 106.3906 1.000 1476.000 2123.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7033 1.0135 0.0000 1.0135 5.0000 5.0000 0.0000 153.3060 150.0500 0.0000 0.0000 152.000
+ 17 66.6958 106.4906 1.000 298.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7078 1.0162 0.0000 1.0162 5.0000 5.0000 0.0000 153.3040 149.9150 0.0000 0.0000 152.000
+ 18 66.8958 106.5906 1.000 61.000 2051.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7124 1.0189 0.0000 1.0189 5.0000 5.0000 0.0000 153.3020 150.0900 0.0000 0.0000 152.000
+ 19 67.0958 106.6906 1.000 26.000 1948.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7169 1.0216 0.0000 1.0216 5.0000 5.0000 0.0000 153.3020 149.9050 0.0000 0.0000 152.000
+ 20 67.2958 106.7906 1.000 8.000 2034.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7214 1.0243 0.0000 1.0243 5.0000 5.0000 0.0000 153.2980 150.3230 0.0000 0.0000 152.000
+ 21 67.4958 106.8906 1.000 11.000 2075.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7259 1.0270 0.0000 1.0270 5.0000 5.0000 0.0000 153.2970 150.3500 0.0000 0.0000 152.000
+# Sum of Counts = 267381
+# Center of Mass = 65.660664+/-0.179580
+# Full Width Half-Maximum = 0.608952+/-0.109895
+# 2:51:36 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0021.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0021.dat
new file mode 100644
index 0000000..ddbf8db
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0021.dat
@@ -0,0 +1,55 @@
+# scan = 21
+# date = 6/21/2012
+# time = 2:52:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_24741PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 48.5984 62.7604 1.000 3.000 2036.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2784 0.4815 0.0000 1.9259 5.0000 5.0000 0.0000 153.2380 150.1430 0.0000 0.0000 152.000
+ 2 48.7984 62.8606 1.000 2.000 2123.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2834 0.4833 0.0000 1.9333 5.0000 5.0000 0.0000 153.2400 150.0730 0.0000 0.0000 152.000
+ 3 48.9984 62.9606 1.000 2.000 2040.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2883 0.4852 0.0000 1.9407 5.0000 5.0000 0.0000 153.2400 149.9220 0.0000 0.0000 152.000
+ 4 49.1984 63.0606 1.000 2.000 2027.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2932 0.4870 0.0000 1.9482 5.0000 5.0000 0.0000 153.2360 149.9220 0.0000 0.0000 152.000
+ 5 49.3984 63.1606 1.000 14.000 2108.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2982 0.4889 0.0000 1.9556 5.0000 5.0000 0.0000 153.2340 149.8680 0.0000 0.0000 152.000
+ 6 49.5984 63.2606 1.000 30.000 1979.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3031 0.4908 0.0000 1.9630 5.0000 5.0000 0.0000 153.2370 149.8950 0.0000 0.0000 152.000
+ 7 49.7984 63.3606 1.000 191.000 2118.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3080 0.4926 0.0000 1.9704 5.0000 5.0000 0.0000 153.2310 150.0010 0.0000 0.0000 152.000
+ 8 49.9984 63.4606 1.000 858.000 2033.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3129 0.4945 0.0000 1.9778 5.0000 5.0000 0.0000 153.2270 149.8890 0.0000 0.0000 152.000
+ 9 50.1984 63.5606 1.000 3767.000 2100.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3178 0.4963 0.0000 1.9852 5.0000 5.0000 0.0000 153.2260 149.8810 0.0000 0.0000 152.000
+ 10 50.3984 63.6606 1.000 10135.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3228 0.4982 0.0000 1.9926 5.0000 5.0000 0.0000 153.2240 149.8860 0.0000 0.0000 152.000
+ 11 50.5984 63.7606 1.000 14955.000 1954.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 153.2230 149.8970 0.0000 0.0000 152.000
+ 12 50.7984 63.8606 1.000 13276.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3326 0.5018 0.0000 2.0074 5.0000 5.0000 0.0000 153.2210 149.9170 0.0000 0.0000 152.000
+ 13 50.9984 63.9606 1.000 7381.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3375 0.5037 0.0000 2.0148 5.0000 5.0000 0.0000 153.2190 149.9190 0.0000 0.0000 152.000
+ 14 51.1984 64.0606 1.000 2336.000 2017.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3423 0.5055 0.0000 2.0221 5.0000 5.0000 0.0000 153.2200 149.9070 0.0000 0.0000 152.000
+ 15 51.3984 64.1606 1.000 478.000 2062.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3472 0.5074 0.0000 2.0295 5.0000 5.0000 0.0000 153.2160 150.0370 0.0000 0.0000 152.000
+ 16 51.5984 64.2606 1.000 105.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3521 0.5092 0.0000 2.0368 5.0000 5.0000 0.0000 153.2140 149.9900 0.0000 0.0000 152.000
+ 17 51.7984 64.3606 1.000 35.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3570 0.5110 0.0000 2.0442 5.0000 5.0000 0.0000 153.2140 150.0170 0.0000 0.0000 152.000
+ 18 51.9984 64.4606 1.000 11.000 2024.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3619 0.5129 0.0000 2.0515 5.0000 5.0000 0.0000 153.2090 149.9800 0.0000 0.0000 152.000
+ 19 52.1984 64.5606 1.000 5.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3667 0.5147 0.0000 2.0589 5.0000 5.0000 0.0000 153.2060 149.9670 0.0000 0.0000 152.000
+ 20 52.3984 64.6606 1.000 3.000 2063.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3716 0.5166 0.0000 2.0662 5.0000 5.0000 0.0000 153.2040 150.0180 0.0000 0.0000 152.000
+ 21 52.5984 64.7606 1.000 4.000 2073.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3765 0.5184 0.0000 2.0735 5.0000 5.0000 0.0000 153.2050 149.9500 0.0000 0.0000 152.000
+# Sum of Counts = 53593
+# Center of Mass = 50.660192+/-0.309479
+# Full Width Half-Maximum = 0.572193+/-0.191868
+# 2:53:25 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0022.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0022.dat
new file mode 100644
index 0000000..37363b8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0022.dat
@@ -0,0 +1,55 @@
+# scan = 22
+# date = 6/21/2012
+# time = 2:55:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_25429PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 62.7913 1.000 67.000 2044.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4873 0.0000 2.0282 5.0000 5.0000 0.0000 153.1180 150.0160 0.0000 0.0000 152.000
+ 2 62.8913 1.000 87.000 2111.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4885 0.0000 2.0256 5.0000 5.0000 0.0000 153.1150 150.1500 0.0000 0.0000 152.000
+ 3 62.9913 1.000 148.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4897 0.0000 2.0231 5.0000 5.0000 0.0000 153.1140 150.0070 0.0000 0.0000 152.000
+ 4 63.0913 1.000 176.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4908 0.0000 2.0205 5.0000 5.0000 0.0000 153.1110 149.9660 0.0000 0.0000 152.000
+ 5 63.1913 1.000 284.000 2034.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4920 0.0000 2.0179 5.0000 5.0000 0.0000 153.1110 149.9660 0.0000 0.0000 152.000
+ 6 63.2913 1.000 493.000 2100.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4932 0.0000 2.0153 5.0000 5.0000 0.0000 153.1090 149.9420 0.0000 0.0000 152.000
+ 7 63.3913 1.000 918.000 2002.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4944 0.0000 2.0127 5.0000 5.0000 0.0000 153.1070 149.9540 0.0000 0.0000 152.000
+ 8 63.4913 1.000 2064.000 2095.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4955 0.0000 2.0101 5.0000 5.0000 0.0000 153.1040 149.9330 0.0000 0.0000 152.000
+ 9 63.5913 1.000 5210.000 2013.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4967 0.0000 2.0075 5.0000 5.0000 0.0000 153.1060 149.9580 0.0000 0.0000 152.000
+ 10 63.6913 1.000 10678.000 2035.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4978 0.0000 2.0049 5.0000 5.0000 0.0000 153.1030 149.9050 0.0000 0.0000 152.000
+ 11 63.7913 1.000 15328.000 1972.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4990 0.0000 2.0023 5.0000 5.0000 0.0000 153.1010 149.9870 0.0000 0.0000 152.000
+ 12 63.8913 1.000 13583.000 2019.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5002 0.0000 1.9996 5.0000 5.0000 0.0000 153.1000 150.1260 0.0000 0.0000 152.000
+ 13 63.9913 1.000 8070.000 2104.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5013 0.0000 1.9970 5.0000 5.0000 0.0000 153.1000 149.6370 0.0000 0.0000 152.000
+ 14 64.0913 1.000 3584.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5025 0.0000 1.9944 5.0000 5.0000 0.0000 153.1010 149.9380 0.0000 0.0000 152.000
+ 15 64.1913 1.000 1658.000 2125.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5036 0.0000 1.9917 5.0000 5.0000 0.0000 153.1010 149.9980 0.0000 0.0000 152.000
+ 16 64.2913 1.000 760.000 2022.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5048 0.0000 1.9891 5.0000 5.0000 0.0000 153.0980 149.9360 0.0000 0.0000 152.000
+ 17 64.3913 1.000 366.000 2106.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5059 0.0000 1.9864 5.0000 5.0000 0.0000 153.0980 149.8170 0.0000 0.0000 152.000
+ 18 64.4913 1.000 240.000 1981.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5071 0.0000 1.9837 5.0000 5.0000 0.0000 153.0960 149.8680 0.0000 0.0000 152.000
+ 19 64.5913 1.000 120.000 2013.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5082 0.0000 1.9811 5.0000 5.0000 0.0000 153.0930 149.9290 0.0000 0.0000 152.000
+ 20 64.6913 1.000 87.000 1993.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5094 0.0000 1.9784 5.0000 5.0000 0.0000 153.0920 149.8480 0.0000 0.0000 152.000
+ 21 64.7913 1.000 62.000 2080.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5105 0.0000 1.9757 5.0000 5.0000 0.0000 153.0910 149.8010 0.0000 0.0000 152.000
+# Sum of Counts = 63983
+# Center of Mass = 63.819661+/-0.356811
+# Full Width Half-Maximum = 0.421020+/-0.155829
+# 2:55:41 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0023.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0023.dat
new file mode 100644
index 0000000..b11ecc6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0023.dat
@@ -0,0 +1,55 @@
+# scan = 23
+# date = 6/21/2012
+# time = 2:57:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.7040 105.0483 1.000 3.000 1974.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6395 0.9728 0.0000 0.9728 5.0000 5.0000 0.0000 153.0070 149.7380 0.0000 0.0000 152.000
+ 2 63.9040 105.1484 1.000 6.000 1996.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6441 0.9756 0.0000 0.9756 5.0000 5.0000 0.0000 153.0060 149.7260 0.0000 0.0000 152.000
+ 3 64.1040 105.2484 1.000 16.000 2053.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6487 0.9783 0.0000 0.9783 5.0000 5.0000 0.0000 153.0040 149.7920 0.0000 0.0000 152.000
+ 4 64.3040 105.3484 1.000 38.000 2082.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6533 0.9810 0.0000 0.9810 5.0000 5.0000 0.0000 153.0020 149.8140 0.0000 0.0000 152.000
+ 5 64.5040 105.4484 1.000 139.000 1928.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6579 0.9837 0.0000 0.9837 5.0000 5.0000 0.0000 152.9990 149.9830 0.0000 0.0000 152.000
+ 6 64.7040 105.5484 1.000 722.000 2033.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6625 0.9864 0.0000 0.9864 5.0000 5.0000 0.0000 152.9980 149.6620 0.0000 0.0000 152.000
+ 7 64.9040 105.6484 1.000 3637.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6671 0.9892 0.0000 0.9892 5.0000 5.0000 0.0000 152.9960 149.7330 0.0000 0.0000 152.000
+ 8 65.1040 105.7484 1.000 13911.000 2026.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6716 0.9919 0.0000 0.9919 5.0000 5.0000 0.0000 152.9940 149.7400 0.0000 0.0000 152.000
+ 9 65.3040 105.8484 1.000 36767.000 2011.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6762 0.9946 0.0000 0.9946 5.0000 5.0000 0.0000 152.9910 149.8160 0.0000 0.0000 152.000
+ 10 65.5040 105.9484 1.000 58970.000 2068.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6808 0.9973 0.0000 0.9973 5.0000 5.0000 0.0000 152.9910 149.8060 0.0000 0.0000 152.000
+ 11 65.7040 106.0484 1.000 64447.000 2094.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6853 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 152.9880 150.1570 0.0000 0.0000 152.000
+ 12 65.9040 106.1484 1.000 46490.000 1991.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6899 1.0027 0.0000 1.0027 5.0000 5.0000 0.0000 152.9870 149.7940 0.0000 0.0000 152.000
+ 13 66.1040 106.2484 1.000 20375.000 2013.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6944 1.0054 0.0000 1.0054 5.0000 5.0000 0.0000 152.9850 149.5040 0.0000 0.0000 152.000
+ 14 66.3040 106.3484 1.000 5558.000 2103.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6990 1.0081 0.0000 1.0081 5.0000 5.0000 0.0000 152.9830 149.7930 0.0000 0.0000 152.000
+ 15 66.5040 106.4484 1.000 1092.000 2089.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7035 1.0108 0.0000 1.0108 5.0000 5.0000 0.0000 152.9810 149.8150 0.0000 0.0000 152.000
+ 16 66.7040 106.5484 1.000 204.000 2120.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7080 1.0135 0.0000 1.0135 5.0000 5.0000 0.0000 152.9800 149.9280 0.0000 0.0000 152.000
+ 17 66.9040 106.6484 1.000 49.000 1981.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7126 1.0162 0.0000 1.0162 5.0000 5.0000 0.0000 152.9770 149.7960 0.0000 0.0000 152.000
+ 18 67.1040 106.7484 1.000 24.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7171 1.0188 0.0000 1.0188 5.0000 5.0000 0.0000 152.9760 149.5630 0.0000 0.0000 152.000
+ 19 67.3040 106.8484 1.000 19.000 2057.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7216 1.0215 0.0000 1.0215 5.0000 5.0000 0.0000 152.9730 149.6520 0.0000 0.0000 152.000
+ 20 67.5040 106.9484 1.000 7.000 2090.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7261 1.0242 0.0000 1.0242 5.0000 5.0000 0.0000 152.9710 149.5620 0.0000 0.0000 152.000
+ 21 67.7040 107.0484 1.000 3.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7306 1.0269 0.0000 1.0269 5.0000 5.0000 0.0000 152.9700 149.5900 0.0000 0.0000 152.000
+# Sum of Counts = 252477
+# Center of Mass = 65.637699+/-0.184740
+# Full Width Half-Maximum = 0.613547+/-0.112072
+# 2:58:10 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0024.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0024.dat
new file mode 100644
index 0000000..588be27
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0024.dat
@@ -0,0 +1,55 @@
+# scan = 24
+# date = 6/21/2012
+# time = 2:58:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (1 0 1) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 105.0152 1.000 240.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9932 0.0000 1.0515 5.0000 5.0000 0.0000 152.9570 149.6800 0.0000 0.0000 152.000
+ 2 105.1152 1.000 353.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9938 0.0000 1.0463 5.0000 5.0000 0.0000 152.9550 149.8380 0.0000 0.0000 152.000
+ 3 105.2152 1.000 481.000 2047.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9944 0.0000 1.0410 5.0000 5.0000 0.0000 152.9550 149.6090 0.0000 0.0000 152.000
+ 4 105.3152 1.000 787.000 2114.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9950 0.0000 1.0358 5.0000 5.0000 0.0000 152.9530 149.9280 0.0000 0.0000 152.000
+ 5 105.4152 1.000 1343.000 2048.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9956 0.0000 1.0306 5.0000 5.0000 0.0000 152.9530 149.5980 0.0000 0.0000 152.000
+ 6 105.5152 1.000 3207.000 2008.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9962 0.0000 1.0253 5.0000 5.0000 0.0000 152.9510 149.8740 0.0000 0.0000 152.000
+ 7 105.6152 1.000 9634.000 2008.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9968 0.0000 1.0201 5.0000 5.0000 0.0000 152.9490 149.9890 0.0000 0.0000 152.000
+ 8 105.7152 1.000 26487.000 2030.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9974 0.0000 1.0149 5.0000 5.0000 0.0000 152.9480 149.7220 0.0000 0.0000 152.000
+ 9 105.8152 1.000 51293.000 2053.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9979 0.0000 1.0096 5.0000 5.0000 0.0000 152.9480 149.6110 0.0000 0.0000 152.000
+ 10 105.9152 1.000 67387.000 2091.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9985 0.0000 1.0044 5.0000 5.0000 0.0000 152.9460 149.9890 0.0000 0.0000 152.000
+ 11 106.0152 1.000 65027.000 2037.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9991 0.0000 0.9991 5.0000 5.0000 0.0000 152.9450 149.6660 0.0000 0.0000 152.000
+ 12 106.1152 1.000 45281.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9997 0.0000 0.9938 5.0000 5.0000 0.0000 152.9440 149.5860 0.0000 0.0000 152.000
+ 13 106.2152 1.000 23295.000 2042.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0003 0.0000 0.9886 5.0000 5.0000 0.0000 152.9430 149.4280 0.0000 0.0000 152.000
+ 14 106.3152 1.000 9902.000 2076.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0008 0.0000 0.9833 5.0000 5.0000 0.0000 152.9390 149.5140 0.0000 0.0000 152.000
+ 15 106.4152 1.000 4151.000 2026.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0014 0.0000 0.9781 5.0000 5.0000 0.0000 152.9390 149.6560 0.0000 0.0000 152.000
+ 16 106.5152 1.000 1842.000 2055.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0020 0.0000 0.9728 5.0000 5.0000 0.0000 152.9370 149.6820 0.0000 0.0000 152.000
+ 17 106.6152 1.000 861.000 2085.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0025 0.0000 0.9675 5.0000 5.0000 0.0000 152.9350 149.7890 0.0000 0.0000 152.000
+ 18 106.7152 1.000 493.000 2043.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0031 0.0000 0.9622 5.0000 5.0000 0.0000 152.9350 149.6020 0.0000 0.0000 152.000
+ 19 106.8152 1.000 296.000 1974.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0036 0.0000 0.9570 5.0000 5.0000 0.0000 152.9340 149.5380 0.0000 0.0000 152.000
+ 20 106.9152 1.000 213.000 2060.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0042 0.0000 0.9517 5.0000 5.0000 0.0000 152.9310 149.7640 0.0000 0.0000 152.000
+ 21 107.0152 1.000 139.000 2029.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0047 0.0000 0.9464 5.0000 5.0000 0.0000 152.9300 149.6160 0.0000 0.0000 152.000
+# Sum of Counts = 312712
+# Center of Mass = 105.962335+/-0.267975
+# Full Width Half-Maximum = 0.403598+/-0.130473
+# 2:58:55 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0025.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0025.dat
new file mode 100644
index 0000000..f0be13a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0025.dat
@@ -0,0 +1,55 @@
+# scan = 25
+# date = 6/21/2012
+# time = 3:26:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0 0 3) inside cryo-furnace with filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.3899 1.000 711.000 1410.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 152.0850 150.0890 0.0000 0.0000 152.000
+ 2 31.4899 1.000 893.000 1360.000 0.953 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 152.0850 150.3840 0.0000 0.0000 152.000
+ 3 31.5899 1.000 1333.000 1355.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 152.0840 150.3390 0.0000 0.0000 152.000
+ 4 31.6899 1.000 2074.000 1366.000 0.957 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 152.0820 150.3930 0.0000 0.0000 152.000
+ 5 31.7899 1.000 3205.000 1358.000 0.951 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 152.0810 150.2370 0.0000 0.0000 152.000
+ 6 31.8899 1.000 6249.000 1348.000 0.944 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 152.0790 150.2600 0.0000 0.0000 152.000
+ 7 31.9899 1.000 14157.000 1367.000 0.958 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0069 0.0000 2.9999 5.0000 5.0000 0.0000 152.0780 150.0110 0.0000 0.0000 152.000
+ 8 32.0899 1.000 33828.000 1350.000 0.946 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 152.0770 150.3670 0.0000 0.0000 152.000
+ 9 32.1899 1.000 62744.000 1411.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 152.0760 150.5230 0.0000 0.0000 152.000
+ 10 32.2899 1.000 85095.000 1383.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 152.0740 150.3870 0.0000 0.0000 152.000
+ 11 32.3899 1.000 93193.000 1332.000 0.933 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 152.0720 150.1430 0.0000 0.0000 152.000
+ 12 32.4899 1.000 81517.000 1383.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 152.0720 150.2870 0.0000 0.0000 152.000
+ 13 32.5899 1.000 54322.000 1388.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 152.0710 150.3020 0.0000 0.0000 152.000
+ 14 32.6899 1.000 26867.000 1355.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 152.0690 150.1940 0.0000 0.0000 152.000
+ 15 32.7899 1.000 11573.000 1363.000 0.955 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 152.0700 150.2780 0.0000 0.0000 152.000
+ 16 32.8899 1.000 5045.000 1359.000 0.952 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 152.0680 150.3120 0.0000 0.0000 152.000
+ 17 32.9899 1.000 2497.000 1422.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 152.0650 150.0480 0.0000 0.0000 152.000
+ 18 33.0899 1.000 1417.000 1329.000 0.931 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 152.0630 150.3560 0.0000 0.0000 152.000
+ 19 33.1899 1.000 840.000 1356.000 0.950 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 152.0630 150.4970 0.0000 0.0000 152.000
+ 20 33.2899 1.000 598.000 1383.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 152.0610 150.4500 0.0000 0.0000 152.000
+ 21 33.3899 1.000 466.000 1357.000 0.951 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 152.0610 150.3020 0.0000 0.0000 152.000
+# Sum of Counts = 488624
+# Center of Mass = 32.374437+/-0.065499
+# Full Width Half-Maximum = 0.462886+/-0.029741
+# 3:26:46 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0026.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0026.dat
new file mode 100644
index 0000000..2f3c66e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0026.dat
@@ -0,0 +1,55 @@
+# scan = 26
+# date = 6/21/2012
+# time = 3:27:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0 0 3) inside cryo-furnace with filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.6701 31.3899 1.000 7.000 1403.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5456 0.0000 0.0000 2.9118 5.0000 5.0000 0.0000 152.0300 150.2390 0.0000 0.0000 152.000
+ 2 59.8702 31.4899 1.000 16.000 1394.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5503 0.0000 0.0000 2.9207 5.0000 5.0000 0.0000 152.0290 150.4280 0.0000 0.0000 152.000
+ 3 60.0702 31.5899 1.000 24.000 1348.000 0.944 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5550 0.0000 0.0000 2.9295 5.0000 5.0000 0.0000 152.0280 150.0550 0.0000 0.0000 152.000
+ 4 60.2702 31.6899 1.000 51.000 1369.000 0.959 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5597 0.0000 0.0000 2.9384 5.0000 5.0000 0.0000 152.0250 150.0110 0.0000 0.0000 152.000
+ 5 60.4702 31.7899 1.000 263.000 1376.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5644 0.0000 0.0000 2.9472 5.0000 5.0000 0.0000 152.0230 150.2330 0.0000 0.0000 152.000
+ 6 60.6702 31.8899 1.000 1087.000 1437.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5691 0.0000 0.0000 2.9560 5.0000 5.0000 0.0000 152.0210 150.2390 0.0000 0.0000 152.000
+ 7 60.8702 31.9899 1.000 5158.000 1352.000 0.947 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5738 0.0000 0.0000 2.9648 5.0000 5.0000 0.0000 152.0190 150.2370 0.0000 0.0000 152.000
+ 8 61.0702 32.0899 1.000 17901.000 1331.000 0.932 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5784 0.0000 0.0000 2.9736 5.0000 5.0000 0.0000 152.0170 150.3800 0.0000 0.0000 152.000
+ 9 61.2702 32.1899 1.000 45470.000 1404.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5831 0.0000 0.0000 2.9824 5.0000 5.0000 0.0000 152.0160 150.0950 0.0000 0.0000 152.000
+ 10 61.4702 32.2899 1.000 76627.000 1271.000 0.890 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5878 0.0000 0.0000 2.9912 5.0000 5.0000 0.0000 152.0130 150.3890 0.0000 0.0000 152.000
+ 11 61.6702 32.3899 1.000 92623.000 1448.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 152.0120 150.1990 0.0000 0.0000 152.000
+ 12 61.8702 32.4899 1.000 82684.000 1403.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5971 0.0000 0.0000 3.0088 5.0000 5.0000 0.0000 152.0100 150.1870 0.0000 0.0000 152.000
+ 13 62.0702 32.5899 1.000 53416.000 1374.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6017 0.0000 0.0000 3.0175 5.0000 5.0000 0.0000 152.0080 150.0370 0.0000 0.0000 152.000
+ 14 62.2702 32.6899 1.000 21956.000 1424.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6064 0.0000 0.0000 3.0263 5.0000 5.0000 0.0000 152.0080 150.3860 0.0000 0.0000 152.000
+ 15 62.4702 32.7899 1.000 6276.000 1332.000 0.933 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6110 0.0000 0.0000 3.0350 5.0000 5.0000 0.0000 152.0070 150.2110 0.0000 0.0000 152.000
+ 16 62.6702 32.8899 1.000 1495.000 1410.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6156 0.0000 0.0000 3.0437 5.0000 5.0000 0.0000 152.0040 150.1430 0.0000 0.0000 152.000
+ 17 62.8702 32.9899 1.000 379.000 1308.000 0.916 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6203 0.0000 0.0000 3.0525 5.0000 5.0000 0.0000 152.0030 150.1620 0.0000 0.0000 152.000
+ 18 63.0702 33.0899 1.000 121.000 1309.000 0.917 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6249 0.0000 0.0000 3.0612 5.0000 5.0000 0.0000 152.0020 150.3440 0.0000 0.0000 152.000
+ 19 63.2702 33.1899 1.000 39.000 1416.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6295 0.0000 0.0000 3.0699 5.0000 5.0000 0.0000 152.0010 150.2970 0.0000 0.0000 152.000
+ 20 63.4702 33.2899 1.000 14.000 1346.000 0.943 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6341 0.0000 0.0000 3.0786 5.0000 5.0000 0.0000 151.9970 150.5140 0.0000 0.0000 152.000
+ 21 63.6702 33.3899 1.000 3.000 1394.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6387 0.0000 0.0000 3.0872 5.0000 5.0000 0.0000 151.9970 150.2720 0.0000 0.0000 152.000
+# Sum of Counts = 405610
+# Center of Mass = 61.690847+/-0.136989
+# Full Width Half-Maximum = 0.686790+/-0.079098
+# 3:28:06 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0027.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0027.dat
new file mode 100644
index 0000000..ba6b8d1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0027.dat
@@ -0,0 +1,47 @@
+# scan = 27
+# date = 6/21/2012
+# time = 3:35:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 0 e -5 -2.0 0.25 preset mcu 1
+# builtin_command = scan h 1.5 k 0 l 0 e -5 -2.0 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (1.5 0 0), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 63.032 7.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 118.2074 77.4569 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.3993 5.0000 10.0000 152.0170 150.0940 0.0000 0.0000 152.000
+ 2 1.5000 0.0000 0.0000 -4.7500 63.152 19.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 119.2498 78.3439 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 2.3993 5.0000 9.7500 151.9680 150.3040 0.0000 0.0000 152.000
+ 3 1.5000 0.0000 0.0000 -4.5000 64.075 49.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 120.3024 79.2490 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.3993 5.0000 9.5000 152.3870 150.1830 0.0000 0.0000 152.000
+ 4 1.5000 0.0000 0.0000 -4.2500 63.446 85.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 121.3656 80.1735 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 2.3993 5.0000 9.2500 152.4210 150.5110 0.0000 0.0000 152.000
+ 5 1.5000 0.0000 0.0000 -4.0000 63.326 106.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 122.4402 81.1188 -2.0000 1.0000 0.0000 0.0000 153.3006 -53.3986 2.3993 5.0000 9.0000 152.3290 150.4340 0.0000 0.0000 152.000
+ 6 1.5000 0.0000 0.0000 -3.7500 63.693 80.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 123.5270 82.0866 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 2.3993 5.0000 8.7500 152.2470 150.4040 0.0000 0.0000 152.000
+ 7 1.5000 0.0000 0.0000 -3.5000 63.793 17.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 124.6269 83.0783 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.3993 5.0000 8.5000 152.1800 150.2330 0.0000 0.0000 152.000
+ 8 1.5000 0.0000 0.0000 -3.2500 63.454 13.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 125.7406 84.0960 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 2.3993 5.0000 8.2500 152.1180 150.4190 0.0000 0.0000 152.000
+ 9 1.5000 0.0000 0.0000 -3.0000 63.164 7.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 126.8693 85.1416 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.3993 5.0000 8.0000 152.0610 150.1280 0.0000 0.0000 152.000
+ 10 1.5000 0.0000 0.0000 -2.7500 63.514 3.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 128.0140 86.2176 -2.0000 1.0000 0.0000 0.0000 151.0406 -57.9186 2.3993 5.0000 7.7500 152.0080 150.3610 0.0000 0.0000 152.000
+ 11 1.5000 0.0000 0.0000 -2.5000 63.371 6.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 129.1758 87.3264 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.3993 5.0000 7.5000 151.9790 150.2750 0.0000 0.0000 152.000
+ 12 1.5000 0.0000 0.0000 -2.2500 63.126 5.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 130.3561 88.4710 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 2.3993 5.0000 7.2500 152.3730 150.3360 0.0000 0.0000 152.000
+ 13 1.5000 0.0000 0.0000 -2.0000 63.373 3.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 131.5562 89.6548 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 2.3993 5.0000 7.0000 152.3440 150.3770 0.0000 0.0000 152.000
+# Sum of Counts = 400
+# Center of Mass = -3.985625+/-0.282980
+# Full Width Half-Maximum = 1.020930+/-0.145279
+# 3:50:52 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0028.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0028.dat
new file mode 100644
index 0000000..e3391e7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0028.dat
@@ -0,0 +1,139 @@
+# scan = 28
+# date = 6/21/2012
+# time = 4:17:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l.5 1 e -7.0 -2.0 -0.25 preset mcu 2
+# builtin_command = scan h -0.75 k 0 l.5 1 e -7.0 -2.0 -0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = G-X LA, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l.5 e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Sum of Counts = 0
+# Center of Mass = 0.000000+/-0.000000
+# Full Width Half-Maximum = 0.000000+/-0.000000
+# 4:17:12 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0029.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0029.dat
new file mode 100644
index 0000000..853ef5b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0029.dat
@@ -0,0 +1,55 @@
+# scan = 29
+# date = 6/21/2012
+# time = 4:18:32 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.0 -2.0 -0.25 preset mcu 2
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.0 -2.0 -0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = G-X LA, (-1 0 2) zone 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.0000 124.600 12.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 152.2060 150.2510 0.0000 0.0000 152.000
+ 2 -0.7500 0.0000 1.5000 -6.7500 125.979 17.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8443 -46.3112 1.4398 5.0000 11.7500 151.9980 150.4950 0.0000 0.0000 152.000
+ 3 -0.7500 0.0000 1.5000 -6.5000 125.686 18.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 152.3750 150.4720 0.0000 0.0000 152.000
+ 4 -0.7500 0.0000 1.5000 -6.2500 126.143 44.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 152.2480 150.4660 0.0000 0.0000 152.000
+ 5 -0.7500 0.0000 1.5000 -6.0000 125.604 27.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 152.1140 150.3610 0.0000 0.0000 152.000
+ 6 -0.7500 0.0000 1.5000 -5.7500 126.356 17.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 152.0060 150.6530 0.0000 0.0000 152.000
+ 7 -0.7500 0.0000 1.5000 -5.5000 125.651 9.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 152.3850 150.5330 0.0000 0.0000 152.000
+ 8 -0.7500 0.0000 1.5000 -5.2500 125.864 4.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 152.2880 150.8180 0.0000 0.0000 152.000
+ 9 -0.7500 0.0000 1.5000 -5.0000 125.923 6.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 152.1500 150.5900 0.0000 0.0000 152.000
+ 10 -0.7500 0.0000 1.5000 -4.7500 125.996 3.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 152.0400 150.5730 0.0000 0.0000 152.000
+ 11 -0.7500 0.0000 1.5000 -4.5000 125.768 2.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 152.0670 150.4620 0.0000 0.0000 152.000
+ 12 -0.7500 0.0000 1.5000 -4.2500 126.052 3.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 152.3430 150.6610 0.0000 0.0000 152.000
+ 13 -0.7500 0.0000 1.5000 -4.0000 126.073 3.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 152.1920 150.6070 0.0000 0.0000 152.000
+ 14 -0.7500 0.0000 1.5000 -3.7500 124.955 4.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8911 -54.2176 1.4398 5.0000 8.7500 152.0770 150.5370 0.0000 0.0000 152.000
+ 15 -0.7500 0.0000 1.5000 -3.5000 125.805 4.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 151.9780 150.5520 0.0000 0.0000 152.000
+ 16 -0.7500 0.0000 1.5000 -3.2500 125.576 4.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 152.4130 150.6800 0.0000 0.0000 152.000
+ 17 -0.7500 0.0000 1.5000 -3.0000 125.777 9.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.4398 5.0000 8.0000 152.2550 150.5430 0.0000 0.0000 152.000
+ 18 -0.7500 0.0000 1.5000 -2.7500 125.499 19.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.4398 5.0000 7.7500 152.1260 150.6800 0.0000 0.0000 152.000
+ 19 -0.7500 0.0000 1.5000 -2.5000 125.869 17.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 152.0200 150.2520 0.0000 0.0000 152.000
+ 20 -0.7500 0.0000 1.5000 -2.2500 125.637 6.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 152.3040 150.6050 0.0000 0.0000 152.000
+ 21 -0.7500 0.0000 1.5000 -2.0000 125.323 5.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 152.3180 150.6570 0.0000 0.0000 152.000
+# Sum of Counts = 233
+# Center of Mass = -5.091202+/-0.483419
+# Full Width Half-Maximum = 3.231084+/-0.315191
+# 5:06:21 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0030.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0030.dat
new file mode 100644
index 0000000..65cf471
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0030.dat
@@ -0,0 +1,59 @@
+# scan = 30
+# date = 6/21/2012
+# time = 5:06:21 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 -0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 -0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = mid G-X LA+TA (-0.75,0,1.5), 150K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 251.186 5.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 152.1640 150.6220 0.0000 0.0000 152.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 251.667 11.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 151.9730 150.4650 0.0000 0.0000 152.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 250.658 11.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 152.1690 150.6670 0.0000 0.0000 152.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 251.002 23.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 151.9780 150.3810 0.0000 0.0000 152.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 250.801 36.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 152.2220 150.8930 0.0000 0.0000 152.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 250.555 55.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 152.0000 150.6810 0.0000 0.0000 152.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 251.617 38.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0200 -47.9596 1.4398 5.0000 11.0000 152.2540 150.7120 0.0000 0.0000 152.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 250.682 20.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7251 -48.5495 1.4398 5.0000 10.7500 152.0190 150.8130 0.0000 0.0000 152.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 251.713 21.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 152.3240 150.7970 0.0000 0.0000 152.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 251.742 8.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 152.0710 150.5330 0.0000 0.0000 152.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 251.191 11.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 152.3810 150.5970 0.0000 0.0000 152.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 250.911 8.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 152.1030 150.5430 0.0000 0.0000 152.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 250.998 13.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0666 -51.8666 1.4398 5.0000 9.5000 152.3700 150.5330 0.0000 0.0000 152.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 251.322 10.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 152.1450 150.6310 0.0000 0.0000 152.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 250.463 6.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 152.0840 150.4790 0.0000 0.0000 152.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 250.595 10.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 152.2010 150.6310 0.0000 0.0000 152.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 250.618 9.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4621 -55.0756 1.4398 5.0000 8.5000 151.9910 150.5580 0.0000 0.0000 152.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 250.049 15.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 152.2560 150.9090 0.0000 0.0000 152.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 251.236 18.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9224 1.4398 5.0000 8.0000 152.0290 150.7180 0.0000 0.0000 152.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 250.997 23.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.4398 5.0000 7.7500 152.3200 150.5610 0.0000 0.0000 152.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 250.919 28.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 152.0650 150.8220 0.0000 0.0000 152.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 251.709 16.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 152.3670 150.5740 0.0000 0.0000 152.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 251.168 10.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 152.0950 150.6270 0.0000 0.0000 152.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 250.111 7.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 152.3980 150.5790 0.0000 0.0000 152.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 250.821 4.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.4398 5.0000 6.5000 152.1370 150.9060 0.0000 0.0000 152.000
+# Sum of Counts = 416
+# Center of Mass = -4.867788+/-0.347729
+# Full Width Half-Maximum = 3.411806+/-0.211485
+# 6:52:26 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0031.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0031.dat
new file mode 100644
index 0000000..5bd380a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0031.dat
@@ -0,0 +1,56 @@
+# scan = 31
+# date = 6/21/2012
+# time = 6:52:27 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 0 k 0 l 4.5 e -16.0 -11.0 0.25 preset mcu 8
+# builtin_command = scan h 0 k 0 l 4.5 e -16.0 -11.0 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0 0 4.5), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -16.0000 502.326 40.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2081 46.2287 -2.0000 1.0000 0.0000 0.0000 162.8940 -34.2121 2.3886 5.0000 21.0000 152.3430 150.7670 0.0000 0.0000 152.000
+ 2 0.0000 0.0000 4.5000 -15.7500 502.349 53.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.2424 46.8694 -2.0000 1.0000 0.0000 0.0000 162.7880 -34.4240 2.3886 5.0000 20.7500 152.0000 150.4320 0.0000 0.0000 152.000
+ 3 0.0000 0.0000 4.5000 -15.5000 503.506 57.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2810 47.5091 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.3886 5.0000 20.5000 151.9890 150.8480 0.0000 0.0000 152.000
+ 4 0.0000 0.0000 4.5000 -15.2498 502.232 54.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.3236 48.1481 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8599 2.3886 5.0000 20.2498 152.0540 150.4360 0.0000 0.0000 152.000
+ 5 0.0000 0.0000 4.5000 -15.0000 502.895 71.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.3698 48.7867 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.3886 5.0000 20.0000 152.0860 150.7120 0.0000 0.0000 152.000
+ 6 0.0000 0.0000 4.5000 -14.7500 502.144 97.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.4194 49.4250 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 2.3886 5.0000 19.7500 152.1150 150.7700 0.0000 0.0000 152.000
+ 7 0.0000 0.0000 4.5000 -14.5000 502.952 82.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4720 50.0634 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3886 5.0000 19.5000 152.1590 150.6040 0.0000 0.0000 152.000
+ 8 0.0000 0.0000 4.5000 -14.2500 502.269 104.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.5274 50.7021 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3886 5.0000 19.2500 152.1970 150.8280 0.0000 0.0000 152.000
+ 9 0.0000 0.0000 4.5000 -13.9999 500.446 94.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.5852 51.3412 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0264 2.3886 5.0000 18.9999 152.2230 150.6250 0.0000 0.0000 152.000
+ 10 0.0000 0.0000 4.5000 -13.7500 498.882 72.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.6453 51.9810 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2740 2.3886 5.0000 18.7500 152.2860 150.8210 0.0000 0.0000 152.000
+ 11 0.0000 0.0000 4.5000 -13.5000 498.972 77.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.7073 52.6218 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3886 5.0000 18.5000 152.3580 150.8230 0.0000 0.0000 152.000
+ 12 0.0000 0.0000 4.5000 -13.2500 498.359 68.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -3.7710 53.2638 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3886 5.0000 18.2500 152.3900 150.6480 0.0000 0.0000 152.000
+ 13 0.0000 0.0000 4.5000 -13.0000 498.180 73.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.8362 53.9072 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3886 5.0000 18.0000 152.0250 150.5860 0.0000 0.0000 152.000
+ 14 0.0000 0.0000 4.5000 -12.7500 499.601 52.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.9024 54.5523 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3886 5.0000 17.7500 151.9860 150.4510 0.0000 0.0000 152.000
+ 15 0.0000 0.0000 4.5000 -12.5000 499.873 37.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.9696 55.1992 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3886 5.0000 17.5000 151.9850 150.8210 0.0000 0.0000 152.000
+ 16 0.0000 0.0000 4.5000 -12.2500 500.733 39.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0375 55.8483 -2.0000 1.0000 0.0000 0.0000 161.0621 -37.8756 2.3886 5.0000 17.2500 152.0380 150.8170 0.0000 0.0000 152.000
+ 17 0.0000 0.0000 4.5000 -12.0000 498.789 25.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.8942 56.4998 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3886 5.0000 17.0000 152.0370 150.7200 0.0000 0.0000 152.000
+ 18 0.0000 0.0000 4.5000 -11.7500 499.679 20.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 1.8257 57.1538 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3886 5.0000 16.7500 152.0790 150.7730 0.0000 0.0000 152.000
+ 19 0.0000 0.0000 4.5000 -11.5000 499.407 25.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 2.7573 57.8108 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3886 5.0000 16.5000 152.1250 150.7890 0.0000 0.0000 152.000
+# Thu, Jun 21, 2012 [9:32:15 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit upper controller software limit
+ 21 0.0000 0.0000 4.5000 -11.0000 499.991 24.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 4.6217 59.1344 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3886 5.0000 16.0000 152.1630 150.9020 0.0000 0.0000 152.000
+# Sum of Counts = 1164
+# Center of Mass = -13.946503+/-0.579170
+# Full Width Half-Maximum = 2.400300+/-0.237907
+# 9:40:37 PM 6/21/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0032.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0032.dat
new file mode 100644
index 0000000..989ec3d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0032.dat
@@ -0,0 +1,55 @@
+# scan = 32
+# date = 6/21/2012
+# time = 9:40:37 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5 0 1.5), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.5000 500.910 45.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.2222 52.7450 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.5280 5.0000 20.5000 152.1700 150.7280 0.0000 0.0000 152.000
+ 2 1.5000 0.0000 1.5000 -15.2500 500.386 49.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.1100 53.3686 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.5280 5.0000 20.2500 152.2170 150.7730 0.0000 0.0000 152.000
+ 3 1.5000 0.0000 1.5000 -15.0000 501.425 57.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.9962 53.9931 -2.0000 1.0000 0.0000 0.0000 162.4578 -35.0840 2.5280 5.0000 20.0000 152.2670 150.8850 0.0000 0.0000 152.000
+ 4 1.5000 0.0000 1.5000 -14.7500 500.692 54.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.8808 54.6188 -2.0000 1.0000 0.0000 0.0000 162.3436 -35.3126 2.5280 5.0000 19.7500 152.3150 150.7840 0.0000 0.0000 152.000
+ 5 1.5000 0.0000 1.5000 -14.5000 501.736 59.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.7642 55.2460 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.5280 5.0000 19.5000 152.3680 150.8330 0.0000 0.0000 152.000
+ 6 1.5000 0.0000 1.5000 -14.2500 499.683 63.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.6465 55.8748 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.5280 5.0000 19.2500 152.3440 150.6690 0.0000 0.0000 152.000
+ 7 1.5000 0.0000 1.5000 -14.0000 499.596 72.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.5280 56.5056 -2.0000 1.0000 0.0000 0.0000 161.9868 -36.0262 2.5280 5.0000 19.0000 152.1430 150.6450 0.0000 0.0000 152.000
+ 8 1.5000 0.0000 1.5000 -13.7500 500.750 78.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.4088 57.1383 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.5280 5.0000 18.7500 151.9780 150.7000 0.0000 0.0000 152.000
+ 9 1.5000 0.0000 1.5000 -13.5000 500.787 80.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.2892 57.7733 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.5280 5.0000 18.5000 152.0170 150.8570 0.0000 0.0000 152.000
+ 10 1.5000 0.0000 1.5000 -13.2500 500.185 89.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.1694 58.4108 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.5280 5.0000 18.2500 152.0510 150.6280 0.0000 0.0000 152.000
+ 11 1.5000 0.0000 1.5000 -12.9999 501.146 90.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.0496 59.0511 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0489 2.5280 5.0000 17.9999 152.0870 150.7550 0.0000 0.0000 152.000
+ 12 1.5000 0.0000 1.5000 -12.7500 501.031 57.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.9300 59.6942 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.5280 5.0000 17.7500 152.1320 150.9220 0.0000 0.0000 152.000
+ 13 1.5000 0.0000 1.5000 -12.5000 501.047 50.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.8108 60.3406 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.5280 5.0000 17.5000 152.1590 150.8050 0.0000 0.0000 152.000
+ 14 1.5000 0.0000 1.5000 -12.2500 500.534 55.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.6922 60.9904 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.5280 5.0000 17.2500 152.2010 150.7400 0.0000 0.0000 152.000
+ 15 1.5000 0.0000 1.5000 -12.0000 501.463 50.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.5745 61.6438 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.5280 5.0000 17.0000 152.2610 150.6760 0.0000 0.0000 152.000
+ 16 1.5000 0.0000 1.5000 -11.7500 500.257 47.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.4578 62.3012 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.5280 5.0000 16.7500 152.3090 150.7400 0.0000 0.0000 152.000
+ 17 1.5000 0.0000 1.5000 -11.5000 500.480 27.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.3424 62.9628 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.5280 5.0000 16.5000 152.3630 150.9010 0.0000 0.0000 152.000
+ 18 1.5000 0.0000 1.5000 -11.2500 500.577 25.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.2284 63.6288 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.5280 5.0000 16.2500 152.3660 150.6910 0.0000 0.0000 152.000
+ 19 1.5000 0.0000 1.5000 -11.0000 500.328 25.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.1161 64.2995 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.5280 5.0000 16.0000 152.0020 150.7550 0.0000 0.0000 152.000
+ 20 1.5000 0.0000 1.5000 -10.7500 500.155 23.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.0058 64.9753 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.5280 5.0000 15.7500 151.9880 150.7450 0.0000 0.0000 152.000
+ 21 1.5000 0.0000 1.5000 -10.5000 500.738 13.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.8976 65.6564 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.5280 5.0000 15.5000 152.0160 150.5700 0.0000 0.0000 152.000
+# Sum of Counts = 1108
+# Center of Mass = -13.346111+/-0.568290
+# Full Width Half-Maximum = 2.526409+/-0.233286
+# 12:37:09 AM 6/22/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0033.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0033.dat
new file mode 100644
index 0000000..de07331
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0033.dat
@@ -0,0 +1,55 @@
+# scan = 33
+# date = 6/22/2012
+# time = 12:37:09 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 0 e -14.5 -9.5 0.25 preset mcu 12
+# builtin_command = scan h 1.5 k 0 l 0 e -14.5 -9.5 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (1.5 0 0), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -14.5000 751.225 76.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.9720 50.4633 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 152.0340 150.5640 0.0000 0.0000 152.000
+ 2 1.5000 0.0000 0.0000 -14.2499 749.976 67.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.9112 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2499 152.3580 150.6120 0.0000 0.0000 152.000
+ 3 1.5000 0.0000 0.0000 -14.0000 751.440 65.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 83.8482 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9868 -36.0262 2.3993 5.0000 19.0000 152.1320 150.6890 0.0000 0.0000 152.000
+ 4 1.5000 0.0000 0.0000 -13.7500 752.074 54.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 84.7830 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 151.9730 150.7470 0.0000 0.0000 152.000
+ 5 1.5000 0.0000 0.0000 -13.5000 756.554 57.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 85.7160 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3993 5.0000 18.5000 152.2960 150.7980 0.0000 0.0000 152.000
+ 6 1.5000 0.0000 0.0000 -13.2500 758.596 73.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 86.6475 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3993 5.0000 18.2500 152.1080 150.8160 0.0000 0.0000 152.000
+ 7 1.5000 0.0000 0.0000 -13.0000 757.159 75.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 87.5776 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3993 5.0000 18.0000 151.9980 150.6660 0.0000 0.0000 152.000
+ 8 1.5000 0.0000 0.0000 -12.7500 757.781 62.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 88.5068 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3993 5.0000 17.7500 152.2350 150.9910 0.0000 0.0000 152.000
+ 9 1.5000 0.0000 0.0000 -12.5000 758.409 91.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 89.4351 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3993 5.0000 17.5000 152.0560 150.5560 0.0000 0.0000 152.000
+ 10 1.5000 0.0000 0.0000 -12.2500 759.738 64.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 90.3628 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 152.3650 150.7520 0.0000 0.0000 152.000
+ 11 1.5000 0.0000 0.0000 -12.0000 757.944 71.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.2903 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3993 5.0000 17.0000 152.1550 150.8950 0.0000 0.0000 152.000
+ 12 1.5000 0.0000 0.0000 -11.7500 758.420 60.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.2177 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 151.9900 150.7890 0.0000 0.0000 152.000
+ 13 1.5000 0.0000 0.0000 -11.5000 757.793 40.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.1452 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3993 5.0000 16.5000 152.2790 150.9000 0.0000 0.0000 152.000
+ 14 1.5000 0.0000 0.0000 -11.2500 758.332 37.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.0732 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0696 2.3993 5.0000 16.2500 152.0790 150.8130 0.0000 0.0000 152.000
+ 15 1.5000 0.0000 0.0000 -11.0000 757.900 29.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.0018 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 152.2280 150.8410 0.0000 0.0000 152.000
+ 16 1.5000 0.0000 0.0000 -10.7500 758.262 32.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.9314 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 152.1910 150.7740 0.0000 0.0000 152.000
+ 17 1.5000 0.0000 0.0000 -10.5000 758.253 25.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.8621 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9784 -40.0430 2.3993 5.0000 15.5000 152.0100 150.7790 0.0000 0.0000 152.000
+ 18 1.5000 0.0000 0.0000 -10.2500 757.281 32.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.7942 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 152.3120 150.8700 0.0000 0.0000 152.000
+ 19 1.5000 0.0000 0.0000 -10.0000 757.364 24.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.7280 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 152.0880 150.6850 0.0000 0.0000 152.000
+ 20 1.5000 0.0000 0.0000 -9.7500 757.174 31.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.6636 62.9110 -2.0000 1.0000 0.0000 0.0000 159.4534 -41.0932 2.3993 5.0000 14.7500 152.3010 150.6210 0.0000 0.0000 152.000
+ 21 1.5000 0.0000 0.0000 -9.5000 757.154 35.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 100.6015 63.6021 -2.0000 1.0000 0.0000 0.0000 159.2689 -41.4622 2.3993 5.0000 14.5000 152.1820 150.8620 0.0000 0.0000 152.000
+# Sum of Counts = 1100
+# Center of Mass = -12.449539+/-0.532510
+# Full Width Half-Maximum = 2.786771+/-0.235156
+# 5:03:03 AM 6/22/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0034.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0034.dat
new file mode 100644
index 0000000..76085c3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0034.dat
@@ -0,0 +1,55 @@
+# scan = 34
+# date = 6/22/2012
+# time = 5:03:03 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.5 k 0 l 2.5 e -14.0 -9.0 0.25 preset mcu 12
+# builtin_command = scan h -0.5 k 0 l 2.5 e -14.0 -9.0 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at L (-0.5 0 2.5), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -14.0000 750.768 256.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.3290 12.5800 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 1.5494 5.0000 19.0000 152.0230 150.5930 0.0000 0.0000 152.000
+ 2 -0.5000 0.0000 2.5000 -13.7500 749.838 197.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.1420 14.1714 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 1.5494 5.0000 18.7500 152.0330 150.7190 0.0000 0.0000 152.000
+ 3 -0.5000 0.0000 2.5000 -13.5000 749.147 129.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.2542 15.6133 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 1.5494 5.0000 18.5000 152.3490 150.9490 0.0000 0.0000 152.000
+ 4 -0.5000 0.0000 2.5000 -13.2499 750.354 110.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.5885 16.9443 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7851 1.5494 5.0000 18.2499 152.1280 150.8310 0.0000 0.0000 152.000
+ 5 -0.5000 0.0000 2.5000 -13.0000 752.016 78.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.0958 18.1889 -2.0000 1.0000 0.0000 0.0000 161.4755 -37.0488 1.5494 5.0000 18.0000 151.9810 150.6140 0.0000 0.0000 152.000
+ 6 -0.5000 0.0000 2.5000 -12.7500 749.744 83.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -80.7421 19.3640 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 1.5494 5.0000 17.7500 152.2090 150.7870 0.0000 0.0000 152.000
+ 7 -0.5000 0.0000 2.5000 -12.5000 750.249 71.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -78.5031 20.4819 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.5494 5.0000 17.5000 152.0200 150.6590 0.0000 0.0000 152.000
+ 8 -0.5000 0.0000 2.5000 -12.2500 749.722 64.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -76.3605 21.5516 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 1.5494 5.0000 17.2500 152.3350 150.7890 0.0000 0.0000 152.000
+ 9 -0.5000 0.0000 2.5000 -12.0000 749.465 54.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -74.3002 22.5802 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.5494 5.0000 17.0000 152.1170 150.9700 0.0000 0.0000 152.000
+ 10 -0.5000 0.0000 2.5000 -11.7500 749.298 56.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -72.3110 23.5733 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.5494 5.0000 16.7500 151.9740 150.6860 0.0000 0.0000 152.000
+ 11 -0.5000 0.0000 2.5000 -11.5000 746.640 31.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.3838 24.5355 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.5494 5.0000 16.5000 152.2330 150.7680 0.0000 0.0000 152.000
+ 12 -0.5000 0.0000 2.5000 -11.2500 748.314 45.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.5110 25.4704 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.5494 5.0000 16.2500 152.0120 150.5290 0.0000 0.0000 152.000
+ 13 -0.5000 0.0000 2.5000 -11.0000 749.627 43.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -66.6866 26.3811 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 1.5494 5.0000 16.0000 152.3560 150.5710 0.0000 0.0000 152.000
+ 14 -0.5000 0.0000 2.5000 -10.7500 748.893 25.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -64.9053 27.2704 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.5494 5.0000 15.7500 152.1370 150.9450 0.0000 0.0000 152.000
+ 15 -0.5000 0.0000 2.5000 -10.5000 747.674 27.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.1624 28.1404 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 1.5494 5.0000 15.5000 151.9780 150.6900 0.0000 0.0000 152.000
+ 16 -0.5000 0.0000 2.5000 -10.2499 747.487 18.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -61.4542 28.9931 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3842 1.5494 5.0000 15.2499 152.1810 150.8210 0.0000 0.0000 152.000
+ 17 -0.5000 0.0000 2.5000 -10.0000 748.019 33.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.7771 29.8302 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 1.5494 5.0000 15.0000 152.0080 150.7720 0.0000 0.0000 152.000
+ 18 -0.5000 0.0000 2.5000 -9.7500 748.149 22.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.1282 30.6532 -2.0000 1.0000 0.0000 0.0000 159.4534 -41.0932 1.5494 5.0000 14.7500 152.2810 150.6060 0.0000 0.0000 152.000
+ 19 -0.5000 0.0000 2.5000 -9.5000 748.737 25.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.5047 31.4635 -2.0000 1.0000 0.0000 0.0000 159.2690 -41.4622 1.5494 5.0000 14.5000 152.0760 150.7580 0.0000 0.0000 152.000
+ 20 -0.5000 0.0000 2.5000 -9.2500 748.482 22.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.9044 32.2622 -2.0000 1.0000 0.0000 0.0000 159.0794 -41.8412 1.5494 5.0000 14.2500 152.3100 150.6880 0.0000 0.0000 152.000
+ 21 -0.5000 0.0000 2.5000 -9.0000 748.689 12.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.3250 33.0505 -2.0000 1.0000 0.0000 0.0000 158.8846 -42.2309 1.5494 5.0000 14.0000 152.1390 150.7240 0.0000 0.0000 152.000
+# Sum of Counts = 1401
+# Center of Mass = -12.639177+/-0.478915
+# Full Width Half-Maximum = 2.709846+/-0.254517
+# 9:27:45 AM 6/22/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0035.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0035.dat
new file mode 100644
index 0000000..23d3d8b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0035.dat
@@ -0,0 +1,46 @@
+# scan = 35
+# date = 6/22/2012
+# time = 9:27:45 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 0 k 0 l 3 e -14.0 -10.0 0.25 preset mcu 15
+# builtin_command = scan h 0 k 0 l 3 e -14.0 -10.0 0.25 preset mcu 15
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at G (0 0 3), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 15.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -14.0000 935.144 124.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.9958 15.9250 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 1.5924 5.0000 19.0000 151.9810 150.5440 0.0000 0.0000 152.000
+ 2 0.0000 0.0000 3.0000 -13.7500 942.785 127.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.4120 17.2343 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2740 1.5924 5.0000 18.7500 151.9750 150.8960 0.0000 0.0000 152.000
+ 3 0.0000 0.0000 3.0000 -13.5000 944.810 134.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.9905 18.4616 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 1.5924 5.0000 18.5000 152.1550 150.7610 0.0000 0.0000 152.000
+ 4 0.0000 0.0000 3.0000 -13.2500 943.422 96.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.7003 19.6226 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 1.5924 5.0000 18.2500 152.2620 150.9370 0.0000 0.0000 152.000
+ 5 0.0000 0.0000 3.0000 -13.0000 938.252 103.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -47.5189 20.7286 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 1.5924 5.0000 18.0000 152.2430 150.8320 0.0000 0.0000 152.000
+ 6 0.0000 0.0000 3.0000 -12.7500 939.222 89.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.4294 21.7882 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 1.5924 5.0000 17.7500 152.0050 150.8800 0.0000 0.0000 152.000
+ 7 0.0000 0.0000 3.0000 -12.5000 939.102 81.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.4186 22.8081 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.5924 5.0000 17.5000 152.0820 151.0220 0.0000 0.0000 152.000
+ 8 0.0000 0.0000 3.0000 -12.2500 938.413 85.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.4761 23.7936 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 1.5924 5.0000 17.2500 152.1480 150.9760 0.0000 0.0000 152.000
+ 9 0.0000 0.0000 3.0000 -12.0000 938.256 71.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.5931 24.7491 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.5924 5.0000 17.0000 152.2400 150.7190 0.0000 0.0000 152.000
+ 10 0.0000 0.0000 3.0000 -11.7500 936.535 55.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.7628 25.6780 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.5924 5.0000 16.7500 152.2280 150.8760 0.0000 0.0000 152.000
+ 11 0.0000 0.0000 3.0000 -11.4999 935.980 45.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.9792 26.5835 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7606 1.5924 5.0000 16.4999 151.9960 150.8240 0.0000 0.0000 152.000
+ 12 0.0000 0.0000 3.0000 -11.2500 5.667 0.000 7790.000 0.091 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.2372 27.4680 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.5924 5.0000 16.2500 152.0600 150.7180 0.0000 0.0000 152.000
+# Sum of Counts = 1010
+# Center of Mass = -12.976728+/-0.577937
+# Full Width Half-Maximum = 1.497478+/-0.347038
+# 12:20:51 PM 6/22/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0036.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0036.dat
new file mode 100644
index 0000000..c91f745
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0036.dat
@@ -0,0 +1,39 @@
+# scan = 36
+# date = 6/22/2012
+# time = 12:20:51 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 0 k 0 l 3 e -15.25 -14.25 -0.25 preset mcu 15
+# builtin_command = scan h 0 k 0 l 3 e -15.25 -14.25 -0.25 preset mcu 15
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at G (0 0 3), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 15.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -15.2500 933.280 385.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.6158 6.4947 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 1.5924 5.0000 20.2500 152.0520 150.9960 0.0000 0.0000 152.000
+ 2 0.0000 0.0000 3.0000 -15.0000 934.502 226.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.3697 9.1509 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 1.5924 5.0000 20.0000 152.0820 150.5900 0.0000 0.0000 152.000
+ 3 0.0000 0.0000 3.0000 -14.7500 934.229 181.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -66.3046 11.2095 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 1.5924 5.0000 19.7500 152.1270 150.9330 0.0000 0.0000 152.000
+ 4 0.0000 0.0000 3.0000 -14.5000 935.392 144.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.8508 12.9588 -2.0000 1.0000 0.0000 0.0000 162.2270 -35.5458 1.5924 5.0000 19.5000 152.1750 150.9480 0.0000 0.0000 152.000
+ 5 0.0000 0.0000 3.0000 -14.2500 942.965 134.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.7860 14.5113 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 1.5924 5.0000 19.2500 151.9330 151.4210 0.0000 0.0000 152.000
+# Sum of Counts = 1070
+# Center of Mass = -14.886449+/-0.643688
+# Full Width Half-Maximum = 0.704998+/-0.603461
+# 3:23:50 PM 6/22/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0037.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0037.dat
new file mode 100644
index 0000000..5c31549
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0037.dat
@@ -0,0 +1,55 @@
+# scan = 37
+# date = 6/22/2012
+# time = 3:49:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0 0 3) check at T=150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.3899 1.000 741.000 1380.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 151.1320 150.6390 0.0000 0.0000 151.000
+ 2 31.4899 1.000 922.000 1409.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 151.1310 150.6400 0.0000 0.0000 151.000
+ 3 31.5899 1.000 1257.000 1394.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 151.1290 150.6370 0.0000 0.0000 151.000
+ 4 31.6899 1.000 1908.000 1383.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 151.1280 150.6360 0.0000 0.0000 151.000
+ 5 31.7899 1.000 3127.000 1412.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 151.1270 150.6380 0.0000 0.0000 151.000
+ 6 31.8899 1.000 5725.000 1406.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 151.1280 150.6330 0.0000 0.0000 151.000
+ 7 31.9899 1.000 13151.000 1329.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 151.1280 150.6330 0.0000 0.0000 151.000
+ 8 32.0899 1.000 31831.000 1396.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 151.1260 150.6350 0.0000 0.0000 151.000
+ 9 32.1899 1.000 60310.000 1396.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 151.1250 150.6330 0.0000 0.0000 151.000
+ 10 32.2899 1.000 84683.000 1319.000 0.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 151.1240 150.6270 0.0000 0.0000 151.000
+ 11 32.3899 1.000 94098.000 1407.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 151.1230 150.6290 0.0000 0.0000 151.000
+ 12 32.4899 1.000 84209.000 1411.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 151.1220 150.6340 0.0000 0.0000 151.000
+ 13 32.5899 1.000 58206.000 1366.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 151.1220 150.6310 0.0000 0.0000 151.000
+ 14 32.6899 1.000 29306.000 1367.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 151.1210 150.6390 0.0000 0.0000 151.000
+ 15 32.7899 1.000 12594.000 1334.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 151.1190 150.6320 0.0000 0.0000 151.000
+ 16 32.8899 1.000 5580.000 1373.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 151.1200 150.6250 0.0000 0.0000 151.000
+ 17 32.9899 1.000 2643.000 1350.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 151.1190 150.6230 0.0000 0.0000 151.000
+ 18 33.0899 1.000 1561.000 1337.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 151.1180 150.6300 0.0000 0.0000 151.000
+ 19 33.1899 1.000 946.000 1362.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 151.1160 150.6270 0.0000 0.0000 151.000
+ 20 33.2899 1.000 648.000 1368.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 151.1160 150.6240 0.0000 0.0000 151.000
+ 21 33.3899 1.000 474.000 1391.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 151.1140 150.6250 0.0000 0.0000 151.000
+# Sum of Counts = 493920
+# Center of Mass = 32.384197+/-0.065167
+# Full Width Half-Maximum = 0.463565+/-0.029551
+# 3:50:08 PM 6/22/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0038.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0038.dat
new file mode 100644
index 0000000..32d56e8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0038.dat
@@ -0,0 +1,83 @@
+# scan = 38
+# date = 6/22/2012
+# time = 4:05:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 2
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -3.0000 120.474 137.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.4194 61.0076 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.8207 5.0000 8.0000 151.0010 150.4080 0.0000 0.0000 151.000
+ 2 -0.9000 0.0000 2.1000 -2.9500 120.879 150.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.1603 61.1676 -2.0000 1.0000 0.0000 0.0000 151.4413 -57.1174 1.8207 5.0000 7.9500 151.1650 150.4650 0.0000 0.0000 151.000
+ 3 -0.9000 0.0000 2.1000 -2.9000 120.187 130.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.9007 61.3279 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 1.8207 5.0000 7.9000 151.0570 150.4880 0.0000 0.0000 151.000
+ 4 -0.9000 0.0000 2.1000 -2.8500 120.644 141.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.6408 61.4888 -2.0000 1.0000 0.0000 0.0000 151.2431 -57.5138 1.8207 5.0000 7.8500 150.9690 150.4580 0.0000 0.0000 151.000
+ 5 -0.9000 0.0000 2.1000 -2.8000 120.962 168.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.3804 61.6501 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 1.8207 5.0000 7.8000 150.9350 150.4130 0.0000 0.0000 151.000
+ 6 -0.9000 0.0000 2.1000 -2.7500 121.204 136.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.1195 61.8118 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.8207 5.0000 7.7500 151.1730 150.4280 0.0000 0.0000 151.000
+ 7 -0.9000 0.0000 2.1000 -2.7000 120.392 164.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.8582 61.9741 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 1.8207 5.0000 7.7000 151.0960 150.4810 0.0000 0.0000 151.000
+ 8 -0.9000 0.0000 2.1000 -2.6500 120.809 119.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.5965 62.1368 -2.0000 1.0000 0.0000 0.0000 150.8339 -58.3322 1.8207 5.0000 7.6500 150.9970 150.4700 0.0000 0.0000 151.000
+ 9 -0.9000 0.0000 2.1000 -2.6000 120.419 114.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.3342 62.3001 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 1.8207 5.0000 7.6000 150.9270 150.4190 0.0000 0.0000 151.000
+ 10 -0.9000 0.0000 2.1000 -2.5500 120.772 103.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0716 62.4638 -2.0000 1.0000 0.0000 0.0000 150.6225 -58.7548 1.8207 5.0000 7.5500 151.0980 150.4090 0.0000 0.0000 151.000
+ 11 -0.9000 0.0000 2.1000 -2.5000 121.217 75.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.8084 62.6281 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.8207 5.0000 7.5000 151.1370 150.4690 0.0000 0.0000 151.000
+ 12 -0.9000 0.0000 2.1000 -2.4500 120.527 87.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.5448 62.7929 -2.0000 1.0000 0.0000 0.0000 150.4066 -59.1867 1.8207 5.0000 7.4500 151.0270 150.4760 0.0000 0.0000 151.000
+ 13 -0.9000 0.0000 2.1000 -2.4000 120.493 106.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2806 62.9582 -2.0000 1.0000 0.0000 0.0000 150.2968 -59.4063 1.8207 5.0000 7.4000 150.9420 150.4340 0.0000 0.0000 151.000
+ 14 -0.9000 0.0000 2.1000 -2.3500 120.697 113.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.0160 63.1240 -2.0000 1.0000 0.0000 0.0000 150.1858 -59.6284 1.8207 5.0000 7.3500 150.9960 150.3970 0.0000 0.0000 151.000
+ 15 -0.9000 0.0000 2.1000 -2.3000 120.913 147.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.7508 63.2904 -2.0000 1.0000 0.0000 0.0000 150.0735 -59.8530 1.8207 5.0000 7.3000 151.1780 150.4540 0.0000 0.0000 151.000
+ 16 -0.9000 0.0000 2.1000 -2.2500 120.649 176.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4852 63.4574 -2.0000 1.0000 0.0000 0.0000 149.9597 -60.0802 1.8207 5.0000 7.2500 151.0640 150.4840 0.0000 0.0000 151.000
+ 17 -0.9000 0.0000 2.1000 -2.2000 120.753 186.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.2190 63.6250 -2.0000 1.0000 0.0000 0.0000 149.8449 -60.3101 1.8207 5.0000 7.2000 150.9710 150.4510 0.0000 0.0000 151.000
+ 18 -0.9000 0.0000 2.1000 -2.1500 120.683 273.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9522 63.7931 -2.0000 1.0000 0.0000 0.0000 149.7287 -60.5426 1.8207 5.0000 7.1500 150.9300 150.4030 0.0000 0.0000 151.000
+ 19 -0.9000 0.0000 2.1000 -2.1000 120.834 259.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.6849 63.9618 -2.0000 1.0000 0.0000 0.0000 149.6111 -60.7778 1.8207 5.0000 7.1000 151.1820 150.4210 0.0000 0.0000 151.000
+ 20 -0.9000 0.0000 2.1000 -2.0500 120.817 326.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.4171 64.1311 -2.0000 1.0000 0.0000 0.0000 149.4921 -61.0158 1.8207 5.0000 7.0500 151.1050 150.4740 0.0000 0.0000 151.000
+ 21 -0.9000 0.0000 2.1000 -2.0000 120.628 365.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1487 64.3010 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.8207 5.0000 7.0000 151.0000 150.4640 0.0000 0.0000 151.000
+ 22 -0.9000 0.0000 2.1000 -1.9500 120.924 404.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.8797 64.4715 -2.0000 1.0000 0.0000 0.0000 149.2498 -61.5005 1.8207 5.0000 6.9500 150.9240 150.4130 0.0000 0.0000 151.000
+ 23 -0.9000 0.0000 2.1000 -1.9000 120.543 379.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.6101 64.6427 -2.0000 1.0000 0.0000 0.0000 149.1264 -61.7472 1.8207 5.0000 6.9000 151.0950 150.3970 0.0000 0.0000 151.000
+ 24 -0.9000 0.0000 2.1000 -1.8500 120.444 373.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.3400 64.8145 -2.0000 1.0000 0.0000 0.0000 149.0015 -61.9969 1.8207 5.0000 6.8500 151.1480 150.4630 0.0000 0.0000 151.000
+ 25 -0.9000 0.0000 2.1000 -1.8000 120.683 321.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.0692 64.9870 -2.0000 1.0000 0.0000 0.0000 148.8751 -62.2498 1.8207 5.0000 6.8000 151.0330 150.4720 0.0000 0.0000 151.000
+ 26 -0.9000 0.0000 2.1000 -1.7500 120.383 266.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.7978 65.1601 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5058 1.8207 5.0000 6.7500 150.9440 150.4230 0.0000 0.0000 151.000
+ 27 -0.9000 0.0000 2.1000 -1.7000 120.471 228.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.5258 65.3339 -2.0000 1.0000 0.0000 0.0000 148.6175 -62.7649 1.8207 5.0000 6.7000 150.9850 150.3830 0.0000 0.0000 151.000
+ 28 -0.9000 0.0000 2.1000 -1.6500 120.422 222.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.2531 65.5084 -2.0000 1.0000 0.0000 0.0000 148.4863 -63.0274 1.8207 5.0000 6.6500 151.1910 150.4340 0.0000 0.0000 151.000
+ 29 -0.9000 0.0000 2.1000 -1.6000 120.307 228.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9798 65.6836 -2.0000 1.0000 0.0000 0.0000 148.3534 -63.2932 1.8207 5.0000 6.6000 151.0720 150.4670 0.0000 0.0000 151.000
+ 30 -0.9000 0.0000 2.1000 -1.5500 120.318 255.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.7059 65.8595 -2.0000 1.0000 0.0000 0.0000 148.2188 -63.5624 1.8207 5.0000 6.5500 150.9720 150.4380 0.0000 0.0000 151.000
+ 31 -0.9000 0.0000 2.1000 -1.5000 120.650 255.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.4313 66.0361 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8353 1.8207 5.0000 6.5000 150.9260 150.3900 0.0000 0.0000 151.000
+ 32 -0.9000 0.0000 2.1000 -1.4500 120.561 231.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1560 66.2135 -2.0000 1.0000 0.0000 0.0000 147.9442 -64.1115 1.8207 5.0000 6.4500 151.1870 150.4000 0.0000 0.0000 151.000
+ 33 -0.9000 0.0000 2.1000 -1.4000 120.645 214.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.8800 66.3917 -2.0000 1.0000 0.0000 0.0000 147.8042 -64.3915 1.8207 5.0000 6.4000 151.1130 150.4630 0.0000 0.0000 151.000
+ 34 -0.9000 0.0000 2.1000 -1.3500 120.845 213.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.6033 66.5706 -2.0000 1.0000 0.0000 0.0000 147.6624 -64.6752 1.8207 5.0000 6.3500 151.0040 150.4510 0.0000 0.0000 151.000
+ 35 -0.9000 0.0000 2.1000 -1.3000 120.829 196.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.3259 66.7503 -2.0000 1.0000 0.0000 0.0000 147.5186 -64.9628 1.8207 5.0000 6.3000 150.9230 150.4040 0.0000 0.0000 151.000
+ 36 -0.9000 0.0000 2.1000 -1.2500 120.932 136.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.0477 66.9308 -2.0000 1.0000 0.0000 0.0000 147.3729 -65.2542 1.8207 5.0000 6.2500 151.0940 150.3790 0.0000 0.0000 151.000
+ 37 -0.9000 0.0000 2.1000 -1.2000 120.727 90.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.7688 67.1121 -2.0000 1.0000 0.0000 0.0000 147.2251 -65.5497 1.8207 5.0000 6.2000 151.1570 150.4550 0.0000 0.0000 151.000
+ 38 -0.9000 0.0000 2.1000 -1.1500 120.109 84.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4892 67.2942 -2.0000 1.0000 0.0000 0.0000 147.0754 -65.8492 1.8207 5.0000 6.1500 151.0370 150.4610 0.0000 0.0000 151.000
+ 39 -0.9000 0.0000 2.1000 -1.1000 120.833 81.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.2088 67.4772 -2.0000 1.0000 0.0000 0.0000 146.9235 -66.1530 1.8207 5.0000 6.1000 150.9430 150.4120 0.0000 0.0000 151.000
+ 40 -0.9000 0.0000 2.1000 -1.0500 121.025 47.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9276 67.6610 -2.0000 1.0000 0.0000 0.0000 146.7694 -66.4610 1.8207 5.0000 6.0500 150.9820 150.3750 0.0000 0.0000 151.000
+ 41 -0.9000 0.0000 2.1000 -1.0000 120.736 35.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.6457 67.8457 -2.0000 1.0000 0.0000 0.0000 146.6133 -66.7735 1.8207 5.0000 6.0000 151.1970 150.4290 0.0000 0.0000 151.000
+ 42 -0.9000 0.0000 2.1000 -0.9500 120.947 33.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.3629 68.0314 -2.0000 1.0000 0.0000 0.0000 146.4548 -67.0904 1.8207 5.0000 5.9500 151.0730 150.4630 0.0000 0.0000 151.000
+ 43 -0.9000 0.0000 2.1000 -0.9000 120.550 34.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.0793 68.2179 -2.0000 1.0000 0.0000 0.0000 146.2940 -67.4120 1.8207 5.0000 5.9000 150.9700 150.4220 0.0000 0.0000 151.000
+ 44 -0.9000 0.0000 2.1000 -0.8500 120.987 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.7949 68.4053 -2.0000 1.0000 0.0000 0.0000 146.1309 -67.7382 1.8207 5.0000 5.8500 150.9270 150.3840 0.0000 0.0000 151.000
+ 45 -0.9000 0.0000 2.1000 -0.8000 120.799 28.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.5096 68.5937 -2.0000 1.0000 0.0000 0.0000 145.9653 -68.0694 1.8207 5.0000 5.8000 151.1940 150.3960 0.0000 0.0000 151.000
+ 46 -0.9000 0.0000 2.1000 -0.7500 120.531 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2235 68.7831 -2.0000 1.0000 0.0000 0.0000 145.7973 -68.4055 1.8207 5.0000 5.7500 151.1090 150.4560 0.0000 0.0000 151.000
+ 47 -0.9000 0.0000 2.1000 -0.7000 120.715 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.9365 68.9734 -2.0000 1.0000 0.0000 0.0000 145.6266 -68.7467 1.8207 5.0000 5.7000 151.0000 150.4420 0.0000 0.0000 151.000
+ 48 -0.9000 0.0000 2.1000 -0.6500 120.391 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.6486 69.1648 -2.0000 1.0000 0.0000 0.0000 145.4534 -69.0931 1.8207 5.0000 5.6500 150.9190 150.3910 0.0000 0.0000 151.000
+ 49 -0.9000 0.0000 2.1000 -0.6000 120.459 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3598 69.3572 -2.0000 1.0000 0.0000 0.0000 145.2775 -69.4449 1.8207 5.0000 5.6000 151.1180 150.3720 0.0000 0.0000 151.000
+# Sum of Counts = 7911
+# Center of Mass = -1.945734+/-0.031480
+# Full Width Half-Maximum = 1.035737+/-0.013768
+# 5:46:24 PM 6/22/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0039.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0039.dat
new file mode 100644
index 0000000..a6173df
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0039.dat
@@ -0,0 +1,75 @@
+# scan = 39
+# date = 6/22/2012
+# time = 5:59:06 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 2.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) 150K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.8000 0.0000 2.2000 -6.0000 120.544 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.9378 48.7423 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.7324 5.0000 11.0000 150.9310 150.4030 0.0000 0.0000 151.000
+ 2 -0.8000 0.0000 2.2000 -5.9000 120.401 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.4239 49.0279 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 1.7324 5.0000 10.9000 151.0240 150.3640 0.0000 0.0000 151.000
+ 3 -0.8000 0.0000 2.2000 -5.8000 121.044 19.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.9099 49.3138 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 1.7324 5.0000 10.8000 151.1880 150.4260 0.0000 0.0000 151.000
+ 4 -0.8000 0.0000 2.2000 -5.7000 119.813 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.3956 49.6000 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 1.7324 5.0000 10.7000 151.0580 150.4510 0.0000 0.0000 151.000
+ 5 -0.8000 0.0000 2.2000 -5.6000 121.363 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.8812 49.8867 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 1.7324 5.0000 10.6000 150.9580 150.4180 0.0000 0.0000 151.000
+ 6 -0.8000 0.0000 2.2000 -5.5000 120.627 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.3666 50.1738 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.7324 5.0000 10.5000 150.9420 150.3650 0.0000 0.0000 151.000
+ 7 -0.8000 0.0000 2.2000 -5.4000 121.043 32.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.8516 50.4613 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 1.7324 5.0000 10.4000 151.2120 150.4030 0.0000 0.0000 151.000
+ 8 -0.8000 0.0000 2.2000 -5.3000 120.990 38.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.3362 50.7493 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 1.7324 5.0000 10.3000 151.0970 150.4630 0.0000 0.0000 151.000
+ 9 -0.8000 0.0000 2.2000 -5.2000 121.000 52.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.8206 51.0378 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9284 1.7324 5.0000 10.2000 150.9870 150.4400 0.0000 0.0000 151.000
+ 10 -0.8000 0.0000 2.2000 -5.1000 120.689 54.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.3044 51.3268 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1920 1.7324 5.0000 10.1000 150.9160 150.3880 0.0000 0.0000 151.000
+ 11 -0.8000 0.0000 2.2000 -5.0000 120.539 43.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.7878 51.6165 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.7324 5.0000 10.0000 151.1660 150.3800 0.0000 0.0000 151.000
+ 12 -0.8000 0.0000 2.2000 -4.9000 120.770 36.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.2707 51.9067 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7319 1.7324 5.0000 9.9000 151.1350 150.4530 0.0000 0.0000 151.000
+ 13 -0.8000 0.0000 2.2000 -4.8000 121.082 24.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.7530 52.1976 -2.0000 1.0000 0.0000 0.0000 154.4957 -51.0086 1.7324 5.0000 9.8000 151.0170 150.4410 0.0000 0.0000 151.000
+ 14 -0.8000 0.0000 2.2000 -4.7000 120.287 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.2348 52.4891 -2.0000 1.0000 0.0000 0.0000 154.3551 -51.2898 1.7324 5.0000 9.7000 150.9250 150.3970 0.0000 0.0000 151.000
+ 15 -0.8000 0.0000 2.2000 -4.6000 121.136 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.7159 52.7813 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 1.7324 5.0000 9.6000 151.0620 150.3620 0.0000 0.0000 151.000
+ 16 -0.8000 0.0000 2.2000 -4.5000 121.355 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.1963 53.0743 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.7324 5.0000 9.5000 151.1770 150.4400 0.0000 0.0000 151.000
+ 17 -0.8000 0.0000 2.2000 -4.4000 121.046 14.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.6759 53.3680 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 1.7324 5.0000 9.4000 151.0490 150.4530 0.0000 0.0000 151.000
+ 18 -0.8000 0.0000 2.2000 -4.3000 120.675 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.1548 53.6625 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4634 1.7324 5.0000 9.3000 150.9490 150.4120 0.0000 0.0000 151.000
+ 19 -0.8000 0.0000 2.2000 -4.2000 121.277 29.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.6328 53.9579 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 1.7324 5.0000 9.2000 150.9640 150.3630 0.0000 0.0000 151.000
+ 20 -0.8000 0.0000 2.2000 -4.1000 120.727 36.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.1100 54.2541 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 1.7324 5.0000 9.1000 151.2130 150.4190 0.0000 0.0000 151.000
+ 21 -0.8000 0.0000 2.2000 -4.0000 121.477 59.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.5863 54.5513 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.7324 5.0000 9.0000 151.0870 150.4550 0.0000 0.0000 151.000
+ 22 -0.8000 0.0000 2.2000 -3.9000 120.860 81.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.0616 54.8494 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 1.7324 5.0000 8.9000 150.9780 150.4280 0.0000 0.0000 151.000
+ 23 -0.8000 0.0000 2.2000 -3.8000 120.901 95.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.5358 55.1484 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0507 1.7324 5.0000 8.8000 150.9170 150.3720 0.0000 0.0000 151.000
+ 24 -0.8000 0.0000 2.2000 -3.7000 120.700 122.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.0090 55.4486 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 1.7324 5.0000 8.7000 151.1940 150.3810 0.0000 0.0000 151.000
+ 25 -0.8000 0.0000 2.2000 -3.6000 120.963 127.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.4810 55.7497 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 1.7324 5.0000 8.6000 151.1300 150.4480 0.0000 0.0000 151.000
+ 26 -0.8000 0.0000 2.2000 -3.5000 120.424 144.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.9519 56.0520 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.7324 5.0000 8.5000 151.0120 150.4430 0.0000 0.0000 151.000
+ 27 -0.8000 0.0000 2.2000 -3.4000 120.983 97.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.4215 56.3554 -2.0000 1.0000 0.0000 0.0000 152.2846 -55.4305 1.7324 5.0000 8.4000 150.9220 150.3900 0.0000 0.0000 151.000
+ 28 -0.8000 0.0000 2.2000 -3.3000 120.784 61.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.8899 56.6600 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7924 1.7324 5.0000 8.3000 151.0850 150.3560 0.0000 0.0000 151.000
+ 29 -0.8000 0.0000 2.2000 -3.2000 121.069 37.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.3569 56.9659 -2.0000 1.0000 0.0000 0.0000 151.9193 -56.1615 1.7324 5.0000 8.2000 151.1740 150.4430 0.0000 0.0000 151.000
+ 30 -0.8000 0.0000 2.2000 -3.1000 121.083 44.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.8225 57.2731 -2.0000 1.0000 0.0000 0.0000 151.7310 -56.5380 1.7324 5.0000 8.1000 151.0440 150.4510 0.0000 0.0000 151.000
+ 31 -0.8000 0.0000 2.2000 -3.0000 121.292 32.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.2867 57.5816 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9224 1.7324 5.0000 8.0000 150.9440 150.4070 0.0000 0.0000 151.000
+ 32 -0.8000 0.0000 2.2000 -2.9000 120.660 31.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.7493 57.8914 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 1.7324 5.0000 7.9000 150.9760 150.3530 0.0000 0.0000 151.000
+ 33 -0.8000 0.0000 2.2000 -2.8000 120.908 31.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2104 58.2027 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 1.7324 5.0000 7.8000 151.2080 150.4140 0.0000 0.0000 151.000
+ 34 -0.8000 0.0000 2.2000 -2.7000 120.966 29.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.6698 58.5155 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 1.7324 5.0000 7.7000 151.0790 150.4490 0.0000 0.0000 151.000
+ 35 -0.8000 0.0000 2.2000 -2.6000 120.724 28.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.1276 58.8298 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 1.7324 5.0000 7.6000 150.9710 150.4250 0.0000 0.0000 151.000
+ 36 -0.8000 0.0000 2.2000 -2.5000 120.946 19.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5835 59.1458 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9696 1.7324 5.0000 7.5000 150.9220 150.3710 0.0000 0.0000 151.000
+ 37 -0.8000 0.0000 2.2000 -2.4000 121.132 13.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.0376 59.4634 -2.0000 1.0000 0.0000 0.0000 150.2968 -59.4063 1.7324 5.0000 7.4000 151.2070 150.3880 0.0000 0.0000 151.000
+ 38 -0.8000 0.0000 2.2000 -2.3000 121.286 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.4899 59.7827 -2.0000 1.0000 0.0000 0.0000 150.0734 -59.8530 1.7324 5.0000 7.3000 151.1160 150.4540 0.0000 0.0000 151.000
+ 39 -0.8000 0.0000 2.2000 -2.2000 121.165 13.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.9401 60.1038 -2.0000 1.0000 0.0000 0.0000 149.8448 -60.3101 1.7324 5.0000 7.2000 151.0000 150.4350 0.0000 0.0000 151.000
+ 40 -0.8000 0.0000 2.2000 -2.1000 120.558 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.3884 60.4267 -2.0000 1.0000 0.0000 0.0000 149.6111 -60.7778 1.7324 5.0000 7.1000 150.9160 150.3780 0.0000 0.0000 151.000
+ 41 -0.8000 0.0000 2.2000 -2.0000 121.017 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.8344 60.7515 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.7324 5.0000 7.0000 151.1370 150.3710 0.0000 0.0000 151.000
+# Sum of Counts = 1624
+# Center of Mass = -3.951355+/-0.140501
+# Full Width Half-Maximum = 1.824516+/-0.058964
+# 7:23:43 PM 6/22/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0040.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0040.dat
new file mode 100644
index 0000000..fac7957
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0040.dat
@@ -0,0 +1,80 @@
+# scan = 40
+# date = 6/22/2012
+# time = 7:23:43 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) 150K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 121.331 8.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.5005 40.2118 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 1.6566 5.0000 13.0000 151.1330 150.4470 0.0000 0.0000 151.000
+ 2 -0.7000 0.0000 2.3000 -7.9000 121.162 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.9506 40.5013 -2.0000 1.0000 0.0000 0.0000 157.9576 -44.0848 1.6566 5.0000 12.9000 151.0130 150.4440 0.0000 0.0000 151.000
+ 3 -0.7000 0.0000 2.3000 -7.7999 121.583 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.4019 40.7903 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2659 1.6566 5.0000 12.7999 150.9230 150.3860 0.0000 0.0000 151.000
+ 4 -0.7000 0.0000 2.3000 -7.7000 121.004 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.8543 41.0788 -2.0000 1.0000 0.0000 0.0000 157.7754 -44.4490 1.6566 5.0000 12.7000 151.0790 150.3590 0.0000 0.0000 151.000
+ 5 -0.7000 0.0000 2.3000 -7.6000 120.965 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.3077 41.3670 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 1.6566 5.0000 12.6000 151.1710 150.4300 0.0000 0.0000 151.000
+ 6 -0.7000 0.0000 2.3000 -7.5000 121.197 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.7620 41.6548 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.6566 5.0000 12.5000 151.0430 150.4440 0.0000 0.0000 151.000
+ 7 -0.7000 0.0000 2.3000 -7.4000 121.169 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.2172 41.9422 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 1.6566 5.0000 12.4000 150.9430 150.3990 0.0000 0.0000 151.000
+ 8 -0.7000 0.0000 2.3000 -7.3000 121.519 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.6733 42.2292 -2.0000 1.0000 0.0000 0.0000 157.3974 -45.2052 1.6566 5.0000 12.3000 150.9760 150.3490 0.0000 0.0000 151.000
+ 9 -0.7000 0.0000 2.3000 -7.2000 121.055 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.1302 42.5160 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 1.6566 5.0000 12.2000 151.2070 150.4120 0.0000 0.0000 151.000
+ 10 -0.7000 0.0000 2.3000 -7.1000 120.868 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.5878 42.8025 -2.0000 1.0000 0.0000 0.0000 157.2009 -45.5982 1.6566 5.0000 12.1000 151.0770 150.4480 0.0000 0.0000 151.000
+ 11 -0.7000 0.0000 2.3000 -7.0000 121.062 24.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.0460 43.0888 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.6566 5.0000 12.0000 150.9690 150.4160 0.0000 0.0000 151.000
+ 12 -0.7000 0.0000 2.3000 -6.9000 121.941 21.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -47.5050 43.3749 -2.0000 1.0000 0.0000 0.0000 156.9992 -46.0016 1.6566 5.0000 11.9000 150.9230 150.3580 0.0000 0.0000 151.000
+ 13 -0.7000 0.0000 2.3000 -6.8000 121.928 13.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.9645 43.6608 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 1.6566 5.0000 11.8000 151.2110 150.3790 0.0000 0.0000 151.000
+ 14 -0.7000 0.0000 2.3000 -6.7000 121.216 14.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.4245 43.9466 -2.0000 1.0000 0.0000 0.0000 156.7921 -46.4158 1.6566 5.0000 11.7000 151.1170 150.4280 0.0000 0.0000 151.000
+ 15 -0.7000 0.0000 2.3000 -6.6000 121.707 21.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.8850 44.2322 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 1.6566 5.0000 11.6000 150.9980 150.4190 0.0000 0.0000 151.000
+ 16 -0.7000 0.0000 2.3000 -6.5000 121.426 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.3460 44.5177 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.6566 5.0000 11.5000 150.9120 150.3640 0.0000 0.0000 151.000
+ 17 -0.7000 0.0000 2.3000 -6.4000 121.167 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.8073 44.8032 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 1.6566 5.0000 11.4000 151.1540 150.3560 0.0000 0.0000 151.000
+ 18 -0.7000 0.0000 2.3000 -6.3000 121.653 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.2690 45.0886 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 1.6566 5.0000 11.3000 151.1190 150.4230 0.0000 0.0000 151.000
+ 19 -0.7000 0.0000 2.3000 -6.2000 121.284 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7310 45.3740 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 1.6566 5.0000 11.2000 151.0320 150.4450 0.0000 0.0000 151.000
+ 20 -0.7000 0.0000 2.3000 -6.1000 120.940 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.1932 45.6595 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 1.6566 5.0000 11.1000 150.9340 150.3790 0.0000 0.0000 151.000
+ 21 -0.7000 0.0000 2.3000 -6.0000 121.771 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.6556 45.9450 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.6566 5.0000 11.0000 151.0150 150.3420 0.0000 0.0000 151.000
+ 22 -0.7000 0.0000 2.3000 -5.9000 121.675 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1182 46.2305 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 1.6566 5.0000 10.9000 151.2030 150.4130 0.0000 0.0000 151.000
+ 23 -0.7000 0.0000 2.3000 -5.8000 121.663 10.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.5808 46.5162 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4299 1.6566 5.0000 10.8000 151.0670 150.4440 0.0000 0.0000 151.000
+ 24 -0.7000 0.0000 2.3000 -5.7000 122.014 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.0436 46.8020 -2.0000 1.0000 0.0000 0.0000 155.6648 -48.6702 1.6566 5.0000 10.7000 150.9620 150.3980 0.0000 0.0000 151.000
+ 25 -0.7000 0.0000 2.3000 -5.6000 122.497 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5063 47.0879 -2.0000 1.0000 0.0000 0.0000 155.5428 -48.9142 1.6566 5.0000 10.6000 150.9320 150.3440 0.0000 0.0000 151.000
+ 26 -0.7000 0.0000 2.3000 -5.5000 121.403 33.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.9690 47.3741 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.6566 5.0000 10.5000 151.2230 150.3900 0.0000 0.0000 151.000
+ 27 -0.7000 0.0000 2.3000 -5.4000 121.486 34.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.4316 47.6604 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 1.6566 5.0000 10.4000 151.1060 150.4420 0.0000 0.0000 151.000
+ 28 -0.7000 0.0000 2.3000 -5.3000 121.975 54.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.8940 47.9470 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 1.6566 5.0000 10.3000 150.9910 150.4220 0.0000 0.0000 151.000
+ 29 -0.7000 0.0000 2.3000 -5.2000 121.384 72.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.3563 48.2339 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 1.6566 5.0000 10.2000 150.9150 150.3660 0.0000 0.0000 151.000
+ 30 -0.7000 0.0000 2.3000 -5.1000 122.142 74.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.8184 48.5210 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1919 1.6566 5.0000 10.1000 151.1630 150.3590 0.0000 0.0000 151.000
+ 31 -0.7000 0.0000 2.3000 -5.0000 121.570 55.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.2801 48.8085 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.6566 5.0000 10.0000 151.1390 150.4400 0.0000 0.0000 151.000
+ 32 -0.7000 0.0000 2.3000 -4.9000 121.430 35.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.7416 49.0964 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7319 1.6566 5.0000 9.9000 151.0170 150.4320 0.0000 0.0000 151.000
+ 33 -0.7000 0.0000 2.3000 -4.8000 121.504 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.2026 49.3846 -2.0000 1.0000 0.0000 0.0000 154.4957 -51.0086 1.6566 5.0000 9.8000 150.9220 150.3820 0.0000 0.0000 151.000
+ 34 -0.7000 0.0000 2.3000 -4.7000 120.717 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.6633 49.6733 -2.0000 1.0000 0.0000 0.0000 154.3551 -51.2898 1.6566 5.0000 9.7000 151.0700 150.3510 0.0000 0.0000 151.000
+ 35 -0.7000 0.0000 2.3000 -4.6000 121.342 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.1234 49.9624 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 1.6566 5.0000 9.6000 151.1830 150.4260 0.0000 0.0000 151.000
+ 36 -0.7000 0.0000 2.3000 -4.5000 121.394 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.5831 50.2520 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.6566 5.0000 9.5000 151.0530 150.4400 0.0000 0.0000 151.000
+ 37 -0.7000 0.0000 2.3000 -4.4000 120.947 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.0422 50.5421 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 1.6566 5.0000 9.4000 150.9490 150.3960 0.0000 0.0000 151.000
+ 38 -0.7000 0.0000 2.3000 -4.3000 120.880 18.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.5006 50.8327 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4633 1.6566 5.0000 9.3000 150.9630 150.3460 0.0000 0.0000 151.000
+ 39 -0.7000 0.0000 2.3000 -4.2000 121.400 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.9584 51.1240 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 1.6566 5.0000 9.2000 151.2190 150.4050 0.0000 0.0000 151.000
+ 40 -0.7000 0.0000 2.3000 -4.1000 121.669 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.4155 51.4158 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 1.6566 5.0000 9.1000 151.0900 150.4440 0.0000 0.0000 151.000
+ 41 -0.7000 0.0000 2.3000 -4.0000 121.649 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.8718 51.7082 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.6566 5.0000 9.0000 150.9760 150.4230 0.0000 0.0000 151.000
+ 42 -0.7000 0.0000 2.3000 -3.9000 121.156 5.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.3272 52.0014 -2.0000 1.0000 0.0000 0.0000 153.1391 -53.7217 1.6566 5.0000 8.9000 150.9160 150.3550 0.0000 0.0000 151.000
+ 43 -0.7000 0.0000 2.3000 -3.8000 121.167 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.7818 52.2953 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0507 1.6566 5.0000 8.8000 151.2050 150.3770 0.0000 0.0000 151.000
+ 44 -0.7000 0.0000 2.3000 -3.7000 121.387 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.2355 52.5899 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 1.6566 5.0000 8.7000 151.1250 150.4450 0.0000 0.0000 151.000
+ 45 -0.7000 0.0000 2.3000 -3.6000 121.084 3.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.6881 52.8852 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 1.6566 5.0000 8.6000 151.0070 150.4190 0.0000 0.0000 151.000
+ 46 -0.7000 0.0000 2.3000 -3.5000 120.781 8.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.1398 53.1814 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.6566 5.0000 8.5000 150.9170 150.3770 0.0000 0.0000 151.000
+# Sum of Counts = 841
+# Center of Mass = -5.614624+/-0.276252
+# Full Width Half-Maximum = 2.128952+/-0.104094
+# 8:58:55 PM 6/22/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0041.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0041.dat
new file mode 100644
index 0000000..3d15dd2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0041.dat
@@ -0,0 +1,35 @@
+# scan = 41
+# date = 6/22/2012
+# time = 9:44:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1
+# builtin_command = scan h 1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (1.5, 0, 0), 225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.2551 0.0000 4.4443 -5.2500 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.2079 76.3732 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 2.3941 5.0000 10.2500 225.4450 222.4680 0.0000 0.0000 225.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 9:44:41 PM 6/22/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0042.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0042.dat
new file mode 100644
index 0000000..15a81bf
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0042.dat
@@ -0,0 +1,56 @@
+# scan = 42
+# date = 6/22/2012
+# time = 9:55:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 8.0
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 8.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (101), 225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 484.509 49.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.6310 27.3666 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.6853 5.0000 17.5000 224.6370 223.0790 0.0000 0.0000 225.000
+ 2 1.0000 0.0000 1.0000 -12.2500 485.393 42.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 37.2786 28.2324 -2.0000 1.0000 0.0000 0.0000 161.0619 -37.8757 1.6853 5.0000 17.2500 224.6410 223.2930 0.0000 0.0000 225.000
+ 3 1.0000 0.0000 1.0000 -12.0000 485.498 32.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 38.8926 29.0811 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.6853 5.0000 17.0000 224.7110 223.4670 0.0000 0.0000 225.000
+ 4 1.0000 0.0000 1.0000 -11.7500 484.730 47.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 40.4761 29.9144 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.6853 5.0000 16.7500 224.7760 223.6070 0.0000 0.0000 225.000
+ 5 1.0000 0.0000 1.0000 -11.5000 485.277 50.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 42.0320 30.7338 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.6853 5.0000 16.5000 224.8370 223.7080 0.0000 0.0000 225.000
+ 6 1.0000 0.0000 1.0000 -11.2500 484.850 49.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 43.5627 31.5406 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.6853 5.0000 16.2500 224.9070 223.7960 0.0000 0.0000 225.000
+ 7 1.0000 0.0000 1.0000 -10.9999 483.859 62.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 45.0706 32.3359 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3862 1.6853 5.0000 15.9999 224.9810 223.8680 0.0000 0.0000 225.000
+ 8 1.0000 0.0000 1.0000 -10.7500 485.058 61.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 46.5574 33.1208 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.6853 5.0000 15.7500 225.0530 223.9340 0.0000 0.0000 225.000
+ 9 1.0000 0.0000 1.0000 -10.5000 485.290 69.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 48.0252 33.8962 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 1.6853 5.0000 15.5000 225.1270 223.9910 0.0000 0.0000 225.000
+ 10 1.0000 0.0000 1.0000 -10.2500 483.801 83.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 49.4755 34.6632 -2.0000 1.0000 0.0000 0.0000 159.8078 -40.3841 1.6853 5.0000 15.2500 225.1960 224.0340 0.0000 0.0000 225.000
+ 11 1.0000 0.0000 1.0000 -10.0000 483.829 95.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.9098 35.4223 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 1.6853 5.0000 15.0000 225.2780 224.0720 0.0000 0.0000 225.000
+ 12 1.0000 0.0000 1.0000 -9.7500 483.970 89.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 52.3296 36.1745 -2.0000 1.0000 0.0000 0.0000 159.4533 -41.0932 1.6853 5.0000 14.7500 225.3590 224.0950 0.0000 0.0000 225.000
+ 13 1.0000 0.0000 1.0000 -9.5000 484.982 119.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 53.7361 36.9203 -2.0000 1.0000 0.0000 0.0000 159.2690 -41.4622 1.6853 5.0000 14.5000 225.4470 224.1160 0.0000 0.0000 225.000
+ 14 1.0000 0.0000 1.0000 -9.2500 484.300 130.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 55.1305 37.6604 -2.0000 1.0000 0.0000 0.0000 159.0794 -41.8412 1.6853 5.0000 14.2500 225.5250 224.1290 0.0000 0.0000 225.000
+ 15 1.0000 0.0000 1.0000 -9.0000 483.962 136.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 56.5139 38.3955 -2.0000 1.0000 0.0000 0.0000 158.8846 -42.2308 1.6853 5.0000 14.0000 225.6080 224.1250 0.0000 0.0000 225.000
+ 16 1.0000 0.0000 1.0000 -8.7500 483.766 138.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 57.8874 39.1260 -2.0000 1.0000 0.0000 0.0000 158.6842 -42.6316 1.6853 5.0000 13.7500 225.6970 224.1120 0.0000 0.0000 225.000
+ 17 1.0000 0.0000 1.0000 -8.5000 481.550 55.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 59.2518 39.8526 -2.0000 1.0000 0.0000 0.0000 158.4780 -43.0440 1.6853 5.0000 13.5000 225.7860 224.0900 0.0000 0.0000 225.000
+ 18 1.0000 0.0000 1.0000 -8.2500 483.298 55.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 60.6083 40.5758 -2.0000 1.0000 0.0000 0.0000 158.2657 -43.4686 1.6853 5.0000 13.2500 225.8830 224.0400 0.0000 0.0000 225.000
+ 19 1.0000 0.0000 1.0000 -7.9999 483.256 36.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.9577 41.2960 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9062 1.6853 5.0000 12.9999 225.9510 223.9980 0.0000 0.0000 225.000
+ 20 1.0000 0.0000 1.0000 -7.7500 484.914 43.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.3008 42.0137 -2.0000 1.0000 0.0000 0.0000 157.8214 -44.3571 1.6853 5.0000 12.7500 225.9520 223.9360 0.0000 0.0000 225.000
+ 21 1.0000 0.0000 1.0000 -7.5000 484.150 38.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.6383 42.7294 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8224 1.6853 5.0000 12.5000 225.8320 223.8950 0.0000 0.0000 225.000
+ 22 1.0000 0.0000 1.0000 -7.2500 485.235 33.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.9712 43.4436 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.6853 5.0000 12.2500 225.8700 224.0130 0.0000 0.0000 225.000
+# Sum of Counts = 1511
+# Center of Mass = -9.762733+/-0.356793
+# Full Width Half-Maximum = 2.630858+/-0.149418
+# 12:56:19 AM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0043.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0043.dat
new file mode 100644
index 0000000..38dc804
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0043.dat
@@ -0,0 +1,48 @@
+# scan = 43
+# date = 6/23/2012
+# time = 12:56:19 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5, 0, 1.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 3.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 182.012 19.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.2458 72.2344 -2.0000 1.0000 0.0000 0.0000 158.2225 -43.5551 2.5280 5.0000 13.2000 225.8300 224.0440 0.0000 0.0000 225.000
+ 2 1.5000 0.0000 1.5000 -8.0000 181.623 18.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.9880 72.8390 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 2.5280 5.0000 13.0000 225.1080 224.0940 0.0000 0.0000 225.000
+ 3 1.5000 0.0000 1.5000 -7.8000 182.627 35.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.7335 73.4499 -2.0000 1.0000 0.0000 0.0000 157.8670 -44.2658 2.5280 5.0000 12.8000 224.9060 223.7950 0.0000 0.0000 225.000
+ 4 1.5000 0.0000 1.5000 -7.6000 182.179 51.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.4824 74.0674 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 2.5280 5.0000 12.6000 225.6180 224.1160 0.0000 0.0000 225.000
+ 5 1.5000 0.0000 1.5000 -7.4000 182.832 78.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.2349 74.6918 -2.0000 1.0000 0.0000 0.0000 157.4936 -45.0126 2.5280 5.0000 12.4000 224.9610 224.0290 0.0000 0.0000 225.000
+ 6 1.5000 0.0000 1.5000 -7.2000 182.299 102.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.9913 75.3234 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 2.5280 5.0000 12.2000 225.5230 223.8150 0.0000 0.0000 225.000
+ 7 1.5000 0.0000 1.5000 -7.0000 181.396 88.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.7517 75.9626 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 2.5280 5.0000 12.0000 225.4120 224.1410 0.0000 0.0000 225.000
+ 8 1.5000 0.0000 1.5000 -6.8000 182.073 60.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.5163 76.6096 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 2.5280 5.0000 11.8000 224.8240 223.9450 0.0000 0.0000 225.000
+ 9 1.5000 0.0000 1.5000 -6.6000 181.834 43.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.2853 77.2650 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 2.5280 5.0000 11.6000 225.9200 223.9440 0.0000 0.0000 225.000
+ 10 1.5000 0.0000 1.5000 -6.4000 181.711 28.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.0590 77.9292 -2.0000 1.0000 0.0000 0.0000 156.4705 -47.0589 2.5280 5.0000 11.4000 225.2420 224.1300 0.0000 0.0000 225.000
+ 11 1.5000 0.0000 1.5000 -6.2000 181.154 35.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.8375 78.6024 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.5280 5.0000 11.2000 224.7470 223.8740 0.0000 0.0000 225.000
+ 12 1.5000 0.0000 1.5000 -6.0000 181.216 23.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.6211 79.2852 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.5280 5.0000 11.0000 225.7970 224.0490 0.0000 0.0000 225.000
+ 13 1.5000 0.0000 1.5000 -5.8000 181.456 15.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 100.4102 79.9780 -2.0000 1.0000 0.0000 0.0000 155.7850 -48.4298 2.5280 5.0000 10.8000 225.0950 224.0910 0.0000 0.0000 225.000
+ 14 1.5000 0.0000 1.5000 -5.6000 181.420 16.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 101.2048 80.6814 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.5280 5.0000 10.6000 224.9240 223.8100 0.0000 0.0000 225.000
+# Sum of Counts = 611
+# Center of Mass = -7.022259+/-0.402497
+# Full Width Half-Maximum = 1.200374+/-0.185313
+# 1:39:49 AM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0044.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0044.dat
new file mode 100644
index 0000000..1f91313
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0044.dat
@@ -0,0 +1,46 @@
+# scan = 44
+# date = 6/23/2012
+# time = 1:39:49 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+# builtin_command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (-1.5, 0, 0), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -5.2500 90.962 6.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.8256 76.5870 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 2.3993 5.0000 10.2500 225.2830 224.1480 0.0000 0.0000 225.000
+ 2 -1.5000 0.0000 0.0000 -5.0000 90.731 15.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -61.7926 77.4569 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.3993 5.0000 10.0000 224.9830 224.0520 0.0000 0.0000 225.000
+ 3 -1.5000 0.0000 0.0000 -4.7500 90.846 42.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7502 78.3439 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 2.3993 5.0000 9.7500 224.7510 223.8920 0.0000 0.0000 225.000
+ 4 -1.5000 0.0000 0.0000 -4.5000 90.316 86.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.6976 79.2490 -2.0000 1.0000 0.0000 0.0000 154.0666 -51.8666 2.3993 5.0000 9.5000 225.4400 223.8250 0.0000 0.0000 225.000
+ 5 -1.5000 0.0000 0.0000 -4.2500 90.283 171.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.6344 80.1735 -2.0000 1.0000 0.0000 0.0000 153.6919 -52.6158 2.3993 5.0000 9.2500 225.8200 224.0470 0.0000 0.0000 225.000
+ 6 -1.5000 0.0000 0.0000 -4.0000 90.083 235.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.5598 81.1188 -2.0000 1.0000 0.0000 0.0000 153.3006 -53.3986 2.3993 5.0000 9.0000 225.4290 224.1510 0.0000 0.0000 225.000
+ 7 -1.5000 0.0000 0.0000 -3.7500 90.559 207.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.4730 82.0866 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 2.3993 5.0000 8.7500 225.1080 224.1050 0.0000 0.0000 225.000
+ 8 -1.5000 0.0000 0.0000 -3.5000 90.868 68.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -55.3731 83.0783 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.3993 5.0000 8.5000 224.8380 223.9750 0.0000 0.0000 225.000
+ 9 -1.5000 0.0000 0.0000 -3.2500 90.622 25.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.2594 84.0960 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 2.3993 5.0000 8.2500 224.9120 223.8170 0.0000 0.0000 225.000
+ 10 -1.5000 0.0000 0.0000 -3.0000 90.504 17.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.1307 85.1416 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.3993 5.0000 8.0000 225.9000 223.9410 0.0000 0.0000 225.000
+ 11 -1.5000 0.0000 0.0000 -2.7500 90.737 14.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.9860 86.2176 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9188 2.3993 5.0000 7.7500 225.5860 224.1390 0.0000 0.0000 225.000
+ 12 -1.5000 0.0000 0.0000 -2.5000 91.155 7.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.8242 87.3264 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.3993 5.0000 7.5000 225.2270 224.1400 0.0000 0.0000 225.000
+# Sum of Counts = 893
+# Center of Mass = -3.989082+/-0.189375
+# Full Width Half-Maximum = 0.894693+/-0.099896
+# 1:59:53 AM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0045.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0045.dat
new file mode 100644
index 0000000..8b313f3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0045.dat
@@ -0,0 +1,88 @@
+# scan = 45
+# date = 6/23/2012
+# time = 1:59:53 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA at T (-1,0,3.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.7000 90.690 17.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.4136 67.8300 -2.0000 1.0000 0.0000 0.0000 158.6434 -42.7131 2.4515 5.0000 13.7000 224.8860 223.9950 0.0000 0.0000 225.000
+ 2 -1.0000 0.0000 3.5000 -8.6000 90.788 13.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.0395 68.1192 -2.0000 1.0000 0.0000 0.0000 158.5612 -42.8776 2.4515 5.0000 13.6000 224.7950 223.8390 0.0000 0.0000 225.000
+ 3 -1.0000 0.0000 3.5000 -8.5000 90.371 18.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.6648 68.4096 -2.0000 1.0000 0.0000 0.0000 158.4780 -43.0440 2.4515 5.0000 13.5000 225.8170 223.8900 0.0000 0.0000 225.000
+ 4 -1.0000 0.0000 3.5000 -8.4000 90.789 12.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.2895 68.7013 -2.0000 1.0000 0.0000 0.0000 158.3937 -43.2123 2.4515 5.0000 13.4000 225.6710 224.1010 0.0000 0.0000 225.000
+ 5 -1.0000 0.0000 3.5000 -8.3000 90.464 22.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9136 68.9942 -2.0000 1.0000 0.0000 0.0000 158.3086 -43.3827 2.4515 5.0000 13.3000 225.3030 224.1600 0.0000 0.0000 225.000
+ 6 -1.0000 0.0000 3.5000 -8.2000 90.618 25.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5369 69.2885 -2.0000 1.0000 0.0000 0.0000 158.2225 -43.5551 2.4515 5.0000 13.2000 225.0020 224.0660 0.0000 0.0000 225.000
+ 7 -1.0000 0.0000 3.5000 -8.1000 90.270 40.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1596 69.5841 -2.0000 1.0000 0.0000 0.0000 158.1352 -43.7295 2.4515 5.0000 13.1000 224.7630 223.9050 0.0000 0.0000 225.000
+ 8 -1.0000 0.0000 3.5000 -8.0000 90.783 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7815 69.8811 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 2.4515 5.0000 13.0000 225.2980 223.8170 0.0000 0.0000 225.000
+ 9 -1.0000 0.0000 3.5000 -7.9000 90.815 52.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.4027 70.1795 -2.0000 1.0000 0.0000 0.0000 157.9574 -44.0848 2.4515 5.0000 12.9000 225.8390 224.0350 0.0000 0.0000 225.000
+ 10 -1.0000 0.0000 3.5000 -7.8000 90.351 42.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.0231 70.4794 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 2.4515 5.0000 12.8000 225.4580 224.1480 0.0000 0.0000 225.000
+ 11 -1.0000 0.0000 3.5000 -7.7000 90.196 57.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.6428 70.7807 -2.0000 1.0000 0.0000 0.0000 157.7755 -44.4490 2.4516 5.0000 12.7000 225.1300 224.1160 0.0000 0.0000 225.000
+ 12 -1.0000 0.0000 3.5000 -7.6000 90.279 59.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.2617 71.0836 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 2.4515 5.0000 12.6000 224.8610 223.9760 0.0000 0.0000 225.000
+ 13 -1.0000 0.0000 3.5000 -7.5000 90.314 55.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.8797 71.3880 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 2.4515 5.0000 12.5000 224.8390 223.8340 0.0000 0.0000 225.000
+ 14 -1.0000 0.0000 3.5000 -7.4000 90.701 75.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.4969 71.6940 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 2.4515 5.0000 12.4000 225.8710 223.9430 0.0000 0.0000 225.000
+ 15 -1.0000 0.0000 3.5000 -7.3000 90.663 70.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1133 72.0016 -2.0000 1.0000 0.0000 0.0000 157.3974 -45.2052 2.4515 5.0000 12.3000 225.6350 224.1180 0.0000 0.0000 225.000
+ 16 -1.0000 0.0000 3.5000 -7.2000 90.624 67.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.7287 72.3108 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 2.4515 5.0000 12.2000 225.2730 224.1510 0.0000 0.0000 225.000
+ 17 -1.0000 0.0000 3.5000 -7.1000 90.536 52.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.3433 72.6218 -2.0000 1.0000 0.0000 0.0000 157.2009 -45.5982 2.4515 5.0000 12.1000 224.9780 224.0670 0.0000 0.0000 225.000
+ 18 -1.0000 0.0000 3.5000 -7.0000 90.490 52.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.9569 72.9345 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 2.4515 5.0000 12.0000 224.7550 223.9040 0.0000 0.0000 225.000
+ 19 -1.0000 0.0000 3.5000 -6.9000 90.721 47.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.5695 73.2490 -2.0000 1.0000 0.0000 0.0000 156.9992 -46.0016 2.4515 5.0000 11.9000 225.4050 223.8450 0.0000 0.0000 225.000
+ 20 -1.0000 0.0000 3.5000 -6.8000 90.935 44.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.1812 73.5653 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 2.4515 5.0000 11.8000 225.8030 224.0540 0.0000 0.0000 225.000
+ 21 -1.0000 0.0000 3.5000 -6.7000 90.346 39.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.7918 73.8835 -2.0000 1.0000 0.0000 0.0000 156.7921 -46.4158 2.4515 5.0000 11.7000 225.4210 224.1560 0.0000 0.0000 225.000
+ 22 -1.0000 0.0000 3.5000 -6.6000 90.785 26.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4014 74.2036 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 2.4515 5.0000 11.6000 225.1030 224.1080 0.0000 0.0000 225.000
+ 23 -1.0000 0.0000 3.5000 -6.5000 90.629 26.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.0099 74.5256 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.4515 5.0000 11.5000 224.8380 223.9650 0.0000 0.0000 225.000
+ 24 -1.0000 0.0000 3.5000 -6.4000 91.024 39.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.6174 74.8497 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.4515 5.0000 11.4000 224.9060 223.8360 0.0000 0.0000 225.000
+ 25 -1.0000 0.0000 3.5000 -6.3000 90.219 28.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.2237 75.1758 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 2.4515 5.0000 11.3000 225.8900 223.9560 0.0000 0.0000 225.000
+ 26 -1.0000 0.0000 3.5000 -6.2000 90.673 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.8289 75.5040 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.4515 5.0000 11.2000 225.5890 224.1330 0.0000 0.0000 225.000
+ 27 -1.0000 0.0000 3.5000 -6.1000 90.924 27.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4328 75.8344 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.4515 5.0000 11.1000 225.2390 224.1470 0.0000 0.0000 225.000
+ 28 -1.0000 0.0000 3.5000 -6.0000 90.802 23.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.0356 76.1669 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9597 2.4515 5.0000 11.0000 224.9510 224.0470 0.0000 0.0000 225.000
+ 29 -1.0000 0.0000 3.5000 -5.9000 90.710 21.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.6372 76.5018 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 2.4515 5.0000 10.9000 224.7510 223.8890 0.0000 0.0000 225.000
+ 30 -1.0000 0.0000 3.5000 -5.8000 90.937 16.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2375 76.8389 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.4515 5.0000 10.8000 225.5740 223.8630 0.0000 0.0000 225.000
+ 31 -1.0000 0.0000 3.5000 -5.7000 90.116 15.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.8364 77.1784 -2.0000 1.0000 0.0000 0.0000 155.6648 -48.6702 2.4515 5.0000 10.7000 225.7600 224.0880 0.0000 0.0000 225.000
+ 32 -1.0000 0.0000 3.5000 -5.6000 91.008 22.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.4341 77.5204 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.4515 5.0000 10.6000 225.3840 224.1670 0.0000 0.0000 225.000
+ 33 -1.0000 0.0000 3.5000 -5.5000 90.515 26.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.0304 77.8649 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.4515 5.0000 10.5000 225.0720 224.1000 0.0000 0.0000 225.000
+ 34 -1.0000 0.0000 3.5000 -5.4000 90.683 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.6252 78.2120 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.4515 5.0000 10.4000 224.8150 223.9650 0.0000 0.0000 225.000
+ 35 -1.0000 0.0000 3.5000 -5.3000 90.558 59.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2187 78.5616 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.4515 5.0000 10.3000 224.9920 223.8400 0.0000 0.0000 225.000
+ 36 -1.0000 0.0000 3.5000 -5.2000 91.195 71.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8107 78.9140 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.4515 5.0000 10.2000 225.8760 223.9830 0.0000 0.0000 225.000
+ 37 -1.0000 0.0000 3.5000 -5.1000 90.856 84.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.4011 79.2692 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1919 2.4515 5.0000 10.1000 225.5370 224.1420 0.0000 0.0000 225.000
+ 38 -1.0000 0.0000 3.5000 -5.0000 90.504 98.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.9900 79.6271 -2.0000 1.0000 0.0000 0.0000 154.7701 -50.4597 2.4515 5.0000 10.0000 225.1960 224.1440 0.0000 0.0000 225.000
+ 39 -1.0000 0.0000 3.5000 -4.9000 90.870 101.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.5774 79.9880 -2.0000 1.0000 0.0000 0.0000 154.6340 -50.7320 2.4515 5.0000 9.9000 224.9180 224.0240 0.0000 0.0000 225.000
+ 40 -1.0000 0.0000 3.5000 -4.8000 90.354 79.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.1631 80.3520 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.4515 5.0000 9.8000 224.7650 223.8780 0.0000 0.0000 225.000
+ 41 -1.0000 0.0000 3.5000 -4.7000 90.608 71.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.7471 80.7189 -2.0000 1.0000 0.0000 0.0000 154.3549 -51.2898 2.4515 5.0000 9.7000 225.7060 223.8820 0.0000 0.0000 225.000
+ 42 -1.0000 0.0000 3.5000 -4.6000 90.916 59.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.3294 81.0891 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.4515 5.0000 9.6000 225.7010 224.1060 0.0000 0.0000 225.000
+ 43 -1.0000 0.0000 3.5000 -4.5000 90.489 46.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.9100 81.4625 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.4515 5.0000 9.5000 225.3290 224.1690 0.0000 0.0000 225.000
+ 44 -1.0000 0.0000 3.5000 -4.4000 90.543 37.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4888 81.8392 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 2.4515 5.0000 9.4000 225.0280 224.0790 0.0000 0.0000 225.000
+ 45 -1.0000 0.0000 3.5000 -4.3000 90.726 20.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.0657 82.2194 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4634 2.4515 5.0000 9.3000 224.7830 223.9400 0.0000 0.0000 225.000
+ 46 -1.0000 0.0000 3.5000 -4.2000 91.005 16.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.6407 82.6031 -2.0000 1.0000 0.0000 0.0000 153.6150 -52.7696 2.4515 5.0000 9.2000 225.1780 223.8230 0.0000 0.0000 225.000
+ 47 -1.0000 0.0000 3.5000 -4.1000 90.788 21.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.2138 82.9904 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 2.4515 5.0000 9.1000 225.8520 224.0260 0.0000 0.0000 225.000
+ 48 -1.0000 0.0000 3.5000 -4.0000 90.756 11.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.7849 83.3815 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.4515 5.0000 9.0000 225.4810 224.1570 0.0000 0.0000 225.000
+ 49 -1.0000 0.0000 3.5000 -3.9000 90.861 7.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.3539 83.7765 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.4515 5.0000 8.9000 225.1520 224.1360 0.0000 0.0000 225.000
+ 50 -1.0000 0.0000 3.5000 -3.8000 90.638 11.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.9209 84.1754 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0507 2.4515 5.0000 8.8000 224.8810 224.0100 0.0000 0.0000 225.000
+ 51 -1.0000 0.0000 3.5000 -3.7000 89.896 4.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.4857 84.5783 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.4515 5.0000 8.7000 224.8050 223.8590 0.0000 0.0000 225.000
+ 52 -1.0000 0.0000 3.5000 -3.6000 90.169 7.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.0482 84.9855 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.4515 5.0000 8.6000 225.8200 223.9160 0.0000 0.0000 225.000
+ 53 -1.0000 0.0000 3.5000 -3.5000 90.684 10.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.6085 85.3970 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.4515 5.0000 8.5000 225.6620 224.1200 0.0000 0.0000 225.000
+ 54 -1.0000 0.0000 3.5000 -3.4000 90.299 6.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.1665 85.8130 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 2.4515 5.0000 8.4000 225.2990 224.1550 0.0000 0.0000 225.000
+# Sum of Counts = 2053
+# Center of Mass = -6.171505+/-0.194863
+# Full Width Half-Maximum = 2.668940+/-0.076673
+# 3:23:50 AM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0046.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0046.dat
new file mode 100644
index 0000000..5645822
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0046.dat
@@ -0,0 +1,55 @@
+# scan = 46
+# date = 6/23/2012
+# time = 3:23:50 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5, 0, 1.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.5000 482.504 66.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.2222 52.7450 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.5280 5.0000 20.5000 224.9030 224.0180 0.0000 0.0000 225.000
+ 2 1.5000 0.0000 1.5000 -15.2500 483.555 57.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.1100 53.3686 -2.0000 1.0000 0.0000 0.0000 162.5700 -34.8598 2.5280 5.0000 20.2500 224.9840 224.1240 0.0000 0.0000 225.000
+ 3 1.5000 0.0000 1.5000 -15.0000 486.798 65.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.9962 53.9931 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.5280 5.0000 20.0000 225.0400 224.1230 0.0000 0.0000 225.000
+ 4 1.5000 0.0000 1.5000 -14.7500 486.422 60.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.8808 54.6188 -2.0000 1.0000 0.0000 0.0000 162.3436 -35.3126 2.5280 5.0000 19.7500 225.1020 224.1720 0.0000 0.0000 225.000
+ 5 1.5000 0.0000 1.5000 -14.5000 486.080 84.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.7642 55.2460 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.5280 5.0000 19.5000 225.1580 224.1680 0.0000 0.0000 225.000
+ 6 1.5000 0.0000 1.5000 -14.2500 486.448 105.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.6465 55.8748 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.5280 5.0000 19.2500 225.2180 224.1930 0.0000 0.0000 225.000
+ 7 1.5000 0.0000 1.5000 -13.9999 485.530 110.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.5280 56.5056 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0263 2.5280 5.0000 18.9999 225.2780 224.1990 0.0000 0.0000 225.000
+ 8 1.5000 0.0000 1.5000 -13.7500 486.301 119.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.4088 57.1383 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.5280 5.0000 18.7500 225.3450 224.2090 0.0000 0.0000 225.000
+ 9 1.5000 0.0000 1.5000 -13.5000 485.678 143.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.2892 57.7733 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.5280 5.0000 18.5000 225.4120 224.2060 0.0000 0.0000 225.000
+ 10 1.5000 0.0000 1.5000 -13.2500 485.228 136.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.1694 58.4108 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.5280 5.0000 18.2500 225.4830 224.2000 0.0000 0.0000 225.000
+ 11 1.5000 0.0000 1.5000 -13.0000 485.736 98.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.0496 59.0511 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.5280 5.0000 18.0000 225.5590 224.1900 0.0000 0.0000 225.000
+ 12 1.5000 0.0000 1.5000 -12.7500 484.683 116.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.9300 59.6942 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.5280 5.0000 17.7500 225.6350 224.1710 0.0000 0.0000 225.000
+ 13 1.5000 0.0000 1.5000 -12.5000 485.184 82.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.8108 60.3406 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.5280 5.0000 17.5000 225.7170 224.1330 0.0000 0.0000 225.000
+ 14 1.5000 0.0000 1.5000 -12.2500 484.635 78.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.6922 60.9904 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.5280 5.0000 17.2500 225.7900 224.0980 0.0000 0.0000 225.000
+ 15 1.5000 0.0000 1.5000 -12.0000 484.866 70.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.5745 61.6438 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.5280 5.0000 17.0000 225.8550 224.0590 0.0000 0.0000 225.000
+ 16 1.5000 0.0000 1.5000 -11.7500 484.747 58.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.4578 62.3012 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.5280 5.0000 16.7500 225.8800 224.0190 0.0000 0.0000 225.000
+ 17 1.5000 0.0000 1.5000 -11.5000 484.480 53.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.3424 62.9628 -2.0000 1.0000 0.0000 0.0000 160.6197 -38.7605 2.5280 5.0000 16.5000 225.8090 223.9560 0.0000 0.0000 225.000
+ 18 1.5000 0.0000 1.5000 -11.2500 484.469 56.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.2284 63.6288 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.5280 5.0000 16.2500 225.6230 223.9150 0.0000 0.0000 225.000
+ 19 1.5000 0.0000 1.5000 -11.0000 484.056 44.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.1161 64.2995 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.5280 5.0000 16.0000 225.3680 223.8840 0.0000 0.0000 225.000
+ 20 1.5000 0.0000 1.5000 -10.7500 483.968 24.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.0058 64.9753 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.5280 5.0000 15.7500 225.0920 223.8720 0.0000 0.0000 225.000
+ 21 1.5000 0.0000 1.5000 -10.5000 483.022 33.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.8976 65.6564 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.5280 5.0000 15.5000 224.8870 223.8890 0.0000 0.0000 225.000
+# Sum of Counts = 1657
+# Center of Mass = -13.251804+/-0.461436
+# Full Width Half-Maximum = 2.524821+/-0.186122
+# 6:14:57 AM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0047.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0047.dat
new file mode 100644
index 0000000..3ba5314
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0047.dat
@@ -0,0 +1,56 @@
+# scan = 47
+# date = 6/23/2012
+# time = 6:14:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 8
+# builtin_command = scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0, 0, 4.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -16.2500 484.161 38.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1784 45.5869 -2.0000 1.0000 0.0000 0.0000 162.9980 -34.0041 2.3886 5.0000 21.2500 225.1810 223.8820 0.0000 0.0000 225.000
+ 2 0.0000 0.0000 4.5000 -16.0000 483.316 51.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2081 46.2288 -2.0000 1.0000 0.0000 0.0000 162.8940 -34.2121 2.3886 5.0000 21.0000 224.9440 223.8760 0.0000 0.0000 225.000
+ 3 0.0000 0.0000 4.5000 -15.7500 483.483 46.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.2424 46.8694 -2.0000 1.0000 0.0000 0.0000 162.7880 -34.4240 2.3886 5.0000 20.7500 224.8120 223.8930 0.0000 0.0000 225.000
+ 4 0.0000 0.0000 4.5000 -15.5000 483.413 68.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2810 47.5091 -2.0000 1.0000 0.0000 0.0000 162.6800 -34.6398 2.3886 5.0000 20.5000 224.7560 223.9250 0.0000 0.0000 225.000
+ 5 0.0000 0.0000 4.5000 -15.2500 482.892 75.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.3236 48.1481 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.3886 5.0000 20.2500 224.7610 223.9540 0.0000 0.0000 225.000
+ 6 0.0000 0.0000 4.5000 -15.0000 482.839 100.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.3698 48.7867 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.3886 5.0000 20.0000 224.7980 223.9900 0.0000 0.0000 225.000
+ 7 0.0000 0.0000 4.5000 -14.7500 483.751 113.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.4194 49.4250 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 2.3886 5.0000 19.7500 224.8470 224.0210 0.0000 0.0000 225.000
+ 8 0.0000 0.0000 4.5000 -14.4999 483.206 138.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4720 50.0634 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3886 5.0000 19.4999 224.9050 224.0570 0.0000 0.0000 225.000
+ 9 0.0000 0.0000 4.5000 -14.2500 482.884 133.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.5274 50.7021 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3886 5.0000 19.2500 224.9580 224.0870 0.0000 0.0000 225.000
+ 10 0.0000 0.0000 4.5000 -14.0000 483.477 145.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.5852 51.3412 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3886 5.0000 19.0000 225.0180 224.1170 0.0000 0.0000 225.000
+ 11 0.0000 0.0000 4.5000 -13.7500 482.391 109.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.6453 51.9810 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3886 5.0000 18.7500 225.0800 224.1500 0.0000 0.0000 225.000
+ 12 0.0000 0.0000 4.5000 -13.5000 481.709 140.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.7073 52.6218 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3886 5.0000 18.5000 225.1500 224.1610 0.0000 0.0000 225.000
+ 13 0.0000 0.0000 4.5000 -13.2500 483.472 105.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -3.7710 53.2638 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3886 5.0000 18.2500 225.2220 224.1850 0.0000 0.0000 225.000
+ 14 0.0000 0.0000 4.5000 -13.0000 483.162 96.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.8362 53.9072 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3886 5.0000 18.0000 225.2900 224.2000 0.0000 0.0000 225.000
+ 15 0.0000 0.0000 4.5000 -12.7500 480.505 73.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.9024 54.5523 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3886 5.0000 17.7500 225.3650 224.2030 0.0000 0.0000 225.000
+ 16 0.0000 0.0000 4.5000 -12.5000 481.083 65.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.9696 55.1992 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3886 5.0000 17.5000 225.7120 223.9740 0.0000 0.0000 225.000
+ 17 0.0000 0.0000 4.5000 -12.2500 481.474 59.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0375 55.8483 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3886 5.0000 17.2500 225.4770 223.9350 0.0000 0.0000 225.000
+ 18 0.0000 0.0000 4.5000 -11.9999 482.292 47.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.8942 56.4998 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1639 2.3886 5.0000 16.9999 225.1390 223.9230 0.0000 0.0000 225.000
+ 19 0.0000 0.0000 4.5000 -11.7500 482.215 39.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 1.8257 57.1538 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3886 5.0000 16.7500 224.9040 223.9300 0.0000 0.0000 225.000
+ 20 0.0000 0.0000 4.5000 -11.5000 482.736 40.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 2.7573 57.8108 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3886 5.0000 16.5000 224.7860 223.9490 0.0000 0.0000 225.000
+ 21 0.0000 0.0000 4.5000 -11.2500 482.821 34.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 3.6892 58.4709 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.3886 5.0000 16.2500 224.7520 223.9780 0.0000 0.0000 225.000
+ 22 0.0000 0.0000 4.5000 -11.0000 482.135 30.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 4.6217 59.1344 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3886 5.0000 16.0000 224.7780 224.0170 0.0000 0.0000 225.000
+# Sum of Counts = 1744
+# Center of Mass = -13.840299+/-0.469662
+# Full Width Half-Maximum = 2.520455+/-0.180598
+# 9:19:43 AM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0048.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0048.dat
new file mode 100644
index 0000000..8bf0d3a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0048.dat
@@ -0,0 +1,53 @@
+# scan = 48
+# date = 6/23/2012
+# time = 9:19:43 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 12
+# builtin_command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (-1.5, 0, 0), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -14.5000 729.382 69.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.0280 50.4633 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 224.7550 223.9560 0.0000 0.0000 225.000
+ 2 -1.5000 0.0000 0.0000 -14.2500 729.324 73.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -97.0888 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2500 225.4230 224.2480 0.0000 0.0000 225.000
+ 3 -1.5000 0.0000 0.0000 -14.0000 725.700 76.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -96.1518 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9867 -36.0262 2.3993 5.0000 19.0000 224.7620 223.9980 0.0000 0.0000 225.000
+ 4 -1.5000 0.0000 0.0000 -13.7500 724.131 69.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -95.2170 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 225.6700 224.2010 0.0000 0.0000 225.000
+ 5 -1.5000 0.0000 0.0000 -13.5000 724.604 85.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.2840 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3993 5.0000 18.5000 224.9160 224.1140 0.0000 0.0000 225.000
+ 6 -1.5000 0.0000 0.0000 -13.2500 724.901 128.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -93.3525 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3993 5.0000 18.2500 225.8710 224.0560 0.0000 0.0000 225.000
+ 7 -1.5000 0.0000 0.0000 -13.0000 724.357 146.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -92.4224 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3993 5.0000 18.0000 225.0990 224.1980 0.0000 0.0000 225.000
+ 8 -1.5000 0.0000 0.0000 -12.7500 725.591 132.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.4932 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3993 5.0000 17.7500 225.4520 223.9130 0.0000 0.0000 225.000
+ 9 -1.5000 0.0000 0.0000 -12.5000 728.855 120.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -90.5649 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5940 2.3993 5.0000 17.5000 225.3040 224.2500 0.0000 0.0000 225.000
+ 10 -1.5000 0.0000 0.0000 -12.2500 726.397 114.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -89.6372 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 224.7820 223.9510 0.0000 0.0000 225.000
+ 11 -1.5000 0.0000 0.0000 -12.0000 727.234 103.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.7097 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3993 5.0000 17.0000 225.2510 224.2380 0.0000 0.0000 225.000
+ 12 -1.5000 0.0000 0.0000 -11.7500 725.637 91.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -87.7823 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 224.8300 223.9300 0.0000 0.0000 225.000
+ 13 -1.5000 0.0000 0.0000 -11.5000 724.239 81.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -86.8548 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3993 5.0000 16.5000 225.4880 224.2460 0.0000 0.0000 225.000
+ 14 -1.5000 0.0000 0.0000 -11.2500 724.266 59.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.9268 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.3993 5.0000 16.2500 224.8070 224.0390 0.0000 0.0000 225.000
+ 15 -1.5000 0.0000 0.0000 -11.0000 724.692 68.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.9982 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 225.7650 224.1440 0.0000 0.0000 225.000
+ 16 -1.5000 0.0000 0.0000 -10.7500 723.067 46.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.0686 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 224.9910 224.1530 0.0000 0.0000 225.000
+ 17 -1.5000 0.0000 0.0000 -10.5000 723.884 37.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.1379 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.3993 5.0000 15.5000 225.7620 223.9830 0.0000 0.0000 225.000
+ 18 -1.5000 0.0000 0.0000 -10.2500 724.443 40.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -82.2058 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 225.2000 224.2180 0.0000 0.0000 225.000
+ 19 -1.5000 0.0000 0.0000 -10.0000 724.685 46.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -81.2720 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 224.9410 223.9210 0.0000 0.0000 225.000
+# Sum of Counts = 1583
+# Center of Mass = -12.492735+/-0.445024
+# Full Width Half-Maximum = 2.341186+/-0.189245
+# 1:21:26 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0049.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0049.dat
new file mode 100644
index 0000000..d24cc23
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0049.dat
@@ -0,0 +1,55 @@
+# scan = 49
+# date = 6/23/2012
+# time = 1:21:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-L (-0.7, 0, 2.3), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 120.772 5.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.5004 40.2118 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 1.6566 5.0000 13.0000 225.3380 224.2310 0.0000 0.0000 225.000
+ 2 -0.7000 0.0000 2.3000 -7.8000 120.261 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.4019 40.7903 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 1.6566 5.0000 12.8000 224.9520 224.1190 0.0000 0.0000 225.000
+ 3 -0.7000 0.0000 2.3000 -7.6000 120.652 10.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.3077 41.3670 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 1.6566 5.0000 12.6000 224.8280 223.9290 0.0000 0.0000 225.000
+ 4 -0.7000 0.0000 2.3000 -7.4000 120.764 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.2172 41.9422 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 1.6566 5.0000 12.4000 225.8610 224.0860 0.0000 0.0000 225.000
+ 5 -0.7000 0.0000 2.3000 -7.2000 120.949 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.1302 42.5160 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 1.6566 5.0000 12.2000 225.3880 224.2380 0.0000 0.0000 225.000
+ 6 -0.7000 0.0000 2.3000 -7.0000 121.093 30.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.0460 43.0888 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.6566 5.0000 12.0000 224.9890 224.1380 0.0000 0.0000 225.000
+ 7 -0.7000 0.0000 2.3000 -6.8000 121.133 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.9645 43.6608 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 1.6566 5.0000 11.8000 224.7780 223.9410 0.0000 0.0000 225.000
+ 8 -0.7000 0.0000 2.3000 -6.6000 119.954 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.8850 44.2322 -2.0000 1.0000 0.0000 0.0000 156.6863 -46.6273 1.6566 5.0000 11.6000 225.8740 224.0570 0.0000 0.0000 225.000
+ 9 -0.7000 0.0000 2.3000 -6.4000 120.489 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.8073 44.8032 -2.0000 1.0000 0.0000 0.0000 156.4705 -47.0589 1.6566 5.0000 11.4000 225.4360 224.2390 0.0000 0.0000 225.000
+ 10 -0.7000 0.0000 2.3000 -6.2000 120.944 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7310 45.3740 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 1.6566 5.0000 11.2000 225.0260 224.1570 0.0000 0.0000 225.000
+ 11 -0.7000 0.0000 2.3000 -6.0000 120.606 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.6556 45.9450 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.6566 5.0000 11.0000 224.7570 223.9600 0.0000 0.0000 225.000
+ 12 -0.7000 0.0000 2.3000 -5.8000 120.763 10.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.5808 46.5162 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 1.6566 5.0000 10.8000 225.8550 224.0170 0.0000 0.0000 225.000
+ 13 -0.7000 0.0000 2.3000 -5.6000 120.911 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5063 47.0879 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 1.6566 5.0000 10.6000 225.4800 224.2350 0.0000 0.0000 225.000
+ 14 -0.7000 0.0000 2.3000 -5.4000 120.872 57.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.4316 47.6604 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 1.6566 5.0000 10.4000 225.0580 224.1710 0.0000 0.0000 225.000
+ 15 -0.7000 0.0000 2.3000 -5.2000 120.752 88.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.3563 48.2339 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 1.6566 5.0000 10.2000 224.7550 223.9760 0.0000 0.0000 225.000
+ 16 -0.7000 0.0000 2.3000 -5.0000 120.695 110.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.2801 48.8085 -2.0000 1.0000 0.0000 0.0000 154.7701 -50.4597 1.6566 5.0000 10.0000 225.8130 223.9940 0.0000 0.0000 225.000
+ 17 -0.7000 0.0000 2.3000 -4.8000 120.615 68.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.2026 49.3846 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 1.6566 5.0000 9.8000 225.5340 224.2360 0.0000 0.0000 225.000
+ 18 -0.7000 0.0000 2.3000 -4.6000 120.655 33.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.1234 49.9624 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 1.6566 5.0000 9.6000 225.1030 224.1990 0.0000 0.0000 225.000
+ 19 -0.7000 0.0000 2.3000 -4.4000 121.068 24.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.0422 50.5421 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 1.6566 5.0000 9.4000 224.7740 224.0030 0.0000 0.0000 225.000
+ 20 -0.7000 0.0000 2.3000 -4.2000 120.700 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.9584 51.1240 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 1.6566 5.0000 9.2000 225.6820 223.9630 0.0000 0.0000 225.000
+ 21 -0.7000 0.0000 2.3000 -4.0000 120.502 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.8718 51.7082 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.6566 5.0000 9.0000 225.5840 224.2120 0.0000 0.0000 225.000
+# Sum of Counts = 634
+# Center of Mass = -5.516088+/-0.312286
+# Full Width Half-Maximum = 1.974500+/-0.150145
+# 2:04:59 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0050.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0050.dat
new file mode 100644
index 0000000..65076c1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0050.dat
@@ -0,0 +1,59 @@
+# scan = 50
+# date = 6/23/2012
+# time = 2:04:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 241.269 12.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 225.0790 224.1780 0.0000 0.0000 225.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 240.186 18.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 225.7320 223.9630 0.0000 0.0000 225.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 241.553 16.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 225.1380 224.1920 0.0000 0.0000 225.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 240.875 28.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3113 1.4398 5.0000 11.7500 225.4820 223.9340 0.0000 0.0000 225.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 241.477 64.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 225.1960 224.2200 0.0000 0.0000 225.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 241.571 87.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 225.2280 223.9150 0.0000 0.0000 225.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 241.471 80.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 225.2590 224.2310 0.0000 0.0000 225.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 240.972 41.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5496 1.4398 5.0000 10.7500 224.9910 223.8920 0.0000 0.0000 225.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 241.012 20.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 225.3220 224.2380 0.0000 0.0000 225.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 241.734 13.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1008 -49.7981 1.4398 5.0000 10.2500 224.8360 223.9270 0.0000 0.0000 225.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 241.123 12.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4598 1.4398 5.0000 10.0000 225.3870 224.2360 0.0000 0.0000 225.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 241.379 14.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 224.7720 223.9500 0.0000 0.0000 225.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 240.093 14.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 225.4510 224.2410 0.0000 0.0000 225.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 241.119 19.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6920 -52.6158 1.4398 5.0000 9.2500 224.7540 223.9760 0.0000 0.0000 225.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 241.674 10.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3005 -53.3986 1.4398 5.0000 9.0000 225.5320 224.2360 0.0000 0.0000 225.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 241.724 8.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 224.7770 224.0110 0.0000 0.0000 225.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 240.899 21.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 225.6000 224.2150 0.0000 0.0000 225.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 241.690 9.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 224.8120 224.0370 0.0000 0.0000 225.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 241.537 15.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5387 -56.9223 1.4398 5.0000 8.0000 225.6690 224.1950 0.0000 0.0000 225.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 241.665 26.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0406 -57.9186 1.4398 5.0000 7.7500 224.8500 224.0570 0.0000 0.0000 225.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 241.339 44.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 225.7520 224.1730 0.0000 0.0000 225.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 241.057 17.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 224.9050 224.0990 0.0000 0.0000 225.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 241.413 9.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 225.8190 224.1220 0.0000 0.0000 225.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 241.909 10.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 224.9530 224.1220 0.0000 0.0000 225.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 241.940 7.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.4398 5.0000 6.5000 225.8600 224.0890 0.0000 0.0000 225.000
+# Sum of Counts = 614
+# Center of Mass = -5.096091+/-0.298407
+# Full Width Half-Maximum = 3.307238+/-0.179734
+# 3:47:07 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0051.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0051.dat
new file mode 100644
index 0000000..99e9112
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0051.dat
@@ -0,0 +1,75 @@
+# scan = 51
+# date = 6/23/2012
+# time = 3:47:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# builtin_command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-T (-1, 0, 2.9), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -6.5000 60.383 5.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.4904 65.5036 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.2199 5.0000 11.5000 224.9540 224.1310 0.0000 0.0000 225.000
+ 2 -1.0000 0.0000 2.9000 -6.4000 60.134 9.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0748 65.8059 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.2199 5.0000 11.4000 224.7910 224.0250 0.0000 0.0000 225.000
+ 3 -1.0000 0.0000 2.9000 -6.2999 60.486 11.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.6584 66.1098 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2794 2.2199 5.0000 11.2999 224.8350 223.9270 0.0000 0.0000 225.000
+ 4 -1.0000 0.0000 2.9000 -6.2000 60.376 10.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2411 66.4150 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.2199 5.0000 11.2000 225.5720 223.9420 0.0000 0.0000 225.000
+ 5 -1.0000 0.0000 2.9000 -6.1000 60.257 19.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.8229 66.7218 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.2199 5.0000 11.1000 225.8560 224.1000 0.0000 0.0000 225.000
+ 6 -1.0000 0.0000 2.9000 -6.0000 60.426 23.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4038 67.0302 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.2199 5.0000 11.0000 225.6190 224.2180 0.0000 0.0000 225.000
+ 7 -1.0000 0.0000 2.9000 -5.9000 60.584 55.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9838 67.3402 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 2.2199 5.0000 10.9000 225.3720 224.2420 0.0000 0.0000 225.000
+ 8 -1.0000 0.0000 2.9000 -5.8000 60.267 65.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5628 67.6518 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.2199 5.0000 10.8000 225.1590 224.2130 0.0000 0.0000 225.000
+ 9 -1.0000 0.0000 2.9000 -5.7000 59.988 107.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1408 67.9651 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 2.2199 5.0000 10.7000 224.9730 224.1400 0.0000 0.0000 225.000
+ 10 -1.0000 0.0000 2.9000 -5.6000 60.635 115.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.7177 68.2802 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.2199 5.0000 10.6000 224.8090 224.0510 0.0000 0.0000 225.000
+ 11 -1.0000 0.0000 2.9000 -5.5000 60.608 56.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.2936 68.5970 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.2199 5.0000 10.5000 224.7980 223.9380 0.0000 0.0000 225.000
+ 12 -1.0000 0.0000 2.9000 -5.4000 60.347 14.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.8684 68.9156 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.2199 5.0000 10.4000 225.4690 223.9310 0.0000 0.0000 225.000
+ 13 -1.0000 0.0000 2.9000 -5.3000 60.441 6.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.4420 69.2362 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.2199 5.0000 10.3000 225.8640 224.0720 0.0000 0.0000 225.000
+ 14 -1.0000 0.0000 2.9000 -5.2000 60.518 11.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.0145 69.5586 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.2199 5.0000 10.2000 225.6420 224.1980 0.0000 0.0000 225.000
+ 15 -1.0000 0.0000 2.9000 -5.1000 60.304 8.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5858 69.8830 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1920 2.2199 5.0000 10.1000 225.3910 224.2450 0.0000 0.0000 225.000
+ 16 -1.0000 0.0000 2.9000 -5.0000 59.978 3.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1559 70.2095 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.2199 5.0000 10.0000 225.1770 224.2120 0.0000 0.0000 225.000
+ 17 -1.0000 0.0000 2.9000 -4.9000 60.410 14.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7246 70.5380 -2.0000 1.0000 0.0000 0.0000 154.6339 -50.7319 2.2199 5.0000 9.9000 224.9870 224.1400 0.0000 0.0000 225.000
+ 18 -1.0000 0.0000 2.9000 -4.8000 59.960 7.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.2921 70.8687 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.2199 5.0000 9.8000 224.8190 224.0510 0.0000 0.0000 225.000
+ 19 -1.0000 0.0000 2.9000 -4.7000 60.269 4.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.8583 71.2016 -2.0000 1.0000 0.0000 0.0000 154.3550 -51.2898 2.2199 5.0000 9.7000 224.7850 223.9450 0.0000 0.0000 225.000
+ 20 -1.0000 0.0000 2.9000 -4.6000 60.083 11.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4230 71.5367 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.2199 5.0000 9.6000 225.4060 223.9220 0.0000 0.0000 225.000
+ 21 -1.0000 0.0000 2.9000 -4.5000 60.166 12.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9864 71.8742 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.2199 5.0000 9.5000 225.8710 224.0650 0.0000 0.0000 225.000
+ 22 -1.0000 0.0000 2.9000 -4.4000 60.424 17.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.5483 72.2141 -2.0000 1.0000 0.0000 0.0000 153.9187 -52.1625 2.2199 5.0000 9.4000 225.6600 224.1970 0.0000 0.0000 225.000
+ 23 -1.0000 0.0000 2.9000 -4.3000 60.701 42.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1087 72.5564 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4633 2.2199 5.0000 9.3000 225.4090 224.2410 0.0000 0.0000 225.000
+ 24 -1.0000 0.0000 2.9000 -4.2000 60.115 85.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.6676 72.9012 -2.0000 1.0000 0.0000 0.0000 153.6151 -52.7696 2.2199 5.0000 9.2000 225.1890 224.2160 0.0000 0.0000 225.000
+ 25 -1.0000 0.0000 2.9000 -4.1000 60.620 143.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2248 73.2487 -2.0000 1.0000 0.0000 0.0000 153.4593 -53.0813 2.2199 5.0000 9.1000 224.9990 224.1510 0.0000 0.0000 225.000
+ 26 -1.0000 0.0000 2.9000 -4.0000 60.420 236.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.7805 73.5988 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.2199 5.0000 9.0000 224.8300 224.0570 0.0000 0.0000 225.000
+ 27 -1.0000 0.0000 2.9000 -3.9000 60.580 109.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3345 73.9517 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.2199 5.0000 8.9000 224.7710 223.9440 0.0000 0.0000 225.000
+ 28 -1.0000 0.0000 2.9000 -3.8000 60.358 109.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.8867 74.3074 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0507 2.2199 5.0000 8.8000 225.3540 223.9230 0.0000 0.0000 225.000
+ 29 -1.0000 0.0000 2.9000 -3.7000 60.144 88.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4372 74.6660 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.2199 5.0000 8.7000 225.8810 224.0540 0.0000 0.0000 225.000
+ 30 -1.0000 0.0000 2.9000 -3.6000 60.227 124.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.9859 75.0276 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.2199 5.0000 8.6000 225.6840 224.1900 0.0000 0.0000 225.000
+ 31 -1.0000 0.0000 2.9000 -3.5000 60.630 136.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.5328 75.3923 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.2199 5.0000 8.5000 225.4280 224.2450 0.0000 0.0000 225.000
+ 32 -1.0000 0.0000 2.9000 -3.4000 60.207 70.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.0777 75.7602 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 2.2199 5.0000 8.4000 225.2070 224.2190 0.0000 0.0000 225.000
+ 33 -1.0000 0.0000 2.9000 -3.3000 60.086 34.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.6206 76.1314 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7925 2.2199 5.0000 8.3000 225.0160 224.1570 0.0000 0.0000 225.000
+ 34 -1.0000 0.0000 2.9000 -3.2000 60.375 30.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1616 76.5059 -2.0000 1.0000 0.0000 0.0000 151.9193 -56.1615 2.2199 5.0000 8.2000 224.8450 224.0670 0.0000 0.0000 225.000
+ 35 -1.0000 0.0000 2.9000 -3.1000 60.394 20.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.7004 76.8839 -2.0000 1.0000 0.0000 0.0000 151.7310 -56.5380 2.2199 5.0000 8.1000 224.7600 223.9580 0.0000 0.0000 225.000
+ 36 -1.0000 0.0000 2.9000 -3.0000 60.319 11.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2371 77.2656 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.2199 5.0000 8.0000 225.2580 223.9150 0.0000 0.0000 225.000
+ 37 -1.0000 0.0000 2.9000 -2.9000 60.245 9.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.7716 77.6509 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3147 2.2199 5.0000 7.9000 225.8710 224.0420 0.0000 0.0000 225.000
+ 38 -1.0000 0.0000 2.9000 -2.8000 60.299 20.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.3038 78.0400 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 2.2199 5.0000 7.8000 225.7040 224.1800 0.0000 0.0000 225.000
+ 39 -1.0000 0.0000 2.9000 -2.7000 60.265 7.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.8338 78.4332 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 2.2199 5.0000 7.7000 225.4450 224.2430 0.0000 0.0000 225.000
+ 40 -1.0000 0.0000 2.9000 -2.6000 60.327 5.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.3613 78.8304 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 2.2199 5.0000 7.6000 225.2230 224.2230 0.0000 0.0000 225.000
+ 41 -1.0000 0.0000 2.9000 -2.5000 60.580 8.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8863 79.2318 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.2199 5.0000 7.5000 225.0290 224.1540 0.0000 0.0000 225.000
+# Sum of Counts = 1868
+# Center of Mass = -4.330781+/-0.143353
+# Full Width Half-Maximum = 1.872154+/-0.067317
+# 4:30:15 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0052.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0052.dat
new file mode 100644
index 0000000..e85f435
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0052.dat
@@ -0,0 +1,91 @@
+# scan = 52
+# date = 6/23/2012
+# time = 4:58:17 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.9 k 0 l 2.1 e -3.5 -0.7 0.05 preset mcu 1
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.5 -0.7 0.05 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-L (-0.9, 0, 2.1), T=300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -3.5000 60.239 26.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.9894 59.4314 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.8207 5.0000 8.5000 305.0160 292.9350 0.0000 0.0000 300.000
+ 2 -0.9000 0.0000 2.1000 -3.4500 60.391 30.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.7341 59.5872 -2.0000 1.0000 0.0000 0.0000 152.3739 -55.2522 1.8207 5.0000 8.4500 303.0840 294.8420 0.0000 0.0000 300.000
+ 3 -0.9000 0.0000 2.1000 -3.4000 59.902 32.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.4784 59.7434 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 1.8207 5.0000 8.4000 301.5710 295.8550 0.0000 0.0000 300.000
+ 4 -0.9000 0.0000 2.1000 -3.3500 60.356 39.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.2223 59.9000 -2.0000 1.0000 0.0000 0.0000 152.1947 -55.6106 1.8207 5.0000 8.3500 300.4600 296.3370 0.0000 0.0000 300.000
+ 5 -0.9000 0.0000 2.1000 -3.3000 60.587 32.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.9659 60.0570 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7924 1.8207 5.0000 8.3000 299.5890 296.4500 0.0000 0.0000 300.000
+ 6 -0.9000 0.0000 2.1000 -3.2500 60.486 48.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.7091 60.2144 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.8207 5.0000 8.2500 298.8540 296.3640 0.0000 0.0000 300.000
+ 7 -0.9000 0.0000 2.1000 -3.2000 60.444 59.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.4519 60.3722 -2.0000 1.0000 0.0000 0.0000 151.9192 -56.1615 1.8207 5.0000 8.2000 298.5070 296.1780 0.0000 0.0000 300.000
+ 8 -0.9000 0.0000 2.1000 -3.1500 60.602 76.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.1944 60.5304 -2.0000 1.0000 0.0000 0.0000 151.8256 -56.3488 1.8207 5.0000 8.1500 299.0050 296.0730 0.0000 0.0000 300.000
+ 9 -0.9000 0.0000 2.1000 -3.1000 60.015 64.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.9365 60.6890 -2.0000 1.0000 0.0000 0.0000 151.7308 -56.5381 1.8207 5.0000 8.1000 300.2560 296.2220 0.0000 0.0000 300.000
+ 10 -0.9000 0.0000 2.1000 -3.0500 60.211 77.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.6782 60.8481 -2.0000 1.0000 0.0000 0.0000 151.6354 -56.7292 1.8207 5.0000 8.0500 301.2870 296.6450 0.0000 0.0000 300.000
+ 11 -0.9000 0.0000 2.1000 -3.0000 60.592 74.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.4194 61.0076 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.8207 5.0000 8.0000 301.3230 297.1060 0.0000 0.0000 300.000
+ 12 -0.9000 0.0000 2.1000 -2.9500 60.327 92.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.1603 61.1676 -2.0000 1.0000 0.0000 0.0000 151.4413 -57.1174 1.8207 5.0000 7.9500 300.7040 297.4000 0.0000 0.0000 300.000
+ 13 -0.9000 0.0000 2.1000 -2.9000 60.205 113.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.9007 61.3279 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 1.8207 5.0000 7.9000 299.9600 297.4520 0.0000 0.0000 300.000
+ 14 -0.9000 0.0000 2.1000 -2.8500 60.418 124.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.6408 61.4888 -2.0000 1.0000 0.0000 0.0000 151.2431 -57.5138 1.8207 5.0000 7.8500 299.3270 297.3360 0.0000 0.0000 300.000
+ 15 -0.9000 0.0000 2.1000 -2.8000 60.068 146.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.3804 61.6501 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 1.8207 5.0000 7.8000 298.9010 297.1150 0.0000 0.0000 300.000
+ 16 -0.9000 0.0000 2.1000 -2.7500 60.569 131.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.1195 61.8118 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.8207 5.0000 7.7500 298.9600 296.9020 0.0000 0.0000 300.000
+ 17 -0.9000 0.0000 2.1000 -2.7000 60.317 164.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.8582 61.9741 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 1.8207 5.0000 7.7000 299.6740 296.8420 0.0000 0.0000 300.000
+ 18 -0.9000 0.0000 2.1000 -2.6500 60.022 141.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.5965 62.1368 -2.0000 1.0000 0.0000 0.0000 150.8339 -58.3322 1.8207 5.0000 7.6500 300.6280 297.0260 0.0000 0.0000 300.000
+ 19 -0.9000 0.0000 2.1000 -2.6000 60.088 125.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.3342 62.3001 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 1.8207 5.0000 7.6000 301.0780 297.3320 0.0000 0.0000 300.000
+ 20 -0.9000 0.0000 2.1000 -2.5500 60.062 110.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0716 62.4638 -2.0000 1.0000 0.0000 0.0000 150.6226 -58.7548 1.8207 5.0000 7.5500 300.8400 297.6100 0.0000 0.0000 300.000
+ 21 -0.9000 0.0000 2.1000 -2.5000 60.403 97.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.8084 62.6281 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.8207 5.0000 7.5000 300.2700 297.7200 0.0000 0.0000 300.000
+ 22 -0.9000 0.0000 2.1000 -2.4500 60.682 102.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.5448 62.7929 -2.0000 1.0000 0.0000 0.0000 150.4066 -59.1868 1.8207 5.0000 7.4500 299.6800 297.6660 0.0000 0.0000 300.000
+ 23 -0.9000 0.0000 2.1000 -2.4000 60.315 85.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2806 62.9582 -2.0000 1.0000 0.0000 0.0000 150.2968 -59.4063 1.8207 5.0000 7.4000 299.2310 297.4970 0.0000 0.0000 300.000
+ 24 -0.9000 0.0000 2.1000 -2.3500 60.250 76.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.0160 63.1240 -2.0000 1.0000 0.0000 0.0000 150.1858 -59.6284 1.8207 5.0000 7.3500 299.1120 297.3040 0.0000 0.0000 300.000
+ 25 -0.9000 0.0000 2.1000 -2.3000 60.057 76.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.7508 63.2904 -2.0000 1.0000 0.0000 0.0000 150.0735 -59.8530 1.8207 5.0000 7.3000 299.4810 297.1870 0.0000 0.0000 300.000
+ 26 -0.9000 0.0000 2.1000 -2.2500 60.380 112.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4852 63.4574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.8207 5.0000 7.2500 300.1950 297.2410 0.0000 0.0000 300.000
+ 27 -0.9000 0.0000 2.1000 -2.2000 60.322 123.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.2190 63.6250 -2.0000 1.0000 0.0000 0.0000 149.8448 -60.3101 1.8207 5.0000 7.2000 300.7580 297.4480 0.0000 0.0000 300.000
+ 28 -0.9000 0.0000 2.1000 -2.1500 60.340 152.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9522 63.7931 -2.0000 1.0000 0.0000 0.0000 149.7287 -60.5426 1.8207 5.0000 7.1500 300.7960 297.6950 0.0000 0.0000 300.000
+ 29 -0.9000 0.0000 2.1000 -2.1000 60.355 195.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.6849 63.9618 -2.0000 1.0000 0.0000 0.0000 149.6111 -60.7778 1.8207 5.0000 7.1000 300.4260 297.8460 0.0000 0.0000 300.000
+ 30 -0.9000 0.0000 2.1000 -2.0500 60.560 229.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.4171 64.1311 -2.0000 1.0000 0.0000 0.0000 149.4921 -61.0158 1.8207 5.0000 7.0500 299.9260 297.8460 0.0000 0.0000 300.000
+ 31 -0.9000 0.0000 2.1000 -2.0000 60.029 276.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1487 64.3010 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.8207 5.0000 7.0000 299.4950 297.7240 0.0000 0.0000 300.000
+ 32 -0.9000 0.0000 2.1000 -1.9500 60.026 315.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.8797 64.4715 -2.0000 1.0000 0.0000 0.0000 149.2498 -61.5005 1.8207 5.0000 6.9500 299.2860 297.5660 0.0000 0.0000 300.000
+ 33 -0.9000 0.0000 2.1000 -1.9000 60.574 339.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.6101 64.6427 -2.0000 1.0000 0.0000 0.0000 149.1262 -61.7472 1.8207 5.0000 6.9000 299.4430 297.4340 0.0000 0.0000 300.000
+ 34 -0.9000 0.0000 2.1000 -1.8500 59.881 360.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.3400 64.8145 -2.0000 1.0000 0.0000 0.0000 149.0015 -61.9969 1.8207 5.0000 6.8500 299.9430 297.4190 0.0000 0.0000 300.000
+ 35 -0.9000 0.0000 2.1000 -1.8000 60.517 378.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.0692 64.9870 -2.0000 1.0000 0.0000 0.0000 148.8751 -62.2498 1.8207 5.0000 6.8000 300.4650 297.5480 0.0000 0.0000 300.000
+ 36 -0.9000 0.0000 2.1000 -1.7500 60.425 325.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.7978 65.1601 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.8207 5.0000 6.7500 300.6640 297.7380 0.0000 0.0000 300.000
+ 37 -0.9000 0.0000 2.1000 -1.7000 60.228 286.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.5258 65.3339 -2.0000 1.0000 0.0000 0.0000 148.6175 -62.7649 1.8207 5.0000 6.7000 300.4700 297.8850 0.0000 0.0000 300.000
+ 38 -0.9000 0.0000 2.1000 -1.6500 60.294 278.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.2531 65.5084 -2.0000 1.0000 0.0000 0.0000 148.4862 -63.0274 1.8207 5.0000 6.6500 300.0840 297.9270 0.0000 0.0000 300.000
+ 39 -0.9000 0.0000 2.1000 -1.6000 60.320 252.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9798 65.6836 -2.0000 1.0000 0.0000 0.0000 148.3534 -63.2932 1.8207 5.0000 6.6000 299.6990 297.8520 0.0000 0.0000 300.000
+ 40 -0.9000 0.0000 2.1000 -1.5500 60.365 261.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.7059 65.8595 -2.0000 1.0000 0.0000 0.0000 148.2188 -63.5624 1.8207 5.0000 6.5500 299.4580 297.7400 0.0000 0.0000 300.000
+ 41 -0.9000 0.0000 2.1000 -1.5000 60.438 238.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.4313 66.0361 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.8207 5.0000 6.5000 299.4900 297.6210 0.0000 0.0000 300.000
+ 42 -0.9000 0.0000 2.1000 -1.4500 60.137 245.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1560 66.2135 -2.0000 1.0000 0.0000 0.0000 147.9442 -64.1115 1.8207 5.0000 6.4500 299.8160 297.5740 0.0000 0.0000 300.000
+ 43 -0.9000 0.0000 2.1000 -1.4000 60.462 241.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.8800 66.3917 -2.0000 1.0000 0.0000 0.0000 147.8042 -64.3915 1.8207 5.0000 6.4000 300.2490 297.6400 0.0000 0.0000 300.000
+ 44 -0.9000 0.0000 2.1000 -1.3500 60.599 239.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.6033 66.5706 -2.0000 1.0000 0.0000 0.0000 147.6624 -64.6752 1.8207 5.0000 6.3500 300.5070 297.7850 0.0000 0.0000 300.000
+ 45 -0.9000 0.0000 2.1000 -1.3000 60.195 230.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.3259 66.7503 -2.0000 1.0000 0.0000 0.0000 147.5186 -64.9628 1.8207 5.0000 6.3000 300.4540 297.9260 0.0000 0.0000 300.000
+ 46 -0.9000 0.0000 2.1000 -1.2500 60.374 182.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.0477 66.9308 -2.0000 1.0000 0.0000 0.0000 147.3729 -65.2543 1.8207 5.0000 6.2500 300.1800 297.9830 0.0000 0.0000 300.000
+ 47 -0.9000 0.0000 2.1000 -1.2000 60.098 133.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.7688 67.1121 -2.0000 1.0000 0.0000 0.0000 147.2251 -65.5497 1.8207 5.0000 6.2000 299.8540 297.9620 0.0000 0.0000 300.000
+ 48 -0.9000 0.0000 2.1000 -1.1500 60.155 119.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4892 67.2942 -2.0000 1.0000 0.0000 0.0000 147.0754 -65.8492 1.8207 5.0000 6.1500 299.5990 297.8580 0.0000 0.0000 300.000
+ 49 -0.9000 0.0000 2.1000 -1.1000 60.237 88.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.2088 67.4772 -2.0000 1.0000 0.0000 0.0000 146.9235 -66.1530 1.8207 5.0000 6.1000 299.5530 297.7580 0.0000 0.0000 300.000
+ 50 -0.9000 0.0000 2.1000 -1.0500 60.320 60.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9276 67.6610 -2.0000 1.0000 0.0000 0.0000 146.7694 -66.4610 1.8207 5.0000 6.0500 299.7530 297.7000 0.0000 0.0000 300.000
+ 51 -0.9000 0.0000 2.1000 -1.0000 60.465 58.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.6457 67.8457 -2.0000 1.0000 0.0000 0.0000 146.6133 -66.7735 1.8207 5.0000 6.0000 300.0940 297.7300 0.0000 0.0000 300.000
+ 52 -0.9000 0.0000 2.1000 -0.9500 60.292 40.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.3629 68.0314 -2.0000 1.0000 0.0000 0.0000 146.4548 -67.0904 1.8207 5.0000 5.9500 300.3850 297.8440 0.0000 0.0000 300.000
+ 53 -0.9000 0.0000 2.1000 -0.9000 60.542 24.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.0793 68.2179 -2.0000 1.0000 0.0000 0.0000 146.2940 -67.4120 1.8207 5.0000 5.9000 300.5290 297.9480 0.0000 0.0000 300.000
+ 54 -0.9000 0.0000 2.1000 -0.8500 60.152 27.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.7949 68.4053 -2.0000 1.0000 0.0000 0.0000 146.1309 -67.7382 1.8207 5.0000 5.8500 300.2260 298.0190 0.0000 0.0000 300.000
+ 55 -0.9000 0.0000 2.1000 -0.8000 60.742 26.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.5096 68.5937 -2.0000 1.0000 0.0000 0.0000 145.9653 -68.0694 1.8207 5.0000 5.8000 299.9620 298.0280 0.0000 0.0000 300.000
+ 56 -0.9000 0.0000 2.1000 -0.7500 60.416 19.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2235 68.7831 -2.0000 1.0000 0.0000 0.0000 145.7973 -68.4055 1.8207 5.0000 5.7500 299.7330 297.9530 0.0000 0.0000 300.000
+ 57 -0.9000 0.0000 2.1000 -0.7000 60.202 18.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.9365 68.9734 -2.0000 1.0000 0.0000 0.0000 145.6266 -68.7467 1.8207 5.0000 5.7000 299.6470 297.8780 0.0000 0.0000 300.000
+# Sum of Counts = 8007
+# Center of Mass = -1.963538+/-0.031737
+# Full Width Half-Maximum = 1.190201+/-0.014764
+# 5:58:08 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0053.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0053.dat
new file mode 100644
index 0000000..bff5ad6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0053.dat
@@ -0,0 +1,60 @@
+# scan = 53
+# date = 6/23/2012
+# time = 5:58:08 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.25 0.25 preset mcu 2
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.25 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), T=300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 120.857 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 299.8700 297.8200 0.0000 0.0000 300.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 120.638 5.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 300.3030 297.9240 0.0000 0.0000 300.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 121.222 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 300.1530 298.0460 0.0000 0.0000 300.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 120.981 18.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3113 1.4398 5.0000 11.7500 299.7740 297.9960 0.0000 0.0000 300.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 120.180 38.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 299.8090 297.9020 0.0000 0.0000 300.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 120.663 58.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 300.1890 297.9500 0.0000 0.0000 300.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 120.470 51.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 300.2080 298.0930 0.0000 0.0000 300.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 120.604 37.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 299.8700 298.0660 0.0000 0.0000 300.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 120.918 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 299.8080 297.9980 0.0000 0.0000 300.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 120.624 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 300.0690 297.9810 0.0000 0.0000 300.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 120.685 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 300.1860 298.0730 0.0000 0.0000 300.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 121.259 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 299.9740 298.1240 0.0000 0.0000 300.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 120.867 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 299.8220 298.0460 0.0000 0.0000 300.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 121.470 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 299.9880 298.0260 0.0000 0.0000 300.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 121.372 8.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 300.1580 298.0970 0.0000 0.0000 300.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 120.919 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 300.0330 298.1390 0.0000 0.0000 300.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 121.616 3.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 299.8670 298.0990 0.0000 0.0000 300.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 121.119 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 299.9510 298.0600 0.0000 0.0000 300.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 121.209 10.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.4398 5.0000 8.0000 300.1120 298.1010 0.0000 0.0000 300.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 122.076 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.4398 5.0000 7.7500 300.0640 298.1550 0.0000 0.0000 300.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 121.288 28.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 299.9180 298.1440 0.0000 0.0000 300.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 121.697 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 299.9260 298.0990 0.0000 0.0000 300.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 121.370 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 300.0670 298.1120 0.0000 0.0000 300.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 121.369 8.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 300.0820 298.1700 0.0000 0.0000 300.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 121.215 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.4398 5.0000 6.5000 299.9550 298.1720 0.0000 0.0000 300.000
+ 26 -0.7500 0.0000 1.5000 -1.2500 121.730 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.6894 51.5376 -2.0000 1.0000 0.0000 0.0000 147.3728 -65.2542 1.4398 5.0000 6.2500 299.9200 298.1290 0.0000 0.0000 300.000
+# Sum of Counts = 430
+# Center of Mass = -4.994186+/-0.350384
+# Full Width Half-Maximum = 3.409952+/-0.212010
+# 6:52:30 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0054.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0054.dat
new file mode 100644
index 0000000..b31bed6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0054.dat
@@ -0,0 +1,56 @@
+# scan = 54
+# date = 6/23/2012
+# time = 7:56:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (1,0,1), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 364.385 54.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.6310 27.3666 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.6853 5.0000 17.5000 405.5700 388.9250 0.0000 0.0000 400.000
+ 2 1.0000 0.0000 1.0000 -12.2500 365.455 54.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 37.2786 28.2324 -2.0000 1.0000 0.0000 0.0000 161.0619 -37.8757 1.6853 5.0000 17.2500 399.0890 397.1570 0.0000 0.0000 400.000
+ 3 1.0000 0.0000 1.0000 -12.0000 363.648 41.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 38.8926 29.0811 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.6853 5.0000 17.0000 400.7370 396.7950 0.0000 0.0000 400.000
+ 4 1.0000 0.0000 1.0000 -11.7500 362.962 56.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 40.4761 29.9144 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.6853 5.0000 16.7500 400.9970 396.6930 0.0000 0.0000 400.000
+ 5 1.0000 0.0000 1.0000 -11.5000 362.779 56.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 42.0320 30.7338 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.6853 5.0000 16.5000 400.6050 396.6750 0.0000 0.0000 400.000
+ 6 1.0000 0.0000 1.0000 -11.2500 362.260 71.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 43.5627 31.5406 -2.0000 1.0000 0.0000 0.0000 160.4651 -39.0695 1.6853 5.0000 16.2500 400.1720 396.7610 0.0000 0.0000 400.000
+ 7 1.0000 0.0000 1.0000 -11.0000 362.624 75.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 45.0706 32.3359 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 1.6853 5.0000 16.0000 399.9310 396.8880 0.0000 0.0000 400.000
+ 8 1.0000 0.0000 1.0000 -10.7500 362.339 71.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 46.5574 33.1208 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.6853 5.0000 15.7500 399.8720 397.0140 0.0000 0.0000 400.000
+ 9 1.0000 0.0000 1.0000 -10.5000 362.422 70.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 48.0252 33.8962 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 1.6853 5.0000 15.5000 399.9060 397.1170 0.0000 0.0000 400.000
+ 10 1.0000 0.0000 1.0000 -10.2500 363.037 99.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 49.4755 34.6632 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 1.6853 5.0000 15.2500 399.9630 397.1760 0.0000 0.0000 400.000
+ 11 1.0000 0.0000 1.0000 -10.0000 362.122 113.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.9098 35.4223 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 1.6853 5.0000 15.0000 400.0040 397.2320 0.0000 0.0000 400.000
+ 12 1.0000 0.0000 1.0000 -9.7499 361.514 137.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 52.3296 36.1745 -2.0000 1.0000 0.0000 0.0000 159.4534 -41.0933 1.6853 5.0000 14.7499 400.0190 397.2660 0.0000 0.0000 400.000
+ 13 1.0000 0.0000 1.0000 -9.5000 363.033 147.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 53.7361 36.9203 -2.0000 1.0000 0.0000 0.0000 159.2690 -41.4622 1.6853 5.0000 14.5000 400.0150 397.2960 0.0000 0.0000 400.000
+ 14 1.0000 0.0000 1.0000 -9.2500 361.479 206.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 55.1305 37.6604 -2.0000 1.0000 0.0000 0.0000 159.0794 -41.8412 1.6853 5.0000 14.2500 400.0080 397.3250 0.0000 0.0000 400.000
+ 15 1.0000 0.0000 1.0000 -9.0000 362.824 167.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 56.5139 38.3955 -2.0000 1.0000 0.0000 0.0000 158.8846 -42.2308 1.6853 5.0000 14.0000 400.0000 397.3540 0.0000 0.0000 400.000
+ 16 1.0000 0.0000 1.0000 -8.7500 362.001 173.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 57.8874 39.1260 -2.0000 1.0000 0.0000 0.0000 158.6842 -42.6316 1.6853 5.0000 13.7500 399.9990 397.3850 0.0000 0.0000 400.000
+ 17 1.0000 0.0000 1.0000 -8.5000 361.306 171.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 59.2518 39.8526 -2.0000 1.0000 0.0000 0.0000 158.4779 -43.0440 1.6853 5.0000 13.5000 399.9980 397.4010 0.0000 0.0000 400.000
+ 18 1.0000 0.0000 1.0000 -8.2500 361.963 107.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 60.6083 40.5758 -2.0000 1.0000 0.0000 0.0000 158.2657 -43.4686 1.6853 5.0000 13.2500 400.0000 397.4250 0.0000 0.0000 400.000
+ 19 1.0000 0.0000 1.0000 -8.0000 361.361 64.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.9577 41.2960 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 1.6853 5.0000 13.0000 400.0000 397.4410 0.0000 0.0000 400.000
+ 20 1.0000 0.0000 1.0000 -7.7500 361.369 52.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.3008 42.0137 -2.0000 1.0000 0.0000 0.0000 157.8214 -44.3571 1.6853 5.0000 12.7500 399.9990 397.4550 0.0000 0.0000 400.000
+ 21 1.0000 0.0000 1.0000 -7.5000 363.074 75.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.6383 42.7294 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.6853 5.0000 12.5000 399.9980 397.4730 0.0000 0.0000 400.000
+ 22 1.0000 0.0000 1.0000 -7.2500 363.081 59.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.9712 43.4436 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.6853 5.0000 12.2500 400.0000 397.4870 0.0000 0.0000 400.000
+# Sum of Counts = 2118
+# Center of Mass = -9.581320+/-0.295823
+# Full Width Half-Maximum = 2.641929+/-0.123520
+# 10:11:01 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0055.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0055.dat
new file mode 100644
index 0000000..90a7446
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0055.dat
@@ -0,0 +1,48 @@
+# scan = 55
+# date = 6/23/2012
+# time = 10:11:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5, 0, 1.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 3.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 181.127 58.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.2458 72.2344 -2.0000 1.0000 0.0000 0.0000 158.2225 -43.5551 2.5280 5.0000 13.2000 399.9990 397.5030 0.0000 0.0000 400.000
+ 2 1.5000 0.0000 1.5000 -8.0000 181.462 47.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.9880 72.8390 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 2.5280 5.0000 13.0000 400.0010 397.5020 0.0000 0.0000 400.000
+ 3 1.5000 0.0000 1.5000 -7.8000 182.028 49.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.7335 73.4499 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 2.5280 5.0000 12.8000 400.0010 397.5020 0.0000 0.0000 400.000
+ 4 1.5000 0.0000 1.5000 -7.5999 181.133 35.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.4824 74.0674 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6346 2.5280 5.0000 12.5999 400.0010 397.5210 0.0000 0.0000 400.000
+ 5 1.5000 0.0000 1.5000 -7.4000 181.013 85.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.2349 74.6918 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 2.5280 5.0000 12.4000 399.9980 397.5090 0.0000 0.0000 400.000
+ 6 1.5000 0.0000 1.5000 -7.2000 181.491 132.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.9913 75.3234 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 2.5280 5.0000 12.2000 400.0000 397.5170 0.0000 0.0000 400.000
+ 7 1.5000 0.0000 1.5000 -7.0000 181.670 167.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.7517 75.9626 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 2.5280 5.0000 12.0000 400.0000 397.5140 0.0000 0.0000 400.000
+ 8 1.5000 0.0000 1.5000 -6.8000 181.143 143.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.5163 76.6096 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 2.5280 5.0000 11.8000 399.9960 397.5260 0.0000 0.0000 400.000
+ 9 1.5000 0.0000 1.5000 -6.6000 181.608 114.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.2853 77.2650 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 2.5280 5.0000 11.6000 400.0030 397.5270 0.0000 0.0000 400.000
+ 10 1.5000 0.0000 1.5000 -6.4000 180.837 84.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.0590 77.9292 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0590 2.5280 5.0000 11.4000 399.9950 397.5390 0.0000 0.0000 400.000
+ 11 1.5000 0.0000 1.5000 -6.2000 181.631 64.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.8375 78.6024 -2.0000 1.0000 0.0000 0.0000 156.2485 -47.5028 2.5280 5.0000 11.2000 400.0020 397.5330 0.0000 0.0000 400.000
+ 12 1.5000 0.0000 1.5000 -6.0000 181.228 44.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.6211 79.2852 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.5280 5.0000 11.0000 399.9990 397.5460 0.0000 0.0000 400.000
+ 13 1.5000 0.0000 1.5000 -5.8000 181.773 32.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 100.4102 79.9780 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.5280 5.0000 10.8000 399.9940 397.5450 0.0000 0.0000 400.000
+ 14 1.5000 0.0000 1.5000 -5.6000 181.328 24.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 101.2048 80.6814 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.5280 5.0000 10.6000 400.0060 397.5380 0.0000 0.0000 400.000
+# Sum of Counts = 1078
+# Center of Mass = -6.949347+/-0.299937
+# Full Width Half-Maximum = 1.252634+/-0.140142
+# 10:54:24 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0056.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0056.dat
new file mode 100644
index 0000000..d0d65b7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0056.dat
@@ -0,0 +1,46 @@
+# scan = 56
+# date = 6/23/2012
+# time = 10:54:25 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+# builtin_command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (-1.5, 0, 0), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -5.2500 90.666 19.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.8256 76.5870 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 2.3993 5.0000 10.2500 399.9970 397.5440 0.0000 0.0000 400.000
+ 2 -1.5000 0.0000 0.0000 -5.0000 90.454 20.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -61.7926 77.4569 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4598 2.3993 5.0000 10.0000 400.0010 397.5580 0.0000 0.0000 400.000
+ 3 -1.5000 0.0000 0.0000 -4.7500 90.843 31.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7502 78.3439 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 2.3993 5.0000 9.7500 400.0060 397.5450 0.0000 0.0000 400.000
+ 4 -1.5000 0.0000 0.0000 -4.5000 91.028 67.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.6976 79.2490 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.3993 5.0000 9.5000 400.0020 397.5420 0.0000 0.0000 400.000
+ 5 -1.5000 0.0000 0.0000 -4.2500 90.917 147.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.6344 80.1735 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 2.3993 5.0000 9.2500 399.9940 397.5560 0.0000 0.0000 400.000
+ 6 -1.5000 0.0000 0.0000 -4.0000 90.716 281.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.5598 81.1188 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.3993 5.0000 9.0000 399.9910 397.5480 0.0000 0.0000 400.000
+ 7 -1.5000 0.0000 0.0000 -3.7500 90.850 359.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.4730 82.0866 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 2.3993 5.0000 8.7500 400.0030 397.5550 0.0000 0.0000 400.000
+ 8 -1.5000 0.0000 0.0000 -3.5000 90.288 298.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -55.3731 83.0783 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.3993 5.0000 8.5000 400.0110 397.5510 0.0000 0.0000 400.000
+ 9 -1.5000 0.0000 0.0000 -3.2500 90.875 78.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.2594 84.0960 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 2.3993 5.0000 8.2500 399.9820 397.5370 0.0000 0.0000 400.000
+ 10 -1.5000 0.0000 0.0000 -3.0000 90.776 37.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.1307 85.1416 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.3993 5.0000 8.0000 400.0110 397.5590 0.0000 0.0000 400.000
+ 11 -1.5000 0.0000 0.0000 -2.7500 90.912 28.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.9860 86.2176 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 2.3993 5.0000 7.7500 399.9920 397.5470 0.0000 0.0000 400.000
+ 12 -1.5000 0.0000 0.0000 -2.5000 91.259 19.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.8242 87.3264 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.3993 5.0000 7.5000 400.0050 397.5430 0.0000 0.0000 400.000
+# Sum of Counts = 1384
+# Center of Mass = -3.811777+/-0.145456
+# Full Width Half-Maximum = 0.944015+/-0.075647
+# 11:14:31 PM 6/23/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0057.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0057.dat
new file mode 100644
index 0000000..ed0d645
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0057.dat
@@ -0,0 +1,88 @@
+# scan = 57
+# date = 6/23/2012
+# time = 11:14:31 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA at T (-1,0,3.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.7000 91.173 41.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.4136 67.8300 -2.0000 1.0000 0.0000 0.0000 158.6434 -42.7131 2.4515 5.0000 13.7000 400.0030 397.5500 0.0000 0.0000 400.000
+ 2 -1.0000 0.0000 3.5000 -8.6000 91.223 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.0395 68.1192 -2.0000 1.0000 0.0000 0.0000 158.5612 -42.8776 2.4515 5.0000 13.6000 399.9910 397.5610 0.0000 0.0000 400.000
+ 3 -1.0000 0.0000 3.5000 -8.5000 91.232 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.6648 68.4096 -2.0000 1.0000 0.0000 0.0000 158.4780 -43.0440 2.4515 5.0000 13.5000 399.9950 397.5630 0.0000 0.0000 400.000
+ 4 -1.0000 0.0000 3.5000 -8.4000 90.536 28.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.2895 68.7013 -2.0000 1.0000 0.0000 0.0000 158.3938 -43.2124 2.4515 5.0000 13.4000 400.0050 397.5670 0.0000 0.0000 400.000
+ 5 -1.0000 0.0000 3.5000 -8.3000 91.463 42.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9136 68.9942 -2.0000 1.0000 0.0000 0.0000 158.3086 -43.3827 2.4515 5.0000 13.3000 400.0060 397.5670 0.0000 0.0000 400.000
+ 6 -1.0000 0.0000 3.5000 -8.2000 91.734 60.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5369 69.2885 -2.0000 1.0000 0.0000 0.0000 158.2225 -43.5551 2.4515 5.0000 13.2000 399.9940 397.5780 0.0000 0.0000 400.000
+ 7 -1.0000 0.0000 3.5000 -8.1000 91.054 58.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1596 69.5841 -2.0000 1.0000 0.0000 0.0000 158.1350 -43.7295 2.4515 5.0000 13.1000 399.9920 397.5570 0.0000 0.0000 400.000
+ 8 -1.0000 0.0000 3.5000 -8.0000 90.944 70.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7815 69.8811 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 2.4515 5.0000 13.0000 400.0020 397.5670 0.0000 0.0000 400.000
+ 9 -1.0000 0.0000 3.5000 -7.9000 90.807 56.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.4027 70.1795 -2.0000 1.0000 0.0000 0.0000 157.9576 -44.0849 2.4515 5.0000 12.9000 400.0030 397.5740 0.0000 0.0000 400.000
+ 10 -1.0000 0.0000 3.5000 -7.8000 91.108 80.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.0231 70.4794 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 2.4515 5.0000 12.8000 400.0000 397.5690 0.0000 0.0000 400.000
+ 11 -1.0000 0.0000 3.5000 -7.7000 91.082 79.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.6428 70.7807 -2.0000 1.0000 0.0000 0.0000 157.7755 -44.4490 2.4515 5.0000 12.7000 399.9990 397.5630 0.0000 0.0000 400.000
+ 12 -1.0000 0.0000 3.5000 -7.6000 90.884 83.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.2617 71.0836 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 2.4515 5.0000 12.6000 400.0000 397.5680 0.0000 0.0000 400.000
+ 13 -1.0000 0.0000 3.5000 -7.5000 91.484 68.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.8797 71.3880 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 2.4515 5.0000 12.5000 399.9990 397.5660 0.0000 0.0000 400.000
+ 14 -1.0000 0.0000 3.5000 -7.4000 90.727 90.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.4969 71.6940 -2.0000 1.0000 0.0000 0.0000 157.4936 -45.0126 2.4515 5.0000 12.4000 400.0010 397.5880 0.0000 0.0000 400.000
+ 15 -1.0000 0.0000 3.5000 -7.3000 91.104 114.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1133 72.0016 -2.0000 1.0000 0.0000 0.0000 157.3973 -45.2052 2.4515 5.0000 12.3000 399.9980 397.5710 0.0000 0.0000 400.000
+ 16 -1.0000 0.0000 3.5000 -7.2000 91.110 98.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.7287 72.3108 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 2.4515 5.0000 12.2000 399.9970 397.5760 0.0000 0.0000 400.000
+ 17 -1.0000 0.0000 3.5000 -7.1000 91.752 92.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.3433 72.6218 -2.0000 1.0000 0.0000 0.0000 157.2009 -45.5982 2.4515 5.0000 12.1000 400.0000 397.5780 0.0000 0.0000 400.000
+ 18 -1.0000 0.0000 3.5000 -7.0000 91.196 80.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.9569 72.9345 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 2.4515 5.0000 12.0000 400.0050 397.5790 0.0000 0.0000 400.000
+ 19 -1.0000 0.0000 3.5000 -6.9000 91.165 82.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.5695 73.2490 -2.0000 1.0000 0.0000 0.0000 156.9992 -46.0016 2.4515 5.0000 11.9000 400.0010 397.5760 0.0000 0.0000 400.000
+ 20 -1.0000 0.0000 3.5000 -6.8000 91.315 75.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.1812 73.5653 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2074 2.4515 5.0000 11.8000 399.9960 397.5860 0.0000 0.0000 400.000
+ 21 -1.0000 0.0000 3.5000 -6.7000 91.406 75.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.7918 73.8835 -2.0000 1.0000 0.0000 0.0000 156.7921 -46.4159 2.4515 5.0000 11.7000 399.9980 397.5790 0.0000 0.0000 400.000
+ 22 -1.0000 0.0000 3.5000 -6.6000 91.522 56.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4014 74.2036 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 2.4515 5.0000 11.6000 400.0000 397.5860 0.0000 0.0000 400.000
+ 23 -1.0000 0.0000 3.5000 -6.5000 92.045 81.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.0099 74.5256 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.4515 5.0000 11.5000 400.0020 397.5860 0.0000 0.0000 400.000
+ 24 -1.0000 0.0000 3.5000 -6.4000 91.350 83.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.6174 74.8497 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.4515 5.0000 11.4000 400.0010 397.5930 0.0000 0.0000 400.000
+ 25 -1.0000 0.0000 3.5000 -6.3000 90.729 57.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.2237 75.1758 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 2.4515 5.0000 11.3000 399.9990 397.5740 0.0000 0.0000 400.000
+ 26 -1.0000 0.0000 3.5000 -6.2000 90.755 56.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.8289 75.5040 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.4515 5.0000 11.2000 399.9930 397.5880 0.0000 0.0000 400.000
+ 27 -1.0000 0.0000 3.5000 -6.1000 90.926 48.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4328 75.8344 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.4515 5.0000 11.1000 400.0010 397.5850 0.0000 0.0000 400.000
+ 28 -1.0000 0.0000 3.5000 -6.0000 91.625 37.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.0356 76.1669 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.4515 5.0000 11.0000 400.0040 397.5860 0.0000 0.0000 400.000
+ 29 -1.0000 0.0000 3.5000 -5.8999 91.199 34.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.6372 76.5018 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1931 2.4515 5.0000 10.8999 400.0010 397.5980 0.0000 0.0000 400.000
+ 30 -1.0000 0.0000 3.5000 -5.8000 91.454 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2375 76.8389 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.4515 5.0000 10.8000 399.9970 397.5850 0.0000 0.0000 400.000
+ 31 -1.0000 0.0000 3.5000 -5.7000 91.452 34.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.8364 77.1784 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 2.4515 5.0000 10.7000 399.9980 397.5890 0.0000 0.0000 400.000
+ 32 -1.0000 0.0000 3.5000 -5.6000 91.395 39.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.4341 77.5204 -2.0000 1.0000 0.0000 0.0000 155.5428 -48.9142 2.4515 5.0000 10.6000 400.0020 397.5950 0.0000 0.0000 400.000
+ 33 -1.0000 0.0000 3.5000 -5.5000 91.255 44.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.0304 77.8649 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.4515 5.0000 10.5000 400.0050 397.5880 0.0000 0.0000 400.000
+ 34 -1.0000 0.0000 3.5000 -5.4000 91.731 57.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.6252 78.2120 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.4515 5.0000 10.4000 399.9990 397.5900 0.0000 0.0000 400.000
+ 35 -1.0000 0.0000 3.5000 -5.3000 91.589 64.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2187 78.5616 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.4515 5.0000 10.3000 399.9920 397.5980 0.0000 0.0000 400.000
+ 36 -1.0000 0.0000 3.5000 -5.2000 91.782 77.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8107 78.9140 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.4515 5.0000 10.2000 399.9970 397.5870 0.0000 0.0000 400.000
+ 37 -1.0000 0.0000 3.5000 -5.1000 91.152 90.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.4011 79.2692 -2.0000 1.0000 0.0000 0.0000 154.9040 -50.1919 2.4515 5.0000 10.1000 400.0000 397.5910 0.0000 0.0000 400.000
+ 38 -1.0000 0.0000 3.5000 -5.0000 91.596 119.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.9900 79.6271 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.4515 5.0000 10.0000 400.0010 397.5920 0.0000 0.0000 400.000
+ 39 -1.0000 0.0000 3.5000 -4.9000 91.415 143.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.5774 79.9880 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7319 2.4515 5.0000 9.9000 399.9980 397.5990 0.0000 0.0000 400.000
+ 40 -1.0000 0.0000 3.5000 -4.8000 91.678 168.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.1631 80.3520 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.4515 5.0000 9.8000 400.0000 397.5920 0.0000 0.0000 400.000
+ 41 -1.0000 0.0000 3.5000 -4.7000 91.244 136.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.7471 80.7189 -2.0000 1.0000 0.0000 0.0000 154.3551 -51.2898 2.4515 5.0000 9.7000 399.9980 397.6020 0.0000 0.0000 400.000
+ 42 -1.0000 0.0000 3.5000 -4.6000 91.798 137.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.3294 81.0891 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.4515 5.0000 9.6000 400.0000 397.5960 0.0000 0.0000 400.000
+ 43 -1.0000 0.0000 3.5000 -4.5000 91.822 96.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.9100 81.4625 -2.0000 1.0000 0.0000 0.0000 154.0666 -51.8666 2.4515 5.0000 9.5000 400.0020 397.5920 0.0000 0.0000 400.000
+ 44 -1.0000 0.0000 3.5000 -4.4000 91.498 79.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4888 81.8392 -2.0000 1.0000 0.0000 0.0000 153.9186 -52.1624 2.4515 5.0000 9.4000 400.0020 397.5960 0.0000 0.0000 400.000
+ 45 -1.0000 0.0000 3.5000 -4.3000 91.805 73.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.0657 82.2194 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4633 2.4515 5.0000 9.3000 400.0000 397.5970 0.0000 0.0000 400.000
+ 46 -1.0000 0.0000 3.5000 -4.2000 91.614 58.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.6407 82.6031 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 2.4515 5.0000 9.2000 400.0000 397.6010 0.0000 0.0000 400.000
+ 47 -1.0000 0.0000 3.5000 -4.1000 90.912 37.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.2138 82.9904 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 2.4515 5.0000 9.1000 400.0010 397.6010 0.0000 0.0000 400.000
+ 48 -1.0000 0.0000 3.5000 -4.0000 91.277 34.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.7849 83.3815 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.4515 5.0000 9.0000 399.9960 397.5840 0.0000 0.0000 400.000
+ 49 -1.0000 0.0000 3.5000 -3.9000 91.839 31.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.3539 83.7765 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.4515 5.0000 8.9000 399.9970 397.6010 0.0000 0.0000 400.000
+ 50 -1.0000 0.0000 3.5000 -3.8000 91.456 25.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.9209 84.1754 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0508 2.4515 5.0000 8.8000 399.9960 397.5860 0.0000 0.0000 400.000
+ 51 -1.0000 0.0000 3.5000 -3.7000 91.900 24.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.4857 84.5783 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.4515 5.0000 8.7000 399.9980 397.5940 0.0000 0.0000 400.000
+ 52 -1.0000 0.0000 3.5000 -3.6000 91.573 25.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.0482 84.9855 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.4515 5.0000 8.6000 400.0010 397.5970 0.0000 0.0000 400.000
+ 53 -1.0000 0.0000 3.5000 -3.5000 91.731 19.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.6085 85.3970 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.4515 5.0000 8.5000 400.0020 397.6010 0.0000 0.0000 400.000
+ 54 -1.0000 0.0000 3.5000 -3.4000 91.499 13.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.1665 85.8130 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 2.4515 5.0000 8.4000 400.0000 397.6020 0.0000 0.0000 400.000
+# Sum of Counts = 3553
+# Center of Mass = -6.081845+/-0.146197
+# Full Width Half-Maximum = 2.801813+/-0.057355
+# 12:39:07 AM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0058.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0058.dat
new file mode 100644
index 0000000..cba3c52
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0058.dat
@@ -0,0 +1,55 @@
+# scan = 58
+# date = 6/24/2012
+# time = 12:39:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5, 0, 1.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.5000 365.144 67.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.2222 52.7450 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.5280 5.0000 20.5000 399.9920 397.6140 0.0000 0.0000 400.000
+ 2 1.5000 0.0000 1.5000 -15.2500 366.084 85.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.1100 53.3686 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.5280 5.0000 20.2500 399.9940 397.6060 0.0000 0.0000 400.000
+ 3 1.5000 0.0000 1.5000 -15.0000 365.944 59.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.9962 53.9931 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.5280 5.0000 20.0000 399.9990 397.6140 0.0000 0.0000 400.000
+ 4 1.5000 0.0000 1.5000 -14.7500 365.722 80.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.8808 54.6188 -2.0000 1.0000 0.0000 0.0000 162.3435 -35.3126 2.5280 5.0000 19.7500 400.0010 397.6000 0.0000 0.0000 400.000
+ 5 1.5000 0.0000 1.5000 -14.5000 366.020 86.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.7642 55.2460 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.5280 5.0000 19.5000 400.0040 397.6070 0.0000 0.0000 400.000
+ 6 1.5000 0.0000 1.5000 -14.2500 366.779 105.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.6465 55.8748 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.5280 5.0000 19.2500 400.0010 397.6240 0.0000 0.0000 400.000
+ 7 1.5000 0.0000 1.5000 -14.0000 366.866 144.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.5280 56.5056 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.5280 5.0000 19.0000 400.0000 397.6260 0.0000 0.0000 400.000
+ 8 1.5000 0.0000 1.5000 -13.7500 366.028 130.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.4088 57.1383 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.5280 5.0000 18.7500 399.9990 397.6170 0.0000 0.0000 400.000
+ 9 1.5000 0.0000 1.5000 -13.5000 366.227 157.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.2892 57.7733 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.5280 5.0000 18.5000 400.0000 397.6250 0.0000 0.0000 400.000
+ 10 1.5000 0.0000 1.5000 -13.2500 366.335 197.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.1694 58.4108 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.5280 5.0000 18.2500 399.9990 397.6100 0.0000 0.0000 400.000
+ 11 1.5000 0.0000 1.5000 -13.0000 366.577 172.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.0496 59.0511 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.5280 5.0000 18.0000 399.9970 397.6120 0.0000 0.0000 400.000
+ 12 1.5000 0.0000 1.5000 -12.7500 366.390 176.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.9300 59.6942 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.5280 5.0000 17.7500 399.9960 397.6110 0.0000 0.0000 400.000
+ 13 1.5000 0.0000 1.5000 -12.5000 366.620 121.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.8108 60.3406 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.5280 5.0000 17.5000 399.9970 397.6140 0.0000 0.0000 400.000
+ 14 1.5000 0.0000 1.5000 -12.2500 366.140 167.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.6922 60.9904 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.5280 5.0000 17.2500 399.9960 397.6070 0.0000 0.0000 400.000
+ 15 1.5000 0.0000 1.5000 -12.0000 367.253 125.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.5745 61.6438 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.5280 5.0000 17.0000 399.9950 397.6110 0.0000 0.0000 400.000
+ 16 1.5000 0.0000 1.5000 -11.7500 367.006 108.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.4578 62.3012 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.5280 5.0000 16.7500 399.9980 397.6060 0.0000 0.0000 400.000
+ 17 1.5000 0.0000 1.5000 -11.5000 366.789 88.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.3424 62.9628 -2.0000 1.0000 0.0000 0.0000 160.6196 -38.7605 2.5280 5.0000 16.5000 399.9990 397.6100 0.0000 0.0000 400.000
+ 18 1.5000 0.0000 1.5000 -11.2500 366.686 76.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.2284 63.6288 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.5280 5.0000 16.2500 400.0000 397.6220 0.0000 0.0000 400.000
+ 19 1.5000 0.0000 1.5000 -11.0000 367.683 75.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.1161 64.2995 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.5280 5.0000 16.0000 400.0010 397.6130 0.0000 0.0000 400.000
+ 20 1.5000 0.0000 1.5000 -10.7500 366.526 64.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.0058 64.9753 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.5280 5.0000 15.7500 400.0000 397.5980 0.0000 0.0000 400.000
+ 21 1.5000 0.0000 1.5000 -10.5000 367.080 50.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.8976 65.6564 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.5280 5.0000 15.5000 399.9940 397.6100 0.0000 0.0000 400.000
+# Sum of Counts = 2332
+# Center of Mass = -13.031089+/-0.382523
+# Full Width Half-Maximum = 2.536271+/-0.153777
+# 2:48:46 AM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0059.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0059.dat
new file mode 100644
index 0000000..62203fc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0059.dat
@@ -0,0 +1,56 @@
+# scan = 59
+# date = 6/24/2012
+# time = 2:48:46 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 6
+# builtin_command = scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0, 0, 4.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -16.2500 366.846 66.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1784 45.5870 -2.0000 1.0000 0.0000 0.0000 162.9980 -34.0041 2.3886 5.0000 21.2500 399.9920 397.6110 0.0000 0.0000 400.000
+ 2 0.0000 0.0000 4.5000 -15.9999 365.760 63.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2081 46.2288 -2.0000 1.0000 0.0000 0.0000 162.8940 -34.2122 2.3886 5.0000 20.9999 399.9950 397.6010 0.0000 0.0000 400.000
+ 3 0.0000 0.0000 4.5000 -15.7500 367.200 63.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.2424 46.8694 -2.0000 1.0000 0.0000 0.0000 162.7880 -34.4240 2.3886 5.0000 20.7500 400.0000 397.6030 0.0000 0.0000 400.000
+ 4 0.0000 0.0000 4.5000 -15.5000 366.723 72.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2810 47.5091 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.3886 5.0000 20.5000 400.0030 397.6030 0.0000 0.0000 400.000
+ 5 0.0000 0.0000 4.5000 -15.2500 366.693 78.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.3236 48.1481 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.3886 5.0000 20.2500 400.0010 397.6020 0.0000 0.0000 400.000
+ 6 0.0000 0.0000 4.5000 -15.0000 366.533 102.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.3698 48.7867 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.3886 5.0000 20.0000 399.9990 397.6190 0.0000 0.0000 400.000
+ 7 0.0000 0.0000 4.5000 -14.7500 366.904 129.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.4194 49.4250 -2.0000 1.0000 0.0000 0.0000 162.3436 -35.3126 2.3886 5.0000 19.7500 399.9960 397.6050 0.0000 0.0000 400.000
+ 8 0.0000 0.0000 4.5000 -14.5000 367.016 159.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4720 50.0634 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3886 5.0000 19.5000 399.9990 397.5940 0.0000 0.0000 400.000
+ 9 0.0000 0.0000 4.5000 -14.2500 367.654 151.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.5274 50.7021 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3886 5.0000 19.2500 399.9990 397.6120 0.0000 0.0000 400.000
+ 10 0.0000 0.0000 4.5000 -14.0000 367.320 183.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.5852 51.3412 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3886 5.0000 19.0000 400.0000 397.6080 0.0000 0.0000 400.000
+ 11 0.0000 0.0000 4.5000 -13.7500 367.002 182.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.6453 51.9810 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3886 5.0000 18.7500 399.9970 397.6000 0.0000 0.0000 400.000
+ 12 0.0000 0.0000 4.5000 -13.5000 367.434 182.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.7073 52.6218 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3886 5.0000 18.5000 399.9970 397.6080 0.0000 0.0000 400.000
+ 13 0.0000 0.0000 4.5000 -13.2500 367.445 164.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -3.7710 53.2638 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3886 5.0000 18.2500 399.9960 397.6040 0.0000 0.0000 400.000
+ 14 0.0000 0.0000 4.5000 -13.0000 367.021 150.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.8362 53.9072 -2.0000 1.0000 0.0000 0.0000 161.4755 -37.0488 2.3886 5.0000 18.0000 399.9960 397.5920 0.0000 0.0000 400.000
+ 15 0.0000 0.0000 4.5000 -12.7500 366.507 146.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.9024 54.5523 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3886 5.0000 17.7500 399.9930 397.5970 0.0000 0.0000 400.000
+ 16 0.0000 0.0000 4.5000 -12.5000 366.204 127.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.9696 55.1992 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3886 5.0000 17.5000 399.9950 397.5930 0.0000 0.0000 400.000
+ 17 0.0000 0.0000 4.5000 -12.2500 366.693 119.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0375 55.8483 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3886 5.0000 17.2500 399.9930 397.5880 0.0000 0.0000 400.000
+ 18 0.0000 0.0000 4.5000 -12.0000 366.012 85.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.8942 56.4998 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3886 5.0000 17.0000 400.0000 397.5930 0.0000 0.0000 400.000
+ 19 0.0000 0.0000 4.5000 -11.7500 367.045 60.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 1.8257 57.1538 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3886 5.0000 16.7500 400.0040 397.5950 0.0000 0.0000 400.000
+ 20 0.0000 0.0000 4.5000 -11.4999 366.515 67.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 2.7573 57.8108 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7606 2.3886 5.0000 16.4999 400.0070 397.5810 0.0000 0.0000 400.000
+ 21 0.0000 0.0000 4.5000 -11.2500 367.796 69.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 3.6892 58.4709 -2.0000 1.0000 0.0000 0.0000 160.4650 -39.0695 2.3886 5.0000 16.2500 400.0000 397.5800 0.0000 0.0000 400.000
+ 22 0.0000 0.0000 4.5000 -11.0000 367.828 56.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 4.6217 59.1344 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3886 5.0000 16.0000 400.0030 397.5700 0.0000 0.0000 400.000
+# Sum of Counts = 2473
+# Center of Mass = -13.630100+/-0.388504
+# Full Width Half-Maximum = 2.610773+/-0.151401
+# 5:04:57 AM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0060.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0060.dat
new file mode 100644
index 0000000..ef6dcf7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0060.dat
@@ -0,0 +1,53 @@
+# scan = 60
+# date = 6/24/2012
+# time = 5:04:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# builtin_command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (-1.5, 0, 0), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 10.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -14.5000 612.377 101.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.0280 50.4633 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 400.0000 397.5710 0.0000 0.0000 400.000
+ 2 -1.5000 0.0000 0.0000 -14.2499 611.671 88.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -97.0888 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2499 399.9990 397.5690 0.0000 0.0000 400.000
+ 3 -1.5000 0.0000 0.0000 -14.0000 612.646 87.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -96.1518 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3993 5.0000 19.0000 400.0000 397.5980 0.0000 0.0000 400.000
+ 4 -1.5000 0.0000 0.0000 -13.7500 611.492 100.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -95.2170 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 399.9960 397.5770 0.0000 0.0000 400.000
+ 5 -1.5000 0.0000 0.0000 -13.5000 610.668 114.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.2840 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3993 5.0000 18.5000 400.0050 397.5890 0.0000 0.0000 400.000
+ 6 -1.5000 0.0000 0.0000 -13.2500 610.130 134.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -93.3525 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3993 5.0000 18.2500 399.9960 397.5880 0.0000 0.0000 400.000
+ 7 -1.5000 0.0000 0.0000 -13.0000 609.941 179.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -92.4224 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3993 5.0000 18.0000 399.9970 397.5810 0.0000 0.0000 400.000
+ 8 -1.5000 0.0000 0.0000 -12.7500 609.334 170.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.4932 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3993 5.0000 17.7500 399.9980 397.5940 0.0000 0.0000 400.000
+ 9 -1.5000 0.0000 0.0000 -12.5000 610.348 199.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -90.5649 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3993 5.0000 17.5000 399.9970 397.5850 0.0000 0.0000 400.000
+ 10 -1.5000 0.0000 0.0000 -12.2500 608.191 187.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -89.6372 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 400.0000 397.5900 0.0000 0.0000 400.000
+ 11 -1.5000 0.0000 0.0000 -12.0000 608.351 185.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.7097 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3993 5.0000 17.0000 399.9960 397.5770 0.0000 0.0000 400.000
+ 12 -1.5000 0.0000 0.0000 -11.7500 608.913 156.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -87.7823 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 400.0020 397.5870 0.0000 0.0000 400.000
+ 13 -1.5000 0.0000 0.0000 -11.5000 606.665 175.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -86.8548 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3993 5.0000 16.5000 399.9990 397.5950 0.0000 0.0000 400.000
+ 14 -1.5000 0.0000 0.0000 -11.2500 608.063 129.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.9268 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4650 -39.0695 2.3993 5.0000 16.2500 399.9950 397.5900 0.0000 0.0000 400.000
+ 15 -1.5000 0.0000 0.0000 -11.0000 606.141 131.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.9982 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 399.9980 397.5900 0.0000 0.0000 400.000
+ 16 -1.5000 0.0000 0.0000 -10.7500 606.365 79.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.0686 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 399.9990 397.5940 0.0000 0.0000 400.000
+ 17 -1.5000 0.0000 0.0000 -10.5000 606.433 90.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.1379 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.3993 5.0000 15.5000 399.9980 397.5930 0.0000 0.0000 400.000
+ 18 -1.5000 0.0000 0.0000 -10.2500 605.562 89.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -82.2058 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 400.0000 397.5980 0.0000 0.0000 400.000
+ 19 -1.5000 0.0000 0.0000 -10.0000 605.165 92.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -81.2720 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 399.9990 397.6040 0.0000 0.0000 400.000
+# Sum of Counts = 2485
+# Center of Mass = -12.266797+/-0.348835
+# Full Width Half-Maximum = 2.400394+/-0.149828
+# 8:19:21 AM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0061.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0061.dat
new file mode 100644
index 0000000..ae32957
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0061.dat
@@ -0,0 +1,55 @@
+# scan = 61
+# date = 6/24/2012
+# time = 8:19:21 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-L (-0.7, 0, 2.3), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 120.862 18.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.5004 40.2118 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 1.6566 5.0000 13.0000 399.9980 397.5860 0.0000 0.0000 400.000
+ 2 -0.7000 0.0000 2.3000 -7.8000 121.016 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.4019 40.7903 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 1.6566 5.0000 12.8000 399.9990 397.5920 0.0000 0.0000 400.000
+ 3 -0.7000 0.0000 2.3000 -7.6000 120.930 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.3077 41.3670 -2.0000 1.0000 0.0000 0.0000 157.6827 -44.6345 1.6566 5.0000 12.6000 399.9990 397.5840 0.0000 0.0000 400.000
+ 4 -0.7000 0.0000 2.3000 -7.4000 121.320 29.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.2172 41.9422 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 1.6566 5.0000 12.4000 399.9980 397.5920 0.0000 0.0000 400.000
+ 5 -0.7000 0.0000 2.3000 -7.2000 121.231 29.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.1302 42.5160 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 1.6566 5.0000 12.2000 399.9980 397.5920 0.0000 0.0000 400.000
+ 6 -0.7000 0.0000 2.3000 -7.0000 120.935 39.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.0460 43.0888 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.6566 5.0000 12.0000 399.9960 397.6000 0.0000 0.0000 400.000
+ 7 -0.7000 0.0000 2.3000 -6.8000 121.012 47.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.9645 43.6608 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 1.6566 5.0000 11.8000 399.9950 397.5900 0.0000 0.0000 400.000
+ 8 -0.7000 0.0000 2.3000 -6.6000 121.107 57.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.8850 44.2322 -2.0000 1.0000 0.0000 0.0000 156.6863 -46.6273 1.6566 5.0000 11.6000 400.0000 397.5870 0.0000 0.0000 400.000
+ 9 -0.7000 0.0000 2.3000 -6.4000 121.285 35.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.8073 44.8032 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 1.6566 5.0000 11.4000 399.9980 397.5910 0.0000 0.0000 400.000
+ 10 -0.7000 0.0000 2.3000 -6.2000 121.021 22.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7310 45.3740 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 1.6566 5.0000 11.2000 399.9950 397.5950 0.0000 0.0000 400.000
+ 11 -0.7000 0.0000 2.3000 -6.0000 120.627 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.6556 45.9450 -2.0000 1.0000 0.0000 0.0000 156.0200 -47.9596 1.6566 5.0000 11.0000 399.9980 397.5860 0.0000 0.0000 400.000
+ 12 -0.7000 0.0000 2.3000 -5.8000 121.262 28.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.5808 46.5162 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 1.6566 5.0000 10.8000 399.9950 397.5870 0.0000 0.0000 400.000
+ 13 -0.7000 0.0000 2.3000 -5.6000 120.719 27.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5063 47.0879 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 1.6566 5.0000 10.6000 399.9940 397.5930 0.0000 0.0000 400.000
+ 14 -0.7000 0.0000 2.3000 -5.4000 120.439 61.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.4316 47.6604 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4135 1.6566 5.0000 10.4000 400.0000 397.5820 0.0000 0.0000 400.000
+ 15 -0.7000 0.0000 2.3000 -5.2000 120.352 115.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.3563 48.2339 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 1.6566 5.0000 10.2000 400.0010 397.5990 0.0000 0.0000 400.000
+ 16 -0.7000 0.0000 2.3000 -5.0000 121.439 159.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.2801 48.8085 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.6566 5.0000 10.0000 399.9990 397.6010 0.0000 0.0000 400.000
+ 17 -0.7000 0.0000 2.3000 -4.8000 120.695 153.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.2026 49.3846 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 1.6566 5.0000 9.8000 400.0020 397.5940 0.0000 0.0000 400.000
+ 18 -0.7000 0.0000 2.3000 -4.6000 121.181 94.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.1234 49.9624 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 1.6566 5.0000 9.6000 399.9980 397.6060 0.0000 0.0000 400.000
+ 19 -0.7000 0.0000 2.3000 -4.4000 121.047 41.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.0422 50.5421 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1625 1.6566 5.0000 9.4000 399.9980 397.5840 0.0000 0.0000 400.000
+ 20 -0.7000 0.0000 2.3000 -4.2000 120.733 50.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.9584 51.1240 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 1.6566 5.0000 9.2000 399.9970 397.5930 0.0000 0.0000 400.000
+ 21 -0.7000 0.0000 2.3000 -4.0000 121.051 41.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.8718 51.7082 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.6566 5.0000 9.0000 400.0010 397.5910 0.0000 0.0000 400.000
+# Sum of Counts = 1122
+# Center of Mass = -5.527986+/-0.235526
+# Full Width Half-Maximum = 2.119245+/-0.116190
+# 9:02:59 AM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0062.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0062.dat
new file mode 100644
index 0000000..2b5211d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0062.dat
@@ -0,0 +1,59 @@
+# scan = 62
+# date = 6/24/2012
+# time = 9:02:59 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 241.091 37.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3730 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 399.9960 397.5920 0.0000 0.0000 400.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 241.452 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 399.9840 397.5820 0.0000 0.0000 400.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 243.804 47.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 400.0080 397.5930 0.0000 0.0000 400.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 243.473 51.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 399.9960 397.5950 0.0000 0.0000 400.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 244.095 77.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 399.9820 397.6080 0.0000 0.0000 400.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 243.866 141.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 400.0140 397.5940 0.0000 0.0000 400.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 244.308 140.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 399.9830 397.6110 0.0000 0.0000 400.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 243.387 96.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 400.0120 397.5980 0.0000 0.0000 400.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 242.404 64.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 399.9910 397.6000 0.0000 0.0000 400.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 243.418 38.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 399.9990 397.5860 0.0000 0.0000 400.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 242.950 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4598 1.4398 5.0000 10.0000 399.9980 397.5970 0.0000 0.0000 400.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 241.618 27.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 399.9970 397.6090 0.0000 0.0000 400.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 241.766 22.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 400.0050 397.6130 0.0000 0.0000 400.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 242.241 26.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 399.9920 397.6130 0.0000 0.0000 400.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 241.848 20.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 400.0070 397.6020 0.0000 0.0000 400.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 241.875 19.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 399.9950 397.6050 0.0000 0.0000 400.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 240.641 12.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 400.0030 397.6130 0.0000 0.0000 400.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 241.060 25.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 399.9960 397.6120 0.0000 0.0000 400.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 241.167 20.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.4398 5.0000 8.0000 399.9990 397.6150 0.0000 0.0000 400.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 241.091 46.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9187 1.4398 5.0000 7.7500 400.0040 397.5950 0.0000 0.0000 400.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 241.527 70.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 399.9880 397.6020 0.0000 0.0000 400.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 241.383 68.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 400.0040 397.6200 0.0000 0.0000 400.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 240.751 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 399.9990 397.6150 0.0000 0.0000 400.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 241.098 36.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5058 1.4398 5.0000 6.7500 400.0070 397.6160 0.0000 0.0000 400.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 240.931 18.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.4398 5.0000 6.5000 399.9930 397.6050 0.0000 0.0000 400.000
+# Sum of Counts = 1172
+# Center of Mass = -4.978456+/-0.211863
+# Full Width Half-Maximum = 3.485107+/-0.128230
+# 10:45:28 AM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0063.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0063.dat
new file mode 100644
index 0000000..32610b5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0063.dat
@@ -0,0 +1,75 @@
+# scan = 63
+# date = 6/24/2012
+# time = 10:45:28 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# builtin_command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-T (-1, 0, 2.9), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -6.5000 60.446 19.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.4904 65.5036 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.2199 5.0000 11.5000 399.9990 397.6180 0.0000 0.0000 400.000
+ 2 -1.0000 0.0000 2.9000 -6.4000 59.989 24.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0748 65.8059 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.2199 5.0000 11.4000 399.9960 397.6030 0.0000 0.0000 400.000
+ 3 -1.0000 0.0000 2.9000 -6.3000 60.330 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.6584 66.1098 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 2.2199 5.0000 11.3000 399.9920 397.6130 0.0000 0.0000 400.000
+ 4 -1.0000 0.0000 2.9000 -6.2000 60.237 28.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2411 66.4150 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.2199 5.0000 11.2000 399.9940 397.5910 0.0000 0.0000 400.000
+ 5 -1.0000 0.0000 2.9000 -6.1000 60.055 32.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.8229 66.7218 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.2199 5.0000 11.1000 399.9990 397.5910 0.0000 0.0000 400.000
+ 6 -1.0000 0.0000 2.9000 -6.0000 60.530 55.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4038 67.0302 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.2199 5.0000 11.0000 400.0030 397.6100 0.0000 0.0000 400.000
+ 7 -1.0000 0.0000 2.9000 -5.9000 60.194 61.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9838 67.3402 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 2.2199 5.0000 10.9000 399.9990 397.5960 0.0000 0.0000 400.000
+ 8 -1.0000 0.0000 2.9000 -5.8000 60.421 101.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5628 67.6518 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.2199 5.0000 10.8000 399.9990 397.6080 0.0000 0.0000 400.000
+ 9 -1.0000 0.0000 2.9000 -5.7000 60.032 159.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1408 67.9651 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 2.2199 5.0000 10.7000 399.9980 397.5930 0.0000 0.0000 400.000
+ 10 -1.0000 0.0000 2.9000 -5.6000 59.920 155.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.7177 68.2802 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.2199 5.0000 10.6000 399.9960 397.6080 0.0000 0.0000 400.000
+ 11 -1.0000 0.0000 2.9000 -5.5000 60.514 141.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.2936 68.5970 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.2199 5.0000 10.5000 399.9970 397.6130 0.0000 0.0000 400.000
+ 12 -1.0000 0.0000 2.9000 -5.4000 60.278 70.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.8684 68.9156 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.2199 5.0000 10.4000 400.0020 397.6020 0.0000 0.0000 400.000
+ 13 -1.0000 0.0000 2.9000 -5.3000 59.768 46.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.4420 69.2362 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.2199 5.0000 10.3000 400.0000 397.5900 0.0000 0.0000 400.000
+ 14 -1.0000 0.0000 2.9000 -5.2000 60.501 24.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.0145 69.5586 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.2199 5.0000 10.2000 400.0000 397.6080 0.0000 0.0000 400.000
+ 15 -1.0000 0.0000 2.9000 -5.1000 60.558 25.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5858 69.8830 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1919 2.2199 5.0000 10.1000 399.9980 397.6050 0.0000 0.0000 400.000
+ 16 -1.0000 0.0000 2.9000 -5.0000 60.164 25.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1559 70.2095 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.2199 5.0000 10.0000 399.9970 397.6090 0.0000 0.0000 400.000
+ 17 -1.0000 0.0000 2.9000 -4.9000 60.030 18.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7246 70.5380 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7319 2.2199 5.0000 9.9000 399.9970 397.6100 0.0000 0.0000 400.000
+ 18 -1.0000 0.0000 2.9000 -4.8000 60.210 20.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.2921 70.8687 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.2199 5.0000 9.8000 399.9960 397.6030 0.0000 0.0000 400.000
+ 19 -1.0000 0.0000 2.9000 -4.7000 59.887 12.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.8583 71.2016 -2.0000 1.0000 0.0000 0.0000 154.3550 -51.2898 2.2199 5.0000 9.7000 399.9980 397.6100 0.0000 0.0000 400.000
+ 20 -1.0000 0.0000 2.9000 -4.6000 59.910 25.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4230 71.5367 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.2199 5.0000 9.6000 400.0000 397.6030 0.0000 0.0000 400.000
+ 21 -1.0000 0.0000 2.9000 -4.5000 60.105 30.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9864 71.8742 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.2199 5.0000 9.5000 400.0030 397.5990 0.0000 0.0000 400.000
+ 22 -1.0000 0.0000 2.9000 -4.4000 60.142 26.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.5483 72.2141 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 2.2199 5.0000 9.4000 400.0010 397.6060 0.0000 0.0000 400.000
+ 23 -1.0000 0.0000 2.9000 -4.3000 60.158 37.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1087 72.5564 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4634 2.2199 5.0000 9.3000 399.9980 397.5940 0.0000 0.0000 400.000
+ 24 -1.0000 0.0000 2.9000 -4.2000 60.107 88.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.6676 72.9012 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 2.2199 5.0000 9.2000 399.9930 397.5950 0.0000 0.0000 400.000
+ 25 -1.0000 0.0000 2.9000 -4.1000 60.129 164.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2248 73.2487 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 2.2199 5.0000 9.1000 399.9970 397.6080 0.0000 0.0000 400.000
+ 26 -1.0000 0.0000 2.9000 -4.0000 60.460 214.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.7805 73.5988 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.2199 5.0000 9.0000 399.9980 397.6030 0.0000 0.0000 400.000
+ 27 -1.0000 0.0000 2.9000 -3.9000 60.505 257.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3345 73.9517 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.2199 5.0000 8.9000 400.0030 397.6050 0.0000 0.0000 400.000
+ 28 -1.0000 0.0000 2.9000 -3.8000 60.513 210.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.8867 74.3074 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0508 2.2199 5.0000 8.8000 400.0010 397.6080 0.0000 0.0000 400.000
+ 29 -1.0000 0.0000 2.9000 -3.7000 60.170 178.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4372 74.6660 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.2199 5.0000 8.7000 399.9990 397.6080 0.0000 0.0000 400.000
+ 30 -1.0000 0.0000 2.9000 -3.6000 60.400 239.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.9859 75.0276 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.2199 5.0000 8.6000 399.9960 397.6050 0.0000 0.0000 400.000
+ 31 -1.0000 0.0000 2.9000 -3.5000 60.404 179.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.5328 75.3923 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.2199 5.0000 8.5000 400.0020 397.6110 0.0000 0.0000 400.000
+ 32 -1.0000 0.0000 2.9000 -3.4000 59.756 96.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.0777 75.7602 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 2.2199 5.0000 8.4000 400.0010 397.6060 0.0000 0.0000 400.000
+ 33 -1.0000 0.0000 2.9000 -3.3000 60.405 68.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.6206 76.1314 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7924 2.2199 5.0000 8.3000 400.0030 397.6120 0.0000 0.0000 400.000
+ 34 -1.0000 0.0000 2.9000 -3.2000 60.144 66.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1616 76.5059 -2.0000 1.0000 0.0000 0.0000 151.9193 -56.1615 2.2199 5.0000 8.2000 399.9980 397.6020 0.0000 0.0000 400.000
+ 35 -1.0000 0.0000 2.9000 -3.1000 60.047 48.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.7004 76.8839 -2.0000 1.0000 0.0000 0.0000 151.7310 -56.5380 2.2199 5.0000 8.1000 399.9920 397.5870 0.0000 0.0000 400.000
+ 36 -1.0000 0.0000 2.9000 -3.0000 59.871 43.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2371 77.2656 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.2199 5.0000 8.0000 399.9960 397.6000 0.0000 0.0000 400.000
+ 37 -1.0000 0.0000 2.9000 -2.9000 60.318 39.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.7716 77.6509 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 2.2199 5.0000 7.9000 400.0010 397.5970 0.0000 0.0000 400.000
+ 38 -1.0000 0.0000 2.9000 -2.8000 60.418 21.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.3038 78.0400 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 2.2199 5.0000 7.8000 400.0000 397.5940 0.0000 0.0000 400.000
+ 39 -1.0000 0.0000 2.9000 -2.7000 60.075 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.8338 78.4332 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 2.2199 5.0000 7.7000 400.0000 397.6030 0.0000 0.0000 400.000
+ 40 -1.0000 0.0000 2.9000 -2.6000 60.050 15.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.3613 78.8304 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5424 2.2199 5.0000 7.6000 399.9990 397.6100 0.0000 0.0000 400.000
+ 41 -1.0000 0.0000 2.9000 -2.5000 59.924 10.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8863 79.2318 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.2199 5.0000 7.5000 399.9970 397.5900 0.0000 0.0000 400.000
+# Sum of Counts = 3112
+# Center of Mass = -4.354788+/-0.111809
+# Full Width Half-Maximum = 1.975085+/-0.050368
+# 11:28:30 AM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0064.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0064.dat
new file mode 100644
index 0000000..7008c9b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0064.dat
@@ -0,0 +1,53 @@
+# scan = 64
+# date = 6/24/2012
+# time = 11:28:30 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# builtin_command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (-1.5, 0, 0), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 10.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -14.5000 602.818 96.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.0280 50.4633 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 399.9950 397.6050 0.0000 0.0000 400.000
+ 2 -1.5000 0.0000 0.0000 -14.2500 602.091 89.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -97.0888 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2500 399.9920 397.5970 0.0000 0.0000 400.000
+ 3 -1.5000 0.0000 0.0000 -14.0000 601.644 86.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -96.1518 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3993 5.0000 19.0000 399.9910 397.6070 0.0000 0.0000 400.000
+ 4 -1.5000 0.0000 0.0000 -13.7500 601.699 101.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -95.2170 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 399.9950 397.6040 0.0000 0.0000 400.000
+ 5 -1.5000 0.0000 0.0000 -13.5000 601.921 111.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.2840 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3993 5.0000 18.5000 400.0000 397.6060 0.0000 0.0000 400.000
+ 6 -1.5000 0.0000 0.0000 -13.2500 600.801 144.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -93.3525 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6074 -36.7850 2.3993 5.0000 18.2500 400.0010 397.6110 0.0000 0.0000 400.000
+ 7 -1.5000 0.0000 0.0000 -13.0000 600.783 161.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -92.4224 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4755 -37.0488 2.3993 5.0000 18.0000 400.0000 397.6110 0.0000 0.0000 400.000
+ 8 -1.5000 0.0000 0.0000 -12.7500 600.191 176.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.4932 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3406 -37.3184 2.3993 5.0000 17.7500 399.9980 397.6060 0.0000 0.0000 400.000
+ 9 -1.5000 0.0000 0.0000 -12.5000 601.561 201.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -90.5649 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3993 5.0000 17.5000 400.0150 397.6140 0.0000 0.0000 400.000
+ 10 -1.5000 0.0000 0.0000 -12.2500 605.101 210.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -89.6372 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 400.0230 397.5960 0.0000 0.0000 400.000
+ 11 -1.5000 0.0000 0.0000 -12.0000 604.710 184.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.7097 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3993 5.0000 17.0000 399.9740 397.6020 0.0000 0.0000 400.000
+ 12 -1.5000 0.0000 0.0000 -11.7500 603.644 172.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -87.7823 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 400.0070 397.6070 0.0000 0.0000 400.000
+ 13 -1.5000 0.0000 0.0000 -11.5000 604.343 150.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -86.8548 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3993 5.0000 16.5000 399.9910 397.5940 0.0000 0.0000 400.000
+ 14 -1.5000 0.0000 0.0000 -11.2499 601.885 135.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.9268 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0696 2.3993 5.0000 16.2499 400.0000 397.6100 0.0000 0.0000 400.000
+ 15 -1.5000 0.0000 0.0000 -11.0000 601.377 118.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.9982 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 399.9890 397.6000 0.0000 0.0000 400.000
+ 16 -1.5000 0.0000 0.0000 -10.7500 600.325 83.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.0686 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 400.0030 397.5920 0.0000 0.0000 400.000
+ 17 -1.5000 0.0000 0.0000 -10.5000 600.725 101.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.1379 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.3993 5.0000 15.5000 399.9980 397.6060 0.0000 0.0000 400.000
+ 18 -1.5000 0.0000 0.0000 -10.2500 600.111 71.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -82.2058 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 400.0000 397.6030 0.0000 0.0000 400.000
+ 19 -1.5000 0.0000 0.0000 -10.0000 601.894 69.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -81.2720 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 400.0030 397.6030 0.0000 0.0000 400.000
+# Sum of Counts = 2458
+# Center of Mass = -12.295662+/-0.351529
+# Full Width Half-Maximum = 2.345196+/-0.148610
+# 2:40:35 PM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0065.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0065.dat
new file mode 100644
index 0000000..e6aa71f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0065.dat
@@ -0,0 +1,75 @@
+# scan = 65
+# date = 6/24/2012
+# time = 2:40:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# builtin_command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-T (-1, 0, 2.9), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -6.5000 60.014 13.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.4904 65.5036 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.2199 5.0000 11.5000 400.0140 397.6060 0.0000 0.0000 400.000
+ 2 -1.0000 0.0000 2.9000 -6.4000 60.237 14.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0748 65.8059 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.2199 5.0000 11.4000 399.9990 397.6000 0.0000 0.0000 400.000
+ 3 -1.0000 0.0000 2.9000 -6.3000 60.342 18.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.6584 66.1098 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 2.2199 5.0000 11.3000 400.0000 397.6010 0.0000 0.0000 400.000
+ 4 -1.0000 0.0000 2.9000 -6.2000 60.062 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2411 66.4150 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.2199 5.0000 11.2000 399.9900 397.6000 0.0000 0.0000 400.000
+ 5 -1.0000 0.0000 2.9000 -6.1000 59.925 31.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.8229 66.7218 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.2199 5.0000 11.1000 399.9850 397.5850 0.0000 0.0000 400.000
+ 6 -1.0000 0.0000 2.9000 -6.0000 60.068 58.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4038 67.0302 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.2199 5.0000 11.0000 399.9970 397.5850 0.0000 0.0000 400.000
+ 7 -1.0000 0.0000 2.9000 -5.9000 60.158 77.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9838 67.3402 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 2.2199 5.0000 10.9000 400.0070 397.6000 0.0000 0.0000 400.000
+ 8 -1.0000 0.0000 2.9000 -5.8000 60.606 101.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5628 67.6518 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.2199 5.0000 10.8000 400.0090 397.5890 0.0000 0.0000 400.000
+ 9 -1.0000 0.0000 2.9000 -5.7000 60.354 142.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1408 67.9651 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 2.2199 5.0000 10.7000 400.0040 397.5940 0.0000 0.0000 400.000
+ 10 -1.0000 0.0000 2.9000 -5.6000 60.072 168.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.7177 68.2802 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.2199 5.0000 10.6000 399.9950 397.5920 0.0000 0.0000 400.000
+ 11 -1.0000 0.0000 2.9000 -5.5000 60.325 149.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.2936 68.5970 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.2199 5.0000 10.5000 399.9910 397.5910 0.0000 0.0000 400.000
+ 12 -1.0000 0.0000 2.9000 -5.4000 60.193 68.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.8684 68.9156 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.2199 5.0000 10.4000 399.9970 397.5810 0.0000 0.0000 400.000
+ 13 -1.0000 0.0000 2.9000 -5.3000 60.213 43.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.4420 69.2362 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.2199 5.0000 10.3000 400.0020 397.5800 0.0000 0.0000 400.000
+ 14 -1.0000 0.0000 2.9000 -5.2000 59.947 31.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.0145 69.5586 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.2199 5.0000 10.2000 400.0040 397.5990 0.0000 0.0000 400.000
+ 15 -1.0000 0.0000 2.9000 -5.1000 60.009 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5858 69.8830 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1919 2.2199 5.0000 10.1000 400.0030 397.5800 0.0000 0.0000 400.000
+ 16 -1.0000 0.0000 2.9000 -5.0000 60.296 14.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1559 70.2095 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.2199 5.0000 10.0000 400.0020 397.6020 0.0000 0.0000 400.000
+ 17 -1.0000 0.0000 2.9000 -4.9000 59.906 13.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7246 70.5380 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7320 2.2199 5.0000 9.9000 399.9970 397.5930 0.0000 0.0000 400.000
+ 18 -1.0000 0.0000 2.9000 -4.8000 60.030 16.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.2921 70.8687 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.2199 5.0000 9.8000 399.9970 397.6030 0.0000 0.0000 400.000
+ 19 -1.0000 0.0000 2.9000 -4.7000 60.369 16.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.8583 71.2016 -2.0000 1.0000 0.0000 0.0000 154.3551 -51.2898 2.2199 5.0000 9.7000 400.0000 397.5830 0.0000 0.0000 400.000
+ 20 -1.0000 0.0000 2.9000 -4.6000 60.201 17.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4230 71.5367 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.2199 5.0000 9.6000 400.0000 397.5910 0.0000 0.0000 400.000
+ 21 -1.0000 0.0000 2.9000 -4.5000 60.164 18.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9864 71.8742 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.2199 5.0000 9.5000 400.0020 397.5960 0.0000 0.0000 400.000
+ 22 -1.0000 0.0000 2.9000 -4.4000 59.956 25.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.5483 72.2141 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 2.2199 5.0000 9.4000 400.0000 397.5900 0.0000 0.0000 400.000
+ 23 -1.0000 0.0000 2.9000 -4.3000 60.544 58.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1087 72.5564 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4633 2.2199 5.0000 9.3000 400.0210 397.6090 0.0000 0.0000 400.000
+ 24 -1.0000 0.0000 2.9000 -4.2000 60.291 103.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.6676 72.9012 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 2.2199 5.0000 9.2000 400.0060 397.6010 0.0000 0.0000 400.000
+ 25 -1.0000 0.0000 2.9000 -4.1000 60.048 197.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2248 73.2487 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 2.2199 5.0000 9.1000 399.9870 397.5960 0.0000 0.0000 400.000
+ 26 -1.0000 0.0000 2.9000 -4.0000 60.083 229.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.7805 73.5988 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.2199 5.0000 9.0000 399.9790 397.5960 0.0000 0.0000 400.000
+ 27 -1.0000 0.0000 2.9000 -3.9000 60.452 249.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3345 73.9517 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.2199 5.0000 8.9000 399.9880 397.5920 0.0000 0.0000 400.000
+ 28 -1.0000 0.0000 2.9000 -3.8000 60.518 210.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.8867 74.3074 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0508 2.2199 5.0000 8.8000 400.0020 397.5820 0.0000 0.0000 400.000
+ 29 -1.0000 0.0000 2.9000 -3.7000 60.197 201.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4372 74.6660 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.2199 5.0000 8.7000 400.0120 397.5840 0.0000 0.0000 400.000
+ 30 -1.0000 0.0000 2.9000 -3.6000 60.009 250.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.9859 75.0276 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.2199 5.0000 8.6000 400.0080 397.5830 0.0000 0.0000 400.000
+ 31 -1.0000 0.0000 2.9000 -3.5000 60.224 169.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.5328 75.3923 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.2199 5.0000 8.5000 399.9980 397.5910 0.0000 0.0000 400.000
+ 32 -1.0000 0.0000 2.9000 -3.4000 59.888 103.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.0777 75.7602 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4306 2.2199 5.0000 8.4000 399.9910 397.5830 0.0000 0.0000 400.000
+ 33 -1.0000 0.0000 2.9000 -3.3000 60.062 84.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.6206 76.1314 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7924 2.2199 5.0000 8.3000 399.9890 397.5810 0.0000 0.0000 400.000
+ 34 -1.0000 0.0000 2.9000 -3.2000 60.294 38.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1616 76.5059 -2.0000 1.0000 0.0000 0.0000 151.9193 -56.1615 2.2199 5.0000 8.2000 399.9980 397.5820 0.0000 0.0000 400.000
+ 35 -1.0000 0.0000 2.9000 -3.1000 59.990 40.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.7004 76.8839 -2.0000 1.0000 0.0000 0.0000 151.7310 -56.5380 2.2199 5.0000 8.1000 400.0040 397.5850 0.0000 0.0000 400.000
+ 36 -1.0000 0.0000 2.9000 -3.0000 60.313 27.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2371 77.2656 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.2199 5.0000 8.0000 400.0050 397.5940 0.0000 0.0000 400.000
+ 37 -1.0000 0.0000 2.9000 -2.9000 60.539 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.7716 77.6509 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 2.2199 5.0000 7.9000 400.0020 397.5930 0.0000 0.0000 400.000
+ 38 -1.0000 0.0000 2.9000 -2.8000 60.288 31.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.3038 78.0400 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 2.2199 5.0000 7.8000 399.9970 397.5830 0.0000 0.0000 400.000
+ 39 -1.0000 0.0000 2.9000 -2.7000 60.514 23.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.8338 78.4332 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 2.2199 5.0000 7.7000 399.9960 397.6000 0.0000 0.0000 400.000
+ 40 -1.0000 0.0000 2.9000 -2.6000 59.934 23.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.3613 78.8304 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 2.2199 5.0000 7.6000 399.9970 397.5830 0.0000 0.0000 400.000
+ 41 -1.0000 0.0000 2.9000 -2.5000 60.337 19.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8863 79.2318 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.2199 5.0000 7.5000 400.0010 397.5840 0.0000 0.0000 400.000
+# Sum of Counts = 3152
+# Center of Mass = -4.339530+/-0.110669
+# Full Width Half-Maximum = 1.940339+/-0.050044
+# 3:23:46 PM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0066.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0066.dat
new file mode 100644
index 0000000..ee425d2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0066.dat
@@ -0,0 +1,55 @@
+# scan = 66
+# date = 6/24/2012
+# time = 3:23:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5, 0, 1.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.5000 362.120 67.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.2222 52.7450 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.5280 5.0000 20.5000 400.0030 397.6040 0.0000 0.0000 400.000
+ 2 1.5000 0.0000 1.5000 -15.2500 360.918 67.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.1100 53.3686 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.5280 5.0000 20.2500 399.9980 397.6040 0.0000 0.0000 400.000
+ 3 1.5000 0.0000 1.5000 -15.0000 362.247 71.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.9962 53.9931 -2.0000 1.0000 0.0000 0.0000 162.4579 -35.0840 2.5280 5.0000 20.0000 400.0000 397.6060 0.0000 0.0000 400.000
+ 4 1.5000 0.0000 1.5000 -14.7500 361.401 73.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.8808 54.6188 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 2.5280 5.0000 19.7500 400.0000 397.5950 0.0000 0.0000 400.000
+ 5 1.5000 0.0000 1.5000 -14.5000 361.747 85.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.7642 55.2460 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.5280 5.0000 19.5000 400.0000 397.5980 0.0000 0.0000 400.000
+ 6 1.5000 0.0000 1.5000 -14.2500 362.293 86.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.6465 55.8748 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.5280 5.0000 19.2500 399.9960 397.6060 0.0000 0.0000 400.000
+ 7 1.5000 0.0000 1.5000 -14.0000 361.902 126.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.5280 56.5056 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.5280 5.0000 19.0000 399.9990 397.6020 0.0000 0.0000 400.000
+ 8 1.5000 0.0000 1.5000 -13.7500 362.028 130.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.4088 57.1383 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.5280 5.0000 18.7500 399.9980 397.5880 0.0000 0.0000 400.000
+ 9 1.5000 0.0000 1.5000 -13.5000 361.665 156.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.2892 57.7733 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.5280 5.0000 18.5000 399.9970 397.5990 0.0000 0.0000 400.000
+ 10 1.5000 0.0000 1.5000 -13.2500 361.201 161.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.1694 58.4108 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.5280 5.0000 18.2500 400.0010 397.5990 0.0000 0.0000 400.000
+ 11 1.5000 0.0000 1.5000 -13.0000 361.574 182.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.0496 59.0511 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.5280 5.0000 18.0000 400.0020 397.5970 0.0000 0.0000 400.000
+ 12 1.5000 0.0000 1.5000 -12.7500 361.168 149.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.9300 59.6942 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.5280 5.0000 17.7500 399.9980 397.6070 0.0000 0.0000 400.000
+ 13 1.5000 0.0000 1.5000 -12.5000 361.025 162.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.8108 60.3406 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.5280 5.0000 17.5000 399.9990 397.6010 0.0000 0.0000 400.000
+ 14 1.5000 0.0000 1.5000 -12.2500 361.835 127.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.6922 60.9904 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.5280 5.0000 17.2500 400.0040 397.6130 0.0000 0.0000 400.000
+ 15 1.5000 0.0000 1.5000 -12.0000 361.041 117.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.5745 61.6438 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.5280 5.0000 17.0000 399.9970 397.6030 0.0000 0.0000 400.000
+ 16 1.5000 0.0000 1.5000 -11.7500 361.403 108.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.4578 62.3012 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.5280 5.0000 16.7500 400.0050 397.5980 0.0000 0.0000 400.000
+ 17 1.5000 0.0000 1.5000 -11.5000 361.511 82.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.3424 62.9628 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.5280 5.0000 16.5000 400.0040 397.6010 0.0000 0.0000 400.000
+ 18 1.5000 0.0000 1.5000 -11.2500 361.638 62.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.2284 63.6288 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.5280 5.0000 16.2500 399.9980 397.6100 0.0000 0.0000 400.000
+ 19 1.5000 0.0000 1.5000 -11.0000 361.850 80.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.1161 64.2995 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.5280 5.0000 16.0000 399.9950 397.6100 0.0000 0.0000 400.000
+ 20 1.5000 0.0000 1.5000 -10.7500 361.075 73.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.0058 64.9753 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.5280 5.0000 15.7500 399.9990 397.6230 0.0000 0.0000 400.000
+ 21 1.5000 0.0000 1.5000 -10.5000 361.191 56.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.8976 65.6564 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0431 2.5280 5.0000 15.5000 399.9990 397.6020 0.0000 0.0000 400.000
+# Sum of Counts = 2220
+# Center of Mass = -13.001577+/-0.391193
+# Full Width Half-Maximum = 2.568080+/-0.157307
+# 5:31:45 PM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0067.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0067.dat
new file mode 100644
index 0000000..27bbdbe
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0067.dat
@@ -0,0 +1,48 @@
+# scan = 67
+# date = 6/24/2012
+# time = 6:13:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 2
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 117.777 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5888 -44.8223 1.4398 5.0000 12.5000 479.9700 125.8840 0.0000 0.0000 480.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 119.469 27.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 479.9230 125.2840 0.0000 0.0000 480.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 120.118 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 480.0660 124.7390 0.0000 0.0000 480.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 120.720 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 479.9890 124.3320 0.0000 0.0000 480.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 120.164 44.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 479.9980 123.9060 0.0000 0.0000 480.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 120.623 63.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 480.0090 123.6140 0.0000 0.0000 480.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 119.968 67.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 479.9990 123.2320 0.0000 0.0000 480.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 120.773 37.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 480.0050 122.7110 0.0000 0.0000 480.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 120.815 45.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 480.0080 122.2700 0.0000 0.0000 480.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 120.666 21.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 480.0030 121.8180 0.0000 0.0000 480.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 120.307 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 479.9950 121.4190 0.0000 0.0000 480.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 120.379 21.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 480.0010 120.9690 0.0000 0.0000 480.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 120.781 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0666 -51.8666 1.4398 5.0000 9.5000 479.9990 120.5580 0.0000 0.0000 480.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 74.456 12.000 101858.000 1.242 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 479.9930 120.2960 0.0000 0.0000 480.000
+# Sum of Counts = 443
+# Center of Mass = -6.017494+/-0.406149
+# Full Width Half-Maximum = 1.619023+/-0.199150
+# 6:40:57 PM 6/24/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0068.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0068.dat
new file mode 100644
index 0000000..630f098
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0068.dat
@@ -0,0 +1,59 @@
+# scan = 68
+# date = 6/24/2012
+# time = 6:41:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 239.974 38.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 480.0080 120.0430 0.0000 0.0000 480.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 241.347 48.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 479.9980 119.5340 0.0000 0.0000 480.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 240.645 42.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 479.9990 119.0080 0.0000 0.0000 480.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 241.059 61.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 480.0000 118.5000 0.0000 0.0000 480.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 241.609 63.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5791 -46.8416 1.4398 5.0000 11.5000 479.9980 118.1210 0.0000 0.0000 480.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 240.700 142.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 479.9980 117.8140 0.0000 0.0000 480.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 240.597 149.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 479.9980 117.4510 0.0000 0.0000 480.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 241.307 133.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 480.0030 117.1110 0.0000 0.0000 480.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 241.193 81.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 480.0010 116.8360 0.0000 0.0000 480.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 240.951 56.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 479.9960 116.3660 0.0000 0.0000 480.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 240.373 36.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 480.0160 97.1390 0.0000 0.0000 480.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 241.611 38.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 479.9930 70.4110 0.0000 0.0000 480.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 242.657 30.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 479.9900 70.1130 0.0000 0.0000 480.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 242.411 23.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 479.9880 65.4750 0.0000 0.0000 480.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 241.831 36.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 479.9780 65.1930 0.0000 0.0000 480.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 242.450 41.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 480.0070 65.0150 0.0000 0.0000 480.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 241.482 35.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 479.9940 64.8730 0.0000 0.0000 480.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 240.962 27.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 479.9960 64.7500 0.0000 0.0000 480.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 241.833 30.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5387 -56.9223 1.4398 5.0000 8.0000 479.9920 64.6410 0.0000 0.0000 480.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 242.469 43.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.4398 5.0000 7.7500 479.9980 64.5350 0.0000 0.0000 480.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 242.362 61.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 479.9900 64.4470 0.0000 0.0000 480.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 242.412 72.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 479.9970 64.3650 0.0000 0.0000 480.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 241.488 29.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 479.9990 64.2810 0.0000 0.0000 480.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 241.704 31.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 480.0020 64.2030 0.0000 0.0000 480.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 241.484 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0823 -63.8352 1.4398 5.0000 6.5000 480.0020 64.1390 0.0000 0.0000 480.000
+# Sum of Counts = 1369
+# Center of Mass = -4.971695+/-0.195393
+# Full Width Half-Maximum = 3.365094+/-0.113151
+# 8:26:56 PM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0069.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0069.dat
new file mode 100644
index 0000000..fe3e9ab
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0069.dat
@@ -0,0 +1,55 @@
+# scan = 69
+# date = 6/24/2012
+# time = 8:26:56 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 0 k 0 l 3 e -15.0 -10.0 0.25 preset mcu 8
+# builtin_command = scan h 0 k 0 l 3 e -15.0 -10.0 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0, 0, 3), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -15.0000 482.651 194.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.3698 9.1509 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 1.5924 5.0000 20.0000 480.0060 64.0660 0.0000 0.0000 480.000
+ 2 0.0000 0.0000 3.0000 -14.7500 482.662 173.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -66.3046 11.2095 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 1.5924 5.0000 19.7500 480.0020 63.9360 0.0000 0.0000 480.000
+ 3 0.0000 0.0000 3.0000 -14.5000 482.835 134.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.8508 12.9588 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 1.5924 5.0000 19.5000 479.9980 63.8030 0.0000 0.0000 480.000
+ 4 0.0000 0.0000 3.0000 -14.2500 482.431 117.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.7860 14.5113 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 1.5924 5.0000 19.2500 479.9980 63.6800 0.0000 0.0000 480.000
+ 5 0.0000 0.0000 3.0000 -14.0000 482.191 121.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.9958 15.9250 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 1.5924 5.0000 19.0000 479.9990 63.5250 0.0000 0.0000 480.000
+ 6 0.0000 0.0000 3.0000 -13.7500 482.157 115.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.4120 17.2343 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 1.5924 5.0000 18.7500 479.9950 63.3820 0.0000 0.0000 480.000
+ 7 0.0000 0.0000 3.0000 -13.5000 483.119 123.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.9905 18.4616 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 1.5924 5.0000 18.5000 479.9990 63.2910 0.0000 0.0000 480.000
+ 8 0.0000 0.0000 3.0000 -13.2500 482.616 113.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.7003 19.6226 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 1.5924 5.0000 18.2500 479.9960 63.0850 0.0000 0.0000 480.000
+ 9 0.0000 0.0000 3.0000 -13.0000 482.043 139.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -47.5189 20.7286 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 1.5924 5.0000 18.0000 480.0000 62.9640 0.0000 0.0000 480.000
+ 10 0.0000 0.0000 3.0000 -12.7500 480.756 147.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.4294 21.7882 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 1.5924 5.0000 17.7500 479.9990 62.4650 0.0000 0.0000 480.000
+ 11 0.0000 0.0000 3.0000 -12.5000 482.417 167.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.4186 22.8081 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.5924 5.0000 17.5000 479.9910 62.2420 0.0000 0.0000 480.000
+ 12 0.0000 0.0000 3.0000 -12.2500 482.820 174.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.4761 23.7936 -2.0000 1.0000 0.0000 0.0000 161.0621 -37.8756 1.5924 5.0000 17.2500 479.9560 62.1730 0.0000 0.0000 480.000
+ 13 0.0000 0.0000 3.0000 -12.0000 484.169 156.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.5931 24.7491 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.5924 5.0000 17.0000 480.0010 53.7900 0.0000 0.0000 480.000
+ 14 0.0000 0.0000 3.0000 -11.7500 485.421 159.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.7628 25.6780 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.5924 5.0000 16.7500 479.9970 53.5650 0.0000 0.0000 480.000
+ 15 0.0000 0.0000 3.0000 -11.5000 484.809 177.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.9792 26.5835 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.5924 5.0000 16.5000 480.0050 53.3990 0.0000 0.0000 480.000
+ 16 0.0000 0.0000 3.0000 -11.2500 484.633 149.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.2372 27.4680 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.5924 5.0000 16.2500 479.9930 53.2680 0.0000 0.0000 480.000
+ 17 0.0000 0.0000 3.0000 -11.0000 483.712 116.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.5326 28.3338 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 1.5924 5.0000 16.0000 480.0030 53.1490 0.0000 0.0000 480.000
+ 18 0.0000 0.0000 3.0000 -10.7500 485.242 113.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.8618 29.1826 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.5924 5.0000 15.7500 479.9960 53.0380 0.0000 0.0000 480.000
+ 19 0.0000 0.0000 3.0000 -10.5000 484.629 102.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.2212 30.0162 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 1.5924 5.0000 15.5000 479.9980 52.9420 0.0000 0.0000 480.000
+ 20 0.0000 0.0000 3.0000 -10.2500 483.997 75.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.6082 30.8361 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 1.5924 5.0000 15.2500 479.9980 52.8420 0.0000 0.0000 480.000
+ 21 0.0000 0.0000 3.0000 -9.9999 484.981 62.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.0202 31.6434 -2.0000 1.0000 0.0000 0.0000 159.6329 -40.7341 1.5924 5.0000 14.9999 480.0030 52.7620 0.0000 0.0000 480.000
+# Sum of Counts = 2826
+# Center of Mass = -12.670822+/-0.338177
+# Full Width Half-Maximum = 2.893242+/-0.155585
+# 11:21:25 PM 6/24/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0070.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0070.dat
new file mode 100644
index 0000000..288ef13
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0070.dat
@@ -0,0 +1,59 @@
+# scan = 70
+# date = 6/24/2012
+# time = 11:21:25 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 242.126 34.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 480.0060 52.6650 0.0000 0.0000 480.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 241.643 47.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 480.0010 52.6030 0.0000 0.0000 480.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 241.077 51.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1006 -45.7986 1.4398 5.0000 12.0000 480.0010 52.5550 0.0000 0.0000 480.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 242.195 60.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 480.0000 52.4960 0.0000 0.0000 480.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 241.300 82.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 479.9980 52.4630 0.0000 0.0000 480.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 241.564 109.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 480.0020 52.4270 0.0000 0.0000 480.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 241.476 153.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0201 -47.9596 1.4398 5.0000 11.0000 479.9970 52.3890 0.0000 0.0000 480.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 242.233 140.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 479.9960 52.3530 0.0000 0.0000 480.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 242.209 80.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 480.0050 52.2940 0.0000 0.0000 480.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 242.054 64.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 479.9970 52.2400 0.0000 0.0000 480.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 241.242 36.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 479.9940 52.2080 0.0000 0.0000 480.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 242.619 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 479.9970 52.1710 0.0000 0.0000 480.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 241.379 21.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 480.0030 52.1420 0.0000 0.0000 480.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 241.270 28.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 480.0010 52.1040 0.0000 0.0000 480.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 241.644 21.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 479.9950 52.0610 0.0000 0.0000 480.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 241.736 27.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8911 -54.2176 1.4398 5.0000 8.7500 480.0000 52.0080 0.0000 0.0000 480.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 241.285 31.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 479.9630 46.5440 0.0000 0.0000 480.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 241.453 29.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 480.0010 28.3460 0.0000 0.0000 480.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 242.297 31.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.4398 5.0000 8.0000 479.9800 28.0560 0.0000 0.0000 480.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 242.267 34.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9187 1.4398 5.0000 7.7500 479.9990 27.9760 0.0000 0.0000 480.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 244.090 56.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 479.9930 27.9280 0.0000 0.0000 480.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 243.444 61.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 480.0050 27.8610 0.0000 0.0000 480.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 243.600 34.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 480.0010 27.8150 0.0000 0.0000 480.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 243.695 27.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 479.9800 27.7550 0.0000 0.0000 480.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 243.161 16.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0823 -63.8352 1.4398 5.0000 6.5000 480.0160 27.6920 0.0000 0.0000 480.000
+# Sum of Counts = 1296
+# Center of Mass = -5.069059+/-0.204415
+# Full Width Half-Maximum = 3.324732+/-0.116446
+# 1:03:56 AM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0071.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0071.dat
new file mode 100644
index 0000000..657a181
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0071.dat
@@ -0,0 +1,53 @@
+# scan = 71
+# date = 6/25/2012
+# time = 1:03:56 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# builtin_command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (-1.5, 0, 0), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 10.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -14.5000 607.249 113.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.0280 50.4632 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 479.9950 27.6190 0.0000 0.0000 480.000
+ 2 -1.5000 0.0000 0.0000 -14.2500 606.411 110.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -97.0888 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2500 480.0000 27.4800 0.0000 0.0000 480.000
+ 3 -1.5000 0.0000 0.0000 -14.0000 604.463 93.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -96.1518 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3993 5.0000 19.0000 480.0030 27.3540 0.0000 0.0000 480.000
+ 4 -1.5000 0.0000 0.0000 -13.7500 604.722 114.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -95.2170 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 480.0040 27.2520 0.0000 0.0000 480.000
+ 5 -1.5000 0.0000 0.0000 -13.4999 604.581 130.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.2840 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5269 2.3993 5.0000 18.4999 479.9990 27.1460 0.0000 0.0000 480.000
+ 6 -1.5000 0.0000 0.0000 -13.2500 603.474 114.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -93.3525 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3993 5.0000 18.2500 480.0020 27.0310 0.0000 0.0000 480.000
+ 7 -1.5000 0.0000 0.0000 -13.0000 602.972 170.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -92.4224 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3993 5.0000 18.0000 480.0010 26.9280 0.0000 0.0000 480.000
+ 8 -1.5000 0.0000 0.0000 -12.7500 602.554 191.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.4932 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3993 5.0000 17.7500 480.0000 26.8440 0.0000 0.0000 480.000
+ 9 -1.5000 0.0000 0.0000 -12.5000 602.795 161.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -90.5649 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3993 5.0000 17.5000 480.0010 26.7780 0.0000 0.0000 480.000
+ 10 -1.5000 0.0000 0.0000 -12.2500 604.278 182.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -89.6372 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 480.0050 26.6760 0.0000 0.0000 480.000
+ 11 -1.5000 0.0000 0.0000 -11.9999 603.144 196.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.7097 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1639 2.3993 5.0000 16.9999 479.9980 26.6000 0.0000 0.0000 480.000
+ 12 -1.5000 0.0000 0.0000 -11.7500 602.279 185.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -87.7823 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 480.0040 26.5150 0.0000 0.0000 480.000
+ 13 -1.5000 0.0000 0.0000 -11.5000 602.584 183.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -86.8548 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6195 -38.7605 2.3993 5.0000 16.5000 480.0070 24.8280 0.0000 0.0000 480.000
+ 14 -1.5000 0.0000 0.0000 -11.2500 607.291 164.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.9268 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.3993 5.0000 16.2500 480.0090 24.4970 0.0000 0.0000 480.000
+ 15 -1.5000 0.0000 0.0000 -11.0000 608.203 129.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.9982 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 480.0060 24.3720 0.0000 0.0000 480.000
+ 16 -1.5000 0.0000 0.0000 -10.7500 608.119 136.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.0686 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 479.9980 24.2510 0.0000 0.0000 480.000
+ 17 -1.5000 0.0000 0.0000 -10.5000 605.394 140.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.1379 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.3993 5.0000 15.5000 479.9940 24.1670 0.0000 0.0000 480.000
+ 18 -1.5000 0.0000 0.0000 -10.2500 605.556 100.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -82.2058 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 479.9990 24.0630 0.0000 0.0000 480.000
+ 19 -1.5000 0.0000 0.0000 -10.0000 605.329 112.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -81.2720 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 480.0030 23.9780 0.0000 0.0000 480.000
+# Sum of Counts = 2723
+# Center of Mass = -12.192239+/-0.331291
+# Full Width Half-Maximum = 2.496735+/-0.146603
+# 4:16:42 AM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0072.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0072.dat
new file mode 100644
index 0000000..a560373
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0072.dat
@@ -0,0 +1,56 @@
+# scan = 72
+# date = 6/25/2012
+# time = 4:16:42 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (1,0,1), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 362.769 61.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.6310 27.3666 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.6853 5.0000 17.5000 479.9990 23.8830 0.0000 0.0000 480.000
+ 2 1.0000 0.0000 1.0000 -12.2500 361.721 46.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 37.2786 28.2324 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 1.6853 5.0000 17.2500 480.0000 23.8400 0.0000 0.0000 480.000
+ 3 1.0000 0.0000 1.0000 -11.9999 362.371 57.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 38.8926 29.0811 -2.0000 1.0000 0.0000 0.0000 160.9180 -38.1639 1.6853 5.0000 16.9999 479.9960 23.8070 0.0000 0.0000 480.000
+ 4 1.0000 0.0000 1.0000 -11.7500 363.389 64.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 40.4761 29.9144 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.6853 5.0000 16.7500 479.9960 23.7590 0.0000 0.0000 480.000
+ 5 1.0000 0.0000 1.0000 -11.5000 362.284 59.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 42.0320 30.7338 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.6853 5.0000 16.5000 479.9930 23.7160 0.0000 0.0000 480.000
+ 6 1.0000 0.0000 1.0000 -11.2500 362.535 68.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 43.5627 31.5406 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.6853 5.0000 16.2500 479.9990 23.6840 0.0000 0.0000 480.000
+ 7 1.0000 0.0000 1.0000 -11.0000 363.143 64.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 45.0706 32.3359 -2.0000 1.0000 0.0000 0.0000 160.3069 -39.3861 1.6853 5.0000 16.0000 479.9990 23.6180 0.0000 0.0000 480.000
+ 8 1.0000 0.0000 1.0000 -10.7500 362.861 89.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 46.5574 33.1208 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.6853 5.0000 15.7500 479.9980 23.5850 0.0000 0.0000 480.000
+ 9 1.0000 0.0000 1.0000 -10.5000 362.638 103.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 48.0252 33.8962 -2.0000 1.0000 0.0000 0.0000 159.9783 -40.0430 1.6853 5.0000 15.5000 479.9970 23.5610 0.0000 0.0000 480.000
+ 10 1.0000 0.0000 1.0000 -10.2500 363.033 108.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 49.4755 34.6632 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 1.6853 5.0000 15.2500 479.9980 23.5070 0.0000 0.0000 480.000
+ 11 1.0000 0.0000 1.0000 -10.0000 361.819 138.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.9098 35.4223 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 1.6853 5.0000 15.0000 480.0000 23.4630 0.0000 0.0000 480.000
+ 12 1.0000 0.0000 1.0000 -9.7500 362.881 128.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 52.3296 36.1745 -2.0000 1.0000 0.0000 0.0000 159.4534 -41.0932 1.6853 5.0000 14.7500 479.9960 23.4280 0.0000 0.0000 480.000
+ 13 1.0000 0.0000 1.0000 -9.5000 362.088 194.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 53.7361 36.9203 -2.0000 1.0000 0.0000 0.0000 159.2690 -41.4622 1.6853 5.0000 14.5000 480.0000 23.3810 0.0000 0.0000 480.000
+ 14 1.0000 0.0000 1.0000 -9.2500 362.852 192.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 55.1305 37.6604 -2.0000 1.0000 0.0000 0.0000 159.0794 -41.8412 1.6853 5.0000 14.2500 480.0050 23.1610 0.0000 0.0000 480.000
+ 15 1.0000 0.0000 1.0000 -9.0000 362.578 209.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 56.5139 38.3955 -2.0000 1.0000 0.0000 0.0000 158.8846 -42.2308 1.6853 5.0000 14.0000 479.9900 23.1120 0.0000 0.0000 480.000
+ 16 1.0000 0.0000 1.0000 -8.7500 362.529 216.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 57.8874 39.1260 -2.0000 1.0000 0.0000 0.0000 158.6842 -42.6316 1.6853 5.0000 13.7500 480.0000 25.1620 0.0000 0.0000 480.000
+ 17 1.0000 0.0000 1.0000 -8.5000 363.423 233.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 59.2518 39.8526 -2.0000 1.0000 0.0000 0.0000 158.4778 -43.0440 1.6853 5.0000 13.5000 480.0060 25.2300 0.0000 0.0000 480.000
+ 18 1.0000 0.0000 1.0000 -8.2500 365.611 161.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 60.6083 40.5758 -2.0000 1.0000 0.0000 0.0000 158.2657 -43.4686 1.6853 5.0000 13.2500 480.0110 25.1420 0.0000 0.0000 480.000
+ 19 1.0000 0.0000 1.0000 -8.0000 365.027 137.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.9577 41.2960 -2.0000 1.0000 0.0000 0.0000 158.0468 -43.9061 1.6853 5.0000 13.0000 480.0060 25.0650 0.0000 0.0000 480.000
+ 20 1.0000 0.0000 1.0000 -7.7500 364.624 99.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.3008 42.0137 -2.0000 1.0000 0.0000 0.0000 157.8214 -44.3571 1.6853 5.0000 12.7500 480.0030 25.0050 0.0000 0.0000 480.000
+ 21 1.0000 0.0000 1.0000 -7.5000 364.496 80.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.6383 42.7294 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.6853 5.0000 12.5000 480.0000 24.9220 0.0000 0.0000 480.000
+ 22 1.0000 0.0000 1.0000 -7.2500 364.417 68.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.9712 43.4436 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.6853 5.0000 12.2500 479.9970 24.8550 0.0000 0.0000 480.000
+# Sum of Counts = 2574
+# Center of Mass = -9.455223+/-0.264833
+# Full Width Half-Maximum = 2.630140+/-0.111265
+# 6:31:43 AM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0073.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0073.dat
new file mode 100644
index 0000000..ab6af87
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0073.dat
@@ -0,0 +1,35 @@
+# scan = 73
+# date = 6/25/2012
+# time = 10:28:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 55.8071 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4539 -0.4674 0.0409 2.3827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 10:29:04 AM 6/25/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0074.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0074.dat
new file mode 100644
index 0000000..3407efd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0074.dat
@@ -0,0 +1,70 @@
+# scan = 74
+# date = 6/25/2012
+# time = 10:30:18 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 375.000 21466.000 0.262 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 -0.4702 0.0411 2.3880 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 56.2000 10.000 357.000 21475.000 0.262 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 -0.4731 0.0412 2.3934 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 56.4000 10.000 341.000 21075.000 0.257 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 -0.4761 0.0413 2.3989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 56.6000 10.000 349.000 20858.000 0.254 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 -0.4790 0.0415 2.4043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 56.8000 10.000 352.000 20919.000 0.255 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 -0.4820 0.0416 2.4096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 57.0000 10.000 382.000 20781.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 -0.4849 0.0417 2.4150 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 57.2000 10.000 364.000 20622.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 -0.4879 0.0419 2.4203 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 57.4000 10.000 355.000 20844.000 0.254 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 -0.4909 0.0420 2.4255 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 57.6000 10.000 402.000 20387.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 -0.4938 0.0421 2.4308 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 57.8000 10.000 405.000 20920.000 0.255 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 -0.4968 0.0423 2.4360 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 58.0000 10.000 375.000 20724.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 -0.4998 0.0424 2.4412 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 58.2000 10.000 367.000 20713.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 -0.5028 0.0425 2.4463 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 58.4000 10.000 391.000 20612.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 -0.5058 0.0426 2.4514 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 58.6000 10.000 440.000 20645.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 -0.5088 0.0428 2.4565 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 58.8000 10.000 501.000 20715.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 -0.5118 0.0429 2.4616 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 59.0000 10.000 748.000 20465.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 -0.5148 0.0430 2.4666 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 59.2000 10.000 1073.000 20377.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 -0.5178 0.0432 2.4716 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 59.4000 10.000 1300.000 20559.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 -0.5208 0.0433 2.4766 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 59.6000 10.000 1370.000 20635.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 -0.5239 0.0434 2.4815 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 59.8000 10.000 1247.000 20542.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5487 -0.5269 0.0435 2.4864 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 60.0000 10.000 1043.000 20742.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5534 -0.5299 0.0437 2.4913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 60.2000 10.000 863.000 20702.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5581 -0.5330 0.0438 2.4961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 60.4000 10.000 617.000 20441.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5628 -0.5360 0.0439 2.5010 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 60.6000 10.000 441.000 20329.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5674 -0.5391 0.0441 2.5057 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 60.8000 10.000 418.000 20373.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5721 -0.5422 0.0442 2.5105 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 61.0000 10.000 331.000 20585.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5768 -0.5452 0.0443 2.5152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 61.2000 10.000 379.000 20523.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5815 -0.5483 0.0444 2.5199 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 61.4000 10.000 379.000 20641.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5861 -0.5514 0.0446 2.5245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 61.6000 10.000 396.000 20507.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5908 -0.5545 0.0447 2.5292 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 61.8000 10.000 358.000 20415.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5954 -0.5576 0.0448 2.5337 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 62.0000 10.000 360.000 20255.000 0.247 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6001 -0.5607 0.0449 2.5383 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 62.2000 10.000 371.000 20424.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6047 -0.5638 0.0451 2.5428 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 62.4000 10.000 366.000 20315.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6094 -0.5669 0.0452 2.5473 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 62.6000 10.000 334.000 20644.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6140 -0.5700 0.0453 2.5518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 62.8000 10.000 403.000 20417.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6186 -0.5731 0.0454 2.5562 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 63.0000 10.000 366.000 20536.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6233 -0.5762 0.0455 2.5606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 18919
+# Center of Mass = 59.542460+/-0.612332
+# Full Width Half-Maximum = 3.504054+/-0.175657
+# 10:36:57 AM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0075.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0075.dat
new file mode 100644
index 0000000..1252717
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0075.dat
@@ -0,0 +1,65 @@
+# scan = 75
+# date = 6/25/2012
+# time = 10:36:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s2 67 73 0.2
+# builtin_command = scan s2 67 73 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1,0,0), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 67.0000 10.000 351.000 20557.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7147 -0.6396 0.0479 2.6417 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 67.2000 10.000 351.000 20204.000 0.246 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7193 -0.6428 0.0481 2.6454 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 67.4000 10.000 370.000 20482.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7238 -0.6460 0.0482 2.6491 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 67.6000 10.000 373.000 20399.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7283 -0.6492 0.0483 2.6527 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 67.8000 10.000 375.000 20327.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7328 -0.6525 0.0484 2.6564 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 68.0000 10.000 388.000 20767.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7373 -0.6557 0.0485 2.6599 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 68.2000 10.000 371.000 20357.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7418 -0.6589 0.0486 2.6635 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 68.4000 10.000 408.000 20661.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7463 -0.6622 0.0487 2.6670 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 68.6000 10.000 400.000 20612.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7507 -0.6654 0.0489 2.6705 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 68.8000 10.000 391.000 20873.000 0.255 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7552 -0.6687 0.0490 2.6739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 69.0000 10.000 434.000 20607.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7597 -0.6719 0.0491 2.6773 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 69.2000 10.000 458.000 20563.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7642 -0.6752 0.0492 2.6807 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 69.4000 10.000 574.000 20323.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7686 -0.6784 0.0493 2.6840 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 69.6000 10.000 769.000 20392.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7731 -0.6817 0.0494 2.6873 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 69.8000 10.000 901.000 20632.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7775 -0.6849 0.0495 2.6906 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 70.0000 10.000 894.000 20624.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7820 -0.6882 0.0496 2.6939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 70.2000 10.000 883.000 20334.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7864 -0.6915 0.0498 2.6971 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 70.4000 10.000 812.000 20448.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7908 -0.6948 0.0499 2.7002 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 70.6000 10.000 669.000 20450.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7953 -0.6980 0.0500 2.7034 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 70.8000 10.000 567.000 20457.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7997 -0.7013 0.0501 2.7065 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 71.0000 10.000 471.000 20626.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8041 -0.7046 0.0502 2.7096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 71.2000 10.000 409.000 20570.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8085 -0.7079 0.0503 2.7126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 71.4000 10.000 421.000 20372.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8129 -0.7112 0.0504 2.7156 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 71.6000 10.000 393.000 20524.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8173 -0.7145 0.0505 2.7186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 71.8000 10.000 354.000 20462.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8217 -0.7178 0.0506 2.7215 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 72.0000 10.000 395.000 20500.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8261 -0.7211 0.0507 2.7244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 72.2000 10.000 369.000 20442.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8305 -0.7244 0.0508 2.7273 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 72.4000 10.000 389.000 20485.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8349 -0.7277 0.0509 2.7301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 72.6000 10.000 351.000 20690.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8392 -0.7310 0.0511 2.7329 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 72.8000 10.000 351.000 20393.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8436 -0.7343 0.0512 2.7357 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 73.0000 10.000 366.000 20363.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 15008
+# Center of Mass = 70.015059+/-0.808352
+# Full Width Half-Maximum = 3.159024+/-0.259185
+# 10:42:46 AM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0076.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0076.dat
new file mode 100644
index 0000000..fa6d053
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0076.dat
@@ -0,0 +1,70 @@
+# scan = 76
+# date = 6/25/2012
+# time = 11:32:40 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 388.000 21766.000 0.265 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 -0.4702 0.0411 2.3880 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 56.2000 10.000 383.000 21593.000 0.263 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 -0.4731 0.0412 2.3934 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 56.4000 10.000 347.000 21569.000 0.263 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 -0.4761 0.0413 2.3989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 56.6000 10.000 368.000 21587.000 0.263 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 -0.4790 0.0415 2.4043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 56.8000 10.000 385.000 21098.000 0.257 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 -0.4820 0.0416 2.4096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 57.0000 10.000 362.000 21013.000 0.256 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 -0.4849 0.0417 2.4150 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 57.2000 10.000 374.000 20975.000 0.256 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 -0.4879 0.0419 2.4203 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 57.4000 10.000 411.000 21051.000 0.257 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 -0.4909 0.0420 2.4255 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 57.6000 10.000 386.000 21164.000 0.258 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 -0.4938 0.0421 2.4308 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 57.8000 10.000 377.000 20988.000 0.256 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 -0.4968 0.0423 2.4360 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 58.0000 10.000 392.000 20776.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 -0.4998 0.0424 2.4412 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 58.2000 10.000 399.000 20799.000 0.254 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 -0.5028 0.0425 2.4463 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 58.4000 10.000 415.000 20521.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 -0.5058 0.0426 2.4514 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 58.6000 10.000 436.000 20777.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 -0.5088 0.0428 2.4565 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 58.8000 10.000 554.000 20756.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 -0.5118 0.0429 2.4616 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 59.0000 10.000 890.000 20596.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 -0.5148 0.0430 2.4666 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 59.2000 10.000 1150.000 20613.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 -0.5178 0.0432 2.4716 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 59.4000 10.000 1402.000 20553.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 -0.5208 0.0433 2.4766 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 59.6000 10.000 1418.000 20750.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 -0.5239 0.0434 2.4815 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 59.8000 10.000 1344.000 20446.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5487 -0.5269 0.0435 2.4864 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 60.0000 10.000 1043.000 20715.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5534 -0.5299 0.0437 2.4913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 60.2000 10.000 831.000 20652.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5581 -0.5330 0.0438 2.4961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 60.4000 10.000 616.000 20524.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5628 -0.5360 0.0439 2.5010 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 60.6000 10.000 432.000 20747.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5674 -0.5391 0.0441 2.5057 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 60.8000 10.000 403.000 20551.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5721 -0.5422 0.0442 2.5105 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 61.0000 10.000 403.000 20605.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5768 -0.5452 0.0443 2.5152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 61.2000 10.000 382.000 20441.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5815 -0.5483 0.0444 2.5199 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 61.4000 10.000 377.000 20763.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5861 -0.5514 0.0446 2.5245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 61.6000 10.000 357.000 20579.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5908 -0.5545 0.0447 2.5292 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 61.8000 10.000 399.000 20638.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5954 -0.5576 0.0448 2.5337 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 62.0000 10.000 361.000 20460.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6001 -0.5607 0.0449 2.5383 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 62.2000 10.000 353.000 20484.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6047 -0.5638 0.0451 2.5428 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 62.4000 10.000 390.000 20363.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6094 -0.5669 0.0452 2.5473 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 62.6000 10.000 429.000 20648.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6140 -0.5700 0.0453 2.5518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 62.8000 10.000 370.000 20775.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6186 -0.5731 0.0454 2.5562 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 63.0000 10.000 370.000 20402.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6233 -0.5762 0.0455 2.5606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 19697
+# Center of Mass = 59.530020+/-0.599991
+# Full Width Half-Maximum = 3.492345+/-0.171586
+# 11:39:38 AM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0077.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0077.dat
new file mode 100644
index 0000000..a66fc62
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0077.dat
@@ -0,0 +1,65 @@
+# scan = 77
+# date = 6/25/2012
+# time = 11:39:38 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s2 67 73 0.2
+# builtin_command = scan s2 67 73 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1,0,0), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 67.0000 10.000 373.000 20425.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7147 -0.6396 0.0479 2.6417 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 67.2000 10.000 386.000 20714.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7193 -0.6428 0.0481 2.6454 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 67.4000 10.000 382.000 20540.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7238 -0.6460 0.0482 2.6491 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 67.6000 10.000 379.000 20548.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7283 -0.6492 0.0483 2.6527 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 67.8000 10.000 406.000 20503.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7328 -0.6525 0.0484 2.6564 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 68.0000 10.000 407.000 20504.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7373 -0.6557 0.0485 2.6599 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 68.2000 10.000 380.000 20766.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7418 -0.6589 0.0486 2.6635 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 68.4000 10.000 402.000 20400.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7463 -0.6622 0.0487 2.6670 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 68.6000 10.000 395.000 20546.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7507 -0.6654 0.0489 2.6705 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 68.8000 10.000 394.000 20584.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7552 -0.6687 0.0490 2.6739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 69.0000 10.000 416.000 20613.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7597 -0.6719 0.0491 2.6773 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 69.2000 10.000 534.000 20856.000 0.254 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7642 -0.6752 0.0492 2.6807 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 69.4000 10.000 665.000 20362.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7686 -0.6784 0.0493 2.6840 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 69.6000 10.000 810.000 20685.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7731 -0.6817 0.0494 2.6873 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 69.8000 10.000 934.000 20630.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7775 -0.6849 0.0495 2.6906 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 70.0000 10.000 951.000 20561.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7820 -0.6882 0.0496 2.6939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 70.2000 10.000 862.000 20212.000 0.247 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7864 -0.6915 0.0498 2.6971 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 70.4000 10.000 817.000 20497.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7908 -0.6948 0.0499 2.7002 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 70.6000 10.000 644.000 20435.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7953 -0.6980 0.0500 2.7034 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 70.8000 10.000 534.000 20597.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7997 -0.7013 0.0501 2.7065 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 71.0000 10.000 475.000 20510.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8041 -0.7046 0.0502 2.7095 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 71.2000 10.000 414.000 20408.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8085 -0.7079 0.0503 2.7126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 71.4000 10.000 408.000 20574.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8129 -0.7112 0.0504 2.7156 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 71.6000 10.000 392.000 20592.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8173 -0.7145 0.0505 2.7186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 71.8000 10.000 373.000 20272.000 0.247 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8217 -0.7178 0.0506 2.7215 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 72.0000 10.000 391.000 20687.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8261 -0.7211 0.0507 2.7244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 72.2000 10.000 385.000 20533.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8305 -0.7244 0.0508 2.7273 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 72.4000 10.000 400.000 20578.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8349 -0.7277 0.0509 2.7301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 72.6000 10.000 352.000 20387.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8392 -0.7310 0.0511 2.7329 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 72.8000 10.000 370.000 20573.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8436 -0.7343 0.0512 2.7357 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 73.0000 10.000 369.000 20472.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 15400
+# Center of Mass = 69.992584+/-0.797742
+# Full Width Half-Maximum = 3.168891+/-0.256435
+# 11:45:27 AM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0078.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0078.dat
new file mode 100644
index 0000000..2cce69b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0078.dat
@@ -0,0 +1,38 @@
+# scan = 78
+# date = 6/25/2012
+# time = 11:52:06 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel a1 -2 2 0.2
+# builtin_command = scan a1 @(a1)+-2 @(a1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 30.000000
+# def_x = a1
+# def_y = detector
+# col_headers =
+# Pt. a1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 140.9286 30.000 12.000 62490.000 0.762 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 141.1286 30.000 13.000 62584.000 0.763 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 141.3286 30.000 21.000 61649.000 0.752 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 141.5286 1.586 1.000 3333.000 0.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 47
+# Center of Mass = 141.175409+/-29.122274
+# Full Width Half-Maximum = 0.342335+/-32.065712
+# 11:53:44 AM 6/25/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0079.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0079.dat
new file mode 100644
index 0000000..e2e0e96
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0079.dat
@@ -0,0 +1,55 @@
+# scan = 79
+# date = 6/25/2012
+# time = 11:55:47 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel a1 -2 2 0.2
+# builtin_command = scan a1 @(a1)+-2 @(a1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = a1
+# def_y = detector
+# col_headers =
+# Pt. a1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 140.9286 29.851 8.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 141.1286 29.941 9.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 141.3286 30.226 23.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 141.5286 29.880 31.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 141.7286 30.188 56.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 141.9286 30.119 116.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 142.1286 30.022 167.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 142.3286 30.054 235.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 142.5286 29.835 270.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 142.7286 29.930 325.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 142.9286 29.955 334.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 143.1286 30.253 385.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 143.3286 30.016 369.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 143.5286 30.097 320.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 143.7286 30.331 232.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 143.9286 29.895 197.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 144.1286 29.913 150.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 144.3286 29.817 98.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 144.5286 30.159 56.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 144.7286 29.932 30.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 144.9286 29.935 28.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3439
+# Center of Mass = 143.095160+/-3.450855
+# Full Width Half-Maximum = 1.457142+/-1.387056
+# 12:06:40 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0080.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0080.dat
new file mode 100644
index 0000000..450f339
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0080.dat
@@ -0,0 +1,75 @@
+# scan = 80
+# date = 6/25/2012
+# time = 12:08:14 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel a2 -5 5 0.25
+# builtin_command = scan a2 @(a2)+-5 @(a2)+5 0.250000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = a2
+# def_y = detector
+# col_headers =
+# Pt. a2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -79.1428 29.969 1.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.7996 -0.7507 0.0496 2.5869 5.0000 4.4771 0.5229 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -78.8928 30.199 0.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8018 -0.7501 0.0496 2.5940 5.0000 4.5009 0.4991 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -78.6428 29.941 4.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8040 -0.7495 0.0497 2.6011 5.0000 4.5249 0.4751 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -78.3928 30.057 2.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8062 -0.7489 0.0498 2.6082 5.0000 4.5491 0.4509 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -78.1428 29.890 2.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8085 -0.7482 0.0499 2.6155 5.0000 4.5735 0.4265 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -77.8928 29.771 17.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8108 -0.7476 0.0500 2.6227 5.0000 4.5982 0.4018 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -77.6428 29.937 15.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8131 -0.7470 0.0500 2.6301 5.0000 4.6232 0.3768 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -77.3928 30.043 30.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8154 -0.7463 0.0501 2.6374 5.0000 4.6484 0.3516 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -77.1428 30.038 65.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8178 -0.7457 0.0502 2.6449 5.0000 4.6738 0.3262 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -76.8928 29.668 90.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8202 -0.7451 0.0503 2.6524 5.0000 4.6995 0.3005 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -76.6428 29.795 158.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8226 -0.7444 0.0504 2.6599 5.0000 4.7255 0.2745 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -76.3928 30.048 200.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8250 -0.7438 0.0505 2.6675 5.0000 4.7517 0.2483 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -76.1428 29.954 221.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8275 -0.7431 0.0506 2.6751 5.0000 4.7782 0.2218 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -75.8928 30.063 266.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8299 -0.7424 0.0506 2.6828 5.0000 4.8049 0.1951 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -75.6428 29.908 308.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8324 -0.7418 0.0507 2.6906 5.0000 4.8320 0.1680 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -75.3928 29.832 340.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8350 -0.7411 0.0508 2.6984 5.0000 4.8593 0.1407 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -75.1428 29.859 366.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8375 -0.7404 0.0509 2.7063 5.0000 4.8868 0.1132 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -74.8928 29.776 352.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8401 -0.7397 0.0510 2.7142 5.0000 4.9147 0.0853 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -74.6428 29.882 367.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8427 -0.7390 0.0511 2.7222 5.0000 4.9428 0.0572 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -74.3928 30.221 400.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8453 -0.7383 0.0512 2.7303 5.0000 4.9713 0.0287 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -74.1428 29.882 416.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 -73.8928 30.024 416.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8507 -0.7369 0.0514 2.7466 5.0000 5.0290 -0.0290 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 -73.6428 29.979 364.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8534 -0.7362 0.0514 2.7548 5.0000 5.0584 -0.0584 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 -73.3928 29.983 358.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8561 -0.7355 0.0515 2.7631 5.0000 5.0880 -0.0880 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 -73.1428 29.790 367.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8589 -0.7348 0.0516 2.7714 5.0000 5.1179 -0.1179 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 -72.8928 29.992 358.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8617 -0.7341 0.0517 2.7799 5.0000 5.1482 -0.1482 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 -72.6428 29.893 336.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8645 -0.7333 0.0518 2.7884 5.0000 5.1788 -0.1788 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 -72.3928 29.764 292.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8673 -0.7326 0.0519 2.7969 5.0000 5.2097 -0.2097 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 -72.1428 29.815 231.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8702 -0.7319 0.0520 2.8055 5.0000 5.2409 -0.2409 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 -71.8928 29.959 201.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8731 -0.7311 0.0521 2.8142 5.0000 5.2725 -0.2725 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 -71.6428 29.758 162.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8760 -0.7304 0.0522 2.8229 5.0000 5.3043 -0.3043 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 -71.3928 29.880 102.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8790 -0.7296 0.0523 2.8317 5.0000 5.3366 -0.3366 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 -71.1428 30.017 57.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8820 -0.7288 0.0524 2.8406 5.0000 5.3692 -0.3692 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 -70.8928 29.960 42.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8850 -0.7281 0.0525 2.8496 5.0000 5.4021 -0.4021 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 -70.6428 29.883 21.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8881 -0.7273 0.0526 2.8586 5.0000 5.4354 -0.4354 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 -70.3928 29.741 9.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8912 -0.7265 0.0527 2.8677 5.0000 5.4690 -0.4690 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 -70.1428 29.842 6.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8943 -0.7257 0.0528 2.8768 5.0000 5.5031 -0.5031 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 -69.8928 30.069 3.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8975 -0.7249 0.0529 2.8861 5.0000 5.5374 -0.5375 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 -69.6428 29.938 3.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.9007 -0.7241 0.0530 2.8954 5.0000 5.5722 -0.5722 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 -69.3928 29.861 0.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.9039 -0.7233 0.0531 2.9047 5.0000 5.6074 -0.6074 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 -69.1428 30.103 3.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.9072 -0.7225 0.0532 2.9142 5.0000 5.6429 -0.6429 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 6951
+# Center of Mass = -74.111869+/-1.257259
+# Full Width Half-Maximum = 3.036556+/-0.427993
+# 12:29:36 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0081.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0081.dat
new file mode 100644
index 0000000..80ede8b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0081.dat
@@ -0,0 +1,63 @@
+# scan = 81
+# date = 6/25/2012
+# time = 12:34:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel e -0.5 0.5 0.025
+# builtin_command = scan e @(e)+-0.5 @(e)+0.5 0.025000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 27.878 8.000 61678.000 30.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8017 -0.6873 0.0503 2.7426 4.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -0.4750 27.801 11.000 61678.000 30.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8040 -0.6899 0.0503 2.7423 4.5250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -0.4500 27.917 10.000 61678.000 30.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8063 -0.6925 0.0504 2.7421 4.5500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -0.4250 27.903 4.000 61678.000 30.000 100.8254 140.9360 -78.1280 0.6359 0.0000 35.8360 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8086 -0.6951 0.0504 2.7419 4.5750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -0.4000 28.001 5.000 61678.000 30.000 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8110 -0.6976 0.0505 2.7417 4.6000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -0.3750 27.657 9.000 61678.000 30.000 100.2907 141.1876 -77.6247 0.6359 0.0000 35.7360 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8133 -0.7002 0.0505 2.7415 4.6250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -0.3500 27.598 7.000 61678.000 30.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8156 -0.7027 0.0506 2.7413 4.6500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -0.3250 27.668 8.000 61678.000 30.000 99.7405 141.4344 -77.1313 0.6359 0.0000 35.6320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8179 -0.7053 0.0506 2.7411 4.6750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -0.3000 27.584 8.000 61678.000 30.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8202 -0.7078 0.0507 2.7409 4.7000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -0.2750 27.737 18.000 61678.000 30.000 99.2172 141.6763 -76.6474 0.6359 0.0000 35.5320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8225 -0.7103 0.0507 2.7407 4.7250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -0.2500 27.483 25.000 61678.000 30.000 98.9472 141.7955 -76.4090 0.6359 0.0000 35.4800 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8248 -0.7128 0.0508 2.7404 4.7500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -0.2250 27.678 50.000 61678.000 30.000 98.6993 141.9136 -76.1727 0.6359 0.0000 35.4320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8272 -0.7153 0.0508 2.7402 4.7750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -0.2000 27.328 79.000 61678.000 30.000 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8295 -0.7178 0.0509 2.7400 4.8000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -0.1750 27.437 147.000 61678.000 30.000 98.1868 142.1465 -75.7070 0.6359 0.0000 35.3320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8318 -0.7203 0.0509 2.7398 4.8250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -0.1500 27.524 220.000 61678.000 30.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8341 -0.7228 0.0510 2.7396 4.8500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -0.1250 27.774 259.000 61678.000 30.000 97.6795 142.3751 -75.2498 0.6359 0.0000 35.2320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8364 -0.7253 0.0510 2.7394 4.8750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -0.1000 28.149 337.000 61678.000 30.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8387 -0.7278 0.0511 2.7392 4.9000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -0.0750 28.735 369.000 61678.000 30.000 97.1775 142.5995 -74.8009 0.6359 0.0000 35.1320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8410 -0.7303 0.0511 2.7390 4.9250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -0.0500 29.415 413.000 61678.000 30.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8433 -0.7327 0.0512 2.7388 4.9500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -0.0250 29.595 433.000 61678.000 30.000 96.7005 142.8199 -74.3602 0.6359 0.0000 35.0360 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8457 -0.7352 0.0512 2.7386 4.9750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 0.0000 30.030 365.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 0.0250 30.017 359.000 61678.000 30.000 96.2085 143.0363 -73.9273 0.6359 0.0000 34.9360 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8503 -0.7401 0.0513 2.7382 5.0250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 0.0500 30.395 397.000 61678.000 30.000 95.9741 143.1431 -73.7137 0.6359 0.0000 34.8880 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8526 -0.7425 0.0514 2.7380 5.0500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 0.0750 31.005 375.000 61678.000 30.000 95.7408 143.2490 -73.5021 0.6359 0.0000 34.8400 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8549 -0.7450 0.0514 2.7378 5.0750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 0.1000 30.692 307.000 61678.000 30.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8572 -0.7474 0.0515 2.7376 5.1000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 0.1250 31.008 286.000 61678.000 30.000 95.2585 143.4579 -73.0842 0.6359 0.0000 34.7400 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8595 -0.7498 0.0515 2.7374 5.1250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 0.1500 30.581 225.000 61678.000 30.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8618 -0.7522 0.0516 2.7372 5.1500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 0.1750 30.525 181.000 61678.000 30.000 94.8000 143.6633 -72.6734 0.6359 0.0000 34.6440 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8641 -0.7547 0.0516 2.7370 5.1750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 0.2000 1.465 7.000 3068.000 1.492 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8664 -0.7571 0.0517 2.7368 5.2000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 4922
+# Center of Mass = -0.012236+/-0.001613
+# Full Width Half-Maximum = 0.223732+/-0.003638
+# 12:51:00 PM 6/25/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0082.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0082.dat
new file mode 100644
index 0000000..6b76213
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0082.dat
@@ -0,0 +1,34 @@
+# scan = 82
+# date = 6/25/2012
+# time = 12:51:49 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.8 e -0.5 0.5 0.025
+# builtin_command = scan q 1.8 e -0.5 0.5 0.025
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+# Sum of Counts = 0
+# Center of Mass = 0.000000+/-0.000000
+# Full Width Half-Maximum = 0.000000+/-0.000000
+# 12:51:49 PM 6/25/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0083.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0083.dat
new file mode 100644
index 0000000..8d45ae1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0083.dat
@@ -0,0 +1,75 @@
+# scan = 83
+# date = 6/25/2012
+# time = 12:54:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.8 e -0.5 0.5 0.025 preset mcu 30
+# builtin_command = scan q 1.8 e -0.5 0.5 0.025 preset mcu 30
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.8000 -0.5000 27.988 4.000 61678.000 30.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 0.0000 72.9202 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6860 0.0502 2.7415 4.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.8000 -0.4750 27.991 9.000 61678.000 30.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 0.0000 72.8113 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6868 0.0502 2.7398 4.5250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.8000 -0.4500 27.790 6.000 61678.000 30.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 0.0000 72.7029 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6876 0.0502 2.7381 4.5500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.8000 -0.4250 27.883 5.000 61678.000 30.000 100.8254 140.9360 -78.1279 0.6359 0.0000 35.8360 0.0000 72.5948 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6883 0.0502 2.7364 4.5750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.8000 -0.4000 27.649 3.000 61678.000 30.000 100.5466 141.0625 -77.8750 0.6359 0.0000 35.7840 0.0000 72.4872 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6891 0.0502 2.7346 4.6000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.8000 -0.3750 27.552 14.000 61678.000 30.000 100.2907 141.1876 -77.6247 0.6359 0.0000 35.7360 0.0000 72.3799 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6899 0.0502 2.7329 4.6250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.8000 -0.3500 27.740 4.000 61678.000 30.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 0.0000 72.2730 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6907 0.0502 2.7312 4.6500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.8000 -0.3250 27.501 15.000 61678.000 30.000 99.7405 141.4344 -77.1313 0.6359 0.0000 35.6320 0.0000 72.1665 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6914 0.0502 2.7295 4.6750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.8000 -0.3000 27.583 12.000 61678.000 30.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 0.0000 72.0604 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6922 0.0502 2.7277 4.7000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.8000 -0.2750 27.438 13.000 61678.000 30.000 99.2172 141.6763 -76.6474 0.6359 0.0000 35.5320 0.0000 71.9546 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6930 0.0502 2.7260 4.7250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.8000 -0.2500 27.341 28.000 61678.000 30.000 98.9472 141.7955 -76.4089 0.6359 0.0000 35.4800 0.0000 71.8491 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6938 0.0502 2.7243 4.7500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.8000 -0.2250 27.423 39.000 61678.000 30.000 98.6993 141.9136 -76.1727 0.6359 0.0000 35.4320 0.0000 71.7441 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6946 0.0502 2.7225 4.7750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.8000 -0.2000 27.407 100.000 61678.000 30.000 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 0.0000 71.6394 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6953 0.0501 2.7208 4.8000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.8000 -0.1750 27.107 144.000 61678.000 30.000 98.1868 142.1465 -75.7069 0.6359 0.0000 35.3320 0.0000 71.5351 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6961 0.0501 2.7190 4.8250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.8000 -0.1500 27.655 199.000 61678.000 30.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 0.0000 71.4311 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6969 0.0501 2.7173 4.8500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.8000 -0.1250 27.695 244.000 61678.000 30.000 97.6795 142.3751 -75.2498 0.6359 0.0000 35.2320 0.0000 71.3275 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6977 0.0501 2.7155 4.8750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.8000 -0.1000 28.060 345.000 61678.000 30.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 0.0000 71.2242 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6984 0.0501 2.7138 4.9000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.8000 -0.0750 28.616 399.000 61678.000 30.000 97.1775 142.5995 -74.8009 0.6359 0.0000 35.1320 0.0000 71.1212 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6992 0.0501 2.7120 4.9250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.8000 -0.0500 29.025 417.000 61678.000 30.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 0.0000 71.0186 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7000 0.0501 2.7102 4.9500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.8000 -0.0250 29.382 426.000 61678.000 30.000 96.7005 142.8199 -74.3602 0.6359 0.0000 35.0360 0.0000 70.9162 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7008 0.0501 2.7085 4.9750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.8000 0.0000 29.947 396.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 70.8142 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7016 0.0501 2.7067 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.8000 0.0250 30.237 349.000 61678.000 30.000 96.2085 143.0363 -73.9273 0.6359 0.0000 34.9360 0.0000 70.7126 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7023 0.0501 2.7049 5.0250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.8000 0.0500 30.274 360.000 61678.000 30.000 95.9741 143.1431 -73.7137 0.6359 0.0000 34.8880 0.0000 70.6112 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7031 0.0501 2.7031 5.0500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.8000 0.0750 30.602 363.000 61678.000 30.000 95.7408 143.2490 -73.5021 0.6359 0.0000 34.8400 0.0000 70.5102 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7039 0.0501 2.7014 5.0750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.8000 0.1000 30.717 316.000 61678.000 30.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 0.0000 70.4095 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7047 0.0501 2.6996 5.1000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.8000 0.1250 30.579 266.000 61678.000 30.000 95.2585 143.4579 -73.0841 0.6359 0.0000 34.7400 0.0000 70.3091 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7054 0.0501 2.6978 5.1250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.8000 0.1500 30.698 233.000 61678.000 30.000 95.0287 143.5610 -72.8780 0.6359 0.0000 34.6920 0.0000 70.2090 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7062 0.0501 2.6960 5.1500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.8000 0.1750 30.303 182.000 61678.000 30.000 94.8000 143.6633 -72.6735 0.6359 0.0000 34.6440 0.0000 70.1092 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7070 0.0500 2.6942 5.1750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.8000 0.2000 30.100 113.000 61678.000 30.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 0.0000 70.0097 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7078 0.0500 2.6924 5.2000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.8000 0.2250 29.915 94.000 61678.000 30.000 94.3459 143.8652 -72.2698 0.6359 0.0000 34.5480 0.0000 69.9105 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7086 0.0500 2.6906 5.2250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.8000 0.2500 29.317 59.000 61678.000 30.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 0.0000 69.8115 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7093 0.0500 2.6888 5.2500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 1.8000 0.2750 29.111 31.000 61678.000 30.000 93.8962 144.0636 -71.8727 0.6359 0.0000 34.4520 0.0000 69.7129 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7101 0.0500 2.6870 5.2750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 1.8000 0.3000 28.882 21.000 61678.000 30.000 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 0.0000 69.6146 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7109 0.0500 2.6852 5.3000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 1.8000 0.3250 29.202 6.000 61678.000 30.000 93.4692 144.2588 -71.4823 0.6359 0.0000 34.3600 0.0000 69.5165 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7117 0.0500 2.6834 5.3250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 1.8000 0.3500 29.217 7.000 61678.000 30.000 93.2479 144.3552 -71.2896 0.6359 0.0000 34.3120 0.0000 69.4187 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7125 0.0500 2.6815 5.3500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 1.8000 0.3750 29.058 6.000 61678.000 30.000 93.0277 144.4508 -71.0983 0.6359 0.0000 34.2640 0.0000 69.3212 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7132 0.0500 2.6797 5.3750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 1.8000 0.4000 29.446 8.000 61678.000 30.000 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 0.0000 69.2240 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7140 0.0500 2.6779 5.4000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 1.8000 0.4250 29.614 12.000 61678.000 30.000 92.5904 144.6397 -70.7205 0.6359 0.0000 34.1680 0.0000 69.1270 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7148 0.0500 2.6761 5.4250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 1.8000 0.4500 29.267 10.000 61678.000 30.000 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 0.0000 69.0303 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7156 0.0500 2.6743 5.4500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 1.8000 0.4750 29.324 6.000 61678.000 30.000 92.1752 144.8256 -70.3488 0.6359 0.0000 34.0760 0.0000 68.9338 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7163 0.0500 2.6724 5.4750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 1.8000 0.5000 29.250 6.000 61678.000 30.000 91.9600 144.9174 -70.1652 0.6359 0.0000 34.0280 0.0000 68.8377 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7171 0.0499 2.6706 5.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 5270
+# Center of Mass = 0.006826+/-0.001786
+# Full Width Half-Maximum = 0.258548+/-0.004032
+# 1:17:17 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0084.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0084.dat
new file mode 100644
index 0000000..4dfe28c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0084.dat
@@ -0,0 +1,37 @@
+# scan = 84
+# date = 6/25/2012
+# time = 1:34:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s2 -1 1 0.1
+# builtin_command = scan s2 @(s2)+-1 @(s2)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB25Jun2012_13208PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 34.7390 1.000 146.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 12.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9275 -0.1161 0.4102 2.0227 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 34.8390 1.000 423.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 12.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9301 -0.1174 0.4113 2.0281 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 34.9391 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 12.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9326 -0.1187 0.4124 2.0336 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 569
+# Center of Mass = 34.813341+/-2.063976
+# Full Width Half-Maximum = 0.087350+/-2.549673
+# 1:34:08 PM 6/25/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0085.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0085.dat
new file mode 100644
index 0000000..c94e223
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0085.dat
@@ -0,0 +1,55 @@
+# scan = 85
+# date = 6/25/2012
+# time = 1:34:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB25Jun2012_13208PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 11.0000 1.000 33.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1493 0.4207 2.0717 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 11.1000 1.000 43.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1473 0.4208 2.0722 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 11.2000 1.000 82.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1453 0.4208 2.0728 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 11.3000 1.000 414.000 1986.000 0.966 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1433 0.4209 2.0733 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 11.4000 1.000 1549.000 2006.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1413 0.4210 2.0738 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 11.5000 1.000 3572.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1393 0.4210 2.0743 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 11.6000 1.000 6603.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1373 0.4211 2.0748 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 11.7000 1.000 9465.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1353 0.4211 2.0753 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 11.8000 1.000 9740.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1333 0.4212 2.0758 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 11.9000 1.000 9924.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1313 0.4213 2.0763 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 12.0000 1.000 8383.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1293 0.4213 2.0768 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 12.1000 1.000 5020.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1273 0.4214 2.0772 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 12.2000 1.000 3771.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1253 0.4214 2.0777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 12.3000 1.000 3601.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1233 0.4215 2.0782 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 12.4000 1.000 1656.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1213 0.4215 2.0786 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 12.5000 1.000 295.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1193 0.4216 2.0791 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 12.6000 1.000 78.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1173 0.4216 2.0795 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 12.7000 1.000 57.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1153 0.4217 2.0799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 12.8000 1.000 44.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1133 0.4217 2.0804 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 12.9000 1.000 32.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1113 0.4218 2.0808 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 13.0000 1.000 27.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1093 0.4218 2.0812 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 64389
+# Center of Mass = 11.872036+/-0.066173
+# Full Width Half-Maximum = 0.505759+/-0.032555
+# 1:34:47 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0086.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0086.dat
new file mode 100644
index 0000000..8cede78
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0086.dat
@@ -0,0 +1,55 @@
+# scan = 86
+# date = 6/25/2012
+# time = 1:37:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB25Jun2012_13208PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 3.0000 1.000 59.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.3066 0.4110 2.0087 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 3.1000 1.000 88.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.3047 0.4112 2.0097 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 3.2000 1.000 90.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.3028 0.4114 2.0107 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 3.3000 1.000 93.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.3008 0.4115 2.0117 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 3.4000 1.000 119.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2989 0.4117 2.0128 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 3.5000 1.000 215.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2969 0.4119 2.0138 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 3.6000 1.000 339.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2950 0.4120 2.0148 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 3.7000 1.000 349.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2931 0.4122 2.0158 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 3.8000 1.000 276.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2911 0.4124 2.0168 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 3.9000 1.000 177.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2892 0.4125 2.0177 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 4.0000 1.000 102.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2872 0.4127 2.0187 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 4.1000 1.000 42.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2853 0.4128 2.0197 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 4.2000 1.000 18.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2833 0.4130 2.0207 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 4.3000 1.000 8.000 1963.000 0.955 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2814 0.4132 2.0216 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 4.4000 1.000 3.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2794 0.4133 2.0226 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 4.5000 1.000 6.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2775 0.4135 2.0235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 4.6000 1.000 2.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2755 0.4136 2.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 4.7000 1.000 4.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2736 0.4138 2.0254 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 4.8000 1.000 0.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2716 0.4139 2.0263 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 4.9000 1.000 2.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2697 0.4141 2.0272 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 5.0000 1.000 3.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2677 0.4142 2.0282 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 1995
+# Center of Mass = 3.626967+/-0.115016
+# Full Width Half-Maximum = 0.569974+/-0.051373
+# 1:37:50 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0087.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0087.dat
new file mode 100644
index 0000000..e0660d0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0087.dat
@@ -0,0 +1,51 @@
+# scan = 87
+# date = 6/25/2012
+# time = 1:38:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan sgl 8 0 0.5
+# builtin_command = scan sgl 8 0 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB25Jun2012_13208PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 8.0000 1.000 10119.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1248 0.5834 2.0456 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 7.5000 1.000 11052.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1253 0.5735 2.0486 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 7.0000 1.000 12043.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1259 0.5636 2.0516 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 6.5000 1.000 13082.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1264 0.5537 2.0543 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 6.0000 1.000 14335.000 2182.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1269 0.5438 2.0569 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 5.5000 1.000 15515.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1275 0.5338 2.0594 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 5.0000 1.000 15871.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1280 0.5237 2.0616 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 4.5000 1.000 16055.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1285 0.5136 2.0638 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 4.0000 1.000 15999.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1291 0.5035 2.0657 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 3.5000 1.000 15575.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1296 0.4933 2.0676 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 3.0000 1.000 14992.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1301 0.4831 2.0692 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 2.5000 1.000 14419.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1307 0.4729 2.0707 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 2.0000 1.000 13531.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1312 0.4626 2.0720 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 1.000 12596.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1317 0.4523 2.0732 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.0000 1.000 11414.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1323 0.4420 2.0742 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 0.5000 1.000 10617.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1328 0.4316 2.0751 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 0.0000 1.000 9705.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1333 0.4212 2.0758 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 226920
+# Center of Mass = 4.046939+/-0.012927
+# Full Width Half-Maximum = 4.543919+/-0.010092
+# 1:39:39 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0088.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0088.dat
new file mode 100644
index 0000000..8479b78
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0088.dat
@@ -0,0 +1,55 @@
+# scan = 88
+# date = 6/25/2012
+# time = 1:42:52 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_14145PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -99.7959 1.000 19.000 2012.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9944 -0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -99.6959 1.000 16.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9950 -0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -99.5959 1.000 10.000 2159.000 1.050 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9955 -0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -99.4959 1.000 55.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9961 -0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -99.3959 1.000 169.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9967 -0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -99.2959 1.000 424.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9972 -0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -99.1959 1.000 988.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9978 -0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -99.0959 1.000 1658.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9983 -0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -98.9959 1.000 1983.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9989 -0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -98.8959 1.000 2444.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9995 -0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -98.7959 1.000 4151.000 1960.000 0.953 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -98.6959 1.000 6475.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0005 0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -98.5959 1.000 6598.000 1981.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0011 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -98.4959 1.000 5458.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0016 0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -98.3959 1.000 3340.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0022 0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -98.2959 1.000 2112.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0027 0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -98.1959 1.000 632.000 1971.000 0.959 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0032 0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -98.0959 1.000 72.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0037 0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -97.9959 1.000 37.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0043 0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -97.8959 1.000 41.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0048 0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -97.7959 1.000 42.000 1973.000 0.960 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0053 0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 36724
+# Center of Mass = -98.670432+/-0.728162
+# Full Width Half-Maximum = 0.501503+/-0.338626
+# 1:43:23 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0089.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0089.dat
new file mode 100644
index 0000000..56d50e0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0089.dat
@@ -0,0 +1,55 @@
+# scan = 89
+# date = 6/25/2012
+# time = 1:46:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_14145PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -64.4565 1.000 15.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0055 0.9752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -64.3565 1.000 15.000 2007.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0050 0.9777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -64.2565 1.000 32.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0044 0.9802 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -64.1565 1.000 94.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0039 0.9827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -64.0565 1.000 199.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0033 0.9852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -63.9565 1.000 386.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0028 0.9876 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -63.8565 1.000 795.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0022 0.9901 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -63.7565 1.000 1390.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0017 0.9926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -63.6565 1.000 1555.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0011 0.9951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -63.5565 1.000 1823.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0006 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -63.4565 1.000 3583.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -63.3565 1.000 5340.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9994 1.0025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -63.2565 1.000 4400.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9989 1.0049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -63.1565 1.000 3393.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9983 1.0074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -63.0565 1.000 2525.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9977 1.0098 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -62.9565 1.000 1328.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9971 1.0123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -62.8565 1.000 282.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9966 1.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -62.7565 1.000 40.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9960 1.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -62.6565 1.000 27.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9954 1.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -62.5565 1.000 15.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9948 1.0221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -62.4565 1.000 15.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9942 1.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 27252
+# Center of Mass = -63.357696+/-0.542771
+# Full Width Half-Maximum = 0.508960+/-0.250695
+# 1:46:45 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0090.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0090.dat
new file mode 100644
index 0000000..146452e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0090.dat
@@ -0,0 +1,55 @@
+# scan = 90
+# date = 6/25/2012
+# time = 2:01:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_14145PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 10.7998 1.000 41.000 2251.000 1.095 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 10.8998 1.000 25.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0200 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 10.9998 1.000 41.000 2189.000 1.065 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0178 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 11.0998 1.000 56.000 2223.000 1.081 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 11.1998 1.000 241.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 11.2998 1.000 1255.000 2189.000 1.065 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 11.3998 1.000 5833.000 2154.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0089 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 11.4998 1.000 14937.000 2188.000 1.064 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0067 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 11.5998 1.000 19414.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 11.6998 1.000 15145.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 11.7998 1.000 7635.000 2177.000 1.059 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0000 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 11.8998 1.000 4896.000 2182.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0022 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 11.9998 1.000 4384.000 2137.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0044 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 12.0998 1.000 3151.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 12.1998 1.000 3221.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 12.2998 1.000 3530.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0111 1.9945 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 12.3998 1.000 1680.000 2206.000 1.073 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0133 1.9933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 12.4998 1.000 323.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0155 1.9922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 12.5998 1.000 67.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0178 1.9911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 12.6998 1.000 45.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0200 1.9899 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 12.7998 1.000 32.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0222 1.9888 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 85952
+# Center of Mass = 11.725411+/-0.056568
+# Full Width Half-Maximum = 0.529544+/-0.028645
+# 2:01:32 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0091.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0091.dat
new file mode 100644
index 0000000..6b1fb3e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0091.dat
@@ -0,0 +1,55 @@
+# scan = 91
+# date = 6/25/2012
+# time = 2:05:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_14145PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 10.6000 1.000 55.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0266 2.0127 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 10.7000 1.000 39.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0244 2.0116 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 10.8000 1.000 38.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 10.9000 1.000 33.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0200 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 11.0000 1.000 35.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0178 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 11.1000 1.000 56.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 11.2000 1.000 145.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 11.3000 1.000 753.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 11.4000 1.000 3199.000 2198.000 1.069 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0089 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 11.5000 1.000 9834.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0067 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 11.6000 1.000 17928.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 11.7000 1.000 17774.000 2168.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 11.8000 1.000 11388.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0000 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 11.9000 1.000 6921.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0022 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 12.0000 1.000 5157.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0044 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 12.1000 1.000 3561.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 12.2000 1.000 3403.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 12.3000 1.000 3633.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0111 1.9945 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 12.4000 1.000 1598.000 1992.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0133 1.9933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 12.5000 1.000 292.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0155 1.9922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 12.6000 1.000 75.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0178 1.9911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 85917
+# Center of Mass = 11.763833+/-0.056764
+# Full Width Half-Maximum = 0.504913+/-0.028341
+# 2:05:38 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0092.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0092.dat
new file mode 100644
index 0000000..74e78c4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0092.dat
@@ -0,0 +1,55 @@
+# scan = 92
+# date = 6/25/2012
+# time = 2:07:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -99.9356 1.000 20.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9944 -0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -99.8356 1.000 11.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9950 -0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -99.7356 1.000 7.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9955 -0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -99.6356 1.000 13.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9961 -0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -99.5356 1.000 32.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9967 -0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -99.4356 1.000 137.000 2010.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9972 -0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -99.3356 1.000 389.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9978 -0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -99.2356 1.000 1202.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9983 -0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -99.1356 1.000 3302.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9989 -0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -99.0356 1.000 4817.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9995 -0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -98.9356 1.000 5178.000 2163.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -98.8356 1.000 5102.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0005 0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -98.7356 1.000 4582.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0011 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -98.6356 1.000 4029.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0016 0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -98.5356 1.000 3010.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0022 0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -98.4356 1.000 2501.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0027 0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -98.3356 1.000 2132.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0032 0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -98.2356 1.000 1054.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0037 0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -98.1356 1.000 149.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0043 0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -98.0356 1.000 34.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0048 0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -97.9356 1.000 17.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0053 0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 37718
+# Center of Mass = -98.790232+/-0.719375
+# Full Width Half-Maximum = 0.541681+/-0.366596
+# 2:07:50 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0093.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0093.dat
new file mode 100644
index 0000000..508f4bd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0093.dat
@@ -0,0 +1,55 @@
+# scan = 93
+# date = 6/25/2012
+# time = 2:08:43 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -64.5964 1.000 15.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0055 0.9752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -64.4964 1.000 15.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0050 0.9777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -64.3964 1.000 8.000 2205.000 1.073 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0044 0.9802 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -64.2964 1.000 16.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0039 0.9827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -64.1964 1.000 53.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0033 0.9852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -64.0964 1.000 157.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0028 0.9876 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -63.9964 1.000 324.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0022 0.9901 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -63.8964 1.000 650.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0017 0.9926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -63.7964 1.000 1624.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0011 0.9951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -63.6964 1.000 2699.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0006 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -63.5964 1.000 3027.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -63.4964 1.000 3128.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9994 1.0025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -63.3964 1.000 3569.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9989 1.0049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -63.2964 1.000 3710.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9983 1.0074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -63.1964 1.000 3020.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9977 1.0098 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -63.0964 1.000 2435.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9971 1.0123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -62.9964 1.000 1730.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9966 1.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -62.8964 1.000 561.000 1955.000 0.951 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9960 1.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -62.7964 1.000 67.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9954 1.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -62.6964 1.000 19.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9948 1.0221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -62.5964 1.000 34.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9942 1.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 26861
+# Center of Mass = -63.409333+/-0.547153
+# Full Width Half-Maximum = 0.538957+/-0.275003
+# 2:09:13 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0094.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0094.dat
new file mode 100644
index 0000000..d557eab
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0094.dat
@@ -0,0 +1,35 @@
+# scan = 94
+# date = 6/25/2012
+# time = 2:11:03 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan sgl 10 0 1
+# builtin_command = scan sgl 10 0 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -6.8313 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0451 1.0016 0.0058 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 2:11:11 PM 6/25/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0095.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0095.dat
new file mode 100644
index 0000000..404943d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0095.dat
@@ -0,0 +1,45 @@
+# scan = 95
+# date = 6/25/2012
+# time = 2:11:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan sgl -10 0 1
+# builtin_command = scan sgl -10 0 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -10.0000 1.000 3492.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0659 1.0021 0.0115 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -9.0000 1.000 4461.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0594 1.0019 0.0095 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -8.0000 1.000 5656.000 2177.000 1.059 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0528 1.0018 0.0077 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -7.0000 1.000 6340.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0463 1.0016 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -6.0000 1.000 6964.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0397 1.0014 0.0046 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -5.0000 1.000 6812.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0331 1.0012 0.0033 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -4.0000 1.000 6505.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0265 1.0010 0.0023 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -3.0000 1.000 6430.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0199 1.0008 0.0014 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -2.0000 1.000 5939.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0132 1.0005 0.0008 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -1.0000 1.000 5575.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0066 1.0003 0.0003 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 0.0000 1.000 5119.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 63293
+# Center of Mass = -4.792062+/-0.029342
+# Full Width Half-Maximum = 5.852739+/-0.025991
+# 2:12:15 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0096.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0096.dat
new file mode 100644
index 0000000..a30e7e6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0096.dat
@@ -0,0 +1,55 @@
+# scan = 96
+# date = 6/25/2012
+# time = 2:14:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.6161 1.000 9.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0111 1.0053 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.7161 1.000 8.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0100 1.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.8161 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0089 1.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.9161 1.000 11.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0078 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 2.0161 1.000 12.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0067 1.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 2.1161 1.000 19.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0056 1.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 2.2161 1.000 42.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0044 1.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 2.3161 1.000 297.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0033 1.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 2.4161 1.000 824.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0022 1.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 2.5161 1.000 2387.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0011 1.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 2.6161 1.000 3381.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 2.7161 1.000 2508.000 1997.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0011 0.9995 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 2.8161 1.000 1590.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0022 0.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 2.9161 1.000 1678.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0033 0.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 3.0161 1.000 1132.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0044 0.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 3.1161 1.000 612.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0056 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 3.2161 1.000 853.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0067 0.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 3.3161 1.000 714.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0078 0.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 3.4161 1.000 134.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0089 0.9955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 3.5161 1.000 20.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0100 0.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 3.6161 1.000 20.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0111 0.9944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 16257
+# Center of Mass = 2.765759+/-0.030745
+# Full Width Half-Maximum = 0.523228+/-0.016599
+# 2:14:36 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0097.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0097.dat
new file mode 100644
index 0000000..7af7c6c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0097.dat
@@ -0,0 +1,55 @@
+# scan = 97
+# date = 6/25/2012
+# time = 2:21:34 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 10.6600 1.000 40.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 10.7600 1.000 28.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0200 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 10.8600 1.000 30.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0178 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 10.9600 1.000 37.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 11.0600 1.000 52.000 1966.000 0.956 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 11.1600 1.000 84.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 11.2600 1.000 381.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0089 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 11.3600 1.000 1841.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0067 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 11.4600 1.000 6550.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 11.5600 1.000 15577.000 2153.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 11.6600 1.000 19259.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0000 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 11.7600 1.000 14239.000 1941.000 0.944 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0022 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 11.8600 1.000 8305.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0044 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 11.9600 1.000 5835.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 12.0600 1.000 3985.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 12.1600 1.000 3192.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0111 1.9945 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 12.2600 1.000 3634.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0133 1.9933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 12.3600 1.000 2470.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0155 1.9922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 12.4600 1.000 576.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0178 1.9911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 12.5600 1.000 127.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0200 1.9899 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 12.6600 1.000 53.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0222 1.9888 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 86295
+# Center of Mass = 11.762001+/-0.056631
+# Full Width Half-Maximum = 0.498666+/-0.028366
+# 2:22:05 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0098.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0098.dat
new file mode 100644
index 0000000..0f5c9b5
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0098.dat
@@ -0,0 +1,55 @@
+# scan = 98
+# date = 6/25/2012
+# time = 2:51:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 16.4998 1.000 12.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1074 1.9401 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 16.5998 1.000 11.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1096 1.9387 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 16.6998 1.000 28.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1118 1.9373 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 16.7998 1.000 44.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1140 1.9359 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 16.8998 1.000 99.000 2237.000 1.088 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1162 1.9345 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 16.9998 1.000 378.000 2176.000 1.058 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1184 1.9331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 17.0998 1.000 2070.000 2201.000 1.071 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1206 1.9317 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 17.1998 1.000 5451.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1228 1.9303 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 17.2998 1.000 5242.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1250 1.9289 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 17.3998 1.000 3455.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1273 1.9274 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 17.4998 1.000 3106.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1295 1.9260 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 17.5998 1.000 2278.000 2251.000 1.095 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1317 1.9246 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 17.6998 1.000 559.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1339 1.9231 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 17.7998 1.000 98.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1361 1.9217 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 17.8998 1.000 32.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1383 1.9202 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 17.9998 1.000 17.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1405 1.9187 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 18.0998 1.000 15.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1427 1.9172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 18.1998 1.000 8.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1449 1.9158 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 18.2998 1.000 5.000 2196.000 1.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1471 1.9143 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 18.3998 1.000 7.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1493 1.9128 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 18.4998 1.000 4.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1515 1.9113 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 22919
+# Center of Mass = 17.335679+/-0.161946
+# Full Width Half-Maximum = 0.355647+/-0.099188
+# 2:52:00 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0099.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0099.dat
new file mode 100644
index 0000000..c01908f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0099.dat
@@ -0,0 +1,55 @@
+# scan = 99
+# date = 6/25/2012
+# time = 2:54:10 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 7.2035 1.000 5.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0111 1.0053 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 7.3035 1.000 0.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0100 1.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 7.4035 1.000 2.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0089 1.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 7.5035 1.000 9.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0078 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 7.6035 1.000 5.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0067 1.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 7.7035 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0056 1.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 7.8035 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0044 1.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 7.9035 1.000 21.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0033 1.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 8.0035 1.000 107.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0022 1.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 8.1035 1.000 808.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0011 1.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 8.2035 1.000 1532.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 8.3035 1.000 954.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0011 0.9995 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 8.4035 1.000 445.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0022 0.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 8.5035 1.000 482.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0033 0.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 8.6035 1.000 215.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0044 0.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 8.7035 1.000 19.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0056 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 8.8035 1.000 7.000 1995.000 0.970 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0067 0.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 8.9035 1.000 5.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0078 0.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 9.0035 1.000 7.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0089 0.9955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 9.1035 1.000 4.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0100 0.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 9.2035 1.000 3.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0111 0.9944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 4641
+# Center of Mass = 8.271395+/-0.171725
+# Full Width Half-Maximum = 0.338719+/-0.100227
+# 2:54:41 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0100.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0100.dat
new file mode 100644
index 0000000..af766f1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0100.dat
@@ -0,0 +1,55 @@
+# scan = 100
+# date = 6/25/2012
+# time = 2:56:10 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -94.3482 1.000 5.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9944 -0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -94.2482 1.000 2.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9950 -0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -94.1482 1.000 5.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9955 -0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -94.0482 1.000 3.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9961 -0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -93.9482 1.000 16.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9967 -0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -93.8482 1.000 11.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9972 -0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -93.7482 1.000 23.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9978 -0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -93.6482 1.000 62.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9983 -0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -93.5482 1.000 422.000 1983.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9989 -0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -93.4482 1.000 2014.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9995 -0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -93.3482 1.000 2707.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -93.2482 1.000 2279.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0005 0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -93.1482 1.000 2548.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0011 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -93.0482 1.000 2632.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0016 0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -92.9482 1.000 1202.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0022 0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -92.8482 1.000 177.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0027 0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -92.7482 1.000 35.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0032 0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -92.6482 1.000 14.000 1989.000 0.967 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0037 0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -92.5482 1.000 6.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0043 0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -92.4482 1.000 5.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0048 0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -92.3482 1.000 5.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0053 0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 14173
+# Center of Mass = -93.221205+/-1.107387
+# Full Width Half-Maximum = 0.363436+/-0.722300
+# 2:56:41 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0101.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0101.dat
new file mode 100644
index 0000000..34099f3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0101.dat
@@ -0,0 +1,55 @@
+# scan = 101
+# date = 6/25/2012
+# time = 2:58:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -59.0089 1.000 3.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0055 0.9752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -58.9089 1.000 4.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0050 0.9777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -58.8089 1.000 4.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0044 0.9802 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -58.7089 1.000 7.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0039 0.9827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -58.6089 1.000 6.000 1992.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0033 0.9852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -58.5089 1.000 14.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0028 0.9876 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -58.4089 1.000 23.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0022 0.9901 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -58.3089 1.000 116.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0017 0.9926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -58.2089 1.000 809.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0011 0.9951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -58.1089 1.000 2511.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0006 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -58.0089 1.000 2896.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -57.9089 1.000 2401.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9994 1.0025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -57.8089 1.000 2384.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9989 1.0049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -57.7089 1.000 1895.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9983 1.0074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -57.6089 1.000 604.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9977 1.0098 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -57.5089 1.000 70.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9971 1.0123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -57.4089 1.000 23.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9966 1.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -57.3089 1.000 13.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9960 1.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -57.2089 1.000 3.000 2198.000 1.069 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9954 1.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -57.1089 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9948 1.0221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -57.0089 1.000 3.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9942 1.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 13794
+# Center of Mass = -57.928242+/-0.697527
+# Full Width Half-Maximum = 0.352056+/-0.448112
+# 2:59:05 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0102.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0102.dat
new file mode 100644
index 0000000..4b07977
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0102.dat
@@ -0,0 +1,55 @@
+# scan = 102
+# date = 6/25/2012
+# time = 3:00:38 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 7.2035 1.000 10.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0111 1.0053 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 7.3035 1.000 2.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0100 1.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 7.4035 1.000 3.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0089 1.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 7.5035 1.000 6.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0078 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 7.6035 1.000 3.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0067 1.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 7.7035 1.000 8.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0056 1.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 7.8035 1.000 7.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0044 1.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 7.9035 1.000 22.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0033 1.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 8.0035 1.000 132.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0022 1.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 8.1035 1.000 788.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0011 1.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 8.2035 1.000 1498.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 8.3035 1.000 999.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0011 0.9995 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 8.4035 1.000 435.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0022 0.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 8.5035 1.000 436.000 1979.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0033 0.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 8.6035 1.000 244.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0044 0.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 8.7035 1.000 31.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0056 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 8.8035 1.000 12.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0067 0.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 8.9035 1.000 7.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0078 0.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 9.0035 1.000 6.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0089 0.9955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 9.1035 1.000 2.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0100 0.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 9.2035 1.000 5.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0111 0.9944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 4656
+# Center of Mass = 8.271305+/-0.171448
+# Full Width Half-Maximum = 0.354214+/-0.093988
+# 3:01:09 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0103.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0103.dat
new file mode 100644
index 0000000..0af2ddb
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0103.dat
@@ -0,0 +1,75 @@
+# scan = 103
+# date = 6/25/2012
+# time = 3:06:47 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -2 2 0.1
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 15.3000 1.000 487.000 2153.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 15.4000 1.000 2247.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 15.5000 1.000 7452.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 15.6000 1.000 15800.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 15.7000 1.000 19136.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 15.8000 1.000 13307.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.9000 1.000 8152.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 16.0000 1.000 5725.000 2161.000 1.051 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0131 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 16.1000 1.000 3696.000 2171.000 1.056 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 16.2000 1.000 3203.000 2202.000 1.071 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 16.3000 1.000 3557.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 16.4000 1.000 2063.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 16.5000 1.000 459.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 16.6000 1.000 125.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0069 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 16.7000 1.000 108.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 16.8000 1.000 134.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 16.9000 1.000 422.000 2171.000 1.056 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 17.0000 1.000 1897.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 17.1000 1.000 4705.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 17.2000 1.000 5061.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 17.3000 1.000 2920.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 17.4000 1.000 1489.000 2158.000 1.050 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 17.5000 1.000 602.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 17.6000 1.000 293.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 17.7000 1.000 235.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0101 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 17.8000 1.000 219.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0123 1.9939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 17.9000 1.000 114.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0145 1.9927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 18.0000 1.000 40.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0167 1.9916 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 18.1000 1.000 24.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0189 1.9905 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 18.2000 1.000 11.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0212 1.9893 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 18.3000 1.000 6.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0234 1.9882 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 18.4000 1.000 4.000 2012.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0256 1.9870 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 18.5000 1.000 12.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0278 1.9859 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 18.6000 1.000 14.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0300 1.9847 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 18.7000 1.000 7.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0323 1.9835 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 18.8000 1.000 12.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0345 1.9823 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 18.9000 1.000 7.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0367 1.9811 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 19.0000 1.000 7.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0389 1.9799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 19.1000 1.000 9.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0411 1.9787 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 19.2000 1.000 6.000 2155.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0434 1.9775 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 19.3000 1.000 9.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0456 1.9763 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 103776
+# Center of Mass = 16.044717+/-0.070461
+# Full Width Half-Maximum = 1.189606+/-0.033047
+# 3:07:47 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0104.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0104.dat
new file mode 100644
index 0000000..1304d6b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0104.dat
@@ -0,0 +1,55 @@
+# scan = 104
+# date = 6/25/2012
+# time = 3:13:38 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -2 2 0.2
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 13.7000 1.000 323.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0787 2.0349 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 13.9000 1.000 100.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0743 2.0331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.1000 1.000 124.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0699 2.0313 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 14.3000 1.000 230.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0654 2.0295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 14.5000 1.000 118.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0610 2.0277 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 14.7000 1.000 39.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 14.9000 1.000 45.000 1999.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0239 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.1000 1.000 50.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.3000 1.000 234.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.5000 1.000 4468.000 2021.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.7000 1.000 18818.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.9000 1.000 9880.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 16.1000 1.000 4544.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 16.3000 1.000 3458.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 16.5000 1.000 1050.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 16.7000 1.000 78.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 16.9000 1.000 85.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 17.1000 1.000 293.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 17.3000 1.000 4204.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 17.5000 1.000 3285.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 17.7000 1.000 847.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0101 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 52273
+# Center of Mass = 16.064467+/-0.099412
+# Full Width Half-Maximum = 1.369777+/-0.058410
+# 3:14:11 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0105.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0105.dat
new file mode 100644
index 0000000..0bcd7cd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0105.dat
@@ -0,0 +1,55 @@
+# scan = 105
+# date = 6/25/2012
+# time = 3:17:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 15.1000 1.000 46.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 15.2000 1.000 63.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 15.3000 1.000 217.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 15.4000 1.000 1241.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 15.5000 1.000 4509.000 2167.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 15.6000 1.000 12084.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.7000 1.000 18721.000 1998.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.8000 1.000 16206.000 2186.000 1.063 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.9000 1.000 9980.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 16.0000 1.000 6620.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0131 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 16.1000 1.000 4615.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 16.2000 1.000 3319.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 16.3000 1.000 3568.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 16.4000 1.000 2955.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 16.5000 1.000 879.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 16.6000 1.000 205.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0069 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 16.7000 1.000 63.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 16.8000 1.000 40.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 16.9000 1.000 29.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 17.0000 1.000 22.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 17.1000 1.000 41.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 85423
+# Center of Mass = 15.838189+/-0.076641
+# Full Width Half-Maximum = 0.498437+/-0.038327
+# 3:17:46 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0106.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0106.dat
new file mode 100644
index 0000000..097a157
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0106.dat
@@ -0,0 +1,65 @@
+# scan = 106
+# date = 6/25/2012
+# time = 3:26:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 2 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 14.7000 1.000 73.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 14.8000 1.000 40.000 2187.000 1.064 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0543 2.0249 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.9000 1.000 59.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0239 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 15.0000 1.000 55.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0499 2.0230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 15.1000 1.000 52.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 15.2000 1.000 82.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.3000 1.000 257.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.4000 1.000 1325.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.5000 1.000 4467.000 2010.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.6000 1.000 12234.000 2166.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.7000 1.000 18914.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.8000 1.000 16202.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 15.9000 1.000 9985.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 16.0000 1.000 6754.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0131 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 16.1000 1.000 5269.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 16.2000 1.000 5962.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 16.3000 1.000 8387.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 16.4000 1.000 6987.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 16.5000 1.000 3119.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 16.6000 1.000 1178.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0069 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 16.7000 1.000 396.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 16.8000 1.000 138.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 16.9000 1.000 68.000 2182.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 17.0000 1.000 51.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 17.1000 1.000 45.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 17.2000 1.000 64.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 17.3000 1.000 64.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 17.4000 1.000 37.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 17.5000 1.000 50.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 17.6000 1.000 99.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 17.7000 1.000 160.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0101 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 102573
+# Center of Mass = 15.923690+/-0.070321
+# Full Width Half-Maximum = 0.650285+/-0.035560
+# 3:26:49 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0107.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0107.dat
new file mode 100644
index 0000000..4d4c1df
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0107.dat
@@ -0,0 +1,95 @@
+# scan = 107
+# date = 6/25/2012
+# time = 3:35:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 14.7000 1.000 36.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 14.7500 1.000 44.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0555 2.0254 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.8000 1.000 44.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0543 2.0249 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 14.8500 1.000 47.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0532 2.0244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 14.9000 1.000 33.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0240 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 14.9500 1.000 34.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0510 2.0235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.0000 1.000 32.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0499 2.0230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.0500 1.000 31.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0488 2.0225 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.1000 1.000 24.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.1500 1.000 28.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0466 2.0216 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.2000 1.000 55.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.2500 1.000 80.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0444 2.0206 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 15.3000 1.000 192.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 15.3500 1.000 364.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0421 2.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 15.4000 1.000 769.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 15.4500 1.000 1570.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0399 2.0186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 15.5000 1.000 2997.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0182 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 15.5500 1.000 5303.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0377 2.0177 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 15.6000 1.000 8529.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 15.6500 1.000 11727.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0355 2.0167 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 15.7000 1.000 13814.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 15.7500 1.000 14014.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0333 2.0157 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 15.8000 1.000 12246.000 1995.000 0.970 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 15.8500 1.000 9898.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0310 2.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 15.9000 1.000 7871.000 2012.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 15.9500 1.000 6420.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0288 2.0137 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 16.0000 1.000 5249.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 16.0500 1.000 4599.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0266 2.0127 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 16.1000 1.000 3913.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 16.1500 1.000 3516.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0244 2.0116 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 16.2000 1.000 3836.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 16.2500 1.000 4524.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 16.3000 1.000 5066.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 16.3500 1.000 5023.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0199 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 16.4000 1.000 4355.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0091 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 16.4500 1.000 3215.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0177 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 16.5000 1.000 2101.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 16.5500 1.000 1291.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 16.6000 1.000 838.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0070 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 16.6500 1.000 635.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 16.7000 1.000 461.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 16.7500 1.000 235.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 16.8000 1.000 177.000 2002.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 16.8500 1.000 101.000 2194.000 1.067 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0088 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 16.9000 1.000 71.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 16.9500 1.000 30.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0066 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 17.0000 1.000 32.000 2195.000 1.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 17.0500 1.000 22.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 17.1000 1.000 35.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 17.1500 1.000 41.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 17.2000 1.000 50.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 17.2500 1.000 54.000 1957.000 0.952 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0001 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 17.3000 1.000 43.000 2200.000 1.070 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 17.3500 1.000 44.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0023 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 17.4000 1.000 43.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 17.4500 1.000 31.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0045 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 17.5000 1.000 50.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 17.5500 1.000 43.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 17.6000 1.000 65.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 17.6500 1.000 99.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 17.7000 1.000 113.000 2154.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0100 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 146203
+# Center of Mass = 15.916692+/-0.058875
+# Full Width Half-Maximum = 0.634987+/-0.020443
+# 3:36:47 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0108.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0108.dat
new file mode 100644
index 0000000..640f63d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0108.dat
@@ -0,0 +1,95 @@
+# scan = 108
+# date = 6/25/2012
+# time = 3:37:25 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 14.7000 1.000 35.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 14.7500 1.000 43.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0555 2.0254 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.8000 1.000 45.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0543 2.0249 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 14.8500 1.000 32.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0532 2.0244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 14.9000 1.000 52.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0240 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 14.9500 1.000 32.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0510 2.0235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.0000 1.000 37.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0499 2.0230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.0500 1.000 31.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0488 2.0225 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.1000 1.000 37.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.1500 1.000 55.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0466 2.0216 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.2000 1.000 46.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.2500 1.000 81.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0444 2.0206 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 15.3000 1.000 168.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 15.3500 1.000 365.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0421 2.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 15.4000 1.000 757.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 15.4500 1.000 1578.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0399 2.0186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 15.5000 1.000 3029.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0182 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 15.5500 1.000 5283.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0377 2.0177 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 15.6000 1.000 8375.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 15.6500 1.000 11818.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0355 2.0167 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 15.7000 1.000 13649.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 15.7500 1.000 13941.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0333 2.0157 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 15.8000 1.000 12267.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 15.8500 1.000 9972.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0310 2.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 15.9000 1.000 7906.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 15.9500 1.000 6296.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0288 2.0137 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 16.0000 1.000 5280.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 16.0500 1.000 4720.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0266 2.0127 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 16.1000 1.000 3852.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 16.1500 1.000 3565.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0244 2.0116 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 16.2000 1.000 3845.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 16.2500 1.000 4350.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 16.3000 1.000 5101.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 16.3500 1.000 5057.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0199 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 16.4000 1.000 4490.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0091 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 16.4500 1.000 3252.000 2157.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0177 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 16.5000 1.000 2059.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 16.5500 1.000 1312.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 16.6000 1.000 891.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0070 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 16.6500 1.000 630.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 16.7000 1.000 413.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 16.7500 1.000 266.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 16.8000 1.000 175.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 16.8500 1.000 98.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0088 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 16.9000 1.000 67.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 16.9500 1.000 41.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0066 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 17.0000 1.000 39.000 2127.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 17.0500 1.000 32.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 17.1000 1.000 45.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 17.1500 1.000 42.000 2196.000 1.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 17.2000 1.000 46.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 17.2500 1.000 51.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0001 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 17.3000 1.000 54.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 17.3500 1.000 42.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0023 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 17.4000 1.000 38.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 17.4500 1.000 44.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0045 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 17.5000 1.000 39.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 17.5500 1.000 46.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 17.6000 1.000 73.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 17.6500 1.000 96.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 17.7000 1.000 159.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0100 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 146240
+# Center of Mass = 15.918439+/-0.058874
+# Full Width Half-Maximum = 0.640249+/-0.020335
+# 3:38:48 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0109.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0109.dat
new file mode 100644
index 0000000..9a3f4c3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0109.dat
@@ -0,0 +1,95 @@
+# scan = 109
+# date = 6/25/2012
+# time = 3:39:00 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (002)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 14.7000 1.000 47.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 14.7500 1.000 51.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0555 2.0254 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.8000 1.000 36.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0543 2.0249 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 14.8500 1.000 50.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0532 2.0244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 14.9000 1.000 47.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0240 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 14.9500 1.000 43.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0510 2.0235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.0000 1.000 30.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0499 2.0230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.0500 1.000 40.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0488 2.0225 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.1000 1.000 34.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.1500 1.000 44.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0466 2.0216 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.2000 1.000 38.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.2500 1.000 92.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0444 2.0206 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 15.3000 1.000 158.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 15.3500 1.000 358.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0421 2.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 15.4000 1.000 730.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 15.4500 1.000 1609.000 1992.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0399 2.0186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 15.5000 1.000 2921.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0182 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 15.5500 1.000 5357.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0377 2.0177 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 15.6000 1.000 8530.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 15.6500 1.000 12019.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0355 2.0167 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 15.7000 1.000 13822.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 15.7500 1.000 13720.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0333 2.0157 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 15.8000 1.000 12274.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 15.8500 1.000 9917.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0310 2.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 15.9000 1.000 7935.000 2006.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 15.9500 1.000 6323.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0288 2.0137 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 16.0000 1.000 5221.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 16.0500 1.000 4510.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0266 2.0127 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 16.1000 1.000 3843.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 16.1500 1.000 3649.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0244 2.0116 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 16.2000 1.000 3866.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 16.2500 1.000 4450.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 16.3000 1.000 5085.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 16.3500 1.000 5147.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0199 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 16.4000 1.000 4521.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 16.4500 1.000 3268.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0177 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 16.5000 1.000 2142.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 16.5500 1.000 1298.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 16.6000 1.000 905.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0070 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 16.6500 1.000 616.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 16.7000 1.000 458.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 16.7500 1.000 271.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 16.8000 1.000 164.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 16.8500 1.000 99.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0088 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 16.9000 1.000 58.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 16.9500 1.000 45.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0066 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 17.0000 1.000 39.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 17.0500 1.000 34.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 17.1000 1.000 39.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 17.1500 1.000 39.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 17.2000 1.000 58.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 17.2500 1.000 59.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0001 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 17.3000 1.000 59.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 17.3500 1.000 41.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0023 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 17.4000 1.000 32.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 17.4500 1.000 29.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0045 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 17.5000 1.000 31.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 17.5500 1.000 42.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 17.6000 1.000 72.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 17.6500 1.000 110.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 17.7000 1.000 123.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0100 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 146648
+# Center of Mass = 15.918246+/-0.058792
+# Full Width Half-Maximum = 0.639553+/-0.020434
+# 3:40:23 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0110.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0110.dat
new file mode 100644
index 0000000..7623e75
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0110.dat
@@ -0,0 +1,55 @@
+# scan = 110
+# date = 6/25/2012
+# time = 3:41:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (002)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 33.7390 14.7457 1.000 3.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9016 0.0000 0.0000 1.8915 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 33.9390 14.8459 1.000 6.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9067 0.0000 0.0000 1.9023 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 34.1390 14.9459 1.000 3.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9119 0.0000 0.0000 1.9132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 34.3390 15.0459 1.000 2.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9171 0.0000 0.0000 1.9241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 34.5390 15.1459 1.000 7.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9223 0.0000 0.0000 1.9349 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 34.7390 15.2459 1.000 68.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9275 0.0000 0.0000 1.9458 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 34.9390 15.3459 1.000 498.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9326 0.0000 0.0000 1.9567 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 35.1390 15.4459 1.000 1133.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9378 0.0000 0.0000 1.9675 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 35.3390 15.5459 1.000 3195.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9430 0.0000 0.0000 1.9784 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 35.5390 15.6459 1.000 8805.000 1918.000 0.933 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9481 0.0000 0.0000 1.9892 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 35.7390 15.7459 1.000 13883.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0000 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 35.9390 15.8459 1.000 11986.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9585 0.0000 0.0000 2.0108 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 36.1390 15.9459 1.000 6299.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9636 0.0000 0.0000 2.0217 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 36.3390 16.0459 1.000 1502.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9688 0.0000 0.0000 2.0325 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 36.5390 16.1459 1.000 139.000 1954.000 0.950 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9739 0.0000 0.0000 2.0433 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 36.7390 16.2459 1.000 24.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9791 0.0000 0.0000 2.0541 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 36.9390 16.3459 1.000 4.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9842 0.0000 0.0000 2.0649 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 37.1390 16.4459 1.000 7.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9894 0.0000 0.0000 2.0757 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 37.3390 16.5459 1.000 10.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9945 0.0000 0.0000 2.0864 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 37.5390 16.6459 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9996 0.0000 0.0000 2.0972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 37.7390 16.7459 1.000 6.000 1976.000 0.961 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.0048 0.0000 0.0000 2.1080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 47586
+# Center of Mass = 35.776587+/-0.231943
+# Full Width Half-Maximum = 0.570604+/-0.141043
+# 3:41:51 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0111.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0111.dat
new file mode 100644
index 0000000..7cb55a3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0111.dat
@@ -0,0 +1,95 @@
+# scan = 111
+# date = 6/25/2012
+# time = 3:43:21 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (002)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 5.7017 1.000 9.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0111 1.0053 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 5.7517 1.000 11.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0105 1.0050 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 5.8017 1.000 5.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0100 1.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 5.8517 1.000 6.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0094 1.0045 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 5.9017 1.000 3.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0089 1.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 5.9517 1.000 5.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0083 1.0040 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 6.0017 1.000 6.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0078 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 6.0517 1.000 4.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0072 1.0035 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 6.1017 1.000 7.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0067 1.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 6.1517 1.000 18.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0061 1.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 6.2017 1.000 10.000 1993.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0056 1.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 6.2517 1.000 25.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0050 1.0024 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 6.3017 1.000 66.000 2179.000 1.060 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0044 1.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 6.3517 1.000 109.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0039 1.0019 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 6.4017 1.000 220.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0033 1.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 6.4517 1.000 328.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0028 1.0014 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 6.5017 1.000 507.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0022 1.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 6.5517 1.000 854.000 1990.000 0.968 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0017 1.0008 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 6.6017 1.000 1258.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0011 1.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 6.6517 1.000 1735.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0006 1.0003 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 6.7017 1.000 1877.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 6.7517 1.000 1820.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0006 0.9997 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 6.8017 1.000 1360.000 2021.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0011 0.9995 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 6.8517 1.000 1166.000 2137.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0017 0.9992 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 6.9017 1.000 1159.000 1941.000 0.944 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0022 0.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 6.9517 1.000 1168.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0028 0.9986 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 7.0017 1.000 1124.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0033 0.9984 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 7.0517 1.000 1048.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0039 0.9981 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 7.1017 1.000 802.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0044 0.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 7.1517 1.000 610.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0050 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 7.2017 1.000 576.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0056 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 7.2517 1.000 700.000 2168.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0061 0.9970 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 7.3017 1.000 827.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0067 0.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 7.3517 1.000 841.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0072 0.9964 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 7.4017 1.000 726.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0078 0.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 7.4517 1.000 476.000 2179.000 1.060 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0083 0.9958 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 7.5017 1.000 322.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0089 0.9955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 7.5517 1.000 198.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0094 0.9953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 7.6017 1.000 149.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0100 0.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 7.6517 1.000 75.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0105 0.9947 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 7.7017 1.000 46.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0111 0.9944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 7.7517 1.000 25.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0117 0.9941 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 7.8017 1.000 9.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0122 0.9938 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 7.8517 1.000 10.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0128 0.9935 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 7.9017 1.000 10.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0133 0.9932 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 7.9517 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0139 0.9929 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 8.0017 1.000 11.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0144 0.9927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 8.0517 1.000 12.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0150 0.9924 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 8.1017 1.000 8.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0155 0.9921 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 8.1517 1.000 4.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0161 0.9918 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 8.2017 1.000 10.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0167 0.9915 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 8.2517 1.000 10.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0172 0.9912 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 8.3017 1.000 3.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0178 0.9909 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 8.3517 1.000 10.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0183 0.9906 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 8.4017 1.000 7.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0189 0.9903 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 8.4517 1.000 4.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0194 0.9900 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 8.5017 1.000 5.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0200 0.9897 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 8.5517 1.000 11.000 1999.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0205 0.9894 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 8.6017 1.000 15.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0211 0.9891 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 8.6517 1.000 18.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0216 0.9888 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 8.7017 1.000 19.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0222 0.9885 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 22462
+# Center of Mass = 6.927477+/-0.065404
+# Full Width Half-Maximum = 0.652869+/-0.022664
+# 3:44:45 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0112.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0112.dat
new file mode 100644
index 0000000..360d496
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0112.dat
@@ -0,0 +1,95 @@
+# scan = 112
+# date = 6/25/2012
+# time = 3:49:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (010)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -95.8499 1.000 12.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9944 -0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -95.7999 1.000 9.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9947 -0.0286 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -95.7499 1.000 13.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9950 -0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -95.6999 1.000 11.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9953 -0.0256 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -95.6499 1.000 8.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9955 -0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -95.5999 1.000 7.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9958 -0.0226 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -95.5499 1.000 11.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9961 -0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -95.4999 1.000 11.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9964 -0.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -95.4499 1.000 36.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9967 -0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -95.3999 1.000 63.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9970 -0.0166 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -95.3499 1.000 113.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9972 -0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -95.2999 1.000 180.000 1979.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9975 -0.0136 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -95.2499 1.000 258.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9978 -0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -95.1999 1.000 466.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9981 -0.0105 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -95.1499 1.000 919.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9983 -0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -95.0999 1.000 1552.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9986 -0.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -95.0499 1.000 2134.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9989 -0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -94.9999 1.000 2784.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9992 -0.0045 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -94.9499 1.000 3199.000 2159.000 1.050 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9995 -0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -94.8999 1.000 3554.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9997 -0.0015 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -94.8499 1.000 3644.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 -94.7999 1.000 3671.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0003 0.0015 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 -94.7499 1.000 3748.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0005 0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 -94.6999 1.000 3882.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0008 0.0045 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 -94.6499 1.000 3758.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0011 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 -94.5999 1.000 3852.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0014 0.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 -94.5499 1.000 3834.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0016 0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 -94.4999 1.000 3563.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0019 0.0105 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 -94.4499 1.000 3645.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0022 0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 -94.3999 1.000 3630.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0024 0.0136 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 -94.3499 1.000 3499.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0027 0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 -94.2999 1.000 2809.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0030 0.0166 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 -94.2499 1.000 2121.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0032 0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 -94.1999 1.000 1380.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0035 0.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 -94.1499 1.000 724.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0037 0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 -94.0999 1.000 306.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0040 0.0226 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 -94.0499 1.000 104.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0043 0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 -93.9999 1.000 48.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0045 0.0256 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 -93.9499 1.000 31.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0048 0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 -93.8999 1.000 27.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0050 0.0286 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 -93.8499 1.000 27.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0053 0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 -93.7999 1.000 33.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0056 0.0316 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 -93.7499 1.000 39.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0058 0.0331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 -93.6999 1.000 39.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0061 0.0346 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 -93.6499 1.000 66.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0063 0.0361 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 -93.5999 1.000 53.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0066 0.0376 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 -93.5499 1.000 72.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0068 0.0391 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 -93.4999 1.000 77.000 1999.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0071 0.0407 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 -93.4499 1.000 60.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0073 0.0422 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 -93.3999 1.000 60.000 2161.000 1.051 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0076 0.0437 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 -93.3499 1.000 48.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0078 0.0452 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 -93.2999 1.000 22.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0081 0.0467 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 -93.2499 1.000 17.000 2021.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0083 0.0482 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 -93.1999 1.000 13.000 2200.000 1.070 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0086 0.0497 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 -93.1499 1.000 10.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0088 0.0512 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 -93.0999 1.000 12.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0091 0.0527 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 -93.0499 1.000 13.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0093 0.0542 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 -92.9999 1.000 19.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0096 0.0557 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 -92.9499 1.000 28.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0098 0.0572 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 -92.8999 1.000 25.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0101 0.0587 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 -92.8499 1.000 29.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0103 0.0602 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 64378
+# Center of Mass = -94.643887+/-0.527521
+# Full Width Half-Maximum = 0.602020+/-0.175880
+# 3:50:42 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0113.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0113.dat
new file mode 100644
index 0000000..2a10931
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0113.dat
@@ -0,0 +1,95 @@
+# scan = 113
+# date = 6/25/2012
+# time = 3:51:54 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (011)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -60.5107 1.000 25.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0055 0.9752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -60.4607 1.000 15.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0052 0.9764 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -60.4107 1.000 15.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0050 0.9777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -60.3607 1.000 6.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0047 0.9789 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -60.3107 1.000 10.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0044 0.9802 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -60.2607 1.000 8.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0041 0.9814 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -60.2107 1.000 19.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0039 0.9827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -60.1607 1.000 38.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0036 0.9839 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -60.1107 1.000 58.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0033 0.9852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -60.0607 1.000 86.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0031 0.9864 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -60.0107 1.000 160.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0028 0.9876 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -59.9607 1.000 197.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0025 0.9889 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -59.9107 1.000 242.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0022 0.9901 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -59.8607 1.000 315.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0020 0.9914 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -59.8107 1.000 467.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0017 0.9926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -59.7607 1.000 692.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0014 0.9938 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -59.7107 1.000 1019.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0011 0.9951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -59.6607 1.000 1085.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0008 0.9963 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -59.6107 1.000 1348.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0006 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -59.5607 1.000 1362.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0003 0.9988 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -59.5107 1.000 1546.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 -59.4607 1.000 1920.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9997 1.0012 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 -59.4107 1.000 2283.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9994 1.0025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 -59.3607 1.000 2841.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9991 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 -59.3107 1.000 3479.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9989 1.0049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 -59.2607 1.000 4053.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9986 1.0062 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 -59.2107 1.000 4187.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9983 1.0074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 -59.1607 1.000 4189.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9980 1.0086 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 -59.1107 1.000 4283.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9977 1.0098 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 -59.0607 1.000 4138.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9974 1.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 -59.0107 1.000 4100.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9971 1.0123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 -58.9607 1.000 3599.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9968 1.0135 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 -58.9107 1.000 2527.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9966 1.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 -58.8607 1.000 1405.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9963 1.0160 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 -58.8107 1.000 617.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9960 1.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 -58.7607 1.000 200.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9957 1.0184 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 -58.7107 1.000 98.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9954 1.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 -58.6607 1.000 44.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9951 1.0208 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 -58.6107 1.000 31.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9948 1.0221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 -58.5607 1.000 18.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9945 1.0233 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 -58.5107 1.000 26.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9942 1.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 -58.4607 1.000 13.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9939 1.0257 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 -58.4107 1.000 17.000 1997.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9936 1.0269 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 -58.3607 1.000 17.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9933 1.0282 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 -58.3107 1.000 16.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9930 1.0294 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 -58.2607 1.000 12.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9927 1.0306 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 -58.2107 1.000 11.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9924 1.0318 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 -58.1607 1.000 15.000 2002.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9921 1.0330 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 -58.1107 1.000 6.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9918 1.0342 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 -58.0607 1.000 13.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9915 1.0354 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 -58.0107 1.000 5.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9912 1.0366 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 -57.9607 1.000 7.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9909 1.0378 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 -57.9107 1.000 4.000 2160.000 1.051 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9906 1.0391 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 -57.8607 1.000 7.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9903 1.0403 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 -57.8107 1.000 2.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9900 1.0415 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 -57.7607 1.000 2.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9897 1.0427 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 -57.7107 1.000 3.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9893 1.0439 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 -57.6607 1.000 4.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9890 1.0451 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 -57.6107 1.000 5.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9887 1.0463 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 -57.5607 1.000 3.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9884 1.0475 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 -57.5107 1.000 12.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9881 1.0487 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 52925
+# Center of Mass = -59.231480+/-0.364116
+# Full Width Half-Maximum = 0.534623+/-0.122425
+# 3:53:16 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0114.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0114.dat
new file mode 100644
index 0000000..6680a3a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0114.dat
@@ -0,0 +1,935 @@
+# scan = 114
+# date = 6/25/2012
+# time = 3:58:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan s1 90 -90 0.2
+# builtin_command = scan s1 90 -90 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = long scan of (002) 4-crystal
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 90.0000 1.000 2.000 2181.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2247 -0.0591 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 89.8000 1.000 3.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2235 -0.0518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 89.6000 1.000 4.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2223 -0.0445 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 89.3998 1.000 2.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2210 -0.0371 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 89.2000 1.000 5.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2198 -0.0298 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 89.0000 1.000 4.000 1952.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2185 -0.0225 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 88.8000 1.000 1.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2172 -0.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 88.6000 1.000 3.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2159 -0.0079 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 88.4000 1.000 1.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2146 -0.0006 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 88.1998 1.000 4.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2132 0.0068 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 88.0000 1.000 1.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2119 0.0141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 87.7999 1.000 0.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2105 0.0214 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 87.6000 1.000 3.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2092 0.0287 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 87.3998 1.000 0.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2078 0.0360 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 87.2000 1.000 3.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2064 0.0433 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 87.0000 1.000 3.000 2007.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2049 0.0506 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 86.8000 1.000 1.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2035 0.0579 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 86.6000 1.000 2.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2021 0.0653 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 86.4000 1.000 3.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2006 0.0726 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 86.2000 1.000 3.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1991 0.0799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 86.0000 1.000 1.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1976 0.0872 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 85.8000 1.000 2.000 1966.000 0.956 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1961 0.0945 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 85.6000 1.000 1.000 1984.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1946 0.1018 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 85.4000 1.000 8.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1931 0.1091 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 85.2000 1.000 5.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1915 0.1164 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 85.0000 1.000 4.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1899 0.1237 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 84.8000 1.000 3.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1884 0.1310 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 84.6000 1.000 4.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1868 0.1383 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 84.4000 1.000 1.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1852 0.1456 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 84.2000 1.000 2.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1835 0.1529 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 83.9998 1.000 5.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1819 0.1602 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 83.8000 1.000 5.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1802 0.1675 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 83.6000 1.000 2.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1786 0.1748 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 83.3998 1.000 2.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1769 0.1821 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 83.2000 1.000 3.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1752 0.1894 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 83.0000 1.000 3.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1735 0.1966 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 82.7999 1.000 1.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1718 0.2039 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 82.5998 1.000 1.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1700 0.2112 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 82.4000 1.000 3.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1683 0.2185 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 82.2000 1.000 2.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1665 0.2257 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 82.0000 1.000 5.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1647 0.2330 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 81.8000 1.000 4.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1629 0.2403 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 81.5998 1.000 1.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1611 0.2476 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 81.4000 1.000 3.000 2157.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1593 0.2548 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 81.1999 1.000 4.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1574 0.2621 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 81.0000 1.000 3.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1556 0.2693 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 80.8000 1.000 2.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1537 0.2766 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 80.6000 1.000 4.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1519 0.2838 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 80.3998 1.000 3.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1500 0.2911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 80.1998 1.000 1.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1480 0.2983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 80.0000 1.000 1.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1461 0.3055 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 79.8000 1.000 2.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1442 0.3128 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 79.6000 1.000 2.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1422 0.3200 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 79.4000 1.000 2.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1403 0.3272 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 79.1998 1.000 5.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1383 0.3345 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 79.0000 1.000 4.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1363 0.3417 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 78.8000 1.000 3.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1343 0.3489 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 78.6000 1.000 2.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1323 0.3561 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 78.4000 1.000 3.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1302 0.3633 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 78.2000 1.000 6.000 2156.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1282 0.3705 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 78.0000 1.000 5.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1261 0.3777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 62 77.8000 1.000 1.000 1966.000 0.956 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1241 0.3849 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 63 77.6000 1.000 6.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1220 0.3921 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 64 77.4000 1.000 3.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1199 0.3993 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 65 77.2000 1.000 7.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1178 0.4065 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 66 77.0000 1.000 6.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1156 0.4136 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 67 76.8000 1.000 1.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1135 0.4208 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 68 76.6000 1.000 1.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1113 0.4280 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 69 76.4000 1.000 2.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1092 0.4351 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 70 76.1998 1.000 6.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1070 0.4423 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 71 76.0000 1.000 6.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1048 0.4494 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 72 75.8000 1.000 1.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1026 0.4566 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 73 75.6000 1.000 8.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1003 0.4637 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 74 75.3997 1.000 6.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0981 0.4708 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 75 75.2000 1.000 3.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0959 0.4779 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 76 75.0000 1.000 1.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0936 0.4851 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 77 74.8000 1.000 6.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0913 0.4922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 78 74.6000 1.000 3.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0890 0.4993 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 79 74.4000 1.000 6.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0867 0.5064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 80 74.2000 1.000 2.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0844 0.5135 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 81 73.9997 1.000 0.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0821 0.5206 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 82 73.8000 1.000 3.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0797 0.5277 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 83 73.6000 1.000 3.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0774 0.5347 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 84 73.4000 1.000 3.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0750 0.5418 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 85 73.2000 1.000 4.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0726 0.5489 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 86 72.9997 1.000 6.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0702 0.5559 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 87 72.8000 1.000 4.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0678 0.5630 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 88 72.6000 1.000 2.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0654 0.5700 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 89 72.3998 1.000 3.000 2007.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0630 0.5770 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 90 72.2000 1.000 4.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0605 0.5841 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 91 72.0000 1.000 1.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0580 0.5911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 92 71.7997 1.000 4.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0556 0.5981 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 93 71.6000 1.000 4.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0531 0.6051 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 94 71.4000 1.000 0.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0506 0.6121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 95 71.1998 1.000 4.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0481 0.6191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 96 71.0000 1.000 1.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0456 0.6261 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 97 70.8000 1.000 2.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0430 0.6331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 98 70.6000 1.000 0.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0405 0.6400 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 99 70.4000 1.000 3.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0379 0.6470 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 100 70.2000 1.000 2.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0353 0.6539 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 101 69.9997 1.000 4.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0327 0.6609 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 102 69.8000 1.000 5.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0301 0.6678 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 103 69.5998 1.000 4.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0275 0.6748 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 104 69.4000 1.000 3.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0249 0.6817 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 105 69.2000 1.000 2.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0223 0.6886 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 106 69.0000 1.000 2.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0196 0.6955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 107 68.8000 1.000 5.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0169 0.7024 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 108 68.6000 1.000 7.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0143 0.7093 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 109 68.4000 1.000 5.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0116 0.7162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 110 68.1998 1.000 8.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0089 0.7230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 111 68.0000 1.000 2.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0062 0.7299 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 112 67.7998 1.000 2.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0034 0.7367 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 113 67.6000 1.000 4.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0007 0.7436 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 114 67.4000 1.000 3.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9980 0.7504 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 115 67.2000 1.000 3.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9952 0.7572 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 116 66.9998 1.000 5.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9924 0.7641 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 117 66.8000 1.000 5.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9896 0.7709 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 118 66.6000 1.000 2.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9868 0.7777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 119 66.4000 1.000 3.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9840 0.7844 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 120 66.2000 1.000 1.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9812 0.7912 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 121 65.9999 1.000 5.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9784 0.7980 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 122 65.8000 1.000 1.000 1925.000 0.936 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9755 0.8048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 123 65.5998 1.000 4.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9727 0.8115 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 124 65.4000 1.000 1.000 2012.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9698 0.8182 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 125 65.1997 1.000 4.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9669 0.8250 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 126 65.0000 1.000 5.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9640 0.8317 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 127 64.8000 1.000 3.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9611 0.8384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 128 64.6000 1.000 3.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9582 0.8451 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 129 64.4000 1.000 3.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9553 0.8518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 130 64.2000 1.000 2.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9523 0.8585 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 131 64.0000 1.000 7.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9494 0.8651 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 132 63.8000 1.000 8.000 2001.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9464 0.8718 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 133 63.6000 1.000 2.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9434 0.8784 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 134 63.4000 1.000 4.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9405 0.8851 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 135 63.2000 1.000 1.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9375 0.8917 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 136 62.9999 1.000 7.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9344 0.8983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 137 62.8000 1.000 2.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9314 0.9049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 138 62.5997 1.000 5.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9284 0.9115 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 139 62.3999 1.000 3.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9253 0.9181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 140 62.2000 1.000 0.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9223 0.9247 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 141 62.0000 1.000 2.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9192 0.9312 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 142 61.8000 1.000 3.000 2143.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9162 0.9378 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 143 61.5998 1.000 6.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9131 0.9443 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 144 61.3999 1.000 2.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9100 0.9508 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 145 61.2000 1.000 3.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9069 0.9573 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 146 61.0000 1.000 4.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9037 0.9638 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 147 60.8000 1.000 2.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9006 0.9703 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 148 60.5998 1.000 1.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8975 0.9768 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 149 60.4000 1.000 2.000 1976.000 0.961 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8943 0.9833 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 150 60.1998 1.000 4.000 2153.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8911 0.9897 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 151 59.9998 1.000 0.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8880 0.9962 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 152 59.8000 1.000 1.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8848 1.0026 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 153 59.6000 1.000 1.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8816 1.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 154 59.4000 1.000 0.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8784 1.0154 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 155 59.2000 1.000 3.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8752 1.0218 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 156 59.0000 1.000 5.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8719 1.0282 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 157 58.7998 1.000 3.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8687 1.0345 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 158 58.6000 1.000 4.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8654 1.0409 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 159 58.4000 1.000 3.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8622 1.0472 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 160 58.2000 1.000 3.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8589 1.0536 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 161 58.0000 1.000 1.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8556 1.0599 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 162 57.7998 1.000 1.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8523 1.0662 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 163 57.6000 1.000 5.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8490 1.0725 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 164 57.4000 1.000 5.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8457 1.0788 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 165 57.2000 1.000 3.000 2165.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8424 1.0850 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 166 56.9998 1.000 4.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8390 1.0913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 167 56.8000 1.000 3.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8357 1.0975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 168 56.6000 1.000 3.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8323 1.1037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 169 56.4000 1.000 3.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8290 1.1099 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 170 56.2000 1.000 5.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8256 1.1161 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 171 56.0000 1.000 17.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8222 1.1223 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 172 55.8000 1.000 6.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8188 1.1285 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 173 55.6000 1.000 5.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8154 1.1347 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 174 55.4000 1.000 5.000 2149.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8120 1.1408 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 175 55.2000 1.000 0.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8086 1.1469 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 176 55.0000 1.000 4.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8052 1.1530 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 177 54.8000 1.000 2.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8017 1.1591 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 178 54.5998 1.000 1.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7983 1.1652 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 179 54.4000 1.000 1.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7948 1.1713 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 180 54.2000 1.000 1.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7913 1.1774 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 181 53.9999 1.000 1.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7878 1.1834 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 182 53.8000 1.000 1.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7843 1.1894 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 183 53.6000 1.000 1.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7808 1.1954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 184 53.4000 1.000 1.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7773 1.2014 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 185 53.2000 1.000 2.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7738 1.2074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 186 53.0000 1.000 2.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7703 1.2134 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 187 52.8000 1.000 2.000 2218.000 1.079 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7667 1.2194 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 188 52.6000 1.000 3.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7632 1.2253 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 189 52.4000 1.000 4.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7596 1.2312 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 190 52.2000 1.000 7.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7561 1.2371 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 191 52.0000 1.000 6.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7525 1.2430 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 192 51.8000 1.000 4.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7489 1.2489 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 193 51.6000 1.000 2.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7453 1.2548 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 194 51.4000 1.000 6.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7417 1.2606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 195 51.1998 1.000 4.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7381 1.2665 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 196 51.0000 1.000 6.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7345 1.2723 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 197 50.8000 1.000 3.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7308 1.2781 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 198 50.5998 1.000 2.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7272 1.2839 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 199 50.4000 1.000 1.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7235 1.2896 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 200 50.1999 1.000 2.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7199 1.2954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 201 50.0000 1.000 4.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7162 1.3011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 202 49.8000 1.000 5.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7125 1.3069 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 203 49.6000 1.000 6.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7089 1.3126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 204 49.4000 1.000 3.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7052 1.3183 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 205 49.2000 1.000 4.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7015 1.3240 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 206 49.0000 1.000 3.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6977 1.3296 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 207 48.8000 1.000 2.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6940 1.3353 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 208 48.6000 1.000 2.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6903 1.3409 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 209 48.4000 1.000 1.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6866 1.3465 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 210 48.2000 1.000 1.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6828 1.3521 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 211 48.0000 1.000 1.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6791 1.3577 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 212 47.8000 1.000 12.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6753 1.3632 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 213 47.5998 1.000 26.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6715 1.3688 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 214 47.4000 1.000 5.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6678 1.3743 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 215 47.2000 1.000 9.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6640 1.3798 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 216 47.0000 1.000 19.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6602 1.3853 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 217 46.8000 1.000 12.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6564 1.3908 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 218 46.5998 1.000 1.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6526 1.3963 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 219 46.4000 1.000 4.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6488 1.4017 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 220 46.2000 1.000 3.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6449 1.4071 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 221 46.0000 1.000 5.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6411 1.4126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 222 45.8000 1.000 7.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6373 1.4180 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 223 45.6000 1.000 28.000 1980.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6334 1.4233 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 224 45.4000 1.000 65.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6296 1.4287 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 225 45.2000 1.000 17.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6257 1.4340 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 226 45.0000 1.000 4.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6218 1.4394 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 227 44.8000 1.000 13.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6179 1.4447 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 228 44.6000 1.000 2.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6141 1.4500 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 229 44.4000 1.000 3.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6102 1.4552 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 230 44.2000 1.000 2.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6063 1.4605 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 231 43.9999 1.000 0.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6024 1.4657 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 232 43.8000 1.000 6.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5984 1.4709 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 233 43.6000 1.000 4.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5945 1.4761 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 234 43.4000 1.000 6.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5906 1.4813 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 235 43.2000 1.000 2.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5866 1.4865 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 236 43.0000 1.000 7.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5827 1.4916 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 237 42.8000 1.000 23.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5787 1.4968 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 238 42.6000 1.000 18.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5748 1.5019 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 239 42.4000 1.000 12.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5708 1.5070 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 240 42.2000 1.000 18.000 2161.000 1.051 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5669 1.5120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 241 42.0000 1.000 2.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5629 1.5171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 242 41.8000 1.000 3.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5589 1.5221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 243 41.6000 1.000 2.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5549 1.5271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 244 41.4000 1.000 4.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5509 1.5321 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 245 41.1997 1.000 3.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5469 1.5371 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 246 41.0000 1.000 3.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5429 1.5421 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 247 40.8000 1.000 2.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5388 1.5470 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 248 40.5998 1.000 0.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5348 1.5520 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 249 40.4000 1.000 5.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5308 1.5569 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 250 40.2000 1.000 3.000 1982.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5267 1.5617 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 251 40.0000 1.000 2.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5227 1.5666 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 252 39.8000 1.000 3.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5186 1.5715 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 253 39.6000 1.000 2.000 2171.000 1.056 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5146 1.5763 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 254 39.4000 1.000 7.000 1980.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5105 1.5811 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 255 39.2000 1.000 2.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5065 1.5859 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 256 39.0000 1.000 3.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5024 1.5907 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 257 38.8000 1.000 4.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4983 1.5954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 258 38.6000 1.000 1.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4942 1.6001 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 259 38.4000 1.000 4.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4901 1.6049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 260 38.2000 1.000 14.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4860 1.6095 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 261 37.9998 1.000 55.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4819 1.6142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 262 37.8000 1.000 20.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4778 1.6189 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 263 37.6000 1.000 5.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4737 1.6235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 264 37.4000 1.000 1.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4695 1.6281 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 265 37.2000 1.000 1.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4654 1.6327 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 266 37.0000 1.000 2.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4613 1.6373 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 267 36.7999 1.000 1.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4571 1.6418 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 268 36.6000 1.000 9.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4530 1.6464 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 269 36.4000 1.000 38.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4488 1.6509 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 270 36.2000 1.000 21.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4447 1.6554 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 271 36.0000 1.000 2.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4405 1.6599 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 272 35.8000 1.000 1.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4363 1.6643 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 273 35.6000 1.000 13.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4322 1.6688 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 274 35.4000 1.000 35.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4280 1.6732 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 275 35.2000 1.000 85.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4238 1.6776 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 276 35.0000 1.000 18.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4196 1.6819 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 277 34.8000 1.000 1.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4154 1.6863 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 278 34.6000 1.000 4.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4112 1.6906 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 279 34.4000 1.000 4.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4070 1.6949 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 280 34.2000 1.000 7.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4028 1.6992 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 281 34.0000 1.000 4.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3986 1.7035 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 282 33.8000 1.000 1.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3944 1.7077 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 283 33.6000 1.000 4.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3901 1.7120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 284 33.3998 1.000 3.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3859 1.7162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 285 33.2000 1.000 0.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3817 1.7204 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 286 33.0000 1.000 1.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3774 1.7245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 287 32.8000 1.000 2.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3732 1.7287 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 288 32.6000 1.000 1.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3689 1.7328 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 289 32.4000 1.000 2.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3647 1.7369 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 290 32.2000 1.000 3.000 1993.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3604 1.7410 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 291 32.0000 1.000 4.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3562 1.7450 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 292 31.8000 1.000 3.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3519 1.7491 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 293 31.6000 1.000 3.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3476 1.7531 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 294 31.4000 1.000 2.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3433 1.7571 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 295 31.2000 1.000 3.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3391 1.7611 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 296 31.0000 1.000 2.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3348 1.7650 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 297 30.8000 1.000 1.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3305 1.7690 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 298 30.5998 1.000 2.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3262 1.7729 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 299 30.4000 1.000 2.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3219 1.7768 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 300 30.2000 1.000 2.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3176 1.7806 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 301 30.0000 1.000 2.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3133 1.7845 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 302 29.8000 1.000 5.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3090 1.7883 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 303 29.6000 1.000 56.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3047 1.7921 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 304 29.4000 1.000 145.000 2143.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3004 1.7959 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 305 29.2000 1.000 30.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2961 1.7996 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 306 29.0000 1.000 4.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2917 1.8034 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 307 28.8000 1.000 7.000 1999.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2874 1.8071 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 308 28.5998 1.000 2.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2831 1.8108 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 309 28.4000 1.000 3.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2788 1.8144 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 310 28.2000 1.000 4.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2744 1.8181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 311 28.0000 1.000 27.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2701 1.8217 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 312 27.8000 1.000 68.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2657 1.8253 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 313 27.6000 1.000 68.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2614 1.8289 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 314 27.4000 1.000 31.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2570 1.8325 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 315 27.2000 1.000 4.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2527 1.8360 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 316 27.0000 1.000 5.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2483 1.8395 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 317 26.8000 1.000 6.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2440 1.8430 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 318 26.6000 1.000 4.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2396 1.8465 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 319 26.4000 1.000 3.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2353 1.8499 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 320 26.2000 1.000 12.000 2170.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2309 1.8533 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 321 26.0000 1.000 4.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2265 1.8567 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 322 25.8000 1.000 6.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2221 1.8601 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 323 25.6000 1.000 6.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2178 1.8635 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 324 25.4000 1.000 26.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2134 1.8668 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 325 25.2000 1.000 53.000 1912.000 0.930 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2090 1.8701 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 326 25.0000 1.000 31.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2046 1.8734 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 327 24.8000 1.000 21.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2002 1.8767 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 328 24.6000 1.000 25.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1959 1.8799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 329 24.4000 1.000 4.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1915 1.8831 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 330 24.2000 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1871 1.8863 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 331 24.0000 1.000 5.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1827 1.8895 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 332 23.8000 1.000 2.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1783 1.8927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 333 23.6000 1.000 8.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1739 1.8958 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 334 23.4000 1.000 3.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1695 1.8989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 335 23.2000 1.000 3.000 1988.000 0.967 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1651 1.9020 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 336 23.0000 1.000 4.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1607 1.9050 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 337 22.8000 1.000 3.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1563 1.9081 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 338 22.6000 1.000 3.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1519 1.9111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 339 22.4000 1.000 3.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1474 1.9141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 340 22.2000 1.000 5.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1430 1.9170 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 341 22.0000 1.000 3.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1386 1.9200 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 342 21.8000 1.000 7.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1342 1.9229 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 343 21.6000 1.000 14.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1298 1.9258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 344 21.3998 1.000 14.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1254 1.9287 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 345 21.2000 1.000 19.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1209 1.9315 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 346 21.0000 1.000 8.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1165 1.9343 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 347 20.8000 1.000 1.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1121 1.9371 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 348 20.6000 1.000 10.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1077 1.9399 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 349 20.4000 1.000 15.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1033 1.9427 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 350 20.2000 1.000 25.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0988 1.9454 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 351 20.0000 1.000 37.000 2007.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0944 1.9481 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 352 19.8000 1.000 63.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0900 1.9508 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 353 19.6000 1.000 15.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0855 1.9534 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 354 19.4000 1.000 7.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0811 1.9561 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 355 19.2000 1.000 4.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0767 1.9587 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 356 19.0000 1.000 2.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0722 1.9613 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 357 18.8000 1.000 5.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0678 1.9638 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 358 18.6000 1.000 9.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0634 1.9664 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 359 18.4000 1.000 6.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0589 1.9689 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 360 18.2000 1.000 14.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0545 1.9714 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 361 18.0000 1.000 67.000 1975.000 0.961 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0501 1.9739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 362 17.8000 1.000 143.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0456 1.9763 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 363 17.6000 1.000 69.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0412 1.9787 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 364 17.4000 1.000 35.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0367 1.9811 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 365 17.2000 1.000 44.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0323 1.9835 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 366 17.0000 1.000 43.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0279 1.9858 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 367 16.8000 1.000 149.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0234 1.9882 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 368 16.6000 1.000 821.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0190 1.9905 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 369 16.4000 1.000 4495.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0145 1.9927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 370 16.1998 1.000 3992.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0101 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 371 16.0000 1.000 5339.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 372 15.8000 1.000 12144.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 373 15.6000 1.000 8766.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0032 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 374 15.4000 1.000 789.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 375 15.2000 1.000 50.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0121 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 376 15.0000 1.000 33.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 377 14.8000 1.000 43.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0100 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 378 14.6000 1.000 58.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0254 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 379 14.4000 1.000 124.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 380 14.2000 1.000 169.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0343 2.0161 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 381 14.0000 1.000 46.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 382 13.8000 1.000 160.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 383 13.6000 1.000 326.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0476 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 384 13.4000 1.000 77.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0239 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 385 13.2000 1.000 16.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0565 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 386 13.0000 1.000 5.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0610 2.0277 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 387 12.8000 1.000 7.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0654 2.0295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 388 12.6000 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0698 2.0313 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 389 12.3999 1.000 16.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0743 2.0331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 390 12.2000 1.000 5.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0787 2.0348 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 391 12.0000 1.000 9.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0831 2.0366 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 392 11.8000 1.000 2.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0876 2.0383 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 393 11.5998 1.000 3.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0920 2.0400 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 394 11.4000 1.000 7.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0964 2.0416 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 395 11.2000 1.000 4.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1008 2.0433 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 396 11.0000 1.000 6.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1053 2.0449 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 397 10.8000 1.000 5.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1097 2.0465 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 398 10.6000 1.000 5.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1141 2.0480 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 399 10.4000 1.000 5.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1185 2.0496 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 400 10.2000 1.000 18.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1230 2.0511 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 401 9.9998 1.000 12.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1274 2.0526 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 402 9.8000 1.000 4.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1318 2.0540 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 403 9.6000 1.000 2.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1362 2.0554 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 404 9.4000 1.000 3.000 1980.000 0.963 96.4440 142.9286 -74.1427 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1406 2.0569 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 405 9.2000 1.000 2.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1451 2.0582 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 406 9.0000 1.000 3.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1495 2.0596 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 407 8.8000 1.000 3.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1539 2.0609 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 408 8.6000 1.000 2.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1583 2.0622 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 409 8.4000 1.000 6.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1627 2.0635 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 410 8.2000 1.000 5.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1671 2.0648 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 411 8.0000 1.000 97.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1715 2.0660 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 412 7.8000 1.000 281.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1759 2.0672 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 413 7.6000 1.000 380.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1803 2.0684 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 414 7.4000 1.000 154.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1847 2.0696 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 415 7.2000 1.000 99.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1891 2.0707 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 416 7.0000 1.000 66.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1935 2.0718 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 417 6.8000 1.000 24.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1979 2.0729 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 418 6.6000 1.000 19.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2022 2.0740 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 419 6.4000 1.000 8.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2066 2.0750 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 420 6.2000 1.000 7.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2110 2.0760 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 421 6.0000 1.000 4.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2154 2.0770 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 422 5.8000 1.000 4.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2198 2.0779 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 423 5.6000 1.000 2.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2241 2.0789 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 424 5.4000 1.000 2.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2285 2.0798 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 425 5.2000 1.000 3.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2329 2.0807 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 426 5.0000 1.000 1.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2372 2.0815 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 427 4.8000 1.000 5.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2416 2.0823 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 428 4.6000 1.000 4.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2460 2.0831 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 429 4.4000 1.000 3.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2503 2.0839 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 430 4.2000 1.000 2.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2547 2.0847 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 431 4.0000 1.000 3.000 2010.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2590 2.0854 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 432 3.8000 1.000 4.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2634 2.0861 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 433 3.6000 1.000 1.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2677 2.0868 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 434 3.4000 1.000 2.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2721 2.0874 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 435 3.2000 1.000 1.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2764 2.0881 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 436 3.0000 1.000 1.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2807 2.0887 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 437 2.8000 1.000 2.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2851 2.0892 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 438 2.6000 1.000 4.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2894 2.0898 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 439 2.4000 1.000 0.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2937 2.0903 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 440 2.2000 1.000 5.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2980 2.0908 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 441 2.0000 1.000 6.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3023 2.0913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 442 1.8000 1.000 3.000 1992.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3067 2.0917 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 443 1.6000 1.000 1.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3110 2.0922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 444 1.3998 1.000 1.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3153 2.0926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 445 1.2000 1.000 1.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3196 2.0929 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 446 1.0000 1.000 1.000 2185.000 1.063 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3239 2.0933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 447 0.8000 1.000 3.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3282 2.0936 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 448 0.6000 1.000 3.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3325 2.0939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 449 0.4000 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3367 2.0942 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 450 0.2000 1.000 5.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3410 2.0944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 451 -0.0000 1.000 2.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3453 2.0946 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 452 -0.2000 1.000 1.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3496 2.0948 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 453 -0.4000 1.000 5.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3538 2.0950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 454 -0.6000 1.000 4.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3581 2.0951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 455 -0.8000 1.000 3.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3624 2.0953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 456 -1.0000 1.000 3.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3666 2.0953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 457 -1.2000 1.000 3.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3709 2.0954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 458 -1.4001 1.000 5.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3751 2.0954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 459 -1.6000 1.000 1.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3794 2.0955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 460 -1.8000 1.000 3.000 1944.000 0.946 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3836 2.0955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 461 -2.0000 1.000 2.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3878 2.0954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 462 -2.2000 1.000 1.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3921 2.0954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 463 -2.4000 1.000 2.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3963 2.0953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 464 -2.6000 1.000 1.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4005 2.0952 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 465 -2.8000 1.000 4.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4047 2.0950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 466 -3.0000 1.000 4.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4089 2.0949 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 467 -3.2000 1.000 1.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4131 2.0947 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 468 -3.4000 1.000 2.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4173 2.0944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 469 -3.6000 1.000 3.000 1968.000 0.957 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4215 2.0942 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 470 -3.8000 1.000 2.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4257 2.0939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 471 -4.0000 1.000 3.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4299 2.0936 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 472 -4.2000 1.000 1.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4341 2.0933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 473 -4.4000 1.000 3.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4382 2.0930 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 474 -4.6000 1.000 3.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4424 2.0926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 475 -4.8000 1.000 1.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4466 2.0922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 476 -5.0000 1.000 2.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4507 2.0918 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 477 -5.2000 1.000 4.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4549 2.0914 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 478 -5.4000 1.000 4.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4590 2.0909 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 479 -5.6000 1.000 6.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4632 2.0904 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 480 -5.8000 1.000 9.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4673 2.0899 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 481 -6.0000 1.000 6.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4714 2.0893 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 482 -6.2000 1.000 1.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4755 2.0888 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 483 -6.4000 1.000 3.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4797 2.0882 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 484 -6.6000 1.000 1.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4838 2.0875 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 485 -6.8000 1.000 2.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4879 2.0869 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 486 -7.0000 1.000 4.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4920 2.0862 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 487 -7.2000 1.000 3.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4961 2.0855 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 488 -7.4000 1.000 5.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5002 2.0848 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 489 -7.6000 1.000 3.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5042 2.0840 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 490 -7.8000 1.000 3.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5083 2.0833 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 491 -8.0000 1.000 2.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5124 2.0825 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 492 -8.2000 1.000 3.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5164 2.0816 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 493 -8.4000 1.000 0.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5205 2.0808 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 494 -8.6000 1.000 2.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5246 2.0799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 495 -8.8000 1.000 1.000 2002.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5286 2.0790 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 496 -9.0000 1.000 4.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5326 2.0781 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 497 -9.2000 1.000 4.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5367 2.0771 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 498 -9.4000 1.000 4.000 2186.000 1.063 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5407 2.0762 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 499 -9.6000 1.000 5.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5447 2.0751 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 500 -9.8000 1.000 4.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5487 2.0741 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 501 -10.0000 1.000 4.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5527 2.0731 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 502 -10.2000 1.000 1.000 2184.000 1.062 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5567 2.0720 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 503 -10.4001 1.000 4.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5607 2.0709 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 504 -10.6001 1.000 1.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5647 2.0698 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 505 -10.8000 1.000 4.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5687 2.0686 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 506 -11.0000 1.000 2.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5726 2.0674 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 507 -11.2000 1.000 0.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5766 2.0662 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 508 -11.4000 1.000 1.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5806 2.0650 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 509 -11.6000 1.000 5.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5845 2.0637 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 510 -11.8000 1.000 2.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5884 2.0624 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 511 -12.0000 1.000 0.000 2001.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5924 2.0611 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 512 -12.2000 1.000 4.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5963 2.0598 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 513 -12.4000 1.000 5.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6002 2.0585 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 514 -12.6000 1.000 2.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6041 2.0571 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 515 -12.8000 1.000 7.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6080 2.0557 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 516 -13.0000 1.000 1.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6119 2.0542 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 517 -13.2000 1.000 0.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6158 2.0528 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 518 -13.4000 1.000 3.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6197 2.0513 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 519 -13.6000 1.000 0.000 2021.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6236 2.0498 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 520 -13.8000 1.000 2.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6275 2.0483 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 521 -14.0000 1.000 2.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6313 2.0467 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 522 -14.2000 1.000 3.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6352 2.0451 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 523 -14.4000 1.000 2.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6390 2.0435 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 524 -14.6000 1.000 1.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6429 2.0419 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 525 -14.8000 1.000 2.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6467 2.0402 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 526 -15.0000 1.000 2.000 2182.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6505 2.0385 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 527 -15.2000 1.000 0.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6543 2.0368 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 528 -15.4000 1.000 1.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6581 2.0351 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 529 -15.6000 1.000 4.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6619 2.0334 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 530 -15.8000 1.000 4.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6657 2.0316 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 531 -16.0000 1.000 10.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6695 2.0298 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 532 -16.2000 1.000 6.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6733 2.0279 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 533 -16.4000 1.000 5.000 2154.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6770 2.0261 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 534 -16.6000 1.000 8.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6808 2.0242 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 535 -16.8000 1.000 2.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6845 2.0223 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 536 -17.0000 1.000 3.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6883 2.0204 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 537 -17.2000 1.000 4.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6920 2.0184 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 538 -17.4000 1.000 3.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6957 2.0164 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 539 -17.6000 1.000 0.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6994 2.0144 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 540 -17.8000 1.000 3.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7032 2.0124 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 541 -18.0000 1.000 1.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7068 2.0104 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 542 -18.2000 1.000 5.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7105 2.0083 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 543 -18.4000 1.000 7.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7142 2.0062 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 544 -18.6000 1.000 7.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7179 2.0041 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 545 -18.8000 1.000 2.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7216 2.0019 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 546 -19.0002 1.000 3.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7252 1.9997 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 547 -19.2000 1.000 1.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7289 1.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 548 -19.4000 1.000 2.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7325 1.9953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 549 -19.6000 1.000 3.000 1982.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7361 1.9931 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 550 -19.8000 1.000 2.000 2245.000 1.092 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7397 1.9908 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 551 -20.0000 1.000 1.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7433 1.9885 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 552 -20.2000 1.000 4.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7469 1.9862 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 553 -20.4000 1.000 4.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7505 1.9839 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 554 -20.6000 1.000 5.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7541 1.9815 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 555 -20.8000 1.000 6.000 1985.000 0.966 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7577 1.9791 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 556 -21.0000 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7613 1.9767 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 557 -21.2000 1.000 2.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7648 1.9742 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 558 -21.4000 1.000 0.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7684 1.9718 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 559 -21.6000 1.000 3.000 2167.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7719 1.9693 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 560 -21.8000 1.000 1.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7754 1.9668 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 561 -22.0000 1.000 5.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7789 1.9642 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 562 -22.2000 1.000 3.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7824 1.9617 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 563 -22.4000 1.000 3.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7859 1.9591 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 564 -22.6000 1.000 0.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7894 1.9565 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 565 -22.8000 1.000 1.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7929 1.9539 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 566 -23.0000 1.000 3.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7964 1.9512 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 567 -23.2000 1.000 1.000 1976.000 0.961 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7998 1.9485 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 568 -23.4000 1.000 5.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8033 1.9458 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 569 -23.6000 1.000 5.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8067 1.9431 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 570 -23.8002 1.000 3.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8102 1.9403 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 571 -24.0000 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8136 1.9376 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 572 -24.2000 1.000 1.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8170 1.9348 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 573 -24.4000 1.000 2.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8204 1.9319 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 574 -24.6000 1.000 1.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8238 1.9291 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 575 -24.8000 1.000 4.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8272 1.9262 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 576 -25.0000 1.000 3.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8305 1.9233 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 577 -25.2000 1.000 2.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8339 1.9204 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 578 -25.4000 1.000 4.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8372 1.9175 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 579 -25.6000 1.000 4.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8406 1.9145 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 580 -25.8000 1.000 1.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8439 1.9115 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 581 -26.0000 1.000 1.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8472 1.9085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 582 -26.2000 1.000 3.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8505 1.9055 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 583 -26.4000 1.000 2.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8538 1.9025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 584 -26.6000 1.000 6.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8571 1.8994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 585 -26.8000 1.000 5.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8604 1.8963 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 586 -27.0000 1.000 4.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8637 1.8931 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 587 -27.2000 1.000 4.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8669 1.8900 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 588 -27.4000 1.000 2.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8702 1.8868 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 589 -27.6000 1.000 8.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8734 1.8836 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 590 -27.8000 1.000 6.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8766 1.8804 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 591 -28.0000 1.000 5.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8798 1.8772 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 592 -28.2000 1.000 3.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8830 1.8739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 593 -28.4000 1.000 4.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8862 1.8706 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 594 -28.6000 1.000 3.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8894 1.8673 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 595 -28.8000 1.000 2.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8926 1.8640 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 596 -29.0000 1.000 3.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8957 1.8606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 597 -29.2000 1.000 1.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8989 1.8573 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 598 -29.4000 1.000 6.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9020 1.8539 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 599 -29.6000 1.000 6.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9052 1.8505 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 600 -29.8000 1.000 7.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9083 1.8470 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 601 -30.0000 1.000 5.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9114 1.8435 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 602 -30.2000 1.000 6.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9145 1.8401 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 603 -30.4000 1.000 8.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9176 1.8365 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 604 -30.6000 1.000 2.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9206 1.8330 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 605 -30.8000 1.000 3.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9237 1.8295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 606 -31.0000 1.000 1.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9267 1.8259 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 607 -31.2000 1.000 3.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9298 1.8223 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 608 -31.4000 1.000 7.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9328 1.8187 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 609 -31.6000 1.000 4.000 1983.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9358 1.8150 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 610 -31.8000 1.000 5.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9388 1.8113 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 611 -32.0000 1.000 4.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9418 1.8077 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 612 -32.2000 1.000 6.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9448 1.8039 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 613 -32.4000 1.000 3.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9478 1.8002 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 614 -32.6000 1.000 2.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9507 1.7965 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 615 -32.8000 1.000 4.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9537 1.7927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 616 -33.0003 1.000 0.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9566 1.7889 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 617 -33.2000 1.000 4.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9595 1.7851 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 618 -33.4000 1.000 3.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9624 1.7812 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 619 -33.6000 1.000 3.000 1934.000 0.941 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9653 1.7774 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 620 -33.8000 1.000 2.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9682 1.7735 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 621 -34.0000 1.000 5.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9711 1.7696 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 622 -34.2000 1.000 5.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9740 1.7656 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 623 -34.4000 1.000 3.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9768 1.7617 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 624 -34.6000 1.000 2.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9797 1.7577 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 625 -34.8000 1.000 2.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9825 1.7537 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 626 -35.0000 1.000 4.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9853 1.7497 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 627 -35.2000 1.000 3.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9881 1.7457 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 628 -35.4000 1.000 3.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9909 1.7416 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 629 -35.6000 1.000 3.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9937 1.7375 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 630 -35.8000 1.000 7.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9965 1.7334 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 631 -36.0002 1.000 4.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9992 1.7293 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 632 -36.2000 1.000 7.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0020 1.7252 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 633 -36.4000 1.000 2.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0047 1.7210 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 634 -36.6000 1.000 1.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0074 1.7168 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 635 -36.8000 1.000 1.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0101 1.7126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 636 -37.0000 1.000 3.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0128 1.7084 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 637 -37.2001 1.000 3.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0155 1.7042 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 638 -37.4000 1.000 3.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0182 1.6999 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 639 -37.6000 1.000 2.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0208 1.6956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 640 -37.8000 1.000 3.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0235 1.6913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 641 -38.0000 1.000 5.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0261 1.6870 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 642 -38.2000 1.000 1.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0287 1.6826 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 643 -38.4000 1.000 3.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0313 1.6782 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 644 -38.6000 1.000 4.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0339 1.6739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 645 -38.8000 1.000 3.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0365 1.6694 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 646 -39.0000 1.000 2.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0391 1.6650 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 647 -39.2000 1.000 7.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0416 1.6606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 648 -39.4000 1.000 7.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0442 1.6561 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 649 -39.6000 1.000 3.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0467 1.6516 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 650 -39.8000 1.000 7.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0492 1.6471 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 651 -40.0000 1.000 5.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0517 1.6426 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 652 -40.2000 1.000 5.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0542 1.6380 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 653 -40.4000 1.000 1.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0567 1.6334 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 654 -40.6000 1.000 4.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0592 1.6288 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 655 -40.8000 1.000 6.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0616 1.6242 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 656 -41.0000 1.000 4.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0641 1.6196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 657 -41.2000 1.000 6.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0665 1.6149 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 658 -41.4000 1.000 1.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0689 1.6103 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 659 -41.6000 1.000 1.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0713 1.6056 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 660 -41.8000 1.000 4.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0737 1.6009 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 661 -42.0000 1.000 5.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0761 1.5961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 662 -42.2000 1.000 8.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0784 1.5914 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 663 -42.4000 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0808 1.5866 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 664 -42.6000 1.000 5.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0831 1.5818 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 665 -42.8000 1.000 2.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0855 1.5770 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 666 -43.0000 1.000 1.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0878 1.5722 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 667 -43.2000 1.000 4.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0901 1.5674 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 668 -43.4000 1.000 4.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0924 1.5625 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 669 -43.6000 1.000 6.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0946 1.5576 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 670 -43.8000 1.000 1.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0969 1.5527 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 671 -44.0000 1.000 7.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0991 1.5478 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 672 -44.2000 1.000 2.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1014 1.5428 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 673 -44.4000 1.000 7.000 2006.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1036 1.5379 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 674 -44.6000 1.000 7.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1058 1.5329 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 675 -44.8003 1.000 2.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1080 1.5279 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 676 -45.0000 1.000 4.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1102 1.5229 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 677 -45.2000 1.000 3.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1123 1.5179 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 678 -45.4000 1.000 5.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1145 1.5128 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 679 -45.6000 1.000 3.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1166 1.5077 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 680 -45.8000 1.000 3.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1187 1.5027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 681 -46.0000 1.000 4.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1208 1.4975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 682 -46.2000 1.000 1.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1229 1.4924 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 683 -46.4000 1.000 3.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1250 1.4873 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 684 -46.6000 1.000 2.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1271 1.4821 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 685 -46.8000 1.000 1.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1291 1.4769 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 686 -47.0000 1.000 6.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1312 1.4717 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 687 -47.2000 1.000 6.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1332 1.4665 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 688 -47.4000 1.000 6.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1352 1.4613 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 689 -47.6000 1.000 6.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1372 1.4560 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 690 -47.8000 1.000 4.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1392 1.4508 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 691 -48.0000 1.000 1.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1412 1.4455 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 692 -48.2000 1.000 1.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1431 1.4402 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 693 -48.4000 1.000 2.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1451 1.4349 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 694 -48.6000 1.000 7.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1470 1.4295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 695 -48.8000 1.000 3.000 1974.000 0.960 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1489 1.4242 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 696 -49.0000 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1508 1.4188 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 697 -49.2000 1.000 1.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1527 1.4134 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 698 -49.4000 1.000 4.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1546 1.4080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 699 -49.6000 1.000 2.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1564 1.4026 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 700 -49.8000 1.000 4.000 2193.000 1.067 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1583 1.3971 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 701 -50.0000 1.000 2.000 2127.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1601 1.3917 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 702 -50.2000 1.000 6.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1619 1.3862 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 703 -50.4001 1.000 3.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1637 1.3807 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 704 -50.6000 1.000 3.000 1878.000 0.913 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1655 1.3752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 705 -50.8000 1.000 2.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1673 1.3696 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 706 -51.0000 1.000 4.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1691 1.3641 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 707 -51.2000 1.000 1.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1708 1.3585 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 708 -51.4000 1.000 5.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1725 1.3530 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 709 -51.6000 1.000 0.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1743 1.3474 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 710 -51.8000 1.000 2.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1760 1.3418 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 711 -52.0000 1.000 3.000 1958.000 0.952 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1777 1.3361 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 712 -52.2000 1.000 1.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1793 1.3305 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 713 -52.4000 1.000 3.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1810 1.3248 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 714 -52.6000 1.000 3.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1826 1.3192 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 715 -52.8000 1.000 2.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1843 1.3135 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 716 -53.0001 1.000 2.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1859 1.3078 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 717 -53.2000 1.000 3.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1875 1.3020 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 718 -53.4000 1.000 1.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1891 1.2963 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 719 -53.6000 1.000 1.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1907 1.2905 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 720 -53.8000 1.000 1.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1922 1.2848 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 721 -54.0000 1.000 4.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1938 1.2790 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 722 -54.2000 1.000 2.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1953 1.2732 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 723 -54.4000 1.000 4.000 2127.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1968 1.2674 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 724 -54.6000 1.000 4.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1983 1.2615 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 725 -54.8000 1.000 2.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1998 1.2557 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 726 -55.0000 1.000 2.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2013 1.2498 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 727 -55.2000 1.000 1.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2027 1.2439 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 728 -55.4000 1.000 1.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2042 1.2381 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 729 -55.6000 1.000 2.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2056 1.2321 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 730 -55.8001 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2070 1.2262 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 731 -56.0000 1.000 1.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2084 1.2203 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 732 -56.2000 1.000 1.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2098 1.2143 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 733 -56.4000 1.000 2.000 2166.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2112 1.2084 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 734 -56.6000 1.000 5.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2125 1.2024 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 735 -56.8000 1.000 1.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2139 1.1964 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 736 -57.0000 1.000 5.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2152 1.1904 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 737 -57.2000 1.000 3.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2165 1.1843 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 738 -57.4000 1.000 6.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2178 1.1783 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 739 -57.6000 1.000 3.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2191 1.1722 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 740 -57.8000 1.000 4.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2203 1.1662 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 741 -58.0000 1.000 2.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2216 1.1601 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 742 -58.2000 1.000 1.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2228 1.1540 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 743 -58.4000 1.000 2.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2240 1.1479 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 744 -58.6000 1.000 5.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2252 1.1417 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 745 -58.8000 1.000 2.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2264 1.1356 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 746 -59.0000 1.000 3.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2276 1.1295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 747 -59.2000 1.000 1.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2288 1.1233 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 748 -59.4000 1.000 3.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2299 1.1171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 749 -59.6000 1.000 2.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2310 1.1109 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 750 -59.8000 1.000 2.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2322 1.1047 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 751 -60.0000 1.000 2.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2333 1.0985 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 752 -60.2000 1.000 1.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2343 1.0922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 753 -60.4000 1.000 1.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2354 1.0860 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 754 -60.6000 1.000 3.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2365 1.0797 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 755 -60.8000 1.000 1.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2375 1.0735 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 756 -61.0000 1.000 5.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2385 1.0672 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 757 -61.2000 1.000 1.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2396 1.0609 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 758 -61.4000 1.000 2.000 2196.000 1.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2406 1.0546 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 759 -61.6000 1.000 2.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2415 1.0482 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 760 -61.8000 1.000 3.000 1971.000 0.959 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2425 1.0419 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 761 -62.0000 1.000 4.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2434 1.0355 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 762 -62.2000 1.000 1.000 1995.000 0.970 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2444 1.0292 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 763 -62.4000 1.000 1.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2453 1.0228 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 764 -62.6000 1.000 3.000 2157.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2462 1.0164 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 765 -62.8000 1.000 0.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2471 1.0100 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 766 -63.0000 1.000 2.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2480 1.0036 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 767 -63.2000 1.000 1.000 1993.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2488 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 768 -63.4000 1.000 2.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2497 0.9907 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 769 -63.6000 1.000 4.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2505 0.9843 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 770 -63.8000 1.000 5.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2513 0.9778 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 771 -64.0000 1.000 4.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2521 0.9713 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 772 -64.2000 1.000 1.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2529 0.9648 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 773 -64.4000 1.000 3.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2537 0.9583 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 774 -64.6000 1.000 2.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2544 0.9518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 775 -64.8000 1.000 2.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2552 0.9453 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 776 -65.0000 1.000 1.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2559 0.9388 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 777 -65.2000 1.000 3.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2566 0.9322 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 778 -65.4000 1.000 6.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2573 0.9257 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 779 -65.6000 1.000 9.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2580 0.9191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 780 -65.8000 1.000 2.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2586 0.9125 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 781 -66.0000 1.000 2.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2593 0.9059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 782 -66.2000 1.000 4.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2599 0.8993 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 783 -66.4000 1.000 2.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2605 0.8927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 784 -66.6000 1.000 6.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2611 0.8861 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 785 -66.8001 1.000 3.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2617 0.8795 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 786 -67.0000 1.000 4.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2623 0.8728 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 787 -67.2000 1.000 2.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2628 0.8662 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 788 -67.4000 1.000 0.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2633 0.8595 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 789 -67.6001 1.000 1.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2639 0.8528 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 790 -67.8000 1.000 3.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2644 0.8461 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 791 -68.0000 1.000 5.000 1980.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2649 0.8394 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 792 -68.2000 1.000 1.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2653 0.8327 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 793 -68.4000 1.000 4.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2658 0.8260 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 794 -68.6000 1.000 6.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2662 0.8193 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 795 -68.8000 1.000 5.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2667 0.8125 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 796 -69.0000 1.000 5.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2671 0.8058 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 797 -69.2000 1.000 4.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2675 0.7990 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 798 -69.4000 1.000 5.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2679 0.7923 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 799 -69.6000 1.000 2.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2682 0.7855 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 800 -69.8000 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2686 0.7787 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 801 -70.0000 1.000 7.000 1947.000 0.947 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2689 0.7719 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 802 -70.2000 1.000 1.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2693 0.7651 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 803 -70.4000 1.000 3.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2696 0.7583 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 804 -70.6000 1.000 1.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2699 0.7515 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 805 -70.8000 1.000 7.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2701 0.7446 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 806 -71.0000 1.000 5.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2704 0.7378 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 807 -71.2000 1.000 1.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2706 0.7310 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 808 -71.4000 1.000 4.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2709 0.7241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 809 -71.6000 1.000 3.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2711 0.7172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 810 -71.8000 1.000 5.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2713 0.7103 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 811 -72.0000 1.000 4.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2715 0.7035 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 812 -72.2001 1.000 3.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2716 0.6966 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 813 -72.4000 1.000 3.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2718 0.6897 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 814 -72.6000 1.000 6.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2719 0.6828 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 815 -72.8000 1.000 2.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2720 0.6758 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 816 -73.0000 1.000 4.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2721 0.6689 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 817 -73.2000 1.000 3.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2722 0.6620 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 818 -73.4000 1.000 6.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2723 0.6550 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 819 -73.6000 1.000 3.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6481 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 820 -73.8002 1.000 1.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6411 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 821 -74.0000 1.000 1.000 2002.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6341 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 822 -74.2000 1.000 2.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6272 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 823 -74.4000 1.000 3.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6202 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 824 -74.6000 1.000 5.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 825 -74.8000 1.000 3.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6062 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 826 -75.0000 1.000 3.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2723 0.5992 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 827 -75.2001 1.000 1.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2723 0.5922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 828 -75.4000 1.000 5.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2722 0.5852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 829 -75.6000 1.000 5.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2721 0.5781 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 830 -75.8001 1.000 1.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2720 0.5711 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 831 -76.0000 1.000 6.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2718 0.5641 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 832 -76.2000 1.000 3.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2717 0.5570 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 833 -76.4000 1.000 5.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2715 0.5500 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 834 -76.6000 1.000 4.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2714 0.5429 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 835 -76.8000 1.000 5.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2712 0.5358 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 836 -77.0000 1.000 3.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2710 0.5288 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 837 -77.2000 1.000 2.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2708 0.5217 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 838 -77.4000 1.000 2.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2705 0.5146 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 839 -77.6000 1.000 1.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2703 0.5075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 840 -77.8000 1.000 5.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2700 0.5004 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 841 -78.0000 1.000 0.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2697 0.4933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 842 -78.2000 1.000 3.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2694 0.4862 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 843 -78.4001 1.000 3.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2691 0.4791 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 844 -78.6000 1.000 4.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2688 0.4719 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 845 -78.8000 1.000 3.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2684 0.4648 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 846 -79.0000 1.000 4.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2681 0.4577 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 847 -79.2000 1.000 2.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2677 0.4505 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 848 -79.4000 1.000 2.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2673 0.4434 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 849 -79.6000 1.000 3.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2669 0.4362 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 850 -79.8000 1.000 3.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2665 0.4291 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 851 -80.0000 1.000 2.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2660 0.4219 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 852 -80.2000 1.000 2.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2656 0.4147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 853 -80.4000 1.000 1.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2651 0.4076 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 854 -80.6000 1.000 4.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2646 0.4004 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 855 -80.8000 1.000 6.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2641 0.3932 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 856 -81.0000 1.000 2.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2636 0.3860 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 857 -81.2000 1.000 2.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2631 0.3788 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 858 -81.4000 1.000 3.000 1983.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2626 0.3716 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 859 -81.6000 1.000 3.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2620 0.3644 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 860 -81.8000 1.000 3.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2614 0.3572 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 861 -82.0000 1.000 1.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2608 0.3500 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 862 -82.2000 1.000 1.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2602 0.3428 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 863 -82.4000 1.000 5.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2596 0.3356 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 864 -82.6000 1.000 7.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2590 0.3284 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 865 -82.8000 1.000 4.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2583 0.3211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 866 -83.0000 1.000 4.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2576 0.3139 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 867 -83.2000 1.000 4.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2570 0.3067 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 868 -83.4000 1.000 4.000 1987.000 0.966 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2563 0.2994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 869 -83.6000 1.000 4.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2555 0.2922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 870 -83.8000 1.000 3.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2548 0.2849 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 871 -84.0000 1.000 1.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2541 0.2777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 872 -84.2000 1.000 4.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2533 0.2704 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 873 -84.4000 1.000 1.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2525 0.2632 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 874 -84.6000 1.000 3.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2518 0.2559 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 875 -84.8000 1.000 6.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2509 0.2487 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 876 -85.0000 1.000 2.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2501 0.2414 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 877 -85.2002 1.000 3.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2493 0.2341 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 878 -85.4000 1.000 5.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2484 0.2269 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 879 -85.6000 1.000 8.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2476 0.2196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 880 -85.8001 1.000 3.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2467 0.2123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 881 -86.0000 1.000 0.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2458 0.2050 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 882 -86.2000 1.000 3.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2449 0.1978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 883 -86.4000 1.000 6.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2440 0.1905 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 884 -86.6000 1.000 1.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2430 0.1832 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 885 -86.8000 1.000 3.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2421 0.1759 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 886 -87.0000 1.000 4.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2411 0.1686 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 887 -87.2000 1.000 4.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2401 0.1613 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 888 -87.4000 1.000 5.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2391 0.1540 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 889 -87.6000 1.000 8.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2381 0.1467 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 890 -87.8000 1.000 3.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2370 0.1394 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 891 -88.0000 1.000 9.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2360 0.1321 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 892 -88.2000 1.000 4.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2349 0.1248 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 893 -88.4000 1.000 2.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2339 0.1175 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 894 -88.6000 1.000 0.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2328 0.1102 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 895 -88.8000 1.000 7.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2317 0.1029 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 896 -89.0000 1.000 4.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2305 0.0956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 897 -89.2000 1.000 2.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2294 0.0883 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 898 -89.4000 1.000 3.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2282 0.0810 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 899 -89.6000 1.000 3.000 2180.000 1.060 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2271 0.0737 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 900 -89.8000 1.000 4.000 2171.000 1.056 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2259 0.0664 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 901 -90.0003 1.000 4.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2247 0.0591 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 43227
+# Center of Mass = 15.003700+/-0.123518
+# Full Width Half-Maximum = 28.932711+/-0.364309
+# 4:27:41 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0115.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0115.dat
new file mode 100644
index 0000000..49847ff
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0115.dat
@@ -0,0 +1,55 @@
+# scan = 115
+# date = 6/25/2012
+# time = 5:00:43 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=5 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 55.593 5.000 123355.000 60.000 101.6712 140.5490 -78.9018 0.6359 0.0000 35.9920 -0.0000 59.3401 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8430 3.2687 4.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 55.756 8.000 123355.000 60.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 -0.0000 59.1780 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8489 3.2672 4.5500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 55.594 7.000 123355.000 60.000 100.5466 141.0625 -77.8750 0.6359 0.0000 35.7840 -0.0000 59.0164 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8549 3.2658 4.6000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 55.327 21.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 58.8552 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8608 3.2643 4.6500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 55.162 10.000 123355.000 60.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 -0.0000 58.6945 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8666 3.2628 4.7000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 54.714 33.000 123355.000 60.000 98.9472 141.7955 -76.4089 0.6359 0.0000 35.4800 -0.0000 58.5342 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8724 3.2612 4.7500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 54.849 104.000 123355.000 60.000 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 -0.0000 58.3744 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8782 3.2596 4.8000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 54.785 270.000 123355.000 60.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 -0.0000 58.2150 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8840 3.2580 4.8500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 56.494 454.000 123355.000 60.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 -0.0000 58.0560 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8897 3.2564 4.9000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 58.258 546.000 123355.000 60.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 -0.0000 57.8974 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8954 3.2547 4.9500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 59.527 614.000 123355.000 60.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0000 57.7393 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9010 3.2530 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 60.984 509.000 123355.000 60.000 95.9741 143.1431 -73.7137 0.6359 0.0000 34.8880 -0.0000 57.5816 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9067 3.2513 5.0500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 61.928 471.000 123355.000 60.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 -0.0000 57.4242 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9123 3.2496 5.1000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 61.391 291.000 123355.000 60.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 -0.0000 57.2673 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9178 3.2478 5.1500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 59.324 157.000 123355.000 60.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 -0.0000 57.1107 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9234 3.2461 5.2000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 58.632 44.000 123355.000 60.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 -0.0000 56.9544 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9289 3.2442 5.2500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 58.362 10.000 123355.000 60.000 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 -0.0000 56.7986 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9344 3.2424 5.3000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 58.627 9.000 123355.000 60.000 93.2479 144.3552 -71.2895 0.6359 0.0000 34.3120 -0.0000 56.6431 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9398 3.2405 5.3500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 58.755 5.000 123355.000 60.000 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 -0.0000 56.4880 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9452 3.2387 5.4000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 58.618 4.000 123355.000 60.000 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 -0.0000 56.3332 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9506 3.2368 5.4500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 58.685 6.000 123355.000 60.000 91.9600 144.9174 -70.1652 0.6359 0.0000 34.0280 -0.0000 56.1787 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9560 3.2348 5.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3578
+# Center of Mass = 0.002809+/-0.002022
+# Full Width Half-Maximum = 0.241824+/-0.004708
+# 5:25:58 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0116.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0116.dat
new file mode 100644
index 0000000..7d57b21
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0116.dat
@@ -0,0 +1,55 @@
+# scan = 116
+# date = 6/25/2012
+# time = 5:25:58 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.75 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 56.711 5.000 123355.000 60.000 104.6188 139.1683 -81.6633 0.6359 0.0000 36.5160 -0.0000 61.1372 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8698 3.2619 4.2500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 56.671 4.000 123355.000 60.000 103.9973 139.4564 -81.0872 0.6359 0.0000 36.4080 -0.0000 60.9593 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8757 3.2603 4.3000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 56.726 9.000 123355.000 60.000 103.4059 139.7383 -80.5234 0.6359 0.0000 36.3040 -0.0000 60.7820 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8815 3.2587 4.3500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 56.334 7.000 123355.000 60.000 102.8211 140.0142 -79.9716 0.6359 0.0000 36.2000 -0.0000 60.6055 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8872 3.2571 4.4000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 56.173 9.000 123355.000 60.000 102.2429 140.2844 -79.4312 0.6359 0.0000 36.0960 -0.0000 60.4296 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8930 3.2554 4.4500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 56.000 15.000 123355.000 60.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 -0.0000 60.2543 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8987 3.2538 4.5000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 55.401 28.000 123355.000 60.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 -0.0000 60.0797 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9043 3.2521 4.5500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 55.264 98.000 123355.000 60.000 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 -0.0000 59.9056 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9099 3.2503 4.6000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 55.307 286.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 59.7323 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9156 3.2486 4.6500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 54.956 499.000 123355.000 60.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 -0.0000 59.5594 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9211 3.2468 4.7000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 54.732 644.000 123355.000 60.000 98.9472 141.7955 -76.4090 0.6359 0.0000 35.4800 -0.0000 59.3871 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9267 3.2450 4.7500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 54.636 635.000 123355.000 60.000 98.4321 142.0306 -75.9388 0.6359 0.0000 35.3800 -0.0000 59.2155 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9322 3.2431 4.8000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 54.968 530.000 123355.000 60.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 -0.0000 59.0444 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9377 3.2413 4.8500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 56.460 327.000 123355.000 60.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 -0.0000 58.8738 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9431 3.2394 4.9000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 58.295 175.000 123355.000 60.000 96.9384 142.7102 -74.5795 0.6359 0.0000 35.0840 -0.0000 58.7038 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9485 3.2375 4.9500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 59.546 78.000 123355.000 60.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0000 58.5342 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9539 3.2356 5.0000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 60.908 26.000 123355.000 60.000 95.9741 143.1431 -73.7138 0.6359 0.0000 34.8880 -0.0000 58.3652 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9593 3.2336 5.0500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 61.763 13.000 123355.000 60.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 -0.0000 58.1966 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9647 3.2316 5.1000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 61.275 7.000 123355.000 60.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 -0.0000 58.0287 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9700 3.2296 5.1500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 60.142 10.000 123355.000 60.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 -0.0000 57.8611 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9753 3.2276 5.2000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 58.934 10.000 123355.000 60.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 -0.0000 57.6940 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9805 3.2256 5.2500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3415
+# Center of Mass = 0.035813+/-0.002144
+# Full Width Half-Maximum = 0.229214+/-0.005038
+# 5:50:51 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0117.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0117.dat
new file mode 100644
index 0000000..cc4cb46
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0117.dat
@@ -0,0 +1,55 @@
+# scan = 117
+# date = 6/25/2012
+# time = 5:50:52 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.5 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 59.004 3.000 123355.000 60.000 107.8407 137.6264 -84.7472 0.6359 0.0000 37.0560 -0.0000 63.1100 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.8992 3.2536 4.0000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 58.559 6.000 123355.000 60.000 107.1563 137.9492 -84.1015 0.6359 0.0000 36.9440 -0.0000 62.9135 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9049 3.2519 4.0500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 58.274 7.000 123355.000 60.000 106.5044 138.2646 -83.4709 0.6359 0.0000 36.8360 -0.0000 62.7180 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9105 3.2502 4.1000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 58.136 8.000 123355.000 60.000 105.8605 138.5727 -82.8547 0.6359 0.0000 36.7280 -0.0000 62.5234 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9161 3.2484 4.1500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 57.363 8.000 123355.000 60.000 105.2242 138.8738 -82.2524 0.6359 0.0000 36.6200 -0.0000 62.3298 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9216 3.2466 4.2000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 57.156 8.000 123355.000 60.000 104.6188 139.1683 -81.6634 0.6359 0.0000 36.5160 -0.0000 62.1370 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9272 3.2448 4.2500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 56.652 10.000 123355.000 60.000 103.9973 139.4564 -81.0872 0.6359 0.0000 36.4080 -0.0000 61.9451 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9327 3.2430 4.3000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 56.623 77.000 123355.000 60.000 103.4059 139.7383 -80.5234 0.6359 0.0000 36.3040 -0.0000 61.7541 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9381 3.2411 4.3500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 56.861 194.000 123355.000 60.000 102.8211 140.0142 -79.9716 0.6359 0.0000 36.2000 -0.0000 61.5639 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9436 3.2392 4.4000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 56.380 454.000 123355.000 60.000 102.2429 140.2844 -79.4312 0.6359 0.0000 36.0960 -0.0000 61.3745 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9490 3.2373 4.4500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 55.871 583.000 123355.000 60.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 -0.0000 61.1859 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9544 3.2354 4.5000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 55.757 614.000 123355.000 60.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 -0.0000 60.9981 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9598 3.2334 4.5500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 55.204 478.000 123355.000 60.000 100.5466 141.0625 -77.8750 0.6359 0.0000 35.7840 -0.0000 60.8111 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9651 3.2315 4.6000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 55.241 302.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 60.6248 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9704 3.2295 4.6500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 54.815 143.000 123355.000 60.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 -0.0000 60.4392 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9757 3.2275 4.7000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 54.896 63.000 123355.000 60.000 98.9472 141.7955 -76.4089 0.6359 0.0000 35.4800 -0.0000 60.2543 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9810 3.2254 4.7500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 54.557 22.000 123355.000 60.000 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 -0.0000 60.0702 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9862 3.2233 4.8000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 55.141 14.000 123355.000 60.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 -0.0000 59.8867 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9914 3.2212 4.8500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 56.480 7.000 123355.000 60.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 -0.0000 59.7038 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9966 3.2191 4.9000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 58.380 8.000 123355.000 60.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 -0.0000 59.5217 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 1.0018 3.2170 4.9500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 59.915 7.000 123355.000 60.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0000 59.3401 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 1.0069 3.2148 5.0000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3016
+# Center of Mass = 0.039688+/-0.002254
+# Full Width Half-Maximum = 0.220604+/-0.005353
+# 6:16:00 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0118.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0118.dat
new file mode 100644
index 0000000..9a99f46
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0118.dat
@@ -0,0 +1,55 @@
+# scan = 118
+# date = 6/25/2012
+# time = 6:16:00 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.25 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 66.499 3.000 123355.000 60.000 109.9220 136.6096 -86.7808 0.6359 0.0000 37.3880 -0.0000 64.8539 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9423 3.2397 3.8500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 62.364 2.000 123355.000 60.000 109.3373 136.8882 -86.2236 0.6359 0.0000 37.2960 -0.0000 64.6810 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9466 3.2382 3.8900 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 60.929 10.000 123355.000 60.000 108.7837 137.1612 -85.6775 0.6359 0.0000 37.2080 -0.0000 64.5090 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9509 3.2367 3.9300 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 60.355 7.000 123355.000 60.000 108.2358 137.4290 -85.1420 0.6359 0.0000 37.1200 -0.0000 64.3378 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9552 3.2351 3.9700 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 59.415 4.000 123355.000 60.000 107.6933 137.6916 -84.6168 0.6359 0.0000 37.0320 -0.0000 64.1674 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9594 3.2336 4.0100 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 59.239 9.000 123355.000 60.000 107.1563 137.9492 -84.1016 0.6359 0.0000 36.9440 -0.0000 63.9977 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9636 3.2320 4.0500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 58.226 28.000 123355.000 60.000 106.6486 138.2021 -83.5958 0.6359 0.0000 36.8600 -0.0000 63.8288 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9679 3.2304 4.0900 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 58.157 90.000 123355.000 60.000 106.1219 138.4503 -83.0995 0.6359 0.0000 36.7720 -0.0000 63.6606 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9721 3.2289 4.1300 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 58.093 232.000 123355.000 60.000 105.6239 138.6940 -82.6121 0.6359 0.0000 36.6880 -0.0000 63.4931 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9763 3.2272 4.1700 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 57.625 407.000 123355.000 60.000 105.1073 138.9332 -82.1335 0.6359 0.0000 36.6000 -0.0000 63.3264 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9804 3.2256 4.2100 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 57.365 535.000 123355.000 60.000 104.6188 139.1683 -81.6633 0.6359 0.0000 36.5160 -0.0000 63.1603 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9846 3.2240 4.2500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 57.043 580.000 123355.000 60.000 104.1348 139.3993 -81.2014 0.6359 0.0000 36.4320 -0.0000 62.9948 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9887 3.2223 4.2900 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 56.691 499.000 123355.000 60.000 103.6326 139.6263 -80.7475 0.6359 0.0000 36.3440 -0.0000 62.8301 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9929 3.2207 4.3300 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 56.699 353.000 123355.000 60.000 103.1577 139.8494 -80.3012 0.6359 0.0000 36.2600 -0.0000 62.6660 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9970 3.2190 4.3700 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 56.362 208.000 123355.000 60.000 102.7094 140.0687 -79.8626 0.6359 0.0000 36.1800 -0.0000 62.5026 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0011 3.2173 4.4100 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 56.230 114.000 123355.000 60.000 102.2429 140.2844 -79.4311 0.6359 0.0000 36.0960 -0.0000 62.3397 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0052 3.2156 4.4500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 55.858 37.000 123355.000 60.000 101.7806 140.4966 -79.0069 0.6359 0.0000 36.0120 -0.0000 62.1775 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0092 3.2139 4.4900 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 55.945 18.000 123355.000 60.000 101.3225 140.7053 -78.5894 0.6359 0.0000 35.9280 -0.0000 62.0158 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0133 3.2121 4.5300 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 55.464 17.000 123355.000 60.000 100.8900 140.9106 -78.1788 0.6359 0.0000 35.8480 -0.0000 61.8548 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0173 3.2104 4.5700 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 55.364 7.000 123355.000 60.000 100.4398 141.1127 -77.7746 0.6359 0.0000 35.7640 -0.0000 61.6944 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0214 3.2086 4.6100 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 55.210 8.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 61.5345 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0254 3.2068 4.6500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3168
+# Center of Mass = 0.039987+/-0.001963
+# Full Width Half-Maximum = 0.189848+/-0.004107
+# 6:41:22 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0119.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0119.dat
new file mode 100644
index 0000000..f398f6e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0119.dat
@@ -0,0 +1,55 @@
+# scan = 119
+# date = 6/25/2012
+# time = 6:41:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.0 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 57.446 4.000 123355.000 60.000 113.6755 134.7310 -90.5379 0.6359 0.0000 37.9560 -0.0000 67.2272 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9774 3.2268 3.6000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 58.469 4.000 123355.000 60.000 113.0502 135.0488 -89.9023 0.6359 0.0000 37.8640 -0.0000 67.0338 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9815 3.2252 3.6400 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 64.117 6.000 123355.000 60.000 112.4318 135.3597 -89.2806 0.6359 0.0000 37.7720 -0.0000 66.8416 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9856 3.2236 3.6800 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 71.837 7.000 123355.000 60.000 111.8201 135.6639 -88.6721 0.6359 0.0000 37.6800 -0.0000 66.6505 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9896 3.2220 3.7200 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 73.442 2.000 123355.000 60.000 111.2151 135.9618 -88.0765 0.6359 0.0000 37.5880 -0.0000 66.4605 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9936 3.2203 3.7600 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 75.037 12.000 123355.000 60.000 110.6424 136.2534 -87.4932 0.6359 0.0000 37.5000 -0.0000 66.2714 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9977 3.2187 3.8000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 69.254 14.000 123355.000 60.000 110.0500 136.5391 -86.9218 0.6359 0.0000 37.4080 -0.0000 66.0834 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0017 3.2170 3.8400 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 63.778 62.000 123355.000 60.000 109.4892 136.8191 -86.3619 0.6359 0.0000 37.3200 -0.0000 65.8964 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0057 3.2154 3.8800 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 61.406 172.000 123355.000 60.000 108.9342 137.0935 -85.8130 0.6359 0.0000 37.2320 -0.0000 65.7104 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0096 3.2137 3.9200 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 60.374 323.000 123355.000 60.000 108.3847 137.3625 -85.2749 0.6359 0.0000 37.1440 -0.0000 65.5253 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0136 3.2120 3.9600 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 59.796 464.000 123355.000 60.000 107.8407 137.6264 -84.7472 0.6359 0.0000 37.0560 -0.0000 65.3411 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0176 3.2102 4.0000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 59.137 530.000 123355.000 60.000 107.3022 137.8853 -84.2294 0.6359 0.0000 36.9680 -0.0000 65.1579 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0215 3.2085 4.0400 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 58.747 487.000 123355.000 60.000 106.7690 138.1393 -83.7214 0.6359 0.0000 36.8800 -0.0000 64.9755 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0255 3.2068 4.0800 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 58.208 308.000 123355.000 60.000 106.2411 138.3886 -83.2227 0.6359 0.0000 36.7920 -0.0000 64.7940 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0294 3.2050 4.1200 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 57.850 155.000 123355.000 60.000 105.7421 138.6334 -82.7331 0.6359 0.0000 36.7080 -0.0000 64.6134 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0333 3.2032 4.1600 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 57.337 76.000 123355.000 60.000 105.2242 138.8738 -82.2523 0.6359 0.0000 36.6200 -0.0000 64.4336 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0372 3.2014 4.2000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 57.105 18.000 123355.000 60.000 104.7347 139.1100 -81.7801 0.6359 0.0000 36.5360 -0.0000 64.2546 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0411 3.1996 4.2400 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 57.258 6.000 123355.000 60.000 104.2496 139.3419 -81.3162 0.6359 0.0000 36.4520 -0.0000 64.0764 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0450 3.1978 4.2800 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 56.664 8.000 123355.000 60.000 103.7691 139.5699 -80.8602 0.6359 0.0000 36.3680 -0.0000 63.8990 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0489 3.1960 4.3200 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 56.863 9.000 123355.000 60.000 103.2929 139.7940 -80.4121 0.6359 0.0000 36.2840 -0.0000 63.7223 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0528 3.1941 4.3600 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 56.651 4.000 123355.000 60.000 102.8211 140.0142 -79.9716 0.6359 0.0000 36.2000 -0.0000 63.5465 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0566 3.1923 4.4000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2671
+# Center of Mass = 0.039072+/-0.002030
+# Full Width Half-Maximum = 0.178386+/-0.004531
+# 7:08:15 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0120.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0120.dat
new file mode 100644
index 0000000..20093e0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0120.dat
@@ -0,0 +1,55 @@
+# scan = 120
+# date = 6/25/2012
+# time = 7:08:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.75 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 59.780 6.000 123355.000 60.000 117.8411 132.5702 -94.8597 0.6359 0.0000 38.5440 -0.0000 69.8861 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0164 3.2107 3.3500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 59.988 4.000 123355.000 60.000 117.1402 132.9380 -94.1240 0.6359 0.0000 38.4480 -0.0000 69.6679 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0202 3.2091 3.3900 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 59.575 5.000 123355.000 60.000 116.4477 133.2968 -93.4063 0.6359 0.0000 38.3520 -0.0000 69.4511 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0240 3.2074 3.4300 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 59.258 3.000 123355.000 60.000 115.7633 133.6472 -92.7056 0.6359 0.0000 38.2560 -0.0000 69.2359 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0277 3.2058 3.4700 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 59.138 3.000 123355.000 60.000 115.1149 133.9894 -92.0212 0.6359 0.0000 38.1640 -0.0000 69.0221 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0315 3.2041 3.5100 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 58.694 3.000 123355.000 60.000 114.4738 134.3237 -91.3526 0.6359 0.0000 38.0720 -0.0000 68.8097 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0352 3.2024 3.5500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 58.333 11.000 123355.000 60.000 113.8123 134.6505 -90.6990 0.6359 0.0000 37.9760 -0.0000 68.5986 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0390 3.2006 3.5900 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 58.406 30.000 123355.000 60.000 113.1856 134.9700 -90.0599 0.6359 0.0000 37.8840 -0.0000 68.3889 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0427 3.1989 3.6300 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 62.277 120.000 123355.000 60.000 112.5657 135.2826 -89.4348 0.6359 0.0000 37.7920 -0.0000 68.1806 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0464 3.1971 3.6700 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 70.980 290.000 123355.000 60.000 111.9791 135.5885 -88.8230 0.6359 0.0000 37.7040 -0.0000 67.9735 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0502 3.1954 3.7100 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 73.398 301.000 123355.000 60.000 111.3723 135.8879 -88.2243 0.6359 0.0000 37.6120 -0.0000 67.7677 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0539 3.1936 3.7500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 75.467 476.000 123355.000 60.000 110.7720 136.1810 -87.6379 0.6359 0.0000 37.5200 -0.0000 67.5631 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0576 3.1918 3.7900 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 70.811 410.000 123355.000 60.000 110.2039 136.4682 -87.0635 0.6359 0.0000 37.4320 -0.0000 67.3597 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0613 3.1900 3.8300 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 64.742 230.000 123355.000 60.000 109.6416 136.7496 -86.5008 0.6359 0.0000 37.3440 -0.0000 67.1574 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0650 3.1882 3.8700 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 61.543 112.000 123355.000 60.000 109.0598 137.0254 -85.9492 0.6359 0.0000 37.2520 -0.0000 66.9563 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0687 3.1863 3.9100 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 60.720 32.000 123355.000 60.000 108.5091 137.2958 -85.4084 0.6359 0.0000 37.1640 -0.0000 66.7564 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0723 3.1845 3.9500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 59.987 17.000 123355.000 60.000 107.9639 137.5609 -84.8781 0.6359 0.0000 37.0760 -0.0000 66.5574 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0760 3.1826 3.9900 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 59.738 8.000 123355.000 60.000 107.4241 137.8210 -84.3579 0.6359 0.0000 36.9880 -0.0000 66.3596 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0797 3.1807 4.0300 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 58.772 7.000 123355.000 60.000 106.9139 138.0762 -83.8475 0.6359 0.0000 36.9040 -0.0000 66.1628 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0833 3.1788 4.0700 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 57.759 3.000 123355.000 60.000 106.3846 138.3268 -83.3465 0.6359 0.0000 36.8160 -0.0000 65.9670 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0870 3.1769 4.1100 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 58.027 2.000 123355.000 60.000 105.8605 138.5727 -82.8547 0.6359 0.0000 36.7280 -0.0000 65.7723 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0906 3.1750 4.1500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2073
+# Center of Mass = 0.038611+/-0.002233
+# Full Width Half-Maximum = 0.171542+/-0.005353
+# 7:37:33 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0121.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0121.dat
new file mode 100644
index 0000000..a389aea
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0121.dat
@@ -0,0 +1,55 @@
+# scan = 121
+# date = 6/25/2012
+# time = 7:37:34 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.3 0.3 0.03 preset mcu 60
+# builtin_command = scan q 1.5 e -0.3 0.3 0.03 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.5 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.3000 62.389 3.000 123355.000 60.000 120.5763 131.1045 -97.7911 0.6359 0.0000 38.9080 -0.0000 72.2754 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0686 3.1864 3.2000 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.2700 62.222 6.000 123355.000 60.000 119.9948 131.4092 -97.1816 0.6359 0.0000 38.8320 -0.0000 72.0922 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0711 3.1851 3.2300 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.2400 61.547 4.000 123355.000 60.000 119.4490 131.7080 -96.5841 0.6359 0.0000 38.7600 -0.0000 71.9101 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0737 3.1838 3.2600 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2100 61.269 4.000 123355.000 60.000 118.9082 132.0009 -95.9982 0.6359 0.0000 38.6880 -0.0000 71.7291 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0762 3.1825 3.2900 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.1800 61.008 3.000 123355.000 60.000 118.3722 132.2882 -95.4235 0.6359 0.0000 38.6160 -0.0000 71.5491 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0788 3.1812 3.3200 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.1500 60.568 8.000 123355.000 60.000 117.8411 132.5702 -94.8597 0.6359 0.0000 38.5440 -0.0000 71.3702 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0813 3.1799 3.3500 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1200 60.676 14.000 123355.000 60.000 117.3147 132.8469 -94.3063 0.6359 0.0000 38.4720 -0.0000 71.1924 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0838 3.1786 3.3800 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.0900 60.111 28.000 123355.000 60.000 116.7929 133.1185 -93.7630 0.6359 0.0000 38.4000 -0.0000 71.0154 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0864 3.1773 3.4100 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0600 59.809 125.000 123355.000 60.000 116.2759 133.3852 -93.2295 0.6359 0.0000 38.3280 -0.0000 70.8396 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0889 3.1759 3.4400 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0300 59.145 267.000 123355.000 60.000 115.7633 133.6472 -92.7056 0.6359 0.0000 38.2560 -0.0000 70.6647 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0915 3.1746 3.4700 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 59.051 415.000 123355.000 60.000 115.2834 133.9046 -92.1908 0.6359 0.0000 38.1880 -0.0000 70.4906 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0940 3.1732 3.5000 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0300 58.906 482.000 123355.000 60.000 114.7795 134.1575 -91.6850 0.6359 0.0000 38.1160 -0.0000 70.3176 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0966 3.1719 3.5300 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0600 58.683 444.000 123355.000 60.000 114.3077 134.4061 -91.1878 0.6359 0.0000 38.0480 -0.0000 70.1455 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0991 3.1705 3.5600 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.0900 58.381 307.000 123355.000 60.000 113.8123 134.6505 -90.6990 0.6359 0.0000 37.9760 -0.0000 69.9742 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1017 3.1691 3.5900 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1200 57.915 182.000 123355.000 60.000 113.3484 134.8908 -90.2184 0.6359 0.0000 37.9080 -0.0000 69.8039 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1042 3.1677 3.6200 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.1500 59.174 96.000 123355.000 60.000 112.8883 135.1272 -89.7456 0.6359 0.0000 37.8400 -0.0000 69.6344 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1068 3.1663 3.6500 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.1800 64.138 51.000 123355.000 60.000 112.4318 135.3597 -89.2806 0.6359 0.0000 37.7720 -0.0000 69.4657 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1093 3.1649 3.6800 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2100 70.693 16.000 123355.000 60.000 111.9791 135.5885 -88.8230 0.6359 0.0000 37.7040 -0.0000 69.2978 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1118 3.1635 3.7100 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.2400 72.742 6.000 123355.000 60.000 111.5299 135.8136 -88.3728 0.6359 0.0000 37.6360 -0.0000 69.1309 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1144 3.1621 3.7400 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.2700 74.434 6.000 123355.000 60.000 111.0844 136.0352 -87.9295 0.6359 0.0000 37.5680 -0.0000 68.9647 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1169 3.1606 3.7700 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.3000 75.372 6.000 123355.000 60.000 110.6424 136.2534 -87.4932 0.6359 0.0000 37.5000 -0.0000 68.7992 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1195 3.1592 3.8000 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2473
+# Center of Mass = 0.039062+/-0.001775
+# Full Width Half-Maximum = 0.137668+/-0.003596
+# 8:05:11 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0122.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0122.dat
new file mode 100644
index 0000000..8feb0c2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0122.dat
@@ -0,0 +1,65 @@
+# scan = 122
+# date = 6/25/2012
+# time = 8:05:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.3 0.3 0.02 preset mcu 60
+# builtin_command = scan q 1.5 e -0.3 0.3 0.02 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.25 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.3000 65.933 4.000 123355.000 60.000 125.5729 128.2986 -103.4028 0.6359 0.0000 39.5320 -0.0000 75.6225 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1167 3.1608 2.9500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.2800 66.550 2.000 123355.000 60.000 125.1407 128.5426 -102.9147 0.6359 0.0000 39.4800 -0.0000 75.4816 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1182 3.1599 2.9700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.2600 66.619 3.000 123355.000 60.000 124.7116 128.7830 -102.4341 0.6359 0.0000 39.4280 -0.0000 75.3414 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1196 3.1591 2.9900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2400 65.703 4.000 123355.000 60.000 124.3180 129.0196 -101.9607 0.6359 0.0000 39.3800 -0.0000 75.2018 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1211 3.1583 3.0100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2200 65.279 2.000 123355.000 60.000 123.8944 129.2528 -101.4944 0.6359 0.0000 39.3280 -0.0000 75.0630 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1225 3.1574 3.0300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 65.164 5.000 123355.000 60.000 123.5060 129.4825 -101.0350 0.6359 0.0000 39.2800 -0.0000 74.9248 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1240 3.1566 3.0500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1800 64.389 1.000 123355.000 60.000 123.0879 129.7089 -100.5823 0.6359 0.0000 39.2280 -0.0000 74.7872 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1255 3.1558 3.0700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1600 63.845 3.000 123355.000 60.000 122.7045 129.9320 -100.1360 0.6359 0.0000 39.1800 -0.0000 74.6503 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1269 3.1549 3.0900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1400 63.781 9.000 123355.000 60.000 122.2919 130.1519 -99.6962 0.6359 0.0000 39.1280 -0.0000 74.5141 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1284 3.1541 3.1100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.1200 63.509 7.000 123355.000 60.000 121.9134 130.3688 -99.2624 0.6359 0.0000 39.0800 -0.0000 74.3784 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1299 3.1532 3.1300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.1000 63.258 16.000 123355.000 60.000 121.5060 130.5826 -98.8348 0.6359 0.0000 39.0280 -0.0000 74.2434 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1313 3.1523 3.1500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.0800 62.752 31.000 123355.000 60.000 121.1324 130.7935 -98.4130 0.6359 0.0000 38.9800 -0.0000 74.1089 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1328 3.1515 3.1700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 -0.0600 62.675 60.000 123355.000 60.000 120.7611 131.0015 -97.9970 0.6359 0.0000 38.9320 -0.0000 73.9751 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1343 3.1506 3.1900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 -0.0400 62.324 143.000 123355.000 60.000 120.3614 131.2067 -97.5865 0.6359 0.0000 38.8800 -0.0000 73.8418 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1358 3.1497 3.2100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 -0.0200 61.812 216.000 123355.000 60.000 119.9948 131.4092 -97.1816 0.6359 0.0000 38.8320 -0.0000 73.7091 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1373 3.1488 3.2300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.0000 62.105 346.000 123355.000 60.000 119.6304 131.6090 -96.7819 0.6359 0.0000 38.7840 -0.0000 73.5770 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1388 3.1480 3.2500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.0200 61.642 390.000 123355.000 60.000 119.2682 131.8062 -96.3876 0.6359 0.0000 38.7360 -0.0000 73.4455 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1403 3.1471 3.2700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.0400 61.219 418.000 123355.000 60.000 118.9082 132.0009 -95.9982 0.6359 0.0000 38.6880 -0.0000 73.3145 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1418 3.1462 3.2900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.0600 60.820 374.000 123355.000 60.000 118.5503 132.1931 -95.6139 0.6359 0.0000 38.6400 -0.0000 73.1840 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1433 3.1453 3.3100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.0800 60.744 272.000 123355.000 60.000 118.1946 132.3828 -95.2344 0.6359 0.0000 38.5920 -0.0000 73.0541 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1448 3.1444 3.3300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.1000 60.640 213.000 123355.000 60.000 117.8411 132.5702 -94.8597 0.6359 0.0000 38.5440 -0.0000 72.9248 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1463 3.1434 3.3500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.1200 60.211 119.000 123355.000 60.000 117.4896 132.7552 -94.4896 0.6359 0.0000 38.4960 -0.0000 72.7959 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1478 3.1425 3.3700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.1400 60.162 52.000 123355.000 60.000 117.1402 132.9380 -94.1241 0.6359 0.0000 38.4480 -0.0000 72.6676 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1493 3.1416 3.3900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.1600 59.969 22.000 123355.000 60.000 116.7929 133.1185 -93.7630 0.6359 0.0000 38.4000 -0.0000 72.5397 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1508 3.1407 3.4100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.1800 59.976 13.000 123355.000 60.000 116.4477 133.2968 -93.4063 0.6359 0.0000 38.3520 -0.0000 72.4124 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1523 3.1398 3.4300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.5000 0.2000 59.584 5.000 123355.000 60.000 116.1045 133.4731 -93.0538 0.6359 0.0000 38.3040 -0.0000 72.2856 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1538 3.1388 3.4500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.5000 0.2200 59.386 6.000 123355.000 60.000 115.7633 133.6472 -92.7056 0.6359 0.0000 38.2560 -0.0000 72.1592 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1553 3.1379 3.4700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.5000 0.2400 59.023 8.000 123355.000 60.000 115.4523 133.8193 -92.3614 0.6359 0.0000 38.2120 -0.0000 72.0334 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1569 3.1370 3.4900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.5000 0.2600 58.894 10.000 123355.000 60.000 115.1149 133.9894 -92.0212 0.6359 0.0000 38.1640 -0.0000 71.9080 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1584 3.1360 3.5100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.5000 0.2800 58.903 7.000 123355.000 60.000 114.7795 134.1575 -91.6849 0.6359 0.0000 38.1160 -0.0000 71.7831 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1599 3.1351 3.5300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.5000 0.3000 58.592 4.000 123355.000 60.000 114.4738 134.3237 -91.3526 0.6359 0.0000 38.0720 -0.0000 71.6586 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1614 3.1341 3.5500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2765
+# Center of Mass = 0.036897+/-0.001559
+# Full Width Half-Maximum = 0.126456+/-0.003436
+# 8:43:52 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0123.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0123.dat
new file mode 100644
index 0000000..5ce3092
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0123.dat
@@ -0,0 +1,59 @@
+# scan = 123
+# date = 6/25/2012
+# time = 8:43:53 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.24 0.24 0.02 preset mcu 60
+# builtin_command = scan q 1.5 e -0.24 0.24 0.02 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.0 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.2400 70.750 7.000 123355.000 60.000 129.8144 125.7715 -108.4570 0.6359 0.0000 40.0240 -0.0000 79.0039 0.0001 0.0000 0.0000 0.0000 128.9018 -102.1965 0.0000 1.1749 3.1255 2.7600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.2200 70.551 2.000 123355.000 60.000 129.3526 126.0571 -107.8858 0.6359 0.0000 39.9720 -0.0000 78.8419 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1760 3.1248 2.7800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.2000 70.249 4.000 123355.000 60.000 128.8941 126.3377 -107.3246 0.6359 0.0000 39.9200 -0.0000 78.6808 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1772 3.1240 2.8000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.1800 69.869 4.000 123355.000 60.000 128.4388 126.6135 -106.7729 0.6359 0.0000 39.8680 -0.0000 78.5206 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1783 3.1233 2.8200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.1600 69.205 6.000 123355.000 60.000 127.9867 126.8846 -106.2307 0.6359 0.0000 39.8160 -0.0000 78.3613 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1795 3.1225 2.8400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.1400 68.883 8.000 123355.000 60.000 127.5379 127.1512 -105.6975 0.6359 0.0000 39.7640 -0.0000 78.2028 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1807 3.1217 2.8600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1200 68.371 3.000 123355.000 60.000 127.0921 127.4135 -105.1730 0.6359 0.0000 39.7120 -0.0000 78.0453 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1819 3.1210 2.8800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1000 68.081 3.000 123355.000 60.000 126.6495 127.6715 -104.6571 0.6359 0.0000 39.6600 -0.0000 77.8886 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1830 3.1202 2.9000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 67.452 11.000 123355.000 60.000 126.2099 127.9253 -104.1494 0.6359 0.0000 39.6080 -0.0000 77.7328 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1842 3.1194 2.9200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0600 67.388 37.000 123355.000 60.000 125.7733 128.1752 -103.6497 0.6359 0.0000 39.5560 -0.0000 77.5776 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1855 3.1186 2.9400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.0400 66.725 81.000 123355.000 60.000 125.3398 128.4211 -103.1578 0.6359 0.0000 39.5040 -0.0000 77.4235 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1867 3.1178 2.9600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.0200 66.430 181.000 123355.000 60.000 124.9423 128.6632 -102.6735 0.6359 0.0000 39.4560 -0.0000 77.2701 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1879 3.1170 2.9800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0000 66.033 245.000 123355.000 60.000 124.5145 128.9018 -102.1965 0.6359 0.0000 39.4040 -0.0000 77.1174 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1891 3.1162 3.0000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.0200 65.415 301.000 123355.000 60.000 124.0896 129.1366 -101.7267 0.6359 0.0000 39.3520 -0.0000 76.9656 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1903 3.1153 3.0200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.0400 65.176 336.000 123355.000 60.000 123.6999 129.3681 -101.2638 0.6359 0.0000 39.3040 -0.0000 76.8145 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1916 3.1145 3.0400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.0600 64.801 335.000 123355.000 60.000 123.2805 129.5961 -100.8078 0.6359 0.0000 39.2520 -0.0000 76.6642 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1928 3.1137 3.0600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.0800 64.181 215.000 123355.000 60.000 122.8959 129.8208 -100.3583 0.6359 0.0000 39.2040 -0.0000 76.5145 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1941 3.1128 3.0800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.1000 63.871 134.000 123355.000 60.000 122.4820 130.0424 -99.9153 0.6359 0.0000 39.1520 -0.0000 76.3657 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1953 3.1120 3.1000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.1200 63.680 74.000 123355.000 60.000 122.1024 130.2607 -99.4785 0.6359 0.0000 39.1040 -0.0000 76.2176 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1966 3.1111 3.1200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.1400 63.347 19.000 123355.000 60.000 121.6937 130.4760 -99.0479 0.6359 0.0000 39.0520 -0.0000 76.0702 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1978 3.1103 3.1400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.1600 62.782 7.000 123355.000 60.000 121.3189 130.6884 -98.6232 0.6359 0.0000 39.0040 -0.0000 75.9234 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1991 3.1094 3.1600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.1800 62.826 4.000 123355.000 60.000 120.9465 130.8978 -98.2043 0.6359 0.0000 38.9560 -0.0000 75.7774 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.2004 3.1085 3.1800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.2000 62.441 7.000 123355.000 60.000 120.5763 131.1045 -97.7911 0.6359 0.0000 38.9080 -0.0000 75.6320 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.2017 3.1076 3.2000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.2200 62.350 3.000 123355.000 60.000 120.1778 131.3083 -97.3834 0.6359 0.0000 38.8560 -0.0000 75.4873 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.2030 3.1067 3.2200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.2400 61.768 8.000 123355.000 60.000 119.8123 131.5094 -96.9811 0.6359 0.0000 38.8080 -0.0000 75.3433 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.2042 3.1059 3.2400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2035
+# Center of Mass = 0.034978+/-0.001651
+# Full Width Half-Maximum = 0.111297+/-0.003521
+# 9:17:52 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0124.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0124.dat
new file mode 100644
index 0000000..945307c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0124.dat
@@ -0,0 +1,35 @@
+# scan = 124
+# date = 6/25/2012
+# time = 9:26:21 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+# builtin_command = scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=2.65 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.1500 5.636 0.000 0.000 0.000 136.4071 121.5152 -116.9697 0.6359 0.0000 40.7280 -0.0000 84.5635 0.0001 0.0000 0.0000 0.0000 124.1038 -111.7924 0.0000 1.2665 3.0597 2.5000 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 9:27:47 PM 6/25/2012 scan stopped!!
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0125.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0125.dat
new file mode 100644
index 0000000..5595550
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0125.dat
@@ -0,0 +1,55 @@
+# scan = 125
+# date = 6/25/2012
+# time = 9:28:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+# builtin_command = scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=2.65 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.1500 79.617 3.000 123355.000 60.000 136.4071 121.5152 -116.9697 0.6359 0.0000 40.7280 -0.0000 84.5635 0.0001 0.0000 0.0000 0.0000 124.1038 -111.7924 0.0000 1.2665 3.0597 2.5000 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.1350 79.801 5.000 123355.000 60.000 135.9755 121.7932 -116.4137 0.6359 0.0000 40.6840 -0.0000 84.4125 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2670 3.0593 2.5150 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.1200 79.615 2.000 123355.000 60.000 135.5855 122.0665 -115.8670 0.6359 0.0000 40.6440 -0.0000 84.2624 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2674 3.0590 2.5300 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.1050 79.380 4.000 123355.000 60.000 135.1977 122.3354 -115.3291 0.6359 0.0000 40.6040 -0.0000 84.1131 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2679 3.0586 2.5450 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.0900 78.652 2.000 123355.000 60.000 134.7737 122.6000 -114.8000 0.6359 0.0000 40.5600 -0.0000 83.9645 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2684 3.0582 2.5600 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.0750 78.124 7.000 123355.000 60.000 134.3906 122.8604 -114.2791 0.6359 0.0000 40.5200 -0.0000 83.8168 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2689 3.0578 2.5750 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.0600 77.012 9.000 123355.000 60.000 134.0096 123.1168 -113.7665 0.6359 0.0000 40.4800 -0.0000 83.6698 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2693 3.0574 2.5900 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.0450 76.629 17.000 123355.000 60.000 133.6308 123.3692 -113.2617 0.6359 0.0000 40.4400 -0.0000 83.5235 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2698 3.0570 2.6050 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0300 76.243 36.000 123355.000 60.000 133.2541 123.6177 -112.7646 0.6359 0.0000 40.4000 -0.0000 83.3780 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2704 3.0566 2.6200 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0150 75.431 98.000 123355.000 60.000 132.8422 123.8626 -112.2748 0.6359 0.0000 40.3560 -0.0000 83.2332 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2709 3.0562 2.6350 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 75.076 176.000 123355.000 60.000 132.4699 124.1038 -111.7924 0.6359 0.0000 40.3160 -0.0000 83.0892 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2714 3.0558 2.6500 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0150 74.940 223.000 123355.000 60.000 132.0997 124.3416 -111.3169 0.6359 0.0000 40.2760 -0.0000 82.9458 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2719 3.0554 2.6650 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0300 74.043 260.000 123355.000 60.000 131.7316 124.5759 -110.8482 0.6359 0.0000 40.2360 -0.0000 82.8032 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2725 3.0549 2.6800 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.0450 73.726 256.000 123355.000 60.000 131.3655 124.8069 -110.3863 0.6359 0.0000 40.1960 -0.0000 82.6613 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2730 3.0545 2.6950 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.0600 72.919 223.000 123355.000 60.000 131.0015 125.0346 -109.9308 0.6359 0.0000 40.1560 -0.0000 82.5200 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2736 3.0540 2.7100 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.0750 72.617 134.000 123355.000 60.000 130.6395 125.2592 -109.4816 0.6359 0.0000 40.1160 -0.0000 82.3794 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2741 3.0536 2.7250 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.0900 72.110 73.000 123355.000 60.000 130.2794 125.4808 -109.0384 0.6359 0.0000 40.0760 -0.0000 82.2396 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2747 3.0531 2.7400 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.1050 71.601 30.000 123355.000 60.000 129.9214 125.6993 -108.6014 0.6359 0.0000 40.0360 -0.0000 82.1003 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2753 3.0527 2.7550 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.1200 71.498 15.000 123355.000 60.000 129.5653 125.9149 -108.1701 0.6359 0.0000 39.9960 -0.0000 81.9617 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2759 3.0522 2.7700 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.1350 70.885 11.000 123355.000 60.000 129.2465 126.1277 -107.7446 0.6359 0.0000 39.9600 -0.0000 81.8238 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2765 3.0517 2.7850 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.1500 70.823 6.000 123355.000 60.000 128.8941 126.3377 -107.3246 0.6359 0.0000 39.9200 -0.0000 81.6864 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2771 3.0512 2.8000 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 1590
+# Center of Mass = 0.033745+/-0.001547
+# Full Width Half-Maximum = 0.078194+/-0.002535
+# 9:57:02 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0126.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0126.dat
new file mode 100644
index 0000000..a6bdd4d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0126.dat
@@ -0,0 +1,75 @@
+# scan = 126
+# date = 6/25/2012
+# time = 10:01:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.3 0.3 0.015 preset mcu 60
+# builtin_command = scan q 1.5 e -0.3 0.3 0.015 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=2.8 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.3000 80.514 2.000 123355.000 60.000 136.4071 121.5152 -116.9697 0.6359 0.0000 40.7280 -0.0000 83.0780 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2212 3.0939 2.5000 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.2850 80.249 3.000 123355.000 60.000 135.9755 121.7932 -116.4137 0.6359 0.0000 40.6840 -0.0000 82.9356 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2218 3.0935 2.5150 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.2700 79.649 3.000 123355.000 60.000 135.5855 122.0665 -115.8670 0.6359 0.0000 40.6440 -0.0000 82.7940 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2223 3.0931 2.5300 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2550 79.054 2.000 123355.000 60.000 135.1977 122.3354 -115.3291 0.6359 0.0000 40.6040 -0.0000 82.6531 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2229 3.0926 2.5450 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 78.289 1.000 123355.000 60.000 134.7737 122.6000 -114.8000 0.6359 0.0000 40.5600 -0.0000 82.5129 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2235 3.0922 2.5600 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2250 77.894 5.000 123355.000 60.000 134.3906 122.8604 -114.2792 0.6359 0.0000 40.5200 -0.0000 82.3735 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2242 3.0918 2.5750 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2100 77.079 3.000 123355.000 60.000 134.0096 123.1168 -113.7665 0.6359 0.0000 40.4800 -0.0000 82.2346 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2248 3.0913 2.5900 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1950 76.719 3.000 123355.000 60.000 133.6308 123.3692 -113.2617 0.6359 0.0000 40.4400 -0.0000 82.0966 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2254 3.0909 2.6050 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1800 76.010 6.000 123355.000 60.000 133.2541 123.6177 -112.7646 0.6359 0.0000 40.4000 -0.0000 81.9592 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2261 3.0904 2.6200 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.1650 75.610 5.000 123355.000 60.000 132.8422 123.8626 -112.2749 0.6359 0.0000 40.3560 -0.0000 81.8225 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2267 3.0899 2.6350 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.1500 74.886 5.000 123355.000 60.000 132.4699 124.1038 -111.7924 0.6359 0.0000 40.3160 -0.0000 81.6864 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2273 3.0895 2.6500 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.1350 74.670 4.000 123355.000 60.000 132.0997 124.3416 -111.3169 0.6359 0.0000 40.2760 -0.0000 81.5510 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2280 3.0890 2.6650 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 -0.1200 74.325 7.000 123355.000 60.000 131.7316 124.5759 -110.8483 0.6359 0.0000 40.2360 -0.0000 81.4163 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2287 3.0885 2.6800 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 -0.1050 73.868 6.000 123355.000 60.000 131.3655 124.8069 -110.3863 0.6359 0.0000 40.1960 -0.0000 81.2821 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2293 3.0880 2.6950 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 -0.0900 73.365 26.000 123355.000 60.000 131.0015 125.0346 -109.9308 0.6359 0.0000 40.1560 -0.0000 81.1486 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2300 3.0875 2.7100 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 -0.0750 72.707 41.000 123355.000 60.000 130.6395 125.2592 -109.4815 0.6359 0.0000 40.1160 -0.0000 81.0158 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2307 3.0870 2.7250 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 -0.0600 72.374 82.000 123355.000 60.000 130.2794 125.4808 -109.0385 0.6359 0.0000 40.0760 -0.0000 80.8835 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2314 3.0865 2.7400 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 -0.0450 71.519 158.000 123355.000 60.000 129.9214 125.6993 -108.6014 0.6359 0.0000 40.0360 -0.0000 80.7518 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2321 3.0860 2.7550 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 -0.0300 71.263 190.000 123355.000 60.000 129.5653 125.9149 -108.1702 0.6359 0.0000 39.9960 -0.0000 80.6208 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2328 3.0855 2.7700 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 -0.0150 71.371 242.000 123355.000 60.000 129.2465 126.1277 -107.7445 0.6359 0.0000 39.9600 -0.0000 80.4903 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2335 3.0849 2.7850 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.0000 70.466 280.000 123355.000 60.000 128.8941 126.3377 -107.3246 0.6359 0.0000 39.9200 -0.0000 80.3604 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2342 3.0844 2.8000 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.0150 70.103 273.000 123355.000 60.000 128.5436 126.5450 -106.9100 0.6359 0.0000 39.8800 -0.0000 80.2311 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2349 3.0839 2.8150 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.0300 70.127 235.000 123355.000 60.000 128.1950 126.7496 -106.5007 0.6359 0.0000 39.8400 -0.0000 80.1023 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2357 3.0833 2.8300 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.0450 69.188 161.000 123355.000 60.000 127.8483 126.9517 -106.0966 0.6359 0.0000 39.8000 -0.0000 79.9742 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2364 3.0828 2.8450 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.0600 68.641 77.000 123355.000 60.000 127.5379 127.1512 -105.6975 0.6359 0.0000 39.7640 -0.0000 79.8465 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2371 3.0823 2.8600 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.5000 0.0750 68.322 35.000 123355.000 60.000 127.1947 127.3483 -105.3033 0.6359 0.0000 39.7240 -0.0000 79.7194 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2379 3.0817 2.8750 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.5000 0.0900 68.353 11.000 123355.000 60.000 126.8534 127.5430 -104.9140 0.6359 0.0000 39.6840 -0.0000 79.5929 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2386 3.0811 2.8900 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.5000 0.1050 67.957 12.000 123355.000 60.000 126.5477 127.7353 -104.5293 0.6359 0.0000 39.6480 -0.0000 79.4668 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2394 3.0806 2.9050 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.5000 0.1200 67.688 9.000 123355.000 60.000 126.2099 127.9253 -104.1494 0.6359 0.0000 39.6080 -0.0000 79.3414 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2401 3.0800 2.9200 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.5000 0.1350 67.417 5.000 123355.000 60.000 125.8738 128.1131 -103.7739 0.6359 0.0000 39.5680 -0.0000 79.2164 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2409 3.0794 2.9350 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.5000 0.1500 67.377 2.000 123355.000 60.000 125.5729 128.2986 -103.4028 0.6359 0.0000 39.5320 -0.0000 79.0919 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2417 3.0789 2.9500 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 1.5000 0.1650 66.538 3.000 123355.000 60.000 125.2402 128.4820 -103.0360 0.6359 0.0000 39.4920 -0.0000 78.9680 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2424 3.0783 2.9650 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 1.5000 0.1800 66.428 3.000 123355.000 60.000 124.9423 128.6632 -102.6735 0.6359 0.0000 39.4560 -0.0000 78.8446 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2432 3.0777 2.9800 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 1.5000 0.1950 65.866 4.000 123355.000 60.000 124.6129 128.8424 -102.3151 0.6359 0.0000 39.4160 -0.0000 78.7216 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2440 3.0771 2.9950 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 1.5000 0.2100 66.016 4.000 123355.000 60.000 124.3180 129.0196 -101.9607 0.6359 0.0000 39.3800 -0.0000 78.5992 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2448 3.0765 3.0100 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 1.5000 0.2250 65.419 5.000 123355.000 60.000 123.9919 129.1948 -101.6104 0.6359 0.0000 39.3400 -0.0000 78.4772 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2456 3.0759 3.0250 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 1.5000 0.2400 64.849 1.000 123355.000 60.000 123.6999 129.3681 -101.2638 0.6359 0.0000 39.3040 -0.0000 78.3557 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2464 3.0753 3.0400 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 1.5000 0.2550 64.776 2.000 123355.000 60.000 123.3771 129.5394 -100.9212 0.6359 0.0000 39.2640 -0.0000 78.2347 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2472 3.0747 3.0550 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 1.5000 0.2700 64.246 4.000 123355.000 60.000 123.0879 129.7089 -100.5823 0.6359 0.0000 39.2280 -0.0000 78.1141 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2480 3.0741 3.0700 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 1.5000 0.2850 64.040 1.000 123355.000 60.000 122.8002 129.8765 -100.2470 0.6359 0.0000 39.1920 -0.0000 77.9941 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2488 3.0735 3.0850 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 1.5000 0.3000 64.125 3.000 123355.000 60.000 122.4820 130.0424 -99.9153 0.6359 0.0000 39.1520 -0.0000 77.8744 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2496 3.0729 3.1000 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 1924
+# Center of Mass = -0.000031+/-0.001320
+# Full Width Half-Maximum = 0.115758+/-0.004369
+# 10:57:10 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0127.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0127.dat
new file mode 100644
index 0000000..1058a6a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0127.dat
@@ -0,0 +1,75 @@
+# scan = 127
+# date = 6/25/2012
+# time = 10:57:10 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.125 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 71.958 3.000 123355.000 60.000 130.6395 125.2592 -109.4815 0.6359 0.0000 40.1160 -0.0000 78.2580 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1368 3.1491 2.7250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3800 72.347 3.000 123355.000 60.000 130.1718 125.5539 -108.8921 0.6359 0.0000 40.0640 -0.0000 78.1016 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1381 3.1484 2.7450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3600 71.480 1.000 123355.000 60.000 129.7075 125.8434 -108.3132 0.6359 0.0000 40.0120 -0.0000 77.9461 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1393 3.1476 2.7650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3400 70.953 6.000 123355.000 60.000 129.2465 126.1277 -107.7446 0.6359 0.0000 39.9600 -0.0000 77.7915 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1406 3.1469 2.7850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3200 70.366 2.000 123355.000 60.000 128.7887 126.4071 -107.1858 0.6359 0.0000 39.9080 -0.0000 77.6377 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1419 3.1461 2.8050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.3000 69.895 1.000 123355.000 60.000 128.2994 126.6817 -106.6365 0.6359 0.0000 39.8520 -0.0000 77.4848 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1432 3.1453 2.8250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2800 69.245 2.000 123355.000 60.000 127.8483 126.9517 -106.0966 0.6359 0.0000 39.8000 -0.0000 77.3327 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1445 3.1445 2.8450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.2600 68.828 10.000 123355.000 60.000 127.4004 127.2172 -105.5656 0.6359 0.0000 39.7480 -0.0000 77.1814 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1458 3.1438 2.8650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.2400 68.294 1.000 123355.000 60.000 126.9897 127.4784 -105.0432 0.6359 0.0000 39.7000 -0.0000 77.0309 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1471 3.1430 2.8850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.2200 67.751 6.000 123355.000 60.000 126.5477 127.7353 -104.5294 0.6359 0.0000 39.6480 -0.0000 76.8812 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1484 3.1422 2.9050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.2000 67.646 4.000 123355.000 60.000 126.1089 127.9882 -104.0237 0.6359 0.0000 39.5960 -0.0000 76.7323 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1497 3.1414 2.9250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.1800 66.962 3.000 123355.000 60.000 125.6730 128.2370 -103.5260 0.6359 0.0000 39.5440 -0.0000 76.5842 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1510 3.1405 2.9450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 -0.1600 66.925 7.000 123355.000 60.000 125.2402 128.4820 -103.0360 0.6359 0.0000 39.4920 -0.0000 76.4368 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1524 3.1397 2.9650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 -0.1400 66.181 22.000 123355.000 60.000 124.8433 128.7232 -102.5536 0.6359 0.0000 39.4440 -0.0000 76.2901 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1537 3.1389 2.9850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 -0.1200 66.282 30.000 123355.000 60.000 124.4162 128.9608 -102.0784 0.6359 0.0000 39.3920 -0.0000 76.1442 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1550 3.1381 3.0050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 -0.1000 65.462 92.000 123355.000 60.000 123.9919 129.1948 -101.6104 0.6359 0.0000 39.3400 -0.0000 75.9991 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1564 3.1372 3.0250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 -0.0800 65.073 148.000 123355.000 60.000 123.6029 129.4254 -101.1492 0.6359 0.0000 39.2920 -0.0000 75.8546 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1577 3.1364 3.0450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 -0.0600 64.393 258.000 123355.000 60.000 123.1842 129.6526 -100.6948 0.6359 0.0000 39.2400 -0.0000 75.7108 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1591 3.1356 3.0650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 -0.0400 64.556 337.000 123355.000 60.000 122.8002 129.8765 -100.2470 0.6359 0.0000 39.1920 -0.0000 75.5677 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1604 3.1347 3.0850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 -0.0200 63.939 364.000 123355.000 60.000 122.3869 130.0972 -99.8055 0.6359 0.0000 39.1400 -0.0000 75.4253 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1618 3.1339 3.1050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.0000 63.672 340.000 123355.000 60.000 122.0078 130.3148 -99.3703 0.6359 0.0000 39.0920 -0.0000 75.2836 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1632 3.1330 3.1250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.0200 63.187 295.000 123355.000 60.000 121.5998 130.5294 -98.9411 0.6359 0.0000 39.0400 -0.0000 75.1424 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1645 3.1321 3.1450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.0400 62.767 155.000 123355.000 60.000 121.2256 130.7410 -98.5179 0.6359 0.0000 38.9920 -0.0000 75.0021 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1659 3.1313 3.1650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.0600 62.849 84.000 123355.000 60.000 120.8537 130.9498 -98.1005 0.6359 0.0000 38.9440 -0.0000 74.8622 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1673 3.1304 3.1850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.0800 62.492 23.000 123355.000 60.000 120.4534 131.1557 -97.6886 0.6359 0.0000 38.8920 -0.0000 74.7231 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1687 3.1295 3.2050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.5000 0.1000 62.188 11.000 123355.000 60.000 120.0862 131.3588 -97.2823 0.6359 0.0000 38.8440 -0.0000 74.5844 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1701 3.1286 3.2250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.5000 0.1200 61.951 12.000 123355.000 60.000 119.7212 131.5593 -96.8814 0.6359 0.0000 38.7960 -0.0000 74.4466 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1715 3.1277 3.2450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.5000 0.1400 61.638 4.000 123355.000 60.000 119.3585 131.7572 -96.4856 0.6359 0.0000 38.7480 -0.0000 74.3093 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1729 3.1268 3.2650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.5000 0.1600 61.546 6.000 123355.000 60.000 118.9980 131.9525 -96.0951 0.6359 0.0000 38.7000 -0.0000 74.1726 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1743 3.1259 3.2850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.5000 0.1800 61.052 6.000 123355.000 60.000 118.6396 132.1452 -95.7095 0.6359 0.0000 38.6520 -0.0000 74.0365 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1757 3.1250 3.3050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.5000 0.2000 60.943 1.000 123355.000 60.000 118.2833 132.3356 -95.3288 0.6359 0.0000 38.6040 -0.0000 73.9009 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1771 3.1241 3.3250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 1.5000 0.2200 60.746 1.000 123355.000 60.000 117.9293 132.5236 -94.9529 0.6359 0.0000 38.5560 -0.0000 73.7660 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1785 3.1232 3.3450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 1.5000 0.2400 60.489 4.000 123355.000 60.000 117.5773 132.7092 -94.5817 0.6359 0.0000 38.5080 -0.0000 73.6315 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1799 3.1223 3.3650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 1.5000 0.2600 60.131 1.000 123355.000 60.000 117.2274 132.8925 -94.2150 0.6359 0.0000 38.4600 -0.0000 73.4976 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1813 3.1213 3.3850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 1.5000 0.2800 60.036 6.000 123355.000 60.000 116.8796 133.0736 -93.8528 0.6359 0.0000 38.4120 -0.0000 73.3644 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1827 3.1204 3.4050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 1.5000 0.3000 59.815 3.000 123355.000 60.000 116.5338 133.2525 -93.4950 0.6359 0.0000 38.3640 -0.0000 73.2316 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1841 3.1195 3.4250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 1.5000 0.3200 59.757 3.000 123355.000 60.000 116.1901 133.4292 -93.1415 0.6359 0.0000 38.3160 -0.0000 73.0993 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1856 3.1185 3.4450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 1.5000 0.3400 59.160 3.000 123355.000 60.000 115.8484 133.6039 -92.7922 0.6359 0.0000 38.2680 -0.0000 72.9676 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1870 3.1176 3.4650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 1.5000 0.3600 59.212 2.000 123355.000 60.000 115.5370 133.7765 -92.4470 0.6359 0.0000 38.2240 -0.0000 72.8364 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1884 3.1166 3.4850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 1.5000 0.3800 59.031 1.000 123355.000 60.000 115.1991 133.9470 -92.1059 0.6359 0.0000 38.1760 -0.0000 72.7058 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1898 3.1157 3.5050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 1.5000 0.4000 58.903 2.000 123355.000 60.000 114.8632 134.1157 -91.7687 0.6359 0.0000 38.1280 -0.0000 72.5756 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1913 3.1147 3.5250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2263
+# Center of Mass = -0.019708+/-0.001587
+# Full Width Half-Maximum = 0.140340+/-0.005321
+# 11:47:59 PM 6/25/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0128.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0128.dat
new file mode 100644
index 0000000..1996cf1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0128.dat
@@ -0,0 +1,75 @@
+# scan = 128
+# date = 6/25/2012
+# time = 11:47:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.375 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 65.896 3.000 123355.000 60.000 125.0414 128.6031 -102.7939 0.6359 0.0000 39.4680 -0.0000 74.5551 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0841 3.1785 2.9750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3800 65.687 1.000 123355.000 60.000 124.6129 128.8424 -102.3151 0.6359 0.0000 39.4160 -0.0000 74.4210 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0856 3.1777 2.9950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3600 65.424 1.000 123355.000 60.000 124.2200 129.0782 -101.8435 0.6359 0.0000 39.3680 -0.0000 74.2876 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0872 3.1768 3.0150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3400 65.008 5.000 123355.000 60.000 123.7971 129.3105 -101.3789 0.6359 0.0000 39.3160 -0.0000 74.1548 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0888 3.1760 3.0350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3200 64.946 3.000 123355.000 60.000 123.3771 129.5394 -100.9212 0.6359 0.0000 39.2640 -0.0000 74.0226 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0903 3.1752 3.0550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.3000 64.677 6.000 123355.000 60.000 122.9919 129.7650 -100.4700 0.6359 0.0000 39.2160 -0.0000 73.8910 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0919 3.1743 3.0750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2800 64.143 6.000 123355.000 60.000 122.5773 129.9873 -100.0255 0.6359 0.0000 39.1640 -0.0000 73.7600 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0935 3.1735 3.0950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.2600 63.825 5.000 123355.000 60.000 122.1970 130.2064 -99.5872 0.6359 0.0000 39.1160 -0.0000 73.6295 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0951 3.1727 3.1150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.2400 63.112 2.000 123355.000 60.000 121.8192 130.4225 -99.1550 0.6359 0.0000 39.0680 -0.0000 73.4997 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0967 3.1718 3.1350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.2200 63.069 5.000 123355.000 60.000 121.4124 130.6356 -98.7288 0.6359 0.0000 39.0160 -0.0000 73.3703 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0982 3.1710 3.1550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.2000 62.755 8.000 123355.000 60.000 121.0394 130.8458 -98.3085 0.6359 0.0000 38.9680 -0.0000 73.2416 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0998 3.1701 3.1750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.1800 62.676 16.000 123355.000 60.000 120.6686 131.0531 -97.8939 0.6359 0.0000 38.9200 -0.0000 73.1135 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1014 3.1692 3.1950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 -0.1600 62.312 24.000 123355.000 60.000 120.2695 131.2576 -97.4848 0.6359 0.0000 38.8680 -0.0000 72.9858 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1030 3.1684 3.2150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 -0.1400 62.307 45.000 123355.000 60.000 119.9034 131.4594 -97.0812 0.6359 0.0000 38.8200 -0.0000 72.8587 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1046 3.1675 3.2350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 -0.1200 61.806 90.000 123355.000 60.000 119.5396 131.6586 -96.6829 0.6359 0.0000 38.7720 -0.0000 72.7322 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1062 3.1666 3.2550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 -0.1000 61.818 203.000 123355.000 60.000 119.1780 131.8551 -96.2897 0.6359 0.0000 38.7240 -0.0000 72.6061 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1078 3.1657 3.2750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 -0.0800 61.333 288.000 123355.000 60.000 118.8185 132.0492 -95.9017 0.6359 0.0000 38.6760 -0.0000 72.4806 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1094 3.1649 3.2950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 -0.0600 61.051 367.000 123355.000 60.000 118.4612 132.2407 -95.5185 0.6359 0.0000 38.6280 -0.0000 72.3556 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1110 3.1640 3.3150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 -0.0400 60.799 394.000 123355.000 60.000 118.1060 132.4299 -95.1403 0.6359 0.0000 38.5800 -0.0000 72.2310 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1126 3.1631 3.3350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 -0.0200 60.461 427.000 123355.000 60.000 117.7530 132.6166 -94.7667 0.6359 0.0000 38.5320 -0.0000 72.1070 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1142 3.1622 3.3550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.0000 60.414 422.000 123355.000 60.000 117.4021 132.8011 -94.3978 0.6359 0.0000 38.4840 -0.0000 71.9834 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1158 3.1613 3.3750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.0200 60.369 341.000 123355.000 60.000 117.0532 132.9833 -94.0334 0.6359 0.0000 38.4360 -0.0000 71.8604 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1174 3.1604 3.3950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.0400 59.557 222.000 123355.000 60.000 116.7064 133.1633 -93.6734 0.6359 0.0000 38.3880 -0.0000 71.7378 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1190 3.1595 3.4150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.0600 59.692 134.000 123355.000 60.000 116.3617 133.3411 -93.3178 0.6359 0.0000 38.3400 -0.0000 71.6157 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1206 3.1586 3.4350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.0800 59.656 55.000 123355.000 60.000 116.0190 133.5168 -92.9664 0.6359 0.0000 38.2920 -0.0000 71.4940 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1222 3.1576 3.4550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.5000 0.1000 59.293 16.000 123355.000 60.000 115.7066 133.6904 -92.6191 0.6359 0.0000 38.2480 -0.0000 71.3728 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1238 3.1567 3.4750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.5000 0.1200 59.050 6.000 123355.000 60.000 115.3678 133.8620 -92.2760 0.6359 0.0000 38.2000 -0.0000 71.2520 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1254 3.1558 3.4950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.5000 0.1400 59.046 5.000 123355.000 60.000 115.0309 134.0316 -91.9368 0.6359 0.0000 38.1520 -0.0000 71.1317 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1270 3.1549 3.5150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.5000 0.1600 58.786 3.000 123355.000 60.000 114.6960 134.1992 -91.6015 0.6359 0.0000 38.1040 -0.0000 71.0119 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1286 3.1539 3.5350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.5000 0.1800 58.754 6.000 123355.000 60.000 114.3907 134.3650 -91.2701 0.6359 0.0000 38.0600 -0.0000 70.8924 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1302 3.1530 3.5550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.5000 0.2000 58.272 5.000 123355.000 60.000 114.0595 134.5288 -90.9423 0.6359 0.0000 38.0120 -0.0000 70.7734 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1318 3.1521 3.5750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 1.5000 0.2200 58.144 0.000 123355.000 60.000 113.7576 134.6908 -90.6183 0.6359 0.0000 37.9680 -0.0000 70.6548 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1335 3.1511 3.5950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 1.5000 0.2400 57.887 3.000 123355.000 60.000 113.4300 134.8510 -90.2979 0.6359 0.0000 37.9200 -0.0000 70.5367 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1351 3.1502 3.6150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 1.5000 0.2600 58.163 2.000 123355.000 60.000 113.1314 135.0095 -89.9810 0.6359 0.0000 37.8760 -0.0000 70.4189 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1367 3.1492 3.6350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 1.5000 0.2800 59.611 3.000 123355.000 60.000 112.8074 135.1662 -89.6676 0.6359 0.0000 37.8280 -0.0000 70.3016 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1383 3.1482 3.6550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 1.5000 0.3000 62.811 7.000 123355.000 60.000 112.5121 135.3212 -89.3576 0.6359 0.0000 37.7840 -0.0000 70.1846 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1399 3.1473 3.6750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 1.5000 0.3200 67.617 2.000 123355.000 60.000 112.1917 135.4746 -89.0509 0.6359 0.0000 37.7360 -0.0000 70.0680 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1415 3.1463 3.6950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 1.5000 0.3400 71.339 0.000 123355.000 60.000 111.8995 135.6262 -88.7475 0.6359 0.0000 37.6920 -0.0000 69.9519 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1431 3.1453 3.7150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 1.5000 0.3600 73.075 3.000 123355.000 60.000 111.5826 135.7764 -88.4473 0.6359 0.0000 37.6440 -0.0000 69.8361 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1447 3.1444 3.7350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 1.5000 0.3800 73.460 2.000 123355.000 60.000 111.2936 135.9248 -88.1503 0.6359 0.0000 37.6000 -0.0000 69.7207 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1464 3.1434 3.7550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 1.5000 0.4000 74.330 2.000 123355.000 60.000 111.0061 136.0718 -87.8563 0.6359 0.0000 37.5560 -0.0000 69.6057 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1480 3.1424 3.7750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3138
+# Center of Mass = -0.027043+/-0.001417
+# Full Width Half-Maximum = 0.139166+/-0.004058
+# 12:37:25 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0129.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0129.dat
new file mode 100644
index 0000000..3318df1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0129.dat
@@ -0,0 +1,59 @@
+# scan = 129
+# date = 6/26/2012
+# time = 12:37:25 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.36 0.36 0.03 preset mcu 60
+# builtin_command = scan q 1.5 e -0.36 0.36 0.03 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.625 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.3600 61.235 4.000 123355.000 60.000 119.3585 131.7572 -96.4857 0.6359 0.0000 38.7480 -0.0000 71.1090 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0412 3.1996 3.2650 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3300 61.312 8.000 123355.000 60.000 118.8185 132.0492 -95.9017 0.6359 0.0000 38.6760 -0.0000 70.9354 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0439 3.1983 3.2950 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3000 60.825 8.000 123355.000 60.000 118.2833 132.3356 -95.3288 0.6359 0.0000 38.6040 -0.0000 70.7631 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0466 3.1971 3.3250 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2700 60.519 7.000 123355.000 60.000 117.7530 132.6166 -94.7667 0.6359 0.0000 38.5320 -0.0000 70.5915 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0493 3.1958 3.3550 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 60.134 9.000 123355.000 60.000 117.2274 132.8925 -94.2150 0.6359 0.0000 38.4600 -0.0000 70.4210 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0520 3.1945 3.3850 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2100 59.614 13.000 123355.000 60.000 116.7064 133.1633 -93.6734 0.6359 0.0000 38.3880 -0.0000 70.2514 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0547 3.1932 3.4150 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1800 59.626 36.000 123355.000 60.000 116.1901 133.4292 -93.1416 0.6359 0.0000 38.3160 -0.0000 70.0826 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0574 3.1919 3.4450 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 59.347 100.000 123355.000 60.000 115.7066 133.6904 -92.6192 0.6359 0.0000 38.2480 -0.0000 69.9147 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0600 3.1906 3.4750 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1200 59.173 190.000 123355.000 60.000 115.1991 133.9470 -92.1059 0.6359 0.0000 38.1760 -0.0000 69.7478 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0627 3.1893 3.5050 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0900 58.920 354.000 123355.000 60.000 114.6960 134.1992 -91.6015 0.6359 0.0000 38.1040 -0.0000 69.5817 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0654 3.1880 3.5350 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.0600 58.611 451.000 123355.000 60.000 114.2249 134.4471 -91.1057 0.6359 0.0000 38.0360 -0.0000 69.4165 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0681 3.1866 3.5650 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.0300 58.072 468.000 123355.000 60.000 113.7576 134.6908 -90.6183 0.6359 0.0000 37.9680 -0.0000 69.2520 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0707 3.1853 3.5950 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0000 58.364 406.000 123355.000 60.000 113.2669 134.9305 -90.1391 0.6359 0.0000 37.8960 -0.0000 69.0884 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0734 3.1839 3.6250 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.0300 59.433 324.000 123355.000 60.000 112.8074 135.1662 -89.6676 0.6359 0.0000 37.8280 -0.0000 68.9256 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0761 3.1826 3.6550 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.0600 65.404 162.000 123355.000 60.000 112.3517 135.3981 -89.2038 0.6359 0.0000 37.7600 -0.0000 68.7635 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0788 3.1812 3.6850 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.0900 71.441 68.000 123355.000 60.000 111.8995 135.6262 -88.7475 0.6359 0.0000 37.6920 -0.0000 68.6023 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0814 3.1798 3.7150 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.1200 73.236 23.000 123355.000 60.000 111.4511 135.8508 -88.2984 0.6359 0.0000 37.6240 -0.0000 68.4417 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0841 3.1785 3.7450 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.1500 74.675 6.000 123355.000 60.000 111.0061 136.0718 -87.8563 0.6359 0.0000 37.5560 -0.0000 68.2820 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0868 3.1771 3.7750 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.1800 74.698 12.000 123355.000 60.000 110.5648 136.2894 -87.4211 0.6359 0.0000 37.4880 -0.0000 68.1230 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0894 3.1757 3.8050 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.2100 70.119 3.000 123355.000 60.000 110.1269 136.5037 -86.9926 0.6359 0.0000 37.4200 -0.0000 67.9647 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0921 3.1743 3.8350 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.2400 64.953 3.000 123355.000 60.000 109.6925 136.7147 -86.5705 0.6359 0.0000 37.3520 -0.0000 67.8071 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0947 3.1728 3.8650 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.2700 62.802 4.000 123355.000 60.000 109.2867 136.9226 -86.1548 0.6359 0.0000 37.2880 -0.0000 67.6502 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0974 3.1714 3.8950 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.3000 61.004 6.000 123355.000 60.000 108.8589 137.1274 -85.7452 0.6359 0.0000 37.2200 -0.0000 67.4939 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.1000 3.1700 3.9250 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.3300 60.535 4.000 123355.000 60.000 108.4344 137.3292 -85.3416 0.6359 0.0000 37.1520 -0.0000 67.3383 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.1027 3.1685 3.9550 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.3600 59.896 4.000 123355.000 60.000 108.0379 137.5280 -84.9439 0.6359 0.0000 37.0880 -0.0000 67.1834 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.1053 3.1671 3.9850 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2673
+# Center of Mass = -0.034467+/-0.001768
+# Full Width Half-Maximum = 0.154601+/-0.004187
+# 1:08:29 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0130.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0130.dat
new file mode 100644
index 0000000..17ce069
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0130.dat
@@ -0,0 +1,55 @@
+# scan = 130
+# date = 6/26/2012
+# time = 1:08:30 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.875 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 58.932 6.000 123355.000 60.000 115.7066 133.6904 -92.6191 0.6359 0.0000 38.2480 -0.0000 68.5174 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 0.9964 3.2192 3.4750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 58.846 7.000 123355.000 60.000 115.0309 134.0316 -91.9368 0.6359 0.0000 38.1520 -0.0000 68.3122 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0003 3.2176 3.5150 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 58.349 7.000 123355.000 60.000 114.3907 134.3650 -91.2701 0.6359 0.0000 38.0600 -0.0000 68.1084 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0043 3.2160 3.5550 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 58.403 11.000 123355.000 60.000 113.7576 134.6908 -90.6183 0.6359 0.0000 37.9680 -0.0000 67.9058 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0082 3.2143 3.5950 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 58.009 15.000 123355.000 60.000 113.1314 135.0095 -89.9810 0.6359 0.0000 37.8760 -0.0000 67.7045 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0121 3.2126 3.6350 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 62.880 57.000 123355.000 60.000 112.5121 135.3212 -89.3576 0.6359 0.0000 37.7840 -0.0000 67.5043 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0160 3.2110 3.6750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 71.394 112.000 123355.000 60.000 111.8995 135.6262 -88.7475 0.6359 0.0000 37.6920 -0.0000 67.3054 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0198 3.2093 3.7150 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 73.371 208.000 123355.000 60.000 111.2936 135.9248 -88.1503 0.6359 0.0000 37.6000 -0.0000 67.1075 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0237 3.2076 3.7550 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 74.389 425.000 123355.000 60.000 110.7202 136.2173 -87.5655 0.6359 0.0000 37.5120 -0.0000 66.9109 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0276 3.2058 3.7950 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 69.857 513.000 123355.000 60.000 110.1269 136.5037 -86.9925 0.6359 0.0000 37.4200 -0.0000 66.7153 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0314 3.2041 3.8350 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 64.176 399.000 123355.000 60.000 109.5654 136.7844 -86.4312 0.6359 0.0000 37.3320 -0.0000 66.5208 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0353 3.2023 3.8750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 61.450 235.000 123355.000 60.000 109.0095 137.0595 -85.8811 0.6359 0.0000 37.2440 -0.0000 66.3274 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0391 3.2006 3.9150 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 60.346 93.000 123355.000 60.000 108.4344 137.3292 -85.3416 0.6359 0.0000 37.1520 -0.0000 66.1350 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0430 3.1988 3.9550 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 59.732 27.000 123355.000 60.000 107.8899 137.5937 -84.8126 0.6359 0.0000 37.0640 -0.0000 65.9436 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0468 3.1970 3.9950 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 59.068 12.000 123355.000 60.000 107.3753 137.8532 -84.2936 0.6359 0.0000 36.9800 -0.0000 65.7532 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0506 3.1952 4.0350 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 58.713 6.000 123355.000 60.000 106.8414 138.1078 -83.7844 0.6359 0.0000 36.8920 -0.0000 65.5638 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0544 3.1934 4.0750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 58.128 4.000 123355.000 60.000 106.3128 138.3577 -83.2845 0.6359 0.0000 36.8040 -0.0000 65.3752 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0582 3.1915 4.1150 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 57.941 4.000 123355.000 60.000 105.8131 138.6031 -82.7938 0.6359 0.0000 36.7200 -0.0000 65.1877 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0620 3.1897 4.1550 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 57.409 9.000 123355.000 60.000 105.2946 138.8440 -82.3120 0.6359 0.0000 36.6320 -0.0000 65.0010 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0657 3.1878 4.1950 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 57.168 4.000 123355.000 60.000 104.8043 139.0807 -81.8387 0.6359 0.0000 36.5480 -0.0000 64.8152 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0695 3.1859 4.2350 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 56.400 3.000 123355.000 60.000 104.3186 139.3132 -81.3737 0.6359 0.0000 36.4640 -0.0000 64.6303 0.0001 0.0000 0.0000 0.0000 136.7842 -86.4314 0.0000 1.0732 3.1840 4.2750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2157
+# Center of Mass = -0.042578+/-0.002284
+# Full Width Half-Maximum = 0.174681+/-0.005387
+# 1:34:31 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0131.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0131.dat
new file mode 100644
index 0000000..9277e3d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0131.dat
@@ -0,0 +1,55 @@
+# scan = 131
+# date = 6/26/2012
+# time = 1:34:31 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.125 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 71.052 4.000 123355.000 60.000 111.7408 135.7015 -88.5971 0.6359 0.0000 37.6680 -0.0000 66.0081 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9594 3.2336 3.7250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 74.041 5.000 123355.000 60.000 111.1366 135.9985 -88.0029 0.6359 0.0000 37.5760 -0.0000 65.8255 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9636 3.2320 3.7650 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 73.982 6.000 123355.000 60.000 110.5648 136.2894 -87.4211 0.6359 0.0000 37.4880 -0.0000 65.6439 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9678 3.2305 3.8050 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 68.318 12.000 123355.000 60.000 109.9732 136.5744 -86.8512 0.6359 0.0000 37.3960 -0.0000 65.4632 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9720 3.2289 3.8450 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 63.038 25.000 123355.000 60.000 109.4132 136.8537 -86.2927 0.6359 0.0000 37.3080 -0.0000 65.2834 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9761 3.2273 3.8850 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 61.124 122.000 123355.000 60.000 108.8589 137.1274 -85.7452 0.6359 0.0000 37.2200 -0.0000 65.1045 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9802 3.2257 3.9250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 59.905 240.000 123355.000 60.000 108.3102 137.3958 -85.2084 0.6359 0.0000 37.1320 -0.0000 64.9264 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9844 3.2241 3.9650 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 59.419 434.000 123355.000 60.000 107.7670 137.6590 -84.6819 0.6359 0.0000 37.0440 -0.0000 64.7493 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1611 0.0000 0.9885 3.2224 4.0050 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 58.756 519.000 123355.000 60.000 107.2292 137.9173 -84.1654 0.6359 0.0000 36.9560 -0.0000 64.5729 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 0.9926 3.2208 4.0450 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 58.702 541.000 123355.000 60.000 106.6967 138.1707 -83.6585 0.6359 0.0000 36.8680 -0.0000 64.3974 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 0.9966 3.2191 4.0850 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 58.471 454.000 123355.000 60.000 106.1934 138.4195 -83.1610 0.6359 0.0000 36.7840 -0.0000 64.2226 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0007 3.2174 4.1250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 57.623 272.000 123355.000 60.000 105.6711 138.6637 -82.6725 0.6359 0.0000 36.6960 -0.0000 64.0487 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0048 3.2157 4.1650 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 57.248 123.000 123355.000 60.000 105.1774 138.9036 -82.1928 0.6359 0.0000 36.6120 -0.0000 63.8755 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0088 3.2140 4.2050 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 56.939 36.000 123355.000 60.000 104.6651 139.1392 -81.7217 0.6359 0.0000 36.5240 -0.0000 63.7031 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0128 3.2123 4.2450 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 57.027 17.000 123355.000 60.000 104.1807 139.3706 -81.2587 0.6359 0.0000 36.4400 -0.0000 63.5314 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0168 3.2106 4.2850 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 57.003 10.000 123355.000 60.000 103.7008 139.5981 -80.8038 0.6359 0.0000 36.3560 -0.0000 63.3604 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0208 3.2088 4.3250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 56.732 9.000 123355.000 60.000 103.2252 139.8217 -80.3567 0.6359 0.0000 36.2720 -0.0000 63.1901 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0248 3.2071 4.3650 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 56.318 5.000 123355.000 60.000 102.7540 140.0415 -79.9170 0.6359 0.0000 36.1880 -0.0000 63.0206 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0288 3.2053 4.4050 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 56.235 8.000 123355.000 60.000 102.2871 140.2576 -79.4847 0.6359 0.0000 36.1040 -0.0000 62.8517 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0328 3.2035 4.4450 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 56.088 7.000 123355.000 60.000 101.8464 140.4702 -79.0595 0.6359 0.0000 36.0240 -0.0000 62.6835 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0367 3.2017 4.4850 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 55.846 4.000 123355.000 60.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 -0.0000 62.5160 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0407 3.1999 4.5250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2853
+# Center of Mass = -0.053530+/-0.002210
+# Full Width Half-Maximum = 0.181213+/-0.004553
+# 1:59:51 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0132.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0132.dat
new file mode 100644
index 0000000..386148c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0132.dat
@@ -0,0 +1,55 @@
+# scan = 132
+# date = 6/26/2012
+# time = 1:59:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.375 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 59.553 8.000 123355.000 60.000 108.1615 137.4621 -85.0758 0.6359 0.0000 37.1080 -0.0000 63.7588 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9260 3.2452 3.9750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 59.475 8.000 123355.000 60.000 107.6443 137.7241 -84.5518 0.6359 0.0000 37.0240 -0.0000 63.5949 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9304 3.2437 4.0150 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 58.810 22.000 123355.000 60.000 107.1077 137.9811 -84.0378 0.6359 0.0000 36.9360 -0.0000 63.4317 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9348 3.2423 4.0550 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 58.744 27.000 123355.000 60.000 106.5764 138.2334 -83.5333 0.6359 0.0000 36.8480 -0.0000 63.2692 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9391 3.2408 4.0950 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 58.195 74.000 123355.000 60.000 106.0504 138.4810 -83.0381 0.6359 0.0000 36.7600 -0.0000 63.1073 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9435 3.2393 4.1350 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 57.547 227.000 123355.000 60.000 105.5532 138.7241 -82.5518 0.6359 0.0000 36.6760 -0.0000 62.9461 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9478 3.2378 4.1750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 57.121 381.000 123355.000 60.000 105.0372 138.9629 -82.0743 0.6359 0.0000 36.5880 -0.0000 62.7855 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9521 3.2362 4.2150 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 56.947 523.000 123355.000 60.000 104.5494 139.1974 -81.6052 0.6359 0.0000 36.5040 -0.0000 62.6256 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9564 3.2347 4.2550 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 56.514 572.000 123355.000 60.000 104.0660 139.4279 -81.1443 0.6359 0.0000 36.4200 -0.0000 62.4662 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9607 3.2331 4.2950 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 56.489 562.000 123355.000 60.000 103.5871 139.6544 -80.6913 0.6359 0.0000 36.3360 -0.0000 62.3075 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9649 3.2315 4.3350 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 56.364 433.000 123355.000 60.000 103.1127 139.8770 -80.2460 0.6359 0.0000 36.2520 -0.0000 62.1494 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9692 3.2300 4.3750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 56.549 252.000 123355.000 60.000 102.6425 140.0959 -79.8082 0.6359 0.0000 36.1680 -0.0000 61.9918 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9734 3.2283 4.4150 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 56.018 119.000 123355.000 60.000 102.1766 140.3111 -79.3777 0.6359 0.0000 36.0840 -0.0000 61.8348 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9776 3.2267 4.4550 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 55.824 63.000 123355.000 60.000 101.7149 140.5228 -78.9543 0.6359 0.0000 36.0000 -0.0000 61.6784 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9818 3.2251 4.4950 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 55.612 20.000 123355.000 60.000 101.2791 140.7311 -78.5378 0.6359 0.0000 35.9200 -0.0000 61.5225 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9860 3.2234 4.5350 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 55.399 10.000 123355.000 60.000 100.8254 140.9360 -78.1279 0.6359 0.0000 35.8360 -0.0000 61.3672 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9901 3.2218 4.5750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 55.226 7.000 123355.000 60.000 100.3972 141.1377 -77.7245 0.6359 0.0000 35.7560 -0.0000 61.2124 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9943 3.2201 4.6150 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 54.991 10.000 123355.000 60.000 99.9514 141.3362 -77.3275 0.6359 0.0000 35.6720 -0.0000 61.0581 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9984 3.2184 4.6550 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 54.685 10.000 123355.000 60.000 99.5305 141.5317 -76.9366 0.6359 0.0000 35.5920 -0.0000 60.9043 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 1.0025 3.2167 4.6950 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 54.866 6.000 123355.000 60.000 99.1131 141.7241 -76.5518 0.6359 0.0000 35.5120 -0.0000 60.7510 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 1.0066 3.2150 4.7350 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 54.272 7.000 123355.000 60.000 98.6993 141.9136 -76.1728 0.6359 0.0000 35.4320 -0.0000 60.5982 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 1.0107 3.2132 4.7750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3341
+# Center of Mass = -0.069081+/-0.002411
+# Full Width Half-Maximum = 0.198837+/-0.004450
+# 2:23:26 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0133.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0133.dat
new file mode 100644
index 0000000..f563ca6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0133.dat
@@ -0,0 +1,55 @@
+# scan = 133
+# date = 6/26/2012
+# time = 2:23:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.625 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 57.497 6.000 123355.000 60.000 106.1934 138.4195 -83.1610 0.6359 0.0000 36.7840 -0.0000 62.0998 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.8842 3.2580 4.1250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 57.553 4.000 123355.000 60.000 105.5532 138.7241 -82.5518 0.6359 0.0000 36.6760 -0.0000 61.9130 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.8899 3.2563 4.1750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 57.268 5.000 123355.000 60.000 104.9206 139.0219 -81.9562 0.6359 0.0000 36.5680 -0.0000 61.7270 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.8956 3.2547 4.2250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 56.915 16.000 123355.000 60.000 104.3186 139.3132 -81.3737 0.6359 0.0000 36.4640 -0.0000 61.5418 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9013 3.2530 4.2750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 56.678 48.000 123355.000 60.000 103.7008 139.5981 -80.8038 0.6359 0.0000 36.3560 -0.0000 61.3574 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9070 3.2512 4.3250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 56.595 122.000 123355.000 60.000 103.1127 139.8770 -80.2460 0.6359 0.0000 36.2520 -0.0000 61.1738 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9126 3.2495 4.3750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 56.389 334.000 123355.000 60.000 102.5312 140.1500 -79.7000 0.6359 0.0000 36.1480 -0.0000 60.9908 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9182 3.2477 4.4250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 56.022 507.000 123355.000 60.000 101.9562 140.4174 -79.1652 0.6359 0.0000 36.0440 -0.0000 60.8086 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9238 3.2459 4.4750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 55.626 551.000 123355.000 60.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 -0.0000 60.6272 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9293 3.2441 4.5250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 55.420 608.000 123355.000 60.000 100.8254 140.9360 -78.1279 0.6359 0.0000 35.8360 -0.0000 60.4464 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9348 3.2423 4.5750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 55.306 479.000 123355.000 60.000 100.2907 141.1876 -77.6247 0.6359 0.0000 35.7360 -0.0000 60.2663 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9403 3.2404 4.6250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 55.179 235.000 123355.000 60.000 99.7405 141.4344 -77.1313 0.6359 0.0000 35.6320 -0.0000 60.0868 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9457 3.2385 4.6750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 54.697 96.000 123355.000 60.000 99.2172 141.6763 -76.6474 0.6359 0.0000 35.5320 -0.0000 59.9080 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9511 3.2366 4.7250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 54.588 30.000 123355.000 60.000 98.6993 141.9136 -76.1727 0.6359 0.0000 35.4320 -0.0000 59.7299 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9565 3.2346 4.7750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 54.679 11.000 123355.000 60.000 98.1868 142.1465 -75.7070 0.6359 0.0000 35.3320 -0.0000 59.5524 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9619 3.2327 4.8250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 55.199 9.000 123355.000 60.000 97.6795 142.3751 -75.2498 0.6359 0.0000 35.2320 -0.0000 59.3753 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9672 3.2307 4.8750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 57.259 8.000 123355.000 60.000 97.1775 142.5995 -74.8009 0.6359 0.0000 35.1320 -0.0000 59.1991 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9725 3.2287 4.9250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 58.685 8.000 123355.000 60.000 96.7005 142.8199 -74.3602 0.6359 0.0000 35.0360 -0.0000 59.0234 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9778 3.2266 4.9750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 59.829 5.000 123355.000 60.000 96.2085 143.0363 -73.9273 0.6359 0.0000 34.9360 -0.0000 58.8482 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9830 3.2246 5.0250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 61.240 6.000 123355.000 60.000 95.7408 143.2490 -73.5021 0.6359 0.0000 34.8400 -0.0000 58.6736 0.0001 0.0000 0.0000 0.0000 141.1875 -77.6248 0.0000 0.9883 3.2225 5.0750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 61.615 7.000 123355.000 60.000 95.2585 143.4579 -73.0841 0.6359 0.0000 34.7400 -0.0000 58.4996 0.0001 0.0000 0.0000 0.0000 141.1875 -77.6248 0.0000 0.9935 3.2204 5.1250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3095
+# Center of Mass = -0.078174+/-0.002824
+# Full Width Half-Maximum = 0.223320+/-0.005630
+# 2:47:26 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0134.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0134.dat
new file mode 100644
index 0000000..35936ae
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0134.dat
@@ -0,0 +1,55 @@
+# scan = 134
+# date = 6/26/2012
+# time = 2:47:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.875 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 55.959 9.000 123355.000 60.000 103.1127 139.8770 -80.2460 0.6359 0.0000 36.2520 -0.0000 60.2184 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8561 3.2655 4.3750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 55.965 9.000 123355.000 60.000 102.5312 140.1500 -79.7000 0.6359 0.0000 36.1480 -0.0000 60.0486 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8620 3.2640 4.4250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 55.948 15.000 123355.000 60.000 101.9562 140.4174 -79.1652 0.6359 0.0000 36.0440 -0.0000 59.8795 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8679 3.2624 4.4750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 55.789 23.000 123355.000 60.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 -0.0000 59.7109 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8737 3.2609 4.5250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 55.344 95.000 123355.000 60.000 100.8254 140.9360 -78.1279 0.6359 0.0000 35.8360 -0.0000 59.5429 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8795 3.2593 4.5750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 55.088 210.000 123355.000 60.000 100.2907 141.1876 -77.6247 0.6359 0.0000 35.7360 -0.0000 59.3754 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8853 3.2577 4.6250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 54.939 427.000 123355.000 60.000 99.7405 141.4344 -77.1313 0.6359 0.0000 35.6320 -0.0000 59.2084 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8910 3.2560 4.6750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 54.928 573.000 123355.000 60.000 99.2172 141.6763 -76.6475 0.6359 0.0000 35.5320 -0.0000 59.0420 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8967 3.2543 4.7250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 54.315 622.000 123355.000 60.000 98.6993 141.9136 -76.1727 0.6359 0.0000 35.4320 -0.0000 58.8761 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9024 3.2526 4.7750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 54.581 641.000 123355.000 60.000 98.1868 142.1465 -75.7069 0.6359 0.0000 35.3320 -0.0000 58.7107 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9080 3.2509 4.8250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 55.325 469.000 123355.000 60.000 97.6795 142.3751 -75.2498 0.6359 0.0000 35.2320 -0.0000 58.5458 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9136 3.2492 4.8750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 57.119 289.000 123355.000 60.000 97.1775 142.5995 -74.8010 0.6359 0.0000 35.1320 -0.0000 58.3813 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9192 3.2474 4.9250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 58.902 131.000 123355.000 60.000 96.7005 142.8199 -74.3602 0.6359 0.0000 35.0360 -0.0000 58.2173 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9247 3.2456 4.9750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 60.105 38.000 123355.000 60.000 96.2085 143.0363 -73.9273 0.6359 0.0000 34.9360 -0.0000 58.0537 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9302 3.2438 5.0250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 61.210 8.000 123355.000 60.000 95.7408 143.2490 -73.5020 0.6359 0.0000 34.8400 -0.0000 57.8907 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9357 3.2419 5.0750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 61.373 5.000 123355.000 60.000 95.2585 143.4579 -73.0842 0.6359 0.0000 34.7400 -0.0000 57.7280 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9412 3.2401 5.1250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 60.574 8.000 123355.000 60.000 94.8000 143.6633 -72.6735 0.6359 0.0000 34.6440 -0.0000 57.5658 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9466 3.2382 5.1750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 59.503 6.000 123355.000 60.000 94.3459 143.8652 -72.2697 0.6359 0.0000 34.5480 -0.0000 57.4040 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9520 3.2363 5.2250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 58.471 6.000 123355.000 60.000 93.8962 144.0636 -71.8727 0.6359 0.0000 34.4520 -0.0000 57.2426 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9574 3.2343 5.2750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 58.304 7.000 123355.000 60.000 93.4692 144.2588 -71.4824 0.6359 0.0000 34.3600 -0.0000 57.0817 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9627 3.2324 5.3250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 58.149 5.000 123355.000 60.000 93.0277 144.4508 -71.0983 0.6359 0.0000 34.2640 -0.0000 56.9211 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9681 3.2304 5.3750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3596
+# Center of Mass = -0.089141+/-0.002862
+# Full Width Half-Maximum = 0.232959+/-0.005087
+# 3:11:24 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0135.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0135.dat
new file mode 100644
index 0000000..b9cb005
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0135.dat
@@ -0,0 +1,55 @@
+# scan = 135
+# date = 6/26/2012
+# time = 3:11:24 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=5.0 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 55.297 4.000 123355.000 60.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 -0.0000 59.3401 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8430 3.2687 4.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 55.618 11.000 123355.000 60.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 -0.0000 59.1780 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8489 3.2672 4.5500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 54.963 16.000 123355.000 60.000 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 -0.0000 59.0164 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8549 3.2658 4.6000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 54.590 43.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 58.8552 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8608 3.2643 4.6500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 54.918 140.000 123355.000 60.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 -0.0000 58.6945 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8666 3.2628 4.7000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 54.550 293.000 123355.000 60.000 98.9472 141.7955 -76.4090 0.6359 0.0000 35.4800 -0.0000 58.5342 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8724 3.2612 4.7500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 54.408 483.000 123355.000 60.000 98.4321 142.0306 -75.9388 0.6359 0.0000 35.3800 -0.0000 58.3744 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8782 3.2596 4.8000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 54.971 630.000 123355.000 60.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 -0.0000 58.2150 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8840 3.2580 4.8500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 56.269 677.000 123355.000 60.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 -0.0000 58.0560 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8897 3.2564 4.9000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 58.282 591.000 123355.000 60.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 -0.0000 57.8975 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8954 3.2547 4.9500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 59.566 348.000 123355.000 60.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0000 57.7393 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9010 3.2530 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 60.760 205.000 123355.000 60.000 95.9741 143.1431 -73.7138 0.6359 0.0000 34.8880 -0.0000 57.5816 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9067 3.2513 5.0500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 61.571 125.000 123355.000 60.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 -0.0000 57.4242 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9123 3.2496 5.1000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 60.734 53.000 123355.000 60.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 -0.0000 57.2673 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9178 3.2478 5.1500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 60.289 14.000 123355.000 60.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 -0.0000 57.1107 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9234 3.2461 5.2000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 59.073 8.000 123355.000 60.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 -0.0000 56.9544 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9289 3.2442 5.2500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 58.292 5.000 123355.000 60.000 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 -0.0000 56.7986 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9344 3.2424 5.3000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 58.778 4.000 123355.000 60.000 93.2479 144.3552 -71.2896 0.6359 0.0000 34.3120 -0.0000 56.6431 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9398 3.2405 5.3500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 58.422 3.000 123355.000 60.000 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 -0.0000 56.4880 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9452 3.2387 5.4000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 58.480 6.000 123355.000 60.000 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 -0.0000 56.3332 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9506 3.2368 5.4500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 58.381 3.000 123355.000 60.000 91.9600 144.9174 -70.1651 0.6359 0.0000 34.0280 -0.0000 56.1787 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9560 3.2348 5.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3662
+# Center of Mass = -0.106008+/-0.003141
+# Full Width Half-Maximum = 0.233600+/-0.004858
+# 3:35:32 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0136.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0136.dat
new file mode 100644
index 0000000..abc4c7e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0136.dat
@@ -0,0 +1,55 @@
+# scan = 136
+# date = 6/26/2012
+# time = 9:40:40 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 21.0000 1.000 672.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0872 -0.1938 2.9572 5.0000 5.0000 0.0000 49.9980 49.9130 0.0000 0.0000 50.000
+ 2 21.1000 1.000 985.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0883 -0.1958 2.9563 5.0000 5.0000 0.0000 49.9980 49.8270 0.0000 0.0000 50.000
+ 3 21.2000 1.000 1402.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0894 -0.1978 2.9554 5.0000 5.0000 0.0000 50.0000 49.9190 0.0000 0.0000 50.000
+ 4 21.3000 1.000 1895.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0904 -0.1998 2.9545 5.0000 5.0000 0.0000 49.9990 49.8580 0.0000 0.0000 50.000
+ 5 21.4000 1.000 2956.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0915 -0.2017 2.9536 5.0000 5.0000 0.0000 49.9960 49.9670 0.0000 0.0000 50.000
+ 6 21.5000 1.000 5124.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0925 -0.2037 2.9527 5.0000 5.0000 0.0000 49.9990 49.8850 0.0000 0.0000 50.000
+ 7 21.6000 1.000 10543.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0936 -0.2057 2.9517 5.0000 5.0000 0.0000 50.0050 49.8200 0.0000 0.0000 50.000
+ 8 21.7000 1.000 25550.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0946 -0.2077 2.9508 5.0000 5.0000 0.0000 50.0010 49.8650 0.0000 0.0000 50.000
+ 9 21.8000 1.000 57103.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0957 -0.2097 2.9499 5.0000 5.0000 0.0000 49.9980 49.8150 0.0000 0.0000 50.000
+ 10 21.9000 1.000 91596.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0967 -0.2116 2.9489 5.0000 5.0000 0.0000 50.0000 49.9440 0.0000 0.0000 50.000
+ 11 22.0000 1.000 109024.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0978 -0.2136 2.9479 5.0000 5.0000 0.0000 49.9980 49.9680 0.0000 0.0000 50.000
+ 12 22.1000 1.000 106691.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0988 -0.2156 2.9470 5.0000 5.0000 0.0000 49.9980 49.8580 0.0000 0.0000 50.000
+ 13 22.2000 1.000 85040.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0999 -0.2176 2.9460 5.0000 5.0000 0.0000 49.9980 49.8860 0.0000 0.0000 50.000
+ 14 22.3000 1.000 51101.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1009 -0.2195 2.9450 5.0000 5.0000 0.0000 50.0000 49.8240 0.0000 0.0000 50.000
+ 15 22.4000 1.000 23513.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1020 -0.2215 2.9440 5.0000 5.0000 0.0000 49.9980 49.8190 0.0000 0.0000 50.000
+ 16 22.5000 1.000 9783.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1030 -0.2235 2.9430 5.0000 5.0000 0.0000 50.0000 49.8530 0.0000 0.0000 50.000
+ 17 22.6000 1.000 4438.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1041 -0.2255 2.9420 5.0000 5.0000 0.0000 50.0020 49.8340 0.0000 0.0000 50.000
+ 18 22.7000 1.000 2361.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1051 -0.2274 2.9410 5.0000 5.0000 0.0000 49.9980 49.8480 0.0000 0.0000 50.000
+ 19 22.8000 1.000 1430.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1062 -0.2294 2.9399 5.0000 5.0000 0.0000 49.9990 49.8020 0.0000 0.0000 50.000
+ 20 22.9000 1.000 1008.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1073 -0.2314 2.9389 5.0000 5.0000 0.0000 49.9990 49.8390 0.0000 0.0000 50.000
+ 21 23.0000 1.000 746.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1083 -0.2333 2.9378 5.0000 5.0000 0.0000 49.9980 49.8500 0.0000 0.0000 50.000
+# Sum of Counts = 592961
+# Center of Mass = 22.039821+/-0.040478
+# Full Width Half-Maximum = 0.467470+/-0.018391
+# 9:41:13 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0137.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0137.dat
new file mode 100644
index 0000000..b04e8bd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0137.dat
@@ -0,0 +1,55 @@
+# scan = 137
+# date = 6/26/2012
+# time = 9:44:32 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.0000 1.000 588.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1808 -0.3691 2.8421 5.0000 5.0000 0.0000 50.0040 49.7290 0.0000 0.0000 50.000
+ 2 30.1000 1.000 821.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1818 -0.3710 2.8404 5.0000 5.0000 0.0000 49.9980 49.8300 0.0000 0.0000 50.000
+ 3 30.2000 1.000 1071.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1828 -0.3729 2.8387 5.0000 5.0000 0.0000 50.0000 49.8140 0.0000 0.0000 50.000
+ 4 30.3000 1.000 1590.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1839 -0.3748 2.8370 5.0000 5.0000 0.0000 50.0030 49.8900 0.0000 0.0000 50.000
+ 5 30.4000 1.000 2264.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1849 -0.3768 2.8353 5.0000 5.0000 0.0000 49.9980 49.8280 0.0000 0.0000 50.000
+ 6 30.5000 1.000 3597.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1859 -0.3787 2.8336 5.0000 5.0000 0.0000 50.0020 49.8690 0.0000 0.0000 50.000
+ 7 30.6000 1.000 6700.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1869 -0.3806 2.8319 5.0000 5.0000 0.0000 50.0010 49.7940 0.0000 0.0000 50.000
+ 8 30.7000 1.000 15141.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1879 -0.3824 2.8302 5.0000 5.0000 0.0000 50.0030 49.8740 0.0000 0.0000 50.000
+ 9 30.8000 1.000 37129.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1889 -0.3843 2.8284 5.0000 5.0000 0.0000 50.0020 49.7940 0.0000 0.0000 50.000
+ 10 30.9000 1.000 72426.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1900 -0.3862 2.8267 5.0000 5.0000 0.0000 50.0040 49.7430 0.0000 0.0000 50.000
+ 11 31.0000 1.000 101082.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1910 -0.3881 2.8249 5.0000 5.0000 0.0000 50.0020 49.7840 0.0000 0.0000 50.000
+ 12 31.1000 1.000 109917.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1920 -0.3900 2.8232 5.0000 5.0000 0.0000 50.0010 49.8040 0.0000 0.0000 50.000
+ 13 31.2000 1.000 99139.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1930 -0.3919 2.8214 5.0000 5.0000 0.0000 50.0000 49.7960 0.0000 0.0000 50.000
+ 14 31.3000 1.000 70027.000 2165.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1940 -0.3938 2.8196 5.0000 5.0000 0.0000 50.0020 49.8510 0.0000 0.0000 50.000
+ 15 31.4000 1.000 37247.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1950 -0.3957 2.8178 5.0000 5.0000 0.0000 50.0010 49.8390 0.0000 0.0000 50.000
+ 16 31.5000 1.000 15932.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1960 -0.3976 2.8160 5.0000 5.0000 0.0000 49.9990 49.9100 0.0000 0.0000 50.000
+ 17 31.6000 1.000 6849.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1970 -0.3995 2.8142 5.0000 5.0000 0.0000 50.0010 49.8280 0.0000 0.0000 50.000
+ 18 31.7000 1.000 3399.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1981 -0.4014 2.8124 5.0000 5.0000 0.0000 50.0010 49.8460 0.0000 0.0000 50.000
+ 19 31.8000 1.000 1953.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1991 -0.4032 2.8106 5.0000 5.0000 0.0000 50.0050 49.8420 0.0000 0.0000 50.000
+ 20 31.9000 1.000 1235.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.2001 -0.4051 2.8087 5.0000 5.0000 0.0000 50.0030 49.8700 0.0000 0.0000 50.000
+ 21 32.0000 1.000 822.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.2011 -0.4070 2.8069 5.0000 5.0000 0.0000 50.0050 49.9440 0.0000 0.0000 50.000
+# Sum of Counts = 588929
+# Center of Mass = 31.095653+/-0.057305
+# Full Width Half-Maximum = 0.467661+/-0.025984
+# 9:45:06 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0138.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0138.dat
new file mode 100644
index 0000000..1cfa8ca
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0138.dat
@@ -0,0 +1,43 @@
+# scan = 138
+# date = 6/26/2012
+# time = 9:45:42 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan sgl -4 0 0.5
+# builtin_command = scan sgl -4 0 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 94671.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1233 -0.3919 2.8130 5.0000 5.0000 0.0000 50.0040 49.8660 0.0000 0.0000 50.000
+ 2 -3.5000 1.000 104176.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1319 -0.3918 2.8150 5.0000 5.0000 0.0000 50.0080 49.8010 0.0000 0.0000 50.000
+ 3 -3.0000 1.000 113295.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1406 -0.3916 2.8168 5.0000 5.0000 0.0000 50.0030 49.8580 0.0000 0.0000 50.000
+ 4 -2.5000 1.000 119295.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1492 -0.3914 2.8184 5.0000 5.0000 0.0000 49.9980 49.8200 0.0000 0.0000 50.000
+ 5 -2.0000 1.000 122392.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1577 -0.3912 2.8198 5.0000 5.0000 0.0000 50.0040 49.8530 0.0000 0.0000 50.000
+ 6 -1.5000 1.000 122867.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1663 -0.3910 2.8210 5.0000 5.0000 0.0000 50.0100 49.9050 0.0000 0.0000 50.000
+ 7 -1.0000 1.000 120862.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1749 -0.3907 2.8219 5.0000 5.0000 0.0000 49.9940 49.8420 0.0000 0.0000 50.000
+ 8 -0.5000 1.000 116244.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1834 -0.3904 2.8226 5.0000 5.0000 0.0000 50.0010 49.8930 0.0000 0.0000 50.000
+ 9 0.0000 1.000 109294.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1920 -0.3900 2.8232 5.0000 5.0000 0.0000 50.0060 49.8730 0.0000 0.0000 50.000
+# Sum of Counts = 1023096
+# Center of Mass = -1.944579+/-0.002987
+# Full Width Half-Maximum = 2.503729+/-0.002846
+# 9:46:15 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0139.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0139.dat
new file mode 100644
index 0000000..86d8123
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0139.dat
@@ -0,0 +1,55 @@
+# scan = 139
+# date = 6/26/2012
+# time = 9:46:45 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.1000 1.000 987.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1539 -0.3720 2.8379 5.0000 5.0000 0.0000 49.9910 49.9250 0.0000 0.0000 50.000
+ 2 30.2000 1.000 1299.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1549 -0.3739 2.8362 5.0000 5.0000 0.0000 49.9960 49.8990 0.0000 0.0000 50.000
+ 3 30.3000 1.000 1863.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1559 -0.3758 2.8346 5.0000 5.0000 0.0000 50.0010 49.8170 0.0000 0.0000 50.000
+ 4 30.4000 1.000 2837.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1569 -0.3777 2.8328 5.0000 5.0000 0.0000 50.0000 49.8670 0.0000 0.0000 50.000
+ 5 30.5000 1.000 4663.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1580 -0.3796 2.8311 5.0000 5.0000 0.0000 49.9970 49.8580 0.0000 0.0000 50.000
+ 6 30.6000 1.000 8970.000 1982.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1590 -0.3815 2.8294 5.0000 5.0000 0.0000 49.9970 49.8060 0.0000 0.0000 50.000
+ 7 30.7000 1.000 20815.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1600 -0.3834 2.8277 5.0000 5.0000 0.0000 50.0020 49.8350 0.0000 0.0000 50.000
+ 8 30.8000 1.000 48750.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1610 -0.3853 2.8259 5.0000 5.0000 0.0000 49.9960 49.8360 0.0000 0.0000 50.000
+ 9 30.9000 1.000 88748.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1620 -0.3872 2.8242 5.0000 5.0000 0.0000 49.9970 49.8440 0.0000 0.0000 50.000
+ 10 31.0000 1.000 115307.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1630 -0.3891 2.8224 5.0000 5.0000 0.0000 49.9930 49.8340 0.0000 0.0000 50.000
+ 11 31.1000 1.000 123070.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1640 -0.3910 2.8207 5.0000 5.0000 0.0000 49.9950 49.8620 0.0000 0.0000 50.000
+ 12 31.2000 1.000 110045.000 1977.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1651 -0.3929 2.8189 5.0000 5.0000 0.0000 49.9940 49.9070 0.0000 0.0000 50.000
+ 13 31.3000 1.000 77146.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1661 -0.3948 2.8171 5.0000 5.0000 0.0000 49.9970 49.8450 0.0000 0.0000 50.000
+ 14 31.4000 1.000 40343.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1671 -0.3967 2.8153 5.0000 5.0000 0.0000 49.9950 49.9010 0.0000 0.0000 50.000
+ 15 31.5000 1.000 17972.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1681 -0.3986 2.8135 5.0000 5.0000 0.0000 49.9960 49.8250 0.0000 0.0000 50.000
+ 16 31.6000 1.000 7909.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1691 -0.4005 2.8117 5.0000 5.0000 0.0000 49.9980 49.8230 0.0000 0.0000 50.000
+ 17 31.7000 1.000 3798.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1701 -0.4024 2.8099 5.0000 5.0000 0.0000 49.9970 49.8650 0.0000 0.0000 50.000
+ 18 31.8000 1.000 2230.000 2127.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1711 -0.4042 2.8081 5.0000 5.0000 0.0000 49.9990 49.8280 0.0000 0.0000 50.000
+ 19 31.9000 1.000 1342.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1721 -0.4061 2.8062 5.0000 5.0000 0.0000 49.9970 49.8550 0.0000 0.0000 50.000
+ 20 32.0000 1.000 964.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1731 -0.4080 2.8044 5.0000 5.0000 0.0000 50.0000 49.9680 0.0000 0.0000 50.000
+ 21 32.1000 1.000 690.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1741 -0.4099 2.8026 5.0000 5.0000 0.0000 49.9940 49.8970 0.0000 0.0000 50.000
+# Sum of Counts = 679748
+# Center of Mass = 31.086766+/-0.053324
+# Full Width Half-Maximum = 0.474766+/-0.024204
+# 9:47:20 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0140.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0140.dat
new file mode 100644
index 0000000..a882b67
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0140.dat
@@ -0,0 +1,55 @@
+# scan = 140
+# date = 6/26/2012
+# time = 9:47:35 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.6700 30.1000 1.000 5.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5456 0.1592 -0.3795 2.7378 5.0000 5.0000 0.0000 49.9950 49.8150 0.0000 0.0000 50.000
+ 2 59.8700 30.2000 1.000 23.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5503 0.1597 -0.3807 2.7461 5.0000 5.0000 0.0000 50.0050 49.8620 0.0000 0.0000 50.000
+ 3 60.0700 30.3000 1.000 33.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5550 0.1602 -0.3818 2.7544 5.0000 5.0000 0.0000 49.9980 49.9570 0.0000 0.0000 50.000
+ 4 60.2700 30.4000 1.000 47.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5597 0.1607 -0.3830 2.7627 5.0000 5.0000 0.0000 49.9990 49.8400 0.0000 0.0000 50.000
+ 5 60.4700 30.5000 1.000 153.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5644 0.1612 -0.3841 2.7710 5.0000 5.0000 0.0000 50.0000 49.8480 0.0000 0.0000 50.000
+ 6 60.6700 30.6000 1.000 906.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5691 0.1616 -0.3853 2.7793 5.0000 5.0000 0.0000 49.9960 49.8720 0.0000 0.0000 50.000
+ 7 60.8700 30.7000 1.000 4567.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5738 0.1621 -0.3864 2.7876 5.0000 5.0000 0.0000 50.0010 49.8780 0.0000 0.0000 50.000
+ 8 61.0700 30.8000 1.000 17848.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5784 0.1626 -0.3876 2.7959 5.0000 5.0000 0.0000 49.9990 49.9250 0.0000 0.0000 50.000
+ 9 61.2700 30.9000 1.000 51644.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5831 0.1631 -0.3887 2.8042 5.0000 5.0000 0.0000 49.9960 49.6860 0.0000 0.0000 50.000
+ 10 61.4700 31.0000 1.000 96118.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5878 0.1636 -0.3899 2.8124 5.0000 5.0000 0.0000 50.0010 49.8060 0.0000 0.0000 50.000
+ 11 61.6700 31.1000 1.000 121903.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1640 -0.3910 2.8207 5.0000 5.0000 0.0000 49.9970 49.9510 0.0000 0.0000 50.000
+ 12 61.8700 31.2000 1.000 120563.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5971 0.1645 -0.3922 2.8289 5.0000 5.0000 0.0000 50.0010 49.9340 0.0000 0.0000 50.000
+ 13 62.0700 31.3000 1.000 87862.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6017 0.1650 -0.3933 2.8372 5.0000 5.0000 0.0000 49.9990 49.9170 0.0000 0.0000 50.000
+ 14 62.2700 31.4000 1.000 40674.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6064 0.1655 -0.3944 2.8454 5.0000 5.0000 0.0000 49.9980 49.9350 0.0000 0.0000 50.000
+ 15 62.4700 31.5000 1.000 12346.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6110 0.1660 -0.3956 2.8536 5.0000 5.0000 0.0000 50.0010 49.8640 0.0000 0.0000 50.000
+ 16 62.6700 31.6000 1.000 2752.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6156 0.1664 -0.3967 2.8618 5.0000 5.0000 0.0000 50.0030 49.8540 0.0000 0.0000 50.000
+ 17 62.8700 31.7000 1.000 501.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6203 0.1669 -0.3979 2.8700 5.0000 5.0000 0.0000 49.9970 49.8610 0.0000 0.0000 50.000
+ 18 63.0700 31.8000 1.000 134.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6249 0.1674 -0.3990 2.8782 5.0000 5.0000 0.0000 50.0010 49.7940 0.0000 0.0000 50.000
+ 19 63.2700 31.9000 1.000 36.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6295 0.1679 -0.4001 2.8864 5.0000 5.0000 0.0000 49.9970 49.7310 0.0000 0.0000 50.000
+ 20 63.4700 32.0000 1.000 15.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6341 0.1683 -0.4013 2.8945 5.0000 5.0000 0.0000 49.9980 49.8410 0.0000 0.0000 50.000
+ 21 63.6700 32.1000 1.000 20.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6387 0.1688 -0.4024 2.9027 5.0000 5.0000 0.0000 50.0020 49.8680 0.0000 0.0000 50.000
+# Sum of Counts = 558150
+# Center of Mass = 61.744713+/-0.116881
+# Full Width Half-Maximum = 0.683139+/-0.068623
+# 9:48:27 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0141.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0141.dat
new file mode 100644
index 0000000..b8822da
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0141.dat
@@ -0,0 +1,55 @@
+# scan = 141
+# date = 6/26/2012
+# time = 9:49:21 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.1372 1.000 1030.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1541 -0.3724 2.8410 5.0000 5.0000 0.0000 49.9980 49.8730 0.0000 0.0000 50.000
+ 2 30.2372 1.000 1519.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1551 -0.3743 2.8393 5.0000 5.0000 0.0000 50.0020 49.8480 0.0000 0.0000 50.000
+ 3 30.3372 1.000 2113.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1561 -0.3762 2.8376 5.0000 5.0000 0.0000 49.9980 49.9050 0.0000 0.0000 50.000
+ 4 30.4372 1.000 3072.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1571 -0.3782 2.8359 5.0000 5.0000 0.0000 49.9990 49.8350 0.0000 0.0000 50.000
+ 5 30.5372 1.000 5081.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1581 -0.3801 2.8342 5.0000 5.0000 0.0000 49.9980 49.8730 0.0000 0.0000 50.000
+ 6 30.6372 1.000 10023.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1591 -0.3820 2.8325 5.0000 5.0000 0.0000 49.9970 49.8550 0.0000 0.0000 50.000
+ 7 30.7372 1.000 23131.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1602 -0.3839 2.8308 5.0000 5.0000 0.0000 49.9980 49.9780 0.0000 0.0000 50.000
+ 8 30.8372 1.000 53257.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1612 -0.3858 2.8290 5.0000 5.0000 0.0000 50.0050 49.7830 0.0000 0.0000 50.000
+ 9 30.9372 1.000 93377.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1622 -0.3877 2.8273 5.0000 5.0000 0.0000 49.9970 49.8410 0.0000 0.0000 50.000
+ 10 31.0372 1.000 119666.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1632 -0.3895 2.8255 5.0000 5.0000 0.0000 49.9980 49.8150 0.0000 0.0000 50.000
+ 11 31.1372 1.000 124201.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1642 -0.3914 2.8237 5.0000 5.0000 0.0000 50.0000 49.7850 0.0000 0.0000 50.000
+ 12 31.2372 1.000 109715.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1652 -0.3933 2.8220 5.0000 5.0000 0.0000 49.9960 49.7910 0.0000 0.0000 50.000
+ 13 31.3372 1.000 74588.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1662 -0.3952 2.8202 5.0000 5.0000 0.0000 49.9990 49.8680 0.0000 0.0000 50.000
+ 14 31.4372 1.000 37550.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1673 -0.3971 2.8184 5.0000 5.0000 0.0000 50.0000 49.8580 0.0000 0.0000 50.000
+ 15 31.5372 1.000 16722.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1683 -0.3990 2.8166 5.0000 5.0000 0.0000 49.9970 49.8260 0.0000 0.0000 50.000
+ 16 31.6372 1.000 7310.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1693 -0.4009 2.8148 5.0000 5.0000 0.0000 50.0010 49.8160 0.0000 0.0000 50.000
+ 17 31.7372 1.000 3612.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1703 -0.4028 2.8130 5.0000 5.0000 0.0000 50.0000 49.8240 0.0000 0.0000 50.000
+ 18 31.8372 1.000 2075.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1713 -0.4047 2.8111 5.0000 5.0000 0.0000 50.0000 49.8380 0.0000 0.0000 50.000
+ 19 31.9372 1.000 1370.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1723 -0.4066 2.8093 5.0000 5.0000 0.0000 50.0010 49.8230 0.0000 0.0000 50.000
+ 20 32.0372 1.000 985.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1733 -0.4084 2.8075 5.0000 5.0000 0.0000 49.9960 49.8490 0.0000 0.0000 50.000
+ 21 32.1372 1.000 706.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1743 -0.4103 2.8056 5.0000 5.0000 0.0000 50.0000 49.9240 0.0000 0.0000 50.000
+# Sum of Counts = 691103
+# Center of Mass = 31.113523+/-0.052930
+# Full Width Half-Maximum = 0.476033+/-0.023930
+# 9:49:55 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0142.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0142.dat
new file mode 100644
index 0000000..7070ff9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0142.dat
@@ -0,0 +1,47 @@
+# scan = 142
+# date = 6/26/2012
+# time = 9:51:46 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel sgu -3 3 0.5
+# builtin_command = scan sgu @(sgu)+-3 @(sgu)+3 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+# ubmatrix = 0.001075,-0.005726,-0.084537,0.253778,0.126889,0.000358,-0.000031,-0.219706,0.002410
+# mode = 0
+# plane_normal = 0.028497,0.000000,0.999594
+# ubconf = UB26Jun2012_95114AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -3.0000 1.000 10849.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5135 -0.0303 2.0022 5.0000 5.0000 0.0000 49.9950 49.8340 0.0000 0.0000 50.000
+ 2 -2.5000 1.000 11333.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5113 -0.0253 2.0019 5.0000 5.0000 0.0000 50.0010 49.8520 0.0000 0.0000 50.000
+ 3 -2.0000 1.000 11970.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5092 -0.0202 2.0015 5.0000 5.0000 0.0000 50.0060 49.8920 0.0000 0.0000 50.000
+ 4 -1.5000 1.000 12288.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5069 -0.0152 2.0011 5.0000 5.0000 0.0000 50.0050 49.9840 0.0000 0.0000 50.000
+ 5 -1.0000 1.000 12752.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5047 -0.0101 2.0007 5.0000 5.0000 0.0000 50.0040 49.8330 0.0000 0.0000 50.000
+ 6 -0.5000 1.000 13339.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5023 -0.0051 2.0004 5.0000 5.0000 0.0000 50.0030 49.8630 0.0000 0.0000 50.000
+ 7 0.0000 1.000 14336.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 50.0010 49.9700 0.0000 0.0000 50.000
+ 8 0.5000 1.000 14846.000 1972.000 0.959 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4976 0.0051 1.9996 5.0000 5.0000 0.0000 50.0000 49.8730 0.0000 0.0000 50.000
+ 9 1.0000 1.000 15030.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4952 0.0101 1.9993 5.0000 5.0000 0.0000 49.9980 49.8410 0.0000 0.0000 50.000
+ 10 1.5000 1.000 15590.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4927 0.0152 1.9989 5.0000 5.0000 0.0000 50.0040 49.8810 0.0000 0.0000 50.000
+ 11 2.0000 1.000 15661.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4902 0.0203 1.9985 5.0000 5.0000 0.0000 50.0020 49.9300 0.0000 0.0000 50.000
+ 12 2.5000 1.000 15162.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4877 0.0253 1.9981 5.0000 5.0000 0.0000 50.0020 49.9020 0.0000 0.0000 50.000
+ 13 3.0000 1.000 14255.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4851 0.0304 1.9978 5.0000 5.0000 0.0000 50.0040 50.0100 0.0000 0.0000 50.000
+# Sum of Counts = 177411
+# Center of Mass = 0.198167+/-0.004390
+# Full Width Half-Maximum = 3.655404+/-0.007708
+# 9:52:42 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0143.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0143.dat
new file mode 100644
index 0000000..401c521
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0143.dat
@@ -0,0 +1,55 @@
+# scan = 143
+# date = 6/26/2012
+# time = 9:53:28 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0.5 0 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+# ubmatrix = 0.001075,-0.005726,-0.084537,0.253778,0.126889,0.000358,-0.000031,-0.219706,0.002410
+# mode = 0
+# plane_normal = 0.028497,0.000000,0.999594
+# ubconf = UB26Jun2012_95114AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 61.4375 1.000 77.000 2137.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4807 0.0158 2.0247 5.0000 5.0000 0.0000 49.9940 49.8840 0.0000 0.0000 50.000
+ 2 61.5376 1.000 99.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4819 0.0159 2.0221 5.0000 5.0000 0.0000 49.9960 49.8850 0.0000 0.0000 50.000
+ 3 61.6376 1.000 142.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4830 0.0159 2.0196 5.0000 5.0000 0.0000 49.9950 49.9390 0.0000 0.0000 50.000
+ 4 61.7376 1.000 195.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4842 0.0160 2.0170 5.0000 5.0000 0.0000 49.9990 49.8760 0.0000 0.0000 50.000
+ 5 61.8376 1.000 292.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4853 0.0160 2.0144 5.0000 5.0000 0.0000 50.0030 49.9490 0.0000 0.0000 50.000
+ 6 61.9376 1.000 474.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4865 0.0160 2.0118 5.0000 5.0000 0.0000 49.9980 49.8790 0.0000 0.0000 50.000
+ 7 62.0376 1.000 819.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4876 0.0161 2.0092 5.0000 5.0000 0.0000 49.9960 49.8970 0.0000 0.0000 50.000
+ 8 62.1376 1.000 1975.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4888 0.0161 2.0066 5.0000 5.0000 0.0000 49.9980 49.8990 0.0000 0.0000 50.000
+ 9 62.2376 1.000 5170.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4899 0.0161 2.0040 5.0000 5.0000 0.0000 49.9970 49.9830 0.0000 0.0000 50.000
+ 10 62.3376 1.000 10879.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4911 0.0162 2.0014 5.0000 5.0000 0.0000 50.0040 49.9590 0.0000 0.0000 50.000
+ 11 62.4376 1.000 15372.000 1991.000 0.968 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4922 0.0162 1.9988 5.0000 5.0000 0.0000 50.0010 49.9920 0.0000 0.0000 50.000
+ 12 62.5376 1.000 14549.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4934 0.0163 1.9962 5.0000 5.0000 0.0000 50.0000 49.9270 0.0000 0.0000 50.000
+ 13 62.6376 1.000 8390.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4945 0.0163 1.9935 5.0000 5.0000 0.0000 50.0010 49.9520 0.0000 0.0000 50.000
+ 14 62.7376 1.000 3976.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4957 0.0163 1.9909 5.0000 5.0000 0.0000 50.0000 49.8680 0.0000 0.0000 50.000
+ 15 62.8376 1.000 1886.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4968 0.0164 1.9883 5.0000 5.0000 0.0000 49.9970 49.9160 0.0000 0.0000 50.000
+ 16 62.9376 1.000 858.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4979 0.0164 1.9856 5.0000 5.0000 0.0000 49.9960 49.9740 0.0000 0.0000 50.000
+ 17 63.0376 1.000 400.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4991 0.0164 1.9830 5.0000 5.0000 0.0000 50.0000 49.9510 0.0000 0.0000 50.000
+ 18 63.1376 1.000 211.000 1988.000 0.967 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5002 0.0165 1.9803 5.0000 5.0000 0.0000 49.9970 49.9790 0.0000 0.0000 50.000
+ 19 63.2376 1.000 154.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5013 0.0165 1.9776 5.0000 5.0000 0.0000 49.9990 49.8310 0.0000 0.0000 50.000
+ 20 63.3376 1.000 82.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5025 0.0165 1.9750 5.0000 5.0000 0.0000 49.9980 49.9430 0.0000 0.0000 50.000
+ 21 63.4376 1.000 69.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5036 0.0166 1.9723 5.0000 5.0000 0.0000 49.9970 49.8660 0.0000 0.0000 50.000
+# Sum of Counts = 66069
+# Center of Mass = 62.472297+/-0.343720
+# Full Width Half-Maximum = 0.422516+/-0.150076
+# 9:54:02 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0144.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0144.dat
new file mode 100644
index 0000000..fda18f6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0144.dat
@@ -0,0 +1,55 @@
+# scan = 144
+# date = 6/26/2012
+# time = 9:54:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0.5 0 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+# ubmatrix = 0.001075,-0.005726,-0.084537,0.253778,0.126889,0.000358,-0.000031,-0.219706,0.002410
+# mode = 0
+# plane_normal = 0.028497,0.000000,0.999594
+# ubconf = UB26Jun2012_95114AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 48.6360 61.4376 1.000 1.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2794 0.4740 0.0156 1.9248 5.0000 5.0000 0.0000 49.9970 49.8740 0.0000 0.0000 50.000
+ 2 48.8360 61.5376 1.000 1.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2843 0.4758 0.0157 1.9322 5.0000 5.0000 0.0000 49.9950 49.9560 0.0000 0.0000 50.000
+ 3 49.0360 61.6376 1.000 2.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2892 0.4777 0.0157 1.9396 5.0000 5.0000 0.0000 49.9990 49.8970 0.0000 0.0000 50.000
+ 4 49.2360 61.7376 1.000 1.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2942 0.4795 0.0158 1.9470 5.0000 5.0000 0.0000 50.0040 49.8930 0.0000 0.0000 50.000
+ 5 49.4360 61.8376 1.000 11.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2991 0.4813 0.0159 1.9544 5.0000 5.0000 0.0000 49.9990 49.9110 0.0000 0.0000 50.000
+ 6 49.6360 61.9376 1.000 33.000 2137.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3040 0.4831 0.0159 1.9619 5.0000 5.0000 0.0000 50.0000 49.9250 0.0000 0.0000 50.000
+ 7 49.8360 62.0376 1.000 148.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3089 0.4850 0.0160 1.9693 5.0000 5.0000 0.0000 50.0020 49.9460 0.0000 0.0000 50.000
+ 8 50.0360 62.1376 1.000 687.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3139 0.4868 0.0160 1.9767 5.0000 5.0000 0.0000 50.0020 49.9230 0.0000 0.0000 50.000
+ 9 50.2360 62.2376 1.000 3309.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3188 0.4886 0.0161 1.9840 5.0000 5.0000 0.0000 49.9970 49.9370 0.0000 0.0000 50.000
+ 10 50.4360 62.3376 1.000 9258.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3237 0.4904 0.0162 1.9914 5.0000 5.0000 0.0000 49.9980 49.8640 0.0000 0.0000 50.000
+ 11 50.6360 62.4376 1.000 14900.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3286 0.4922 0.0162 1.9988 5.0000 5.0000 0.0000 49.9940 49.9130 0.0000 0.0000 50.000
+ 12 50.8360 62.5376 1.000 14376.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3335 0.4940 0.0163 2.0062 5.0000 5.0000 0.0000 50.0050 49.8780 0.0000 0.0000 50.000
+ 13 51.0360 62.6376 1.000 8203.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3384 0.4959 0.0163 2.0135 5.0000 5.0000 0.0000 49.9960 49.9230 0.0000 0.0000 50.000
+ 14 51.2360 62.7376 1.000 2902.000 2176.000 1.058 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3433 0.4977 0.0164 2.0209 5.0000 5.0000 0.0000 49.9990 49.8700 0.0000 0.0000 50.000
+ 15 51.4360 62.8376 1.000 611.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3482 0.4995 0.0165 2.0282 5.0000 5.0000 0.0000 50.0050 49.8960 0.0000 0.0000 50.000
+ 16 51.6360 62.9376 1.000 165.000 2176.000 1.058 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3530 0.5013 0.0165 2.0356 5.0000 5.0000 0.0000 50.0010 49.9130 0.0000 0.0000 50.000
+ 17 51.8360 63.0376 1.000 31.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3579 0.5031 0.0166 2.0429 5.0000 5.0000 0.0000 49.9990 49.8420 0.0000 0.0000 50.000
+ 18 52.0360 63.1376 1.000 7.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3628 0.5049 0.0166 2.0503 5.0000 5.0000 0.0000 49.9950 49.8800 0.0000 0.0000 50.000
+ 19 52.2360 63.2376 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3677 0.5067 0.0167 2.0576 5.0000 5.0000 0.0000 49.9980 49.9030 0.0000 0.0000 50.000
+ 20 52.4360 63.3376 1.000 1.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3725 0.5085 0.0167 2.0649 5.0000 5.0000 0.0000 50.0050 49.9120 0.0000 0.0000 50.000
+ 21 52.6360 63.4376 1.000 0.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3774 0.5103 0.0168 2.0722 5.0000 5.0000 0.0000 49.9980 49.8300 0.0000 0.0000 50.000
+# Sum of Counts = 54651
+# Center of Mass = 50.724675+/-0.306859
+# Full Width Half-Maximum = 0.569763+/-0.190063
+# 9:55:08 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0145.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0145.dat
new file mode 100644
index 0000000..3865efc
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0145.dat
@@ -0,0 +1,55 @@
+# scan = 145
+# date = 6/26/2012
+# time = 9:56:13 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0.5 0 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001080,-0.005751,-0.084537,0.254924,0.127462,0.000358,-0.000031,-0.220699,0.002410
+# mode = 0
+# plane_normal = 0.028497,0.000000,0.999594
+# ubconf = UB26Jun2012_95602AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 61.4818 1.000 70.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4793 0.0158 2.0280 5.0000 5.0000 0.0000 49.9990 49.9390 0.0000 0.0000 50.000
+ 2 61.5818 1.000 124.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4805 0.0158 2.0254 5.0000 5.0000 0.0000 50.0010 49.8660 0.0000 0.0000 50.000
+ 3 61.6818 1.000 140.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4816 0.0159 2.0229 5.0000 5.0000 0.0000 50.0010 49.8670 0.0000 0.0000 50.000
+ 4 61.7818 1.000 192.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4828 0.0159 2.0203 5.0000 5.0000 0.0000 49.9980 49.8780 0.0000 0.0000 50.000
+ 5 61.8818 1.000 309.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4839 0.0159 2.0177 5.0000 5.0000 0.0000 49.9990 49.9380 0.0000 0.0000 50.000
+ 6 61.9818 1.000 440.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4851 0.0160 2.0151 5.0000 5.0000 0.0000 49.9990 49.8550 0.0000 0.0000 50.000
+ 7 62.0818 1.000 858.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4862 0.0160 2.0125 5.0000 5.0000 0.0000 49.9940 49.7890 0.0000 0.0000 50.000
+ 8 62.1818 1.000 1959.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4874 0.0161 2.0099 5.0000 5.0000 0.0000 50.0020 49.8890 0.0000 0.0000 50.000
+ 9 62.2818 1.000 4934.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4885 0.0161 2.0073 5.0000 5.0000 0.0000 50.0000 49.9200 0.0000 0.0000 50.000
+ 10 62.3818 1.000 10407.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4897 0.0161 2.0047 5.0000 5.0000 0.0000 49.9990 49.9010 0.0000 0.0000 50.000
+ 11 62.4818 1.000 15501.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4908 0.0162 2.0021 5.0000 5.0000 0.0000 50.0020 49.9320 0.0000 0.0000 50.000
+ 12 62.5818 1.000 14276.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4920 0.0162 1.9994 5.0000 5.0000 0.0000 50.0010 49.9630 0.0000 0.0000 50.000
+ 13 62.6818 1.000 8222.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4931 0.0162 1.9968 5.0000 5.0000 0.0000 49.9950 49.8790 0.0000 0.0000 50.000
+ 14 62.7818 1.000 3804.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4942 0.0163 1.9942 5.0000 5.0000 0.0000 50.0010 49.9250 0.0000 0.0000 50.000
+ 15 62.8818 1.000 1736.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4954 0.0163 1.9915 5.0000 5.0000 0.0000 50.0010 49.9160 0.0000 0.0000 50.000
+ 16 62.9818 1.000 805.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4965 0.0164 1.9889 5.0000 5.0000 0.0000 50.0010 49.9040 0.0000 0.0000 50.000
+ 17 63.0818 1.000 378.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4976 0.0164 1.9862 5.0000 5.0000 0.0000 50.0030 49.9270 0.0000 0.0000 50.000
+ 18 63.1818 1.000 196.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4988 0.0164 1.9835 5.0000 5.0000 0.0000 49.9990 49.8850 0.0000 0.0000 50.000
+ 19 63.2818 1.000 127.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4999 0.0165 1.9809 5.0000 5.0000 0.0000 50.0030 49.9110 0.0000 0.0000 50.000
+ 20 63.3818 1.000 73.000 2157.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5010 0.0165 1.9782 5.0000 5.0000 0.0000 50.0030 49.9370 0.0000 0.0000 50.000
+ 21 63.4818 1.000 60.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5021 0.0165 1.9755 5.0000 5.0000 0.0000 49.9980 49.8730 0.0000 0.0000 50.000
+# Sum of Counts = 64611
+# Center of Mass = 62.514451+/-0.347811
+# Full Width Half-Maximum = 0.419830+/-0.151012
+# 9:56:47 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0146.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0146.dat
new file mode 100644
index 0000000..beac10e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0146.dat
@@ -0,0 +1,55 @@
+# scan = 146
+# date = 6/26/2012
+# time = 9:59:31 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0.5 0 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224171,0.002399
+# mode = 0
+# plane_normal = 0.017115,0.016763,0.600112
+# ubconf = UB26Jun2012_95723AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 61.6057 1.000 107.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4883 0.0000 2.0260 5.0000 5.0000 0.0000 50.0040 49.8710 0.0000 0.0000 50.000
+ 2 61.7057 1.000 130.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4895 0.0000 2.0234 5.0000 5.0000 0.0000 50.0020 49.8990 0.0000 0.0000 50.000
+ 3 61.8057 1.000 233.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4907 0.0000 2.0208 5.0000 5.0000 0.0000 50.0020 49.8140 0.0000 0.0000 50.000
+ 4 61.9057 1.000 304.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4919 0.0000 2.0183 5.0000 5.0000 0.0000 50.0010 49.9020 0.0000 0.0000 50.000
+ 5 62.0057 1.000 546.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4930 0.0000 2.0157 5.0000 5.0000 0.0000 49.9940 49.9840 0.0000 0.0000 50.000
+ 6 62.1057 1.000 1059.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4942 0.0000 2.0131 5.0000 5.0000 0.0000 49.9970 49.9680 0.0000 0.0000 50.000
+ 7 62.2057 1.000 2401.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4954 0.0000 2.0105 5.0000 5.0000 0.0000 50.0010 49.9370 0.0000 0.0000 50.000
+ 8 62.3057 1.000 6075.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4965 0.0000 2.0079 5.0000 5.0000 0.0000 49.9990 49.8910 0.0000 0.0000 50.000
+ 9 62.4057 1.000 11796.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4977 0.0000 2.0052 5.0000 5.0000 0.0000 49.9980 49.8810 0.0000 0.0000 50.000
+ 10 62.5057 1.000 16248.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4988 0.0000 2.0026 5.0000 5.0000 0.0000 50.0020 49.9180 0.0000 0.0000 50.000
+ 11 62.6057 1.000 13063.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 50.0010 49.9360 0.0000 0.0000 50.000
+ 12 62.7057 1.000 6896.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5012 0.0000 1.9974 5.0000 5.0000 0.0000 50.0020 49.9090 0.0000 0.0000 50.000
+ 13 62.8057 1.000 3164.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5023 0.0000 1.9947 5.0000 5.0000 0.0000 49.9990 49.8720 0.0000 0.0000 50.000
+ 14 62.9057 1.000 1489.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5035 0.0000 1.9921 5.0000 5.0000 0.0000 49.9990 49.8950 0.0000 0.0000 50.000
+ 15 63.0057 1.000 670.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5046 0.0000 1.9894 5.0000 5.0000 0.0000 50.0010 49.9320 0.0000 0.0000 50.000
+ 16 63.1057 1.000 293.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5058 0.0000 1.9868 5.0000 5.0000 0.0000 50.0080 49.8890 0.0000 0.0000 50.000
+ 17 63.2057 1.000 167.000 1952.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5069 0.0000 1.9841 5.0000 5.0000 0.0000 50.0030 49.9640 0.0000 0.0000 50.000
+ 18 63.3057 1.000 118.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5081 0.0000 1.9814 5.0000 5.0000 0.0000 49.9970 49.8960 0.0000 0.0000 50.000
+ 19 63.4057 1.000 80.000 2173.000 1.057 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5092 0.0000 1.9788 5.0000 5.0000 0.0000 50.0010 49.8970 0.0000 0.0000 50.000
+ 20 63.5057 1.000 45.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5104 0.0000 1.9761 5.0000 5.0000 0.0000 50.0000 49.8910 0.0000 0.0000 50.000
+ 21 63.6057 1.000 53.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5115 0.0000 1.9734 5.0000 5.0000 0.0000 50.0020 49.8370 0.0000 0.0000 50.000
+# Sum of Counts = 64937
+# Center of Mass = 62.517564+/-0.346954
+# Full Width Half-Maximum = 0.415380+/-0.151682
+# 10:00:06 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0147.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0147.dat
new file mode 100644
index 0000000..f781146
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0147.dat
@@ -0,0 +1,55 @@
+# scan = 147
+# date = 6/26/2012
+# time = 10:01:05 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224172,0.002399
+# mode = 0
+# plane_normal = 0.017150,0.016798,0.601347
+# ubconf = UB26Jun2012_100019AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.7913 1.000 214.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9941 0.0000 1.0525 5.0000 5.0000 0.0000 50.0000 49.8220 0.0000 0.0000 50.000
+ 2 103.8913 1.000 305.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9947 0.0000 1.0472 5.0000 5.0000 0.0000 49.9970 49.8050 0.0000 0.0000 50.000
+ 3 103.9913 1.000 436.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9953 0.0000 1.0420 5.0000 5.0000 0.0000 49.9940 49.7800 0.0000 0.0000 50.000
+ 4 104.0913 1.000 676.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9959 0.0000 1.0368 5.0000 5.0000 0.0000 49.9960 49.7790 0.0000 0.0000 50.000
+ 5 104.1913 1.000 1203.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9965 0.0000 1.0315 5.0000 5.0000 0.0000 50.0030 49.8890 0.0000 0.0000 50.000
+ 6 104.2913 1.000 2934.000 2010.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9971 0.0000 1.0263 5.0000 5.0000 0.0000 50.0080 49.7290 0.0000 0.0000 50.000
+ 7 104.3913 1.000 8532.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9977 0.0000 1.0210 5.0000 5.0000 0.0000 49.9980 49.8890 0.0000 0.0000 50.000
+ 8 104.4913 1.000 22991.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9982 0.0000 1.0158 5.0000 5.0000 0.0000 50.0010 49.8440 0.0000 0.0000 50.000
+ 9 104.5913 1.000 45115.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9988 0.0000 1.0105 5.0000 5.0000 0.0000 50.0010 49.8030 0.0000 0.0000 50.000
+ 10 104.6913 1.000 60104.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9994 0.0000 1.0053 5.0000 5.0000 0.0000 49.9940 49.8320 0.0000 0.0000 50.000
+ 11 104.7913 1.000 55027.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 50.0020 49.8760 0.0000 0.0000 50.000
+ 12 104.8913 1.000 35697.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0006 0.0000 0.9947 5.0000 5.0000 0.0000 50.0000 49.9110 0.0000 0.0000 50.000
+ 13 104.9913 1.000 16811.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0012 0.0000 0.9895 5.0000 5.0000 0.0000 49.9970 49.8260 0.0000 0.0000 50.000
+ 14 105.0913 1.000 7437.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0017 0.0000 0.9842 5.0000 5.0000 0.0000 50.0020 49.8870 0.0000 0.0000 50.000
+ 15 105.1913 1.000 3095.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0023 0.0000 0.9789 5.0000 5.0000 0.0000 49.9990 49.8340 0.0000 0.0000 50.000
+ 16 105.2913 1.000 1338.000 1984.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0029 0.0000 0.9737 5.0000 5.0000 0.0000 49.9980 49.8580 0.0000 0.0000 50.000
+ 17 105.3913 1.000 662.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0034 0.0000 0.9684 5.0000 5.0000 0.0000 50.0000 49.8250 0.0000 0.0000 50.000
+ 18 105.4913 1.000 390.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0040 0.0000 0.9631 5.0000 5.0000 0.0000 49.9990 49.8070 0.0000 0.0000 50.000
+ 19 105.5913 1.000 241.000 2173.000 1.057 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0045 0.0000 0.9578 5.0000 5.0000 0.0000 50.0000 49.8540 0.0000 0.0000 50.000
+ 20 105.6913 1.000 197.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0051 0.0000 0.9525 5.0000 5.0000 0.0000 50.0000 49.8900 0.0000 0.0000 50.000
+ 21 105.7913 1.000 132.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0056 0.0000 0.9472 5.0000 5.0000 0.0000 49.9990 49.8570 0.0000 0.0000 50.000
+# Sum of Counts = 263537
+# Center of Mass = 104.728309+/-0.288509
+# Full Width Half-Maximum = 0.397991+/-0.138862
+# 10:01:40 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0148.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0148.dat
new file mode 100644
index 0000000..e34b7c9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0148.dat
@@ -0,0 +1,55 @@
+# scan = 148
+# date = 6/26/2012
+# time = 10:02:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224172,0.002399
+# mode = 0
+# plane_normal = 0.017150,0.016798,0.601347
+# ubconf = UB26Jun2012_100019AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.8036 103.7257 1.000 3.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6418 0.9725 0.0000 0.9762 5.0000 5.0000 0.0000 49.9980 49.8140 0.0000 0.0000 50.000
+ 2 64.0037 103.8257 1.000 6.000 1951.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6464 0.9752 0.0000 0.9790 5.0000 5.0000 0.0000 50.0020 49.7740 0.0000 0.0000 50.000
+ 3 64.2037 103.9257 1.000 15.000 2163.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6510 0.9779 0.0000 0.9817 5.0000 5.0000 0.0000 49.9980 49.8490 0.0000 0.0000 50.000
+ 4 64.4037 104.0257 1.000 17.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6556 0.9807 0.0000 0.9844 5.0000 5.0000 0.0000 49.9990 49.9040 0.0000 0.0000 50.000
+ 5 64.6037 104.1257 1.000 78.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6602 0.9834 0.0000 0.9872 5.0000 5.0000 0.0000 49.9980 49.7730 0.0000 0.0000 50.000
+ 6 64.8037 104.2257 1.000 431.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6648 0.9861 0.0000 0.9899 5.0000 5.0000 0.0000 50.0020 49.8180 0.0000 0.0000 50.000
+ 7 65.0037 104.3257 1.000 2766.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6693 0.9888 0.0000 0.9926 5.0000 5.0000 0.0000 49.9950 49.8290 0.0000 0.0000 50.000
+ 8 65.2037 104.4257 1.000 11715.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6739 0.9915 0.0000 0.9953 5.0000 5.0000 0.0000 50.0000 49.8910 0.0000 0.0000 50.000
+ 9 65.4037 104.5257 1.000 33217.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6785 0.9942 0.0000 0.9980 5.0000 5.0000 0.0000 50.0030 49.8020 0.0000 0.0000 50.000
+ 10 65.6037 104.6257 1.000 56457.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6830 0.9969 0.0000 1.0007 5.0000 5.0000 0.0000 50.0010 49.8820 0.0000 0.0000 50.000
+ 11 65.8037 104.7257 1.000 61365.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9996 0.0000 1.0034 5.0000 5.0000 0.0000 50.0000 49.8020 0.0000 0.0000 50.000
+ 12 66.0037 104.8257 1.000 44179.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6921 1.0023 0.0000 1.0062 5.0000 5.0000 0.0000 50.0020 49.7480 0.0000 0.0000 50.000
+ 13 66.2037 104.9257 1.000 19273.000 2170.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6967 1.0050 0.0000 1.0089 5.0000 5.0000 0.0000 50.0010 49.8440 0.0000 0.0000 50.000
+ 14 66.4037 105.0257 1.000 5043.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7012 1.0077 0.0000 1.0116 5.0000 5.0000 0.0000 49.9980 49.8510 0.0000 0.0000 50.000
+ 15 66.6037 105.1257 1.000 1030.000 2154.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7058 1.0104 0.0000 1.0143 5.0000 5.0000 0.0000 50.0000 49.8440 0.0000 0.0000 50.000
+ 16 66.8037 105.2257 1.000 189.000 2156.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7103 1.0131 0.0000 1.0169 5.0000 5.0000 0.0000 50.0000 49.7690 0.0000 0.0000 50.000
+ 17 67.0037 105.3257 1.000 58.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7148 1.0157 0.0000 1.0196 5.0000 5.0000 0.0000 49.9980 49.7400 0.0000 0.0000 50.000
+ 18 67.2037 105.4257 1.000 14.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7193 1.0184 0.0000 1.0223 5.0000 5.0000 0.0000 49.9980 49.8020 0.0000 0.0000 50.000
+ 19 67.4037 105.5257 1.000 13.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7238 1.0211 0.0000 1.0250 5.0000 5.0000 0.0000 49.9980 49.8490 0.0000 0.0000 50.000
+ 20 67.6037 105.6257 1.000 5.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7284 1.0238 0.0000 1.0277 5.0000 5.0000 0.0000 50.0020 49.8390 0.0000 0.0000 50.000
+ 21 67.8037 105.7257 1.000 7.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7329 1.0264 0.0000 1.0304 5.0000 5.0000 0.0000 49.9990 49.8950 0.0000 0.0000 50.000
+# Sum of Counts = 235881
+# Center of Mass = 65.745652+/-0.191442
+# Full Width Half-Maximum = 0.598387+/-0.117671
+# 10:03:18 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0149.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0149.dat
new file mode 100644
index 0000000..fe2ae2b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0149.dat
@@ -0,0 +1,55 @@
+# scan = 149
+# date = 6/26/2012
+# time = 10:04:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+# mode = 0
+# plane_normal = 0.017150,0.016798,0.601347
+# ubconf = UB26Jun2012_100410AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.6965 1.000 214.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9937 0.0000 1.0551 5.0000 5.0000 0.0000 50.0010 49.8130 0.0000 0.0000 50.000
+ 2 103.7965 1.000 247.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9944 0.0000 1.0498 5.0000 5.0000 0.0000 49.9960 49.8510 0.0000 0.0000 50.000
+ 3 103.8965 1.000 329.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9950 0.0000 1.0446 5.0000 5.0000 0.0000 50.0000 49.7730 0.0000 0.0000 50.000
+ 4 103.9965 1.000 519.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9956 0.0000 1.0394 5.0000 5.0000 0.0000 49.9970 49.8000 0.0000 0.0000 50.000
+ 5 104.0965 1.000 823.000 2166.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9962 0.0000 1.0341 5.0000 5.0000 0.0000 49.9970 49.8660 0.0000 0.0000 50.000
+ 6 104.1965 1.000 1527.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9968 0.0000 1.0289 5.0000 5.0000 0.0000 50.0010 49.8780 0.0000 0.0000 50.000
+ 7 104.2965 1.000 3884.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9974 0.0000 1.0237 5.0000 5.0000 0.0000 50.0000 49.8180 0.0000 0.0000 50.000
+ 8 104.3965 1.000 11783.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9979 0.0000 1.0184 5.0000 5.0000 0.0000 49.9950 49.8500 0.0000 0.0000 50.000
+ 9 104.4965 1.000 29494.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9985 0.0000 1.0132 5.0000 5.0000 0.0000 50.0020 49.7980 0.0000 0.0000 50.000
+ 10 104.5965 1.000 52736.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9991 0.0000 1.0079 5.0000 5.0000 0.0000 50.0020 49.8400 0.0000 0.0000 50.000
+ 11 104.6965 1.000 62369.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9997 0.0000 1.0027 5.0000 5.0000 0.0000 50.0000 49.8600 0.0000 0.0000 50.000
+ 12 104.7965 1.000 52276.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0003 0.0000 0.9974 5.0000 5.0000 0.0000 50.0010 49.9030 0.0000 0.0000 50.000
+ 13 104.8965 1.000 30795.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0009 0.0000 0.9921 5.0000 5.0000 0.0000 50.0000 49.8640 0.0000 0.0000 50.000
+ 14 104.9965 1.000 14045.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0014 0.0000 0.9869 5.0000 5.0000 0.0000 50.0020 49.8380 0.0000 0.0000 50.000
+ 15 105.0965 1.000 6119.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0020 0.0000 0.9816 5.0000 5.0000 0.0000 49.9960 49.8450 0.0000 0.0000 50.000
+ 16 105.1965 1.000 2544.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0026 0.0000 0.9763 5.0000 5.0000 0.0000 49.9960 49.8260 0.0000 0.0000 50.000
+ 17 105.2965 1.000 1097.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0031 0.0000 0.9711 5.0000 5.0000 0.0000 50.0000 49.7360 0.0000 0.0000 50.000
+ 18 105.3965 1.000 594.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0037 0.0000 0.9658 5.0000 5.0000 0.0000 49.9950 49.6910 0.0000 0.0000 50.000
+ 19 105.4965 1.000 327.000 1995.000 0.970 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0043 0.0000 0.9605 5.0000 5.0000 0.0000 50.0010 49.8240 0.0000 0.0000 50.000
+ 20 105.5965 1.000 250.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0048 0.0000 0.9552 5.0000 5.0000 0.0000 50.0050 49.8390 0.0000 0.0000 50.000
+ 21 105.6965 1.000 179.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0054 0.0000 0.9500 5.0000 5.0000 0.0000 50.0040 49.7750 0.0000 0.0000 50.000
+# Sum of Counts = 272151
+# Center of Mass = 104.705606+/-0.283844
+# Full Width Half-Maximum = 0.399040+/-0.136421
+# 10:04:50 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0150.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0150.dat
new file mode 100644
index 0000000..0a1ebe1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0150.dat
@@ -0,0 +1,41 @@
+# scan = 150
+# date = 6/26/2012
+# time = 10:05:22 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan sgu 3 0 0.5
+# builtin_command = scan sgu 3 0 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+# mode = 0
+# plane_normal = 0.027037,0.026483,0.948016
+# ubconf = UB26Jun2012_100500AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 3.0000 1.000 44162.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9855 0.0282 1.0006 5.0000 5.0000 0.0000 49.9950 49.8230 0.0000 0.0000 50.000
+ 2 2.5000 1.000 51623.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9907 0.0181 1.0013 5.0000 5.0000 0.0000 49.9970 49.8000 0.0000 0.0000 50.000
+ 3 2.0000 1.000 58045.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9957 0.0081 1.0021 5.0000 5.0000 0.0000 50.0020 49.8130 0.0000 0.0000 50.000
+ 4 1.5000 1.000 63210.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0007 -0.0020 1.0028 5.0000 5.0000 0.0000 49.9950 49.8630 0.0000 0.0000 50.000
+ 5 1.0000 1.000 66042.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0056 -0.0121 1.0036 5.0000 5.0000 0.0000 50.0040 49.8240 0.0000 0.0000 50.000
+ 6 0.5000 1.000 67782.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0104 -0.0222 1.0043 5.0000 5.0000 0.0000 50.0010 49.7910 0.0000 0.0000 50.000
+ 7 0.0000 1.000 66322.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0152 -0.0323 1.0051 5.0000 5.0000 0.0000 50.0020 49.8080 0.0000 0.0000 50.000
+# Sum of Counts = 417186
+# Center of Mass = 1.372006+/-0.003358
+# Full Width Half-Maximum = 1.939137+/-0.003543
+# 10:05:45 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0151.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0151.dat
new file mode 100644
index 0000000..ca1a704
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0151.dat
@@ -0,0 +1,55 @@
+# scan = 151
+# date = 6/26/2012
+# time = 10:06:27 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+# mode = 0
+# plane_normal = 0.027037,0.026483,0.948016
+# ubconf = UB26Jun2012_100500AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.6965 1.000 183.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9996 -0.0120 1.0559 5.0000 5.0000 0.0000 49.9990 49.9700 0.0000 0.0000 50.000
+ 2 103.7965 1.000 272.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0002 -0.0120 1.0507 5.0000 5.0000 0.0000 50.0040 49.9110 0.0000 0.0000 50.000
+ 3 103.8965 1.000 358.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0008 -0.0120 1.0455 5.0000 5.0000 0.0000 50.0000 49.8150 0.0000 0.0000 50.000
+ 4 103.9965 1.000 541.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0014 -0.0121 1.0403 5.0000 5.0000 0.0000 49.9970 49.7720 0.0000 0.0000 50.000
+ 5 104.0965 1.000 800.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0020 -0.0121 1.0350 5.0000 5.0000 0.0000 49.9960 49.7830 0.0000 0.0000 50.000
+ 6 104.1965 1.000 1510.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0026 -0.0121 1.0298 5.0000 5.0000 0.0000 50.0020 49.9280 0.0000 0.0000 50.000
+ 7 104.2965 1.000 3742.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0032 -0.0121 1.0246 5.0000 5.0000 0.0000 49.9990 49.8610 0.0000 0.0000 50.000
+ 8 104.3965 1.000 11069.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0038 -0.0121 1.0193 5.0000 5.0000 0.0000 49.9980 49.8980 0.0000 0.0000 50.000
+ 9 104.4965 1.000 29048.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0044 -0.0121 1.0141 5.0000 5.0000 0.0000 49.9990 49.7650 0.0000 0.0000 50.000
+ 10 104.5965 1.000 53436.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0050 -0.0121 1.0088 5.0000 5.0000 0.0000 50.0010 49.8480 0.0000 0.0000 50.000
+ 11 104.6965 1.000 66300.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0056 -0.0121 1.0036 5.0000 5.0000 0.0000 49.9950 49.8880 0.0000 0.0000 50.000
+ 12 104.7965 1.000 58320.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0062 -0.0121 0.9983 5.0000 5.0000 0.0000 50.0010 49.8030 0.0000 0.0000 50.000
+ 13 104.8965 1.000 36461.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0068 -0.0121 0.9930 5.0000 5.0000 0.0000 49.9990 49.8070 0.0000 0.0000 50.000
+ 14 104.9965 1.000 16965.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0073 -0.0121 0.9878 5.0000 5.0000 0.0000 50.0040 49.8090 0.0000 0.0000 50.000
+ 15 105.0965 1.000 7094.000 2177.000 1.059 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0079 -0.0121 0.9825 5.0000 5.0000 0.0000 49.9990 49.8790 0.0000 0.0000 50.000
+ 16 105.1965 1.000 3041.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0085 -0.0121 0.9772 5.0000 5.0000 0.0000 50.0030 49.8160 0.0000 0.0000 50.000
+ 17 105.2965 1.000 1293.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0091 -0.0121 0.9720 5.0000 5.0000 0.0000 49.9990 49.7690 0.0000 0.0000 50.000
+ 18 105.3965 1.000 686.000 1987.000 0.966 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0096 -0.0121 0.9667 5.0000 5.0000 0.0000 49.9970 49.7890 0.0000 0.0000 50.000
+ 19 105.4965 1.000 364.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0102 -0.0122 0.9614 5.0000 5.0000 0.0000 49.9990 49.8480 0.0000 0.0000 50.000
+ 20 105.5965 1.000 265.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0107 -0.0122 0.9561 5.0000 5.0000 0.0000 50.0030 49.7430 0.0000 0.0000 50.000
+ 21 105.6965 1.000 183.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0113 -0.0122 0.9509 5.0000 5.0000 0.0000 50.0020 49.7460 0.0000 0.0000 50.000
+# Sum of Counts = 291931
+# Center of Mass = 104.717881+/-0.274092
+# Full Width Half-Maximum = 0.398963+/-0.132404
+# 10:07:01 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0152.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0152.dat
new file mode 100644
index 0000000..30f479a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0152.dat
@@ -0,0 +1,55 @@
+# scan = 152
+# date = 6/26/2012
+# time = 10:23:10 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0 0 3) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.1319 1.000 741.000 1407.000 0.684 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 50.0520 49.2400 0.0000 0.0000 50.000
+ 2 30.2320 1.000 976.000 1446.000 0.703 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 50.0490 49.2580 0.0000 0.0000 50.000
+ 3 30.3320 1.000 1368.000 1466.000 0.713 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 50.0460 49.2520 0.0000 0.0000 50.000
+ 4 30.4320 1.000 2068.000 1420.000 0.691 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 50.0480 49.3560 0.0000 0.0000 50.000
+ 5 30.5320 1.000 3572.000 1455.000 0.708 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 50.0510 49.3290 0.0000 0.0000 50.000
+ 6 30.6320 1.000 7155.000 1424.000 0.693 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 50.0500 49.2910 0.0000 0.0000 50.000
+ 7 30.7320 1.000 17389.000 1394.000 0.678 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 50.0490 49.2450 0.0000 0.0000 50.000
+ 8 30.8320 1.000 40724.000 1399.000 0.680 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 50.0520 49.3150 0.0000 0.0000 50.000
+ 9 30.9320 1.000 72042.000 1426.000 0.694 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 50.0440 49.2480 0.0000 0.0000 50.000
+ 10 31.0320 1.000 93458.000 1434.000 0.697 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 50.0430 49.2560 0.0000 0.0000 50.000
+ 11 31.1320 1.000 95643.000 1407.000 0.684 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 50.0460 49.1590 0.0000 0.0000 50.000
+ 12 31.2320 1.000 79748.000 1400.000 0.681 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 50.0460 49.2400 0.0000 0.0000 50.000
+ 13 31.3320 1.000 49876.000 1396.000 0.679 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 50.0450 49.3030 0.0000 0.0000 50.000
+ 14 31.4320 1.000 24073.000 1495.000 0.727 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 50.0410 49.2980 0.0000 0.0000 50.000
+ 15 31.5320 1.000 10142.000 1452.000 0.706 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 50.0430 49.2870 0.0000 0.0000 50.000
+ 16 31.6320 1.000 4311.000 1446.000 0.703 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 50.0420 49.2160 0.0000 0.0000 50.000
+ 17 31.7320 1.000 2147.000 1431.000 0.696 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 50.0450 49.3480 0.0000 0.0000 50.000
+ 18 31.8320 1.000 1291.000 1433.000 0.697 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 50.0470 49.3500 0.0000 0.0000 50.000
+ 19 31.9320 1.000 915.000 1391.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 50.0460 49.3460 0.0000 0.0000 50.000
+ 20 32.0320 1.000 583.000 1367.000 0.665 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 50.0410 49.3890 0.0000 0.0000 50.000
+ 21 32.1320 1.000 457.000 1406.000 0.684 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 50.0420 49.3340 0.0000 0.0000 50.000
+# Sum of Counts = 508679
+# Center of Mass = 31.097559+/-0.061663
+# Full Width Half-Maximum = 0.458513+/-0.028238
+# 10:23:44 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0153.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0153.dat
new file mode 100644
index 0000000..85dcc04
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0153.dat
@@ -0,0 +1,43 @@
+# scan = 153
+# date = 6/26/2012
+# time = 10:24:02 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan sgl -4 0 0.5
+# builtin_command = scan sgl -4 0 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0 0 3) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 67849.000 1385.000 0.674 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0238 -0.0476 2.9974 5.0000 5.0000 0.0000 50.0360 49.3340 0.0000 0.0000 50.000
+ 2 -3.5000 1.000 77012.000 1403.000 0.682 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0188 -0.0375 2.9984 5.0000 5.0000 0.0000 50.0300 49.4320 0.0000 0.0000 50.000
+ 3 -3.0000 1.000 86176.000 1378.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0137 -0.0275 2.9991 5.0000 5.0000 0.0000 50.0340 49.3480 0.0000 0.0000 50.000
+ 4 -2.5000 1.000 91719.000 1378.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0087 -0.0175 2.9997 5.0000 5.0000 0.0000 50.0360 49.3650 0.0000 0.0000 50.000
+ 5 -2.0000 1.000 94988.000 1322.000 0.643 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0037 -0.0074 2.9999 5.0000 5.0000 0.0000 50.0310 49.4720 0.0000 0.0000 50.000
+ 6 -1.5000 1.000 94884.000 1386.000 0.674 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0013 0.0026 3.0000 5.0000 5.0000 0.0000 50.0300 49.3040 0.0000 0.0000 50.000
+ 7 -1.0000 1.000 92024.000 1362.000 0.662 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0063 0.0127 2.9998 5.0000 5.0000 0.0000 50.0320 49.3810 0.0000 0.0000 50.000
+ 8 -0.5000 1.000 87815.000 1356.000 0.660 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0113 0.0227 2.9994 5.0000 5.0000 0.0000 50.0320 49.4190 0.0000 0.0000 50.000
+ 9 0.0000 1.000 82321.000 1419.000 0.690 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0164 0.0327 2.9988 5.0000 5.0000 0.0000 50.0260 49.3750 0.0000 0.0000 50.000
+# Sum of Counts = 774788
+# Center of Mass = -1.932138+/-0.003409
+# Full Width Half-Maximum = 2.481571+/-0.003240
+# 10:24:41 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0154.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0154.dat
new file mode 100644
index 0000000..ccb9771
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0154.dat
@@ -0,0 +1,55 @@
+# scan = 154
+# date = 6/26/2012
+# time = 10:25:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.7642 1.000 100.000 1413.000 0.687 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9940 0.0000 1.0524 5.0000 5.0000 0.0000 50.0210 49.5860 0.0000 0.0000 50.000
+ 2 103.8642 1.000 152.000 1358.000 0.661 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9947 0.0000 1.0472 5.0000 5.0000 0.0000 50.0180 49.4660 0.0000 0.0000 50.000
+ 3 103.9642 1.000 212.000 1383.000 0.673 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9953 0.0000 1.0420 5.0000 5.0000 0.0000 50.0160 49.4650 0.0000 0.0000 50.000
+ 4 104.0642 1.000 328.000 1336.000 0.650 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9959 0.0000 1.0367 5.0000 5.0000 0.0000 50.0210 49.2220 0.0000 0.0000 50.000
+ 5 104.1642 1.000 573.000 1365.000 0.664 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9965 0.0000 1.0315 5.0000 5.0000 0.0000 50.0130 49.4020 0.0000 0.0000 50.000
+ 6 104.2642 1.000 1459.000 1460.000 0.710 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9971 0.0000 1.0262 5.0000 5.0000 0.0000 50.0210 49.4130 0.0000 0.0000 50.000
+ 7 104.3642 1.000 4374.000 1388.000 0.675 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9976 0.0000 1.0210 5.0000 5.0000 0.0000 50.0200 49.3310 0.0000 0.0000 50.000
+ 8 104.4642 1.000 12679.000 1399.000 0.680 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9982 0.0000 1.0158 5.0000 5.0000 0.0000 50.0160 49.4380 0.0000 0.0000 50.000
+ 9 104.5642 1.000 27832.000 1357.000 0.660 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9988 0.0000 1.0105 5.0000 5.0000 0.0000 50.0180 49.4280 0.0000 0.0000 50.000
+ 10 104.6642 1.000 40863.000 1312.000 0.638 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9994 0.0000 1.0053 5.0000 5.0000 0.0000 50.0250 49.5070 0.0000 0.0000 50.000
+ 11 104.7642 1.000 41868.000 1355.000 0.659 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 50.0150 49.4470 0.0000 0.0000 50.000
+ 12 104.8642 1.000 30057.000 1414.000 0.688 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0006 0.0000 0.9947 5.0000 5.0000 0.0000 50.0130 49.4600 0.0000 0.0000 50.000
+ 13 104.9642 1.000 15371.000 1372.000 0.667 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0011 0.0000 0.9895 5.0000 5.0000 0.0000 50.0160 49.4930 0.0000 0.0000 50.000
+ 14 105.0642 1.000 6432.000 1392.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0017 0.0000 0.9842 5.0000 5.0000 0.0000 50.0160 49.2840 0.0000 0.0000 50.000
+ 15 105.1642 1.000 2516.000 1353.000 0.658 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0023 0.0000 0.9789 5.0000 5.0000 0.0000 50.0180 49.3220 0.0000 0.0000 50.000
+ 16 105.2642 1.000 1052.000 1431.000 0.696 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0029 0.0000 0.9737 5.0000 5.0000 0.0000 50.0170 49.4480 0.0000 0.0000 50.000
+ 17 105.3642 1.000 475.000 1385.000 0.674 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0034 0.0000 0.9684 5.0000 5.0000 0.0000 50.0200 49.5570 0.0000 0.0000 50.000
+ 18 105.4642 1.000 255.000 1428.000 0.695 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0040 0.0000 0.9631 5.0000 5.0000 0.0000 50.0150 49.6140 0.0000 0.0000 50.000
+ 19 105.5642 1.000 160.000 1383.000 0.673 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0045 0.0000 0.9579 5.0000 5.0000 0.0000 50.0120 49.4930 0.0000 0.0000 50.000
+ 20 105.6642 1.000 113.000 1336.000 0.650 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0051 0.0000 0.9526 5.0000 5.0000 0.0000 50.0200 49.3580 0.0000 0.0000 50.000
+ 21 105.7642 1.000 69.000 1424.000 0.693 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0056 0.0000 0.9473 5.0000 5.0000 0.0000 50.0180 49.4010 0.0000 0.0000 50.000
+# Sum of Counts = 186940
+# Center of Mass = 104.728835+/-0.342555
+# Full Width Half-Maximum = 0.385307+/-0.170792
+# 10:26:26 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0155.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0155.dat
new file mode 100644
index 0000000..41f1fc3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0155.dat
@@ -0,0 +1,47 @@
+# scan = 155
+# date = 6/26/2012
+# time = 10:26:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel sgu -3 3 0.5
+# builtin_command = scan sgu @(sgu)+-3 @(sgu)+3 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -2.0000 1.000 28489.000 1405.000 0.683 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0284 -0.0605 1.0045 5.0000 5.0000 0.0000 50.0160 49.5480 0.0000 0.0000 50.000
+ 2 -1.5000 1.000 33275.000 1379.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0238 -0.0504 1.0037 5.0000 5.0000 0.0000 50.0170 49.5200 0.0000 0.0000 50.000
+ 3 -1.0000 1.000 38090.000 1421.000 0.691 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0192 -0.0403 1.0030 5.0000 5.0000 0.0000 50.0130 49.4490 0.0000 0.0000 50.000
+ 4 -0.5000 1.000 41627.000 1353.000 0.658 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0145 -0.0302 1.0022 5.0000 5.0000 0.0000 50.0120 49.6060 0.0000 0.0000 50.000
+ 5 0.0000 1.000 43612.000 1369.000 0.666 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0098 -0.0202 1.0015 5.0000 5.0000 0.0000 50.0150 49.5070 0.0000 0.0000 50.000
+ 6 0.5000 1.000 43202.000 1400.000 0.681 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0049 -0.0101 1.0007 5.0000 5.0000 0.0000 50.0090 49.4670 0.0000 0.0000 50.000
+ 7 1.0000 1.000 41408.000 1376.000 0.669 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 50.0130 49.5360 0.0000 0.0000 50.000
+ 8 1.5000 1.000 38312.000 1369.000 0.666 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9950 0.0101 0.9993 5.0000 5.0000 0.0000 50.0090 49.3550 0.0000 0.0000 50.000
+ 9 2.0000 1.000 34464.000 1349.000 0.656 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9899 0.0202 0.9985 5.0000 5.0000 0.0000 50.0110 49.4990 0.0000 0.0000 50.000
+ 10 2.5000 1.000 29512.000 1335.000 0.649 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9848 0.0303 0.9978 5.0000 5.0000 0.0000 50.0120 49.5340 0.0000 0.0000 50.000
+ 11 3.0000 1.000 23848.000 1395.000 0.679 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9795 0.0404 0.9970 5.0000 5.0000 0.0000 50.0160 49.6060 0.0000 0.0000 50.000
+ 12 3.5000 1.000 18028.000 1372.000 0.667 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9742 0.0505 0.9962 5.0000 5.0000 0.0000 50.0090 49.5550 0.0000 0.0000 50.000
+ 13 4.0000 1.000 13583.000 1380.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9689 0.0605 0.9955 5.0000 5.0000 0.0000 50.0110 49.4800 0.0000 0.0000 50.000
+# Sum of Counts = 427450
+# Center of Mass = 0.669938+/-0.002906
+# Full Width Half-Maximum = 3.293275+/-0.004667
+# 10:27:48 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0156.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0156.dat
new file mode 100644
index 0000000..19c7be1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0156.dat
@@ -0,0 +1,55 @@
+# scan = 156
+# date = 6/26/2012
+# time = 10:28:14 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.7642 1.000 104.000 1373.000 0.668 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0010 -0.0143 1.0535 5.0000 5.0000 0.0000 50.0140 49.5890 0.0000 0.0000 50.000
+ 2 103.8642 1.000 126.000 1390.000 0.676 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0016 -0.0143 1.0482 5.0000 5.0000 0.0000 50.0110 49.6230 0.0000 0.0000 50.000
+ 3 103.9642 1.000 183.000 1358.000 0.661 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0022 -0.0143 1.0430 5.0000 5.0000 0.0000 50.0100 49.6460 0.0000 0.0000 50.000
+ 4 104.0642 1.000 293.000 1391.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0028 -0.0143 1.0378 5.0000 5.0000 0.0000 50.0100 49.6020 0.0000 0.0000 50.000
+ 5 104.1642 1.000 544.000 1372.000 0.667 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0034 -0.0143 1.0325 5.0000 5.0000 0.0000 50.0110 49.5450 0.0000 0.0000 50.000
+ 6 104.2642 1.000 1352.000 1377.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0040 -0.0143 1.0273 5.0000 5.0000 0.0000 50.0130 49.5210 0.0000 0.0000 50.000
+ 7 104.3642 1.000 3830.000 1322.000 0.643 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0046 -0.0143 1.0221 5.0000 5.0000 0.0000 50.0050 49.5950 0.0000 0.0000 50.000
+ 8 104.4642 1.000 11497.000 1466.000 0.713 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0052 -0.0144 1.0168 5.0000 5.0000 0.0000 50.0100 49.5440 0.0000 0.0000 50.000
+ 9 104.5642 1.000 25712.000 1414.000 0.688 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0058 -0.0144 1.0116 5.0000 5.0000 0.0000 50.0130 49.5880 0.0000 0.0000 50.000
+ 10 104.6642 1.000 40254.000 1391.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0064 -0.0144 1.0063 5.0000 5.0000 0.0000 50.0100 49.5370 0.0000 0.0000 50.000
+ 11 104.7642 1.000 43716.000 1387.000 0.675 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0070 -0.0144 1.0011 5.0000 5.0000 0.0000 50.0120 49.6720 0.0000 0.0000 50.000
+ 12 104.8642 1.000 34197.000 1413.000 0.687 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0076 -0.0144 0.9958 5.0000 5.0000 0.0000 50.0080 49.6840 0.0000 0.0000 50.000
+ 13 104.9642 1.000 18489.000 1382.000 0.672 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0082 -0.0144 0.9905 5.0000 5.0000 0.0000 50.0080 49.5620 0.0000 0.0000 50.000
+ 14 105.0642 1.000 7905.000 1379.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0087 -0.0144 0.9853 5.0000 5.0000 0.0000 50.0080 49.5030 0.0000 0.0000 50.000
+ 15 105.1642 1.000 3177.000 1329.000 0.646 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0093 -0.0144 0.9800 5.0000 5.0000 0.0000 50.0080 49.5180 0.0000 0.0000 50.000
+ 16 105.2642 1.000 1319.000 1333.000 0.648 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0099 -0.0144 0.9747 5.0000 5.0000 0.0000 50.0090 49.6190 0.0000 0.0000 50.000
+ 17 105.3642 1.000 602.000 1337.000 0.650 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0104 -0.0144 0.9695 5.0000 5.0000 0.0000 50.0060 49.6310 0.0000 0.0000 50.000
+ 18 105.4642 1.000 301.000 1393.000 0.678 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0110 -0.0144 0.9642 5.0000 5.0000 0.0000 50.0100 49.5710 0.0000 0.0000 50.000
+ 19 105.5642 1.000 166.000 1299.000 0.632 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0116 -0.0144 0.9589 5.0000 5.0000 0.0000 50.0060 49.5850 0.0000 0.0000 50.000
+ 20 105.6642 1.000 91.000 1317.000 0.641 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0121 -0.0145 0.9536 5.0000 5.0000 0.0000 50.0130 49.5740 0.0000 0.0000 50.000
+ 21 105.7642 1.000 86.000 1259.000 0.612 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0127 -0.0145 0.9484 5.0000 5.0000 0.0000 50.0110 49.6010 0.0000 0.0000 50.000
+# Sum of Counts = 193944
+# Center of Mass = 104.746523+/-0.336370
+# Full Width Half-Maximum = 0.387481+/-0.167945
+# 10:28:48 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0157.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0157.dat
new file mode 100644
index 0000000..2fcebda
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0157.dat
@@ -0,0 +1,55 @@
+# scan = 157
+# date = 6/26/2012
+# time = 10:29:29 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.7453 103.7470 1.000 1.000 1365.000 0.664 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6405 0.9728 0.0000 0.9728 5.0000 5.0000 0.0000 50.0040 49.6330 0.0000 0.0000 50.000
+ 2 63.9453 103.8470 1.000 4.000 1412.000 0.687 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6451 0.9756 0.0000 0.9756 5.0000 5.0000 0.0000 50.0060 49.6230 0.0000 0.0000 50.000
+ 3 64.1453 103.9470 1.000 4.000 1381.000 0.672 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6497 0.9783 0.0000 0.9783 5.0000 5.0000 0.0000 50.0060 49.5460 0.0000 0.0000 50.000
+ 4 64.3453 104.0470 1.000 17.000 1324.000 0.644 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6543 0.9810 0.0000 0.9810 5.0000 5.0000 0.0000 50.0050 49.6040 0.0000 0.0000 50.000
+ 5 64.5453 104.1470 1.000 66.000 1348.000 0.656 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6588 0.9837 0.0000 0.9837 5.0000 5.0000 0.0000 50.0040 49.7010 0.0000 0.0000 50.000
+ 6 64.7453 104.2470 1.000 278.000 1378.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6634 0.9864 0.0000 0.9865 5.0000 5.0000 0.0000 50.0060 49.6200 0.0000 0.0000 50.000
+ 7 64.9453 104.3470 1.000 1534.000 1388.000 0.675 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6680 0.9892 0.0000 0.9892 5.0000 5.0000 0.0000 50.0050 49.6190 0.0000 0.0000 50.000
+ 8 65.1453 104.4470 1.000 6344.000 1427.000 0.694 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6726 0.9919 0.0000 0.9919 5.0000 5.0000 0.0000 50.0050 49.6430 0.0000 0.0000 50.000
+ 9 65.3453 104.5470 1.000 19293.000 1404.000 0.683 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6771 0.9946 0.0000 0.9946 5.0000 5.0000 0.0000 50.0060 49.5960 0.0000 0.0000 50.000
+ 10 65.5453 104.6470 1.000 36947.000 1389.000 0.676 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6817 0.9973 0.0000 0.9973 5.0000 5.0000 0.0000 49.9990 49.5320 0.0000 0.0000 50.000
+ 11 65.7453 104.7470 1.000 44027.000 1427.000 0.694 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 50.0020 49.5200 0.0000 0.0000 50.000
+ 12 65.9453 104.8470 1.000 37494.000 1374.000 0.668 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6908 1.0027 0.0000 1.0027 5.0000 5.0000 0.0000 50.0050 49.6150 0.0000 0.0000 50.000
+ 13 66.1453 104.9470 1.000 20374.000 1393.000 0.678 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6954 1.0054 0.0000 1.0054 5.0000 5.0000 0.0000 50.0050 49.6180 0.0000 0.0000 50.000
+ 14 66.3453 105.0470 1.000 7188.000 1406.000 0.684 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6999 1.0081 0.0000 1.0081 5.0000 5.0000 0.0000 50.0080 49.6430 0.0000 0.0000 50.000
+ 15 66.5453 105.1470 1.000 1740.000 1340.000 0.652 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7044 1.0108 0.0000 1.0108 5.0000 5.0000 0.0000 50.0040 49.6300 0.0000 0.0000 50.000
+ 16 66.7453 105.2470 1.000 400.000 1433.000 0.697 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7090 1.0135 0.0000 1.0135 5.0000 5.0000 0.0000 50.0020 49.6120 0.0000 0.0000 50.000
+ 17 66.9453 105.3470 1.000 89.000 1333.000 0.648 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7135 1.0161 0.0000 1.0162 5.0000 5.0000 0.0000 50.0020 49.6850 0.0000 0.0000 50.000
+ 18 67.1453 105.4470 1.000 29.000 1345.000 0.654 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7180 1.0188 0.0000 1.0188 5.0000 5.0000 0.0000 50.0020 49.6130 0.0000 0.0000 50.000
+ 19 67.3453 105.5470 1.000 8.000 1386.000 0.674 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7225 1.0215 0.0000 1.0215 5.0000 5.0000 0.0000 50.0040 49.6240 0.0000 0.0000 50.000
+ 20 67.5453 105.6470 1.000 5.000 1380.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7270 1.0242 0.0000 1.0242 5.0000 5.0000 0.0000 50.0020 49.6020 0.0000 0.0000 50.000
+ 21 67.7453 105.7470 1.000 2.000 1467.000 0.714 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7315 1.0268 0.0000 1.0269 5.0000 5.0000 0.0000 50.0030 49.6410 0.0000 0.0000 50.000
+# Sum of Counts = 175844
+# Center of Mass = 65.753202+/-0.221754
+# Full Width Half-Maximum = 0.628108+/-0.132807
+# 10:30:21 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0158.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0158.dat
new file mode 100644
index 0000000..37e85c6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0158.dat
@@ -0,0 +1,55 @@
+# scan = 158
+# date = 6/26/2012
+# time = 10:31:28 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.7443 30.1149 1.000 7.000 1290.000 0.627 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5474 -0.0000 0.0001 2.9120 5.0000 5.0000 0.0000 50.0020 49.7370 0.0000 0.0000 50.000
+ 2 59.9443 30.2149 1.000 8.000 1378.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5521 -0.0000 0.0001 2.9208 5.0000 5.0000 0.0000 50.0020 49.6840 0.0000 0.0000 50.000
+ 3 60.1443 30.3149 1.000 27.000 1423.000 0.692 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5568 -0.0000 0.0001 2.9296 5.0000 5.0000 0.0000 50.0040 49.6680 0.0000 0.0000 50.000
+ 4 60.3443 30.4149 1.000 99.000 1379.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5615 -0.0000 0.0001 2.9385 5.0000 5.0000 0.0000 50.0030 49.6930 0.0000 0.0000 50.000
+ 5 60.5443 30.5149 1.000 251.000 1355.000 0.659 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5661 -0.0000 0.0001 2.9473 5.0000 5.0000 0.0000 50.0050 49.6490 0.0000 0.0000 50.000
+ 6 60.7443 30.6149 1.000 1225.000 1365.000 0.664 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5708 -0.0000 0.0001 2.9561 5.0000 5.0000 0.0000 50.0050 49.5990 0.0000 0.0000 50.000
+ 7 60.9443 30.7149 1.000 5232.000 1312.000 0.638 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5755 -0.0000 0.0001 2.9649 5.0000 5.0000 0.0000 50.0050 49.7360 0.0000 0.0000 50.000
+ 8 61.1443 30.8149 1.000 19775.000 1337.000 0.650 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5802 -0.0000 0.0001 2.9737 5.0000 5.0000 0.0000 50.0030 49.7390 0.0000 0.0000 50.000
+ 9 61.3443 30.9149 1.000 48538.000 1388.000 0.675 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5848 -0.0000 0.0001 2.9825 5.0000 5.0000 0.0000 50.0060 49.7110 0.0000 0.0000 50.000
+ 10 61.5443 31.0149 1.000 81783.000 1396.000 0.679 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5895 -0.0000 0.0001 2.9912 5.0000 5.0000 0.0000 50.0020 49.6680 0.0000 0.0000 50.000
+ 11 61.7443 31.1149 1.000 96536.000 1300.000 0.632 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0000 0.0001 3.0000 5.0000 5.0000 0.0000 50.0010 49.6950 0.0000 0.0000 50.000
+ 12 61.9443 31.2149 1.000 85364.000 1345.000 0.654 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5988 -0.0000 0.0001 3.0088 5.0000 5.0000 0.0000 50.0060 49.7550 0.0000 0.0000 50.000
+ 13 62.1443 31.3149 1.000 54073.000 1395.000 0.679 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6034 -0.0000 0.0001 3.0175 5.0000 5.0000 0.0000 50.0020 49.6700 0.0000 0.0000 50.000
+ 14 62.3443 31.4149 1.000 22904.000 1404.000 0.683 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6081 -0.0000 0.0001 3.0262 5.0000 5.0000 0.0000 50.0040 49.6910 0.0000 0.0000 50.000
+ 15 62.5443 31.5149 1.000 6484.000 1384.000 0.673 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6127 -0.0000 0.0001 3.0350 5.0000 5.0000 0.0000 50.0020 49.6830 0.0000 0.0000 50.000
+ 16 62.7443 31.6149 1.000 1415.000 1339.000 0.651 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6174 -0.0000 0.0001 3.0437 5.0000 5.0000 0.0000 50.0040 49.7480 0.0000 0.0000 50.000
+ 17 62.9443 31.7149 1.000 337.000 1326.000 0.645 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6220 -0.0000 0.0001 3.0524 5.0000 5.0000 0.0000 50.0010 49.6170 0.0000 0.0000 50.000
+ 18 63.1443 31.8149 1.000 88.000 1347.000 0.655 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6266 -0.0000 0.0001 3.0611 5.0000 5.0000 0.0000 50.0030 49.7080 0.0000 0.0000 50.000
+ 19 63.3443 31.9149 1.000 43.000 1400.000 0.681 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6312 -0.0000 0.0001 3.0698 5.0000 5.0000 0.0000 50.0030 49.6550 0.0000 0.0000 50.000
+ 20 63.5443 32.0149 1.000 15.000 1392.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6358 -0.0000 0.0001 3.0785 5.0000 5.0000 0.0000 50.0010 49.8040 0.0000 0.0000 50.000
+ 21 63.7443 32.1149 1.000 10.000 1329.000 0.646 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6404 -0.0000 0.0001 3.0871 5.0000 5.0000 0.0000 50.0000 49.6840 0.0000 0.0000 50.000
+# Sum of Counts = 424214
+# Center of Mass = 61.758753+/-0.134099
+# Full Width Half-Maximum = 0.686991+/-0.077554
+# 10:32:19 AM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0159.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0159.dat
new file mode 100644
index 0000000..5ef2507
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0159.dat
@@ -0,0 +1,56 @@
+# scan = 159
+# date = 6/26/2012
+# time = 10:39:56 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (1,0,1), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 725.581 8.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 34.3775 27.4104 -1.6304 0.2871 0.0000 0.0000 161.2030 -37.5939 1.6863 5.0000 17.5000 49.9980 49.9210 0.0000 0.0000 50.000
+ 2 1.0000 0.0000 1.0000 -12.2500 723.774 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 36.0227 28.2753 -1.6304 0.2871 0.0000 0.0000 161.0620 -37.8756 1.6863 5.0000 17.2500 49.9960 49.8940 0.0000 0.0000 50.000
+ 3 1.0000 0.0000 1.0000 -12.0000 726.533 5.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 37.6345 29.1232 -1.6304 0.2871 0.0000 0.0000 160.9181 -38.1638 1.6863 5.0000 17.0000 49.9980 49.9790 0.0000 0.0000 50.000
+ 4 1.0000 0.0000 1.0000 -11.7500 725.999 9.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 39.2160 29.9557 -1.6304 0.2871 0.0000 0.0000 160.7706 -38.4587 1.6863 5.0000 16.7500 50.0040 49.9460 0.0000 0.0000 50.000
+ 5 1.0000 0.0000 1.0000 -11.5000 723.842 13.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 40.7700 30.7744 -1.6304 0.2871 0.0000 0.0000 160.6198 -38.7605 1.6863 5.0000 16.5000 49.9990 49.9610 0.0000 0.0000 50.000
+ 6 1.0000 0.0000 1.0000 -11.2500 726.270 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 42.2989 31.5805 -1.6304 0.2871 0.0000 0.0000 160.4652 -39.0695 1.6863 5.0000 16.2500 50.0020 49.7160 0.0000 0.0000 50.000
+ 7 1.0000 0.0000 1.0000 -11.0000 725.642 21.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 43.8051 32.3752 -1.6304 0.2871 0.0000 0.0000 160.3069 -39.3861 1.6863 5.0000 16.0000 50.0010 49.8430 0.0000 0.0000 50.000
+ 8 1.0000 0.0000 1.0000 -10.7500 725.326 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 45.2904 33.1596 -1.6304 0.2871 0.0000 0.0000 160.1448 -39.7105 1.6863 5.0000 15.7500 50.0010 49.8700 0.0000 0.0000 50.000
+ 9 1.0000 0.0000 1.0000 -10.5000 725.033 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 46.7566 33.9346 -1.6304 0.2871 0.0000 0.0000 159.9785 -40.0430 1.6863 5.0000 15.5000 49.9980 49.8580 0.0000 0.0000 50.000
+ 10 1.0000 0.0000 1.0000 -10.2500 724.987 22.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 48.2056 34.7011 -1.6304 0.2871 0.0000 0.0000 159.8079 -40.3841 1.6863 5.0000 15.2500 50.0000 49.7330 0.0000 0.0000 50.000
+ 11 1.0000 0.0000 1.0000 -10.0000 725.191 33.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 49.6386 35.4599 -1.6304 0.2871 0.0000 0.0000 159.6329 -40.7340 1.6863 5.0000 15.0000 50.0000 49.6590 0.0000 0.0000 50.000
+ 12 1.0000 0.0000 1.0000 -9.7500 723.571 18.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 51.0570 36.2116 -1.6304 0.2871 0.0000 0.0000 159.4534 -41.0932 1.6863 5.0000 14.7500 50.0040 49.8890 0.0000 0.0000 50.000
+ 13 1.0000 0.0000 1.0000 -9.5000 724.506 27.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 52.4623 36.9571 -1.6304 0.2871 0.0000 0.0000 159.2690 -41.4622 1.6863 5.0000 14.5000 50.0010 49.8250 0.0000 0.0000 50.000
+ 14 1.0000 0.0000 1.0000 -9.2500 723.672 28.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 53.8555 37.6970 -1.6304 0.2871 0.0000 0.0000 159.0794 -41.8412 1.6863 5.0000 14.2500 50.0010 49.8280 0.0000 0.0000 50.000
+ 15 1.0000 0.0000 1.0000 -9.0000 725.481 29.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 55.2378 38.4318 -1.6304 0.2871 0.0000 0.0000 158.8846 -42.2308 1.6863 5.0000 14.0000 49.9960 49.7330 0.0000 0.0000 50.000
+ 16 1.0000 0.0000 1.0000 -8.7500 738.789 23.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 56.6102 39.1621 -1.6304 0.2871 0.0000 0.0000 158.6842 -42.6316 1.6863 5.0000 13.7500 49.9990 49.8400 0.0000 0.0000 50.000
+ 17 1.0000 0.0000 1.0000 -8.5000 739.506 12.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 57.9736 39.8884 -1.6304 0.2871 0.0000 0.0000 158.4780 -43.0440 1.6863 5.0000 13.5000 50.0020 49.9080 0.0000 0.0000 50.000
+ 18 1.0000 0.0000 1.0000 -8.2500 737.321 16.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 59.3291 40.6114 -1.6304 0.2871 0.0000 0.0000 158.2657 -43.4686 1.6863 5.0000 13.2500 50.0000 49.8860 0.0000 0.0000 50.000
+ 19 1.0000 0.0000 1.0000 -8.0000 735.204 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 60.6775 41.3314 -1.6304 0.2871 0.0000 0.0000 158.0470 -43.9062 1.6863 5.0000 13.0000 50.0020 49.8250 0.0000 0.0000 50.000
+ 20 1.0000 0.0000 1.0000 -7.7500 732.328 8.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.0196 42.0490 -1.6304 0.2871 0.0000 0.0000 157.8214 -44.3571 1.6863 5.0000 12.7500 49.9990 49.8930 0.0000 0.0000 50.000
+ 21 1.0000 0.0000 1.0000 -7.5000 729.917 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.3563 42.7645 -1.6304 0.2871 0.0000 0.0000 157.5889 -44.8223 1.6863 5.0000 12.5000 50.0030 49.7100 0.0000 0.0000 50.000
+ 22 1.0000 0.0000 1.0000 -7.2500 727.129 9.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.6884 43.4786 -1.6304 0.2871 0.0000 0.0000 157.3487 -45.3025 1.6863 5.0000 12.2500 50.0020 49.8190 0.0000 0.0000 50.000
+# Sum of Counts = 355
+# Center of Mass = -9.754930+/-0.735423
+# Full Width Half-Maximum = 2.594803+/-0.303937
+# 3:37:45 PM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0160.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0160.dat
new file mode 100644
index 0000000..801df69
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0160.dat
@@ -0,0 +1,48 @@
+# scan = 160
+# date = 6/26/2012
+# time = 3:37:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 4
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5, 0, 1.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 241.015 7.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 89.9683 72.2892 -1.6304 0.2871 0.0000 0.0000 158.2225 -43.5551 2.5294 5.0000 13.2000 50.0050 49.7790 0.0000 0.0000 50.000
+ 2 1.5000 0.0000 1.5000 -8.0000 240.965 4.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 90.7102 72.8941 -1.6304 0.2871 0.0000 0.0000 158.0470 -43.9061 2.5294 5.0000 13.0000 49.9990 49.7830 0.0000 0.0000 50.000
+ 3 1.5000 0.0000 1.5000 -7.8000 242.743 15.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.4554 73.5052 -1.6304 0.2871 0.0000 0.0000 157.8671 -44.2658 2.5294 5.0000 12.8000 49.9990 49.7530 0.0000 0.0000 50.000
+ 4 1.5000 0.0000 1.5000 -7.6000 241.872 13.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.2042 74.1229 -1.6304 0.2871 0.0000 0.0000 157.6826 -44.6345 2.5294 5.0000 12.6000 49.9980 49.8220 0.0000 0.0000 50.000
+ 5 1.5000 0.0000 1.5000 -7.4000 242.508 25.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.9565 74.7476 -1.6304 0.2871 0.0000 0.0000 157.4938 -45.0126 2.5294 5.0000 12.4000 49.9980 49.8280 0.0000 0.0000 50.000
+ 6 1.5000 0.0000 1.5000 -7.2000 241.981 19.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.7126 75.3795 -1.6304 0.2871 0.0000 0.0000 157.2998 -45.4005 2.5294 5.0000 12.2000 50.0000 49.7120 0.0000 0.0000 50.000
+ 7 1.5000 0.0000 1.5000 -7.0000 242.057 16.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.4728 76.0190 -1.6304 0.2871 0.0000 0.0000 157.1007 -45.7985 2.5294 5.0000 12.0000 49.9950 49.7150 0.0000 0.0000 50.000
+ 8 1.5000 0.0000 1.5000 -6.8000 241.891 12.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.2372 76.6664 -1.6304 0.2871 0.0000 0.0000 156.8963 -46.2073 2.5294 5.0000 11.8000 49.9960 49.8530 0.0000 0.0000 50.000
+ 9 1.5000 0.0000 1.5000 -6.6000 241.671 16.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.0061 77.3222 -1.6304 0.2871 0.0000 0.0000 156.6864 -46.6273 2.5294 5.0000 11.6000 49.9960 49.8790 0.0000 0.0000 50.000
+ 10 1.5000 0.0000 1.5000 -6.4000 241.257 4.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.7796 77.9866 -1.6304 0.2871 0.0000 0.0000 156.4706 -47.0589 2.5294 5.0000 11.4000 49.9980 49.8170 0.0000 0.0000 50.000
+ 11 1.5000 0.0000 1.5000 -6.2000 240.976 11.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.5580 78.6602 -1.6304 0.2871 0.0000 0.0000 156.2486 -47.5028 2.5294 5.0000 11.2000 50.0010 49.8490 0.0000 0.0000 50.000
+ 12 1.5000 0.0000 1.5000 -6.0000 240.920 8.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.3415 79.3434 -1.6304 0.2871 0.0000 0.0000 156.0202 -47.9596 2.5294 5.0000 11.0000 49.9980 49.6160 0.0000 0.0000 50.000
+ 13 1.5000 0.0000 1.5000 -5.8000 240.978 5.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.1303 80.0366 -1.6304 0.2871 0.0000 0.0000 155.7851 -48.4298 2.5294 5.0000 10.8000 49.9980 49.8220 0.0000 0.0000 50.000
+ 14 1.5000 0.0000 1.5000 -5.6000 241.296 12.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.9248 80.7404 -1.6304 0.2871 0.0000 0.0000 155.5430 -48.9142 2.5294 5.0000 10.6000 50.0010 49.7270 0.0000 0.0000 50.000
+# Sum of Counts = 167
+# Center of Mass = -6.971257+/-0.764854
+# Full Width Half-Maximum = 1.411858+/-0.407506
+# 4:40:39 PM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0161.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0161.dat
new file mode 100644
index 0000000..1fb23d2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0161.dat
@@ -0,0 +1,46 @@
+# scan = 161
+# date = 6/26/2012
+# time = 4:40:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 2
+# builtin_command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (-1.5, 0, 0), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -5.2500 120.711 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -64.1022 76.6362 -1.6304 0.2871 0.0000 0.0000 155.1010 -49.7982 2.4005 5.0000 10.2500 49.9990 49.8380 0.0000 0.0000 50.000
+ 2 -1.5000 0.0000 0.0000 -5.0000 120.822 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.0694 77.5066 -1.6304 0.2871 0.0000 0.0000 154.7702 -50.4597 2.4005 5.0000 10.0000 50.0050 49.8570 0.0000 0.0000 50.000
+ 3 -1.5000 0.0000 0.0000 -4.7500 121.123 12.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.0271 78.3940 -1.6304 0.2871 0.0000 0.0000 154.4257 -51.1486 2.4005 5.0000 9.7500 49.9990 49.8070 0.0000 0.0000 50.000
+ 4 -1.5000 0.0000 0.0000 -4.5000 120.767 31.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.9748 79.2996 -1.6304 0.2871 0.0000 0.0000 154.0667 -51.8666 2.4005 5.0000 9.5000 49.9940 49.9240 0.0000 0.0000 50.000
+ 5 -1.5000 0.0000 0.0000 -4.2500 121.004 62.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.9118 80.2246 -1.6304 0.2871 0.0000 0.0000 153.6921 -52.6158 2.4005 5.0000 9.2500 50.0000 49.9140 0.0000 0.0000 50.000
+ 6 -1.5000 0.0000 0.0000 -4.0000 120.688 88.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.8373 81.1706 -1.6304 0.2871 0.0000 0.0000 153.3007 -53.3986 2.4005 5.0000 9.0000 50.0020 49.8170 0.0000 0.0000 50.000
+ 7 -1.5000 0.0000 0.0000 -3.7500 121.113 50.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.7506 82.1388 -1.6304 0.2871 0.0000 0.0000 152.8912 -54.2176 2.4005 5.0000 8.7500 49.9970 49.9610 0.0000 0.0000 50.000
+ 8 -1.5000 0.0000 0.0000 -3.5000 120.982 14.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.6509 83.1312 -1.6304 0.2871 0.0000 0.0000 152.4622 -55.0756 2.4005 5.0000 8.5000 50.0010 49.8110 0.0000 0.0000 50.000
+ 9 -1.5000 0.0000 0.0000 -3.2500 120.860 11.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -55.5372 84.1496 -1.6304 0.2871 0.0000 0.0000 152.0119 -55.9760 2.4005 5.0000 8.2500 49.9930 49.9750 0.0000 0.0000 50.000
+ 10 -1.5000 0.0000 0.0000 -3.0000 120.037 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.4086 85.1960 -1.6304 0.2871 0.0000 0.0000 151.5388 -56.9223 2.4005 5.0000 8.0000 49.9970 49.9110 0.0000 0.0000 50.000
+ 11 -1.5000 0.0000 0.0000 -2.7500 120.879 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.2640 86.2727 -1.6304 0.2871 0.0000 0.0000 151.0407 -57.9186 2.4005 5.0000 7.7500 50.0000 49.9050 0.0000 0.0000 50.000
+ 12 -1.5000 0.0000 0.0000 -2.5000 120.688 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.1023 87.3824 -1.6304 0.2871 0.0000 0.0000 150.5152 -58.9695 2.4005 5.0000 7.5000 49.9990 49.8250 0.0000 0.0000 50.000
+# Sum of Counts = 296
+# Center of Mass = -4.036318+/-0.332992
+# Full Width Half-Maximum = 0.975525+/-0.162389
+# 5:06:47 PM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0162.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0162.dat
new file mode 100644
index 0000000..0469a10
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0162.dat
@@ -0,0 +1,62 @@
+# scan = 162
+# date = 6/26/2012
+# time = 5:06:47 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1 k 0 l 3.5 e -8.8 -3.4 0.2 preset mcu 2
+# builtin_command = scan h -1 k 0 l 3.5 e -8.8 -3.4 0.2 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA at T (-1,0,3.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0001 3.5000 -8.8000 120.668 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.0164 67.6197 -1.6304 0.2871 0.0000 0.0000 158.7247 -42.5505 2.4536 5.0000 13.8000 50.0050 49.9390 0.0000 0.0000 50.000
+ 2 -1.0000 0.0001 3.5000 -8.6000 120.988 2.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.2692 68.1971 -1.6304 0.2871 0.0000 0.0000 158.5612 -42.8776 2.4536 5.0000 13.6000 49.9980 49.8320 0.0000 0.0000 50.000
+ 3 -1.0000 0.0001 3.5000 -8.4000 120.800 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.5196 68.7794 -1.6304 0.2871 0.0000 0.0000 158.3938 -43.2123 2.4536 5.0000 13.4000 49.9990 49.8260 0.0000 0.0000 50.000
+ 4 -1.0000 0.0001 3.5000 -8.2000 120.330 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.7674 69.3669 -1.6304 0.2871 0.0000 0.0000 158.2225 -43.5551 2.4536 5.0000 13.2000 49.9980 49.8950 0.0000 0.0000 50.000
+ 5 -1.0000 0.0001 3.5000 -8.0000 120.221 14.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.0124 69.9598 -1.6304 0.2871 0.0000 0.0000 158.0470 -43.9061 2.4536 5.0000 13.0000 50.0040 49.9610 0.0000 0.0000 50.000
+ 6 -1.0000 0.0001 3.5000 -7.8000 120.223 23.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.2544 70.5584 -1.6304 0.2871 0.0000 0.0000 157.8671 -44.2658 2.4536 5.0000 12.8000 50.0000 49.8320 0.0000 0.0000 50.000
+ 7 -1.0000 0.0001 3.5000 -7.6000 120.999 20.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.4933 71.1629 -1.6304 0.2871 0.0000 0.0000 157.6828 -44.6345 2.4536 5.0000 12.6000 49.9990 49.8920 0.0000 0.0000 50.000
+ 8 -1.0000 0.0001 3.5000 -7.4000 120.765 22.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.7290 71.7737 -1.6304 0.2871 0.0000 0.0000 157.4938 -45.0126 2.4536 5.0000 12.4000 49.9950 49.8590 0.0000 0.0000 50.000
+ 9 -1.0000 0.0001 3.5000 -7.2000 120.410 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9611 72.3909 -1.6304 0.2871 0.0000 0.0000 157.2998 -45.4004 2.4536 5.0000 12.2000 50.0070 49.8380 0.0000 0.0000 50.000
+ 10 -1.0000 0.0001 3.5000 -7.0000 120.786 13.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1896 73.0150 -1.6304 0.2871 0.0000 0.0000 157.1006 -45.7985 2.4536 5.0000 12.0000 50.0070 49.9340 0.0000 0.0000 50.000
+ 11 -1.0000 0.0001 3.5000 -6.8000 120.743 10.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.4142 73.6462 -1.6304 0.2871 0.0000 0.0000 156.8963 -46.2073 2.4536 5.0000 11.8000 50.0030 49.9220 0.0000 0.0000 50.000
+ 12 -1.0000 0.0001 3.5000 -6.6000 120.728 11.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.6347 74.2849 -1.6304 0.2871 0.0000 0.0000 156.6864 -46.6273 2.4536 5.0000 11.6000 50.0030 49.8370 0.0000 0.0000 50.000
+ 13 -1.0000 0.0001 3.5000 -6.4000 121.418 25.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.8510 74.9314 -1.6304 0.2871 0.0000 0.0000 156.4706 -47.0589 2.4536 5.0000 11.4000 50.0010 49.8870 0.0000 0.0000 50.000
+ 14 -1.0000 0.0001 3.5000 -6.2000 120.576 24.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.0628 75.5862 -1.6304 0.2871 0.0000 0.0000 156.2486 -47.5028 2.4536 5.0000 11.2000 50.0030 49.8460 0.0000 0.0000 50.000
+ 15 -1.0000 0.0001 3.5000 -6.0000 120.925 14.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.2699 76.2497 -1.6304 0.2871 0.0000 0.0000 156.0202 -47.9596 2.4536 5.0000 11.0000 50.0010 50.0000 0.0000 0.0000 50.000
+ 16 -1.0000 0.0001 3.5000 -5.8000 120.524 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4720 76.9222 -1.6304 0.2871 0.0000 0.0000 155.7850 -48.4298 2.4536 5.0000 10.8000 49.9970 49.7840 0.0000 0.0000 50.000
+ 17 -1.0000 0.0001 3.5000 -5.6000 120.123 10.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.6689 77.6043 -1.6304 0.2871 0.0000 0.0000 155.5430 -48.9142 2.4536 5.0000 10.6000 49.9970 49.8230 0.0000 0.0000 50.000
+ 18 -1.0000 0.0001 3.5000 -5.4000 120.321 22.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.8603 78.2964 -1.6304 0.2871 0.0000 0.0000 155.2933 -49.4134 2.4536 5.0000 10.4000 50.0010 49.8970 0.0000 0.0000 50.000
+ 19 -1.0000 0.0001 3.5000 -5.2000 120.833 24.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.0460 78.9990 -1.6304 0.2871 0.0000 0.0000 155.0358 -49.9283 2.4536 5.0000 10.2000 50.0010 49.9110 0.0000 0.0000 50.000
+ 20 -1.0000 0.0001 3.5000 -5.0000 120.503 24.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2256 79.7128 -1.6304 0.2871 0.0000 0.0000 154.7702 -50.4597 2.4536 5.0000 10.0000 50.0050 49.9090 0.0000 0.0000 50.000
+ 21 -1.0000 0.0001 3.5000 -4.8000 120.286 15.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.3988 80.4383 -1.6304 0.2871 0.0000 0.0000 154.4956 -51.0086 2.4536 5.0000 9.8000 50.0040 49.9690 0.0000 0.0000 50.000
+ 22 -1.0000 0.0001 3.5000 -4.6000 120.591 9.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.5654 81.1762 -1.6304 0.2871 0.0000 0.0000 154.2120 -51.5757 2.4536 5.0000 9.6000 50.0020 49.8350 0.0000 0.0000 50.000
+ 23 -1.0000 0.0001 3.5000 -4.4000 120.229 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.7249 81.9270 -1.6304 0.2871 0.0000 0.0000 153.9188 -52.1624 2.4536 5.0000 9.4000 49.9990 49.8640 0.0000 0.0000 50.000
+ 24 -1.0000 0.0001 3.5000 -4.2000 120.221 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.8770 82.6917 -1.6304 0.2871 0.0000 0.0000 153.6152 -52.7696 2.4536 5.0000 9.2000 50.0020 49.8890 0.0000 0.0000 50.000
+ 25 -1.0000 0.0001 3.5000 -4.0000 120.579 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.0214 83.4710 -1.6304 0.2871 0.0000 0.0000 153.3007 -53.3986 2.4536 5.0000 9.0000 50.0020 49.9400 0.0000 0.0000 50.000
+ 26 -1.0000 0.0001 3.5000 -3.8000 120.656 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.1575 84.2657 -1.6304 0.2871 0.0000 0.0000 152.9746 -54.0507 2.4536 5.0000 8.8000 49.9980 49.9320 0.0000 0.0000 50.000
+ 27 -1.0000 0.0001 3.5000 -3.6000 120.837 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.2850 85.0768 -1.6304 0.2871 0.0000 0.0000 152.6362 -54.7275 2.4536 5.0000 8.6000 50.0050 49.9060 0.0000 0.0000 50.000
+ 28 -1.0000 0.0001 3.5000 -3.4000 120.462 5.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.4034 85.9052 -1.6304 0.2871 0.0000 0.0000 152.2845 -55.4305 2.4536 5.0000 8.4000 49.9990 49.8740 0.0000 0.0000 50.000
+# Sum of Counts = 336
+# Center of Mass = -6.154167+/-0.480015
+# Full Width Half-Maximum = 2.585800+/-0.226133
+# 6:04:39 PM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0163.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0163.dat
new file mode 100644
index 0000000..f3f647a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0163.dat
@@ -0,0 +1,57 @@
+# scan = 163
+# date = 6/26/2012
+# time = 6:04:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 1.5 e -16.0 -10.5 0.25 preset mcu 12
+# builtin_command = scan h 1.5 k 0 l 1.5 e -16.0 -10.5 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5, 0, 1.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -16.0000 725.226 24.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.1769 51.5532 -1.6304 0.2871 0.0000 0.0000 162.8940 -34.2121 2.5294 5.0000 21.0000 50.0020 49.8240 0.0000 0.0000 50.000
+ 2 1.5000 0.0000 1.5000 -15.7500 724.628 13.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.0682 52.1751 -1.6304 0.2871 0.0000 0.0000 162.7880 -34.4240 2.5294 5.0000 20.7500 50.0000 49.8290 0.0000 0.0000 50.000
+ 3 1.5000 0.0000 1.5000 -15.5000 724.242 27.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.9573 52.7977 -1.6304 0.2871 0.0000 0.0000 162.6801 -34.6398 2.5294 5.0000 20.5000 50.0030 49.7640 0.0000 0.0000 50.000
+ 4 1.5000 0.0000 1.5000 -15.2500 724.996 23.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.8446 53.4210 -1.6304 0.2871 0.0000 0.0000 162.5701 -34.8598 2.5294 5.0000 20.2500 50.0010 49.8340 0.0000 0.0000 50.000
+ 5 1.5000 0.0000 1.5000 -15.0000 726.095 22.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7301 54.0455 -1.6304 0.2871 0.0000 0.0000 162.4580 -35.0840 2.5294 5.0000 20.0000 50.0000 49.8870 0.0000 0.0000 50.000
+ 6 1.5000 0.0000 1.5000 -14.7500 727.184 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.6141 54.6712 -1.6304 0.2871 0.0000 0.0000 162.3437 -35.3126 2.5294 5.0000 19.7500 50.0010 49.7770 0.0000 0.0000 50.000
+ 7 1.5000 0.0000 1.5000 -14.5000 726.531 32.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.4969 55.2983 -1.6304 0.2871 0.0000 0.0000 162.2271 -35.5458 2.5294 5.0000 19.5000 49.9970 49.8810 0.0000 0.0000 50.000
+ 8 1.5000 0.0000 1.5000 -14.2500 726.667 36.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.3787 55.9271 -1.6304 0.2871 0.0000 0.0000 162.1082 -35.7836 2.5294 5.0000 19.2500 49.9980 49.9070 0.0000 0.0000 50.000
+ 9 1.5000 0.0000 1.5000 -14.0000 726.305 40.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.2596 56.5577 -1.6304 0.2871 0.0000 0.0000 161.9869 -36.0262 2.5294 5.0000 19.0000 50.0000 49.8050 0.0000 0.0000 50.000
+ 10 1.5000 0.0000 1.5000 -13.7500 726.751 37.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.1400 57.1904 -1.6304 0.2871 0.0000 0.0000 161.8630 -36.2739 2.5294 5.0000 18.7500 49.9950 49.9030 0.0000 0.0000 50.000
+ 11 1.5000 0.0000 1.5000 -13.5000 727.776 33.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.0199 57.8254 -1.6304 0.2871 0.0000 0.0000 161.7366 -36.5268 2.5294 5.0000 18.5000 49.9970 49.7230 0.0000 0.0000 50.000
+ 12 1.5000 0.0000 1.5000 -13.2500 726.437 30.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.8996 58.4630 -1.6304 0.2871 0.0000 0.0000 161.6075 -36.7850 2.5294 5.0000 18.2500 50.0010 49.8380 0.0000 0.0000 50.000
+ 13 1.5000 0.0000 1.5000 -13.0000 727.726 27.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.7793 59.1032 -1.6304 0.2871 0.0000 0.0000 161.4756 -37.0488 2.5294 5.0000 18.0000 49.9990 49.8810 0.0000 0.0000 50.000
+ 14 1.5000 0.0000 1.5000 -12.7500 728.278 30.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.6592 59.7464 -1.6304 0.2871 0.0000 0.0000 161.3408 -37.3184 2.5294 5.0000 17.7500 50.0010 49.7800 0.0000 0.0000 50.000
+ 15 1.5000 0.0000 1.5000 -12.5000 726.320 20.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.5396 60.3928 -1.6304 0.2871 0.0000 0.0000 161.2029 -37.5939 2.5294 5.0000 17.5000 49.9990 49.8780 0.0000 0.0000 50.000
+ 16 1.5000 0.0000 1.5000 -12.2500 725.485 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.4206 61.0426 -1.6304 0.2871 0.0000 0.0000 161.0622 -37.8757 2.5294 5.0000 17.2500 50.0000 49.8840 0.0000 0.0000 50.000
+ 17 1.5000 0.0000 1.5000 -12.0000 726.332 26.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.3024 61.6961 -1.6304 0.2871 0.0000 0.0000 160.9181 -38.1638 2.5294 5.0000 17.0000 49.9990 49.8360 0.0000 0.0000 50.000
+ 18 1.5000 0.0000 1.5000 -11.7500 724.073 12.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.1852 62.3536 -1.6304 0.2871 0.0000 0.0000 160.7706 -38.4587 2.5294 5.0000 16.7500 50.0010 49.8370 0.0000 0.0000 50.000
+ 19 1.5000 0.0000 1.5000 -11.5000 723.757 14.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.0694 63.0152 -1.6304 0.2871 0.0000 0.0000 160.6198 -38.7605 2.5294 5.0000 16.5000 50.0000 49.8310 0.0000 0.0000 50.000
+ 20 1.5000 0.0000 1.5000 -11.2499 724.395 9.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.9550 63.6813 -1.6304 0.2871 0.0000 0.0000 160.4652 -39.0696 2.5294 5.0000 16.2499 50.0030 49.9160 0.0000 0.0000 50.000
+ 21 1.5000 0.0000 1.5000 -11.0000 725.589 29.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.8423 64.3522 -1.6304 0.2871 0.0000 0.0000 160.3070 -39.3861 2.5294 5.0000 16.0000 50.0000 49.7720 0.0000 0.0000 50.000
+ 22 1.5000 0.0000 1.5000 -10.7500 724.621 13.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.7316 65.0280 -1.6304 0.2871 0.0000 0.0000 160.1448 -39.7105 2.5294 5.0000 15.7500 49.9990 49.7380 0.0000 0.0000 50.000
+ 23 1.5000 0.0000 1.5000 -10.5000 723.853 12.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.6230 65.7093 -1.6304 0.2871 0.0000 0.0000 159.9785 -40.0431 2.5294 5.0000 15.5000 49.9970 49.7790 0.0000 0.0000 50.000
+# Sum of Counts = 547
+# Center of Mass = -13.479432+/-0.817517
+# Full Width Half-Maximum = 2.958995+/-0.342662
+# 10:44:23 PM 6/26/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0164.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0164.dat
new file mode 100644
index 0000000..38b6da9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0164.dat
@@ -0,0 +1,58 @@
+# scan = 164
+# date = 6/26/2012
+# time = 10:44:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 0 k 0 l 4.5 e -16.75 -11 0.25 preset mcu 12
+# builtin_command = scan h 0 k 0 l 4.5 e -16.75 -11 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0, 0, 4.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.0000 0.0001 4.5000 -16.7500 725.550 23.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3248 44.3994 -1.6304 0.2871 0.0000 0.0000 163.2004 -33.5992 2.3912 5.0000 21.7500 50.0000 49.9300 0.0000 0.0000 50.000
+ 2 -0.0000 0.0001 4.5000 -16.5000 724.500 21.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.3458 45.0438 -1.6304 0.2871 0.0000 0.0000 163.1001 -33.7998 2.3912 5.0000 21.5000 50.0010 49.8470 0.0000 0.0000 50.000
+ 3 -0.0000 0.0001 4.5000 -16.2500 726.489 25.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.3722 45.6865 -1.6304 0.2871 0.0000 0.0000 162.9979 -34.0041 2.3912 5.0000 21.2500 49.9990 49.7880 0.0000 0.0000 50.000
+ 4 -0.0000 0.0001 4.5000 -16.0000 725.560 22.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4036 46.3278 -1.6304 0.2871 0.0000 0.0000 162.8940 -34.2121 2.3912 5.0000 21.0000 49.9980 49.8330 0.0000 0.0000 50.000
+ 5 -0.0000 0.0001 4.5000 -15.7500 725.867 27.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.4395 46.9680 -1.6304 0.2871 0.0000 0.0000 162.7880 -34.4240 2.3912 5.0000 20.7500 50.0000 49.8120 0.0000 0.0000 50.000
+ 6 -0.0000 0.0001 4.5000 -15.5000 726.315 16.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.4796 47.6073 -1.6304 0.2871 0.0000 0.0000 162.6801 -34.6398 2.3912 5.0000 20.5000 49.9970 49.9100 0.0000 0.0000 50.000
+ 7 -0.0000 0.0001 4.5000 -15.2500 725.376 30.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.5237 48.2460 -1.6304 0.2871 0.0000 0.0000 162.5701 -34.8598 2.3912 5.0000 20.2500 50.0000 49.8050 0.0000 0.0000 50.000
+ 8 -0.0000 0.0001 4.5000 -15.0000 725.638 36.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.5714 48.8842 -1.6304 0.2871 0.0000 0.0000 162.4580 -35.0840 2.3912 5.0000 20.0000 50.0000 49.7910 0.0000 0.0000 50.000
+ 9 -0.0000 0.0001 4.5000 -14.7500 726.886 34.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.6223 49.5222 -1.6304 0.2871 0.0000 0.0000 162.3434 -35.3126 2.3912 5.0000 19.7500 50.0010 49.8270 0.0000 0.0000 50.000
+ 10 -0.0000 0.0001 4.5000 -14.5000 726.577 29.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.6763 50.1603 -1.6304 0.2871 0.0000 0.0000 162.2271 -35.5458 2.3912 5.0000 19.5000 49.9980 49.8290 0.0000 0.0000 50.000
+ 11 -0.0000 0.0001 4.5000 -14.2500 725.648 22.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.7330 50.7986 -1.6304 0.2871 0.0000 0.0000 162.1081 -35.7836 2.3912 5.0000 19.2500 49.9980 49.7150 0.0000 0.0000 50.000
+ 12 -0.0000 0.0001 4.5000 -14.0000 726.624 29.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.7921 51.4375 -1.6304 0.2871 0.0000 0.0000 161.9867 -36.0262 2.3912 5.0000 19.0000 50.0050 49.8210 0.0000 0.0000 50.000
+ 13 -0.0000 0.0001 4.5000 -13.7500 726.551 30.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.8534 52.0772 -1.6304 0.2871 0.0000 0.0000 161.8630 -36.2739 2.3912 5.0000 18.7500 49.9990 49.7240 0.0000 0.0000 50.000
+ 14 -0.0000 0.0001 4.5000 -13.5000 726.320 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.9166 52.7178 -1.6304 0.2871 0.0000 0.0000 161.7366 -36.5268 2.3912 5.0000 18.5000 49.9970 49.7840 0.0000 0.0000 50.000
+ 15 -0.0000 0.0001 4.5000 -13.2500 725.538 21.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.9815 53.3596 -1.6304 0.2871 0.0000 0.0000 161.6075 -36.7850 2.3912 5.0000 18.2500 50.0000 49.7900 0.0000 0.0000 50.000
+ 16 -0.0000 0.0001 4.5000 -13.0000 727.713 25.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.0478 54.0029 -1.6304 0.2871 0.0000 0.0000 161.4756 -37.0488 2.3912 5.0000 18.0000 49.9990 49.7460 0.0000 0.0000 50.000
+ 17 -0.0000 0.0001 4.5000 -12.7500 726.103 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -3.1152 54.6478 -1.6304 0.2871 0.0000 0.0000 161.3408 -37.3184 2.3912 5.0000 17.7500 49.9980 49.8510 0.0000 0.0000 50.000
+ 18 -0.0000 0.0001 4.5000 -12.5000 727.844 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.1835 55.2947 -1.6304 0.2871 0.0000 0.0000 161.2030 -37.5939 2.3912 5.0000 17.5000 50.0060 49.8260 0.0000 0.0000 50.000
+ 19 -0.0000 0.0001 4.5000 -12.2500 728.940 24.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.2524 55.9437 -1.6304 0.2871 0.0000 0.0000 161.0622 -37.8756 2.3912 5.0000 17.2500 50.0010 49.7730 0.0000 0.0000 50.000
+ 20 -0.0000 0.0001 4.5000 -12.0000 727.715 14.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.3218 56.5951 -1.6304 0.2871 0.0000 0.0000 160.9181 -38.1638 2.3912 5.0000 17.0000 50.0020 49.8070 0.0000 0.0000 50.000
+ 21 -0.0000 0.0001 4.5000 -11.7500 726.933 8.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.6088 57.2492 -1.6304 0.2871 0.0000 0.0000 160.7706 -38.4587 2.3912 5.0000 16.7500 49.9970 49.8240 0.0000 0.0000 50.000
+ 22 -0.0000 0.0001 4.5000 -11.5000 727.993 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 1.5394 57.9062 -1.6304 0.2871 0.0000 0.0000 160.6198 -38.7605 2.3912 5.0000 16.5000 49.9980 49.6980 0.0000 0.0000 50.000
+ 23 -0.0000 0.0001 4.5000 -11.2500 727.821 13.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 2.4703 58.5664 -1.6304 0.2871 0.0000 0.0000 160.4652 -39.0695 2.3912 5.0000 16.2500 50.0020 49.8140 0.0000 0.0000 50.000
+ 24 -0.0000 0.0001 4.5000 -11.0000 727.841 16.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 3.4019 59.2299 -1.6304 0.2871 0.0000 0.0000 160.3070 -39.3861 2.3912 5.0000 16.0000 49.9980 49.8400 0.0000 0.0000 50.000
+# Sum of Counts = 533
+# Center of Mass = -14.181989+/-0.871424
+# Full Width Half-Maximum = 3.157346+/-0.357964
+# 3:36:49 AM 6/27/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0165.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0165.dat
new file mode 100644
index 0000000..39660be
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0165.dat
@@ -0,0 +1,53 @@
+# scan = 165
+# date = 6/27/2012
+# time = 3:36:49 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h 1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 15
+# builtin_command = scan h 1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 15
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (1.5, 0, 0), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 15.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -14.5000 908.606 56.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.7098 50.5083 -1.6304 0.2871 0.0000 0.0000 162.2271 -35.5458 2.4005 5.0000 19.5000 50.0060 49.8270 0.0000 0.0000 50.000
+ 2 1.5000 0.0000 0.0000 -14.2500 909.895 62.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.6485 51.1457 -1.6304 0.2871 0.0000 0.0000 162.1082 -35.7836 2.4005 5.0000 19.2500 50.0010 49.8800 0.0000 0.0000 50.000
+ 3 1.5000 0.0000 0.0000 -14.0000 910.862 24.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.5848 51.7838 -1.6304 0.2871 0.0000 0.0000 161.9869 -36.0262 2.4005 5.0000 19.0000 50.0000 49.7870 0.0000 0.0000 50.000
+ 4 1.5000 0.0000 0.0000 -13.7500 911.047 30.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 83.5190 52.4227 -1.6304 0.2871 0.0000 0.0000 161.8630 -36.2739 2.4005 5.0000 18.7500 49.9980 49.8400 0.0000 0.0000 50.000
+ 5 1.5000 0.0000 0.0000 -13.5000 911.768 33.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 84.4515 53.0626 -1.6304 0.2871 0.0000 0.0000 161.7366 -36.5268 2.4005 5.0000 18.5000 50.0020 49.8490 0.0000 0.0000 50.000
+ 6 1.5000 0.0000 0.0000 -13.2500 911.141 32.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 85.3824 53.7040 -1.6304 0.2871 0.0000 0.0000 161.6075 -36.7850 2.4005 5.0000 18.2500 49.9990 49.8090 0.0000 0.0000 50.000
+ 7 1.5000 0.0000 0.0000 -13.0000 910.936 21.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 86.3121 54.3468 -1.6304 0.2871 0.0000 0.0000 161.4756 -37.0488 2.4005 5.0000 18.0000 50.0020 49.8710 0.0000 0.0000 50.000
+ 8 1.5000 0.0000 0.0000 -12.7500 911.334 20.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 87.2407 54.9914 -1.6304 0.2871 0.0000 0.0000 161.3408 -37.3184 2.4005 5.0000 17.7500 50.0010 49.8370 0.0000 0.0000 50.000
+ 9 1.5000 0.0000 0.0000 -12.5000 911.327 21.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 88.1685 55.6380 -1.6304 0.2871 0.0000 0.0000 161.2030 -37.5939 2.4005 5.0000 17.5000 50.0020 49.9640 0.0000 0.0000 50.000
+ 10 1.5000 0.0000 0.0000 -12.2500 911.736 19.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 89.0958 56.2868 -1.6304 0.2871 0.0000 0.0000 161.0622 -37.8756 2.4005 5.0000 17.2500 49.9980 49.8230 0.0000 0.0000 50.000
+ 11 1.5000 0.0000 0.0000 -12.0000 912.728 27.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 90.0228 56.9382 -1.6304 0.2871 0.0000 0.0000 160.9181 -38.1638 2.4005 5.0000 17.0000 50.0010 49.8850 0.0000 0.0000 50.000
+ 12 1.5000 0.0000 0.0000 -11.7500 911.874 34.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 90.9497 57.5922 -1.6304 0.2871 0.0000 0.0000 160.7706 -38.4587 2.4005 5.0000 16.7500 50.0000 49.7760 0.0000 0.0000 50.000
+ 13 1.5000 0.0000 0.0000 -11.5000 911.916 21.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.8768 58.2493 -1.6304 0.2871 0.0000 0.0000 160.6198 -38.7605 2.4005 5.0000 16.5000 49.9980 49.7190 0.0000 0.0000 50.000
+ 14 1.5000 0.0000 0.0000 -11.2500 913.935 17.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.8043 58.9096 -1.6304 0.2871 0.0000 0.0000 160.4652 -39.0695 2.4005 5.0000 16.2500 50.0000 49.8320 0.0000 0.0000 50.000
+ 15 1.5000 0.0000 0.0000 -11.0000 914.649 20.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.7325 59.5735 -1.6304 0.2871 0.0000 0.0000 160.3070 -39.3861 2.4005 5.0000 16.0000 49.9970 49.7640 0.0000 0.0000 50.000
+ 16 1.5000 0.0000 0.0000 -10.7500 912.892 24.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.6616 60.2412 -1.6304 0.2871 0.0000 0.0000 160.1448 -39.7105 2.4005 5.0000 15.7500 50.0000 49.9350 0.0000 0.0000 50.000
+ 17 1.5000 0.0000 0.0000 -10.5000 912.008 19.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.5920 60.9130 -1.6304 0.2871 0.0000 0.0000 159.9785 -40.0430 2.4005 5.0000 15.5000 49.9990 49.7420 0.0000 0.0000 50.000
+ 18 1.5000 0.0000 0.0000 -10.2500 912.697 22.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.5236 61.5891 -1.6304 0.2871 0.0000 0.0000 159.8079 -40.3841 2.4005 5.0000 15.2500 50.0000 50.0000 0.0000 0.0000 50.000
+ 19 1.5000 0.0000 0.0000 -10.0000 912.267 27.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.4570 62.2700 -1.6304 0.2871 0.0000 0.0000 159.6328 -40.7340 2.4005 5.0000 15.0000 49.9990 49.7800 0.0000 0.0000 50.000
+# Sum of Counts = 529
+# Center of Mass = -12.601134+/-0.777382
+# Full Width Half-Maximum = 2.905037+/-0.417489
+# 8:26:56 AM 6/27/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0166.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0166.dat
new file mode 100644
index 0000000..59f1990
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0166.dat
@@ -0,0 +1,59 @@
+# scan = 166
+# date = 6/27/2012
+# time = 8:26:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 8
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA mid G-X (-0.75, 0, 1.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 486.763 12.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -76.3406 33.4115 -1.6304 0.2871 0.0000 0.0000 157.5889 -44.8223 1.4408 5.0000 12.5000 50.0030 49.8160 0.0000 0.0000 50.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 485.702 9.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -74.7038 34.1838 -1.6304 0.2871 0.0000 0.0000 157.3487 -45.3025 1.4408 5.0000 12.2500 49.9990 49.7910 0.0000 0.0000 50.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 486.615 14.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.0825 34.9477 -1.6304 0.2871 0.0000 0.0000 157.1007 -45.7985 1.4408 5.0000 12.0000 49.9980 49.7850 0.0000 0.0000 50.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 487.627 23.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.4750 35.7042 -1.6304 0.2871 0.0000 0.0000 156.8444 -46.3112 1.4408 5.0000 11.7500 50.0010 49.8020 0.0000 0.0000 50.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 486.798 41.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -69.8798 36.4539 -1.6304 0.2871 0.0000 0.0000 156.5792 -46.8416 1.4408 5.0000 11.5000 50.0050 49.8150 0.0000 0.0000 50.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 485.801 28.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.2954 37.1974 -1.6304 0.2871 0.0000 0.0000 156.3046 -47.3907 1.4408 5.0000 11.2500 50.0000 49.9410 0.0000 0.0000 50.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 486.286 19.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -66.7203 37.9356 -1.6304 0.2871 0.0000 0.0000 156.0202 -47.9596 1.4408 5.0000 11.0000 50.0030 49.9290 0.0000 0.0000 50.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 485.810 14.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.1532 38.6688 -1.6304 0.2871 0.0000 0.0000 155.7252 -48.5495 1.4408 5.0000 10.7500 49.9980 49.7010 0.0000 0.0000 50.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 487.399 14.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.5929 39.3976 -1.6304 0.2871 0.0000 0.0000 155.4190 -49.1619 1.4408 5.0000 10.5000 50.0010 49.8370 0.0000 0.0000 50.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 487.149 12.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.0381 40.1227 -1.6304 0.2871 0.0000 0.0000 155.1010 -49.7981 1.4408 5.0000 10.2500 50.0020 49.8850 0.0000 0.0000 50.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 485.692 11.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.4877 40.8444 -1.6304 0.2871 0.0000 0.0000 154.7702 -50.4597 1.4408 5.0000 10.0000 49.9980 49.7820 0.0000 0.0000 50.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 485.092 11.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.9404 41.5634 -1.6304 0.2871 0.0000 0.0000 154.4257 -51.1486 1.4408 5.0000 9.7500 50.0010 49.8160 0.0000 0.0000 50.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 484.993 11.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.3951 42.2800 -1.6304 0.2871 0.0000 0.0000 154.0667 -51.8666 1.4408 5.0000 9.5000 50.0000 49.7530 0.0000 0.0000 50.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 483.474 9.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -55.8507 42.9946 -1.6304 0.2871 0.0000 0.0000 153.6921 -52.6158 1.4408 5.0000 9.2500 50.0010 49.8280 0.0000 0.0000 50.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 484.676 7.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.3061 43.7078 -1.6304 0.2871 0.0000 0.0000 153.3006 -53.3986 1.4408 5.0000 9.0000 49.9990 49.8450 0.0000 0.0000 50.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 484.039 9.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.7601 44.4200 -1.6304 0.2871 0.0000 0.0000 152.8912 -54.2176 1.4408 5.0000 8.7500 49.9970 49.8590 0.0000 0.0000 50.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 483.141 15.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.2116 45.1316 -1.6304 0.2871 0.0000 0.0000 152.4622 -55.0756 1.4408 5.0000 8.5000 49.9990 49.7670 0.0000 0.0000 50.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 483.387 15.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.6595 45.8429 -1.6304 0.2871 0.0000 0.0000 152.0120 -55.9760 1.4408 5.0000 8.2500 50.0030 49.7960 0.0000 0.0000 50.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 484.001 15.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.1026 46.5544 -1.6304 0.2871 0.0000 0.0000 151.5388 -56.9223 1.4408 5.0000 8.0000 50.0010 49.9340 0.0000 0.0000 50.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 483.540 19.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.5396 47.2666 -1.6304 0.2871 0.0000 0.0000 151.0407 -57.9186 1.4408 5.0000 7.7500 49.9980 49.8160 0.0000 0.0000 50.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 483.653 20.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.9694 47.9798 -1.6304 0.2871 0.0000 0.0000 150.5151 -58.9695 1.4408 5.0000 7.5000 50.0030 49.8360 0.0000 0.0000 50.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 484.572 10.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.3906 48.6944 -1.6304 0.2871 0.0000 0.0000 149.9599 -60.0802 1.4408 5.0000 7.2500 50.0070 49.9220 0.0000 0.0000 50.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 484.689 9.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.8019 49.4109 -1.6304 0.2871 0.0000 0.0000 149.3717 -61.2567 1.4408 5.0000 7.0000 50.0040 49.8930 0.0000 0.0000 50.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 484.513 11.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.2018 50.1297 -1.6304 0.2871 0.0000 0.0000 148.7471 -62.5057 1.4408 5.0000 6.7500 50.0000 49.8050 0.0000 0.0000 50.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 484.238 8.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.5889 50.8512 -1.6304 0.2871 0.0000 0.0000 148.0824 -63.8352 1.4408 5.0000 6.5000 49.9980 49.8960 0.0000 0.0000 50.000
+# Sum of Counts = 366
+# Center of Mass = -4.812842+/-0.367770
+# Full Width Half-Maximum = 3.564480+/-0.221748
+# 11:51:49 AM 6/27/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0167.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0167.dat
new file mode 100644
index 0000000..3d0ae79
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0167.dat
@@ -0,0 +1,75 @@
+# scan = 167
+# date = 6/27/2012
+# time = 11:51:49 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 2
+# builtin_command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-T (-1, 0, 2.9), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0001 2.9000 -6.5000 121.283 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.7316 65.5698 -1.6304 0.2871 0.0000 0.0000 156.5792 -46.8416 2.2217 5.0000 11.5000 50.0010 49.9020 0.0000 0.0000 50.000
+ 2 -1.0000 0.0001 2.9000 -6.4000 121.233 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.3162 65.8723 -1.6304 0.2871 0.0000 0.0000 156.4706 -47.0589 2.2217 5.0000 11.4000 50.0040 49.7950 0.0000 0.0000 50.000
+ 3 -1.0000 0.0001 2.9000 -6.3000 121.230 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.9000 66.1762 -1.6304 0.2871 0.0000 0.0000 156.3603 -47.2793 2.2217 5.0000 11.3000 49.9970 49.9000 0.0000 0.0000 50.000
+ 4 -1.0000 0.0001 2.9000 -6.2000 121.299 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.4830 66.4816 -1.6304 0.2871 0.0000 0.0000 156.2486 -47.5029 2.2217 5.0000 11.2000 50.0010 49.7940 0.0000 0.0000 50.000
+ 5 -1.0000 0.0001 2.9000 -6.1000 120.902 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0650 66.7886 -1.6304 0.2871 0.0000 0.0000 156.1352 -47.7296 2.2217 5.0000 11.1000 50.0060 49.7590 0.0000 0.0000 50.000
+ 6 -1.0000 0.0001 2.9000 -6.0000 121.328 15.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.6461 67.0971 -1.6304 0.2871 0.0000 0.0000 156.0202 -47.9596 2.2217 5.0000 11.0000 50.0000 49.7070 0.0000 0.0000 50.000
+ 7 -1.0000 0.0001 2.9000 -5.9000 121.510 18.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2263 67.4073 -1.6304 0.2871 0.0000 0.0000 155.9035 -48.1930 2.2217 5.0000 10.9000 49.9980 49.8110 0.0000 0.0000 50.000
+ 8 -1.0000 0.0001 2.9000 -5.8000 121.229 67.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.8055 67.7190 -1.6304 0.2871 0.0000 0.0000 155.7851 -48.4298 2.2217 5.0000 10.8000 50.0010 49.7700 0.0000 0.0000 50.000
+ 9 -1.0000 0.0001 2.9000 -5.7000 121.616 57.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.3837 68.0325 -1.6304 0.2871 0.0000 0.0000 155.6650 -48.6702 2.2217 5.0000 10.7000 49.9990 49.7250 0.0000 0.0000 50.000
+ 10 -1.0000 0.0001 2.9000 -5.6000 121.115 23.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9608 68.3477 -1.6304 0.2871 0.0000 0.0000 155.5430 -48.9142 2.2217 5.0000 10.6000 49.9980 49.8290 0.0000 0.0000 50.000
+ 11 -1.0000 0.0001 2.9000 -5.5000 121.065 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5369 68.6647 -1.6304 0.2871 0.0000 0.0000 155.4190 -49.1619 2.2217 5.0000 10.5000 50.0010 49.6570 0.0000 0.0000 50.000
+ 12 -1.0000 0.0001 2.9000 -5.4000 120.882 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1119 68.9835 -1.6304 0.2871 0.0000 0.0000 155.2933 -49.4134 2.2217 5.0000 10.4000 50.0040 49.8580 0.0000 0.0000 50.000
+ 13 -1.0000 0.0001 2.9000 -5.3000 120.916 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.6857 69.3042 -1.6304 0.2871 0.0000 0.0000 155.1656 -49.6688 2.2217 5.0000 10.3000 50.0020 49.8040 0.0000 0.0000 50.000
+ 14 -1.0000 0.0001 2.9000 -5.2000 121.543 5.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.2584 69.6269 -1.6304 0.2871 0.0000 0.0000 155.0358 -49.9283 2.2217 5.0000 10.2000 50.0040 49.8280 0.0000 0.0000 50.000
+ 15 -1.0000 0.0001 2.9000 -5.1000 121.671 2.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.8298 69.9515 -1.6304 0.2871 0.0000 0.0000 154.9041 -50.1919 2.2217 5.0000 10.1000 50.0020 49.7840 0.0000 0.0000 50.000
+ 16 -1.0000 0.0001 2.9000 -5.0000 121.000 5.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.4001 70.2782 -1.6304 0.2871 0.0000 0.0000 154.7702 -50.4597 2.2217 5.0000 10.0000 50.0020 49.7640 0.0000 0.0000 50.000
+ 17 -1.0000 0.0001 2.9000 -4.9000 120.618 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9691 70.6069 -1.6304 0.2871 0.0000 0.0000 154.6341 -50.7319 2.2217 5.0000 9.9000 49.9990 49.8600 0.0000 0.0000 50.000
+ 18 -1.0000 0.0001 2.9000 -4.8000 120.818 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5367 70.9378 -1.6304 0.2871 0.0000 0.0000 154.4958 -51.0086 2.2217 5.0000 9.8000 50.0000 49.8080 0.0000 0.0000 50.000
+ 19 -1.0000 0.0001 2.9000 -4.7000 121.278 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1030 71.2709 -1.6304 0.2871 0.0000 0.0000 154.3549 -51.2898 2.2217 5.0000 9.7000 49.9990 49.6870 0.0000 0.0000 50.000
+ 20 -1.0000 0.0001 2.9000 -4.6000 121.149 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.6680 71.6062 -1.6304 0.2871 0.0000 0.0000 154.2122 -51.5757 2.2217 5.0000 9.6000 50.0020 49.6970 0.0000 0.0000 50.000
+ 21 -1.0000 0.0001 2.9000 -4.5000 120.967 12.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.2315 71.9440 -1.6304 0.2871 0.0000 0.0000 154.0666 -51.8667 2.2217 5.0000 9.5000 50.0020 49.7450 0.0000 0.0000 50.000
+ 22 -1.0000 0.0001 2.9000 -4.4000 121.275 12.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.7936 72.2841 -1.6304 0.2871 0.0000 0.0000 153.9188 -52.1624 2.2217 5.0000 9.4000 49.9990 49.8060 0.0000 0.0000 50.000
+ 23 -1.0000 0.0001 2.9000 -4.3000 120.921 38.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.3542 72.6266 -1.6304 0.2871 0.0000 0.0000 153.7683 -52.4633 2.2217 5.0000 9.3000 49.9980 49.8690 0.0000 0.0000 50.000
+ 24 -1.0000 0.0001 2.9000 -4.2000 121.477 66.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9132 72.9717 -1.6304 0.2871 0.0000 0.0000 153.6152 -52.7696 2.2217 5.0000 9.2000 49.9970 49.8070 0.0000 0.0000 50.000
+ 25 -1.0000 0.0001 2.9000 -4.1000 121.063 88.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.4706 73.3194 -1.6304 0.2871 0.0000 0.0000 153.4594 -53.0813 2.2217 5.0000 9.1000 50.0030 49.7930 0.0000 0.0000 50.000
+ 26 -1.0000 0.0001 2.9000 -4.0000 120.982 56.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.0264 73.6698 -1.6304 0.2871 0.0000 0.0000 153.3007 -53.3986 2.2217 5.0000 9.0000 50.0010 49.7700 0.0000 0.0000 50.000
+ 27 -1.0000 0.0001 2.9000 -3.9000 121.383 45.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.5806 74.0230 -1.6304 0.2871 0.0000 0.0000 153.1392 -53.7217 2.2217 5.0000 8.9000 49.9960 49.9110 0.0000 0.0000 50.000
+ 28 -1.0000 0.0001 2.9000 -3.8000 121.098 37.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.1330 74.3789 -1.6304 0.2871 0.0000 0.0000 152.9746 -54.0507 2.2217 5.0000 8.8000 49.9990 49.8200 0.0000 0.0000 50.000
+ 29 -1.0000 0.0001 2.9000 -3.7000 121.397 48.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.6837 74.7378 -1.6304 0.2871 0.0000 0.0000 152.8070 -54.3860 2.2217 5.0000 8.7000 49.9980 49.7590 0.0000 0.0000 50.000
+ 30 -1.0000 0.0001 2.9000 -3.6000 121.619 142.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.2325 75.0997 -1.6304 0.2871 0.0000 0.0000 152.6362 -54.7275 2.2217 5.0000 8.6000 49.9980 49.7870 0.0000 0.0000 50.000
+ 31 -1.0000 0.0001 2.9000 -3.5000 121.172 167.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.7795 75.4647 -1.6304 0.2871 0.0000 0.0000 152.4622 -55.0756 2.2217 5.0000 8.5000 50.0000 49.9290 0.0000 0.0000 50.000
+ 32 -1.0000 0.0001 2.9000 -3.4000 121.075 57.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.3246 75.8329 -1.6304 0.2871 0.0000 0.0000 152.2847 -55.4305 2.2217 5.0000 8.4000 50.0040 49.9320 0.0000 0.0000 50.000
+ 33 -1.0000 0.0001 2.9000 -3.3000 121.447 25.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.8677 76.2044 -1.6304 0.2871 0.0000 0.0000 152.1038 -55.7924 2.2217 5.0000 8.3000 49.9990 49.7540 0.0000 0.0000 50.000
+ 34 -1.0000 0.0001 2.9000 -3.2000 121.169 14.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.4087 76.5793 -1.6304 0.2871 0.0000 0.0000 151.9191 -56.1615 2.2217 5.0000 8.2000 50.0020 49.8120 0.0000 0.0000 50.000
+ 35 -1.0000 0.0001 2.9000 -3.1000 121.326 9.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.9477 76.9576 -1.6304 0.2871 0.0000 0.0000 151.7310 -56.5380 2.2217 5.0000 8.1000 50.0000 49.8440 0.0000 0.0000 50.000
+ 36 -1.0000 0.0001 2.9000 -3.0000 121.279 9.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4846 77.3396 -1.6304 0.2871 0.0000 0.0000 151.5387 -56.9223 2.2217 5.0000 8.0000 50.0040 49.6590 0.0000 0.0000 50.000
+ 37 -1.0000 0.0001 2.9000 -2.9000 121.144 10.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.0192 77.7253 -1.6304 0.2871 0.0000 0.0000 151.3427 -57.3146 2.2217 5.0000 7.9000 50.0040 49.7460 0.0000 0.0000 50.000
+ 38 -1.0000 0.0001 2.9000 -2.8000 121.044 9.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.5516 78.1148 -1.6304 0.2871 0.0000 0.0000 151.1424 -57.7152 2.2217 5.0000 7.8000 50.0010 49.8080 0.0000 0.0000 50.000
+ 39 -1.0000 0.0001 2.9000 -2.7000 121.203 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.0816 78.5083 -1.6304 0.2871 0.0000 0.0000 150.9378 -58.1243 2.2217 5.0000 7.7000 49.9960 49.8110 0.0000 0.0000 50.000
+ 40 -1.0000 0.0001 2.9000 -2.6000 120.897 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.6092 78.9059 -1.6304 0.2871 0.0000 0.0000 150.7289 -58.5423 2.2217 5.0000 7.6000 49.9970 49.8230 0.0000 0.0000 50.000
+ 41 -1.0000 0.0001 2.9000 -2.5000 120.985 2.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.1344 79.3077 -1.6304 0.2871 0.0000 0.0000 150.5152 -58.9695 2.2217 5.0000 7.5000 49.9990 49.8290 0.0000 0.0000 50.000
+# Sum of Counts = 1107
+# Center of Mass = -4.165041+/-0.179114
+# Full Width Half-Maximum = 1.810595+/-0.093050
+# 1:16:36 PM 6/27/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0168.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0168.dat
new file mode 100644
index 0000000..73a2854
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0168.dat
@@ -0,0 +1,55 @@
+# scan = 168
+# date = 6/27/2012
+# time = 1:21:34 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) check at 50 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.1149 1.000 744.000 1377.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0174 0.0001 2.9995 5.0000 5.0000 0.0000 167.5340 71.9170 0.0000 0.0000 200.000
+ 2 30.2149 1.000 957.000 1363.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0157 0.0001 2.9996 5.0000 5.0000 0.0000 167.8440 72.0840 0.0000 0.0000 200.000
+ 3 30.3149 1.000 1279.000 1415.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0139 0.0001 2.9997 5.0000 5.0000 0.0000 168.1350 72.2090 0.0000 0.0000 200.000
+ 4 30.4149 1.000 1903.000 1406.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0122 0.0001 2.9998 5.0000 5.0000 0.0000 168.4160 72.3750 0.0000 0.0000 200.000
+ 5 30.5149 1.000 3120.000 1435.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0105 0.0001 2.9998 5.0000 5.0000 0.0000 168.6850 72.4860 0.0000 0.0000 200.000
+ 6 30.6149 1.000 5956.000 1376.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0087 0.0001 2.9999 5.0000 5.0000 0.0000 168.9670 72.6570 0.0000 0.0000 200.000
+ 7 30.7149 1.000 13591.000 1428.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0070 0.0001 2.9999 5.0000 5.0000 0.0000 169.2620 72.8060 0.0000 0.0000 200.000
+ 8 30.8149 1.000 33181.000 1425.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0052 0.0001 3.0000 5.0000 5.0000 0.0000 169.5530 72.8990 0.0000 0.0000 200.000
+ 9 30.9149 1.000 64374.000 1389.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0035 0.0001 3.0000 5.0000 5.0000 0.0000 169.8350 73.0650 0.0000 0.0000 200.000
+ 10 31.0149 1.000 91247.000 1327.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0018 0.0001 3.0000 5.0000 5.0000 0.0000 170.1210 73.1790 0.0000 0.0000 200.000
+ 11 31.1149 1.000 99835.000 1391.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0000 0.0001 3.0000 5.0000 5.0000 0.0000 170.4160 73.2760 0.0000 0.0000 200.000
+ 12 31.2149 1.000 88212.000 1357.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0017 0.0001 3.0000 5.0000 5.0000 0.0000 170.7020 73.4670 0.0000 0.0000 200.000
+ 13 31.3149 1.000 61644.000 1383.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0035 0.0001 3.0000 5.0000 5.0000 0.0000 170.9960 73.6480 0.0000 0.0000 200.000
+ 14 31.4149 1.000 32050.000 1419.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0052 0.0001 3.0000 5.0000 5.0000 0.0000 171.2970 73.7760 0.0000 0.0000 200.000
+ 15 31.5149 1.000 13825.000 1333.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0069 0.0001 2.9999 5.0000 5.0000 0.0000 171.5980 73.8950 0.0000 0.0000 200.000
+ 16 31.6149 1.000 5973.000 1397.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0087 0.0001 2.9999 5.0000 5.0000 0.0000 171.9050 74.0610 0.0000 0.0000 200.000
+ 17 31.7149 1.000 2865.000 1356.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0104 0.0001 2.9998 5.0000 5.0000 0.0000 172.1890 74.2360 0.0000 0.0000 200.000
+ 18 31.8149 1.000 1609.000 1306.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0121 0.0001 2.9998 5.0000 5.0000 0.0000 172.4900 74.3330 0.0000 0.0000 200.000
+ 19 31.9149 1.000 1026.000 1327.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0139 0.0001 2.9997 5.0000 5.0000 0.0000 172.7650 74.5240 0.0000 0.0000 200.000
+ 20 32.0149 1.000 747.000 1420.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0156 0.0001 2.9996 5.0000 5.0000 0.0000 173.0580 74.6500 0.0000 0.0000 200.000
+ 21 32.1149 1.000 586.000 1351.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0174 0.0001 2.9995 5.0000 5.0000 0.0000 173.3490 74.7540 0.0000 0.0000 200.000
+# Sum of Counts = 524724
+# Center of Mass = 31.111098+/-0.060739
+# Full Width Half-Maximum = 0.463058+/-0.027595
+# 1:22:07 PM 6/27/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0169.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0169.dat
new file mode 100644
index 0000000..1e405e0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0169.dat
@@ -0,0 +1,55 @@
+# scan = 169
+# date = 6/27/2012
+# time = 1:22:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) check at 50 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.7442 30.1149 1.000 9.000 1387.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5474 -0.0000 0.0001 2.9120 5.0000 5.0000 0.0000 176.4460 76.3370 0.0000 0.0000 200.000
+ 2 59.9443 30.2149 1.000 14.000 1425.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5521 -0.0000 0.0001 2.9208 5.0000 5.0000 0.0000 176.8910 76.5180 0.0000 0.0000 200.000
+ 3 60.1443 30.3149 1.000 40.000 1397.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5568 -0.0000 0.0001 2.9296 5.0000 5.0000 0.0000 177.3080 76.7300 0.0000 0.0000 200.000
+ 4 60.3443 30.4149 1.000 99.000 1331.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5615 -0.0000 0.0001 2.9385 5.0000 5.0000 0.0000 177.7000 76.9560 0.0000 0.0000 200.000
+ 5 60.5443 30.5149 1.000 354.000 1350.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5661 -0.0000 0.0001 2.9473 5.0000 5.0000 0.0000 178.1030 77.1560 0.0000 0.0000 200.000
+ 6 60.7443 30.6149 1.000 1490.000 1330.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5708 -0.0000 0.0001 2.9561 5.0000 5.0000 0.0000 178.5310 77.3640 0.0000 0.0000 200.000
+ 7 60.9443 30.7149 1.000 6276.000 1371.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5755 -0.0000 0.0001 2.9649 5.0000 5.0000 0.0000 178.9100 77.5180 0.0000 0.0000 200.000
+ 8 61.1443 30.8149 1.000 22587.000 1403.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5802 -0.0000 0.0001 2.9737 5.0000 5.0000 0.0000 179.3100 77.7590 0.0000 0.0000 200.000
+ 9 61.3443 30.9149 1.000 55812.000 1350.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5848 -0.0000 0.0001 2.9825 5.0000 5.0000 0.0000 179.7480 77.9540 0.0000 0.0000 200.000
+ 10 61.5443 31.0149 1.000 88085.000 1294.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5895 -0.0000 0.0001 2.9912 5.0000 5.0000 0.0000 180.1470 78.1950 0.0000 0.0000 200.000
+ 11 61.7443 31.1149 1.000 100221.000 1388.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0000 0.0001 3.0000 5.0000 5.0000 0.0000 180.5720 78.3480 0.0000 0.0000 200.000
+ 12 61.9443 31.2149 1.000 84701.000 1389.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5988 -0.0000 0.0001 3.0088 5.0000 5.0000 0.0000 180.9870 78.5300 0.0000 0.0000 200.000
+ 13 62.1443 31.3149 1.000 50257.000 1449.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6034 -0.0000 0.0001 3.0175 5.0000 5.0000 0.0000 181.4270 78.7120 0.0000 0.0000 200.000
+ 14 62.3443 31.4149 1.000 20086.000 1352.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6081 -0.0000 0.0001 3.0262 5.0000 5.0000 0.0000 181.8220 78.9920 0.0000 0.0000 200.000
+ 15 62.5443 31.5149 1.000 5492.000 1414.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6127 -0.0000 0.0001 3.0350 5.0000 5.0000 0.0000 182.2230 79.1460 0.0000 0.0000 200.000
+ 16 62.7443 31.6149 1.000 1216.000 1373.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6174 -0.0000 0.0001 3.0437 5.0000 5.0000 0.0000 182.6140 79.3590 0.0000 0.0000 200.000
+ 17 62.9443 31.7149 1.000 275.000 1292.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6220 -0.0000 0.0001 3.0524 5.0000 5.0000 0.0000 183.0130 79.6180 0.0000 0.0000 200.000
+ 18 63.1443 31.8149 1.000 67.000 1351.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6266 -0.0000 0.0001 3.0611 5.0000 5.0000 0.0000 183.4480 79.7710 0.0000 0.0000 200.000
+ 19 63.3443 31.9149 1.000 25.000 1356.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6312 -0.0000 0.0001 3.0698 5.0000 5.0000 0.0000 183.8580 80.0170 0.0000 0.0000 200.000
+ 20 63.5443 32.0149 1.000 4.000 1340.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6358 -0.0000 0.0001 3.0785 5.0000 5.0000 0.0000 184.2540 80.1600 0.0000 0.0000 200.000
+ 21 63.7443 32.1149 1.000 8.000 1398.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6404 -0.0000 0.0001 3.0871 5.0000 5.0000 0.0000 184.6660 80.3270 0.0000 0.0000 200.000
+# Sum of Counts = 437118
+# Center of Mass = 61.731754+/-0.132047
+# Full Width Half-Maximum = 0.682730+/-0.076575
+# 1:23:09 PM 6/27/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0170.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0170.dat
new file mode 100644
index 0000000..105d174
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0170.dat
@@ -0,0 +1,55 @@
+# scan = 170
+# date = 6/27/2012
+# time = 1:24:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) check at 50 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.7471 1.000 78.000 1370.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9940 0.0000 1.0524 5.0000 5.0000 0.0000 195.2750 85.3870 0.0000 0.0000 200.000
+ 2 103.8471 1.000 116.000 1359.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9947 0.0000 1.0472 5.0000 5.0000 0.0000 195.5550 85.5220 0.0000 0.0000 200.000
+ 3 103.9471 1.000 187.000 1326.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9953 0.0000 1.0420 5.0000 5.0000 0.0000 195.8830 85.6750 0.0000 0.0000 200.000
+ 4 104.0471 1.000 265.000 1385.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9959 0.0000 1.0367 5.0000 5.0000 0.0000 196.2070 85.7910 0.0000 0.0000 200.000
+ 5 104.1471 1.000 448.000 1377.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9965 0.0000 1.0315 5.0000 5.0000 0.0000 196.5010 85.9670 0.0000 0.0000 200.000
+ 6 104.2471 1.000 1027.000 1313.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9971 0.0000 1.0262 5.0000 5.0000 0.0000 196.8110 86.0850 0.0000 0.0000 200.000
+ 7 104.3471 1.000 3129.000 1370.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9976 0.0000 1.0210 5.0000 5.0000 0.0000 197.0980 86.2680 0.0000 0.0000 200.000
+ 8 104.4471 1.000 9699.000 1400.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9982 0.0000 1.0158 5.0000 5.0000 0.0000 197.4060 86.3840 0.0000 0.0000 200.000
+ 9 104.5471 1.000 23281.000 1368.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9988 0.0000 1.0105 5.0000 5.0000 0.0000 197.6730 86.5450 0.0000 0.0000 200.000
+ 10 104.6471 1.000 38263.000 1404.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9994 0.0000 1.0053 5.0000 5.0000 0.0000 197.9560 86.6470 0.0000 0.0000 200.000
+ 11 104.7471 1.000 43738.000 1402.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 198.2540 86.7400 0.0000 0.0000 200.000
+ 12 104.8471 1.000 36276.000 1375.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0006 0.0000 0.9947 5.0000 5.0000 0.0000 198.5130 86.9090 0.0000 0.0000 200.000
+ 13 104.9471 1.000 20860.000 1478.000 0.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0011 0.0000 0.9895 5.0000 5.0000 0.0000 198.7070 87.0820 0.0000 0.0000 200.000
+ 14 105.0471 1.000 9077.000 1385.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0017 0.0000 0.9842 5.0000 5.0000 0.0000 198.8620 87.1550 0.0000 0.0000 200.000
+ 15 105.1471 1.000 3834.000 1306.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0023 0.0000 0.9790 5.0000 5.0000 0.0000 198.9530 87.2560 0.0000 0.0000 200.000
+ 16 105.2471 1.000 1614.000 1361.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0029 0.0000 0.9737 5.0000 5.0000 0.0000 199.0180 87.3940 0.0000 0.0000 200.000
+ 17 105.3471 1.000 655.000 1324.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0034 0.0000 0.9684 5.0000 5.0000 0.0000 199.0670 87.5130 0.0000 0.0000 200.000
+ 18 105.4471 1.000 319.000 1324.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0040 0.0000 0.9631 5.0000 5.0000 0.0000 199.1570 87.6360 0.0000 0.0000 200.000
+ 19 105.5471 1.000 182.000 1429.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0045 0.0000 0.9579 5.0000 5.0000 0.0000 199.2290 87.7620 0.0000 0.0000 200.000
+ 20 105.6471 1.000 108.000 1433.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0051 0.0000 0.9526 5.0000 5.0000 0.0000 199.3150 87.8990 0.0000 0.0000 200.000
+ 21 105.7471 1.000 85.000 1401.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0056 0.0000 0.9473 5.0000 5.0000 0.0000 199.3840 87.9990 0.0000 0.0000 200.000
+# Sum of Counts = 193241
+# Center of Mass = 104.746395+/-0.336981
+# Full Width Half-Maximum = 0.387095+/-0.168986
+# 1:24:38 PM 6/27/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0171.dat b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0171.dat
new file mode 100644
index 0000000..d2424bf
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/CG4C_exp0050_scan0171.dat
@@ -0,0 +1,55 @@
+# scan = 171
+# date = 6/27/2012
+# time = 1:24:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 50
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) check at 50 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.7453 103.7471 1.000 4.000 1434.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6405 0.9728 0.0000 0.9728 5.0000 5.0000 0.0000 199.6870 88.7280 0.0000 0.0000 200.000
+ 2 63.9453 103.8471 1.000 1.000 1377.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6451 0.9756 0.0000 0.9756 5.0000 5.0000 0.0000 199.7750 88.8860 0.0000 0.0000 200.000
+ 3 64.1453 103.9471 1.000 4.000 1402.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6497 0.9783 0.0000 0.9783 5.0000 5.0000 0.0000 199.8460 89.0880 0.0000 0.0000 200.000
+ 4 64.3453 104.0471 1.000 23.000 1399.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6543 0.9810 0.0000 0.9810 5.0000 5.0000 0.0000 199.9020 89.2660 0.0000 0.0000 200.000
+ 5 64.5453 104.1471 1.000 50.000 1299.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6588 0.9837 0.0000 0.9837 5.0000 5.0000 0.0000 199.9730 89.4490 0.0000 0.0000 200.000
+ 6 64.7453 104.2471 1.000 326.000 1339.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6634 0.9864 0.0000 0.9865 5.0000 5.0000 0.0000 200.0300 89.6620 0.0000 0.0000 200.000
+ 7 64.9453 104.3471 1.000 1651.000 1334.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6680 0.9892 0.0000 0.9892 5.0000 5.0000 0.0000 200.0960 89.8740 0.0000 0.0000 200.000
+ 8 65.1453 104.4471 1.000 7123.000 1394.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6726 0.9919 0.0000 0.9919 5.0000 5.0000 0.0000 200.1340 90.1120 0.0000 0.0000 200.000
+ 9 65.3453 104.5471 1.000 20691.000 1373.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6771 0.9946 0.0000 0.9946 5.0000 5.0000 0.0000 200.1850 90.2460 0.0000 0.0000 200.000
+ 10 65.5453 104.6471 1.000 37329.000 1332.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6817 0.9973 0.0000 0.9973 5.0000 5.0000 0.0000 200.2230 90.3820 0.0000 0.0000 200.000
+ 11 65.7453 104.7471 1.000 44227.000 1359.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 200.2520 90.5900 0.0000 0.0000 200.000
+ 12 65.9453 104.8471 1.000 36030.000 1348.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6908 1.0027 0.0000 1.0027 5.0000 5.0000 0.0000 200.2830 90.7760 0.0000 0.0000 200.000
+ 13 66.1453 104.9471 1.000 18962.000 1319.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6954 1.0054 0.0000 1.0054 5.0000 5.0000 0.0000 200.3300 90.9880 0.0000 0.0000 200.000
+ 14 66.3453 105.0471 1.000 6159.000 1323.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6999 1.0081 0.0000 1.0081 5.0000 5.0000 0.0000 200.3340 91.1670 0.0000 0.0000 200.000
+ 15 66.5453 105.1471 1.000 1499.000 1327.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7044 1.0108 0.0000 1.0108 5.0000 5.0000 0.0000 200.3490 91.3530 0.0000 0.0000 200.000
+ 16 66.7453 105.2471 1.000 323.000 1339.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7090 1.0135 0.0000 1.0135 5.0000 5.0000 0.0000 200.3790 91.4960 0.0000 0.0000 200.000
+ 17 66.9453 105.3471 1.000 73.000 1362.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7135 1.0161 0.0000 1.0161 5.0000 5.0000 0.0000 200.3750 91.7190 0.0000 0.0000 200.000
+ 18 67.1453 105.4471 1.000 15.000 1388.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7180 1.0188 0.0000 1.0188 5.0000 5.0000 0.0000 200.4010 91.8850 0.0000 0.0000 200.000
+ 19 67.3453 105.5471 1.000 6.000 1418.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7225 1.0215 0.0000 1.0215 5.0000 5.0000 0.0000 200.3970 92.0940 0.0000 0.0000 200.000
+ 20 67.5453 105.6471 1.000 6.000 1400.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7270 1.0242 0.0000 1.0242 5.0000 5.0000 0.0000 200.4090 92.3140 0.0000 0.0000 200.000
+ 21 67.7453 105.7471 1.000 6.000 1340.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7315 1.0268 0.0000 1.0269 5.0000 5.0000 0.0000 200.4080 92.4870 0.0000 0.0000 200.000
+# Sum of Counts = 174508
+# Center of Mass = 65.736006+/-0.222543
+# Full Width Half-Maximum = 0.625153+/-0.133709
+# 1:25:31 PM 6/27/2012 scan completed.
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html b/test_data/Bi_CTAX/exp50/Datafiles/index.html
new file mode 100644
index 0000000..1e2c65c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=D;O=A b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=D;O=A
new file mode 100644
index 0000000..5edeeab
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=D;O=A
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=D;O=D b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=D;O=D
new file mode 100644
index 0000000..77783a8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=D;O=D
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=M;O=A b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=M;O=A
new file mode 100644
index 0000000..c797291
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=M;O=A
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=M;O=D b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=M;O=D
new file mode 100644
index 0000000..77783a8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=M;O=D
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=N;O=A b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=N;O=A
new file mode 100644
index 0000000..1e2c65c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=N;O=A
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=N;O=D b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=N;O=D
new file mode 100644
index 0000000..77783a8
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=N;O=D
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=S;O=A b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=S;O=A
new file mode 100644
index 0000000..6f2d3ff
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=S;O=A
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=S;O=D b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=S;O=D
new file mode 100644
index 0000000..f1c2db2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Datafiles/index.html@C=S;O=D
@@ -0,0 +1,184 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Datafiles
+
+
+Index of /user_data/cg4c/exp50/Datafiles
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/LogFile.txt b/test_data/Bi_CTAX/exp50/LogFile.txt
new file mode 100644
index 0000000..c998fce
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/LogFile.txt
@@ -0,0 +1,18800 @@
+Beginning experiment # 43
+
+Proposal ID: "5137"
+
+Experiment title: "Measurement of the phonon dispersion of Bismuch at high temperatures"
+
+Users: "Michael Manley and Olivier Delaire"
+
+Local Contact: "T. Hong"
+
+Setting sample name to "C32D24CuN2O14".
+
+Setting sample type to single crystal.
+
+Setting sample mosaic to 30.000 min.
+
+Setting next scan number to 1
+
+Initializing preset/counting configuration:
+
+Preset counting mode is set to normal.
+
+Setting the default preset channel to "mcu".
+
+Setting the default preset value to 180.000.
+
+Setting the default counting channel to "detector".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=1.000 k1=1.000 l1=0.000 h2=0.000 k2=0.000 l2=1.000
+the single peak position:
+h=1.0000 k=1.0000 l=0.0000 a1=69.7836 s2=34.8918 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=5.0000 b=5.0000 c=5.0000 alpha=90.0000 beta=90.0000 gamma=90.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 1.0000 1.0000 0.0000 69.7836 34.8918 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 1.0000 1.0000 0.0000 5.0000 5.0000 142.9286 69.7836 34.8918 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.5000 0.5000 0.2222 69.7836 34.8918 0.0000 0.0000 5.0000 5.0000
+
+
+Setting instrument plus-minus configuration to - + -
+
+
+Initial Spectrometer configuration:
+
+The monochromator is PG002 with a d-spacing of 3.355 Angstroms.
+
+The monochromator is Pg002 with a d-spacing of 3.355 Angstroms.
+
+Collimation: 48-40-40-120
+
+The spectrometer is configured to have a fixed final energy of 5.0000 meV.
+
+
+The username/password request for web access was cancelled or the dialog box timed out.
+Web-based control will not function until these are set. This can be accomplished using the 'webcontrol' command.
+
+
+11:07:37 AM 6/21/2012 Executing "drive ei 5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:07:38 AM 6/21/2012 Executing "preset time 10"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 10.000000
+
+
+11:07:38 AM 6/21/2012 Executing "scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV""
+
+Setting the scantitle to:
+Ni powder (1/2,1/2,1/2), Ei=5 meV
+
+
+11:07:38 AM 6/21/2012 Executing "scan s2 56 63 0.2"
+
+
+# scan = 1
+# date = 6/21/2012
+# time = 11:07:38 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 75.000 20857.000 10.323 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 0.7246 0.7246 0.5449 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 56.2000 10.000 84.000 20628.000 10.209 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 0.7263 0.7263 0.5485 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 56.4000 10.000 83.000 20590.000 10.190 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 0.7280 0.7280 0.5521 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 56.6000 10.000 69.000 20480.000 10.136 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 0.7297 0.7297 0.5557 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 56.8000 10.000 83.000 20458.000 10.125 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 0.7314 0.7314 0.5593 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 57.0000 10.000 93.000 20743.000 10.266 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 0.7331 0.7331 0.5629 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 57.2000 10.000 115.000 20641.000 10.216 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 0.7347 0.7347 0.5665 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 57.4000 10.000 128.000 20605.000 10.198 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 0.7364 0.7364 0.5701 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 57.6000 10.000 165.000 20358.000 10.076 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 0.7380 0.7380 0.5738 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 57.8000 10.000 177.000 20713.000 10.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 0.7396 0.7396 0.5774 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 58.0000 10.000 212.000 20300.000 10.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 0.7413 0.7413 0.5811 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 58.2000 10.000 201.000 20368.000 10.081 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 0.7429 0.7429 0.5847 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 58.4000 10.000 167.000 20407.000 10.100 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 0.7445 0.7445 0.5884 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 58.6000 10.000 114.000 20364.000 10.079 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 0.7461 0.7461 0.5921 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 58.8000 10.000 89.000 20379.000 10.086 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 0.7477 0.7477 0.5958 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 59.0000 10.000 88.000 20707.000 10.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 0.7492 0.7492 0.5995 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 59.2000 10.000 71.000 20563.000 10.177 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 0.7508 0.7508 0.6032 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 59.4000 10.000 75.000 20218.000 10.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 0.7524 0.7524 0.6069 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 59.6000 7.546 57.000 15528.000 7.685 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 0.7539 0.7539 0.6106 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 2146
+# Center of Mass = 57.824138+/-1.765375
+# Full Width Half-Maximum = 1.849465+/-0.706357
+# 11:11:25 AM 6/21/2012 scan stopped!!
+
+Abort issued!!
+
+11:11:30 AM 6/21/2012 Executing "drive s2 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 0.00000
+
+Drive completed.
+
+
+11:13:06 AM 6/21/2012 Executing "drive ei 5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:13:06 AM 6/21/2012 Executing "preset time 10"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 10.000000
+
+
+11:13:07 AM 6/21/2012 Executing "scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV""
+
+Setting the scantitle to:
+Ni powder (1/2,1/2,1/2), Ei=5 meV
+
+
+11:13:07 AM 6/21/2012 Executing "scan s2 56 63 0.2"
+
+
+# scan = 2
+# date = 6/21/2012
+# time = 11:13:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 354.000 20489.000 10.140 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 0.7246 0.7246 0.5449 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 56.2000 10.000 343.000 20541.000 10.166 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 0.7263 0.7263 0.5485 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 56.4000 10.000 326.000 20682.000 10.236 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 0.7280 0.7280 0.5521 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 56.6000 10.000 338.000 20530.000 10.161 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 0.7297 0.7297 0.5557 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 56.8000 10.000 350.000 20854.000 10.321 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 0.7314 0.7314 0.5593 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 57.0000 10.000 387.000 20468.000 10.130 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 0.7331 0.7331 0.5629 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 57.2000 10.000 386.000 20357.000 10.075 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 0.7347 0.7347 0.5665 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 57.4000 10.000 370.000 20525.000 10.158 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 0.7364 0.7364 0.5701 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 57.6000 10.000 368.000 20430.000 10.111 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 0.7380 0.7380 0.5738 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 57.8000 10.000 369.000 20494.000 10.143 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 0.7396 0.7396 0.5774 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 58.0000 10.000 400.000 20384.000 10.088 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 0.7413 0.7413 0.5811 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 58.2000 10.000 380.000 20710.000 10.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 0.7429 0.7429 0.5847 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 58.4000 10.000 365.000 20707.000 10.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 0.7445 0.7445 0.5884 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 58.6000 10.000 399.000 20643.000 10.217 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 0.7461 0.7461 0.5921 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 58.8000 10.000 575.000 20466.000 10.129 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 0.7477 0.7477 0.5958 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 59.0000 10.000 756.000 20505.000 10.148 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 0.7492 0.7492 0.5995 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 59.2000 10.000 1083.000 20255.000 10.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 0.7508 0.7508 0.6032 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 59.4000 10.000 1327.000 20406.000 10.099 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 0.7524 0.7524 0.6069 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 59.6000 10.000 1342.000 20385.000 10.089 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 0.7539 0.7539 0.6106 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 59.8000 10.000 1136.000 20457.000 10.125 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5487 0.7554 0.7554 0.6143 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 60.0000 10.000 1055.000 20195.000 9.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5534 0.7570 0.7570 0.6181 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 22 60.2000 10.000 769.000 20467.000 10.130 96.4440 142.9286 -74.1427 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5581 0.7585 0.7585 0.6218 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 23 60.4000 10.000 529.000 20405.000 10.099 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5628 0.7600 0.7600 0.6256 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 24 60.6000 10.000 398.000 20417.000 10.105 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5674 0.7615 0.7615 0.6293 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 25 60.8000 10.000 392.000 20013.000 9.905 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5721 0.7630 0.7630 0.6331 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 26 61.0000 10.000 392.000 20372.000 10.082 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5768 0.7645 0.7645 0.6368 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 27 61.2000 10.000 362.000 20472.000 10.132 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5815 0.7660 0.7660 0.6406 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 28 61.4000 10.000 388.000 20516.000 10.154 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5861 0.7674 0.7674 0.6444 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 29 61.6000 10.000 369.000 20583.000 10.187 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5908 0.7689 0.7689 0.6482 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 30 61.8000 10.000 365.000 20403.000 10.098 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5954 0.7703 0.7703 0.6520 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 31 62.0000 10.000 333.000 20474.000 10.133 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6001 0.7718 0.7718 0.6558 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 32 62.2000 10.000 387.000 20528.000 10.160 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6047 0.7732 0.7732 0.6596 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 33 62.4000 10.000 357.000 20276.000 10.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6094 0.7746 0.7746 0.6634 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 34 62.6000 10.000 359.000 20654.000 10.222 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6140 0.7760 0.7760 0.6673 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 35 62.8000 10.000 355.000 20487.000 10.139 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6186 0.7774 0.7774 0.6711 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 36 63.0000 10.000 348.000 20518.000 10.155 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6233 0.7788 0.7788 0.6749 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 18512
+# Center of Mass = 59.531126+/-0.618908
+# Full Width Half-Maximum = 3.498862+/-0.177179
+# 11:20:48 AM 6/21/2012 scan completed.
+
+11:20:48 AM 6/21/2012 Executing "scantitle "Ni powder (1,0,0), Ei=5 meV""
+
+Setting the scantitle to:
+Ni powder (1,0,0), Ei=5 meV
+
+
+11:20:48 AM 6/21/2012 Executing "scan s2 67 73 0.2"
+
+
+# scan = 3
+# date = 6/21/2012
+# time = 11:20:48 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s2 67 73 0.2
+# builtin_command = scan s2 67 73 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1,0,0), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 67.0000 10.000 392.000 20589.000 10.190 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7147 0.8046 0.8046 0.7531 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 67.2000 10.000 343.000 20737.000 10.263 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7193 0.8058 0.8058 0.7571 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 67.4000 10.000 353.000 20454.000 10.123 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7238 0.8070 0.8070 0.7611 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 67.6000 10.000 374.000 20425.000 10.109 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7283 0.8081 0.8081 0.7651 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 67.8000 10.000 349.000 20199.000 9.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7328 0.8093 0.8093 0.7691 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 68.0000 10.000 340.000 20743.000 10.266 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7373 0.8104 0.8104 0.7731 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 68.2000 10.000 384.000 20419.000 10.106 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7418 0.8116 0.8116 0.7771 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 68.4000 10.000 342.000 20392.000 10.092 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7463 0.8127 0.8127 0.7811 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 68.6000 10.000 389.000 20170.000 9.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7507 0.8138 0.8138 0.7851 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 68.8000 10.000 371.000 20278.000 10.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7552 0.8149 0.8149 0.7891 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 69.0000 10.000 397.000 20267.000 10.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7597 0.8160 0.8160 0.7931 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 69.2000 10.000 487.000 20342.000 10.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7642 0.8171 0.8171 0.7972 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 69.4000 10.000 636.000 20725.000 10.257 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7686 0.8182 0.8182 0.8012 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 69.6000 10.000 759.000 20264.000 10.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7731 0.8193 0.8193 0.8053 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 69.8000 10.000 903.000 20497.000 10.144 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7775 0.8203 0.8203 0.8093 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 70.0000 10.000 874.000 20487.000 10.139 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7820 0.8214 0.8214 0.8134 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 70.2000 10.000 835.000 20386.000 10.089 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7864 0.8224 0.8224 0.8174 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 70.4000 10.000 699.000 20649.000 10.220 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7908 0.8234 0.8234 0.8215 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 70.6000 10.000 638.000 20559.000 10.175 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7953 0.8245 0.8245 0.8255 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 70.8000 10.000 548.000 20424.000 10.108 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7997 0.8255 0.8255 0.8296 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 71.0000 10.000 411.000 20422.000 10.107 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8041 0.8265 0.8265 0.8337 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 22 71.2000 10.000 403.000 20618.000 10.204 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8085 0.8274 0.8274 0.8378 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 23 71.4000 10.000 366.000 20501.000 10.146 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8129 0.8284 0.8284 0.8419 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 24 71.6000 10.000 384.000 20478.000 10.135 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8173 0.8294 0.8294 0.8460 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 25 71.8000 10.000 376.000 20490.000 10.141 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8217 0.8304 0.8304 0.8500 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 26 72.0000 10.000 377.000 20522.000 10.157 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8261 0.8313 0.8313 0.8542 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 27 72.2000 10.000 361.000 20218.000 10.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8305 0.8322 0.8322 0.8583 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 28 72.4000 10.000 361.000 20680.000 10.235 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8349 0.8332 0.8332 0.8624 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 29 72.6000 10.000 376.000 20677.000 10.233 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8392 0.8341 0.8341 0.8665 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 30 72.8000 10.000 346.000 20220.000 10.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8436 0.8350 0.8350 0.8706 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 31 73.0000 10.000 366.000 20401.000 10.097 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 14540
+# Center of Mass = 70.009959+/-0.821200
+# Full Width Half-Maximum = 3.183326+/-0.265191
+# 11:26:40 AM 6/21/2012 scan completed.
+
+11:29:23 AM 6/21/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:30:57 AM 6/21/2012 Executing "preset time 30"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 30.000000
+
+
+11:31:17 AM 6/21/2012 Executing "scantitle "Analyzer calibration""
+
+Setting the scantitle to:
+Analyzer calibration
+
+
+11:31:26 AM 6/21/2012 Executing "scan a1 @(a1)+-2 @(a1)+2 0.200000"
+ Derived from "scanrel a1 -2 2 0.2"
+
+
+# scan = 4
+# date = 6/21/2012
+# time = 11:31:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel a1 -2 2 0.2
+# builtin_command = scan a1 @(a1)+-2 @(a1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 30.000000
+# def_x = a1
+# def_y = detector
+# col_headers =
+# Pt. a1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 140.9286 30.000 14.000 62068.000 30.719 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 141.1286 30.000 17.000 61556.000 30.465 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 141.3286 30.000 29.000 60759.000 30.071 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 141.5286 30.000 45.000 61390.000 30.383 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 141.7286 30.000 86.000 61297.000 30.337 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 141.9286 30.000 127.000 61134.000 30.256 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 142.1286 30.000 189.000 61139.000 30.259 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 142.3286 30.000 248.000 61523.000 30.449 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 142.5286 30.000 262.000 60847.000 30.114 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 142.7286 30.000 373.000 60895.000 30.138 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 142.9286 30.000 399.000 61304.000 30.341 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 143.1286 30.000 396.000 61229.000 30.303 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 143.3286 30.000 365.000 60906.000 30.144 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 143.5286 30.000 295.000 61295.000 30.336 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 143.7286 30.000 214.000 60993.000 30.187 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 143.9286 30.000 153.000 61026.000 30.203 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 144.1286 30.000 90.000 61337.000 30.357 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 144.3286 30.000 48.000 61220.000 30.299 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 144.5286 30.000 26.000 61137.000 30.258 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 144.7286 30.000 27.000 61430.000 30.403 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 144.9286 30.000 16.000 61634.000 30.504 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 0.8359 0.8359 0.8747 5.0000 5.0000 0.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 3419
+# Center of Mass = 142.971361+/-3.457937
+# Full Width Half-Maximum = 1.409162+/-1.363653
+# 11:42:22 AM 6/21/2012 scan completed.
+
+11:42:22 AM 6/21/2012 Executing "drive a1 @(a1)-2"
+ Derived from "scanrel a1 -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a1 142.92864
+
+Drive completed.
+
+
+11:44:33 AM 6/21/2012 Executing "scan a2 @(a2)+-5 @(a2)+5 0.400000"
+ Derived from "scanrel a2 -5 5 0.4"
+
+
+# scan = 5
+# date = 6/21/2012
+# time = 11:44:33 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel a2 -5 5 0.4
+# builtin_command = scan a2 @(a2)+-5 @(a2)+5 0.400000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 30.000000
+# def_x = a2
+# def_y = detector
+# col_headers =
+# Pt. a2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -79.1428 30.000 3.000 60901.000 30.141 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.7996 0.7910 0.7910 0.8941 5.0000 4.4771 0.5229 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 -78.7428 30.000 0.000 61201.000 30.290 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8031 0.7943 0.7943 0.8927 5.0000 4.5152 0.4848 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 -78.3428 30.000 0.000 61195.000 30.287 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8067 0.7977 0.7977 0.8912 5.0000 4.5539 0.4461 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 -77.9428 30.000 4.000 61397.000 30.387 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8103 0.8012 0.8012 0.8897 5.0000 4.5933 0.4067 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 -77.5428 30.000 16.000 61017.000 30.198 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8140 0.8046 0.8046 0.8882 5.0000 4.6332 0.3668 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 -77.1428 30.000 36.000 61272.000 30.325 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8178 0.8082 0.8082 0.8867 5.0000 4.6738 0.3262 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 -76.7428 30.000 105.000 61613.000 30.493 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8216 0.8117 0.8117 0.8852 5.0000 4.7151 0.2849 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 -76.3428 30.000 159.000 61223.000 30.300 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8255 0.8153 0.8153 0.8836 5.0000 4.7570 0.2430 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 -75.9428 30.000 230.000 61389.000 30.383 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8294 0.8190 0.8190 0.8820 5.0000 4.7996 0.2004 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 -75.5428 30.000 340.000 61050.000 30.215 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8334 0.8226 0.8226 0.8805 5.0000 4.8428 0.1572 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 -75.1428 30.000 321.000 61793.000 30.583 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8375 0.8264 0.8264 0.8788 5.0000 4.8868 0.1132 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 -74.7428 30.000 389.000 61273.000 30.325 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8416 0.8301 0.8301 0.8772 5.0000 4.9315 0.0685 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 -74.3428 30.000 376.000 61462.000 30.419 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8458 0.8340 0.8340 0.8756 5.0000 4.9770 0.0230 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 -73.9428 30.000 397.000 61085.000 30.232 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8501 0.8378 0.8378 0.8739 5.0000 5.0232 -0.0232 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 -73.5428 30.000 392.000 61970.000 30.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8545 0.8417 0.8417 0.8722 5.0000 5.0702 -0.0702 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 -73.1428 30.000 350.000 61933.000 30.652 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8589 0.8457 0.8457 0.8705 5.0000 5.1179 -0.1179 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 -72.7428 30.000 307.000 61266.000 30.322 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8633 0.8497 0.8497 0.8688 5.0000 5.1665 -0.1665 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 -72.3428 30.000 280.000 61322.000 30.349 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8679 0.8537 0.8537 0.8670 5.0000 5.2159 -0.2159 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 -71.9428 30.000 197.000 61422.000 30.399 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8725 0.8578 0.8578 0.8652 5.0000 5.2661 -0.2661 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 -71.5428 30.000 136.000 61302.000 30.340 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8772 0.8620 0.8620 0.8634 5.0000 5.3172 -0.3172 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 -71.1428 30.000 76.000 61466.000 30.421 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8820 0.8662 0.8662 0.8616 5.0000 5.3692 -0.3692 1.0000 504.9990 0.0000 0.0000 300.000
+ 22 -70.7428 30.000 26.000 61172.000 30.275 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8869 0.8705 0.8705 0.8598 5.0000 5.4220 -0.4220 1.0000 504.9990 0.0000 0.0000 300.000
+ 23 -70.3428 30.000 15.000 60734.000 30.058 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8918 0.8748 0.8748 0.8579 5.0000 5.4758 -0.4758 1.0000 504.9990 0.0000 0.0000 300.000
+ 24 -69.9428 30.000 1.000 61380.000 30.378 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.8969 0.8791 0.8791 0.8560 5.0000 5.5305 -0.5305 1.0000 504.9990 0.0000 0.0000 300.000
+ 25 -69.5428 30.000 2.000 61053.000 30.216 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.9020 0.8835 0.8835 0.8541 5.0000 5.5862 -0.5862 1.0000 504.9990 0.0000 0.0000 300.000
+ 26 -69.1428 30.000 1.000 61678.000 30.526 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 1.9072 0.8880 0.8880 0.8522 5.0000 5.6429 -0.6429 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 4159
+# Center of Mass = -74.036476+/-1.623715
+# Full Width Half-Maximum = 2.964343+/-0.701010
+# 11:59:27 AM 6/21/2012 scan completed.
+
+11:59:28 AM 6/21/2012 Executing "drive a2 @(a2)-5"
+ Derived from "scanrel a2 -5 5 0.4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -74.14280
+
+Drive completed.
+
+
+12:00:07 PM 6/21/2012 Executing "count preset time 60"
+
+12:00:07 PM 6/21/2012 Executing count command with preset channel "time" and preset value 60.00
+
+ time detector monitor mcu
+ 60.000 742.000 122754.000 60.753
+
+12:01:07 PM 6/21/2012 Count command completed.
+
+
+12:01:25 PM 6/21/2012 Executing "comment "The monitor count unit was set to @(methodreal0)" title "Setting the monitor count unit""
+ Derived from "mcu 122754"
+
+Setting the monitor count unit:
+The monitor count unit was set to 122754
+
+
+12:02:13 PM 6/21/2012 Executing "scan q 1.8 e -0.6 0.6 0.05 preset mcu 1"
+
+
+# scan = 6
+# date = 6/21/2012
+# time = 12:02:13 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.8 e -0.6 0.6 0.05 preset mcu 1
+# builtin_command = scan q 1.8 e -0.6 0.6 0.05 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.8000 -0.6000 56.713 6.000 122754.000 1.000 102.8211 140.0142 -79.9715 0.6359 0.0000 36.2000 0.0000 73.3597 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8375 0.8375 0.8056 4.4000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 1.8000 -0.5500 56.683 7.000 122754.000 1.000 102.2429 140.2844 -79.4312 0.6359 0.0000 36.0960 0.0000 73.1391 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8365 0.8365 0.8076 4.4500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 1.8000 -0.5000 56.478 14.000 122754.000 1.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 0.0000 72.9202 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8355 0.8355 0.8096 4.5000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 1.8000 -0.4500 55.980 13.000 122754.000 1.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 0.0000 72.7029 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8346 0.8346 0.8117 4.5500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 1.8000 -0.4000 55.988 12.000 122754.000 1.000 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 0.0000 72.4872 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8336 0.8336 0.8137 4.6000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 1.8000 -0.3500 55.647 12.000 122754.000 1.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 0.0000 72.2730 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8326 0.8326 0.8157 4.6500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 1.8000 -0.3000 55.430 12.000 122754.000 1.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 0.0000 72.0603 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8316 0.8316 0.8177 4.7000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 1.8000 -0.2500 55.156 35.000 122754.000 1.000 98.9472 141.7955 -76.4089 0.6359 0.0000 35.4800 0.0000 71.8492 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8306 0.8306 0.8198 4.7500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 1.8000 -0.2000 55.326 93.000 122754.000 1.000 98.4321 142.0306 -75.9388 0.6359 0.0000 35.3800 0.0000 71.6394 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8296 0.8296 0.8218 4.8000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 1.8000 -0.1500 55.290 321.000 122754.000 1.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 0.0000 71.4311 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8286 0.8286 0.8238 4.8500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 1.8000 -0.1000 56.786 658.000 122754.000 1.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 0.0000 71.2242 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8276 0.8276 0.8258 4.9000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 1.8000 -0.0500 58.424 840.000 122754.000 1.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 0.0000 71.0186 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8266 0.8266 0.8279 4.9500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 1.8000 0.0000 59.889 793.000 122754.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 70.8142 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8255 0.8255 0.8299 5.0000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 1.8000 0.0500 61.527 731.000 122754.000 1.000 95.9741 143.1431 -73.7138 0.6359 0.0000 34.8880 0.0000 70.6112 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8245 0.8245 0.8319 5.0500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 1.8000 0.1000 62.495 601.000 122754.000 1.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 0.0000 70.4095 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8235 0.8235 0.8340 5.1000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 1.8000 0.1500 61.784 435.000 122754.000 1.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 0.0000 70.2090 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8225 0.8225 0.8360 5.1500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 1.8000 0.2000 60.743 255.000 122754.000 1.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 0.0000 70.0097 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8214 0.8214 0.8380 5.2000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 1.8000 0.2500 59.576 124.000 122754.000 1.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 0.0000 69.8115 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8204 0.8204 0.8401 5.2500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 1.8000 0.3000 59.047 56.000 122754.000 1.000 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 0.0000 69.6146 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8193 0.8193 0.8421 5.3000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 1.8000 0.3500 59.500 22.000 122754.000 1.000 93.2479 144.3552 -71.2895 0.6359 0.0000 34.3120 0.0000 69.4187 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8183 0.8183 0.8441 5.3500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 1.8000 0.4000 59.306 16.000 122754.000 1.000 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 0.0000 69.2240 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8172 0.8172 0.8462 5.4000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 22 1.8000 0.4500 59.080 15.000 122754.000 1.000 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 0.0000 69.0303 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8162 0.8162 0.8482 5.4500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 23 1.8000 0.5000 58.981 20.000 122754.000 1.000 91.9600 144.9174 -70.1652 0.6359 0.0000 34.0280 0.0000 68.8377 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8151 0.8151 0.8502 5.5000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 24 1.8000 0.5500 59.152 9.000 122754.000 1.000 91.5504 145.0989 -69.8022 0.6359 0.0000 33.9360 0.0000 68.6461 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8141 0.8141 0.8522 5.5500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 25 1.8000 0.6000 59.035 7.000 122754.000 1.000 91.1444 145.2776 -69.4449 0.6359 0.0000 33.8440 0.0000 68.4556 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8130 0.8130 0.8543 5.6000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 5107
+# Center of Mass = 0.016546+/-0.001931
+# Full Width Half-Maximum = 0.271975+/-0.004929
+# 12:30:38 PM 6/21/2012 scan completed.
+
+12:30:55 PM 6/21/2012 Executing "drive e 0.0175"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -73.99176
+m1 143.00412
+a2 -74.14280
+a1 142.92860
+mfocus 34.95085
+
+Drive completed.
+
+
+12:33:40 PM 6/21/2012 Executing "zero a1 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ a1 a1 0.0000 0.0000
+
+
+
+12:34:06 PM 6/21/2012 Executing "admin" ...
+
+Administrator password correctly entered - administrator mode is enabled.
+
+
+12:34:18 PM 6/21/2012 Executing "method a1 set_motor_position d 143.00412+@(a1.zero)"
+ Derived from "spos a1 143.00412"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+12:34:22 PM 6/21/2012 Executing "zero a2 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ a2 a2 0.0000 0.0000
+
+
+
+12:34:35 PM 6/21/2012 Executing "method a2 set_motor_position d -73.99176+@(a2.zero)"
+ Derived from "spos a2 -73.99176"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+12:35:12 PM 6/21/2012 Executing "scan q 1.8 e -0.5 0.5 0.05 preset mcu 0.5"
+
+
+# scan = 7
+# date = 6/21/2012
+# time = 12:35:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.8 e -0.5 0.5 0.05 preset mcu 0.5
+# builtin_command = scan q 1.8 e -0.5 0.5 0.05 preset mcu 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+# ubmatrix = -0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_110654AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 0.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.8000 -0.5000 28.056 5.000 61377.000 0.500 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 0.0000 72.9202 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8355 0.8355 0.8096 4.5000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 2 1.8000 -0.4500 27.845 6.000 61377.000 0.500 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 0.0000 72.7029 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8346 0.8346 0.8117 4.5500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 3 1.8000 -0.4000 27.896 5.000 61377.000 0.500 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 0.0000 72.4872 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8336 0.8336 0.8137 4.6000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 4 1.8000 -0.3500 27.899 5.000 61377.000 0.500 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 0.0000 72.2730 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8326 0.8326 0.8157 4.6500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 5 1.8000 -0.3000 27.861 9.000 61377.000 0.500 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 0.0000 72.0603 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8316 0.8316 0.8177 4.7000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 6 1.8000 -0.2500 27.569 18.000 61377.000 0.500 98.9472 141.7955 -76.4090 0.6359 0.0000 35.4800 0.0000 71.8492 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8306 0.8306 0.8198 4.7500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 7 1.8000 -0.2000 27.636 77.000 61377.000 0.500 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 0.0000 71.6394 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8296 0.8296 0.8218 4.8000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 8 1.8000 -0.1500 27.503 213.000 61377.000 0.500 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 0.0000 71.4311 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8286 0.8286 0.8238 4.8500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 9 1.8000 -0.1000 28.353 360.000 61377.000 0.500 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 0.0000 71.2242 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8276 0.8276 0.8258 4.9000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 10 1.8000 -0.0500 29.238 437.000 61377.000 0.500 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 0.0000 71.0186 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8266 0.8266 0.8279 4.9500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 11 1.8000 0.0000 30.300 392.000 61377.000 0.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 70.8142 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8255 0.8255 0.8299 5.0000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 12 1.8000 0.0500 30.849 306.000 61377.000 0.500 95.9741 143.1431 -73.7138 0.6359 0.0000 34.8880 0.0000 70.6112 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8245 0.8245 0.8319 5.0500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 13 1.8000 0.1000 30.986 272.000 61377.000 0.500 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 0.0000 70.4095 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8235 0.8235 0.8340 5.1000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 14 1.8000 0.1500 30.910 174.000 61377.000 0.500 95.0287 143.5610 -72.8780 0.6359 0.0000 34.6920 0.0000 70.2090 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8225 0.8225 0.8360 5.1500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 15 1.8000 0.2000 30.508 98.000 61377.000 0.500 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 0.0000 70.0097 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8214 0.8214 0.8380 5.2000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 16 1.8000 0.2500 30.028 36.000 61377.000 0.500 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 0.0000 69.8116 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8204 0.8204 0.8401 5.2500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 17 1.8000 0.3000 29.721 19.000 61377.000 0.500 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 0.0000 69.6146 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8193 0.8193 0.8421 5.3000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 18 1.8000 0.3500 29.401 8.000 61377.000 0.500 93.2479 144.3552 -71.2896 0.6359 0.0000 34.3120 0.0000 69.4187 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8183 0.8183 0.8441 5.3500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 19 1.8000 0.4000 29.689 8.000 61377.000 0.500 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 0.0000 69.2240 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8172 0.8172 0.8462 5.4000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 20 1.8000 0.4500 29.510 3.000 61377.000 0.500 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 0.0000 69.0303 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8162 0.8162 0.8482 5.4500 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+ 21 1.8000 0.5000 29.787 3.000 61377.000 0.500 91.9600 144.9174 -70.1651 0.6359 0.0000 34.0280 0.0000 68.8377 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.8151 0.8151 0.8502 5.5000 5.0000 1.0000 504.9990 0.0000 0.0000 300.000
+# Sum of Counts = 2454
+# Center of Mass = -0.003912+/-0.002489
+# Full Width Half-Maximum = 0.246367+/-0.005805
+# 12:48:52 PM 6/21/2012 scan completed.
+
+12:50:04 PM 6/21/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+12:53:39 PM 6/21/2012 Executing "drive s2 59.5817"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 59.58170
+
+Drive completed.
+
+
+12:53:56 PM 6/21/2012 Executing "zero s2 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ s2 s2 0.0000 0.0000
+
+
+
+12:54:03 PM 6/21/2012 Executing "method s2 set_motor_position d 59.61+@(s2.zero)"
+ Derived from "spos s2 59.61"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+12:54:11 PM 6/21/2012 Executing "drive s2 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 0.00000
+
+Drive completed.
+
+
+12:56:02 PM 6/21/2012 Executing "drive s2 40"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 40.00000
+
+Drive completed.
+
+
+1:03:48 PM 6/21/2012 Executing "lattice 4.550000 4.550000 11.874153 90.000000 90.000000 120.000000"
+
+
+Changing lattice constants to:
+a=4.550000 b=4.550000 c=11.87415
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+1:04:28 PM 6/21/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_10426PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB21Jun2012_10426PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=1.000 k2=0.000 l2=0.000
+the single peak position:
+h=2.0000 k=0.0000 l=0.0000 a1=40.0000 s2=0.0000 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8742 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 2.0000 0.0000 0.0000 40.0000 0.0000 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+
+Error in calculating angles from specified h,k,l,Ei,Ef: Thu, Jun 21, 2012 [1:04:28 PM] : SPICE Warning in Devices.lvlib:Common_Converter.lvlib:PseudoToRealNew.vi.
+
+Cannot complete scattering triangle.
+
+
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 0.0000 40.0000 0.0000 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB21Jun2012_10428PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB21Jun2012_10428PM.ini
+
+
+1:04:41 PM 6/21/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_10440PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB21Jun2012_10440PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=1.000 k1=0.000 l1=0.000 h2=0.000 k2=0.000 l2=1.000
+the single peak position:
+h=2.0000 k=0.0000 l=0.0000 a1=40.0000 s2=0.0000 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8742 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 2.0000 0.0000 0.0000 40.0000 0.0000 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+
+Error in calculating angles from specified h,k,l,Ei,Ef: Thu, Jun 21, 2012 [1:04:41 PM] : SPICE Warning in Devices.lvlib:Common_Converter.lvlib:PseudoToRealNew.vi.
+
+Cannot complete scattering triangle.
+
+
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 0.0000 40.0000 0.0000 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB21Jun2012_10441PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB21Jun2012_10441PM.ini
+
+
+1:42:11 PM 6/21/2012 Executing "initialize"
+ Derived from "init"
+
+Reinitializing experiment ... Completed initialization.
+
+
+1:43:05 PM 6/21/2012 Executing "method temp set_setpoint d 1.230000"
+ Derived from "set_temp 1.23"
+
+# Failed to change setpoint and/or enter CONTROL mode.Return Code: -1
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+1:43:16 PM 6/21/2012 Executing "method temp set_setpoint d 2.230000"
+ Derived from "set_temp 2.23"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+1:48:00 PM 6/21/2012 Executing "drive s2 61.456"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 61.45600
+
+Drive completed.
+
+
+1:48:29 PM 6/21/2012 Executing "drive s1 40"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 40.00000
+
+Drive completed.
+
+
+2:00:51 PM 6/21/2012 Executing "initialize"
+ Derived from "init"
+
+Reinitializing experiment ... Completed initialization.
+
+
+2:01:13 PM 6/21/2012 Executing "method temp set_setpoint d 149.900000"
+ Derived from "set_temp 149.9"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+2:27:10 PM 6/21/2012 Executing "method temp set_setpoint d 152.000000"
+ Derived from "set_temp 152"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+2:29:34 PM 6/21/2012 Executing "drive s1 30"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 30.00000
+
+Drive completed.
+
+
+2:29:46 PM 6/21/2012 Executing "drive s1 35"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 35.00000
+
+Drive completed.
+
+
+2:29:51 PM 6/21/2012 Executing "drive s1 38"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 38.00000
+
+Drive completed.
+
+
+2:29:56 PM 6/21/2012 Executing "drive s1 20"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 20.00000
+
+Drive completed.
+
+
+2:30:07 PM 6/21/2012 Executing "drive s1 25"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 25.00000
+
+Drive completed.
+
+
+2:30:15 PM 6/21/2012 Executing "drive s1 24.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 24.50000
+
+Drive completed.
+
+
+2:30:28 PM 6/21/2012 Executing "scantitle "(003)""
+
+Setting the scantitle to:
+(003)
+
+
+2:30:34 PM 6/21/2012 Executing "preset time 1"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 1.000000
+
+
+2:30:40 PM 6/21/2012 Executing "scan s1 @(s1)+-2 @(s1)+2 0.200000"
+ Derived from "scanrel s1 -2 2 0.2"
+
+
+# scan = 8
+# date = 6/21/2012
+# time = 2:30:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -2 2 0.2
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 22.5000 1.000 23.000 2041.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9746 0.0000 -0.6120 5.0000 5.0000 0.0000 155.3370 150.9550 0.0000 0.0000 152.000
+ 2 22.7000 1.000 52.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9739 0.0000 -0.6223 5.0000 5.0000 0.0000 155.3250 150.7390 0.0000 0.0000 152.000
+ 3 22.9000 1.000 56.000 2008.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9732 0.0000 -0.6325 5.0000 5.0000 0.0000 155.3110 150.9960 0.0000 0.0000 152.000
+ 4 23.1000 1.000 107.000 2046.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9724 0.0000 -0.6428 5.0000 5.0000 0.0000 155.2970 151.0160 0.0000 0.0000 152.000
+ 5 23.3000 1.000 142.000 2090.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9717 0.0000 -0.6530 5.0000 5.0000 0.0000 155.2840 151.1650 0.0000 0.0000 152.000
+ 6 23.5000 1.000 252.000 2079.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9709 0.0000 -0.6632 5.0000 5.0000 0.0000 155.2740 150.8170 0.0000 0.0000 152.000
+ 7 23.7000 1.000 461.000 2101.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9701 0.0000 -0.6734 5.0000 5.0000 0.0000 155.2570 150.8320 0.0000 0.0000 152.000
+ 8 23.9000 1.000 878.000 2121.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9693 0.0000 -0.6836 5.0000 5.0000 0.0000 155.2470 151.0810 0.0000 0.0000 152.000
+ 9 24.1000 1.000 2157.000 2126.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9685 0.0000 -0.6938 5.0000 5.0000 0.0000 155.2340 151.1190 0.0000 0.0000 152.000
+ 10 24.3000 1.000 8190.000 2134.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9677 0.0000 -0.7040 5.0000 5.0000 0.0000 155.2240 151.0760 0.0000 0.0000 152.000
+ 11 24.5000 1.000 44131.000 2101.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9669 0.0000 -0.7142 5.0000 5.0000 0.0000 155.2100 150.9170 0.0000 0.0000 152.000
+ 12 24.7000 1.000 85218.000 2096.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9661 0.0000 -0.7243 5.0000 5.0000 0.0000 155.1990 150.8960 0.0000 0.0000 152.000
+ 13 24.9000 1.000 62584.000 2046.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9652 0.0000 -0.7345 5.0000 5.0000 0.0000 155.1860 151.0160 0.0000 0.0000 152.000
+ 14 25.1000 1.000 16779.000 2063.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9644 0.0000 -0.7446 5.0000 5.0000 0.0000 155.1740 150.9460 0.0000 0.0000 152.000
+ 15 25.3000 1.000 3302.000 2068.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9635 0.0000 -0.7548 5.0000 5.0000 0.0000 155.1630 151.0090 0.0000 0.0000 152.000
+ 16 25.5000 1.000 1001.000 2045.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9626 0.0000 -0.7649 5.0000 5.0000 0.0000 155.1500 151.1280 0.0000 0.0000 152.000
+ 17 25.7000 1.000 476.000 2094.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9617 0.0000 -0.7750 5.0000 5.0000 0.0000 155.1370 151.2910 0.0000 0.0000 152.000
+ 18 25.9000 1.000 273.000 2055.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9608 0.0000 -0.7851 5.0000 5.0000 0.0000 155.1250 151.2360 0.0000 0.0000 152.000
+ 19 26.1000 1.000 166.000 2109.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9599 0.0000 -0.7953 5.0000 5.0000 0.0000 155.1130 151.0560 0.0000 0.0000 152.000
+ 20 26.3000 1.000 112.000 2095.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9590 0.0000 -0.8053 5.0000 5.0000 0.0000 155.1050 151.0970 0.0000 0.0000 152.000
+ 21 26.5000 1.000 65.000 2065.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9581 0.0000 -0.8154 5.0000 5.0000 0.0000 155.0910 151.3270 0.0000 0.0000 152.000
+# Sum of Counts = 226425
+# Center of Mass = 24.734691+/-0.073514
+# Full Width Half-Maximum = 0.510075+/-0.042687
+# 2:31:16 PM 6/21/2012 scan completed.
+
+2:31:16 PM 6/21/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 24.50000
+
+Drive completed.
+
+
+2:31:53 PM 6/21/2012 Executing "drive s1 24.7372"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 24.73720
+
+Drive completed.
+
+
+2:33:10 PM 6/21/2012 Executing "drive s1 30"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 30.00000
+
+Drive completed.
+
+
+2:33:16 PM 6/21/2012 Executing "drive s1 32"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.00000
+
+Drive completed.
+
+
+2:33:20 PM 6/21/2012 Executing "drive s1 34"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 34.00000
+
+Drive completed.
+
+
+2:33:24 PM 6/21/2012 Executing "drive s1 35"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 35.00000
+
+Drive completed.
+
+
+2:33:27 PM 6/21/2012 Executing "drive s1 36"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 36.00000
+
+Drive completed.
+
+
+2:33:31 PM 6/21/2012 Executing "drive s1 37"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 37.00000
+
+Drive completed.
+
+
+2:33:36 PM 6/21/2012 Executing "drive s1 36.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 36.50000
+
+Drive completed.
+
+
+2:34:36 PM 6/21/2012 Executing "drive s1 32"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.00000
+
+Drive completed.
+
+
+2:34:44 PM 6/21/2012 Executing "drive s1 31.8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.80000
+
+Drive completed.
+
+
+2:34:48 PM 6/21/2012 Executing "drive s1 32.4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.40000
+
+Drive completed.
+
+
+2:35:11 PM 6/21/2012 Executing "scantitle "(003) inside cryo-furnace w/o filter""
+
+Setting the scantitle to:
+(003) inside cryo-furnace w/o filter
+
+
+2:35:16 PM 6/21/2012 Executing "scan s1 @(s1)+-2 @(s1)+2 0.200000"
+ Derived from "scanrel s1 -2 2 0.2"
+
+
+# scan = 9
+# date = 6/21/2012
+# time = 2:35:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -2 2 0.2
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.4000 1.000 53.000 2032.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9374 0.0000 -1.0099 5.0000 5.0000 0.0000 154.2950 150.5330 0.0000 0.0000 152.000
+ 2 30.6000 1.000 81.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9363 0.0000 -1.0198 5.0000 5.0000 0.0000 154.2940 150.6000 0.0000 0.0000 152.000
+ 3 30.8000 1.000 133.000 2028.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9351 0.0000 -1.0296 5.0000 5.0000 0.0000 154.2900 150.2950 0.0000 0.0000 152.000
+ 4 31.0000 1.000 201.000 2040.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9339 0.0000 -1.0394 5.0000 5.0000 0.0000 154.2880 150.4450 0.0000 0.0000 152.000
+ 5 31.2000 1.000 374.000 2059.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9327 0.0000 -1.0492 5.0000 5.0000 0.0000 154.2840 150.3230 0.0000 0.0000 152.000
+ 6 31.4000 1.000 687.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9314 0.0000 -1.0590 5.0000 5.0000 0.0000 154.2810 150.2700 0.0000 0.0000 152.000
+ 7 31.6000 1.000 1289.000 2109.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9302 0.0000 -1.0688 5.0000 5.0000 0.0000 154.2800 150.3150 0.0000 0.0000 152.000
+ 8 31.8000 1.000 4121.000 2005.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9290 0.0000 -1.0786 5.0000 5.0000 0.0000 154.2770 150.2850 0.0000 0.0000 152.000
+ 9 32.0000 1.000 22537.000 2055.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9277 0.0000 -1.0884 5.0000 5.0000 0.0000 154.2720 150.4110 0.0000 0.0000 152.000
+ 10 32.2000 1.000 73338.000 2091.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9264 0.0000 -1.0981 5.0000 5.0000 0.0000 154.2720 150.4620 0.0000 0.0000 152.000
+ 11 32.4000 1.000 83143.000 2017.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9252 0.0000 -1.1079 5.0000 5.0000 0.0000 154.2680 150.4440 0.0000 0.0000 152.000
+ 12 32.6000 1.000 35249.000 2139.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9239 0.0000 -1.1176 5.0000 5.0000 0.0000 154.2650 150.6020 0.0000 0.0000 152.000
+ 13 32.8000 1.000 6772.000 2079.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9226 0.0000 -1.1273 5.0000 5.0000 0.0000 154.2620 150.3730 0.0000 0.0000 152.000
+ 14 33.0000 1.000 1677.000 1977.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9213 0.0000 -1.1370 5.0000 5.0000 0.0000 154.2600 150.3790 0.0000 0.0000 152.000
+ 15 33.2000 1.000 679.000 2147.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9199 0.0000 -1.1467 5.0000 5.0000 0.0000 154.2600 150.3480 0.0000 0.0000 152.000
+ 16 33.4000 1.000 363.000 2082.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9186 0.0000 -1.1564 5.0000 5.0000 0.0000 154.2570 150.3320 0.0000 0.0000 152.000
+ 17 33.6000 1.000 205.000 2063.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9173 0.0000 -1.1660 5.0000 5.0000 0.0000 154.2560 150.3550 0.0000 0.0000 152.000
+ 18 33.8000 1.000 122.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9159 0.0000 -1.1757 5.0000 5.0000 0.0000 154.2490 150.2890 0.0000 0.0000 152.000
+ 19 34.0000 1.000 82.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9145 0.0000 -1.1853 5.0000 5.0000 0.0000 154.2480 150.5730 0.0000 0.0000 152.000
+ 20 34.2000 1.000 55.000 2079.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9132 0.0000 -1.1949 5.0000 5.0000 0.0000 154.2470 150.5670 0.0000 0.0000 152.000
+ 21 34.4000 1.000 45.000 2027.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9118 0.0000 -1.2045 5.0000 5.0000 0.0000 154.2450 150.1850 0.0000 0.0000 152.000
+# Sum of Counts = 231206
+# Center of Mass = 32.327943+/-0.095082
+# Full Width Half-Maximum = 0.510762+/-0.054779
+# 2:35:52 PM 6/21/2012 scan completed.
+
+2:35:52 PM 6/21/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.40000
+
+Drive completed.
+
+
+2:36:00 PM 6/21/2012 Executing "drive s1 32.33"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.33000
+
+Drive completed.
+
+
+2:36:08 PM 6/21/2012 Executing "scan sgl @(sgl)+-4 @(sgl)+4 0.500000"
+ Derived from "scanrel sgl -4 4 0.5"
+
+
+# scan = 10
+# date = 6/21/2012
+# time = 2:36:08 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel sgl -4 4 0.5
+# builtin_command = scan sgl @(sgl)+-4 @(sgl)+4 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 86590.000 2052.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9634 -0.0802 -1.1020 5.0000 5.0000 0.0000 154.2030 150.3270 0.0000 0.0000 152.000
+ 2 -3.5000 1.000 93597.000 2068.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9589 -0.0702 -1.1026 5.0000 5.0000 0.0000 154.1970 150.3440 0.0000 0.0000 152.000
+ 3 -3.0000 1.000 99142.000 2080.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9544 -0.0601 -1.1031 5.0000 5.0000 0.0000 154.1900 150.1990 0.0000 0.0000 152.000
+ 4 -2.5000 1.000 102593.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9498 -0.0501 -1.1035 5.0000 5.0000 0.0000 154.1860 150.1770 0.0000 0.0000 152.000
+ 5 -2.0000 1.000 103169.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9451 -0.0401 -1.1038 5.0000 5.0000 0.0000 154.1790 150.3930 0.0000 0.0000 152.000
+ 6 -1.5000 1.000 101449.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9403 -0.0301 -1.1041 5.0000 5.0000 0.0000 154.1740 150.3380 0.0000 0.0000 152.000
+ 7 -1.0000 1.000 98451.000 1994.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9355 -0.0201 -1.1043 5.0000 5.0000 0.0000 154.1680 150.3550 0.0000 0.0000 152.000
+ 8 -0.5000 1.000 93794.000 2020.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9306 -0.0100 -1.1044 5.0000 5.0000 0.0000 154.1630 150.1570 0.0000 0.0000 152.000
+ 9 0.0000 1.000 87745.000 2090.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9256 0.0000 -1.1045 5.0000 5.0000 0.0000 154.1590 150.0640 0.0000 0.0000 152.000
+ 10 0.5000 1.000 79510.000 2111.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9206 0.0100 -1.1044 5.0000 5.0000 0.0000 154.1520 150.4240 0.0000 0.0000 152.000
+ 11 1.0000 1.000 69997.000 2178.000 0.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9154 0.0201 -1.1043 5.0000 5.0000 0.0000 154.1450 150.4450 0.0000 0.0000 152.000
+ 12 1.5000 1.000 61703.000 2004.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9103 0.0301 -1.1041 5.0000 5.0000 0.0000 154.1400 150.3590 0.0000 0.0000 152.000
+ 13 2.0000 0.729 39251.000 1527.000 0.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 32.3300 61.4560 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9050 0.0401 -1.1038 5.0000 5.0000 0.0000 154.1350 150.2960 0.0000 0.0000 152.000
+# Sum of Counts = 1116991
+# Center of Mass = -1.298944+/-0.002385
+# Full Width Half-Maximum = 3.452924+/-0.003077
+# 2:37:06 PM 6/21/2012 scan stopped!!
+
+Abort issued!!
+
+2:37:06 PM 6/21/2012 Executing "drive sgl @(sgl)-4"
+ Derived from "scanrel sgl -4 4 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -2.00000
+
+Drive completed.
+
+
+2:37:16 PM 6/21/2012 Executing "drive sgl -2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -2.00000
+
+Drive completed.
+
+
+2:37:20 PM 6/21/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 11
+# date = 6/21/2012
+# time = 2:37:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.3300 1.000 774.000 2039.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9514 -0.0401 -1.0550 5.0000 5.0000 0.0000 154.1090 150.5400 0.0000 0.0000 152.000
+ 2 31.4300 1.000 1058.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9507 -0.0401 -1.0599 5.0000 5.0000 0.0000 154.1090 150.2700 0.0000 0.0000 152.000
+ 3 31.5300 1.000 1533.000 2068.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9501 -0.0401 -1.0648 5.0000 5.0000 0.0000 154.1070 150.3140 0.0000 0.0000 152.000
+ 4 31.6300 1.000 2304.000 1996.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9495 -0.0401 -1.0697 5.0000 5.0000 0.0000 154.1050 150.3980 0.0000 0.0000 152.000
+ 5 31.7300 1.000 3728.000 2141.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9489 -0.0401 -1.0746 5.0000 5.0000 0.0000 154.1040 150.2160 0.0000 0.0000 152.000
+ 6 31.8300 1.000 7503.000 2112.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9483 -0.0401 -1.0795 5.0000 5.0000 0.0000 154.1030 150.4440 0.0000 0.0000 152.000
+ 7 31.9300 1.000 17457.000 2101.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9476 -0.0401 -1.0843 5.0000 5.0000 0.0000 154.1010 150.1130 0.0000 0.0000 152.000
+ 8 32.0300 1.000 41462.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9470 -0.0401 -1.0892 5.0000 5.0000 0.0000 154.0980 150.4420 0.0000 0.0000 152.000
+ 9 32.1300 1.000 73002.000 2060.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9464 -0.0401 -1.0941 5.0000 5.0000 0.0000 154.0960 150.5430 0.0000 0.0000 152.000
+ 10 32.2300 1.000 96739.000 2022.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9457 -0.0401 -1.0990 5.0000 5.0000 0.0000 154.0950 150.3620 0.0000 0.0000 152.000
+ 11 32.3300 1.000 102915.000 2037.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9451 -0.0401 -1.1038 5.0000 5.0000 0.0000 154.0930 150.6320 0.0000 0.0000 152.000
+ 12 32.4300 1.000 88421.000 2024.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9445 -0.0401 -1.1087 5.0000 5.0000 0.0000 154.0930 150.4420 0.0000 0.0000 152.000
+ 13 32.5300 1.000 60105.000 2000.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9438 -0.0401 -1.1136 5.0000 5.0000 0.0000 154.0910 150.1390 0.0000 0.0000 152.000
+ 14 32.6300 1.000 31921.000 2059.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9432 -0.0401 -1.1184 5.0000 5.0000 0.0000 154.0890 150.1080 0.0000 0.0000 152.000
+ 15 32.7300 1.000 14954.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9425 -0.0401 -1.1233 5.0000 5.0000 0.0000 154.0870 150.2840 0.0000 0.0000 152.000
+ 16 32.8300 1.000 6569.000 2015.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9419 -0.0401 -1.1281 5.0000 5.0000 0.0000 154.0870 150.3480 0.0000 0.0000 152.000
+ 17 32.9300 1.000 3263.000 2001.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9412 -0.0401 -1.1330 5.0000 5.0000 0.0000 154.0830 150.4230 0.0000 0.0000 152.000
+ 18 33.0300 1.000 1660.000 1979.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9405 -0.0401 -1.1378 5.0000 5.0000 0.0000 154.0810 150.2500 0.0000 0.0000 152.000
+ 19 33.1300 1.000 1098.000 2106.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9399 -0.0401 -1.1427 5.0000 5.0000 0.0000 154.0780 150.1620 0.0000 0.0000 152.000
+ 20 33.2300 1.000 761.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9392 -0.0401 -1.1475 5.0000 5.0000 0.0000 154.0770 150.1630 0.0000 0.0000 152.000
+ 21 33.3300 1.000 566.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.4560 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9385 -0.0401 -1.1524 5.0000 5.0000 0.0000 154.0760 150.1170 0.0000 0.0000 152.000
+# Sum of Counts = 557793
+# Center of Mass = 32.313336+/-0.061188
+# Full Width Half-Maximum = 0.473659+/-0.027626
+# 2:37:54 PM 6/21/2012 scan completed.
+
+2:37:54 PM 6/21/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.33000
+
+Drive completed.
+
+
+2:38:07 PM 6/21/2012 Executing "drive s1 32.3142"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.31420
+
+Drive completed.
+
+
+2:38:14 PM 6/21/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 12
+# date = 6/21/2012
+# time = 2:38:14 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.4560 31.3140 1.000 10.000 2041.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5406 0.9173 -0.0389 -1.0705 5.0000 5.0000 0.0000 154.0430 150.4040 0.0000 0.0000 152.000
+ 2 59.6560 31.4142 1.000 11.000 1993.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5453 0.9201 -0.0390 -1.0738 5.0000 5.0000 0.0000 154.0410 150.4890 0.0000 0.0000 152.000
+ 3 59.8560 31.5142 1.000 21.000 1984.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5500 0.9229 -0.0392 -1.0771 5.0000 5.0000 0.0000 154.0400 150.2430 0.0000 0.0000 152.000
+ 4 60.0560 31.6142 1.000 33.000 2019.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5547 0.9257 -0.0393 -1.0803 5.0000 5.0000 0.0000 154.0370 150.5520 0.0000 0.0000 152.000
+ 5 60.2560 31.7142 1.000 58.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5594 0.9285 -0.0394 -1.0836 5.0000 5.0000 0.0000 154.0350 150.3890 0.0000 0.0000 152.000
+ 6 60.4560 31.8142 1.000 217.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5641 0.9313 -0.0395 -1.0868 5.0000 5.0000 0.0000 154.0310 150.2010 0.0000 0.0000 152.000
+ 7 60.6560 31.9142 1.000 1378.000 2003.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5688 0.9341 -0.0396 -1.0901 5.0000 5.0000 0.0000 154.0300 150.4920 0.0000 0.0000 152.000
+ 8 60.8560 32.0142 1.000 7028.000 1961.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5734 0.9369 -0.0397 -1.0933 5.0000 5.0000 0.0000 154.0260 150.4980 0.0000 0.0000 152.000
+ 9 61.0560 32.1142 1.000 25939.000 2016.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5781 0.9396 -0.0399 -1.0966 5.0000 5.0000 0.0000 154.0250 149.9690 0.0000 0.0000 152.000
+ 10 61.2560 32.2142 1.000 62991.000 2097.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5828 0.9424 -0.0400 -1.0998 5.0000 5.0000 0.0000 154.0210 150.0800 0.0000 0.0000 152.000
+ 11 61.4560 32.3142 1.000 101887.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5874 0.9452 -0.0401 -1.1031 5.0000 5.0000 0.0000 154.0200 150.4700 0.0000 0.0000 152.000
+ 12 61.6560 32.4142 1.000 120496.000 2025.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5921 0.9480 -0.0402 -1.1063 5.0000 5.0000 0.0000 154.0180 150.4770 0.0000 0.0000 152.000
+ 13 61.8560 32.5142 1.000 109289.000 2074.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5967 0.9507 -0.0403 -1.1095 5.0000 5.0000 0.0000 154.0140 150.4270 0.0000 0.0000 152.000
+ 14 62.0560 32.6142 1.000 71184.000 2025.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6014 0.9535 -0.0405 -1.1128 5.0000 5.0000 0.0000 154.0110 150.0170 0.0000 0.0000 152.000
+ 15 62.2560 32.7142 1.000 29317.000 2015.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6060 0.9563 -0.0406 -1.1160 5.0000 5.0000 0.0000 154.0090 150.4480 0.0000 0.0000 152.000
+ 16 62.4560 32.8142 1.000 7659.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6107 0.9590 -0.0407 -1.1192 5.0000 5.0000 0.0000 154.0060 150.4050 0.0000 0.0000 152.000
+ 17 62.6560 32.9142 1.000 1705.000 1967.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6153 0.9618 -0.0408 -1.1224 5.0000 5.0000 0.0000 154.0040 150.2630 0.0000 0.0000 152.000
+ 18 62.8560 33.0142 1.000 358.000 2051.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6199 0.9646 -0.0409 -1.1257 5.0000 5.0000 0.0000 154.0050 150.2440 0.0000 0.0000 152.000
+ 19 63.0560 33.1142 1.000 85.000 2039.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6246 0.9673 -0.0410 -1.1289 5.0000 5.0000 0.0000 154.0000 150.4100 0.0000 0.0000 152.000
+ 20 63.2560 33.2142 1.000 25.000 2028.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6292 0.9701 -0.0412 -1.1321 5.0000 5.0000 0.0000 153.9970 150.2170 0.0000 0.0000 152.000
+ 21 63.4560 33.3142 1.000 18.000 2067.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.6338 0.9728 -0.0413 -1.1353 5.0000 5.0000 0.0000 153.9960 150.2910 0.0000 0.0000 152.000
+# Sum of Counts = 539709
+# Center of Mass = 61.670380+/-0.118718
+# Full Width Half-Maximum = 0.686851+/-0.069574
+# 2:39:04 PM 6/21/2012 scan completed.
+
+2:39:04 PM 6/21/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.42139
+s2 61.67038
+
+Drive completed.
+
+
+2:39:27 PM 6/21/2012 Executing "drive s2 61.6701 s1 32.4212"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 61.67010
+s1 32.42120
+
+Drive completed.
+
+
+2:39:35 PM 6/21/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 13
+# date = 6/21/2012
+# time = 2:39:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (003) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+# ubmatrix = -0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB21Jun2012_10441PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.4212 1.000 1063.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9544 -0.0402 -1.0575 5.0000 5.0000 0.0000 153.9620 150.5450 0.0000 0.0000 152.000
+ 2 31.5212 1.000 1437.000 2104.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9538 -0.0402 -1.0624 5.0000 5.0000 0.0000 153.9600 150.4160 0.0000 0.0000 152.000
+ 3 31.6212 1.000 2168.000 1989.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9532 -0.0402 -1.0674 5.0000 5.0000 0.0000 153.9580 150.5820 0.0000 0.0000 152.000
+ 4 31.7212 1.000 3216.000 2001.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9526 -0.0402 -1.0723 5.0000 5.0000 0.0000 153.9560 150.4050 0.0000 0.0000 152.000
+ 5 31.8212 1.000 5440.000 2028.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9520 -0.0402 -1.0772 5.0000 5.0000 0.0000 153.9560 150.1830 0.0000 0.0000 152.000
+ 6 31.9212 1.000 10789.000 1969.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9513 -0.0402 -1.0821 5.0000 5.0000 0.0000 153.9530 150.5230 0.0000 0.0000 152.000
+ 7 32.0212 1.000 24068.000 2050.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9507 -0.0402 -1.0870 5.0000 5.0000 0.0000 153.9520 150.4430 0.0000 0.0000 152.000
+ 8 32.1212 1.000 55154.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9501 -0.0402 -1.0919 5.0000 5.0000 0.0000 153.9500 150.4600 0.0000 0.0000 152.000
+ 9 32.2212 1.000 93562.000 1993.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9494 -0.0402 -1.0968 5.0000 5.0000 0.0000 153.9490 150.3780 0.0000 0.0000 152.000
+ 10 32.3212 1.000 116675.000 2089.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9488 -0.0402 -1.1016 5.0000 5.0000 0.0000 153.9460 150.5230 0.0000 0.0000 152.000
+ 11 32.4212 1.000 120087.000 2101.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9482 -0.0402 -1.1065 5.0000 5.0000 0.0000 153.9450 150.2850 0.0000 0.0000 152.000
+ 12 32.5212 1.000 103458.000 2041.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9475 -0.0402 -1.1114 5.0000 5.0000 0.0000 153.9430 150.5230 0.0000 0.0000 152.000
+ 13 32.6212 1.000 68304.000 2052.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9469 -0.0402 -1.1163 5.0000 5.0000 0.0000 153.9410 150.1760 0.0000 0.0000 152.000
+ 14 32.7212 1.000 33901.000 2048.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9462 -0.0402 -1.1212 5.0000 5.0000 0.0000 153.9410 150.3130 0.0000 0.0000 152.000
+ 15 32.8212 1.000 15266.000 2022.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9456 -0.0402 -1.1260 5.0000 5.0000 0.0000 153.9390 150.2870 0.0000 0.0000 152.000
+ 16 32.9212 1.000 6891.000 2054.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9449 -0.0402 -1.1309 5.0000 5.0000 0.0000 153.9370 150.4340 0.0000 0.0000 152.000
+ 17 33.0212 1.000 3337.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9443 -0.0402 -1.1358 5.0000 5.0000 0.0000 153.9350 150.4310 0.0000 0.0000 152.000
+ 18 33.1212 1.000 1921.000 2116.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9436 -0.0402 -1.1406 5.0000 5.0000 0.0000 153.9330 150.3020 0.0000 0.0000 152.000
+ 19 33.2212 1.000 1210.000 2103.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9429 -0.0402 -1.1455 5.0000 5.0000 0.0000 153.9320 150.4670 0.0000 0.0000 152.000
+ 20 33.3212 1.000 880.000 1990.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9423 -0.0402 -1.1504 5.0000 5.0000 0.0000 153.9310 150.2190 0.0000 0.0000 152.000
+ 21 33.4212 1.000 663.000 2091.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6701 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.9416 -0.0402 -1.1552 5.0000 5.0000 0.0000 153.9290 150.4830 0.0000 0.0000 152.000
+# Sum of Counts = 669490
+# Center of Mass = 32.388257+/-0.055980
+# Full Width Half-Maximum = 0.477233+/-0.025245
+# 2:40:09 PM 6/21/2012 scan completed.
+
+2:40:09 PM 6/21/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.42120
+
+Drive completed.
+
+
+2:40:39 PM 6/21/2012 Executing "drive s1 32.3898"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.38980
+
+Drive completed.
+
+
+2:40:47 PM 6/21/2012 Executing "lattice a 4.550000 b 4.550000 c 11.837020"
+
+
+Changing the lattice constants "a=4.550000,b=4.550000,c=11.837020".
+The lattice constants will be changed to:
+a=4.550000 b=4.550000 c=11.83702
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+2:41:02 PM 6/21/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24100PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24100PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=1.000 k1=0.000 l1=0.000 h2=0.000 k2=0.000 l2=1.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.6701 s2=32.3898 s1=-2.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8370 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.6701 32.3898 -2.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.6701 32.3898 -2.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.1940 0.0208 1.5354 61.6701 32.3898 -2.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB21Jun2012_24102PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB21Jun2012_24102PM.ini
+
+
+2:41:17 PM 6/21/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.59843
+s1 63.76055
+sgl -2.00000
+sgu 0.00000
+mfocus 34.98513
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+m2 -74.14282
+m1 142.92860
+a2 -74.14280
+a1 142.92856
+s2 57.27524
+s1 41.14368
+sgl -2.00000
+sgu 0.00000
+mfocus 34.98400
+
+
+Abort issued!!
+
+2:41:40 PM 6/21/2012 Executing "drive s1 32.3898 s2 61.6701"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.38980
+s2 61.67010
+
+Drive completed.
+
+
+2:41:50 PM 6/21/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24149PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24149PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=1.000 k1=0.000 l1=0.000 h2=0.000 k2=0.000 l2=1.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.6701 s2=32.3898 s1=-2.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8370 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.6701 32.3898 -2.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.6701 32.3898 -2.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.1940 0.0208 1.5354 61.6701 32.3898 -2.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB21Jun2012_24150PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB21Jun2012_24150PM.ini
+
+
+2:41:53 PM 6/21/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.59843
+s1 63.76055
+sgl -2.00000
+sgu 0.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:42:28 PM 6/21/2012 Executing "scantitle "(0.5 0 2) inside cryo-furnace w/o filter""
+
+Setting the scantitle to:
+(0.5 0 2) inside cryo-furnace w/o filter
+
+
+2:42:34 PM 6/21/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 14
+# date = 6/21/2012
+# time = 2:42:34 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+# mode = 0
+# plane_normal = 0.034899,0.000000,0.999391
+# ubconf = UB21Jun2012_24150PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 62.7606 1.000 63.000 1998.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4883 0.0000 2.0259 5.0000 5.0000 0.0000 153.7910 150.3730 0.0000 0.0000 152.000
+ 2 62.8606 1.000 96.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4895 0.0000 2.0233 5.0000 5.0000 0.0000 153.7910 150.1750 0.0000 0.0000 152.000
+ 3 62.9606 1.000 127.000 2027.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4907 0.0000 2.0208 5.0000 5.0000 0.0000 153.7900 150.2100 0.0000 0.0000 152.000
+ 4 63.0606 1.000 165.000 2057.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4918 0.0000 2.0182 5.0000 5.0000 0.0000 153.7880 150.1420 0.0000 0.0000 152.000
+ 5 63.1606 1.000 244.000 2154.000 0.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4930 0.0000 2.0156 5.0000 5.0000 0.0000 153.7850 150.2160 0.0000 0.0000 152.000
+ 6 63.2606 1.000 372.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4942 0.0000 2.0130 5.0000 5.0000 0.0000 153.7840 150.1150 0.0000 0.0000 152.000
+ 7 63.3606 1.000 710.000 2036.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4953 0.0000 2.0104 5.0000 5.0000 0.0000 153.7830 150.3320 0.0000 0.0000 152.000
+ 8 63.4606 1.000 1569.000 2062.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4965 0.0000 2.0078 5.0000 5.0000 0.0000 153.7820 150.2610 0.0000 0.0000 152.000
+ 9 63.5606 1.000 4012.000 1978.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4977 0.0000 2.0052 5.0000 5.0000 0.0000 153.7800 150.4350 0.0000 0.0000 152.000
+ 10 63.6606 1.000 8781.000 2036.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4988 0.0000 2.0026 5.0000 5.0000 0.0000 153.7770 150.4730 0.0000 0.0000 152.000
+ 11 63.7606 1.000 14051.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 153.7760 150.4350 0.0000 0.0000 152.000
+ 12 63.8606 1.000 14335.000 2036.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5012 0.0000 1.9974 5.0000 5.0000 0.0000 153.7760 150.2540 0.0000 0.0000 152.000
+ 13 63.9606 1.000 9523.000 2097.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5023 0.0000 1.9947 5.0000 5.0000 0.0000 153.7730 150.0890 0.0000 0.0000 152.000
+ 14 64.0606 1.000 4545.000 1997.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5035 0.0000 1.9921 5.0000 5.0000 0.0000 153.7740 150.3420 0.0000 0.0000 152.000
+ 15 64.1606 1.000 2183.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5046 0.0000 1.9895 5.0000 5.0000 0.0000 153.7730 150.3830 0.0000 0.0000 152.000
+ 16 64.2606 1.000 1036.000 2001.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5058 0.0000 1.9868 5.0000 5.0000 0.0000 153.7710 150.3490 0.0000 0.0000 152.000
+ 17 64.3606 1.000 461.000 2011.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5069 0.0000 1.9842 5.0000 5.0000 0.0000 153.7680 150.4390 0.0000 0.0000 152.000
+ 18 64.4606 1.000 235.000 2029.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5081 0.0000 1.9815 5.0000 5.0000 0.0000 153.7660 150.2330 0.0000 0.0000 152.000
+ 19 64.5606 1.000 169.000 2004.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5092 0.0000 1.9788 5.0000 5.0000 0.0000 153.7640 150.3440 0.0000 0.0000 152.000
+ 20 64.6606 1.000 109.000 1972.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5104 0.0000 1.9762 5.0000 5.0000 0.0000 153.7650 150.2590 0.0000 0.0000 152.000
+ 21 64.7606 1.000 73.000 2082.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5115 0.0000 1.9735 5.0000 5.0000 0.0000 153.7650 150.3930 0.0000 0.0000 152.000
+# Sum of Counts = 62859
+# Center of Mass = 63.819559+/-0.359987
+# Full Width Half-Maximum = 0.426644+/-0.156316
+# 2:43:08 PM 6/21/2012 scan completed.
+
+2:43:08 PM 6/21/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 63.76056
+
+Drive completed.
+
+
+2:43:51 PM 6/21/2012 Executing "scan sgu @(sgu)+-3 @(sgu)+3 0.500000"
+ Derived from "scanrel sgu -3 3 0.5"
+
+
+# scan = 15
+# date = 6/21/2012
+# time = 2:43:51 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel sgu -3 3 0.5
+# builtin_command = scan sgu @(sgu)+-3 @(sgu)+3 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+# mode = 0
+# plane_normal = 0.034899,0.000000,0.999391
+# ubconf = UB21Jun2012_24150PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -3.0000 1.000 9052.000 2041.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5137 -0.0312 2.0027 5.0000 5.0000 0.0000 153.7240 150.0890 0.0000 0.0000 152.000
+ 2 -2.5000 1.000 9918.000 1998.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5115 -0.0260 2.0022 5.0000 5.0000 0.0000 153.7160 150.1900 0.0000 0.0000 152.000
+ 3 -2.0000 1.000 10947.000 2019.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5093 -0.0208 2.0018 5.0000 5.0000 0.0000 153.7140 150.2830 0.0000 0.0000 152.000
+ 4 -1.5000 1.000 11904.000 1948.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5070 -0.0156 2.0014 5.0000 5.0000 0.0000 153.7040 150.3910 0.0000 0.0000 152.000
+ 5 -1.0000 1.000 12786.000 1934.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5047 -0.0104 2.0009 5.0000 5.0000 0.0000 153.7010 150.3860 0.0000 0.0000 152.000
+ 6 -0.5000 1.000 13247.000 1998.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5024 -0.0052 2.0005 5.0000 5.0000 0.0000 153.6970 150.4310 0.0000 0.0000 152.000
+ 7 0.0000 1.000 14047.000 2022.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 153.6920 150.2990 0.0000 0.0000 152.000
+ 8 0.5000 1.000 14691.000 2033.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4976 0.0052 1.9995 5.0000 5.0000 0.0000 153.6910 150.1790 0.0000 0.0000 152.000
+ 9 1.0000 1.000 15174.000 2109.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4951 0.0104 1.9991 5.0000 5.0000 0.0000 153.6840 150.5960 0.0000 0.0000 152.000
+ 10 1.5000 1.000 15158.000 2026.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4926 0.0157 1.9986 5.0000 5.0000 0.0000 153.6850 150.0870 0.0000 0.0000 152.000
+ 11 2.0000 1.000 15109.000 2072.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4901 0.0209 1.9981 5.0000 5.0000 0.0000 153.6830 150.0680 0.0000 0.0000 152.000
+ 12 2.5000 1.000 14850.000 1933.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4875 0.0261 1.9977 5.0000 5.0000 0.0000 153.6800 150.1750 0.0000 0.0000 152.000
+ 13 3.0000 1.000 13923.000 2064.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7604 50.5984 -2.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4848 0.0313 1.9972 5.0000 5.0000 0.0000 153.6780 150.2420 0.0000 0.0000 152.000
+# Sum of Counts = 170806
+# Center of Mass = 0.253258+/-0.004430
+# Full Width Half-Maximum = 3.591097+/-0.007768
+# 2:44:46 PM 6/21/2012 scan completed.
+
+2:44:46 PM 6/21/2012 Executing "drive sgu @(sgu)-3"
+ Derived from "scanrel sgu -3 3 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+2:45:06 PM 6/21/2012 Executing "drive sgu 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 1.00000
+
+Drive completed.
+
+
+2:45:16 PM 6/21/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 16
+# date = 6/21/2012
+# time = 2:45:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+# mode = 0
+# plane_normal = 0.034899,0.000000,0.999391
+# ubconf = UB21Jun2012_24150PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 62.7604 1.000 68.000 2035.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4835 0.0102 2.0250 5.0000 5.0000 0.0000 153.6300 150.0230 0.0000 0.0000 152.000
+ 2 62.8604 1.000 106.000 2045.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4847 0.0102 2.0224 5.0000 5.0000 0.0000 153.6280 150.4790 0.0000 0.0000 152.000
+ 3 62.9604 1.000 113.000 2016.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4859 0.0102 2.0199 5.0000 5.0000 0.0000 153.6280 150.3270 0.0000 0.0000 152.000
+ 4 63.0604 1.000 159.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4870 0.0103 2.0173 5.0000 5.0000 0.0000 153.6260 150.1560 0.0000 0.0000 152.000
+ 5 63.1604 1.000 292.000 2007.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4882 0.0103 2.0147 5.0000 5.0000 0.0000 153.6260 150.3910 0.0000 0.0000 152.000
+ 6 63.2604 1.000 457.000 2048.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4893 0.0103 2.0121 5.0000 5.0000 0.0000 153.6240 150.4000 0.0000 0.0000 152.000
+ 7 63.3604 1.000 857.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4905 0.0103 2.0095 5.0000 5.0000 0.0000 153.6210 150.4880 0.0000 0.0000 152.000
+ 8 63.4604 1.000 1966.000 2105.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4917 0.0104 2.0069 5.0000 5.0000 0.0000 153.6210 150.4020 0.0000 0.0000 152.000
+ 9 63.5604 1.000 5077.000 2089.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4928 0.0104 2.0043 5.0000 5.0000 0.0000 153.6200 150.0940 0.0000 0.0000 152.000
+ 10 63.6604 1.000 10467.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4940 0.0104 2.0017 5.0000 5.0000 0.0000 153.6180 150.0710 0.0000 0.0000 152.000
+ 11 63.7604 1.000 15020.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4951 0.0104 1.9991 5.0000 5.0000 0.0000 153.6150 150.0250 0.0000 0.0000 152.000
+ 12 63.8604 1.000 13981.000 2092.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4963 0.0105 1.9965 5.0000 5.0000 0.0000 153.6140 150.4920 0.0000 0.0000 152.000
+ 13 63.9604 1.000 8289.000 2017.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4974 0.0105 1.9938 5.0000 5.0000 0.0000 153.6150 150.2940 0.0000 0.0000 152.000
+ 14 64.0604 1.000 3809.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4986 0.0105 1.9912 5.0000 5.0000 0.0000 153.6140 150.5450 0.0000 0.0000 152.000
+ 15 64.1604 1.000 1774.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4997 0.0105 1.9885 5.0000 5.0000 0.0000 153.6130 150.0710 0.0000 0.0000 152.000
+ 16 64.2604 1.000 815.000 2003.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5008 0.0105 1.9859 5.0000 5.0000 0.0000 153.6110 150.2020 0.0000 0.0000 152.000
+ 17 64.3604 1.000 424.000 2000.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5020 0.0106 1.9832 5.0000 5.0000 0.0000 153.6080 150.2140 0.0000 0.0000 152.000
+ 18 64.4604 1.000 236.000 1989.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5031 0.0106 1.9806 5.0000 5.0000 0.0000 153.6080 150.1540 0.0000 0.0000 152.000
+ 19 64.5604 1.000 119.000 2034.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5043 0.0106 1.9779 5.0000 5.0000 0.0000 153.6060 150.1880 0.0000 0.0000 152.000
+ 20 64.6604 1.000 88.000 2066.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5054 0.0106 1.9752 5.0000 5.0000 0.0000 153.6040 150.2190 0.0000 0.0000 152.000
+ 21 64.7604 1.000 70.000 2025.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.5984 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5065 0.0107 1.9725 5.0000 5.0000 0.0000 153.6030 150.4700 0.0000 0.0000 152.000
+# Sum of Counts = 64187
+# Center of Mass = 63.794927+/-0.356106
+# Full Width Half-Maximum = 0.421894+/-0.155864
+# 2:45:50 PM 6/21/2012 scan completed.
+
+2:45:50 PM 6/21/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 63.76044
+
+Drive completed.
+
+
+2:45:54 PM 6/21/2012 Executing "drive s1 63.76"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 63.76000
+
+Drive completed.
+
+
+2:46:05 PM 6/21/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 17
+# date = 6/21/2012
+# time = 2:46:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+# mode = 0
+# plane_normal = 0.034899,0.000000,0.999391
+# ubconf = UB21Jun2012_24150PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 48.5984 62.7599 1.000 2.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2784 0.4767 0.0100 1.9250 5.0000 5.0000 0.0000 153.5820 150.3750 0.0000 0.0000 152.000
+ 2 48.7984 62.8600 1.000 1.000 2020.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2834 0.4786 0.0101 1.9324 5.0000 5.0000 0.0000 153.5810 150.0570 0.0000 0.0000 152.000
+ 3 48.9984 62.9600 1.000 2.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2883 0.4804 0.0101 1.9398 5.0000 5.0000 0.0000 153.5790 150.0590 0.0000 0.0000 152.000
+ 4 49.1984 63.0600 1.000 4.000 1996.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2932 0.4823 0.0102 1.9473 5.0000 5.0000 0.0000 153.5750 150.3390 0.0000 0.0000 152.000
+ 5 49.3984 63.1600 1.000 8.000 2108.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2982 0.4841 0.0102 1.9547 5.0000 5.0000 0.0000 153.5740 150.3410 0.0000 0.0000 152.000
+ 6 49.5984 63.2600 1.000 30.000 1980.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3031 0.4859 0.0102 1.9621 5.0000 5.0000 0.0000 153.5740 150.4450 0.0000 0.0000 152.000
+ 7 49.7984 63.3600 1.000 199.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3080 0.4878 0.0103 1.9695 5.0000 5.0000 0.0000 153.5740 150.2380 0.0000 0.0000 152.000
+ 8 49.9984 63.4600 1.000 898.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3129 0.4896 0.0103 1.9769 5.0000 5.0000 0.0000 153.5730 150.0030 0.0000 0.0000 152.000
+ 9 50.1984 63.5600 1.000 3919.000 1983.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3178 0.4914 0.0104 1.9843 5.0000 5.0000 0.0000 153.5680 150.0840 0.0000 0.0000 152.000
+ 10 50.3984 63.6600 1.000 10044.000 2055.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3228 0.4933 0.0104 1.9917 5.0000 5.0000 0.0000 153.5660 150.2860 0.0000 0.0000 152.000
+ 11 50.5984 63.7600 1.000 15099.000 2084.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.4951 0.0104 1.9991 5.0000 5.0000 0.0000 153.5620 150.2070 0.0000 0.0000 152.000
+ 12 50.7984 63.8600 1.000 13314.000 1975.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3326 0.4969 0.0105 2.0065 5.0000 5.0000 0.0000 153.5620 150.2970 0.0000 0.0000 152.000
+ 13 50.9984 63.9600 1.000 7366.000 2014.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3375 0.4988 0.0105 2.0138 5.0000 5.0000 0.0000 153.5620 150.1420 0.0000 0.0000 152.000
+ 14 51.1984 64.0600 1.000 2283.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3423 0.5006 0.0105 2.0212 5.0000 5.0000 0.0000 153.5570 150.1830 0.0000 0.0000 152.000
+ 15 51.3984 64.1600 1.000 484.000 2047.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3472 0.5024 0.0106 2.0286 5.0000 5.0000 0.0000 153.5550 150.2480 0.0000 0.0000 152.000
+ 16 51.5984 64.2600 1.000 112.000 1986.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3521 0.5042 0.0106 2.0359 5.0000 5.0000 0.0000 153.5550 150.2050 0.0000 0.0000 152.000
+ 17 51.7984 64.3600 1.000 34.000 1997.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3570 0.5060 0.0107 2.0433 5.0000 5.0000 0.0000 153.5520 150.1900 0.0000 0.0000 152.000
+ 18 51.9984 64.4600 1.000 9.000 2059.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3619 0.5079 0.0107 2.0506 5.0000 5.0000 0.0000 153.5490 150.4490 0.0000 0.0000 152.000
+ 19 52.1984 64.5600 1.000 5.000 1975.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3667 0.5097 0.0107 2.0579 5.0000 5.0000 0.0000 153.5470 150.5270 0.0000 0.0000 152.000
+ 20 52.3984 64.6600 1.000 4.000 1980.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3716 0.5115 0.0108 2.0653 5.0000 5.0000 0.0000 153.5470 150.2120 0.0000 0.0000 152.000
+ 21 52.5984 64.7600 1.000 1.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3765 0.5133 0.0108 2.0726 5.0000 5.0000 0.0000 153.5460 150.0740 0.0000 0.0000 152.000
+# Sum of Counts = 53818
+# Center of Mass = 50.658235+/-0.308820
+# Full Width Half-Maximum = 0.572098+/-0.191083
+# 2:46:56 PM 6/21/2012 scan completed.
+
+2:46:56 PM 6/21/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 63.78986
+s2 50.65823
+
+Drive completed.
+
+
+2:47:21 PM 6/21/2012 Executing "drive s2 50.598 s1 63.76"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 50.59800
+s1 63.76000
+
+Drive completed.
+
+
+2:47:41 PM 6/21/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24739PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24739PM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.5980 63.7600 -2.0000 1.0000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5500 b=4.5500 c=11.8370 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.5980 63.7600 -2.0000 1.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.6701 32.3898 -2.0000 1.0000 34.9851 -74.1428 142.9286
+ 0.5000 0.0000 2.0000 5.0000 5.0000 142.9286 50.5984 63.7605 -2.0000 1.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.2007 0.0346 1.5340 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ -0.6278 0.0632 2.5141 50.5980 63.7600 -2.0000 1.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB21Jun2012_24741PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB21Jun2012_24741PM.ini
+
+
+2:47:56 PM 6/21/2012 Executing "scan sgl @(sgl)+-2 @(sgl)+2 0.500000"
+ Derived from "scanrel sgl -2 2 0.5"
+
+
+# scan = 18
+# date = 6/21/2012
+# time = 2:47:56 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel sgl -2 2 0.5
+# builtin_command = scan sgl @(sgl)+-2 @(sgl)+2 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_24741PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 12508.000 2100.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5131 -0.0263 1.9988 5.0000 5.0000 0.0000 153.4890 150.2070 0.0000 0.0000 152.000
+ 2 -3.5000 1.000 13355.000 2037.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5099 -0.0197 1.9993 5.0000 5.0000 0.0000 153.4860 149.9580 0.0000 0.0000 152.000
+ 3 -3.0000 1.000 14712.000 2035.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5066 -0.0131 1.9997 5.0000 5.0000 0.0000 153.4810 150.1810 0.0000 0.0000 152.000
+ 4 -2.4999 1.000 15014.000 2024.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5033 -0.0066 1.9999 5.0000 5.0000 0.0000 153.4770 149.9600 0.0000 0.0000 152.000
+ 5 -2.0000 1.000 15244.000 2057.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 153.4720 149.9820 0.0000 0.0000 152.000
+ 6 -1.4999 1.000 14808.000 2044.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.4967 0.0066 1.9999 5.0000 5.0000 0.0000 153.4700 150.0840 0.0000 0.0000 152.000
+ 7 -1.0000 1.000 14473.000 2113.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.4934 0.0131 1.9997 5.0000 5.0000 0.0000 153.4670 150.2270 0.0000 0.0000 152.000
+ 8 -0.5000 1.000 13943.000 2003.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.4901 0.0197 1.9993 5.0000 5.0000 0.0000 153.4630 150.3860 0.0000 0.0000 152.000
+ 9 0.0000 1.000 12771.000 1950.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.7600 50.5980 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3276 0.4869 0.0263 1.9988 5.0000 5.0000 0.0000 153.4610 150.0060 0.0000 0.0000 152.000
+# Sum of Counts = 126828
+# Center of Mass = -1.991571+/-0.008656
+# Full Width Half-Maximum = 2.506295+/-0.008160
+# 2:48:33 PM 6/21/2012 scan completed.
+
+2:48:33 PM 6/21/2012 Executing "drive sgl @(sgl)-2"
+ Derived from "scanrel sgl -2 2 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -2.00000
+
+Drive completed.
+
+
+2:49:16 PM 6/21/2012 Executing "drive h 1.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 1 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.49574
+s1 105.89059
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:49:54 PM 6/21/2012 Executing "scantitle "(1 0 1) inside cryo-furnace w/o filter""
+
+Setting the scantitle to:
+(1 0 1) inside cryo-furnace w/o filter
+
+
+2:49:59 PM 6/21/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 19
+# date = 6/21/2012
+# time = 2:49:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (1 0 1) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_24741PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 104.8906 1.000 201.000 2030.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9940 0.0000 1.0523 5.0000 5.0000 0.0000 153.3770 150.0670 0.0000 0.0000 152.000
+ 2 104.9906 1.000 230.000 2098.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9946 0.0000 1.0471 5.0000 5.0000 0.0000 153.3760 150.0470 0.0000 0.0000 152.000
+ 3 105.0906 1.000 315.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9953 0.0000 1.0418 5.0000 5.0000 0.0000 153.3750 150.1570 0.0000 0.0000 152.000
+ 4 105.1906 1.000 517.000 1998.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9959 0.0000 1.0366 5.0000 5.0000 0.0000 153.3740 150.3480 0.0000 0.0000 152.000
+ 5 105.2906 1.000 821.000 2011.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9965 0.0000 1.0314 5.0000 5.0000 0.0000 153.3700 150.1270 0.0000 0.0000 152.000
+ 6 105.3906 1.000 1548.000 2070.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9971 0.0000 1.0262 5.0000 5.0000 0.0000 153.3670 150.2040 0.0000 0.0000 152.000
+ 7 105.4906 1.000 3717.000 2056.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9977 0.0000 1.0209 5.0000 5.0000 0.0000 153.3690 150.2100 0.0000 0.0000 152.000
+ 8 105.5906 1.000 11625.000 2076.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9982 0.0000 1.0157 5.0000 5.0000 0.0000 153.3680 150.0560 0.0000 0.0000 152.000
+ 9 105.6906 1.000 29397.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9988 0.0000 1.0105 5.0000 5.0000 0.0000 153.3650 150.2750 0.0000 0.0000 152.000
+ 10 105.7906 1.000 50967.000 1989.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 0.9994 0.0000 1.0052 5.0000 5.0000 0.0000 153.3650 150.0610 0.0000 0.0000 152.000
+ 11 105.8906 1.000 61267.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 153.3640 150.2760 0.0000 0.0000 152.000
+ 12 105.9906 1.000 53327.000 1992.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0006 0.0000 0.9948 5.0000 5.0000 0.0000 153.3640 150.4040 0.0000 0.0000 152.000
+ 13 106.0906 1.000 33755.000 1973.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0012 0.0000 0.9895 5.0000 5.0000 0.0000 153.3620 150.1860 0.0000 0.0000 152.000
+ 14 106.1906 1.000 16174.000 2078.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0017 0.0000 0.9843 5.0000 5.0000 0.0000 153.3610 149.9340 0.0000 0.0000 152.000
+ 15 106.2906 1.000 6644.000 2061.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0023 0.0000 0.9790 5.0000 5.0000 0.0000 153.3580 149.9500 0.0000 0.0000 152.000
+ 16 106.3906 1.000 2746.000 2037.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0029 0.0000 0.9737 5.0000 5.0000 0.0000 153.3560 150.2240 0.0000 0.0000 152.000
+ 17 106.4906 1.000 1365.000 2032.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0034 0.0000 0.9685 5.0000 5.0000 0.0000 153.3560 150.1960 0.0000 0.0000 152.000
+ 18 106.5906 1.000 630.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0040 0.0000 0.9632 5.0000 5.0000 0.0000 153.3540 150.0680 0.0000 0.0000 152.000
+ 19 106.6906 1.000 323.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0046 0.0000 0.9580 5.0000 5.0000 0.0000 153.3530 150.0980 0.0000 0.0000 152.000
+ 20 106.7906 1.000 245.000 1962.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0051 0.0000 0.9527 5.0000 5.0000 0.0000 153.3530 150.2360 0.0000 0.0000 152.000
+ 21 106.8906 1.000 164.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.4958 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0057 0.0000 0.9474 5.0000 5.0000 0.0000 153.3510 150.2370 0.0000 0.0000 152.000
+# Sum of Counts = 275978
+# Center of Mass = 105.907379+/-0.285105
+# Full Width Half-Maximum = 0.403471+/-0.138312
+# 2:50:33 PM 6/21/2012 scan completed.
+
+2:50:33 PM 6/21/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 105.89060
+
+Drive completed.
+
+
+2:50:45 PM 6/21/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 20
+# date = 6/21/2012
+# time = 2:50:45 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (1 0 1) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_24741PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.4958 104.8905 1.000 2.000 2061.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6347 0.9727 0.0000 0.9727 5.0000 5.0000 0.0000 153.3350 150.1580 0.0000 0.0000 152.000
+ 2 63.6958 104.9906 1.000 6.000 2066.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6393 0.9755 0.0000 0.9755 5.0000 5.0000 0.0000 153.3340 150.0520 0.0000 0.0000 152.000
+ 3 63.8958 105.0906 1.000 11.000 2051.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6439 0.9782 0.0000 0.9782 5.0000 5.0000 0.0000 153.3330 150.1360 0.0000 0.0000 152.000
+ 4 64.0958 105.1906 1.000 25.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6485 0.9809 0.0000 0.9809 5.0000 5.0000 0.0000 153.3300 150.1620 0.0000 0.0000 152.000
+ 5 64.2958 105.2906 1.000 27.000 2078.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6531 0.9837 0.0000 0.9837 5.0000 5.0000 0.0000 153.3280 150.1820 0.0000 0.0000 152.000
+ 6 64.4958 105.3906 1.000 111.000 1953.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6577 0.9864 0.0000 0.9864 5.0000 5.0000 0.0000 153.3260 150.1940 0.0000 0.0000 152.000
+ 7 64.6958 105.4906 1.000 492.000 2042.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6623 0.9891 0.0000 0.9891 5.0000 5.0000 0.0000 153.3230 150.0550 0.0000 0.0000 152.000
+ 8 64.8958 105.5906 1.000 2665.000 2009.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6669 0.9918 0.0000 0.9918 5.0000 5.0000 0.0000 153.3220 149.9900 0.0000 0.0000 152.000
+ 9 65.0958 105.6906 1.000 12096.000 2053.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6714 0.9946 0.0000 0.9946 5.0000 5.0000 0.0000 153.3220 150.2930 0.0000 0.0000 152.000
+ 10 65.2958 105.7906 1.000 34980.000 1994.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6760 0.9973 0.0000 0.9973 5.0000 5.0000 0.0000 153.3190 150.1030 0.0000 0.0000 152.000
+ 11 65.4958 105.8906 1.000 60123.000 1966.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6806 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 153.3170 150.0710 0.0000 0.0000 152.000
+ 12 65.6958 105.9906 1.000 69169.000 2016.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6851 1.0027 0.0000 1.0027 5.0000 5.0000 0.0000 153.3150 150.1740 0.0000 0.0000 152.000
+ 13 65.8958 106.0906 1.000 53016.000 2125.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6897 1.0054 0.0000 1.0054 5.0000 5.0000 0.0000 153.3120 150.0270 0.0000 0.0000 152.000
+ 14 66.0958 106.1906 1.000 25702.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6942 1.0081 0.0000 1.0081 5.0000 5.0000 0.0000 153.3100 150.1560 0.0000 0.0000 152.000
+ 15 66.2958 106.2906 1.000 7076.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6988 1.0108 0.0000 1.0108 5.0000 5.0000 0.0000 153.3090 150.2410 0.0000 0.0000 152.000
+ 16 66.4958 106.3906 1.000 1476.000 2123.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7033 1.0135 0.0000 1.0135 5.0000 5.0000 0.0000 153.3060 150.0500 0.0000 0.0000 152.000
+ 17 66.6958 106.4906 1.000 298.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7078 1.0162 0.0000 1.0162 5.0000 5.0000 0.0000 153.3040 149.9150 0.0000 0.0000 152.000
+ 18 66.8958 106.5906 1.000 61.000 2051.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7124 1.0189 0.0000 1.0189 5.0000 5.0000 0.0000 153.3020 150.0900 0.0000 0.0000 152.000
+ 19 67.0958 106.6906 1.000 26.000 1948.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7169 1.0216 0.0000 1.0216 5.0000 5.0000 0.0000 153.3020 149.9050 0.0000 0.0000 152.000
+ 20 67.2958 106.7906 1.000 8.000 2034.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7214 1.0243 0.0000 1.0243 5.0000 5.0000 0.0000 153.2980 150.3230 0.0000 0.0000 152.000
+ 21 67.4958 106.8906 1.000 11.000 2075.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7259 1.0270 0.0000 1.0270 5.0000 5.0000 0.0000 153.2970 150.3500 0.0000 0.0000 152.000
+# Sum of Counts = 267381
+# Center of Mass = 65.660664+/-0.179580
+# Full Width Half-Maximum = 0.608952+/-0.109895
+# 2:51:36 PM 6/21/2012 scan completed.
+
+2:51:36 PM 6/21/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 105.97305
+s2 65.66066
+
+Drive completed.
+
+
+2:51:50 PM 6/21/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.59843
+s1 63.76055
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:52:31 PM 6/21/2012 Executing "scantitle "(0.5 0 2) inside cryo-furnace w/o filter""
+
+Setting the scantitle to:
+(0.5 0 2) inside cryo-furnace w/o filter
+
+
+2:52:35 PM 6/21/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 21
+# date = 6/21/2012
+# time = 2:52:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+# ubmatrix = 0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_24741PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 48.5984 62.7604 1.000 3.000 2036.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2784 0.4815 0.0000 1.9259 5.0000 5.0000 0.0000 153.2380 150.1430 0.0000 0.0000 152.000
+ 2 48.7984 62.8606 1.000 2.000 2123.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2834 0.4833 0.0000 1.9333 5.0000 5.0000 0.0000 153.2400 150.0730 0.0000 0.0000 152.000
+ 3 48.9984 62.9606 1.000 2.000 2040.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2883 0.4852 0.0000 1.9407 5.0000 5.0000 0.0000 153.2400 149.9220 0.0000 0.0000 152.000
+ 4 49.1984 63.0606 1.000 2.000 2027.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2932 0.4870 0.0000 1.9482 5.0000 5.0000 0.0000 153.2360 149.9220 0.0000 0.0000 152.000
+ 5 49.3984 63.1606 1.000 14.000 2108.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.2982 0.4889 0.0000 1.9556 5.0000 5.0000 0.0000 153.2340 149.8680 0.0000 0.0000 152.000
+ 6 49.5984 63.2606 1.000 30.000 1979.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3031 0.4908 0.0000 1.9630 5.0000 5.0000 0.0000 153.2370 149.8950 0.0000 0.0000 152.000
+ 7 49.7984 63.3606 1.000 191.000 2118.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3080 0.4926 0.0000 1.9704 5.0000 5.0000 0.0000 153.2310 150.0010 0.0000 0.0000 152.000
+ 8 49.9984 63.4606 1.000 858.000 2033.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3129 0.4945 0.0000 1.9778 5.0000 5.0000 0.0000 153.2270 149.8890 0.0000 0.0000 152.000
+ 9 50.1984 63.5606 1.000 3767.000 2100.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3178 0.4963 0.0000 1.9852 5.0000 5.0000 0.0000 153.2260 149.8810 0.0000 0.0000 152.000
+ 10 50.3984 63.6606 1.000 10135.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3228 0.4982 0.0000 1.9926 5.0000 5.0000 0.0000 153.2240 149.8860 0.0000 0.0000 152.000
+ 11 50.5984 63.7606 1.000 14955.000 1954.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3277 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 153.2230 149.8970 0.0000 0.0000 152.000
+ 12 50.7984 63.8606 1.000 13276.000 2077.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3326 0.5018 0.0000 2.0074 5.0000 5.0000 0.0000 153.2210 149.9170 0.0000 0.0000 152.000
+ 13 50.9984 63.9606 1.000 7381.000 1995.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3375 0.5037 0.0000 2.0148 5.0000 5.0000 0.0000 153.2190 149.9190 0.0000 0.0000 152.000
+ 14 51.1984 64.0606 1.000 2336.000 2017.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3423 0.5055 0.0000 2.0221 5.0000 5.0000 0.0000 153.2200 149.9070 0.0000 0.0000 152.000
+ 15 51.3984 64.1606 1.000 478.000 2062.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3472 0.5074 0.0000 2.0295 5.0000 5.0000 0.0000 153.2160 150.0370 0.0000 0.0000 152.000
+ 16 51.5984 64.2606 1.000 105.000 2018.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3521 0.5092 0.0000 2.0368 5.0000 5.0000 0.0000 153.2140 149.9900 0.0000 0.0000 152.000
+ 17 51.7984 64.3606 1.000 35.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3570 0.5110 0.0000 2.0442 5.0000 5.0000 0.0000 153.2140 150.0170 0.0000 0.0000 152.000
+ 18 51.9984 64.4606 1.000 11.000 2024.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3619 0.5129 0.0000 2.0515 5.0000 5.0000 0.0000 153.2090 149.9800 0.0000 0.0000 152.000
+ 19 52.1984 64.5606 1.000 5.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3667 0.5147 0.0000 2.0589 5.0000 5.0000 0.0000 153.2060 149.9670 0.0000 0.0000 152.000
+ 20 52.3984 64.6606 1.000 3.000 2063.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3716 0.5166 0.0000 2.0662 5.0000 5.0000 0.0000 153.2040 150.0180 0.0000 0.0000 152.000
+ 21 52.5984 64.7606 1.000 4.000 2073.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3765 0.5184 0.0000 2.0735 5.0000 5.0000 0.0000 153.2050 149.9500 0.0000 0.0000 152.000
+# Sum of Counts = 53593
+# Center of Mass = 50.660192+/-0.309479
+# Full Width Half-Maximum = 0.572193+/-0.191868
+# 2:53:25 PM 6/21/2012 scan completed.
+
+2:53:25 PM 6/21/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 63.79144
+s2 50.66019
+
+Drive completed.
+
+
+2:54:29 PM 6/21/2012 Executing "lattice a 4.535778 b 4.535778 c 11.837000"
+
+
+Changing the lattice constants "a=4.535778,b=4.535778,c=11.837000".
+The lattice constants will be changed to:
+a=4.535778 b=4.535778 c=11.83700
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+2:55:00 PM 6/21/2012 Executing "drive s2 50.6598 s1 63.7913"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 50.65980
+s1 63.79130
+
+Drive completed.
+
+
+2:55:07 PM 6/21/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 22
+# date = 6/21/2012
+# time = 2:55:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020957,0.010474,0.600050
+# ubconf = UB21Jun2012_25429PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 62.7913 1.000 67.000 2044.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4873 0.0000 2.0282 5.0000 5.0000 0.0000 153.1180 150.0160 0.0000 0.0000 152.000
+ 2 62.8913 1.000 87.000 2111.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4885 0.0000 2.0256 5.0000 5.0000 0.0000 153.1150 150.1500 0.0000 0.0000 152.000
+ 3 62.9913 1.000 148.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4897 0.0000 2.0231 5.0000 5.0000 0.0000 153.1140 150.0070 0.0000 0.0000 152.000
+ 4 63.0913 1.000 176.000 2038.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4908 0.0000 2.0205 5.0000 5.0000 0.0000 153.1110 149.9660 0.0000 0.0000 152.000
+ 5 63.1913 1.000 284.000 2034.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4920 0.0000 2.0179 5.0000 5.0000 0.0000 153.1110 149.9660 0.0000 0.0000 152.000
+ 6 63.2913 1.000 493.000 2100.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4932 0.0000 2.0153 5.0000 5.0000 0.0000 153.1090 149.9420 0.0000 0.0000 152.000
+ 7 63.3913 1.000 918.000 2002.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4944 0.0000 2.0127 5.0000 5.0000 0.0000 153.1070 149.9540 0.0000 0.0000 152.000
+ 8 63.4913 1.000 2064.000 2095.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4955 0.0000 2.0101 5.0000 5.0000 0.0000 153.1040 149.9330 0.0000 0.0000 152.000
+ 9 63.5913 1.000 5210.000 2013.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4967 0.0000 2.0075 5.0000 5.0000 0.0000 153.1060 149.9580 0.0000 0.0000 152.000
+ 10 63.6913 1.000 10678.000 2035.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4978 0.0000 2.0049 5.0000 5.0000 0.0000 153.1030 149.9050 0.0000 0.0000 152.000
+ 11 63.7913 1.000 15328.000 1972.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.4990 0.0000 2.0023 5.0000 5.0000 0.0000 153.1010 149.9870 0.0000 0.0000 152.000
+ 12 63.8913 1.000 13583.000 2019.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5002 0.0000 1.9996 5.0000 5.0000 0.0000 153.1000 150.1260 0.0000 0.0000 152.000
+ 13 63.9913 1.000 8070.000 2104.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5013 0.0000 1.9970 5.0000 5.0000 0.0000 153.1000 149.6370 0.0000 0.0000 152.000
+ 14 64.0913 1.000 3584.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5025 0.0000 1.9944 5.0000 5.0000 0.0000 153.1010 149.9380 0.0000 0.0000 152.000
+ 15 64.1913 1.000 1658.000 2125.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5036 0.0000 1.9917 5.0000 5.0000 0.0000 153.1010 149.9980 0.0000 0.0000 152.000
+ 16 64.2913 1.000 760.000 2022.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5048 0.0000 1.9891 5.0000 5.0000 0.0000 153.0980 149.9360 0.0000 0.0000 152.000
+ 17 64.3913 1.000 366.000 2106.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5059 0.0000 1.9864 5.0000 5.0000 0.0000 153.0980 149.8170 0.0000 0.0000 152.000
+ 18 64.4913 1.000 240.000 1981.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5071 0.0000 1.9837 5.0000 5.0000 0.0000 153.0960 149.8680 0.0000 0.0000 152.000
+ 19 64.5913 1.000 120.000 2013.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5082 0.0000 1.9811 5.0000 5.0000 0.0000 153.0930 149.9290 0.0000 0.0000 152.000
+ 20 64.6913 1.000 87.000 1993.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5094 0.0000 1.9784 5.0000 5.0000 0.0000 153.0920 149.8480 0.0000 0.0000 152.000
+ 21 64.7913 1.000 62.000 2080.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6598 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.3292 0.5105 0.0000 1.9757 5.0000 5.0000 0.0000 153.0910 149.8010 0.0000 0.0000 152.000
+# Sum of Counts = 63983
+# Center of Mass = 63.819661+/-0.356811
+# Full Width Half-Maximum = 0.421020+/-0.155829
+# 2:55:41 PM 6/21/2012 scan completed.
+
+2:55:41 PM 6/21/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 63.79128
+
+Drive completed.
+
+
+2:55:48 PM 6/21/2012 Executing "drive s1 63.82"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 63.82000
+
+Drive completed.
+
+
+2:56:19 PM 6/21/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_25617PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB21Jun2012_25617PM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.6598 63.8200 -2.0000 1.0000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5358 b=4.5358 c=11.8370 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.6598 63.8200 -2.0000 1.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.6702 32.3899 -2.0000 1.0000 34.9851 -74.1428 142.9286
+ 0.5000 0.0000 2.0000 5.0000 5.0000 142.9286 50.6598 63.8774 -2.0000 1.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.2001 0.0345 1.5340 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ -0.6268 0.0630 2.5152 50.6598 63.8200 -2.0000 1.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB21Jun2012_25619PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB21Jun2012_25619PM.ini
+
+
+2:56:25 PM 6/21/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.65980
+s1 63.87736
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:56:46 PM 6/21/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_25644PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB21Jun2012_25644PM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.6598 63.8774 -2.0000 1.0000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5358 b=4.5358 c=11.8370 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.6598 63.8774 -2.0000 1.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.6702 32.3899 -2.0000 1.0000 34.9851 -74.1428 142.9286
+ 0.5000 0.0000 2.0000 5.0000 5.0000 142.9286 50.6598 63.8774 -2.0000 1.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.2001 0.0345 1.5340 61.6701 32.3898 -2.0000 1.0000 5.0000 5.0000
+ -0.6277 0.0631 2.5164 50.6598 63.8774 -2.0000 1.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB21Jun2012_25646PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB21Jun2012_25646PM.ini
+
+
+2:56:52 PM 6/21/2012 Executing "drive h 1.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 1 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.70395
+s1 106.04836
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+2:57:20 PM 6/21/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 23
+# date = 6/21/2012
+# time = 2:57:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0.5 0 2) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.7040 105.0483 1.000 3.000 1974.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6395 0.9728 0.0000 0.9728 5.0000 5.0000 0.0000 153.0070 149.7380 0.0000 0.0000 152.000
+ 2 63.9040 105.1484 1.000 6.000 1996.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6441 0.9756 0.0000 0.9756 5.0000 5.0000 0.0000 153.0060 149.7260 0.0000 0.0000 152.000
+ 3 64.1040 105.2484 1.000 16.000 2053.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6487 0.9783 0.0000 0.9783 5.0000 5.0000 0.0000 153.0040 149.7920 0.0000 0.0000 152.000
+ 4 64.3040 105.3484 1.000 38.000 2082.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6533 0.9810 0.0000 0.9810 5.0000 5.0000 0.0000 153.0020 149.8140 0.0000 0.0000 152.000
+ 5 64.5040 105.4484 1.000 139.000 1928.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6579 0.9837 0.0000 0.9837 5.0000 5.0000 0.0000 152.9990 149.9830 0.0000 0.0000 152.000
+ 6 64.7040 105.5484 1.000 722.000 2033.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6625 0.9864 0.0000 0.9864 5.0000 5.0000 0.0000 152.9980 149.6620 0.0000 0.0000 152.000
+ 7 64.9040 105.6484 1.000 3637.000 2021.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6671 0.9892 0.0000 0.9892 5.0000 5.0000 0.0000 152.9960 149.7330 0.0000 0.0000 152.000
+ 8 65.1040 105.7484 1.000 13911.000 2026.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6716 0.9919 0.0000 0.9919 5.0000 5.0000 0.0000 152.9940 149.7400 0.0000 0.0000 152.000
+ 9 65.3040 105.8484 1.000 36767.000 2011.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6762 0.9946 0.0000 0.9946 5.0000 5.0000 0.0000 152.9910 149.8160 0.0000 0.0000 152.000
+ 10 65.5040 105.9484 1.000 58970.000 2068.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6808 0.9973 0.0000 0.9973 5.0000 5.0000 0.0000 152.9910 149.8060 0.0000 0.0000 152.000
+ 11 65.7040 106.0484 1.000 64447.000 2094.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6853 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 152.9880 150.1570 0.0000 0.0000 152.000
+ 12 65.9040 106.1484 1.000 46490.000 1991.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6899 1.0027 0.0000 1.0027 5.0000 5.0000 0.0000 152.9870 149.7940 0.0000 0.0000 152.000
+ 13 66.1040 106.2484 1.000 20375.000 2013.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6944 1.0054 0.0000 1.0054 5.0000 5.0000 0.0000 152.9850 149.5040 0.0000 0.0000 152.000
+ 14 66.3040 106.3484 1.000 5558.000 2103.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6990 1.0081 0.0000 1.0081 5.0000 5.0000 0.0000 152.9830 149.7930 0.0000 0.0000 152.000
+ 15 66.5040 106.4484 1.000 1092.000 2089.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7035 1.0108 0.0000 1.0108 5.0000 5.0000 0.0000 152.9810 149.8150 0.0000 0.0000 152.000
+ 16 66.7040 106.5484 1.000 204.000 2120.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7080 1.0135 0.0000 1.0135 5.0000 5.0000 0.0000 152.9800 149.9280 0.0000 0.0000 152.000
+ 17 66.9040 106.6484 1.000 49.000 1981.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7126 1.0162 0.0000 1.0162 5.0000 5.0000 0.0000 152.9770 149.7960 0.0000 0.0000 152.000
+ 18 67.1040 106.7484 1.000 24.000 2049.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7171 1.0188 0.0000 1.0188 5.0000 5.0000 0.0000 152.9760 149.5630 0.0000 0.0000 152.000
+ 19 67.3040 106.8484 1.000 19.000 2057.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7216 1.0215 0.0000 1.0215 5.0000 5.0000 0.0000 152.9730 149.6520 0.0000 0.0000 152.000
+ 20 67.5040 106.9484 1.000 7.000 2090.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7261 1.0242 0.0000 1.0242 5.0000 5.0000 0.0000 152.9710 149.5620 0.0000 0.0000 152.000
+ 21 67.7040 107.0484 1.000 3.000 2023.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.7306 1.0269 0.0000 1.0269 5.0000 5.0000 0.0000 152.9700 149.5900 0.0000 0.0000 152.000
+# Sum of Counts = 252477
+# Center of Mass = 65.637699+/-0.184740
+# Full Width Half-Maximum = 0.613547+/-0.112072
+# 2:58:10 PM 6/21/2012 scan completed.
+
+2:58:10 PM 6/21/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 106.01523
+s2 65.63770
+
+Drive completed.
+
+
+2:58:15 PM 6/21/2012 Executing "scantitle "(1 0 1) inside cryo-furnace w/o filter""
+
+Setting the scantitle to:
+(1 0 1) inside cryo-furnace w/o filter
+
+
+2:58:20 PM 6/21/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 24
+# date = 6/21/2012
+# time = 2:58:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (1 0 1) inside cryo-furnace w/o filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 105.0152 1.000 240.000 2031.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9932 0.0000 1.0515 5.0000 5.0000 0.0000 152.9570 149.6800 0.0000 0.0000 152.000
+ 2 105.1152 1.000 353.000 2010.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9938 0.0000 1.0463 5.0000 5.0000 0.0000 152.9550 149.8380 0.0000 0.0000 152.000
+ 3 105.2152 1.000 481.000 2047.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9944 0.0000 1.0410 5.0000 5.0000 0.0000 152.9550 149.6090 0.0000 0.0000 152.000
+ 4 105.3152 1.000 787.000 2114.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9950 0.0000 1.0358 5.0000 5.0000 0.0000 152.9530 149.9280 0.0000 0.0000 152.000
+ 5 105.4152 1.000 1343.000 2048.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9956 0.0000 1.0306 5.0000 5.0000 0.0000 152.9530 149.5980 0.0000 0.0000 152.000
+ 6 105.5152 1.000 3207.000 2008.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9962 0.0000 1.0253 5.0000 5.0000 0.0000 152.9510 149.8740 0.0000 0.0000 152.000
+ 7 105.6152 1.000 9634.000 2008.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9968 0.0000 1.0201 5.0000 5.0000 0.0000 152.9490 149.9890 0.0000 0.0000 152.000
+ 8 105.7152 1.000 26487.000 2030.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9974 0.0000 1.0149 5.0000 5.0000 0.0000 152.9480 149.7220 0.0000 0.0000 152.000
+ 9 105.8152 1.000 51293.000 2053.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9979 0.0000 1.0096 5.0000 5.0000 0.0000 152.9480 149.6110 0.0000 0.0000 152.000
+ 10 105.9152 1.000 67387.000 2091.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9985 0.0000 1.0044 5.0000 5.0000 0.0000 152.9460 149.9890 0.0000 0.0000 152.000
+ 11 106.0152 1.000 65027.000 2037.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9991 0.0000 0.9991 5.0000 5.0000 0.0000 152.9450 149.6660 0.0000 0.0000 152.000
+ 12 106.1152 1.000 45281.000 2006.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 0.9997 0.0000 0.9938 5.0000 5.0000 0.0000 152.9440 149.5860 0.0000 0.0000 152.000
+ 13 106.2152 1.000 23295.000 2042.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0003 0.0000 0.9886 5.0000 5.0000 0.0000 152.9430 149.4280 0.0000 0.0000 152.000
+ 14 106.3152 1.000 9902.000 2076.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0008 0.0000 0.9833 5.0000 5.0000 0.0000 152.9390 149.5140 0.0000 0.0000 152.000
+ 15 106.4152 1.000 4151.000 2026.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0014 0.0000 0.9781 5.0000 5.0000 0.0000 152.9390 149.6560 0.0000 0.0000 152.000
+ 16 106.5152 1.000 1842.000 2055.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0020 0.0000 0.9728 5.0000 5.0000 0.0000 152.9370 149.6820 0.0000 0.0000 152.000
+ 17 106.6152 1.000 861.000 2085.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0025 0.0000 0.9675 5.0000 5.0000 0.0000 152.9350 149.7890 0.0000 0.0000 152.000
+ 18 106.7152 1.000 493.000 2043.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0031 0.0000 0.9622 5.0000 5.0000 0.0000 152.9350 149.6020 0.0000 0.0000 152.000
+ 19 106.8152 1.000 296.000 1974.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0036 0.0000 0.9570 5.0000 5.0000 0.0000 152.9340 149.5380 0.0000 0.0000 152.000
+ 20 106.9152 1.000 213.000 2060.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0042 0.0000 0.9517 5.0000 5.0000 0.0000 152.9310 149.7640 0.0000 0.0000 152.000
+ 21 107.0152 1.000 139.000 2029.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.6377 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6838 1.0047 0.0000 0.9464 5.0000 5.0000 0.0000 152.9300 149.6160 0.0000 0.0000 152.000
+# Sum of Counts = 312712
+# Center of Mass = 105.962335+/-0.267975
+# Full Width Half-Maximum = 0.403598+/-0.130473
+# 2:58:55 PM 6/21/2012 scan completed.
+
+2:58:55 PM 6/21/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 106.01524
+
+Drive completed.
+
+
+2:59:11 PM 6/21/2012 Executing "count preset time 60"
+
+2:59:11 PM 6/21/2012 Executing count command with preset channel "time" and preset value 60.00
+
+ time detector monitor mcu
+ 60.000 3892955.000 122392.000 0.997
+
+3:00:12 PM 6/21/2012 Count command completed.
+
+
+3:00:14 PM 6/21/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.67022
+s1 32.38987
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:18:23 PM 6/21/2012 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive completed.
+
+
+3:19:48 PM 6/21/2012 Executing "drive s1 100"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 100.00000
+
+Drive completed.
+
+
+3:20:08 PM 6/21/2012 Executing "drive s1 120"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 120.00000
+
+Drive completed.
+
+
+3:20:36 PM 6/21/2012 Executing "drive s1 135"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 135.00000
+
+Drive completed.
+
+
+3:21:02 PM 6/21/2012 Executing "drive s1 -60"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -60.00000
+
+Drive completed.
+
+
+3:23:24 PM 6/21/2012 Executing "count preset time 60"
+
+3:23:24 PM 6/21/2012 Executing count command with preset channel "time" and preset value 60.00
+
+ time detector monitor mcu
+ 60.000 51.000 85641.000 0.698
+
+3:24:24 PM 6/21/2012 Count command completed.
+
+
+3:24:35 PM 6/21/2012 Executing "comment "The monitor count unit was set to @(methodreal0)" title "Setting the monitor count unit""
+ Derived from "mcu 85641/60."
+
+Setting the monitor count unit:
+The monitor count unit was set to 1427.35
+
+
+3:24:45 PM 6/21/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.67022
+s1 32.38987
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:26:05 PM 6/21/2012 Executing "scantitle "(0 0 3) inside cryo-furnace with filter""
+
+Setting the scantitle to:
+(0 0 3) inside cryo-furnace with filter
+
+
+3:26:12 PM 6/21/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 25
+# date = 6/21/2012
+# time = 3:26:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0 0 3) inside cryo-furnace with filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.3899 1.000 711.000 1410.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 152.0850 150.0890 0.0000 0.0000 152.000
+ 2 31.4899 1.000 893.000 1360.000 0.953 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 152.0850 150.3840 0.0000 0.0000 152.000
+ 3 31.5899 1.000 1333.000 1355.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 152.0840 150.3390 0.0000 0.0000 152.000
+ 4 31.6899 1.000 2074.000 1366.000 0.957 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 152.0820 150.3930 0.0000 0.0000 152.000
+ 5 31.7899 1.000 3205.000 1358.000 0.951 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 152.0810 150.2370 0.0000 0.0000 152.000
+ 6 31.8899 1.000 6249.000 1348.000 0.944 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 152.0790 150.2600 0.0000 0.0000 152.000
+ 7 31.9899 1.000 14157.000 1367.000 0.958 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0069 0.0000 2.9999 5.0000 5.0000 0.0000 152.0780 150.0110 0.0000 0.0000 152.000
+ 8 32.0899 1.000 33828.000 1350.000 0.946 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 152.0770 150.3670 0.0000 0.0000 152.000
+ 9 32.1899 1.000 62744.000 1411.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 152.0760 150.5230 0.0000 0.0000 152.000
+ 10 32.2899 1.000 85095.000 1383.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 152.0740 150.3870 0.0000 0.0000 152.000
+ 11 32.3899 1.000 93193.000 1332.000 0.933 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 152.0720 150.1430 0.0000 0.0000 152.000
+ 12 32.4899 1.000 81517.000 1383.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 152.0720 150.2870 0.0000 0.0000 152.000
+ 13 32.5899 1.000 54322.000 1388.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 152.0710 150.3020 0.0000 0.0000 152.000
+ 14 32.6899 1.000 26867.000 1355.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 152.0690 150.1940 0.0000 0.0000 152.000
+ 15 32.7899 1.000 11573.000 1363.000 0.955 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 152.0700 150.2780 0.0000 0.0000 152.000
+ 16 32.8899 1.000 5045.000 1359.000 0.952 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 152.0680 150.3120 0.0000 0.0000 152.000
+ 17 32.9899 1.000 2497.000 1422.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 152.0650 150.0480 0.0000 0.0000 152.000
+ 18 33.0899 1.000 1417.000 1329.000 0.931 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 152.0630 150.3560 0.0000 0.0000 152.000
+ 19 33.1899 1.000 840.000 1356.000 0.950 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 152.0630 150.4970 0.0000 0.0000 152.000
+ 20 33.2899 1.000 598.000 1383.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 152.0610 150.4500 0.0000 0.0000 152.000
+ 21 33.3899 1.000 466.000 1357.000 0.951 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 152.0610 150.3020 0.0000 0.0000 152.000
+# Sum of Counts = 488624
+# Center of Mass = 32.374437+/-0.065499
+# Full Width Half-Maximum = 0.462886+/-0.029741
+# 3:26:46 PM 6/21/2012 scan completed.
+
+3:26:46 PM 6/21/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.38988
+
+Drive completed.
+
+
+3:27:15 PM 6/21/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 26
+# date = 6/21/2012
+# time = 3:27:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0 0 3) inside cryo-furnace with filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.6701 31.3899 1.000 7.000 1403.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5456 0.0000 0.0000 2.9118 5.0000 5.0000 0.0000 152.0300 150.2390 0.0000 0.0000 152.000
+ 2 59.8702 31.4899 1.000 16.000 1394.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5503 0.0000 0.0000 2.9207 5.0000 5.0000 0.0000 152.0290 150.4280 0.0000 0.0000 152.000
+ 3 60.0702 31.5899 1.000 24.000 1348.000 0.944 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5550 0.0000 0.0000 2.9295 5.0000 5.0000 0.0000 152.0280 150.0550 0.0000 0.0000 152.000
+ 4 60.2702 31.6899 1.000 51.000 1369.000 0.959 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5597 0.0000 0.0000 2.9384 5.0000 5.0000 0.0000 152.0250 150.0110 0.0000 0.0000 152.000
+ 5 60.4702 31.7899 1.000 263.000 1376.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5644 0.0000 0.0000 2.9472 5.0000 5.0000 0.0000 152.0230 150.2330 0.0000 0.0000 152.000
+ 6 60.6702 31.8899 1.000 1087.000 1437.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5691 0.0000 0.0000 2.9560 5.0000 5.0000 0.0000 152.0210 150.2390 0.0000 0.0000 152.000
+ 7 60.8702 31.9899 1.000 5158.000 1352.000 0.947 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5738 0.0000 0.0000 2.9648 5.0000 5.0000 0.0000 152.0190 150.2370 0.0000 0.0000 152.000
+ 8 61.0702 32.0899 1.000 17901.000 1331.000 0.932 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5784 0.0000 0.0000 2.9736 5.0000 5.0000 0.0000 152.0170 150.3800 0.0000 0.0000 152.000
+ 9 61.2702 32.1899 1.000 45470.000 1404.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5831 0.0000 0.0000 2.9824 5.0000 5.0000 0.0000 152.0160 150.0950 0.0000 0.0000 152.000
+ 10 61.4702 32.2899 1.000 76627.000 1271.000 0.890 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5878 0.0000 0.0000 2.9912 5.0000 5.0000 0.0000 152.0130 150.3890 0.0000 0.0000 152.000
+ 11 61.6702 32.3899 1.000 92623.000 1448.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 152.0120 150.1990 0.0000 0.0000 152.000
+ 12 61.8702 32.4899 1.000 82684.000 1403.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5971 0.0000 0.0000 3.0088 5.0000 5.0000 0.0000 152.0100 150.1870 0.0000 0.0000 152.000
+ 13 62.0702 32.5899 1.000 53416.000 1374.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6017 0.0000 0.0000 3.0175 5.0000 5.0000 0.0000 152.0080 150.0370 0.0000 0.0000 152.000
+ 14 62.2702 32.6899 1.000 21956.000 1424.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6064 0.0000 0.0000 3.0263 5.0000 5.0000 0.0000 152.0080 150.3860 0.0000 0.0000 152.000
+ 15 62.4702 32.7899 1.000 6276.000 1332.000 0.933 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6110 0.0000 0.0000 3.0350 5.0000 5.0000 0.0000 152.0070 150.2110 0.0000 0.0000 152.000
+ 16 62.6702 32.8899 1.000 1495.000 1410.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6156 0.0000 0.0000 3.0437 5.0000 5.0000 0.0000 152.0040 150.1430 0.0000 0.0000 152.000
+ 17 62.8702 32.9899 1.000 379.000 1308.000 0.916 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6203 0.0000 0.0000 3.0525 5.0000 5.0000 0.0000 152.0030 150.1620 0.0000 0.0000 152.000
+ 18 63.0702 33.0899 1.000 121.000 1309.000 0.917 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6249 0.0000 0.0000 3.0612 5.0000 5.0000 0.0000 152.0020 150.3440 0.0000 0.0000 152.000
+ 19 63.2702 33.1899 1.000 39.000 1416.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6295 0.0000 0.0000 3.0699 5.0000 5.0000 0.0000 152.0010 150.2970 0.0000 0.0000 152.000
+ 20 63.4702 33.2899 1.000 14.000 1346.000 0.943 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6341 0.0000 0.0000 3.0786 5.0000 5.0000 0.0000 151.9970 150.5140 0.0000 0.0000 152.000
+ 21 63.6702 33.3899 1.000 3.000 1394.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6387 0.0000 0.0000 3.0872 5.0000 5.0000 0.0000 151.9970 150.2720 0.0000 0.0000 152.000
+# Sum of Counts = 405610
+# Center of Mass = 61.690847+/-0.136989
+# Full Width Half-Maximum = 0.686790+/-0.079098
+# 3:28:06 PM 6/21/2012 scan completed.
+
+3:28:06 PM 6/21/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.40020
+s2 61.69085
+
+Drive completed.
+
+
+3:31:50 PM 6/21/2012 Executing "ei 5"
+
+Setting the incident energy to 5.000meV and the configuration to "Fixed Ei".
+
+
+3:33:33 PM 6/21/2012 Executing "count preset muc 0.5"
+
+Error processing the count command:
+Thu, Jun 21, 2012 [3:33:33 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:CheckPresetNew.vi.
+
+The argument following 'preset' was not 'countfile', a valid presetable counter channel, or a valid countfile path.
+
+
+
+3:33:40 PM 6/21/2012 Executing "count preset mcu 0.5"
+
+3:33:40 PM 6/21/2012 Executing count command with preset channel "mcu" and preset value 0.50
+
+ time detector monitor mcu
+ 0.525 48601.000 714.000 0.500
+
+3:33:41 PM 6/21/2012 Count command completed.
+
+
+3:33:56 PM 6/21/2012 Executing "comment "The monitor count unit was set to @(methodreal0)" title "Setting the monitor count unit""
+ Derived from "mcu 85641/60.*60"
+
+Setting the monitor count unit:
+The monitor count unit was set to 85641
+
+
+3:33:59 PM 6/21/2012 Executing "count preset muc 0.5"
+
+Error processing the count command:
+Thu, Jun 21, 2012 [3:33:59 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:CheckPresetNew.vi.
+
+The argument following 'preset' was not 'countfile', a valid presetable counter channel, or a valid countfile path.
+
+
+
+3:34:02 PM 6/21/2012 Executing "count preset mcu 0.5"
+
+3:34:02 PM 6/21/2012 Executing count command with preset channel "mcu" and preset value 0.50
+
+ time detector monitor mcu
+ 31.269 2904074.000 42820.000 0.500
+
+3:34:34 PM 6/21/2012 Count command completed.
+
+
+3:35:45 PM 6/21/2012 Executing "scantitle "LA at X (1.5 0 0), 150 K""
+
+Setting the scantitle to:
+LA at X (1.5 0 0), 150 K
+
+
+3:35:46 PM 6/21/2012 Executing "scan h 1.5 k 0 l 0 e -5 -2.0 0.25 preset mcu 1"
+
+
+# scan = 27
+# date = 6/21/2012
+# time = 3:35:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 0 e -5 -2.0 0.25 preset mcu 1
+# builtin_command = scan h 1.5 k 0 l 0 e -5 -2.0 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (1.5 0 0), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -5.0000 63.032 7.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 118.2074 77.4569 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.3993 5.0000 10.0000 152.0170 150.0940 0.0000 0.0000 152.000
+ 2 1.5000 0.0000 0.0000 -4.7500 63.152 19.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 119.2498 78.3439 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 2.3993 5.0000 9.7500 151.9680 150.3040 0.0000 0.0000 152.000
+ 3 1.5000 0.0000 0.0000 -4.5000 64.075 49.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 120.3024 79.2490 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.3993 5.0000 9.5000 152.3870 150.1830 0.0000 0.0000 152.000
+ 4 1.5000 0.0000 0.0000 -4.2500 63.446 85.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 121.3656 80.1735 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 2.3993 5.0000 9.2500 152.4210 150.5110 0.0000 0.0000 152.000
+ 5 1.5000 0.0000 0.0000 -4.0000 63.326 106.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 122.4402 81.1188 -2.0000 1.0000 0.0000 0.0000 153.3006 -53.3986 2.3993 5.0000 9.0000 152.3290 150.4340 0.0000 0.0000 152.000
+ 6 1.5000 0.0000 0.0000 -3.7500 63.693 80.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 123.5270 82.0866 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 2.3993 5.0000 8.7500 152.2470 150.4040 0.0000 0.0000 152.000
+ 7 1.5000 0.0000 0.0000 -3.5000 63.793 17.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 124.6269 83.0783 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.3993 5.0000 8.5000 152.1800 150.2330 0.0000 0.0000 152.000
+ 8 1.5000 0.0000 0.0000 -3.2500 63.454 13.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 125.7406 84.0960 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 2.3993 5.0000 8.2500 152.1180 150.4190 0.0000 0.0000 152.000
+ 9 1.5000 0.0000 0.0000 -3.0000 63.164 7.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 126.8693 85.1416 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.3993 5.0000 8.0000 152.0610 150.1280 0.0000 0.0000 152.000
+ 10 1.5000 0.0000 0.0000 -2.7500 63.514 3.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 128.0140 86.2176 -2.0000 1.0000 0.0000 0.0000 151.0406 -57.9186 2.3993 5.0000 7.7500 152.0080 150.3610 0.0000 0.0000 152.000
+ 11 1.5000 0.0000 0.0000 -2.5000 63.371 6.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 129.1758 87.3264 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.3993 5.0000 7.5000 151.9790 150.2750 0.0000 0.0000 152.000
+ 12 1.5000 0.0000 0.0000 -2.2500 63.126 5.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 130.3561 88.4710 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 2.3993 5.0000 7.2500 152.3730 150.3360 0.0000 0.0000 152.000
+ 13 1.5000 0.0000 0.0000 -2.0000 63.373 3.000 85641.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 131.5562 89.6548 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 2.3993 5.0000 7.0000 152.3440 150.3770 0.0000 0.0000 152.000
+# Sum of Counts = 400
+# Center of Mass = -3.985625+/-0.282980
+# Full Width Half-Maximum = 1.020930+/-0.145279
+# 3:50:52 PM 6/21/2012 scan completed.
+
+3:50:52 PM 6/21/2012 Executing "drive s1 60"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 60.00000
+
+Drive completed.
+
+
+4:17:11 PM 6/21/2012 Executing "scantitle "G-X LA, 150 K""
+
+Setting the scantitle to:
+G-X LA, 150 K
+
+
+4:17:12 PM 6/21/2012 Executing "scan h -0.75 k 0 l.5 1 e -7.0 -2.0 -0.25 preset mcu 2"
+
+
+# scan = 28
+# date = 6/21/2012
+# time = 4:17:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l.5 1 e -7.0 -2.0 -0.25 preset mcu 2
+# builtin_command = scan h -0.75 k 0 l.5 1 e -7.0 -2.0 -0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = G-X LA, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l.5 e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_scan.vi.
+# ERROR in driving: Thu, Jun 21, 2012 [4:17:12 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+# The argument for motor k, "0.000000 l.5 1.000000
+# " contains more than one motor position.
+# ...Move aborted.
+# Sum of Counts = 0
+# Center of Mass = 0.000000+/-0.000000
+# Full Width Half-Maximum = 0.000000+/-0.000000
+# 4:17:12 PM 6/21/2012 scan completed.
+
+4:18:32 PM 6/21/2012 Executing "scantitle "G-X LA, (-1 0 2) zone 150 K""
+
+Setting the scantitle to:
+G-X LA, (-1 0 2) zone 150 K
+
+
+4:18:32 PM 6/21/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.0 -2.0 -0.25 preset mcu 2"
+
+
+# scan = 29
+# date = 6/21/2012
+# time = 4:18:32 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.0 -2.0 -0.25 preset mcu 2
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.0 -2.0 -0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = G-X LA, (-1 0 2) zone 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.0000 124.600 12.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 152.2060 150.2510 0.0000 0.0000 152.000
+ 2 -0.7500 0.0000 1.5000 -6.7500 125.979 17.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8443 -46.3112 1.4398 5.0000 11.7500 151.9980 150.4950 0.0000 0.0000 152.000
+ 3 -0.7500 0.0000 1.5000 -6.5000 125.686 18.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 152.3750 150.4720 0.0000 0.0000 152.000
+ 4 -0.7500 0.0000 1.5000 -6.2500 126.143 44.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 152.2480 150.4660 0.0000 0.0000 152.000
+ 5 -0.7500 0.0000 1.5000 -6.0000 125.604 27.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 152.1140 150.3610 0.0000 0.0000 152.000
+ 6 -0.7500 0.0000 1.5000 -5.7500 126.356 17.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 152.0060 150.6530 0.0000 0.0000 152.000
+ 7 -0.7500 0.0000 1.5000 -5.5000 125.651 9.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 152.3850 150.5330 0.0000 0.0000 152.000
+ 8 -0.7500 0.0000 1.5000 -5.2500 125.864 4.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 152.2880 150.8180 0.0000 0.0000 152.000
+ 9 -0.7500 0.0000 1.5000 -5.0000 125.923 6.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 152.1500 150.5900 0.0000 0.0000 152.000
+ 10 -0.7500 0.0000 1.5000 -4.7500 125.996 3.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 152.0400 150.5730 0.0000 0.0000 152.000
+ 11 -0.7500 0.0000 1.5000 -4.5000 125.768 2.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 152.0670 150.4620 0.0000 0.0000 152.000
+ 12 -0.7500 0.0000 1.5000 -4.2500 126.052 3.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 152.3430 150.6610 0.0000 0.0000 152.000
+ 13 -0.7500 0.0000 1.5000 -4.0000 126.073 3.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 152.1920 150.6070 0.0000 0.0000 152.000
+ 14 -0.7500 0.0000 1.5000 -3.7500 124.955 4.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8911 -54.2176 1.4398 5.0000 8.7500 152.0770 150.5370 0.0000 0.0000 152.000
+ 15 -0.7500 0.0000 1.5000 -3.5000 125.805 4.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 151.9780 150.5520 0.0000 0.0000 152.000
+ 16 -0.7500 0.0000 1.5000 -3.2500 125.576 4.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 152.4130 150.6800 0.0000 0.0000 152.000
+ 17 -0.7500 0.0000 1.5000 -3.0000 125.777 9.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.4398 5.0000 8.0000 152.2550 150.5430 0.0000 0.0000 152.000
+ 18 -0.7500 0.0000 1.5000 -2.7500 125.499 19.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.4398 5.0000 7.7500 152.1260 150.6800 0.0000 0.0000 152.000
+ 19 -0.7500 0.0000 1.5000 -2.5000 125.869 17.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 152.0200 150.2520 0.0000 0.0000 152.000
+ 20 -0.7500 0.0000 1.5000 -2.2500 125.637 6.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 152.3040 150.6050 0.0000 0.0000 152.000
+ 21 -0.7500 0.0000 1.5000 -2.0000 125.323 5.000 171282.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 152.3180 150.6570 0.0000 0.0000 152.000
+# Sum of Counts = 233
+# Center of Mass = -5.091202+/-0.483419
+# Full Width Half-Maximum = 3.231084+/-0.315191
+# 5:06:21 PM 6/21/2012 scan completed.
+
+5:06:21 PM 6/21/2012 Executing "scantitle "mid G-X LA+TA (-0.75,0,1.5), 150K""
+
+Setting the scantitle to:
+mid G-X LA+TA (-0.75,0,1.5), 150K
+
+
+5:06:21 PM 6/21/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.5 -1.5 -0.25 preset mcu 4"
+
+
+# scan = 30
+# date = 6/21/2012
+# time = 5:06:21 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 -0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 -0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = mid G-X LA+TA (-0.75,0,1.5), 150K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 251.186 5.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 152.1640 150.6220 0.0000 0.0000 152.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 251.667 11.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 151.9730 150.4650 0.0000 0.0000 152.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 250.658 11.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 152.1690 150.6670 0.0000 0.0000 152.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 251.002 23.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 151.9780 150.3810 0.0000 0.0000 152.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 250.801 36.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 152.2220 150.8930 0.0000 0.0000 152.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 250.555 55.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 152.0000 150.6810 0.0000 0.0000 152.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 251.617 38.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0200 -47.9596 1.4398 5.0000 11.0000 152.2540 150.7120 0.0000 0.0000 152.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 250.682 20.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7251 -48.5495 1.4398 5.0000 10.7500 152.0190 150.8130 0.0000 0.0000 152.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 251.713 21.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 152.3240 150.7970 0.0000 0.0000 152.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 251.742 8.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 152.0710 150.5330 0.0000 0.0000 152.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 251.191 11.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 152.3810 150.5970 0.0000 0.0000 152.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 250.911 8.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 152.1030 150.5430 0.0000 0.0000 152.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 250.998 13.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0666 -51.8666 1.4398 5.0000 9.5000 152.3700 150.5330 0.0000 0.0000 152.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 251.322 10.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 152.1450 150.6310 0.0000 0.0000 152.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 250.463 6.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 152.0840 150.4790 0.0000 0.0000 152.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 250.595 10.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 152.2010 150.6310 0.0000 0.0000 152.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 250.618 9.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4621 -55.0756 1.4398 5.0000 8.5000 151.9910 150.5580 0.0000 0.0000 152.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 250.049 15.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 152.2560 150.9090 0.0000 0.0000 152.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 251.236 18.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9224 1.4398 5.0000 8.0000 152.0290 150.7180 0.0000 0.0000 152.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 250.997 23.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.4398 5.0000 7.7500 152.3200 150.5610 0.0000 0.0000 152.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 250.919 28.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 152.0650 150.8220 0.0000 0.0000 152.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 251.709 16.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 152.3670 150.5740 0.0000 0.0000 152.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 251.168 10.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 152.0950 150.6270 0.0000 0.0000 152.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 250.111 7.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 152.3980 150.5790 0.0000 0.0000 152.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 250.821 4.000 342564.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.4398 5.0000 6.5000 152.1370 150.9060 0.0000 0.0000 152.000
+# Sum of Counts = 416
+# Center of Mass = -4.867788+/-0.347729
+# Full Width Half-Maximum = 3.411806+/-0.211485
+# 6:52:26 PM 6/21/2012 scan completed.
+
+6:52:26 PM 6/21/2012 Executing "scantitle "LO at T (0 0 4.5), 150 K""
+
+Setting the scantitle to:
+LO at T (0 0 4.5), 150 K
+
+
+6:52:27 PM 6/21/2012 Executing "scan h 0 k 0 l 4.5 e -16.0 -11.0 0.25 preset mcu 8"
+
+
+# scan = 31
+# date = 6/21/2012
+# time = 6:52:27 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 0 k 0 l 4.5 e -16.0 -11.0 0.25 preset mcu 8
+# builtin_command = scan h 0 k 0 l 4.5 e -16.0 -11.0 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0 0 4.5), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -16.0000 502.326 40.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2081 46.2287 -2.0000 1.0000 0.0000 0.0000 162.8940 -34.2121 2.3886 5.0000 21.0000 152.3430 150.7670 0.0000 0.0000 152.000
+ 2 0.0000 0.0000 4.5000 -15.7500 502.349 53.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.2424 46.8694 -2.0000 1.0000 0.0000 0.0000 162.7880 -34.4240 2.3886 5.0000 20.7500 152.0000 150.4320 0.0000 0.0000 152.000
+ 3 0.0000 0.0000 4.5000 -15.5000 503.506 57.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2810 47.5091 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.3886 5.0000 20.5000 151.9890 150.8480 0.0000 0.0000 152.000
+ 4 0.0000 0.0000 4.5000 -15.2498 502.232 54.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.3236 48.1481 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8599 2.3886 5.0000 20.2498 152.0540 150.4360 0.0000 0.0000 152.000
+ 5 0.0000 0.0000 4.5000 -15.0000 502.895 71.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.3698 48.7867 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.3886 5.0000 20.0000 152.0860 150.7120 0.0000 0.0000 152.000
+ 6 0.0000 0.0000 4.5000 -14.7500 502.144 97.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.4194 49.4250 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 2.3886 5.0000 19.7500 152.1150 150.7700 0.0000 0.0000 152.000
+ 7 0.0000 0.0000 4.5000 -14.5000 502.952 82.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4720 50.0634 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3886 5.0000 19.5000 152.1590 150.6040 0.0000 0.0000 152.000
+ 8 0.0000 0.0000 4.5000 -14.2500 502.269 104.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.5274 50.7021 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3886 5.0000 19.2500 152.1970 150.8280 0.0000 0.0000 152.000
+ 9 0.0000 0.0000 4.5000 -13.9999 500.446 94.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.5852 51.3412 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0264 2.3886 5.0000 18.9999 152.2230 150.6250 0.0000 0.0000 152.000
+ 10 0.0000 0.0000 4.5000 -13.7500 498.882 72.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.6453 51.9810 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2740 2.3886 5.0000 18.7500 152.2860 150.8210 0.0000 0.0000 152.000
+ 11 0.0000 0.0000 4.5000 -13.5000 498.972 77.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.7073 52.6218 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3886 5.0000 18.5000 152.3580 150.8230 0.0000 0.0000 152.000
+ 12 0.0000 0.0000 4.5000 -13.2500 498.359 68.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -3.7710 53.2638 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3886 5.0000 18.2500 152.3900 150.6480 0.0000 0.0000 152.000
+ 13 0.0000 0.0000 4.5000 -13.0000 498.180 73.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.8362 53.9072 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3886 5.0000 18.0000 152.0250 150.5860 0.0000 0.0000 152.000
+ 14 0.0000 0.0000 4.5000 -12.7500 499.601 52.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.9024 54.5523 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3886 5.0000 17.7500 151.9860 150.4510 0.0000 0.0000 152.000
+ 15 0.0000 0.0000 4.5000 -12.5000 499.873 37.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.9696 55.1992 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3886 5.0000 17.5000 151.9850 150.8210 0.0000 0.0000 152.000
+ 16 0.0000 0.0000 4.5000 -12.2500 500.733 39.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0375 55.8483 -2.0000 1.0000 0.0000 0.0000 161.0621 -37.8756 2.3886 5.0000 17.2500 152.0380 150.8170 0.0000 0.0000 152.000
+ 17 0.0000 0.0000 4.5000 -12.0000 498.789 25.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.8942 56.4998 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3886 5.0000 17.0000 152.0370 150.7200 0.0000 0.0000 152.000
+ 18 0.0000 0.0000 4.5000 -11.7500 499.679 20.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 1.8257 57.1538 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3886 5.0000 16.7500 152.0790 150.7730 0.0000 0.0000 152.000
+ 19 0.0000 0.0000 4.5000 -11.5000 499.407 25.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 2.7573 57.8108 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3886 5.0000 16.5000 152.1250 150.7890 0.0000 0.0000 152.000
+# Thu, Jun 21, 2012 [9:32:15 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:drive_motors.vi.
+# a1 hit upper controller software limit
+ 21 0.0000 0.0000 4.5000 -11.0000 499.991 24.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 4.6217 59.1344 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3886 5.0000 16.0000 152.1630 150.9020 0.0000 0.0000 152.000
+# Sum of Counts = 1164
+# Center of Mass = -13.946503+/-0.579170
+# Full Width Half-Maximum = 2.400300+/-0.237907
+# 9:40:37 PM 6/21/2012 scan completed.
+
+9:40:37 PM 6/21/2012 Executing "scantitle "LO at L (1.5 0 1.5), 150 K""
+
+Setting the scantitle to:
+LO at L (1.5 0 1.5), 150 K
+
+
+9:40:37 PM 6/21/2012 Executing "scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8"
+
+
+# scan = 32
+# date = 6/21/2012
+# time = 9:40:37 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5 0 1.5), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.5000 500.910 45.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.2222 52.7450 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.5280 5.0000 20.5000 152.1700 150.7280 0.0000 0.0000 152.000
+ 2 1.5000 0.0000 1.5000 -15.2500 500.386 49.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.1100 53.3686 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.5280 5.0000 20.2500 152.2170 150.7730 0.0000 0.0000 152.000
+ 3 1.5000 0.0000 1.5000 -15.0000 501.425 57.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.9962 53.9931 -2.0000 1.0000 0.0000 0.0000 162.4578 -35.0840 2.5280 5.0000 20.0000 152.2670 150.8850 0.0000 0.0000 152.000
+ 4 1.5000 0.0000 1.5000 -14.7500 500.692 54.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.8808 54.6188 -2.0000 1.0000 0.0000 0.0000 162.3436 -35.3126 2.5280 5.0000 19.7500 152.3150 150.7840 0.0000 0.0000 152.000
+ 5 1.5000 0.0000 1.5000 -14.5000 501.736 59.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.7642 55.2460 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.5280 5.0000 19.5000 152.3680 150.8330 0.0000 0.0000 152.000
+ 6 1.5000 0.0000 1.5000 -14.2500 499.683 63.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.6465 55.8748 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.5280 5.0000 19.2500 152.3440 150.6690 0.0000 0.0000 152.000
+ 7 1.5000 0.0000 1.5000 -14.0000 499.596 72.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.5280 56.5056 -2.0000 1.0000 0.0000 0.0000 161.9868 -36.0262 2.5280 5.0000 19.0000 152.1430 150.6450 0.0000 0.0000 152.000
+ 8 1.5000 0.0000 1.5000 -13.7500 500.750 78.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.4088 57.1383 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.5280 5.0000 18.7500 151.9780 150.7000 0.0000 0.0000 152.000
+ 9 1.5000 0.0000 1.5000 -13.5000 500.787 80.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.2892 57.7733 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.5280 5.0000 18.5000 152.0170 150.8570 0.0000 0.0000 152.000
+ 10 1.5000 0.0000 1.5000 -13.2500 500.185 89.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.1694 58.4108 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.5280 5.0000 18.2500 152.0510 150.6280 0.0000 0.0000 152.000
+ 11 1.5000 0.0000 1.5000 -12.9999 501.146 90.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.0496 59.0511 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0489 2.5280 5.0000 17.9999 152.0870 150.7550 0.0000 0.0000 152.000
+ 12 1.5000 0.0000 1.5000 -12.7500 501.031 57.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.9300 59.6942 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.5280 5.0000 17.7500 152.1320 150.9220 0.0000 0.0000 152.000
+ 13 1.5000 0.0000 1.5000 -12.5000 501.047 50.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.8108 60.3406 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.5280 5.0000 17.5000 152.1590 150.8050 0.0000 0.0000 152.000
+ 14 1.5000 0.0000 1.5000 -12.2500 500.534 55.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.6922 60.9904 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.5280 5.0000 17.2500 152.2010 150.7400 0.0000 0.0000 152.000
+ 15 1.5000 0.0000 1.5000 -12.0000 501.463 50.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.5745 61.6438 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.5280 5.0000 17.0000 152.2610 150.6760 0.0000 0.0000 152.000
+ 16 1.5000 0.0000 1.5000 -11.7500 500.257 47.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.4578 62.3012 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.5280 5.0000 16.7500 152.3090 150.7400 0.0000 0.0000 152.000
+ 17 1.5000 0.0000 1.5000 -11.5000 500.480 27.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.3424 62.9628 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.5280 5.0000 16.5000 152.3630 150.9010 0.0000 0.0000 152.000
+ 18 1.5000 0.0000 1.5000 -11.2500 500.577 25.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.2284 63.6288 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.5280 5.0000 16.2500 152.3660 150.6910 0.0000 0.0000 152.000
+ 19 1.5000 0.0000 1.5000 -11.0000 500.328 25.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.1161 64.2995 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.5280 5.0000 16.0000 152.0020 150.7550 0.0000 0.0000 152.000
+ 20 1.5000 0.0000 1.5000 -10.7500 500.155 23.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.0058 64.9753 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.5280 5.0000 15.7500 151.9880 150.7450 0.0000 0.0000 152.000
+ 21 1.5000 0.0000 1.5000 -10.5000 500.738 13.000 685128.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.8976 65.6564 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.5280 5.0000 15.5000 152.0160 150.5700 0.0000 0.0000 152.000
+# Sum of Counts = 1108
+# Center of Mass = -13.346111+/-0.568290
+# Full Width Half-Maximum = 2.526409+/-0.233286
+# 12:37:09 AM 6/22/2012 scan completed.
+
+12:37:09 AM 6/22/2012 Executing "scantitle "LO at X (1.5 0 0), 150 K""
+
+Setting the scantitle to:
+LO at X (1.5 0 0), 150 K
+
+
+12:37:09 AM 6/22/2012 Executing "scan h 1.5 k 0 l 0 e -14.5 -9.5 0.25 preset mcu 12"
+
+
+# scan = 33
+# date = 6/22/2012
+# time = 12:37:09 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 0 e -14.5 -9.5 0.25 preset mcu 12
+# builtin_command = scan h 1.5 k 0 l 0 e -14.5 -9.5 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (1.5 0 0), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -14.5000 751.225 76.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.9720 50.4633 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 152.0340 150.5640 0.0000 0.0000 152.000
+ 2 1.5000 0.0000 0.0000 -14.2499 749.976 67.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.9112 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2499 152.3580 150.6120 0.0000 0.0000 152.000
+ 3 1.5000 0.0000 0.0000 -14.0000 751.440 65.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 83.8482 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9868 -36.0262 2.3993 5.0000 19.0000 152.1320 150.6890 0.0000 0.0000 152.000
+ 4 1.5000 0.0000 0.0000 -13.7500 752.074 54.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 84.7830 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 151.9730 150.7470 0.0000 0.0000 152.000
+ 5 1.5000 0.0000 0.0000 -13.5000 756.554 57.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 85.7160 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3993 5.0000 18.5000 152.2960 150.7980 0.0000 0.0000 152.000
+ 6 1.5000 0.0000 0.0000 -13.2500 758.596 73.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 86.6475 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3993 5.0000 18.2500 152.1080 150.8160 0.0000 0.0000 152.000
+ 7 1.5000 0.0000 0.0000 -13.0000 757.159 75.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 87.5776 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3993 5.0000 18.0000 151.9980 150.6660 0.0000 0.0000 152.000
+ 8 1.5000 0.0000 0.0000 -12.7500 757.781 62.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 88.5068 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3993 5.0000 17.7500 152.2350 150.9910 0.0000 0.0000 152.000
+ 9 1.5000 0.0000 0.0000 -12.5000 758.409 91.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 89.4351 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3993 5.0000 17.5000 152.0560 150.5560 0.0000 0.0000 152.000
+ 10 1.5000 0.0000 0.0000 -12.2500 759.738 64.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 90.3628 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 152.3650 150.7520 0.0000 0.0000 152.000
+ 11 1.5000 0.0000 0.0000 -12.0000 757.944 71.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.2903 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3993 5.0000 17.0000 152.1550 150.8950 0.0000 0.0000 152.000
+ 12 1.5000 0.0000 0.0000 -11.7500 758.420 60.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.2177 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 151.9900 150.7890 0.0000 0.0000 152.000
+ 13 1.5000 0.0000 0.0000 -11.5000 757.793 40.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.1452 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3993 5.0000 16.5000 152.2790 150.9000 0.0000 0.0000 152.000
+ 14 1.5000 0.0000 0.0000 -11.2500 758.332 37.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.0732 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0696 2.3993 5.0000 16.2500 152.0790 150.8130 0.0000 0.0000 152.000
+ 15 1.5000 0.0000 0.0000 -11.0000 757.900 29.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.0018 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 152.2280 150.8410 0.0000 0.0000 152.000
+ 16 1.5000 0.0000 0.0000 -10.7500 758.262 32.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.9314 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 152.1910 150.7740 0.0000 0.0000 152.000
+ 17 1.5000 0.0000 0.0000 -10.5000 758.253 25.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.8621 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9784 -40.0430 2.3993 5.0000 15.5000 152.0100 150.7790 0.0000 0.0000 152.000
+ 18 1.5000 0.0000 0.0000 -10.2500 757.281 32.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.7942 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 152.3120 150.8700 0.0000 0.0000 152.000
+ 19 1.5000 0.0000 0.0000 -10.0000 757.364 24.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.7280 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 152.0880 150.6850 0.0000 0.0000 152.000
+ 20 1.5000 0.0000 0.0000 -9.7500 757.174 31.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.6636 62.9110 -2.0000 1.0000 0.0000 0.0000 159.4534 -41.0932 2.3993 5.0000 14.7500 152.3010 150.6210 0.0000 0.0000 152.000
+ 21 1.5000 0.0000 0.0000 -9.5000 757.154 35.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 100.6015 63.6021 -2.0000 1.0000 0.0000 0.0000 159.2689 -41.4622 2.3993 5.0000 14.5000 152.1820 150.8620 0.0000 0.0000 152.000
+# Sum of Counts = 1100
+# Center of Mass = -12.449539+/-0.532510
+# Full Width Half-Maximum = 2.786771+/-0.235156
+# 5:03:03 AM 6/22/2012 scan completed.
+
+5:03:03 AM 6/22/2012 Executing "scantitle "TO at L (-0.5 0 2.5), 150 K""
+
+Setting the scantitle to:
+TO at L (-0.5 0 2.5), 150 K
+
+
+5:03:03 AM 6/22/2012 Executing "scan h -0.5 k 0 l 2.5 e -14.0 -9.0 0.25 preset mcu 12"
+
+
+# scan = 34
+# date = 6/22/2012
+# time = 5:03:03 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.5 k 0 l 2.5 e -14.0 -9.0 0.25 preset mcu 12
+# builtin_command = scan h -0.5 k 0 l 2.5 e -14.0 -9.0 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at L (-0.5 0 2.5), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 0.0000 2.5000 -14.0000 750.768 256.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.3290 12.5800 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 1.5494 5.0000 19.0000 152.0230 150.5930 0.0000 0.0000 152.000
+ 2 -0.5000 0.0000 2.5000 -13.7500 749.838 197.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.1420 14.1714 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 1.5494 5.0000 18.7500 152.0330 150.7190 0.0000 0.0000 152.000
+ 3 -0.5000 0.0000 2.5000 -13.5000 749.147 129.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.2542 15.6133 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 1.5494 5.0000 18.5000 152.3490 150.9490 0.0000 0.0000 152.000
+ 4 -0.5000 0.0000 2.5000 -13.2499 750.354 110.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.5885 16.9443 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7851 1.5494 5.0000 18.2499 152.1280 150.8310 0.0000 0.0000 152.000
+ 5 -0.5000 0.0000 2.5000 -13.0000 752.016 78.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.0958 18.1889 -2.0000 1.0000 0.0000 0.0000 161.4755 -37.0488 1.5494 5.0000 18.0000 151.9810 150.6140 0.0000 0.0000 152.000
+ 6 -0.5000 0.0000 2.5000 -12.7500 749.744 83.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -80.7421 19.3640 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 1.5494 5.0000 17.7500 152.2090 150.7870 0.0000 0.0000 152.000
+ 7 -0.5000 0.0000 2.5000 -12.5000 750.249 71.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -78.5031 20.4819 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.5494 5.0000 17.5000 152.0200 150.6590 0.0000 0.0000 152.000
+ 8 -0.5000 0.0000 2.5000 -12.2500 749.722 64.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -76.3605 21.5516 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 1.5494 5.0000 17.2500 152.3350 150.7890 0.0000 0.0000 152.000
+ 9 -0.5000 0.0000 2.5000 -12.0000 749.465 54.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -74.3002 22.5802 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.5494 5.0000 17.0000 152.1170 150.9700 0.0000 0.0000 152.000
+ 10 -0.5000 0.0000 2.5000 -11.7500 749.298 56.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -72.3110 23.5733 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.5494 5.0000 16.7500 151.9740 150.6860 0.0000 0.0000 152.000
+ 11 -0.5000 0.0000 2.5000 -11.5000 746.640 31.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.3838 24.5355 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.5494 5.0000 16.5000 152.2330 150.7680 0.0000 0.0000 152.000
+ 12 -0.5000 0.0000 2.5000 -11.2500 748.314 45.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.5110 25.4704 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.5494 5.0000 16.2500 152.0120 150.5290 0.0000 0.0000 152.000
+ 13 -0.5000 0.0000 2.5000 -11.0000 749.627 43.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -66.6866 26.3811 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 1.5494 5.0000 16.0000 152.3560 150.5710 0.0000 0.0000 152.000
+ 14 -0.5000 0.0000 2.5000 -10.7500 748.893 25.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -64.9053 27.2704 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.5494 5.0000 15.7500 152.1370 150.9450 0.0000 0.0000 152.000
+ 15 -0.5000 0.0000 2.5000 -10.5000 747.674 27.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.1624 28.1404 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 1.5494 5.0000 15.5000 151.9780 150.6900 0.0000 0.0000 152.000
+ 16 -0.5000 0.0000 2.5000 -10.2499 747.487 18.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -61.4542 28.9931 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3842 1.5494 5.0000 15.2499 152.1810 150.8210 0.0000 0.0000 152.000
+ 17 -0.5000 0.0000 2.5000 -10.0000 748.019 33.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.7771 29.8302 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 1.5494 5.0000 15.0000 152.0080 150.7720 0.0000 0.0000 152.000
+ 18 -0.5000 0.0000 2.5000 -9.7500 748.149 22.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.1282 30.6532 -2.0000 1.0000 0.0000 0.0000 159.4534 -41.0932 1.5494 5.0000 14.7500 152.2810 150.6060 0.0000 0.0000 152.000
+ 19 -0.5000 0.0000 2.5000 -9.5000 748.737 25.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.5047 31.4635 -2.0000 1.0000 0.0000 0.0000 159.2690 -41.4622 1.5494 5.0000 14.5000 152.0760 150.7580 0.0000 0.0000 152.000
+ 20 -0.5000 0.0000 2.5000 -9.2500 748.482 22.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.9044 32.2622 -2.0000 1.0000 0.0000 0.0000 159.0794 -41.8412 1.5494 5.0000 14.2500 152.3100 150.6880 0.0000 0.0000 152.000
+ 21 -0.5000 0.0000 2.5000 -9.0000 748.689 12.000 1027692.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.3250 33.0505 -2.0000 1.0000 0.0000 0.0000 158.8846 -42.2309 1.5494 5.0000 14.0000 152.1390 150.7240 0.0000 0.0000 152.000
+# Sum of Counts = 1401
+# Center of Mass = -12.639177+/-0.478915
+# Full Width Half-Maximum = 2.709846+/-0.254517
+# 9:27:45 AM 6/22/2012 scan completed.
+
+9:27:45 AM 6/22/2012 Executing "scantitle "LO at G (0 0 3), 150 K""
+
+Setting the scantitle to:
+LO at G (0 0 3), 150 K
+
+
+9:27:45 AM 6/22/2012 Executing "scan h 0 k 0 l 3 e -14.0 -10.0 0.25 preset mcu 15"
+
+
+# scan = 35
+# date = 6/22/2012
+# time = 9:27:45 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 0 k 0 l 3 e -14.0 -10.0 0.25 preset mcu 15
+# builtin_command = scan h 0 k 0 l 3 e -14.0 -10.0 0.25 preset mcu 15
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at G (0 0 3), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 15.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -14.0000 935.144 124.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.9958 15.9250 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 1.5924 5.0000 19.0000 151.9810 150.5440 0.0000 0.0000 152.000
+ 2 0.0000 0.0000 3.0000 -13.7500 942.785 127.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.4120 17.2343 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2740 1.5924 5.0000 18.7500 151.9750 150.8960 0.0000 0.0000 152.000
+ 3 0.0000 0.0000 3.0000 -13.5000 944.810 134.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.9905 18.4616 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 1.5924 5.0000 18.5000 152.1550 150.7610 0.0000 0.0000 152.000
+ 4 0.0000 0.0000 3.0000 -13.2500 943.422 96.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.7003 19.6226 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 1.5924 5.0000 18.2500 152.2620 150.9370 0.0000 0.0000 152.000
+ 5 0.0000 0.0000 3.0000 -13.0000 938.252 103.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -47.5189 20.7286 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 1.5924 5.0000 18.0000 152.2430 150.8320 0.0000 0.0000 152.000
+ 6 0.0000 0.0000 3.0000 -12.7500 939.222 89.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.4294 21.7882 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 1.5924 5.0000 17.7500 152.0050 150.8800 0.0000 0.0000 152.000
+ 7 0.0000 0.0000 3.0000 -12.5000 939.102 81.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.4186 22.8081 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.5924 5.0000 17.5000 152.0820 151.0220 0.0000 0.0000 152.000
+ 8 0.0000 0.0000 3.0000 -12.2500 938.413 85.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.4761 23.7936 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 1.5924 5.0000 17.2500 152.1480 150.9760 0.0000 0.0000 152.000
+ 9 0.0000 0.0000 3.0000 -12.0000 938.256 71.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.5931 24.7491 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.5924 5.0000 17.0000 152.2400 150.7190 0.0000 0.0000 152.000
+ 10 0.0000 0.0000 3.0000 -11.7500 936.535 55.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.7628 25.6780 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.5924 5.0000 16.7500 152.2280 150.8760 0.0000 0.0000 152.000
+ 11 0.0000 0.0000 3.0000 -11.4999 935.980 45.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.9792 26.5835 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7606 1.5924 5.0000 16.4999 151.9960 150.8240 0.0000 0.0000 152.000
+ 12 0.0000 0.0000 3.0000 -11.2500 5.667 0.000 7790.000 0.091 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.2372 27.4680 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.5924 5.0000 16.2500 152.0600 150.7180 0.0000 0.0000 152.000
+# Sum of Counts = 1010
+# Center of Mass = -12.976728+/-0.577937
+# Full Width Half-Maximum = 1.497478+/-0.347038
+# 12:20:51 PM 6/22/2012 scan stopped!!
+
+Abort issued!!
+
+12:20:51 PM 6/22/2012 Executing "scantitle "LO at G (0 0 3), 150 K""
+
+Setting the scantitle to:
+LO at G (0 0 3), 150 K
+
+
+12:20:51 PM 6/22/2012 Executing "scan h 0 k 0 l 3 e -15.25 -14.25 -0.25 preset mcu 15"
+
+
+# scan = 36
+# date = 6/22/2012
+# time = 12:20:51 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 0 k 0 l 3 e -15.25 -14.25 -0.25 preset mcu 15
+# builtin_command = scan h 0 k 0 l 3 e -15.25 -14.25 -0.25 preset mcu 15
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at G (0 0 3), 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 15.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -15.2500 933.280 385.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.6158 6.4947 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 1.5924 5.0000 20.2500 152.0520 150.9960 0.0000 0.0000 152.000
+ 2 0.0000 0.0000 3.0000 -15.0000 934.502 226.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.3697 9.1509 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 1.5924 5.0000 20.0000 152.0820 150.5900 0.0000 0.0000 152.000
+ 3 0.0000 0.0000 3.0000 -14.7500 934.229 181.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -66.3046 11.2095 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 1.5924 5.0000 19.7500 152.1270 150.9330 0.0000 0.0000 152.000
+ 4 0.0000 0.0000 3.0000 -14.5000 935.392 144.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.8508 12.9588 -2.0000 1.0000 0.0000 0.0000 162.2270 -35.5458 1.5924 5.0000 19.5000 152.1750 150.9480 0.0000 0.0000 152.000
+ 5 0.0000 0.0000 3.0000 -14.2500 942.965 134.000 1284615.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.7860 14.5113 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 1.5924 5.0000 19.2500 151.9330 151.4210 0.0000 0.0000 152.000
+# Sum of Counts = 1070
+# Center of Mass = -14.886449+/-0.643688
+# Full Width Half-Maximum = 0.704998+/-0.603461
+# 3:23:50 PM 6/22/2012 scan completed.
+
+3:25:13 PM 6/22/2012 Executing "method temp set_setpoint d 150.000000"
+ Derived from "set_temp 150"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+3:25:31 PM 6/22/2012 Executing "method temp set_setpoint d 151.000000"
+ Derived from "set_temp 151"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+3:25:36 PM 6/22/2012 Executing "drive s1 -90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -90.00000
+
+Drive completed.
+
+
+3:26:11 PM 6/22/2012 Executing "drive s1 -110"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -110.00000
+
+Drive completed.
+
+
+3:26:44 PM 6/22/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+3:28:09 PM 6/22/2012 Executing "drive s1 60"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 60.00000
+
+Drive completed.
+
+
+3:29:10 PM 6/22/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+3:36:36 PM 6/22/2012 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive completed.
+
+
+3:38:12 PM 6/22/2012 Executing "drive s1 100"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 100.00000
+
+Drive completed.
+
+
+3:39:07 PM 6/22/2012 Executing "drive s1 110"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 110.00000
+
+Drive completed.
+
+
+3:39:28 PM 6/22/2012 Executing "drive s1 140"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 140.00000
+
+Drive completed.
+
+
+3:40:07 PM 6/22/2012 Executing "drive s1 130"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 130.00000
+
+Drive completed.
+
+
+3:40:23 PM 6/22/2012 Executing "drive s1 120"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 120.00000
+
+Drive completed.
+
+
+3:40:37 PM 6/22/2012 Executing "drive s1 100"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 100.00000
+
+Drive completed.
+
+
+3:41:18 PM 6/22/2012 Executing "drive s1 -100"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -100.00000
+
+Drive completed.
+
+
+3:47:41 PM 6/22/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.67022
+s1 32.38987
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+3:49:14 PM 6/22/2012 Executing "preset time 1"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 1.000000
+
+
+3:49:31 PM 6/22/2012 Executing "scantitle "(0 0 3) check at T=150 K""
+
+Setting the scantitle to:
+(0 0 3) check at T=150 K
+
+
+3:49:35 PM 6/22/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 37
+# date = 6/22/2012
+# time = 3:49:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = (0 0 3) check at T=150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 31.3899 1.000 741.000 1380.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 151.1320 150.6390 0.0000 0.0000 151.000
+ 2 31.4899 1.000 922.000 1409.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 151.1310 150.6400 0.0000 0.0000 151.000
+ 3 31.5899 1.000 1257.000 1394.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 151.1290 150.6370 0.0000 0.0000 151.000
+ 4 31.6899 1.000 1908.000 1383.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 151.1280 150.6360 0.0000 0.0000 151.000
+ 5 31.7899 1.000 3127.000 1412.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 151.1270 150.6380 0.0000 0.0000 151.000
+ 6 31.8899 1.000 5725.000 1406.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 151.1280 150.6330 0.0000 0.0000 151.000
+ 7 31.9899 1.000 13151.000 1329.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 151.1280 150.6330 0.0000 0.0000 151.000
+ 8 32.0899 1.000 31831.000 1396.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 151.1260 150.6350 0.0000 0.0000 151.000
+ 9 32.1899 1.000 60310.000 1396.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 151.1250 150.6330 0.0000 0.0000 151.000
+ 10 32.2899 1.000 84683.000 1319.000 0.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 -0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 151.1240 150.6270 0.0000 0.0000 151.000
+ 11 32.3899 1.000 94098.000 1407.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 151.1230 150.6290 0.0000 0.0000 151.000
+ 12 32.4899 1.000 84209.000 1411.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 151.1220 150.6340 0.0000 0.0000 151.000
+ 13 32.5899 1.000 58206.000 1366.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 151.1220 150.6310 0.0000 0.0000 151.000
+ 14 32.6899 1.000 29306.000 1367.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 151.1210 150.6390 0.0000 0.0000 151.000
+ 15 32.7899 1.000 12594.000 1334.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 151.1190 150.6320 0.0000 0.0000 151.000
+ 16 32.8899 1.000 5580.000 1373.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 151.1200 150.6250 0.0000 0.0000 151.000
+ 17 32.9899 1.000 2643.000 1350.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 151.1190 150.6230 0.0000 0.0000 151.000
+ 18 33.0899 1.000 1561.000 1337.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 151.1180 150.6300 0.0000 0.0000 151.000
+ 19 33.1899 1.000 946.000 1362.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 151.1160 150.6270 0.0000 0.0000 151.000
+ 20 33.2899 1.000 648.000 1368.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 151.1160 150.6240 0.0000 0.0000 151.000
+ 21 33.3899 1.000 474.000 1391.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6702 -2.0000 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5924 0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 151.1140 150.6250 0.0000 0.0000 151.000
+# Sum of Counts = 493920
+# Center of Mass = 32.384197+/-0.065167
+# Full Width Half-Maximum = 0.463565+/-0.029551
+# 3:50:08 PM 6/22/2012 scan completed.
+
+3:50:08 PM 6/22/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.38988
+
+Drive completed.
+
+
+3:50:20 PM 6/22/2012 Executing "count preset time 60"
+
+3:50:20 PM 6/22/2012 Executing count command with preset channel "time" and preset value 60.00
+
+ time detector monitor mcu
+ 60.000 5631825.000 81713.000 0.954
+
+3:51:20 PM 6/22/2012 Count command completed.
+
+
+3:51:36 PM 6/22/2012 Executing "count preset time 60"
+
+3:51:36 PM 6/22/2012 Executing count command with preset channel "time" and preset value 60.00
+
+ time detector monitor mcu
+ 60.000 5638743.000 81985.000 0.957
+
+3:52:36 PM 6/22/2012 Count command completed.
+
+
+3:52:52 PM 6/22/2012 Executing "comment "The monitor count unit was set to @(methodreal0)" title "Setting the monitor count unit""
+ Derived from "mcu 81985"
+
+Setting the monitor count unit:
+The monitor count unit was set to 81985
+
+
+3:52:56 PM 6/22/2012 Executing "preset mcu 1"
+
+
+Setting the default preset channel to: mcu
+and the default preset value to: 1.000000
+
+
+3:53:05 PM 6/22/2012 Executing "count preset mcu 1"
+
+3:53:05 PM 6/22/2012 Executing count command with preset channel "mcu" and preset value 1.00
+
+ time detector monitor mcu
+ 60.307 5657941.000 81985.000 1.000
+
+3:54:06 PM 6/22/2012 Count command completed.
+
+
+4:05:26 PM 6/22/2012 Executing "scantitle "Dispersion G-L transverse (-102) zone, 150 K""
+
+Setting the scantitle to:
+Dispersion G-L transverse (-102) zone, 150 K
+
+
+4:05:26 PM 6/22/2012 Executing "scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 2"
+
+
+# scan = 38
+# date = 6/22/2012
+# time = 4:05:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 2
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) zone, 150 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -3.0000 120.474 137.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.4194 61.0076 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.8207 5.0000 8.0000 151.0010 150.4080 0.0000 0.0000 151.000
+ 2 -0.9000 0.0000 2.1000 -2.9500 120.879 150.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.1603 61.1676 -2.0000 1.0000 0.0000 0.0000 151.4413 -57.1174 1.8207 5.0000 7.9500 151.1650 150.4650 0.0000 0.0000 151.000
+ 3 -0.9000 0.0000 2.1000 -2.9000 120.187 130.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.9007 61.3279 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 1.8207 5.0000 7.9000 151.0570 150.4880 0.0000 0.0000 151.000
+ 4 -0.9000 0.0000 2.1000 -2.8500 120.644 141.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.6408 61.4888 -2.0000 1.0000 0.0000 0.0000 151.2431 -57.5138 1.8207 5.0000 7.8500 150.9690 150.4580 0.0000 0.0000 151.000
+ 5 -0.9000 0.0000 2.1000 -2.8000 120.962 168.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.3804 61.6501 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 1.8207 5.0000 7.8000 150.9350 150.4130 0.0000 0.0000 151.000
+ 6 -0.9000 0.0000 2.1000 -2.7500 121.204 136.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.1195 61.8118 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.8207 5.0000 7.7500 151.1730 150.4280 0.0000 0.0000 151.000
+ 7 -0.9000 0.0000 2.1000 -2.7000 120.392 164.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.8582 61.9741 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 1.8207 5.0000 7.7000 151.0960 150.4810 0.0000 0.0000 151.000
+ 8 -0.9000 0.0000 2.1000 -2.6500 120.809 119.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.5965 62.1368 -2.0000 1.0000 0.0000 0.0000 150.8339 -58.3322 1.8207 5.0000 7.6500 150.9970 150.4700 0.0000 0.0000 151.000
+ 9 -0.9000 0.0000 2.1000 -2.6000 120.419 114.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.3342 62.3001 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 1.8207 5.0000 7.6000 150.9270 150.4190 0.0000 0.0000 151.000
+ 10 -0.9000 0.0000 2.1000 -2.5500 120.772 103.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0716 62.4638 -2.0000 1.0000 0.0000 0.0000 150.6225 -58.7548 1.8207 5.0000 7.5500 151.0980 150.4090 0.0000 0.0000 151.000
+ 11 -0.9000 0.0000 2.1000 -2.5000 121.217 75.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.8084 62.6281 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.8207 5.0000 7.5000 151.1370 150.4690 0.0000 0.0000 151.000
+ 12 -0.9000 0.0000 2.1000 -2.4500 120.527 87.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.5448 62.7929 -2.0000 1.0000 0.0000 0.0000 150.4066 -59.1867 1.8207 5.0000 7.4500 151.0270 150.4760 0.0000 0.0000 151.000
+ 13 -0.9000 0.0000 2.1000 -2.4000 120.493 106.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2806 62.9582 -2.0000 1.0000 0.0000 0.0000 150.2968 -59.4063 1.8207 5.0000 7.4000 150.9420 150.4340 0.0000 0.0000 151.000
+ 14 -0.9000 0.0000 2.1000 -2.3500 120.697 113.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.0160 63.1240 -2.0000 1.0000 0.0000 0.0000 150.1858 -59.6284 1.8207 5.0000 7.3500 150.9960 150.3970 0.0000 0.0000 151.000
+ 15 -0.9000 0.0000 2.1000 -2.3000 120.913 147.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.7508 63.2904 -2.0000 1.0000 0.0000 0.0000 150.0735 -59.8530 1.8207 5.0000 7.3000 151.1780 150.4540 0.0000 0.0000 151.000
+ 16 -0.9000 0.0000 2.1000 -2.2500 120.649 176.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4852 63.4574 -2.0000 1.0000 0.0000 0.0000 149.9597 -60.0802 1.8207 5.0000 7.2500 151.0640 150.4840 0.0000 0.0000 151.000
+ 17 -0.9000 0.0000 2.1000 -2.2000 120.753 186.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.2190 63.6250 -2.0000 1.0000 0.0000 0.0000 149.8449 -60.3101 1.8207 5.0000 7.2000 150.9710 150.4510 0.0000 0.0000 151.000
+ 18 -0.9000 0.0000 2.1000 -2.1500 120.683 273.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9522 63.7931 -2.0000 1.0000 0.0000 0.0000 149.7287 -60.5426 1.8207 5.0000 7.1500 150.9300 150.4030 0.0000 0.0000 151.000
+ 19 -0.9000 0.0000 2.1000 -2.1000 120.834 259.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.6849 63.9618 -2.0000 1.0000 0.0000 0.0000 149.6111 -60.7778 1.8207 5.0000 7.1000 151.1820 150.4210 0.0000 0.0000 151.000
+ 20 -0.9000 0.0000 2.1000 -2.0500 120.817 326.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.4171 64.1311 -2.0000 1.0000 0.0000 0.0000 149.4921 -61.0158 1.8207 5.0000 7.0500 151.1050 150.4740 0.0000 0.0000 151.000
+ 21 -0.9000 0.0000 2.1000 -2.0000 120.628 365.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1487 64.3010 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.8207 5.0000 7.0000 151.0000 150.4640 0.0000 0.0000 151.000
+ 22 -0.9000 0.0000 2.1000 -1.9500 120.924 404.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.8797 64.4715 -2.0000 1.0000 0.0000 0.0000 149.2498 -61.5005 1.8207 5.0000 6.9500 150.9240 150.4130 0.0000 0.0000 151.000
+ 23 -0.9000 0.0000 2.1000 -1.9000 120.543 379.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.6101 64.6427 -2.0000 1.0000 0.0000 0.0000 149.1264 -61.7472 1.8207 5.0000 6.9000 151.0950 150.3970 0.0000 0.0000 151.000
+ 24 -0.9000 0.0000 2.1000 -1.8500 120.444 373.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.3400 64.8145 -2.0000 1.0000 0.0000 0.0000 149.0015 -61.9969 1.8207 5.0000 6.8500 151.1480 150.4630 0.0000 0.0000 151.000
+ 25 -0.9000 0.0000 2.1000 -1.8000 120.683 321.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.0692 64.9870 -2.0000 1.0000 0.0000 0.0000 148.8751 -62.2498 1.8207 5.0000 6.8000 151.0330 150.4720 0.0000 0.0000 151.000
+ 26 -0.9000 0.0000 2.1000 -1.7500 120.383 266.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.7978 65.1601 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5058 1.8207 5.0000 6.7500 150.9440 150.4230 0.0000 0.0000 151.000
+ 27 -0.9000 0.0000 2.1000 -1.7000 120.471 228.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.5258 65.3339 -2.0000 1.0000 0.0000 0.0000 148.6175 -62.7649 1.8207 5.0000 6.7000 150.9850 150.3830 0.0000 0.0000 151.000
+ 28 -0.9000 0.0000 2.1000 -1.6500 120.422 222.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.2531 65.5084 -2.0000 1.0000 0.0000 0.0000 148.4863 -63.0274 1.8207 5.0000 6.6500 151.1910 150.4340 0.0000 0.0000 151.000
+ 29 -0.9000 0.0000 2.1000 -1.6000 120.307 228.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9798 65.6836 -2.0000 1.0000 0.0000 0.0000 148.3534 -63.2932 1.8207 5.0000 6.6000 151.0720 150.4670 0.0000 0.0000 151.000
+ 30 -0.9000 0.0000 2.1000 -1.5500 120.318 255.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.7059 65.8595 -2.0000 1.0000 0.0000 0.0000 148.2188 -63.5624 1.8207 5.0000 6.5500 150.9720 150.4380 0.0000 0.0000 151.000
+ 31 -0.9000 0.0000 2.1000 -1.5000 120.650 255.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.4313 66.0361 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8353 1.8207 5.0000 6.5000 150.9260 150.3900 0.0000 0.0000 151.000
+ 32 -0.9000 0.0000 2.1000 -1.4500 120.561 231.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1560 66.2135 -2.0000 1.0000 0.0000 0.0000 147.9442 -64.1115 1.8207 5.0000 6.4500 151.1870 150.4000 0.0000 0.0000 151.000
+ 33 -0.9000 0.0000 2.1000 -1.4000 120.645 214.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.8800 66.3917 -2.0000 1.0000 0.0000 0.0000 147.8042 -64.3915 1.8207 5.0000 6.4000 151.1130 150.4630 0.0000 0.0000 151.000
+ 34 -0.9000 0.0000 2.1000 -1.3500 120.845 213.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.6033 66.5706 -2.0000 1.0000 0.0000 0.0000 147.6624 -64.6752 1.8207 5.0000 6.3500 151.0040 150.4510 0.0000 0.0000 151.000
+ 35 -0.9000 0.0000 2.1000 -1.3000 120.829 196.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.3259 66.7503 -2.0000 1.0000 0.0000 0.0000 147.5186 -64.9628 1.8207 5.0000 6.3000 150.9230 150.4040 0.0000 0.0000 151.000
+ 36 -0.9000 0.0000 2.1000 -1.2500 120.932 136.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.0477 66.9308 -2.0000 1.0000 0.0000 0.0000 147.3729 -65.2542 1.8207 5.0000 6.2500 151.0940 150.3790 0.0000 0.0000 151.000
+ 37 -0.9000 0.0000 2.1000 -1.2000 120.727 90.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.7688 67.1121 -2.0000 1.0000 0.0000 0.0000 147.2251 -65.5497 1.8207 5.0000 6.2000 151.1570 150.4550 0.0000 0.0000 151.000
+ 38 -0.9000 0.0000 2.1000 -1.1500 120.109 84.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4892 67.2942 -2.0000 1.0000 0.0000 0.0000 147.0754 -65.8492 1.8207 5.0000 6.1500 151.0370 150.4610 0.0000 0.0000 151.000
+ 39 -0.9000 0.0000 2.1000 -1.1000 120.833 81.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.2088 67.4772 -2.0000 1.0000 0.0000 0.0000 146.9235 -66.1530 1.8207 5.0000 6.1000 150.9430 150.4120 0.0000 0.0000 151.000
+ 40 -0.9000 0.0000 2.1000 -1.0500 121.025 47.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9276 67.6610 -2.0000 1.0000 0.0000 0.0000 146.7694 -66.4610 1.8207 5.0000 6.0500 150.9820 150.3750 0.0000 0.0000 151.000
+ 41 -0.9000 0.0000 2.1000 -1.0000 120.736 35.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.6457 67.8457 -2.0000 1.0000 0.0000 0.0000 146.6133 -66.7735 1.8207 5.0000 6.0000 151.1970 150.4290 0.0000 0.0000 151.000
+ 42 -0.9000 0.0000 2.1000 -0.9500 120.947 33.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.3629 68.0314 -2.0000 1.0000 0.0000 0.0000 146.4548 -67.0904 1.8207 5.0000 5.9500 151.0730 150.4630 0.0000 0.0000 151.000
+ 43 -0.9000 0.0000 2.1000 -0.9000 120.550 34.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.0793 68.2179 -2.0000 1.0000 0.0000 0.0000 146.2940 -67.4120 1.8207 5.0000 5.9000 150.9700 150.4220 0.0000 0.0000 151.000
+ 44 -0.9000 0.0000 2.1000 -0.8500 120.987 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.7949 68.4053 -2.0000 1.0000 0.0000 0.0000 146.1309 -67.7382 1.8207 5.0000 5.8500 150.9270 150.3840 0.0000 0.0000 151.000
+ 45 -0.9000 0.0000 2.1000 -0.8000 120.799 28.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.5096 68.5937 -2.0000 1.0000 0.0000 0.0000 145.9653 -68.0694 1.8207 5.0000 5.8000 151.1940 150.3960 0.0000 0.0000 151.000
+ 46 -0.9000 0.0000 2.1000 -0.7500 120.531 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2235 68.7831 -2.0000 1.0000 0.0000 0.0000 145.7973 -68.4055 1.8207 5.0000 5.7500 151.1090 150.4560 0.0000 0.0000 151.000
+ 47 -0.9000 0.0000 2.1000 -0.7000 120.715 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.9365 68.9734 -2.0000 1.0000 0.0000 0.0000 145.6266 -68.7467 1.8207 5.0000 5.7000 151.0000 150.4420 0.0000 0.0000 151.000
+ 48 -0.9000 0.0000 2.1000 -0.6500 120.391 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.6486 69.1648 -2.0000 1.0000 0.0000 0.0000 145.4534 -69.0931 1.8207 5.0000 5.6500 150.9190 150.3910 0.0000 0.0000 151.000
+ 49 -0.9000 0.0000 2.1000 -0.6000 120.459 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3598 69.3572 -2.0000 1.0000 0.0000 0.0000 145.2775 -69.4449 1.8207 5.0000 5.6000 151.1180 150.3720 0.0000 0.0000 151.000
+# Sum of Counts = 7911
+# Center of Mass = -1.945734+/-0.031480
+# Full Width Half-Maximum = 1.035737+/-0.013768
+# 5:46:24 PM 6/22/2012 scan completed.
+
+5:59:06 PM 6/22/2012 Executing "scantitle "Dispersion G-L transverse (-102) 150K""
+
+Setting the scantitle to:
+Dispersion G-L transverse (-102) 150K
+
+
+5:59:06 PM 6/22/2012 Executing "scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 2.0"
+
+
+# scan = 39
+# date = 6/22/2012
+# time = 5:59:06 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 2.0
+# builtin_command = scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) 150K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.8000 0.0000 2.2000 -6.0000 120.544 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.9378 48.7423 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.7324 5.0000 11.0000 150.9310 150.4030 0.0000 0.0000 151.000
+ 2 -0.8000 0.0000 2.2000 -5.9000 120.401 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.4239 49.0279 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 1.7324 5.0000 10.9000 151.0240 150.3640 0.0000 0.0000 151.000
+ 3 -0.8000 0.0000 2.2000 -5.8000 121.044 19.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.9099 49.3138 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 1.7324 5.0000 10.8000 151.1880 150.4260 0.0000 0.0000 151.000
+ 4 -0.8000 0.0000 2.2000 -5.7000 119.813 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.3956 49.6000 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 1.7324 5.0000 10.7000 151.0580 150.4510 0.0000 0.0000 151.000
+ 5 -0.8000 0.0000 2.2000 -5.6000 121.363 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.8812 49.8867 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 1.7324 5.0000 10.6000 150.9580 150.4180 0.0000 0.0000 151.000
+ 6 -0.8000 0.0000 2.2000 -5.5000 120.627 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.3666 50.1738 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.7324 5.0000 10.5000 150.9420 150.3650 0.0000 0.0000 151.000
+ 7 -0.8000 0.0000 2.2000 -5.4000 121.043 32.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.8516 50.4613 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 1.7324 5.0000 10.4000 151.2120 150.4030 0.0000 0.0000 151.000
+ 8 -0.8000 0.0000 2.2000 -5.3000 120.990 38.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.3362 50.7493 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 1.7324 5.0000 10.3000 151.0970 150.4630 0.0000 0.0000 151.000
+ 9 -0.8000 0.0000 2.2000 -5.2000 121.000 52.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.8206 51.0378 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9284 1.7324 5.0000 10.2000 150.9870 150.4400 0.0000 0.0000 151.000
+ 10 -0.8000 0.0000 2.2000 -5.1000 120.689 54.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.3044 51.3268 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1920 1.7324 5.0000 10.1000 150.9160 150.3880 0.0000 0.0000 151.000
+ 11 -0.8000 0.0000 2.2000 -5.0000 120.539 43.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.7878 51.6165 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.7324 5.0000 10.0000 151.1660 150.3800 0.0000 0.0000 151.000
+ 12 -0.8000 0.0000 2.2000 -4.9000 120.770 36.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.2707 51.9067 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7319 1.7324 5.0000 9.9000 151.1350 150.4530 0.0000 0.0000 151.000
+ 13 -0.8000 0.0000 2.2000 -4.8000 121.082 24.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.7530 52.1976 -2.0000 1.0000 0.0000 0.0000 154.4957 -51.0086 1.7324 5.0000 9.8000 151.0170 150.4410 0.0000 0.0000 151.000
+ 14 -0.8000 0.0000 2.2000 -4.7000 120.287 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.2348 52.4891 -2.0000 1.0000 0.0000 0.0000 154.3551 -51.2898 1.7324 5.0000 9.7000 150.9250 150.3970 0.0000 0.0000 151.000
+ 15 -0.8000 0.0000 2.2000 -4.6000 121.136 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.7159 52.7813 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 1.7324 5.0000 9.6000 151.0620 150.3620 0.0000 0.0000 151.000
+ 16 -0.8000 0.0000 2.2000 -4.5000 121.355 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.1963 53.0743 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.7324 5.0000 9.5000 151.1770 150.4400 0.0000 0.0000 151.000
+ 17 -0.8000 0.0000 2.2000 -4.4000 121.046 14.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.6759 53.3680 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 1.7324 5.0000 9.4000 151.0490 150.4530 0.0000 0.0000 151.000
+ 18 -0.8000 0.0000 2.2000 -4.3000 120.675 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.1548 53.6625 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4634 1.7324 5.0000 9.3000 150.9490 150.4120 0.0000 0.0000 151.000
+ 19 -0.8000 0.0000 2.2000 -4.2000 121.277 29.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.6328 53.9579 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 1.7324 5.0000 9.2000 150.9640 150.3630 0.0000 0.0000 151.000
+ 20 -0.8000 0.0000 2.2000 -4.1000 120.727 36.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.1100 54.2541 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 1.7324 5.0000 9.1000 151.2130 150.4190 0.0000 0.0000 151.000
+ 21 -0.8000 0.0000 2.2000 -4.0000 121.477 59.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.5863 54.5513 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.7324 5.0000 9.0000 151.0870 150.4550 0.0000 0.0000 151.000
+ 22 -0.8000 0.0000 2.2000 -3.9000 120.860 81.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.0616 54.8494 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 1.7324 5.0000 8.9000 150.9780 150.4280 0.0000 0.0000 151.000
+ 23 -0.8000 0.0000 2.2000 -3.8000 120.901 95.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.5358 55.1484 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0507 1.7324 5.0000 8.8000 150.9170 150.3720 0.0000 0.0000 151.000
+ 24 -0.8000 0.0000 2.2000 -3.7000 120.700 122.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.0090 55.4486 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 1.7324 5.0000 8.7000 151.1940 150.3810 0.0000 0.0000 151.000
+ 25 -0.8000 0.0000 2.2000 -3.6000 120.963 127.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.4810 55.7497 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 1.7324 5.0000 8.6000 151.1300 150.4480 0.0000 0.0000 151.000
+ 26 -0.8000 0.0000 2.2000 -3.5000 120.424 144.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.9519 56.0520 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.7324 5.0000 8.5000 151.0120 150.4430 0.0000 0.0000 151.000
+ 27 -0.8000 0.0000 2.2000 -3.4000 120.983 97.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.4215 56.3554 -2.0000 1.0000 0.0000 0.0000 152.2846 -55.4305 1.7324 5.0000 8.4000 150.9220 150.3900 0.0000 0.0000 151.000
+ 28 -0.8000 0.0000 2.2000 -3.3000 120.784 61.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.8899 56.6600 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7924 1.7324 5.0000 8.3000 151.0850 150.3560 0.0000 0.0000 151.000
+ 29 -0.8000 0.0000 2.2000 -3.2000 121.069 37.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.3569 56.9659 -2.0000 1.0000 0.0000 0.0000 151.9193 -56.1615 1.7324 5.0000 8.2000 151.1740 150.4430 0.0000 0.0000 151.000
+ 30 -0.8000 0.0000 2.2000 -3.1000 121.083 44.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.8225 57.2731 -2.0000 1.0000 0.0000 0.0000 151.7310 -56.5380 1.7324 5.0000 8.1000 151.0440 150.4510 0.0000 0.0000 151.000
+ 31 -0.8000 0.0000 2.2000 -3.0000 121.292 32.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.2867 57.5816 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9224 1.7324 5.0000 8.0000 150.9440 150.4070 0.0000 0.0000 151.000
+ 32 -0.8000 0.0000 2.2000 -2.9000 120.660 31.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.7493 57.8914 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 1.7324 5.0000 7.9000 150.9760 150.3530 0.0000 0.0000 151.000
+ 33 -0.8000 0.0000 2.2000 -2.8000 120.908 31.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2104 58.2027 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 1.7324 5.0000 7.8000 151.2080 150.4140 0.0000 0.0000 151.000
+ 34 -0.8000 0.0000 2.2000 -2.7000 120.966 29.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.6698 58.5155 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 1.7324 5.0000 7.7000 151.0790 150.4490 0.0000 0.0000 151.000
+ 35 -0.8000 0.0000 2.2000 -2.6000 120.724 28.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.1276 58.8298 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 1.7324 5.0000 7.6000 150.9710 150.4250 0.0000 0.0000 151.000
+ 36 -0.8000 0.0000 2.2000 -2.5000 120.946 19.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5835 59.1458 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9696 1.7324 5.0000 7.5000 150.9220 150.3710 0.0000 0.0000 151.000
+ 37 -0.8000 0.0000 2.2000 -2.4000 121.132 13.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.0376 59.4634 -2.0000 1.0000 0.0000 0.0000 150.2968 -59.4063 1.7324 5.0000 7.4000 151.2070 150.3880 0.0000 0.0000 151.000
+ 38 -0.8000 0.0000 2.2000 -2.3000 121.286 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.4899 59.7827 -2.0000 1.0000 0.0000 0.0000 150.0734 -59.8530 1.7324 5.0000 7.3000 151.1160 150.4540 0.0000 0.0000 151.000
+ 39 -0.8000 0.0000 2.2000 -2.2000 121.165 13.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.9401 60.1038 -2.0000 1.0000 0.0000 0.0000 149.8448 -60.3101 1.7324 5.0000 7.2000 151.0000 150.4350 0.0000 0.0000 151.000
+ 40 -0.8000 0.0000 2.2000 -2.1000 120.558 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.3884 60.4267 -2.0000 1.0000 0.0000 0.0000 149.6111 -60.7778 1.7324 5.0000 7.1000 150.9160 150.3780 0.0000 0.0000 151.000
+ 41 -0.8000 0.0000 2.2000 -2.0000 121.017 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.8344 60.7515 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.7324 5.0000 7.0000 151.1370 150.3710 0.0000 0.0000 151.000
+# Sum of Counts = 1624
+# Center of Mass = -3.951355+/-0.140501
+# Full Width Half-Maximum = 1.824516+/-0.058964
+# 7:23:43 PM 6/22/2012 scan completed.
+
+7:23:43 PM 6/22/2012 Executing "scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0"
+
+
+# scan = 40
+# date = 6/22/2012
+# time = 7:23:43 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Dispersion G-L transverse (-102) 150K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 121.331 8.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.5005 40.2118 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 1.6566 5.0000 13.0000 151.1330 150.4470 0.0000 0.0000 151.000
+ 2 -0.7000 0.0000 2.3000 -7.9000 121.162 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.9506 40.5013 -2.0000 1.0000 0.0000 0.0000 157.9576 -44.0848 1.6566 5.0000 12.9000 151.0130 150.4440 0.0000 0.0000 151.000
+ 3 -0.7000 0.0000 2.3000 -7.7999 121.583 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.4019 40.7903 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2659 1.6566 5.0000 12.7999 150.9230 150.3860 0.0000 0.0000 151.000
+ 4 -0.7000 0.0000 2.3000 -7.7000 121.004 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.8543 41.0788 -2.0000 1.0000 0.0000 0.0000 157.7754 -44.4490 1.6566 5.0000 12.7000 151.0790 150.3590 0.0000 0.0000 151.000
+ 5 -0.7000 0.0000 2.3000 -7.6000 120.965 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.3077 41.3670 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 1.6566 5.0000 12.6000 151.1710 150.4300 0.0000 0.0000 151.000
+ 6 -0.7000 0.0000 2.3000 -7.5000 121.197 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.7620 41.6548 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.6566 5.0000 12.5000 151.0430 150.4440 0.0000 0.0000 151.000
+ 7 -0.7000 0.0000 2.3000 -7.4000 121.169 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.2172 41.9422 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 1.6566 5.0000 12.4000 150.9430 150.3990 0.0000 0.0000 151.000
+ 8 -0.7000 0.0000 2.3000 -7.3000 121.519 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.6733 42.2292 -2.0000 1.0000 0.0000 0.0000 157.3974 -45.2052 1.6566 5.0000 12.3000 150.9760 150.3490 0.0000 0.0000 151.000
+ 9 -0.7000 0.0000 2.3000 -7.2000 121.055 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.1302 42.5160 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 1.6566 5.0000 12.2000 151.2070 150.4120 0.0000 0.0000 151.000
+ 10 -0.7000 0.0000 2.3000 -7.1000 120.868 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.5878 42.8025 -2.0000 1.0000 0.0000 0.0000 157.2009 -45.5982 1.6566 5.0000 12.1000 151.0770 150.4480 0.0000 0.0000 151.000
+ 11 -0.7000 0.0000 2.3000 -7.0000 121.062 24.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.0460 43.0888 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.6566 5.0000 12.0000 150.9690 150.4160 0.0000 0.0000 151.000
+ 12 -0.7000 0.0000 2.3000 -6.9000 121.941 21.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -47.5050 43.3749 -2.0000 1.0000 0.0000 0.0000 156.9992 -46.0016 1.6566 5.0000 11.9000 150.9230 150.3580 0.0000 0.0000 151.000
+ 13 -0.7000 0.0000 2.3000 -6.8000 121.928 13.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.9645 43.6608 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 1.6566 5.0000 11.8000 151.2110 150.3790 0.0000 0.0000 151.000
+ 14 -0.7000 0.0000 2.3000 -6.7000 121.216 14.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.4245 43.9466 -2.0000 1.0000 0.0000 0.0000 156.7921 -46.4158 1.6566 5.0000 11.7000 151.1170 150.4280 0.0000 0.0000 151.000
+ 15 -0.7000 0.0000 2.3000 -6.6000 121.707 21.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.8850 44.2322 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 1.6566 5.0000 11.6000 150.9980 150.4190 0.0000 0.0000 151.000
+ 16 -0.7000 0.0000 2.3000 -6.5000 121.426 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.3460 44.5177 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.6566 5.0000 11.5000 150.9120 150.3640 0.0000 0.0000 151.000
+ 17 -0.7000 0.0000 2.3000 -6.4000 121.167 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.8073 44.8032 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 1.6566 5.0000 11.4000 151.1540 150.3560 0.0000 0.0000 151.000
+ 18 -0.7000 0.0000 2.3000 -6.3000 121.653 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.2690 45.0886 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 1.6566 5.0000 11.3000 151.1190 150.4230 0.0000 0.0000 151.000
+ 19 -0.7000 0.0000 2.3000 -6.2000 121.284 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7310 45.3740 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 1.6566 5.0000 11.2000 151.0320 150.4450 0.0000 0.0000 151.000
+ 20 -0.7000 0.0000 2.3000 -6.1000 120.940 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.1932 45.6595 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 1.6566 5.0000 11.1000 150.9340 150.3790 0.0000 0.0000 151.000
+ 21 -0.7000 0.0000 2.3000 -6.0000 121.771 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.6556 45.9450 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.6566 5.0000 11.0000 151.0150 150.3420 0.0000 0.0000 151.000
+ 22 -0.7000 0.0000 2.3000 -5.9000 121.675 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1182 46.2305 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 1.6566 5.0000 10.9000 151.2030 150.4130 0.0000 0.0000 151.000
+ 23 -0.7000 0.0000 2.3000 -5.8000 121.663 10.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.5808 46.5162 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4299 1.6566 5.0000 10.8000 151.0670 150.4440 0.0000 0.0000 151.000
+ 24 -0.7000 0.0000 2.3000 -5.7000 122.014 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.0436 46.8020 -2.0000 1.0000 0.0000 0.0000 155.6648 -48.6702 1.6566 5.0000 10.7000 150.9620 150.3980 0.0000 0.0000 151.000
+ 25 -0.7000 0.0000 2.3000 -5.6000 122.497 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5063 47.0879 -2.0000 1.0000 0.0000 0.0000 155.5428 -48.9142 1.6566 5.0000 10.6000 150.9320 150.3440 0.0000 0.0000 151.000
+ 26 -0.7000 0.0000 2.3000 -5.5000 121.403 33.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.9690 47.3741 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.6566 5.0000 10.5000 151.2230 150.3900 0.0000 0.0000 151.000
+ 27 -0.7000 0.0000 2.3000 -5.4000 121.486 34.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.4316 47.6604 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 1.6566 5.0000 10.4000 151.1060 150.4420 0.0000 0.0000 151.000
+ 28 -0.7000 0.0000 2.3000 -5.3000 121.975 54.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.8940 47.9470 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 1.6566 5.0000 10.3000 150.9910 150.4220 0.0000 0.0000 151.000
+ 29 -0.7000 0.0000 2.3000 -5.2000 121.384 72.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.3563 48.2339 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 1.6566 5.0000 10.2000 150.9150 150.3660 0.0000 0.0000 151.000
+ 30 -0.7000 0.0000 2.3000 -5.1000 122.142 74.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.8184 48.5210 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1919 1.6566 5.0000 10.1000 151.1630 150.3590 0.0000 0.0000 151.000
+ 31 -0.7000 0.0000 2.3000 -5.0000 121.570 55.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.2801 48.8085 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.6566 5.0000 10.0000 151.1390 150.4400 0.0000 0.0000 151.000
+ 32 -0.7000 0.0000 2.3000 -4.9000 121.430 35.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.7416 49.0964 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7319 1.6566 5.0000 9.9000 151.0170 150.4320 0.0000 0.0000 151.000
+ 33 -0.7000 0.0000 2.3000 -4.8000 121.504 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.2026 49.3846 -2.0000 1.0000 0.0000 0.0000 154.4957 -51.0086 1.6566 5.0000 9.8000 150.9220 150.3820 0.0000 0.0000 151.000
+ 34 -0.7000 0.0000 2.3000 -4.7000 120.717 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.6633 49.6733 -2.0000 1.0000 0.0000 0.0000 154.3551 -51.2898 1.6566 5.0000 9.7000 151.0700 150.3510 0.0000 0.0000 151.000
+ 35 -0.7000 0.0000 2.3000 -4.6000 121.342 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.1234 49.9624 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 1.6566 5.0000 9.6000 151.1830 150.4260 0.0000 0.0000 151.000
+ 36 -0.7000 0.0000 2.3000 -4.5000 121.394 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.5831 50.2520 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.6566 5.0000 9.5000 151.0530 150.4400 0.0000 0.0000 151.000
+ 37 -0.7000 0.0000 2.3000 -4.4000 120.947 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.0422 50.5421 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 1.6566 5.0000 9.4000 150.9490 150.3960 0.0000 0.0000 151.000
+ 38 -0.7000 0.0000 2.3000 -4.3000 120.880 18.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.5006 50.8327 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4633 1.6566 5.0000 9.3000 150.9630 150.3460 0.0000 0.0000 151.000
+ 39 -0.7000 0.0000 2.3000 -4.2000 121.400 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.9584 51.1240 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 1.6566 5.0000 9.2000 151.2190 150.4050 0.0000 0.0000 151.000
+ 40 -0.7000 0.0000 2.3000 -4.1000 121.669 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.4155 51.4158 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 1.6566 5.0000 9.1000 151.0900 150.4440 0.0000 0.0000 151.000
+ 41 -0.7000 0.0000 2.3000 -4.0000 121.649 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.8718 51.7082 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.6566 5.0000 9.0000 150.9760 150.4230 0.0000 0.0000 151.000
+ 42 -0.7000 0.0000 2.3000 -3.9000 121.156 5.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.3272 52.0014 -2.0000 1.0000 0.0000 0.0000 153.1391 -53.7217 1.6566 5.0000 8.9000 150.9160 150.3550 0.0000 0.0000 151.000
+ 43 -0.7000 0.0000 2.3000 -3.8000 121.167 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.7818 52.2953 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0507 1.6566 5.0000 8.8000 151.2050 150.3770 0.0000 0.0000 151.000
+ 44 -0.7000 0.0000 2.3000 -3.7000 121.387 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.2355 52.5899 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 1.6566 5.0000 8.7000 151.1250 150.4450 0.0000 0.0000 151.000
+ 45 -0.7000 0.0000 2.3000 -3.6000 121.084 3.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.6881 52.8852 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 1.6566 5.0000 8.6000 151.0070 150.4190 0.0000 0.0000 151.000
+ 46 -0.7000 0.0000 2.3000 -3.5000 120.781 8.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.1398 53.1814 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.6566 5.0000 8.5000 150.9170 150.3770 0.0000 0.0000 151.000
+# Sum of Counts = 841
+# Center of Mass = -5.614624+/-0.276252
+# Full Width Half-Maximum = 2.128952+/-0.104094
+# 8:58:55 PM 6/22/2012 scan completed.
+
+9:17:16 PM 6/22/2012 Executing "method temp set_setpoint d 225.000000"
+ Derived from " set_temp 225"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+9:21:22 PM 6/22/2012 Executing "method temp set_setpoint d 150.000000"
+ Derived from " set_temp 150"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+9:27:39 PM 6/22/2012 Executing "method temp set_setpoint d 225.000000"
+ Derived from " set_temp 225"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+9:43:34 PM 6/22/2012 Executing "scantitle "LA at X (1.5, 0, 0), 225K""
+
+Setting the scantitle to:
+LA at X (1.5, 0, 0), 225K
+
+
+9:44:16 PM 6/22/2012 Executing "scan h 1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1"
+
+
+# scan = 41
+# date = 6/22/2012
+# time = 9:44:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1
+# builtin_command = scan h 1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (1.5, 0, 0), 225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.2551 0.0000 4.4443 -5.2500 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.2079 76.3732 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 2.3941 5.0000 10.2500 225.4450 222.4680 0.0000 0.0000 225.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 9:44:41 PM 6/22/2012 scan stopped!!
+
+Abort issued!!
+
+9:54:51 PM 6/22/2012 Executing "scantitle "TO at G (101), 225K""
+
+Setting the scantitle to:
+TO at G (101), 225K
+
+
+9:55:36 PM 6/22/2012 Executing "scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 8.0"
+
+
+# scan = 42
+# date = 6/22/2012
+# time = 9:55:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 8.0
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 8.0
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (101), 225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 484.509 49.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.6310 27.3666 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.6853 5.0000 17.5000 224.6370 223.0790 0.0000 0.0000 225.000
+ 2 1.0000 0.0000 1.0000 -12.2500 485.393 42.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 37.2786 28.2324 -2.0000 1.0000 0.0000 0.0000 161.0619 -37.8757 1.6853 5.0000 17.2500 224.6410 223.2930 0.0000 0.0000 225.000
+ 3 1.0000 0.0000 1.0000 -12.0000 485.498 32.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 38.8926 29.0811 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.6853 5.0000 17.0000 224.7110 223.4670 0.0000 0.0000 225.000
+ 4 1.0000 0.0000 1.0000 -11.7500 484.730 47.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 40.4761 29.9144 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.6853 5.0000 16.7500 224.7760 223.6070 0.0000 0.0000 225.000
+ 5 1.0000 0.0000 1.0000 -11.5000 485.277 50.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 42.0320 30.7338 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.6853 5.0000 16.5000 224.8370 223.7080 0.0000 0.0000 225.000
+ 6 1.0000 0.0000 1.0000 -11.2500 484.850 49.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 43.5627 31.5406 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.6853 5.0000 16.2500 224.9070 223.7960 0.0000 0.0000 225.000
+ 7 1.0000 0.0000 1.0000 -10.9999 483.859 62.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 45.0706 32.3359 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3862 1.6853 5.0000 15.9999 224.9810 223.8680 0.0000 0.0000 225.000
+ 8 1.0000 0.0000 1.0000 -10.7500 485.058 61.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 46.5574 33.1208 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.6853 5.0000 15.7500 225.0530 223.9340 0.0000 0.0000 225.000
+ 9 1.0000 0.0000 1.0000 -10.5000 485.290 69.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 48.0252 33.8962 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 1.6853 5.0000 15.5000 225.1270 223.9910 0.0000 0.0000 225.000
+ 10 1.0000 0.0000 1.0000 -10.2500 483.801 83.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 49.4755 34.6632 -2.0000 1.0000 0.0000 0.0000 159.8078 -40.3841 1.6853 5.0000 15.2500 225.1960 224.0340 0.0000 0.0000 225.000
+ 11 1.0000 0.0000 1.0000 -10.0000 483.829 95.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.9098 35.4223 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 1.6853 5.0000 15.0000 225.2780 224.0720 0.0000 0.0000 225.000
+ 12 1.0000 0.0000 1.0000 -9.7500 483.970 89.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 52.3296 36.1745 -2.0000 1.0000 0.0000 0.0000 159.4533 -41.0932 1.6853 5.0000 14.7500 225.3590 224.0950 0.0000 0.0000 225.000
+ 13 1.0000 0.0000 1.0000 -9.5000 484.982 119.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 53.7361 36.9203 -2.0000 1.0000 0.0000 0.0000 159.2690 -41.4622 1.6853 5.0000 14.5000 225.4470 224.1160 0.0000 0.0000 225.000
+ 14 1.0000 0.0000 1.0000 -9.2500 484.300 130.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 55.1305 37.6604 -2.0000 1.0000 0.0000 0.0000 159.0794 -41.8412 1.6853 5.0000 14.2500 225.5250 224.1290 0.0000 0.0000 225.000
+ 15 1.0000 0.0000 1.0000 -9.0000 483.962 136.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 56.5139 38.3955 -2.0000 1.0000 0.0000 0.0000 158.8846 -42.2308 1.6853 5.0000 14.0000 225.6080 224.1250 0.0000 0.0000 225.000
+ 16 1.0000 0.0000 1.0000 -8.7500 483.766 138.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 57.8874 39.1260 -2.0000 1.0000 0.0000 0.0000 158.6842 -42.6316 1.6853 5.0000 13.7500 225.6970 224.1120 0.0000 0.0000 225.000
+ 17 1.0000 0.0000 1.0000 -8.5000 481.550 55.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 59.2518 39.8526 -2.0000 1.0000 0.0000 0.0000 158.4780 -43.0440 1.6853 5.0000 13.5000 225.7860 224.0900 0.0000 0.0000 225.000
+ 18 1.0000 0.0000 1.0000 -8.2500 483.298 55.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 60.6083 40.5758 -2.0000 1.0000 0.0000 0.0000 158.2657 -43.4686 1.6853 5.0000 13.2500 225.8830 224.0400 0.0000 0.0000 225.000
+ 19 1.0000 0.0000 1.0000 -7.9999 483.256 36.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.9577 41.2960 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9062 1.6853 5.0000 12.9999 225.9510 223.9980 0.0000 0.0000 225.000
+ 20 1.0000 0.0000 1.0000 -7.7500 484.914 43.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.3008 42.0137 -2.0000 1.0000 0.0000 0.0000 157.8214 -44.3571 1.6853 5.0000 12.7500 225.9520 223.9360 0.0000 0.0000 225.000
+ 21 1.0000 0.0000 1.0000 -7.5000 484.150 38.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.6383 42.7294 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8224 1.6853 5.0000 12.5000 225.8320 223.8950 0.0000 0.0000 225.000
+ 22 1.0000 0.0000 1.0000 -7.2500 485.235 33.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.9712 43.4436 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.6853 5.0000 12.2500 225.8700 224.0130 0.0000 0.0000 225.000
+# Sum of Counts = 1511
+# Center of Mass = -9.762733+/-0.356793
+# Full Width Half-Maximum = 2.630858+/-0.149418
+# 12:56:19 AM 6/23/2012 scan completed.
+
+12:56:19 AM 6/23/2012 Executing "scantitle "LA at L (1.5, 0, 1.5), T=225K""
+
+Setting the scantitle to:
+LA at L (1.5, 0, 1.5), T=225K
+
+
+12:56:19 AM 6/23/2012 Executing "scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3"
+
+
+# scan = 43
+# date = 6/23/2012
+# time = 12:56:19 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5, 0, 1.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 3.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 182.012 19.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.2458 72.2344 -2.0000 1.0000 0.0000 0.0000 158.2225 -43.5551 2.5280 5.0000 13.2000 225.8300 224.0440 0.0000 0.0000 225.000
+ 2 1.5000 0.0000 1.5000 -8.0000 181.623 18.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.9880 72.8390 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 2.5280 5.0000 13.0000 225.1080 224.0940 0.0000 0.0000 225.000
+ 3 1.5000 0.0000 1.5000 -7.8000 182.627 35.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.7335 73.4499 -2.0000 1.0000 0.0000 0.0000 157.8670 -44.2658 2.5280 5.0000 12.8000 224.9060 223.7950 0.0000 0.0000 225.000
+ 4 1.5000 0.0000 1.5000 -7.6000 182.179 51.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.4824 74.0674 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 2.5280 5.0000 12.6000 225.6180 224.1160 0.0000 0.0000 225.000
+ 5 1.5000 0.0000 1.5000 -7.4000 182.832 78.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.2349 74.6918 -2.0000 1.0000 0.0000 0.0000 157.4936 -45.0126 2.5280 5.0000 12.4000 224.9610 224.0290 0.0000 0.0000 225.000
+ 6 1.5000 0.0000 1.5000 -7.2000 182.299 102.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.9913 75.3234 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 2.5280 5.0000 12.2000 225.5230 223.8150 0.0000 0.0000 225.000
+ 7 1.5000 0.0000 1.5000 -7.0000 181.396 88.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.7517 75.9626 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 2.5280 5.0000 12.0000 225.4120 224.1410 0.0000 0.0000 225.000
+ 8 1.5000 0.0000 1.5000 -6.8000 182.073 60.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.5163 76.6096 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 2.5280 5.0000 11.8000 224.8240 223.9450 0.0000 0.0000 225.000
+ 9 1.5000 0.0000 1.5000 -6.6000 181.834 43.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.2853 77.2650 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 2.5280 5.0000 11.6000 225.9200 223.9440 0.0000 0.0000 225.000
+ 10 1.5000 0.0000 1.5000 -6.4000 181.711 28.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.0590 77.9292 -2.0000 1.0000 0.0000 0.0000 156.4705 -47.0589 2.5280 5.0000 11.4000 225.2420 224.1300 0.0000 0.0000 225.000
+ 11 1.5000 0.0000 1.5000 -6.2000 181.154 35.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.8375 78.6024 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.5280 5.0000 11.2000 224.7470 223.8740 0.0000 0.0000 225.000
+ 12 1.5000 0.0000 1.5000 -6.0000 181.216 23.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.6211 79.2852 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.5280 5.0000 11.0000 225.7970 224.0490 0.0000 0.0000 225.000
+ 13 1.5000 0.0000 1.5000 -5.8000 181.456 15.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 100.4102 79.9780 -2.0000 1.0000 0.0000 0.0000 155.7850 -48.4298 2.5280 5.0000 10.8000 225.0950 224.0910 0.0000 0.0000 225.000
+ 14 1.5000 0.0000 1.5000 -5.6000 181.420 16.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 101.2048 80.6814 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.5280 5.0000 10.6000 224.9240 223.8100 0.0000 0.0000 225.000
+# Sum of Counts = 611
+# Center of Mass = -7.022259+/-0.402497
+# Full Width Half-Maximum = 1.200374+/-0.185313
+# 1:39:49 AM 6/23/2012 scan completed.
+
+1:39:49 AM 6/23/2012 Executing "scantitle "LA at X (-1.5, 0, 0), T=225K""
+
+Setting the scantitle to:
+LA at X (-1.5, 0, 0), T=225K
+
+
+1:39:49 AM 6/23/2012 Executing "scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5"
+
+
+# scan = 44
+# date = 6/23/2012
+# time = 1:39:49 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+# builtin_command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (-1.5, 0, 0), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -5.2500 90.962 6.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.8256 76.5870 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 2.3993 5.0000 10.2500 225.2830 224.1480 0.0000 0.0000 225.000
+ 2 -1.5000 0.0000 0.0000 -5.0000 90.731 15.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -61.7926 77.4569 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.3993 5.0000 10.0000 224.9830 224.0520 0.0000 0.0000 225.000
+ 3 -1.5000 0.0000 0.0000 -4.7500 90.846 42.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7502 78.3439 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 2.3993 5.0000 9.7500 224.7510 223.8920 0.0000 0.0000 225.000
+ 4 -1.5000 0.0000 0.0000 -4.5000 90.316 86.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.6976 79.2490 -2.0000 1.0000 0.0000 0.0000 154.0666 -51.8666 2.3993 5.0000 9.5000 225.4400 223.8250 0.0000 0.0000 225.000
+ 5 -1.5000 0.0000 0.0000 -4.2500 90.283 171.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.6344 80.1735 -2.0000 1.0000 0.0000 0.0000 153.6919 -52.6158 2.3993 5.0000 9.2500 225.8200 224.0470 0.0000 0.0000 225.000
+ 6 -1.5000 0.0000 0.0000 -4.0000 90.083 235.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.5598 81.1188 -2.0000 1.0000 0.0000 0.0000 153.3006 -53.3986 2.3993 5.0000 9.0000 225.4290 224.1510 0.0000 0.0000 225.000
+ 7 -1.5000 0.0000 0.0000 -3.7500 90.559 207.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.4730 82.0866 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 2.3993 5.0000 8.7500 225.1080 224.1050 0.0000 0.0000 225.000
+ 8 -1.5000 0.0000 0.0000 -3.5000 90.868 68.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -55.3731 83.0783 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.3993 5.0000 8.5000 224.8380 223.9750 0.0000 0.0000 225.000
+ 9 -1.5000 0.0000 0.0000 -3.2500 90.622 25.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.2594 84.0960 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 2.3993 5.0000 8.2500 224.9120 223.8170 0.0000 0.0000 225.000
+ 10 -1.5000 0.0000 0.0000 -3.0000 90.504 17.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.1307 85.1416 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.3993 5.0000 8.0000 225.9000 223.9410 0.0000 0.0000 225.000
+ 11 -1.5000 0.0000 0.0000 -2.7500 90.737 14.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.9860 86.2176 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9188 2.3993 5.0000 7.7500 225.5860 224.1390 0.0000 0.0000 225.000
+ 12 -1.5000 0.0000 0.0000 -2.5000 91.155 7.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.8242 87.3264 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.3993 5.0000 7.5000 225.2270 224.1400 0.0000 0.0000 225.000
+# Sum of Counts = 893
+# Center of Mass = -3.989082+/-0.189375
+# Full Width Half-Maximum = 0.894693+/-0.099896
+# 1:59:53 AM 6/23/2012 scan completed.
+
+1:59:53 AM 6/23/2012 Executing "scantitle "LA + TA at T (-1,0,3.5), T=225K""
+
+Setting the scantitle to:
+LA + TA at T (-1,0,3.5), T=225K
+
+
+1:59:53 AM 6/23/2012 Executing "scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5"
+
+
+# scan = 45
+# date = 6/23/2012
+# time = 1:59:53 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA at T (-1,0,3.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.7000 90.690 17.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.4136 67.8300 -2.0000 1.0000 0.0000 0.0000 158.6434 -42.7131 2.4515 5.0000 13.7000 224.8860 223.9950 0.0000 0.0000 225.000
+ 2 -1.0000 0.0000 3.5000 -8.6000 90.788 13.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.0395 68.1192 -2.0000 1.0000 0.0000 0.0000 158.5612 -42.8776 2.4515 5.0000 13.6000 224.7950 223.8390 0.0000 0.0000 225.000
+ 3 -1.0000 0.0000 3.5000 -8.5000 90.371 18.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.6648 68.4096 -2.0000 1.0000 0.0000 0.0000 158.4780 -43.0440 2.4515 5.0000 13.5000 225.8170 223.8900 0.0000 0.0000 225.000
+ 4 -1.0000 0.0000 3.5000 -8.4000 90.789 12.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.2895 68.7013 -2.0000 1.0000 0.0000 0.0000 158.3937 -43.2123 2.4515 5.0000 13.4000 225.6710 224.1010 0.0000 0.0000 225.000
+ 5 -1.0000 0.0000 3.5000 -8.3000 90.464 22.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9136 68.9942 -2.0000 1.0000 0.0000 0.0000 158.3086 -43.3827 2.4515 5.0000 13.3000 225.3030 224.1600 0.0000 0.0000 225.000
+ 6 -1.0000 0.0000 3.5000 -8.2000 90.618 25.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5369 69.2885 -2.0000 1.0000 0.0000 0.0000 158.2225 -43.5551 2.4515 5.0000 13.2000 225.0020 224.0660 0.0000 0.0000 225.000
+ 7 -1.0000 0.0000 3.5000 -8.1000 90.270 40.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1596 69.5841 -2.0000 1.0000 0.0000 0.0000 158.1352 -43.7295 2.4515 5.0000 13.1000 224.7630 223.9050 0.0000 0.0000 225.000
+ 8 -1.0000 0.0000 3.5000 -8.0000 90.783 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7815 69.8811 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 2.4515 5.0000 13.0000 225.2980 223.8170 0.0000 0.0000 225.000
+ 9 -1.0000 0.0000 3.5000 -7.9000 90.815 52.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.4027 70.1795 -2.0000 1.0000 0.0000 0.0000 157.9574 -44.0848 2.4515 5.0000 12.9000 225.8390 224.0350 0.0000 0.0000 225.000
+ 10 -1.0000 0.0000 3.5000 -7.8000 90.351 42.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.0231 70.4794 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 2.4515 5.0000 12.8000 225.4580 224.1480 0.0000 0.0000 225.000
+ 11 -1.0000 0.0000 3.5000 -7.7000 90.196 57.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.6428 70.7807 -2.0000 1.0000 0.0000 0.0000 157.7755 -44.4490 2.4516 5.0000 12.7000 225.1300 224.1160 0.0000 0.0000 225.000
+ 12 -1.0000 0.0000 3.5000 -7.6000 90.279 59.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.2617 71.0836 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 2.4515 5.0000 12.6000 224.8610 223.9760 0.0000 0.0000 225.000
+ 13 -1.0000 0.0000 3.5000 -7.5000 90.314 55.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.8797 71.3880 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 2.4515 5.0000 12.5000 224.8390 223.8340 0.0000 0.0000 225.000
+ 14 -1.0000 0.0000 3.5000 -7.4000 90.701 75.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.4969 71.6940 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 2.4515 5.0000 12.4000 225.8710 223.9430 0.0000 0.0000 225.000
+ 15 -1.0000 0.0000 3.5000 -7.3000 90.663 70.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1133 72.0016 -2.0000 1.0000 0.0000 0.0000 157.3974 -45.2052 2.4515 5.0000 12.3000 225.6350 224.1180 0.0000 0.0000 225.000
+ 16 -1.0000 0.0000 3.5000 -7.2000 90.624 67.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.7287 72.3108 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 2.4515 5.0000 12.2000 225.2730 224.1510 0.0000 0.0000 225.000
+ 17 -1.0000 0.0000 3.5000 -7.1000 90.536 52.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.3433 72.6218 -2.0000 1.0000 0.0000 0.0000 157.2009 -45.5982 2.4515 5.0000 12.1000 224.9780 224.0670 0.0000 0.0000 225.000
+ 18 -1.0000 0.0000 3.5000 -7.0000 90.490 52.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.9569 72.9345 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 2.4515 5.0000 12.0000 224.7550 223.9040 0.0000 0.0000 225.000
+ 19 -1.0000 0.0000 3.5000 -6.9000 90.721 47.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.5695 73.2490 -2.0000 1.0000 0.0000 0.0000 156.9992 -46.0016 2.4515 5.0000 11.9000 225.4050 223.8450 0.0000 0.0000 225.000
+ 20 -1.0000 0.0000 3.5000 -6.8000 90.935 44.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.1812 73.5653 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 2.4515 5.0000 11.8000 225.8030 224.0540 0.0000 0.0000 225.000
+ 21 -1.0000 0.0000 3.5000 -6.7000 90.346 39.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.7918 73.8835 -2.0000 1.0000 0.0000 0.0000 156.7921 -46.4158 2.4515 5.0000 11.7000 225.4210 224.1560 0.0000 0.0000 225.000
+ 22 -1.0000 0.0000 3.5000 -6.6000 90.785 26.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4014 74.2036 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 2.4515 5.0000 11.6000 225.1030 224.1080 0.0000 0.0000 225.000
+ 23 -1.0000 0.0000 3.5000 -6.5000 90.629 26.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.0099 74.5256 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.4515 5.0000 11.5000 224.8380 223.9650 0.0000 0.0000 225.000
+ 24 -1.0000 0.0000 3.5000 -6.4000 91.024 39.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.6174 74.8497 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.4515 5.0000 11.4000 224.9060 223.8360 0.0000 0.0000 225.000
+ 25 -1.0000 0.0000 3.5000 -6.3000 90.219 28.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.2237 75.1758 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 2.4515 5.0000 11.3000 225.8900 223.9560 0.0000 0.0000 225.000
+ 26 -1.0000 0.0000 3.5000 -6.2000 90.673 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.8289 75.5040 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.4515 5.0000 11.2000 225.5890 224.1330 0.0000 0.0000 225.000
+ 27 -1.0000 0.0000 3.5000 -6.1000 90.924 27.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4328 75.8344 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.4515 5.0000 11.1000 225.2390 224.1470 0.0000 0.0000 225.000
+ 28 -1.0000 0.0000 3.5000 -6.0000 90.802 23.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.0356 76.1669 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9597 2.4515 5.0000 11.0000 224.9510 224.0470 0.0000 0.0000 225.000
+ 29 -1.0000 0.0000 3.5000 -5.9000 90.710 21.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.6372 76.5018 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 2.4515 5.0000 10.9000 224.7510 223.8890 0.0000 0.0000 225.000
+ 30 -1.0000 0.0000 3.5000 -5.8000 90.937 16.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2375 76.8389 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.4515 5.0000 10.8000 225.5740 223.8630 0.0000 0.0000 225.000
+ 31 -1.0000 0.0000 3.5000 -5.7000 90.116 15.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.8364 77.1784 -2.0000 1.0000 0.0000 0.0000 155.6648 -48.6702 2.4515 5.0000 10.7000 225.7600 224.0880 0.0000 0.0000 225.000
+ 32 -1.0000 0.0000 3.5000 -5.6000 91.008 22.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.4341 77.5204 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.4515 5.0000 10.6000 225.3840 224.1670 0.0000 0.0000 225.000
+ 33 -1.0000 0.0000 3.5000 -5.5000 90.515 26.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.0304 77.8649 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.4515 5.0000 10.5000 225.0720 224.1000 0.0000 0.0000 225.000
+ 34 -1.0000 0.0000 3.5000 -5.4000 90.683 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.6252 78.2120 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.4515 5.0000 10.4000 224.8150 223.9650 0.0000 0.0000 225.000
+ 35 -1.0000 0.0000 3.5000 -5.3000 90.558 59.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2187 78.5616 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.4515 5.0000 10.3000 224.9920 223.8400 0.0000 0.0000 225.000
+ 36 -1.0000 0.0000 3.5000 -5.2000 91.195 71.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8107 78.9140 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.4515 5.0000 10.2000 225.8760 223.9830 0.0000 0.0000 225.000
+ 37 -1.0000 0.0000 3.5000 -5.1000 90.856 84.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.4011 79.2692 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1919 2.4515 5.0000 10.1000 225.5370 224.1420 0.0000 0.0000 225.000
+ 38 -1.0000 0.0000 3.5000 -5.0000 90.504 98.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.9900 79.6271 -2.0000 1.0000 0.0000 0.0000 154.7701 -50.4597 2.4515 5.0000 10.0000 225.1960 224.1440 0.0000 0.0000 225.000
+ 39 -1.0000 0.0000 3.5000 -4.9000 90.870 101.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.5774 79.9880 -2.0000 1.0000 0.0000 0.0000 154.6340 -50.7320 2.4515 5.0000 9.9000 224.9180 224.0240 0.0000 0.0000 225.000
+ 40 -1.0000 0.0000 3.5000 -4.8000 90.354 79.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.1631 80.3520 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.4515 5.0000 9.8000 224.7650 223.8780 0.0000 0.0000 225.000
+ 41 -1.0000 0.0000 3.5000 -4.7000 90.608 71.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.7471 80.7189 -2.0000 1.0000 0.0000 0.0000 154.3549 -51.2898 2.4515 5.0000 9.7000 225.7060 223.8820 0.0000 0.0000 225.000
+ 42 -1.0000 0.0000 3.5000 -4.6000 90.916 59.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.3294 81.0891 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.4515 5.0000 9.6000 225.7010 224.1060 0.0000 0.0000 225.000
+ 43 -1.0000 0.0000 3.5000 -4.5000 90.489 46.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.9100 81.4625 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.4515 5.0000 9.5000 225.3290 224.1690 0.0000 0.0000 225.000
+ 44 -1.0000 0.0000 3.5000 -4.4000 90.543 37.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4888 81.8392 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 2.4515 5.0000 9.4000 225.0280 224.0790 0.0000 0.0000 225.000
+ 45 -1.0000 0.0000 3.5000 -4.3000 90.726 20.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.0657 82.2194 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4634 2.4515 5.0000 9.3000 224.7830 223.9400 0.0000 0.0000 225.000
+ 46 -1.0000 0.0000 3.5000 -4.2000 91.005 16.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.6407 82.6031 -2.0000 1.0000 0.0000 0.0000 153.6150 -52.7696 2.4515 5.0000 9.2000 225.1780 223.8230 0.0000 0.0000 225.000
+ 47 -1.0000 0.0000 3.5000 -4.1000 90.788 21.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.2138 82.9904 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 2.4515 5.0000 9.1000 225.8520 224.0260 0.0000 0.0000 225.000
+ 48 -1.0000 0.0000 3.5000 -4.0000 90.756 11.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.7849 83.3815 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.4515 5.0000 9.0000 225.4810 224.1570 0.0000 0.0000 225.000
+ 49 -1.0000 0.0000 3.5000 -3.9000 90.861 7.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.3539 83.7765 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.4515 5.0000 8.9000 225.1520 224.1360 0.0000 0.0000 225.000
+ 50 -1.0000 0.0000 3.5000 -3.8000 90.638 11.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.9209 84.1754 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0507 2.4515 5.0000 8.8000 224.8810 224.0100 0.0000 0.0000 225.000
+ 51 -1.0000 0.0000 3.5000 -3.7000 89.896 4.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.4857 84.5783 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.4515 5.0000 8.7000 224.8050 223.8590 0.0000 0.0000 225.000
+ 52 -1.0000 0.0000 3.5000 -3.6000 90.169 7.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.0482 84.9855 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.4515 5.0000 8.6000 225.8200 223.9160 0.0000 0.0000 225.000
+ 53 -1.0000 0.0000 3.5000 -3.5000 90.684 10.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.6085 85.3970 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.4515 5.0000 8.5000 225.6620 224.1200 0.0000 0.0000 225.000
+ 54 -1.0000 0.0000 3.5000 -3.4000 90.299 6.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.1665 85.8130 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 2.4515 5.0000 8.4000 225.2990 224.1550 0.0000 0.0000 225.000
+# Sum of Counts = 2053
+# Center of Mass = -6.171505+/-0.194863
+# Full Width Half-Maximum = 2.668940+/-0.076673
+# 3:23:50 AM 6/23/2012 scan completed.
+
+3:23:50 AM 6/23/2012 Executing "scantitle "LO at L (1.5, 0, 1.5), T=225K""
+
+Setting the scantitle to:
+LO at L (1.5, 0, 1.5), T=225K
+
+
+3:23:50 AM 6/23/2012 Executing "scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8"
+
+
+# scan = 46
+# date = 6/23/2012
+# time = 3:23:50 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5, 0, 1.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.5000 482.504 66.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.2222 52.7450 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.5280 5.0000 20.5000 224.9030 224.0180 0.0000 0.0000 225.000
+ 2 1.5000 0.0000 1.5000 -15.2500 483.555 57.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.1100 53.3686 -2.0000 1.0000 0.0000 0.0000 162.5700 -34.8598 2.5280 5.0000 20.2500 224.9840 224.1240 0.0000 0.0000 225.000
+ 3 1.5000 0.0000 1.5000 -15.0000 486.798 65.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.9962 53.9931 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.5280 5.0000 20.0000 225.0400 224.1230 0.0000 0.0000 225.000
+ 4 1.5000 0.0000 1.5000 -14.7500 486.422 60.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.8808 54.6188 -2.0000 1.0000 0.0000 0.0000 162.3436 -35.3126 2.5280 5.0000 19.7500 225.1020 224.1720 0.0000 0.0000 225.000
+ 5 1.5000 0.0000 1.5000 -14.5000 486.080 84.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.7642 55.2460 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.5280 5.0000 19.5000 225.1580 224.1680 0.0000 0.0000 225.000
+ 6 1.5000 0.0000 1.5000 -14.2500 486.448 105.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.6465 55.8748 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.5280 5.0000 19.2500 225.2180 224.1930 0.0000 0.0000 225.000
+ 7 1.5000 0.0000 1.5000 -13.9999 485.530 110.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.5280 56.5056 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0263 2.5280 5.0000 18.9999 225.2780 224.1990 0.0000 0.0000 225.000
+ 8 1.5000 0.0000 1.5000 -13.7500 486.301 119.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.4088 57.1383 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.5280 5.0000 18.7500 225.3450 224.2090 0.0000 0.0000 225.000
+ 9 1.5000 0.0000 1.5000 -13.5000 485.678 143.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.2892 57.7733 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.5280 5.0000 18.5000 225.4120 224.2060 0.0000 0.0000 225.000
+ 10 1.5000 0.0000 1.5000 -13.2500 485.228 136.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.1694 58.4108 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.5280 5.0000 18.2500 225.4830 224.2000 0.0000 0.0000 225.000
+ 11 1.5000 0.0000 1.5000 -13.0000 485.736 98.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.0496 59.0511 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.5280 5.0000 18.0000 225.5590 224.1900 0.0000 0.0000 225.000
+ 12 1.5000 0.0000 1.5000 -12.7500 484.683 116.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.9300 59.6942 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.5280 5.0000 17.7500 225.6350 224.1710 0.0000 0.0000 225.000
+ 13 1.5000 0.0000 1.5000 -12.5000 485.184 82.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.8108 60.3406 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.5280 5.0000 17.5000 225.7170 224.1330 0.0000 0.0000 225.000
+ 14 1.5000 0.0000 1.5000 -12.2500 484.635 78.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.6922 60.9904 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.5280 5.0000 17.2500 225.7900 224.0980 0.0000 0.0000 225.000
+ 15 1.5000 0.0000 1.5000 -12.0000 484.866 70.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.5745 61.6438 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.5280 5.0000 17.0000 225.8550 224.0590 0.0000 0.0000 225.000
+ 16 1.5000 0.0000 1.5000 -11.7500 484.747 58.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.4578 62.3012 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.5280 5.0000 16.7500 225.8800 224.0190 0.0000 0.0000 225.000
+ 17 1.5000 0.0000 1.5000 -11.5000 484.480 53.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.3424 62.9628 -2.0000 1.0000 0.0000 0.0000 160.6197 -38.7605 2.5280 5.0000 16.5000 225.8090 223.9560 0.0000 0.0000 225.000
+ 18 1.5000 0.0000 1.5000 -11.2500 484.469 56.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.2284 63.6288 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.5280 5.0000 16.2500 225.6230 223.9150 0.0000 0.0000 225.000
+ 19 1.5000 0.0000 1.5000 -11.0000 484.056 44.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.1161 64.2995 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.5280 5.0000 16.0000 225.3680 223.8840 0.0000 0.0000 225.000
+ 20 1.5000 0.0000 1.5000 -10.7500 483.968 24.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.0058 64.9753 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.5280 5.0000 15.7500 225.0920 223.8720 0.0000 0.0000 225.000
+ 21 1.5000 0.0000 1.5000 -10.5000 483.022 33.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.8976 65.6564 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.5280 5.0000 15.5000 224.8870 223.8890 0.0000 0.0000 225.000
+# Sum of Counts = 1657
+# Center of Mass = -13.251804+/-0.461436
+# Full Width Half-Maximum = 2.524821+/-0.186122
+# 6:14:57 AM 6/23/2012 scan completed.
+
+6:14:57 AM 6/23/2012 Executing "scantitle "LO at T (0, 0, 4.5), T=225K""
+
+Setting the scantitle to:
+LO at T (0, 0, 4.5), T=225K
+
+
+6:14:57 AM 6/23/2012 Executing "scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 8"
+
+
+# scan = 47
+# date = 6/23/2012
+# time = 6:14:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 8
+# builtin_command = scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0, 0, 4.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -16.2500 484.161 38.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1784 45.5869 -2.0000 1.0000 0.0000 0.0000 162.9980 -34.0041 2.3886 5.0000 21.2500 225.1810 223.8820 0.0000 0.0000 225.000
+ 2 0.0000 0.0000 4.5000 -16.0000 483.316 51.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2081 46.2288 -2.0000 1.0000 0.0000 0.0000 162.8940 -34.2121 2.3886 5.0000 21.0000 224.9440 223.8760 0.0000 0.0000 225.000
+ 3 0.0000 0.0000 4.5000 -15.7500 483.483 46.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.2424 46.8694 -2.0000 1.0000 0.0000 0.0000 162.7880 -34.4240 2.3886 5.0000 20.7500 224.8120 223.8930 0.0000 0.0000 225.000
+ 4 0.0000 0.0000 4.5000 -15.5000 483.413 68.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2810 47.5091 -2.0000 1.0000 0.0000 0.0000 162.6800 -34.6398 2.3886 5.0000 20.5000 224.7560 223.9250 0.0000 0.0000 225.000
+ 5 0.0000 0.0000 4.5000 -15.2500 482.892 75.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.3236 48.1481 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.3886 5.0000 20.2500 224.7610 223.9540 0.0000 0.0000 225.000
+ 6 0.0000 0.0000 4.5000 -15.0000 482.839 100.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.3698 48.7867 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.3886 5.0000 20.0000 224.7980 223.9900 0.0000 0.0000 225.000
+ 7 0.0000 0.0000 4.5000 -14.7500 483.751 113.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.4194 49.4250 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 2.3886 5.0000 19.7500 224.8470 224.0210 0.0000 0.0000 225.000
+ 8 0.0000 0.0000 4.5000 -14.4999 483.206 138.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4720 50.0634 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3886 5.0000 19.4999 224.9050 224.0570 0.0000 0.0000 225.000
+ 9 0.0000 0.0000 4.5000 -14.2500 482.884 133.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.5274 50.7021 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3886 5.0000 19.2500 224.9580 224.0870 0.0000 0.0000 225.000
+ 10 0.0000 0.0000 4.5000 -14.0000 483.477 145.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.5852 51.3412 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3886 5.0000 19.0000 225.0180 224.1170 0.0000 0.0000 225.000
+ 11 0.0000 0.0000 4.5000 -13.7500 482.391 109.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.6453 51.9810 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3886 5.0000 18.7500 225.0800 224.1500 0.0000 0.0000 225.000
+ 12 0.0000 0.0000 4.5000 -13.5000 481.709 140.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.7073 52.6218 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3886 5.0000 18.5000 225.1500 224.1610 0.0000 0.0000 225.000
+ 13 0.0000 0.0000 4.5000 -13.2500 483.472 105.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -3.7710 53.2638 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3886 5.0000 18.2500 225.2220 224.1850 0.0000 0.0000 225.000
+ 14 0.0000 0.0000 4.5000 -13.0000 483.162 96.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.8362 53.9072 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3886 5.0000 18.0000 225.2900 224.2000 0.0000 0.0000 225.000
+ 15 0.0000 0.0000 4.5000 -12.7500 480.505 73.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.9024 54.5523 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3886 5.0000 17.7500 225.3650 224.2030 0.0000 0.0000 225.000
+ 16 0.0000 0.0000 4.5000 -12.5000 481.083 65.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.9696 55.1992 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3886 5.0000 17.5000 225.7120 223.9740 0.0000 0.0000 225.000
+ 17 0.0000 0.0000 4.5000 -12.2500 481.474 59.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0375 55.8483 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3886 5.0000 17.2500 225.4770 223.9350 0.0000 0.0000 225.000
+ 18 0.0000 0.0000 4.5000 -11.9999 482.292 47.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.8942 56.4998 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1639 2.3886 5.0000 16.9999 225.1390 223.9230 0.0000 0.0000 225.000
+ 19 0.0000 0.0000 4.5000 -11.7500 482.215 39.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 1.8257 57.1538 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3886 5.0000 16.7500 224.9040 223.9300 0.0000 0.0000 225.000
+ 20 0.0000 0.0000 4.5000 -11.5000 482.736 40.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 2.7573 57.8108 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3886 5.0000 16.5000 224.7860 223.9490 0.0000 0.0000 225.000
+ 21 0.0000 0.0000 4.5000 -11.2500 482.821 34.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 3.6892 58.4709 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.3886 5.0000 16.2500 224.7520 223.9780 0.0000 0.0000 225.000
+ 22 0.0000 0.0000 4.5000 -11.0000 482.135 30.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 4.6217 59.1344 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3886 5.0000 16.0000 224.7780 224.0170 0.0000 0.0000 225.000
+# Sum of Counts = 1744
+# Center of Mass = -13.840299+/-0.469662
+# Full Width Half-Maximum = 2.520455+/-0.180598
+# 9:19:43 AM 6/23/2012 scan completed.
+
+9:19:43 AM 6/23/2012 Executing "scantitle "LO at X (-1.5, 0, 0), T=225K""
+
+Setting the scantitle to:
+LO at X (-1.5, 0, 0), T=225K
+
+
+9:19:43 AM 6/23/2012 Executing "scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 12"
+
+
+# scan = 48
+# date = 6/23/2012
+# time = 9:19:43 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 12
+# builtin_command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (-1.5, 0, 0), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -14.5000 729.382 69.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.0280 50.4633 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 224.7550 223.9560 0.0000 0.0000 225.000
+ 2 -1.5000 0.0000 0.0000 -14.2500 729.324 73.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -97.0888 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2500 225.4230 224.2480 0.0000 0.0000 225.000
+ 3 -1.5000 0.0000 0.0000 -14.0000 725.700 76.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -96.1518 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9867 -36.0262 2.3993 5.0000 19.0000 224.7620 223.9980 0.0000 0.0000 225.000
+ 4 -1.5000 0.0000 0.0000 -13.7500 724.131 69.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -95.2170 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 225.6700 224.2010 0.0000 0.0000 225.000
+ 5 -1.5000 0.0000 0.0000 -13.5000 724.604 85.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.2840 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3993 5.0000 18.5000 224.9160 224.1140 0.0000 0.0000 225.000
+ 6 -1.5000 0.0000 0.0000 -13.2500 724.901 128.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -93.3525 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3993 5.0000 18.2500 225.8710 224.0560 0.0000 0.0000 225.000
+ 7 -1.5000 0.0000 0.0000 -13.0000 724.357 146.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -92.4224 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3993 5.0000 18.0000 225.0990 224.1980 0.0000 0.0000 225.000
+ 8 -1.5000 0.0000 0.0000 -12.7500 725.591 132.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.4932 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3993 5.0000 17.7500 225.4520 223.9130 0.0000 0.0000 225.000
+ 9 -1.5000 0.0000 0.0000 -12.5000 728.855 120.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -90.5649 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5940 2.3993 5.0000 17.5000 225.3040 224.2500 0.0000 0.0000 225.000
+ 10 -1.5000 0.0000 0.0000 -12.2500 726.397 114.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -89.6372 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 224.7820 223.9510 0.0000 0.0000 225.000
+ 11 -1.5000 0.0000 0.0000 -12.0000 727.234 103.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.7097 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3993 5.0000 17.0000 225.2510 224.2380 0.0000 0.0000 225.000
+ 12 -1.5000 0.0000 0.0000 -11.7500 725.637 91.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -87.7823 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 224.8300 223.9300 0.0000 0.0000 225.000
+ 13 -1.5000 0.0000 0.0000 -11.5000 724.239 81.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -86.8548 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3993 5.0000 16.5000 225.4880 224.2460 0.0000 0.0000 225.000
+ 14 -1.5000 0.0000 0.0000 -11.2500 724.266 59.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.9268 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.3993 5.0000 16.2500 224.8070 224.0390 0.0000 0.0000 225.000
+ 15 -1.5000 0.0000 0.0000 -11.0000 724.692 68.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.9982 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 225.7650 224.1440 0.0000 0.0000 225.000
+ 16 -1.5000 0.0000 0.0000 -10.7500 723.067 46.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.0686 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 224.9910 224.1530 0.0000 0.0000 225.000
+ 17 -1.5000 0.0000 0.0000 -10.5000 723.884 37.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.1379 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.3993 5.0000 15.5000 225.7620 223.9830 0.0000 0.0000 225.000
+ 18 -1.5000 0.0000 0.0000 -10.2500 724.443 40.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -82.2058 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 225.2000 224.2180 0.0000 0.0000 225.000
+ 19 -1.5000 0.0000 0.0000 -10.0000 724.685 46.000 983820.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -81.2720 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 224.9410 223.9210 0.0000 0.0000 225.000
+# Sum of Counts = 1583
+# Center of Mass = -12.492735+/-0.445024
+# Full Width Half-Maximum = 2.341186+/-0.189245
+# 1:21:26 PM 6/23/2012 scan completed.
+
+1:21:26 PM 6/23/2012 Executing "scantitle "LA+TA G-L (-0.7, 0, 2.3), T=225K""
+
+Setting the scantitle to:
+LA+TA G-L (-0.7, 0, 2.3), T=225K
+
+
+1:21:26 PM 6/23/2012 Executing "scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2"
+
+
+# scan = 49
+# date = 6/23/2012
+# time = 1:21:26 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-L (-0.7, 0, 2.3), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 120.772 5.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.5004 40.2118 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 1.6566 5.0000 13.0000 225.3380 224.2310 0.0000 0.0000 225.000
+ 2 -0.7000 0.0000 2.3000 -7.8000 120.261 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.4019 40.7903 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 1.6566 5.0000 12.8000 224.9520 224.1190 0.0000 0.0000 225.000
+ 3 -0.7000 0.0000 2.3000 -7.6000 120.652 10.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.3077 41.3670 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 1.6566 5.0000 12.6000 224.8280 223.9290 0.0000 0.0000 225.000
+ 4 -0.7000 0.0000 2.3000 -7.4000 120.764 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.2172 41.9422 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 1.6566 5.0000 12.4000 225.8610 224.0860 0.0000 0.0000 225.000
+ 5 -0.7000 0.0000 2.3000 -7.2000 120.949 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.1302 42.5160 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 1.6566 5.0000 12.2000 225.3880 224.2380 0.0000 0.0000 225.000
+ 6 -0.7000 0.0000 2.3000 -7.0000 121.093 30.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.0460 43.0888 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.6566 5.0000 12.0000 224.9890 224.1380 0.0000 0.0000 225.000
+ 7 -0.7000 0.0000 2.3000 -6.8000 121.133 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.9645 43.6608 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 1.6566 5.0000 11.8000 224.7780 223.9410 0.0000 0.0000 225.000
+ 8 -0.7000 0.0000 2.3000 -6.6000 119.954 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.8850 44.2322 -2.0000 1.0000 0.0000 0.0000 156.6863 -46.6273 1.6566 5.0000 11.6000 225.8740 224.0570 0.0000 0.0000 225.000
+ 9 -0.7000 0.0000 2.3000 -6.4000 120.489 16.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.8073 44.8032 -2.0000 1.0000 0.0000 0.0000 156.4705 -47.0589 1.6566 5.0000 11.4000 225.4360 224.2390 0.0000 0.0000 225.000
+ 10 -0.7000 0.0000 2.3000 -6.2000 120.944 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7310 45.3740 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 1.6566 5.0000 11.2000 225.0260 224.1570 0.0000 0.0000 225.000
+ 11 -0.7000 0.0000 2.3000 -6.0000 120.606 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.6556 45.9450 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.6566 5.0000 11.0000 224.7570 223.9600 0.0000 0.0000 225.000
+ 12 -0.7000 0.0000 2.3000 -5.8000 120.763 10.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.5808 46.5162 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 1.6566 5.0000 10.8000 225.8550 224.0170 0.0000 0.0000 225.000
+ 13 -0.7000 0.0000 2.3000 -5.6000 120.911 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5063 47.0879 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 1.6566 5.0000 10.6000 225.4800 224.2350 0.0000 0.0000 225.000
+ 14 -0.7000 0.0000 2.3000 -5.4000 120.872 57.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.4316 47.6604 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 1.6566 5.0000 10.4000 225.0580 224.1710 0.0000 0.0000 225.000
+ 15 -0.7000 0.0000 2.3000 -5.2000 120.752 88.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.3563 48.2339 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 1.6566 5.0000 10.2000 224.7550 223.9760 0.0000 0.0000 225.000
+ 16 -0.7000 0.0000 2.3000 -5.0000 120.695 110.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.2801 48.8085 -2.0000 1.0000 0.0000 0.0000 154.7701 -50.4597 1.6566 5.0000 10.0000 225.8130 223.9940 0.0000 0.0000 225.000
+ 17 -0.7000 0.0000 2.3000 -4.8000 120.615 68.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.2026 49.3846 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 1.6566 5.0000 9.8000 225.5340 224.2360 0.0000 0.0000 225.000
+ 18 -0.7000 0.0000 2.3000 -4.6000 120.655 33.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.1234 49.9624 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 1.6566 5.0000 9.6000 225.1030 224.1990 0.0000 0.0000 225.000
+ 19 -0.7000 0.0000 2.3000 -4.4000 121.068 24.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.0422 50.5421 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 1.6566 5.0000 9.4000 224.7740 224.0030 0.0000 0.0000 225.000
+ 20 -0.7000 0.0000 2.3000 -4.2000 120.700 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.9584 51.1240 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 1.6566 5.0000 9.2000 225.6820 223.9630 0.0000 0.0000 225.000
+ 21 -0.7000 0.0000 2.3000 -4.0000 120.502 17.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.8718 51.7082 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.6566 5.0000 9.0000 225.5840 224.2120 0.0000 0.0000 225.000
+# Sum of Counts = 634
+# Center of Mass = -5.516088+/-0.312286
+# Full Width Half-Maximum = 1.974500+/-0.150145
+# 2:04:59 PM 6/23/2012 scan completed.
+
+2:04:59 PM 6/23/2012 Executing "scantitle "LA+TA G-X (-0.75, 0, 1.5), T=225K""
+
+Setting the scantitle to:
+LA+TA G-X (-0.75, 0, 1.5), T=225K
+
+
+2:04:59 PM 6/23/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4"
+
+
+# scan = 50
+# date = 6/23/2012
+# time = 2:04:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 241.269 12.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 225.0790 224.1780 0.0000 0.0000 225.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 240.186 18.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 225.7320 223.9630 0.0000 0.0000 225.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 241.553 16.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 225.1380 224.1920 0.0000 0.0000 225.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 240.875 28.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3113 1.4398 5.0000 11.7500 225.4820 223.9340 0.0000 0.0000 225.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 241.477 64.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 225.1960 224.2200 0.0000 0.0000 225.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 241.571 87.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 225.2280 223.9150 0.0000 0.0000 225.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 241.471 80.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 225.2590 224.2310 0.0000 0.0000 225.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 240.972 41.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5496 1.4398 5.0000 10.7500 224.9910 223.8920 0.0000 0.0000 225.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 241.012 20.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 225.3220 224.2380 0.0000 0.0000 225.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 241.734 13.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1008 -49.7981 1.4398 5.0000 10.2500 224.8360 223.9270 0.0000 0.0000 225.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 241.123 12.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4598 1.4398 5.0000 10.0000 225.3870 224.2360 0.0000 0.0000 225.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 241.379 14.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 224.7720 223.9500 0.0000 0.0000 225.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 240.093 14.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 225.4510 224.2410 0.0000 0.0000 225.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 241.119 19.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6920 -52.6158 1.4398 5.0000 9.2500 224.7540 223.9760 0.0000 0.0000 225.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 241.674 10.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3005 -53.3986 1.4398 5.0000 9.0000 225.5320 224.2360 0.0000 0.0000 225.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 241.724 8.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 224.7770 224.0110 0.0000 0.0000 225.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 240.899 21.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 225.6000 224.2150 0.0000 0.0000 225.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 241.690 9.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 224.8120 224.0370 0.0000 0.0000 225.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 241.537 15.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5387 -56.9223 1.4398 5.0000 8.0000 225.6690 224.1950 0.0000 0.0000 225.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 241.665 26.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0406 -57.9186 1.4398 5.0000 7.7500 224.8500 224.0570 0.0000 0.0000 225.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 241.339 44.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 225.7520 224.1730 0.0000 0.0000 225.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 241.057 17.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 224.9050 224.0990 0.0000 0.0000 225.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 241.413 9.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 225.8190 224.1220 0.0000 0.0000 225.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 241.909 10.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 224.9530 224.1220 0.0000 0.0000 225.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 241.940 7.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.4398 5.0000 6.5000 225.8600 224.0890 0.0000 0.0000 225.000
+# Sum of Counts = 614
+# Center of Mass = -5.096091+/-0.298407
+# Full Width Half-Maximum = 3.307238+/-0.179734
+# 3:47:07 PM 6/23/2012 scan completed.
+
+3:47:07 PM 6/23/2012 Executing "scantitle "LA+TA G-T (-1, 0, 2.9), T=225K""
+
+Setting the scantitle to:
+LA+TA G-T (-1, 0, 2.9), T=225K
+
+
+3:47:07 PM 6/23/2012 Executing "scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1"
+
+
+# scan = 51
+# date = 6/23/2012
+# time = 3:47:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# builtin_command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-T (-1, 0, 2.9), T=225K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -6.5000 60.383 5.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.4904 65.5036 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.2199 5.0000 11.5000 224.9540 224.1310 0.0000 0.0000 225.000
+ 2 -1.0000 0.0000 2.9000 -6.4000 60.134 9.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0748 65.8059 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.2199 5.0000 11.4000 224.7910 224.0250 0.0000 0.0000 225.000
+ 3 -1.0000 0.0000 2.9000 -6.2999 60.486 11.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.6584 66.1098 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2794 2.2199 5.0000 11.2999 224.8350 223.9270 0.0000 0.0000 225.000
+ 4 -1.0000 0.0000 2.9000 -6.2000 60.376 10.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2411 66.4150 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.2199 5.0000 11.2000 225.5720 223.9420 0.0000 0.0000 225.000
+ 5 -1.0000 0.0000 2.9000 -6.1000 60.257 19.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.8229 66.7218 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.2199 5.0000 11.1000 225.8560 224.1000 0.0000 0.0000 225.000
+ 6 -1.0000 0.0000 2.9000 -6.0000 60.426 23.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4038 67.0302 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.2199 5.0000 11.0000 225.6190 224.2180 0.0000 0.0000 225.000
+ 7 -1.0000 0.0000 2.9000 -5.9000 60.584 55.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9838 67.3402 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 2.2199 5.0000 10.9000 225.3720 224.2420 0.0000 0.0000 225.000
+ 8 -1.0000 0.0000 2.9000 -5.8000 60.267 65.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5628 67.6518 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.2199 5.0000 10.8000 225.1590 224.2130 0.0000 0.0000 225.000
+ 9 -1.0000 0.0000 2.9000 -5.7000 59.988 107.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1408 67.9651 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 2.2199 5.0000 10.7000 224.9730 224.1400 0.0000 0.0000 225.000
+ 10 -1.0000 0.0000 2.9000 -5.6000 60.635 115.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.7177 68.2802 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.2199 5.0000 10.6000 224.8090 224.0510 0.0000 0.0000 225.000
+ 11 -1.0000 0.0000 2.9000 -5.5000 60.608 56.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.2936 68.5970 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.2199 5.0000 10.5000 224.7980 223.9380 0.0000 0.0000 225.000
+ 12 -1.0000 0.0000 2.9000 -5.4000 60.347 14.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.8684 68.9156 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.2199 5.0000 10.4000 225.4690 223.9310 0.0000 0.0000 225.000
+ 13 -1.0000 0.0000 2.9000 -5.3000 60.441 6.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.4420 69.2362 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.2199 5.0000 10.3000 225.8640 224.0720 0.0000 0.0000 225.000
+ 14 -1.0000 0.0000 2.9000 -5.2000 60.518 11.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.0145 69.5586 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.2199 5.0000 10.2000 225.6420 224.1980 0.0000 0.0000 225.000
+ 15 -1.0000 0.0000 2.9000 -5.1000 60.304 8.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5858 69.8830 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1920 2.2199 5.0000 10.1000 225.3910 224.2450 0.0000 0.0000 225.000
+ 16 -1.0000 0.0000 2.9000 -5.0000 59.978 3.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1559 70.2095 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.2199 5.0000 10.0000 225.1770 224.2120 0.0000 0.0000 225.000
+ 17 -1.0000 0.0000 2.9000 -4.9000 60.410 14.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7246 70.5380 -2.0000 1.0000 0.0000 0.0000 154.6339 -50.7319 2.2199 5.0000 9.9000 224.9870 224.1400 0.0000 0.0000 225.000
+ 18 -1.0000 0.0000 2.9000 -4.8000 59.960 7.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.2921 70.8687 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.2199 5.0000 9.8000 224.8190 224.0510 0.0000 0.0000 225.000
+ 19 -1.0000 0.0000 2.9000 -4.7000 60.269 4.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.8583 71.2016 -2.0000 1.0000 0.0000 0.0000 154.3550 -51.2898 2.2199 5.0000 9.7000 224.7850 223.9450 0.0000 0.0000 225.000
+ 20 -1.0000 0.0000 2.9000 -4.6000 60.083 11.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4230 71.5367 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.2199 5.0000 9.6000 225.4060 223.9220 0.0000 0.0000 225.000
+ 21 -1.0000 0.0000 2.9000 -4.5000 60.166 12.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9864 71.8742 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.2199 5.0000 9.5000 225.8710 224.0650 0.0000 0.0000 225.000
+ 22 -1.0000 0.0000 2.9000 -4.4000 60.424 17.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.5483 72.2141 -2.0000 1.0000 0.0000 0.0000 153.9187 -52.1625 2.2199 5.0000 9.4000 225.6600 224.1970 0.0000 0.0000 225.000
+ 23 -1.0000 0.0000 2.9000 -4.3000 60.701 42.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1087 72.5564 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4633 2.2199 5.0000 9.3000 225.4090 224.2410 0.0000 0.0000 225.000
+ 24 -1.0000 0.0000 2.9000 -4.2000 60.115 85.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.6676 72.9012 -2.0000 1.0000 0.0000 0.0000 153.6151 -52.7696 2.2199 5.0000 9.2000 225.1890 224.2160 0.0000 0.0000 225.000
+ 25 -1.0000 0.0000 2.9000 -4.1000 60.620 143.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2248 73.2487 -2.0000 1.0000 0.0000 0.0000 153.4593 -53.0813 2.2199 5.0000 9.1000 224.9990 224.1510 0.0000 0.0000 225.000
+ 26 -1.0000 0.0000 2.9000 -4.0000 60.420 236.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.7805 73.5988 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.2199 5.0000 9.0000 224.8300 224.0570 0.0000 0.0000 225.000
+ 27 -1.0000 0.0000 2.9000 -3.9000 60.580 109.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3345 73.9517 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.2199 5.0000 8.9000 224.7710 223.9440 0.0000 0.0000 225.000
+ 28 -1.0000 0.0000 2.9000 -3.8000 60.358 109.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.8867 74.3074 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0507 2.2199 5.0000 8.8000 225.3540 223.9230 0.0000 0.0000 225.000
+ 29 -1.0000 0.0000 2.9000 -3.7000 60.144 88.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4372 74.6660 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.2199 5.0000 8.7000 225.8810 224.0540 0.0000 0.0000 225.000
+ 30 -1.0000 0.0000 2.9000 -3.6000 60.227 124.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.9859 75.0276 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.2199 5.0000 8.6000 225.6840 224.1900 0.0000 0.0000 225.000
+ 31 -1.0000 0.0000 2.9000 -3.5000 60.630 136.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.5328 75.3923 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.2199 5.0000 8.5000 225.4280 224.2450 0.0000 0.0000 225.000
+ 32 -1.0000 0.0000 2.9000 -3.4000 60.207 70.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.0777 75.7602 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 2.2199 5.0000 8.4000 225.2070 224.2190 0.0000 0.0000 225.000
+ 33 -1.0000 0.0000 2.9000 -3.3000 60.086 34.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.6206 76.1314 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7925 2.2199 5.0000 8.3000 225.0160 224.1570 0.0000 0.0000 225.000
+ 34 -1.0000 0.0000 2.9000 -3.2000 60.375 30.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1616 76.5059 -2.0000 1.0000 0.0000 0.0000 151.9193 -56.1615 2.2199 5.0000 8.2000 224.8450 224.0670 0.0000 0.0000 225.000
+ 35 -1.0000 0.0000 2.9000 -3.1000 60.394 20.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.7004 76.8839 -2.0000 1.0000 0.0000 0.0000 151.7310 -56.5380 2.2199 5.0000 8.1000 224.7600 223.9580 0.0000 0.0000 225.000
+ 36 -1.0000 0.0000 2.9000 -3.0000 60.319 11.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2371 77.2656 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.2199 5.0000 8.0000 225.2580 223.9150 0.0000 0.0000 225.000
+ 37 -1.0000 0.0000 2.9000 -2.9000 60.245 9.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.7716 77.6509 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3147 2.2199 5.0000 7.9000 225.8710 224.0420 0.0000 0.0000 225.000
+ 38 -1.0000 0.0000 2.9000 -2.8000 60.299 20.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.3038 78.0400 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 2.2199 5.0000 7.8000 225.7040 224.1800 0.0000 0.0000 225.000
+ 39 -1.0000 0.0000 2.9000 -2.7000 60.265 7.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.8338 78.4332 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 2.2199 5.0000 7.7000 225.4450 224.2430 0.0000 0.0000 225.000
+ 40 -1.0000 0.0000 2.9000 -2.6000 60.327 5.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.3613 78.8304 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 2.2199 5.0000 7.6000 225.2230 224.2230 0.0000 0.0000 225.000
+ 41 -1.0000 0.0000 2.9000 -2.5000 60.580 8.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8863 79.2318 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.2199 5.0000 7.5000 225.0290 224.1540 0.0000 0.0000 225.000
+# Sum of Counts = 1868
+# Center of Mass = -4.330781+/-0.143353
+# Full Width Half-Maximum = 1.872154+/-0.067317
+# 4:30:15 PM 6/23/2012 scan completed.
+
+4:40:53 PM 6/23/2012 Executing "method temp set_setpoint d 300.000000"
+ Derived from "set_temp 300"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+4:57:00 PM 6/23/2012 Executing "scantitle "LA+TA G-L (-0.9, 0, 2.1), T=300K""
+
+Setting the scantitle to:
+LA+TA G-L (-0.9, 0, 2.1), T=300K
+
+
+4:58:17 PM 6/23/2012 Executing "scan h -0.9 k 0 l 2.1 e -3.5 -0.7 0.05 preset mcu 1"
+
+
+# scan = 52
+# date = 6/23/2012
+# time = 4:58:17 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.9 k 0 l 2.1 e -3.5 -0.7 0.05 preset mcu 1
+# builtin_command = scan h -0.9 k 0 l 2.1 e -3.5 -0.7 0.05 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-L (-0.9, 0, 2.1), T=300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.9000 0.0000 2.1000 -3.5000 60.239 26.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.9894 59.4314 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.8207 5.0000 8.5000 305.0160 292.9350 0.0000 0.0000 300.000
+ 2 -0.9000 0.0000 2.1000 -3.4500 60.391 30.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.7341 59.5872 -2.0000 1.0000 0.0000 0.0000 152.3739 -55.2522 1.8207 5.0000 8.4500 303.0840 294.8420 0.0000 0.0000 300.000
+ 3 -0.9000 0.0000 2.1000 -3.4000 59.902 32.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.4784 59.7434 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 1.8207 5.0000 8.4000 301.5710 295.8550 0.0000 0.0000 300.000
+ 4 -0.9000 0.0000 2.1000 -3.3500 60.356 39.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -33.2223 59.9000 -2.0000 1.0000 0.0000 0.0000 152.1947 -55.6106 1.8207 5.0000 8.3500 300.4600 296.3370 0.0000 0.0000 300.000
+ 5 -0.9000 0.0000 2.1000 -3.3000 60.587 32.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.9659 60.0570 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7924 1.8207 5.0000 8.3000 299.5890 296.4500 0.0000 0.0000 300.000
+ 6 -0.9000 0.0000 2.1000 -3.2500 60.486 48.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.7091 60.2144 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.8207 5.0000 8.2500 298.8540 296.3640 0.0000 0.0000 300.000
+ 7 -0.9000 0.0000 2.1000 -3.2000 60.444 59.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.4519 60.3722 -2.0000 1.0000 0.0000 0.0000 151.9192 -56.1615 1.8207 5.0000 8.2000 298.5070 296.1780 0.0000 0.0000 300.000
+ 8 -0.9000 0.0000 2.1000 -3.1500 60.602 76.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.1944 60.5304 -2.0000 1.0000 0.0000 0.0000 151.8256 -56.3488 1.8207 5.0000 8.1500 299.0050 296.0730 0.0000 0.0000 300.000
+ 9 -0.9000 0.0000 2.1000 -3.1000 60.015 64.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.9365 60.6890 -2.0000 1.0000 0.0000 0.0000 151.7308 -56.5381 1.8207 5.0000 8.1000 300.2560 296.2220 0.0000 0.0000 300.000
+ 10 -0.9000 0.0000 2.1000 -3.0500 60.211 77.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.6782 60.8481 -2.0000 1.0000 0.0000 0.0000 151.6354 -56.7292 1.8207 5.0000 8.0500 301.2870 296.6450 0.0000 0.0000 300.000
+ 11 -0.9000 0.0000 2.1000 -3.0000 60.592 74.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.4194 61.0076 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.8207 5.0000 8.0000 301.3230 297.1060 0.0000 0.0000 300.000
+ 12 -0.9000 0.0000 2.1000 -2.9500 60.327 92.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.1603 61.1676 -2.0000 1.0000 0.0000 0.0000 151.4413 -57.1174 1.8207 5.0000 7.9500 300.7040 297.4000 0.0000 0.0000 300.000
+ 13 -0.9000 0.0000 2.1000 -2.9000 60.205 113.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.9007 61.3279 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 1.8207 5.0000 7.9000 299.9600 297.4520 0.0000 0.0000 300.000
+ 14 -0.9000 0.0000 2.1000 -2.8500 60.418 124.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.6408 61.4888 -2.0000 1.0000 0.0000 0.0000 151.2431 -57.5138 1.8207 5.0000 7.8500 299.3270 297.3360 0.0000 0.0000 300.000
+ 15 -0.9000 0.0000 2.1000 -2.8000 60.068 146.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.3804 61.6501 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 1.8207 5.0000 7.8000 298.9010 297.1150 0.0000 0.0000 300.000
+ 16 -0.9000 0.0000 2.1000 -2.7500 60.569 131.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.1195 61.8118 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.8207 5.0000 7.7500 298.9600 296.9020 0.0000 0.0000 300.000
+ 17 -0.9000 0.0000 2.1000 -2.7000 60.317 164.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.8582 61.9741 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 1.8207 5.0000 7.7000 299.6740 296.8420 0.0000 0.0000 300.000
+ 18 -0.9000 0.0000 2.1000 -2.6500 60.022 141.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.5965 62.1368 -2.0000 1.0000 0.0000 0.0000 150.8339 -58.3322 1.8207 5.0000 7.6500 300.6280 297.0260 0.0000 0.0000 300.000
+ 19 -0.9000 0.0000 2.1000 -2.6000 60.088 125.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.3342 62.3001 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 1.8207 5.0000 7.6000 301.0780 297.3320 0.0000 0.0000 300.000
+ 20 -0.9000 0.0000 2.1000 -2.5500 60.062 110.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0716 62.4638 -2.0000 1.0000 0.0000 0.0000 150.6226 -58.7548 1.8207 5.0000 7.5500 300.8400 297.6100 0.0000 0.0000 300.000
+ 21 -0.9000 0.0000 2.1000 -2.5000 60.403 97.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.8084 62.6281 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.8207 5.0000 7.5000 300.2700 297.7200 0.0000 0.0000 300.000
+ 22 -0.9000 0.0000 2.1000 -2.4500 60.682 102.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.5448 62.7929 -2.0000 1.0000 0.0000 0.0000 150.4066 -59.1868 1.8207 5.0000 7.4500 299.6800 297.6660 0.0000 0.0000 300.000
+ 23 -0.9000 0.0000 2.1000 -2.4000 60.315 85.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2806 62.9582 -2.0000 1.0000 0.0000 0.0000 150.2968 -59.4063 1.8207 5.0000 7.4000 299.2310 297.4970 0.0000 0.0000 300.000
+ 24 -0.9000 0.0000 2.1000 -2.3500 60.250 76.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.0160 63.1240 -2.0000 1.0000 0.0000 0.0000 150.1858 -59.6284 1.8207 5.0000 7.3500 299.1120 297.3040 0.0000 0.0000 300.000
+ 25 -0.9000 0.0000 2.1000 -2.3000 60.057 76.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.7508 63.2904 -2.0000 1.0000 0.0000 0.0000 150.0735 -59.8530 1.8207 5.0000 7.3000 299.4810 297.1870 0.0000 0.0000 300.000
+ 26 -0.9000 0.0000 2.1000 -2.2500 60.380 112.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4852 63.4574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.8207 5.0000 7.2500 300.1950 297.2410 0.0000 0.0000 300.000
+ 27 -0.9000 0.0000 2.1000 -2.2000 60.322 123.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.2190 63.6250 -2.0000 1.0000 0.0000 0.0000 149.8448 -60.3101 1.8207 5.0000 7.2000 300.7580 297.4480 0.0000 0.0000 300.000
+ 28 -0.9000 0.0000 2.1000 -2.1500 60.340 152.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9522 63.7931 -2.0000 1.0000 0.0000 0.0000 149.7287 -60.5426 1.8207 5.0000 7.1500 300.7960 297.6950 0.0000 0.0000 300.000
+ 29 -0.9000 0.0000 2.1000 -2.1000 60.355 195.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.6849 63.9618 -2.0000 1.0000 0.0000 0.0000 149.6111 -60.7778 1.8207 5.0000 7.1000 300.4260 297.8460 0.0000 0.0000 300.000
+ 30 -0.9000 0.0000 2.1000 -2.0500 60.560 229.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.4171 64.1311 -2.0000 1.0000 0.0000 0.0000 149.4921 -61.0158 1.8207 5.0000 7.0500 299.9260 297.8460 0.0000 0.0000 300.000
+ 31 -0.9000 0.0000 2.1000 -2.0000 60.029 276.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1487 64.3010 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.8207 5.0000 7.0000 299.4950 297.7240 0.0000 0.0000 300.000
+ 32 -0.9000 0.0000 2.1000 -1.9500 60.026 315.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.8797 64.4715 -2.0000 1.0000 0.0000 0.0000 149.2498 -61.5005 1.8207 5.0000 6.9500 299.2860 297.5660 0.0000 0.0000 300.000
+ 33 -0.9000 0.0000 2.1000 -1.9000 60.574 339.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.6101 64.6427 -2.0000 1.0000 0.0000 0.0000 149.1262 -61.7472 1.8207 5.0000 6.9000 299.4430 297.4340 0.0000 0.0000 300.000
+ 34 -0.9000 0.0000 2.1000 -1.8500 59.881 360.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.3400 64.8145 -2.0000 1.0000 0.0000 0.0000 149.0015 -61.9969 1.8207 5.0000 6.8500 299.9430 297.4190 0.0000 0.0000 300.000
+ 35 -0.9000 0.0000 2.1000 -1.8000 60.517 378.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.0692 64.9870 -2.0000 1.0000 0.0000 0.0000 148.8751 -62.2498 1.8207 5.0000 6.8000 300.4650 297.5480 0.0000 0.0000 300.000
+ 36 -0.9000 0.0000 2.1000 -1.7500 60.425 325.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.7978 65.1601 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.8207 5.0000 6.7500 300.6640 297.7380 0.0000 0.0000 300.000
+ 37 -0.9000 0.0000 2.1000 -1.7000 60.228 286.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.5258 65.3339 -2.0000 1.0000 0.0000 0.0000 148.6175 -62.7649 1.8207 5.0000 6.7000 300.4700 297.8850 0.0000 0.0000 300.000
+ 38 -0.9000 0.0000 2.1000 -1.6500 60.294 278.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.2531 65.5084 -2.0000 1.0000 0.0000 0.0000 148.4862 -63.0274 1.8207 5.0000 6.6500 300.0840 297.9270 0.0000 0.0000 300.000
+ 39 -0.9000 0.0000 2.1000 -1.6000 60.320 252.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9798 65.6836 -2.0000 1.0000 0.0000 0.0000 148.3534 -63.2932 1.8207 5.0000 6.6000 299.6990 297.8520 0.0000 0.0000 300.000
+ 40 -0.9000 0.0000 2.1000 -1.5500 60.365 261.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.7059 65.8595 -2.0000 1.0000 0.0000 0.0000 148.2188 -63.5624 1.8207 5.0000 6.5500 299.4580 297.7400 0.0000 0.0000 300.000
+ 41 -0.9000 0.0000 2.1000 -1.5000 60.438 238.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.4313 66.0361 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.8207 5.0000 6.5000 299.4900 297.6210 0.0000 0.0000 300.000
+ 42 -0.9000 0.0000 2.1000 -1.4500 60.137 245.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1560 66.2135 -2.0000 1.0000 0.0000 0.0000 147.9442 -64.1115 1.8207 5.0000 6.4500 299.8160 297.5740 0.0000 0.0000 300.000
+ 43 -0.9000 0.0000 2.1000 -1.4000 60.462 241.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.8800 66.3917 -2.0000 1.0000 0.0000 0.0000 147.8042 -64.3915 1.8207 5.0000 6.4000 300.2490 297.6400 0.0000 0.0000 300.000
+ 44 -0.9000 0.0000 2.1000 -1.3500 60.599 239.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.6033 66.5706 -2.0000 1.0000 0.0000 0.0000 147.6624 -64.6752 1.8207 5.0000 6.3500 300.5070 297.7850 0.0000 0.0000 300.000
+ 45 -0.9000 0.0000 2.1000 -1.3000 60.195 230.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.3259 66.7503 -2.0000 1.0000 0.0000 0.0000 147.5186 -64.9628 1.8207 5.0000 6.3000 300.4540 297.9260 0.0000 0.0000 300.000
+ 46 -0.9000 0.0000 2.1000 -1.2500 60.374 182.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.0477 66.9308 -2.0000 1.0000 0.0000 0.0000 147.3729 -65.2543 1.8207 5.0000 6.2500 300.1800 297.9830 0.0000 0.0000 300.000
+ 47 -0.9000 0.0000 2.1000 -1.2000 60.098 133.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.7688 67.1121 -2.0000 1.0000 0.0000 0.0000 147.2251 -65.5497 1.8207 5.0000 6.2000 299.8540 297.9620 0.0000 0.0000 300.000
+ 48 -0.9000 0.0000 2.1000 -1.1500 60.155 119.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4892 67.2942 -2.0000 1.0000 0.0000 0.0000 147.0754 -65.8492 1.8207 5.0000 6.1500 299.5990 297.8580 0.0000 0.0000 300.000
+ 49 -0.9000 0.0000 2.1000 -1.1000 60.237 88.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.2088 67.4772 -2.0000 1.0000 0.0000 0.0000 146.9235 -66.1530 1.8207 5.0000 6.1000 299.5530 297.7580 0.0000 0.0000 300.000
+ 50 -0.9000 0.0000 2.1000 -1.0500 60.320 60.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9276 67.6610 -2.0000 1.0000 0.0000 0.0000 146.7694 -66.4610 1.8207 5.0000 6.0500 299.7530 297.7000 0.0000 0.0000 300.000
+ 51 -0.9000 0.0000 2.1000 -1.0000 60.465 58.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.6457 67.8457 -2.0000 1.0000 0.0000 0.0000 146.6133 -66.7735 1.8207 5.0000 6.0000 300.0940 297.7300 0.0000 0.0000 300.000
+ 52 -0.9000 0.0000 2.1000 -0.9500 60.292 40.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.3629 68.0314 -2.0000 1.0000 0.0000 0.0000 146.4548 -67.0904 1.8207 5.0000 5.9500 300.3850 297.8440 0.0000 0.0000 300.000
+ 53 -0.9000 0.0000 2.1000 -0.9000 60.542 24.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.0793 68.2179 -2.0000 1.0000 0.0000 0.0000 146.2940 -67.4120 1.8207 5.0000 5.9000 300.5290 297.9480 0.0000 0.0000 300.000
+ 54 -0.9000 0.0000 2.1000 -0.8500 60.152 27.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.7949 68.4053 -2.0000 1.0000 0.0000 0.0000 146.1309 -67.7382 1.8207 5.0000 5.8500 300.2260 298.0190 0.0000 0.0000 300.000
+ 55 -0.9000 0.0000 2.1000 -0.8000 60.742 26.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.5096 68.5937 -2.0000 1.0000 0.0000 0.0000 145.9653 -68.0694 1.8207 5.0000 5.8000 299.9620 298.0280 0.0000 0.0000 300.000
+ 56 -0.9000 0.0000 2.1000 -0.7500 60.416 19.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2235 68.7831 -2.0000 1.0000 0.0000 0.0000 145.7973 -68.4055 1.8207 5.0000 5.7500 299.7330 297.9530 0.0000 0.0000 300.000
+ 57 -0.9000 0.0000 2.1000 -0.7000 60.202 18.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.9365 68.9734 -2.0000 1.0000 0.0000 0.0000 145.6266 -68.7467 1.8207 5.0000 5.7000 299.6470 297.8780 0.0000 0.0000 300.000
+# Sum of Counts = 8007
+# Center of Mass = -1.963538+/-0.031737
+# Full Width Half-Maximum = 1.190201+/-0.014764
+# 5:58:08 PM 6/23/2012 scan completed.
+
+5:58:08 PM 6/23/2012 Executing "scantitle "LA+TA G-X (-0.75, 0, 1.5), T=300K""
+
+Setting the scantitle to:
+LA+TA G-X (-0.75, 0, 1.5), T=300K
+
+
+5:58:08 PM 6/23/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.5 -1.25 0.25 preset mcu 2"
+
+
+# scan = 53
+# date = 6/23/2012
+# time = 5:58:08 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.25 0.25 preset mcu 2
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.25 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), T=300K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 120.857 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 299.8700 297.8200 0.0000 0.0000 300.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 120.638 5.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 300.3030 297.9240 0.0000 0.0000 300.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 121.222 15.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 300.1530 298.0460 0.0000 0.0000 300.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 120.981 18.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3113 1.4398 5.0000 11.7500 299.7740 297.9960 0.0000 0.0000 300.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 120.180 38.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 299.8090 297.9020 0.0000 0.0000 300.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 120.663 58.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 300.1890 297.9500 0.0000 0.0000 300.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 120.470 51.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 300.2080 298.0930 0.0000 0.0000 300.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 120.604 37.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 299.8700 298.0660 0.0000 0.0000 300.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 120.918 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 299.8080 297.9980 0.0000 0.0000 300.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 120.624 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 300.0690 297.9810 0.0000 0.0000 300.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 120.685 11.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 300.1860 298.0730 0.0000 0.0000 300.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 121.259 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 299.9740 298.1240 0.0000 0.0000 300.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 120.867 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 299.8220 298.0460 0.0000 0.0000 300.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 121.470 7.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 299.9880 298.0260 0.0000 0.0000 300.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 121.372 8.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 300.1580 298.0970 0.0000 0.0000 300.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 120.919 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 300.0330 298.1390 0.0000 0.0000 300.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 121.616 3.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 299.8670 298.0990 0.0000 0.0000 300.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 121.119 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 299.9510 298.0600 0.0000 0.0000 300.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 121.209 10.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.4398 5.0000 8.0000 300.1120 298.1010 0.0000 0.0000 300.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 122.076 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.4398 5.0000 7.7500 300.0640 298.1550 0.0000 0.0000 300.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 121.288 28.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 299.9180 298.1440 0.0000 0.0000 300.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 121.697 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 299.9260 298.0990 0.0000 0.0000 300.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 121.370 6.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 300.0670 298.1120 0.0000 0.0000 300.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 121.369 8.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 300.0820 298.1700 0.0000 0.0000 300.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 121.215 9.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.4398 5.0000 6.5000 299.9550 298.1720 0.0000 0.0000 300.000
+ 26 -0.7500 0.0000 1.5000 -1.2500 121.730 4.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.6894 51.5376 -2.0000 1.0000 0.0000 0.0000 147.3728 -65.2542 1.4398 5.0000 6.2500 299.9200 298.1290 0.0000 0.0000 300.000
+# Sum of Counts = 430
+# Center of Mass = -4.994186+/-0.350384
+# Full Width Half-Maximum = 3.409952+/-0.212010
+# 6:52:30 PM 6/23/2012 scan completed.
+
+7:33:55 PM 6/23/2012 Executing "method temp set_setpoint d 390.000000"
+ Derived from "set_temp 390"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+7:35:28 PM 6/23/2012 Executing "wait 00:01:00"
+
+7:35:28 PM 6/23/2012 Waiting for 00:01:00, 60.0000 (seconds).
+
+7:36:28 PM 6/23/2012 Wait completed.
+
+
+7:36:32 PM 6/23/2012 Executing "method temp set_setpoint d 400.000000"
+ Derived from "set_temp 400"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+7:56:35 PM 6/23/2012 Executing "scantitle "TO at G (1,0,1), T=390K""
+
+Setting the scantitle to:
+TO at G (1,0,1), T=390K
+
+
+7:56:35 PM 6/23/2012 Executing "scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6"
+
+
+# scan = 54
+# date = 6/23/2012
+# time = 7:56:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (1,0,1), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 364.385 54.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.6310 27.3666 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.6853 5.0000 17.5000 405.5700 388.9250 0.0000 0.0000 400.000
+ 2 1.0000 0.0000 1.0000 -12.2500 365.455 54.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 37.2786 28.2324 -2.0000 1.0000 0.0000 0.0000 161.0619 -37.8757 1.6853 5.0000 17.2500 399.0890 397.1570 0.0000 0.0000 400.000
+ 3 1.0000 0.0000 1.0000 -12.0000 363.648 41.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 38.8926 29.0811 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.6853 5.0000 17.0000 400.7370 396.7950 0.0000 0.0000 400.000
+ 4 1.0000 0.0000 1.0000 -11.7500 362.962 56.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 40.4761 29.9144 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.6853 5.0000 16.7500 400.9970 396.6930 0.0000 0.0000 400.000
+ 5 1.0000 0.0000 1.0000 -11.5000 362.779 56.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 42.0320 30.7338 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.6853 5.0000 16.5000 400.6050 396.6750 0.0000 0.0000 400.000
+ 6 1.0000 0.0000 1.0000 -11.2500 362.260 71.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 43.5627 31.5406 -2.0000 1.0000 0.0000 0.0000 160.4651 -39.0695 1.6853 5.0000 16.2500 400.1720 396.7610 0.0000 0.0000 400.000
+ 7 1.0000 0.0000 1.0000 -11.0000 362.624 75.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 45.0706 32.3359 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 1.6853 5.0000 16.0000 399.9310 396.8880 0.0000 0.0000 400.000
+ 8 1.0000 0.0000 1.0000 -10.7500 362.339 71.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 46.5574 33.1208 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.6853 5.0000 15.7500 399.8720 397.0140 0.0000 0.0000 400.000
+ 9 1.0000 0.0000 1.0000 -10.5000 362.422 70.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 48.0252 33.8962 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 1.6853 5.0000 15.5000 399.9060 397.1170 0.0000 0.0000 400.000
+ 10 1.0000 0.0000 1.0000 -10.2500 363.037 99.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 49.4755 34.6632 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 1.6853 5.0000 15.2500 399.9630 397.1760 0.0000 0.0000 400.000
+ 11 1.0000 0.0000 1.0000 -10.0000 362.122 113.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.9098 35.4223 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 1.6853 5.0000 15.0000 400.0040 397.2320 0.0000 0.0000 400.000
+ 12 1.0000 0.0000 1.0000 -9.7499 361.514 137.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 52.3296 36.1745 -2.0000 1.0000 0.0000 0.0000 159.4534 -41.0933 1.6853 5.0000 14.7499 400.0190 397.2660 0.0000 0.0000 400.000
+ 13 1.0000 0.0000 1.0000 -9.5000 363.033 147.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 53.7361 36.9203 -2.0000 1.0000 0.0000 0.0000 159.2690 -41.4622 1.6853 5.0000 14.5000 400.0150 397.2960 0.0000 0.0000 400.000
+ 14 1.0000 0.0000 1.0000 -9.2500 361.479 206.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 55.1305 37.6604 -2.0000 1.0000 0.0000 0.0000 159.0794 -41.8412 1.6853 5.0000 14.2500 400.0080 397.3250 0.0000 0.0000 400.000
+ 15 1.0000 0.0000 1.0000 -9.0000 362.824 167.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 56.5139 38.3955 -2.0000 1.0000 0.0000 0.0000 158.8846 -42.2308 1.6853 5.0000 14.0000 400.0000 397.3540 0.0000 0.0000 400.000
+ 16 1.0000 0.0000 1.0000 -8.7500 362.001 173.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 57.8874 39.1260 -2.0000 1.0000 0.0000 0.0000 158.6842 -42.6316 1.6853 5.0000 13.7500 399.9990 397.3850 0.0000 0.0000 400.000
+ 17 1.0000 0.0000 1.0000 -8.5000 361.306 171.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 59.2518 39.8526 -2.0000 1.0000 0.0000 0.0000 158.4779 -43.0440 1.6853 5.0000 13.5000 399.9980 397.4010 0.0000 0.0000 400.000
+ 18 1.0000 0.0000 1.0000 -8.2500 361.963 107.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 60.6083 40.5758 -2.0000 1.0000 0.0000 0.0000 158.2657 -43.4686 1.6853 5.0000 13.2500 400.0000 397.4250 0.0000 0.0000 400.000
+ 19 1.0000 0.0000 1.0000 -8.0000 361.361 64.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.9577 41.2960 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 1.6853 5.0000 13.0000 400.0000 397.4410 0.0000 0.0000 400.000
+ 20 1.0000 0.0000 1.0000 -7.7500 361.369 52.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.3008 42.0137 -2.0000 1.0000 0.0000 0.0000 157.8214 -44.3571 1.6853 5.0000 12.7500 399.9990 397.4550 0.0000 0.0000 400.000
+ 21 1.0000 0.0000 1.0000 -7.5000 363.074 75.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.6383 42.7294 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.6853 5.0000 12.5000 399.9980 397.4730 0.0000 0.0000 400.000
+ 22 1.0000 0.0000 1.0000 -7.2500 363.081 59.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.9712 43.4436 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.6853 5.0000 12.2500 400.0000 397.4870 0.0000 0.0000 400.000
+# Sum of Counts = 2118
+# Center of Mass = -9.581320+/-0.295823
+# Full Width Half-Maximum = 2.641929+/-0.123520
+# 10:11:01 PM 6/23/2012 scan completed.
+
+10:11:01 PM 6/23/2012 Executing "scantitle "LA at L (1.5, 0, 1.5), T=390K""
+
+Setting the scantitle to:
+LA at L (1.5, 0, 1.5), T=390K
+
+
+10:11:01 PM 6/23/2012 Executing "scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3"
+
+
+# scan = 55
+# date = 6/23/2012
+# time = 10:11:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5, 0, 1.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 3.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 181.127 58.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.2458 72.2344 -2.0000 1.0000 0.0000 0.0000 158.2225 -43.5551 2.5280 5.0000 13.2000 399.9990 397.5030 0.0000 0.0000 400.000
+ 2 1.5000 0.0000 1.5000 -8.0000 181.462 47.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.9880 72.8390 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 2.5280 5.0000 13.0000 400.0010 397.5020 0.0000 0.0000 400.000
+ 3 1.5000 0.0000 1.5000 -7.8000 182.028 49.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.7335 73.4499 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 2.5280 5.0000 12.8000 400.0010 397.5020 0.0000 0.0000 400.000
+ 4 1.5000 0.0000 1.5000 -7.5999 181.133 35.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.4824 74.0674 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6346 2.5280 5.0000 12.5999 400.0010 397.5210 0.0000 0.0000 400.000
+ 5 1.5000 0.0000 1.5000 -7.4000 181.013 85.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.2349 74.6918 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 2.5280 5.0000 12.4000 399.9980 397.5090 0.0000 0.0000 400.000
+ 6 1.5000 0.0000 1.5000 -7.2000 181.491 132.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.9913 75.3234 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 2.5280 5.0000 12.2000 400.0000 397.5170 0.0000 0.0000 400.000
+ 7 1.5000 0.0000 1.5000 -7.0000 181.670 167.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.7517 75.9626 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 2.5280 5.0000 12.0000 400.0000 397.5140 0.0000 0.0000 400.000
+ 8 1.5000 0.0000 1.5000 -6.8000 181.143 143.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.5163 76.6096 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 2.5280 5.0000 11.8000 399.9960 397.5260 0.0000 0.0000 400.000
+ 9 1.5000 0.0000 1.5000 -6.6000 181.608 114.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.2853 77.2650 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 2.5280 5.0000 11.6000 400.0030 397.5270 0.0000 0.0000 400.000
+ 10 1.5000 0.0000 1.5000 -6.4000 180.837 84.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.0590 77.9292 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0590 2.5280 5.0000 11.4000 399.9950 397.5390 0.0000 0.0000 400.000
+ 11 1.5000 0.0000 1.5000 -6.2000 181.631 64.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.8375 78.6024 -2.0000 1.0000 0.0000 0.0000 156.2485 -47.5028 2.5280 5.0000 11.2000 400.0020 397.5330 0.0000 0.0000 400.000
+ 12 1.5000 0.0000 1.5000 -6.0000 181.228 44.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.6211 79.2852 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.5280 5.0000 11.0000 399.9990 397.5460 0.0000 0.0000 400.000
+ 13 1.5000 0.0000 1.5000 -5.8000 181.773 32.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 100.4102 79.9780 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.5280 5.0000 10.8000 399.9940 397.5450 0.0000 0.0000 400.000
+ 14 1.5000 0.0000 1.5000 -5.6000 181.328 24.000 245955.000 3.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 101.2048 80.6814 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.5280 5.0000 10.6000 400.0060 397.5380 0.0000 0.0000 400.000
+# Sum of Counts = 1078
+# Center of Mass = -6.949347+/-0.299937
+# Full Width Half-Maximum = 1.252634+/-0.140142
+# 10:54:24 PM 6/23/2012 scan completed.
+
+10:54:25 PM 6/23/2012 Executing "scantitle "LA at X (-1.5, 0, 0), T=390K""
+
+Setting the scantitle to:
+LA at X (-1.5, 0, 0), T=390K
+
+
+10:54:25 PM 6/23/2012 Executing "scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5"
+
+
+# scan = 56
+# date = 6/23/2012
+# time = 10:54:25 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+# builtin_command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (-1.5, 0, 0), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -5.2500 90.666 19.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.8256 76.5870 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 2.3993 5.0000 10.2500 399.9970 397.5440 0.0000 0.0000 400.000
+ 2 -1.5000 0.0000 0.0000 -5.0000 90.454 20.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -61.7926 77.4569 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4598 2.3993 5.0000 10.0000 400.0010 397.5580 0.0000 0.0000 400.000
+ 3 -1.5000 0.0000 0.0000 -4.7500 90.843 31.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7502 78.3439 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 2.3993 5.0000 9.7500 400.0060 397.5450 0.0000 0.0000 400.000
+ 4 -1.5000 0.0000 0.0000 -4.5000 91.028 67.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.6976 79.2490 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.3993 5.0000 9.5000 400.0020 397.5420 0.0000 0.0000 400.000
+ 5 -1.5000 0.0000 0.0000 -4.2500 90.917 147.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.6344 80.1735 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 2.3993 5.0000 9.2500 399.9940 397.5560 0.0000 0.0000 400.000
+ 6 -1.5000 0.0000 0.0000 -4.0000 90.716 281.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.5598 81.1188 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.3993 5.0000 9.0000 399.9910 397.5480 0.0000 0.0000 400.000
+ 7 -1.5000 0.0000 0.0000 -3.7500 90.850 359.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.4730 82.0866 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 2.3993 5.0000 8.7500 400.0030 397.5550 0.0000 0.0000 400.000
+ 8 -1.5000 0.0000 0.0000 -3.5000 90.288 298.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -55.3731 83.0783 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.3993 5.0000 8.5000 400.0110 397.5510 0.0000 0.0000 400.000
+ 9 -1.5000 0.0000 0.0000 -3.2500 90.875 78.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.2594 84.0960 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 2.3993 5.0000 8.2500 399.9820 397.5370 0.0000 0.0000 400.000
+ 10 -1.5000 0.0000 0.0000 -3.0000 90.776 37.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.1307 85.1416 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.3993 5.0000 8.0000 400.0110 397.5590 0.0000 0.0000 400.000
+ 11 -1.5000 0.0000 0.0000 -2.7500 90.912 28.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.9860 86.2176 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 2.3993 5.0000 7.7500 399.9920 397.5470 0.0000 0.0000 400.000
+ 12 -1.5000 0.0000 0.0000 -2.5000 91.259 19.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.8242 87.3264 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.3993 5.0000 7.5000 400.0050 397.5430 0.0000 0.0000 400.000
+# Sum of Counts = 1384
+# Center of Mass = -3.811777+/-0.145456
+# Full Width Half-Maximum = 0.944015+/-0.075647
+# 11:14:31 PM 6/23/2012 scan completed.
+
+11:14:31 PM 6/23/2012 Executing "scantitle "LA + TA at T (-1,0,3.5), T=390K""
+
+Setting the scantitle to:
+LA + TA at T (-1,0,3.5), T=390K
+
+
+11:14:31 PM 6/23/2012 Executing "scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5"
+
+
+# scan = 57
+# date = 6/23/2012
+# time = 11:14:31 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+# builtin_command = scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA at T (-1,0,3.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.500000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 3.5000 -8.7000 91.173 41.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.4136 67.8300 -2.0000 1.0000 0.0000 0.0000 158.6434 -42.7131 2.4515 5.0000 13.7000 400.0030 397.5500 0.0000 0.0000 400.000
+ 2 -1.0000 0.0000 3.5000 -8.6000 91.223 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.0395 68.1192 -2.0000 1.0000 0.0000 0.0000 158.5612 -42.8776 2.4515 5.0000 13.6000 399.9910 397.5610 0.0000 0.0000 400.000
+ 3 -1.0000 0.0000 3.5000 -8.5000 91.232 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.6648 68.4096 -2.0000 1.0000 0.0000 0.0000 158.4780 -43.0440 2.4515 5.0000 13.5000 399.9950 397.5630 0.0000 0.0000 400.000
+ 4 -1.0000 0.0000 3.5000 -8.4000 90.536 28.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.2895 68.7013 -2.0000 1.0000 0.0000 0.0000 158.3938 -43.2124 2.4515 5.0000 13.4000 400.0050 397.5670 0.0000 0.0000 400.000
+ 5 -1.0000 0.0000 3.5000 -8.3000 91.463 42.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9136 68.9942 -2.0000 1.0000 0.0000 0.0000 158.3086 -43.3827 2.4515 5.0000 13.3000 400.0060 397.5670 0.0000 0.0000 400.000
+ 6 -1.0000 0.0000 3.5000 -8.2000 91.734 60.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5369 69.2885 -2.0000 1.0000 0.0000 0.0000 158.2225 -43.5551 2.4515 5.0000 13.2000 399.9940 397.5780 0.0000 0.0000 400.000
+ 7 -1.0000 0.0000 3.5000 -8.1000 91.054 58.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1596 69.5841 -2.0000 1.0000 0.0000 0.0000 158.1350 -43.7295 2.4515 5.0000 13.1000 399.9920 397.5570 0.0000 0.0000 400.000
+ 8 -1.0000 0.0000 3.5000 -8.0000 90.944 70.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7815 69.8811 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 2.4515 5.0000 13.0000 400.0020 397.5670 0.0000 0.0000 400.000
+ 9 -1.0000 0.0000 3.5000 -7.9000 90.807 56.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.4027 70.1795 -2.0000 1.0000 0.0000 0.0000 157.9576 -44.0849 2.4515 5.0000 12.9000 400.0030 397.5740 0.0000 0.0000 400.000
+ 10 -1.0000 0.0000 3.5000 -7.8000 91.108 80.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.0231 70.4794 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 2.4515 5.0000 12.8000 400.0000 397.5690 0.0000 0.0000 400.000
+ 11 -1.0000 0.0000 3.5000 -7.7000 91.082 79.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.6428 70.7807 -2.0000 1.0000 0.0000 0.0000 157.7755 -44.4490 2.4515 5.0000 12.7000 399.9990 397.5630 0.0000 0.0000 400.000
+ 12 -1.0000 0.0000 3.5000 -7.6000 90.884 83.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.2617 71.0836 -2.0000 1.0000 0.0000 0.0000 157.6828 -44.6345 2.4515 5.0000 12.6000 400.0000 397.5680 0.0000 0.0000 400.000
+ 13 -1.0000 0.0000 3.5000 -7.5000 91.484 68.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.8797 71.3880 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 2.4515 5.0000 12.5000 399.9990 397.5660 0.0000 0.0000 400.000
+ 14 -1.0000 0.0000 3.5000 -7.4000 90.727 90.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.4969 71.6940 -2.0000 1.0000 0.0000 0.0000 157.4936 -45.0126 2.4515 5.0000 12.4000 400.0010 397.5880 0.0000 0.0000 400.000
+ 15 -1.0000 0.0000 3.5000 -7.3000 91.104 114.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1133 72.0016 -2.0000 1.0000 0.0000 0.0000 157.3973 -45.2052 2.4515 5.0000 12.3000 399.9980 397.5710 0.0000 0.0000 400.000
+ 16 -1.0000 0.0000 3.5000 -7.2000 91.110 98.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.7287 72.3108 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 2.4515 5.0000 12.2000 399.9970 397.5760 0.0000 0.0000 400.000
+ 17 -1.0000 0.0000 3.5000 -7.1000 91.752 92.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.3433 72.6218 -2.0000 1.0000 0.0000 0.0000 157.2009 -45.5982 2.4515 5.0000 12.1000 400.0000 397.5780 0.0000 0.0000 400.000
+ 18 -1.0000 0.0000 3.5000 -7.0000 91.196 80.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.9569 72.9345 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 2.4515 5.0000 12.0000 400.0050 397.5790 0.0000 0.0000 400.000
+ 19 -1.0000 0.0000 3.5000 -6.9000 91.165 82.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.5695 73.2490 -2.0000 1.0000 0.0000 0.0000 156.9992 -46.0016 2.4515 5.0000 11.9000 400.0010 397.5760 0.0000 0.0000 400.000
+ 20 -1.0000 0.0000 3.5000 -6.8000 91.315 75.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.1812 73.5653 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2074 2.4515 5.0000 11.8000 399.9960 397.5860 0.0000 0.0000 400.000
+ 21 -1.0000 0.0000 3.5000 -6.7000 91.406 75.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.7918 73.8835 -2.0000 1.0000 0.0000 0.0000 156.7921 -46.4159 2.4515 5.0000 11.7000 399.9980 397.5790 0.0000 0.0000 400.000
+ 22 -1.0000 0.0000 3.5000 -6.6000 91.522 56.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4014 74.2036 -2.0000 1.0000 0.0000 0.0000 156.6864 -46.6273 2.4515 5.0000 11.6000 400.0000 397.5860 0.0000 0.0000 400.000
+ 23 -1.0000 0.0000 3.5000 -6.5000 92.045 81.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.0099 74.5256 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.4515 5.0000 11.5000 400.0020 397.5860 0.0000 0.0000 400.000
+ 24 -1.0000 0.0000 3.5000 -6.4000 91.350 83.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.6174 74.8497 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.4515 5.0000 11.4000 400.0010 397.5930 0.0000 0.0000 400.000
+ 25 -1.0000 0.0000 3.5000 -6.3000 90.729 57.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.2237 75.1758 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 2.4515 5.0000 11.3000 399.9990 397.5740 0.0000 0.0000 400.000
+ 26 -1.0000 0.0000 3.5000 -6.2000 90.755 56.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.8289 75.5040 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.4515 5.0000 11.2000 399.9930 397.5880 0.0000 0.0000 400.000
+ 27 -1.0000 0.0000 3.5000 -6.1000 90.926 48.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4328 75.8344 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.4515 5.0000 11.1000 400.0010 397.5850 0.0000 0.0000 400.000
+ 28 -1.0000 0.0000 3.5000 -6.0000 91.625 37.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.0356 76.1669 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.4515 5.0000 11.0000 400.0040 397.5860 0.0000 0.0000 400.000
+ 29 -1.0000 0.0000 3.5000 -5.8999 91.199 34.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.6372 76.5018 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1931 2.4515 5.0000 10.8999 400.0010 397.5980 0.0000 0.0000 400.000
+ 30 -1.0000 0.0000 3.5000 -5.8000 91.454 36.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2375 76.8389 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.4515 5.0000 10.8000 399.9970 397.5850 0.0000 0.0000 400.000
+ 31 -1.0000 0.0000 3.5000 -5.7000 91.452 34.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.8364 77.1784 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 2.4515 5.0000 10.7000 399.9980 397.5890 0.0000 0.0000 400.000
+ 32 -1.0000 0.0000 3.5000 -5.6000 91.395 39.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.4341 77.5204 -2.0000 1.0000 0.0000 0.0000 155.5428 -48.9142 2.4515 5.0000 10.6000 400.0020 397.5950 0.0000 0.0000 400.000
+ 33 -1.0000 0.0000 3.5000 -5.5000 91.255 44.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.0304 77.8649 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.4515 5.0000 10.5000 400.0050 397.5880 0.0000 0.0000 400.000
+ 34 -1.0000 0.0000 3.5000 -5.4000 91.731 57.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.6252 78.2120 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.4515 5.0000 10.4000 399.9990 397.5900 0.0000 0.0000 400.000
+ 35 -1.0000 0.0000 3.5000 -5.3000 91.589 64.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2187 78.5616 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.4515 5.0000 10.3000 399.9920 397.5980 0.0000 0.0000 400.000
+ 36 -1.0000 0.0000 3.5000 -5.2000 91.782 77.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8107 78.9140 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.4515 5.0000 10.2000 399.9970 397.5870 0.0000 0.0000 400.000
+ 37 -1.0000 0.0000 3.5000 -5.1000 91.152 90.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.4011 79.2692 -2.0000 1.0000 0.0000 0.0000 154.9040 -50.1919 2.4515 5.0000 10.1000 400.0000 397.5910 0.0000 0.0000 400.000
+ 38 -1.0000 0.0000 3.5000 -5.0000 91.596 119.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.9900 79.6271 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.4515 5.0000 10.0000 400.0010 397.5920 0.0000 0.0000 400.000
+ 39 -1.0000 0.0000 3.5000 -4.9000 91.415 143.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.5774 79.9880 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7319 2.4515 5.0000 9.9000 399.9980 397.5990 0.0000 0.0000 400.000
+ 40 -1.0000 0.0000 3.5000 -4.8000 91.678 168.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.1631 80.3520 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.4515 5.0000 9.8000 400.0000 397.5920 0.0000 0.0000 400.000
+ 41 -1.0000 0.0000 3.5000 -4.7000 91.244 136.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.7471 80.7189 -2.0000 1.0000 0.0000 0.0000 154.3551 -51.2898 2.4515 5.0000 9.7000 399.9980 397.6020 0.0000 0.0000 400.000
+ 42 -1.0000 0.0000 3.5000 -4.6000 91.798 137.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.3294 81.0891 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.4515 5.0000 9.6000 400.0000 397.5960 0.0000 0.0000 400.000
+ 43 -1.0000 0.0000 3.5000 -4.5000 91.822 96.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.9100 81.4625 -2.0000 1.0000 0.0000 0.0000 154.0666 -51.8666 2.4515 5.0000 9.5000 400.0020 397.5920 0.0000 0.0000 400.000
+ 44 -1.0000 0.0000 3.5000 -4.4000 91.498 79.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4888 81.8392 -2.0000 1.0000 0.0000 0.0000 153.9186 -52.1624 2.4515 5.0000 9.4000 400.0020 397.5960 0.0000 0.0000 400.000
+ 45 -1.0000 0.0000 3.5000 -4.3000 91.805 73.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.0657 82.2194 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4633 2.4515 5.0000 9.3000 400.0000 397.5970 0.0000 0.0000 400.000
+ 46 -1.0000 0.0000 3.5000 -4.2000 91.614 58.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.6407 82.6031 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 2.4515 5.0000 9.2000 400.0000 397.6010 0.0000 0.0000 400.000
+ 47 -1.0000 0.0000 3.5000 -4.1000 90.912 37.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.2138 82.9904 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 2.4515 5.0000 9.1000 400.0010 397.6010 0.0000 0.0000 400.000
+ 48 -1.0000 0.0000 3.5000 -4.0000 91.277 34.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.7849 83.3815 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.4515 5.0000 9.0000 399.9960 397.5840 0.0000 0.0000 400.000
+ 49 -1.0000 0.0000 3.5000 -3.9000 91.839 31.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.3539 83.7765 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.4515 5.0000 8.9000 399.9970 397.6010 0.0000 0.0000 400.000
+ 50 -1.0000 0.0000 3.5000 -3.8000 91.456 25.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.9209 84.1754 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0508 2.4515 5.0000 8.8000 399.9960 397.5860 0.0000 0.0000 400.000
+ 51 -1.0000 0.0000 3.5000 -3.7000 91.900 24.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.4857 84.5783 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.4515 5.0000 8.7000 399.9980 397.5940 0.0000 0.0000 400.000
+ 52 -1.0000 0.0000 3.5000 -3.6000 91.573 25.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.0482 84.9855 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.4515 5.0000 8.6000 400.0010 397.5970 0.0000 0.0000 400.000
+ 53 -1.0000 0.0000 3.5000 -3.5000 91.731 19.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.6085 85.3970 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.4515 5.0000 8.5000 400.0020 397.6010 0.0000 0.0000 400.000
+ 54 -1.0000 0.0000 3.5000 -3.4000 91.499 13.000 122978.000 1.500 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.1665 85.8130 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 2.4515 5.0000 8.4000 400.0000 397.6020 0.0000 0.0000 400.000
+# Sum of Counts = 3553
+# Center of Mass = -6.081845+/-0.146197
+# Full Width Half-Maximum = 2.801813+/-0.057355
+# 12:39:07 AM 6/24/2012 scan completed.
+
+12:39:07 AM 6/24/2012 Executing "scantitle "LO at L (1.5, 0, 1.5), T=390K""
+
+Setting the scantitle to:
+LO at L (1.5, 0, 1.5), T=390K
+
+
+12:39:07 AM 6/24/2012 Executing "scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6"
+
+
+# scan = 58
+# date = 6/24/2012
+# time = 12:39:07 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5, 0, 1.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.5000 365.144 67.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.2222 52.7450 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.5280 5.0000 20.5000 399.9920 397.6140 0.0000 0.0000 400.000
+ 2 1.5000 0.0000 1.5000 -15.2500 366.084 85.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.1100 53.3686 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.5280 5.0000 20.2500 399.9940 397.6060 0.0000 0.0000 400.000
+ 3 1.5000 0.0000 1.5000 -15.0000 365.944 59.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.9962 53.9931 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.5280 5.0000 20.0000 399.9990 397.6140 0.0000 0.0000 400.000
+ 4 1.5000 0.0000 1.5000 -14.7500 365.722 80.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.8808 54.6188 -2.0000 1.0000 0.0000 0.0000 162.3435 -35.3126 2.5280 5.0000 19.7500 400.0010 397.6000 0.0000 0.0000 400.000
+ 5 1.5000 0.0000 1.5000 -14.5000 366.020 86.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.7642 55.2460 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.5280 5.0000 19.5000 400.0040 397.6070 0.0000 0.0000 400.000
+ 6 1.5000 0.0000 1.5000 -14.2500 366.779 105.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.6465 55.8748 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.5280 5.0000 19.2500 400.0010 397.6240 0.0000 0.0000 400.000
+ 7 1.5000 0.0000 1.5000 -14.0000 366.866 144.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.5280 56.5056 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.5280 5.0000 19.0000 400.0000 397.6260 0.0000 0.0000 400.000
+ 8 1.5000 0.0000 1.5000 -13.7500 366.028 130.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.4088 57.1383 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.5280 5.0000 18.7500 399.9990 397.6170 0.0000 0.0000 400.000
+ 9 1.5000 0.0000 1.5000 -13.5000 366.227 157.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.2892 57.7733 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.5280 5.0000 18.5000 400.0000 397.6250 0.0000 0.0000 400.000
+ 10 1.5000 0.0000 1.5000 -13.2500 366.335 197.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.1694 58.4108 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.5280 5.0000 18.2500 399.9990 397.6100 0.0000 0.0000 400.000
+ 11 1.5000 0.0000 1.5000 -13.0000 366.577 172.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.0496 59.0511 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.5280 5.0000 18.0000 399.9970 397.6120 0.0000 0.0000 400.000
+ 12 1.5000 0.0000 1.5000 -12.7500 366.390 176.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.9300 59.6942 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.5280 5.0000 17.7500 399.9960 397.6110 0.0000 0.0000 400.000
+ 13 1.5000 0.0000 1.5000 -12.5000 366.620 121.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.8108 60.3406 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.5280 5.0000 17.5000 399.9970 397.6140 0.0000 0.0000 400.000
+ 14 1.5000 0.0000 1.5000 -12.2500 366.140 167.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.6922 60.9904 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.5280 5.0000 17.2500 399.9960 397.6070 0.0000 0.0000 400.000
+ 15 1.5000 0.0000 1.5000 -12.0000 367.253 125.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.5745 61.6438 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.5280 5.0000 17.0000 399.9950 397.6110 0.0000 0.0000 400.000
+ 16 1.5000 0.0000 1.5000 -11.7500 367.006 108.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.4578 62.3012 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.5280 5.0000 16.7500 399.9980 397.6060 0.0000 0.0000 400.000
+ 17 1.5000 0.0000 1.5000 -11.5000 366.789 88.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.3424 62.9628 -2.0000 1.0000 0.0000 0.0000 160.6196 -38.7605 2.5280 5.0000 16.5000 399.9990 397.6100 0.0000 0.0000 400.000
+ 18 1.5000 0.0000 1.5000 -11.2500 366.686 76.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.2284 63.6288 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.5280 5.0000 16.2500 400.0000 397.6220 0.0000 0.0000 400.000
+ 19 1.5000 0.0000 1.5000 -11.0000 367.683 75.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.1161 64.2995 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.5280 5.0000 16.0000 400.0010 397.6130 0.0000 0.0000 400.000
+ 20 1.5000 0.0000 1.5000 -10.7500 366.526 64.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.0058 64.9753 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.5280 5.0000 15.7500 400.0000 397.5980 0.0000 0.0000 400.000
+ 21 1.5000 0.0000 1.5000 -10.5000 367.080 50.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.8976 65.6564 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.5280 5.0000 15.5000 399.9940 397.6100 0.0000 0.0000 400.000
+# Sum of Counts = 2332
+# Center of Mass = -13.031089+/-0.382523
+# Full Width Half-Maximum = 2.536271+/-0.153777
+# 2:48:46 AM 6/24/2012 scan completed.
+
+2:48:46 AM 6/24/2012 Executing "scantitle "LO at T (0, 0, 4.5), T=390K""
+
+Setting the scantitle to:
+LO at T (0, 0, 4.5), T=390K
+
+
+2:48:46 AM 6/24/2012 Executing "scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 6"
+
+
+# scan = 59
+# date = 6/24/2012
+# time = 2:48:46 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 6
+# builtin_command = scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0, 0, 4.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 4.5000 -16.2500 366.846 66.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1784 45.5870 -2.0000 1.0000 0.0000 0.0000 162.9980 -34.0041 2.3886 5.0000 21.2500 399.9920 397.6110 0.0000 0.0000 400.000
+ 2 0.0000 0.0000 4.5000 -15.9999 365.760 63.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2081 46.2288 -2.0000 1.0000 0.0000 0.0000 162.8940 -34.2122 2.3886 5.0000 20.9999 399.9950 397.6010 0.0000 0.0000 400.000
+ 3 0.0000 0.0000 4.5000 -15.7500 367.200 63.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.2424 46.8694 -2.0000 1.0000 0.0000 0.0000 162.7880 -34.4240 2.3886 5.0000 20.7500 400.0000 397.6030 0.0000 0.0000 400.000
+ 4 0.0000 0.0000 4.5000 -15.5000 366.723 72.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2810 47.5091 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.3886 5.0000 20.5000 400.0030 397.6030 0.0000 0.0000 400.000
+ 5 0.0000 0.0000 4.5000 -15.2500 366.693 78.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.3236 48.1481 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.3886 5.0000 20.2500 400.0010 397.6020 0.0000 0.0000 400.000
+ 6 0.0000 0.0000 4.5000 -15.0000 366.533 102.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.3698 48.7867 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 2.3886 5.0000 20.0000 399.9990 397.6190 0.0000 0.0000 400.000
+ 7 0.0000 0.0000 4.5000 -14.7500 366.904 129.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.4194 49.4250 -2.0000 1.0000 0.0000 0.0000 162.3436 -35.3126 2.3886 5.0000 19.7500 399.9960 397.6050 0.0000 0.0000 400.000
+ 8 0.0000 0.0000 4.5000 -14.5000 367.016 159.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.4720 50.0634 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3886 5.0000 19.5000 399.9990 397.5940 0.0000 0.0000 400.000
+ 9 0.0000 0.0000 4.5000 -14.2500 367.654 151.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.5274 50.7021 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3886 5.0000 19.2500 399.9990 397.6120 0.0000 0.0000 400.000
+ 10 0.0000 0.0000 4.5000 -14.0000 367.320 183.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.5852 51.3412 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3886 5.0000 19.0000 400.0000 397.6080 0.0000 0.0000 400.000
+ 11 0.0000 0.0000 4.5000 -13.7500 367.002 182.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.6453 51.9810 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3886 5.0000 18.7500 399.9970 397.6000 0.0000 0.0000 400.000
+ 12 0.0000 0.0000 4.5000 -13.5000 367.434 182.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.7073 52.6218 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3886 5.0000 18.5000 399.9970 397.6080 0.0000 0.0000 400.000
+ 13 0.0000 0.0000 4.5000 -13.2500 367.445 164.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -3.7710 53.2638 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3886 5.0000 18.2500 399.9960 397.6040 0.0000 0.0000 400.000
+ 14 0.0000 0.0000 4.5000 -13.0000 367.021 150.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.8362 53.9072 -2.0000 1.0000 0.0000 0.0000 161.4755 -37.0488 2.3886 5.0000 18.0000 399.9960 397.5920 0.0000 0.0000 400.000
+ 15 0.0000 0.0000 4.5000 -12.7500 366.507 146.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.9024 54.5523 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3886 5.0000 17.7500 399.9930 397.5970 0.0000 0.0000 400.000
+ 16 0.0000 0.0000 4.5000 -12.5000 366.204 127.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.9696 55.1992 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3886 5.0000 17.5000 399.9950 397.5930 0.0000 0.0000 400.000
+ 17 0.0000 0.0000 4.5000 -12.2500 366.693 119.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0375 55.8483 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3886 5.0000 17.2500 399.9930 397.5880 0.0000 0.0000 400.000
+ 18 0.0000 0.0000 4.5000 -12.0000 366.012 85.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.8942 56.4998 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3886 5.0000 17.0000 400.0000 397.5930 0.0000 0.0000 400.000
+ 19 0.0000 0.0000 4.5000 -11.7500 367.045 60.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 1.8257 57.1538 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3886 5.0000 16.7500 400.0040 397.5950 0.0000 0.0000 400.000
+ 20 0.0000 0.0000 4.5000 -11.4999 366.515 67.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 2.7573 57.8108 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7606 2.3886 5.0000 16.4999 400.0070 397.5810 0.0000 0.0000 400.000
+ 21 0.0000 0.0000 4.5000 -11.2500 367.796 69.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 3.6892 58.4709 -2.0000 1.0000 0.0000 0.0000 160.4650 -39.0695 2.3886 5.0000 16.2500 400.0000 397.5800 0.0000 0.0000 400.000
+ 22 0.0000 0.0000 4.5000 -11.0000 367.828 56.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 4.6217 59.1344 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3886 5.0000 16.0000 400.0030 397.5700 0.0000 0.0000 400.000
+# Sum of Counts = 2473
+# Center of Mass = -13.630100+/-0.388504
+# Full Width Half-Maximum = 2.610773+/-0.151401
+# 5:04:57 AM 6/24/2012 scan completed.
+
+5:04:57 AM 6/24/2012 Executing "scantitle "LO at X (-1.5, 0, 0), T=390K""
+
+Setting the scantitle to:
+LO at X (-1.5, 0, 0), T=390K
+
+
+5:04:57 AM 6/24/2012 Executing "scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10"
+
+
+# scan = 60
+# date = 6/24/2012
+# time = 5:04:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# builtin_command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (-1.5, 0, 0), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 10.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -14.5000 612.377 101.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.0280 50.4633 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 400.0000 397.5710 0.0000 0.0000 400.000
+ 2 -1.5000 0.0000 0.0000 -14.2499 611.671 88.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -97.0888 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2499 399.9990 397.5690 0.0000 0.0000 400.000
+ 3 -1.5000 0.0000 0.0000 -14.0000 612.646 87.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -96.1518 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3993 5.0000 19.0000 400.0000 397.5980 0.0000 0.0000 400.000
+ 4 -1.5000 0.0000 0.0000 -13.7500 611.492 100.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -95.2170 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 399.9960 397.5770 0.0000 0.0000 400.000
+ 5 -1.5000 0.0000 0.0000 -13.5000 610.668 114.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.2840 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3993 5.0000 18.5000 400.0050 397.5890 0.0000 0.0000 400.000
+ 6 -1.5000 0.0000 0.0000 -13.2500 610.130 134.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -93.3525 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3993 5.0000 18.2500 399.9960 397.5880 0.0000 0.0000 400.000
+ 7 -1.5000 0.0000 0.0000 -13.0000 609.941 179.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -92.4224 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3993 5.0000 18.0000 399.9970 397.5810 0.0000 0.0000 400.000
+ 8 -1.5000 0.0000 0.0000 -12.7500 609.334 170.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.4932 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3993 5.0000 17.7500 399.9980 397.5940 0.0000 0.0000 400.000
+ 9 -1.5000 0.0000 0.0000 -12.5000 610.348 199.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -90.5649 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3993 5.0000 17.5000 399.9970 397.5850 0.0000 0.0000 400.000
+ 10 -1.5000 0.0000 0.0000 -12.2500 608.191 187.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -89.6372 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 400.0000 397.5900 0.0000 0.0000 400.000
+ 11 -1.5000 0.0000 0.0000 -12.0000 608.351 185.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.7097 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3993 5.0000 17.0000 399.9960 397.5770 0.0000 0.0000 400.000
+ 12 -1.5000 0.0000 0.0000 -11.7500 608.913 156.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -87.7823 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 400.0020 397.5870 0.0000 0.0000 400.000
+ 13 -1.5000 0.0000 0.0000 -11.5000 606.665 175.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -86.8548 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3993 5.0000 16.5000 399.9990 397.5950 0.0000 0.0000 400.000
+ 14 -1.5000 0.0000 0.0000 -11.2500 608.063 129.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.9268 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4650 -39.0695 2.3993 5.0000 16.2500 399.9950 397.5900 0.0000 0.0000 400.000
+ 15 -1.5000 0.0000 0.0000 -11.0000 606.141 131.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.9982 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 399.9980 397.5900 0.0000 0.0000 400.000
+ 16 -1.5000 0.0000 0.0000 -10.7500 606.365 79.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.0686 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 399.9990 397.5940 0.0000 0.0000 400.000
+ 17 -1.5000 0.0000 0.0000 -10.5000 606.433 90.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.1379 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.3993 5.0000 15.5000 399.9980 397.5930 0.0000 0.0000 400.000
+ 18 -1.5000 0.0000 0.0000 -10.2500 605.562 89.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -82.2058 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 400.0000 397.5980 0.0000 0.0000 400.000
+ 19 -1.5000 0.0000 0.0000 -10.0000 605.165 92.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -81.2720 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 399.9990 397.6040 0.0000 0.0000 400.000
+# Sum of Counts = 2485
+# Center of Mass = -12.266797+/-0.348835
+# Full Width Half-Maximum = 2.400394+/-0.149828
+# 8:19:21 AM 6/24/2012 scan completed.
+
+8:19:21 AM 6/24/2012 Executing "scantitle "LA+TA G-L (-0.7, 0, 2.3), T=390K""
+
+Setting the scantitle to:
+LA+TA G-L (-0.7, 0, 2.3), T=390K
+
+
+8:19:21 AM 6/24/2012 Executing "scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2"
+
+
+# scan = 61
+# date = 6/24/2012
+# time = 8:19:21 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+# builtin_command = scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-L (-0.7, 0, 2.3), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7000 0.0000 2.3000 -8.0000 120.862 18.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.5004 40.2118 -2.0000 1.0000 0.0000 0.0000 158.0470 -43.9061 1.6566 5.0000 13.0000 399.9980 397.5860 0.0000 0.0000 400.000
+ 2 -0.7000 0.0000 2.3000 -7.8000 121.016 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.4019 40.7903 -2.0000 1.0000 0.0000 0.0000 157.8671 -44.2658 1.6566 5.0000 12.8000 399.9990 397.5920 0.0000 0.0000 400.000
+ 3 -0.7000 0.0000 2.3000 -7.6000 120.930 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.3077 41.3670 -2.0000 1.0000 0.0000 0.0000 157.6827 -44.6345 1.6566 5.0000 12.6000 399.9990 397.5840 0.0000 0.0000 400.000
+ 4 -0.7000 0.0000 2.3000 -7.4000 121.320 29.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -50.2172 41.9422 -2.0000 1.0000 0.0000 0.0000 157.4938 -45.0126 1.6566 5.0000 12.4000 399.9980 397.5920 0.0000 0.0000 400.000
+ 5 -0.7000 0.0000 2.3000 -7.2000 121.231 29.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.1302 42.5160 -2.0000 1.0000 0.0000 0.0000 157.2998 -45.4004 1.6566 5.0000 12.2000 399.9980 397.5920 0.0000 0.0000 400.000
+ 6 -0.7000 0.0000 2.3000 -7.0000 120.935 39.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.0460 43.0888 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.6566 5.0000 12.0000 399.9960 397.6000 0.0000 0.0000 400.000
+ 7 -0.7000 0.0000 2.3000 -6.8000 121.012 47.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.9645 43.6608 -2.0000 1.0000 0.0000 0.0000 156.8963 -46.2073 1.6566 5.0000 11.8000 399.9950 397.5900 0.0000 0.0000 400.000
+ 8 -0.7000 0.0000 2.3000 -6.6000 121.107 57.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.8850 44.2322 -2.0000 1.0000 0.0000 0.0000 156.6863 -46.6273 1.6566 5.0000 11.6000 400.0000 397.5870 0.0000 0.0000 400.000
+ 9 -0.7000 0.0000 2.3000 -6.4000 121.285 35.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.8073 44.8032 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 1.6566 5.0000 11.4000 399.9980 397.5910 0.0000 0.0000 400.000
+ 10 -0.7000 0.0000 2.3000 -6.2000 121.021 22.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7310 45.3740 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 1.6566 5.0000 11.2000 399.9950 397.5950 0.0000 0.0000 400.000
+ 11 -0.7000 0.0000 2.3000 -6.0000 120.627 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.6556 45.9450 -2.0000 1.0000 0.0000 0.0000 156.0200 -47.9596 1.6566 5.0000 11.0000 399.9980 397.5860 0.0000 0.0000 400.000
+ 12 -0.7000 0.0000 2.3000 -5.8000 121.262 28.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.5808 46.5162 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 1.6566 5.0000 10.8000 399.9950 397.5870 0.0000 0.0000 400.000
+ 13 -0.7000 0.0000 2.3000 -5.6000 120.719 27.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5063 47.0879 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 1.6566 5.0000 10.6000 399.9940 397.5930 0.0000 0.0000 400.000
+ 14 -0.7000 0.0000 2.3000 -5.4000 120.439 61.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.4316 47.6604 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4135 1.6566 5.0000 10.4000 400.0000 397.5820 0.0000 0.0000 400.000
+ 15 -0.7000 0.0000 2.3000 -5.2000 120.352 115.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.3563 48.2339 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 1.6566 5.0000 10.2000 400.0010 397.5990 0.0000 0.0000 400.000
+ 16 -0.7000 0.0000 2.3000 -5.0000 121.439 159.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.2801 48.8085 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.6566 5.0000 10.0000 399.9990 397.6010 0.0000 0.0000 400.000
+ 17 -0.7000 0.0000 2.3000 -4.8000 120.695 153.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -36.2026 49.3846 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 1.6566 5.0000 9.8000 400.0020 397.5940 0.0000 0.0000 400.000
+ 18 -0.7000 0.0000 2.3000 -4.6000 121.181 94.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.1234 49.9624 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 1.6566 5.0000 9.6000 399.9980 397.6060 0.0000 0.0000 400.000
+ 19 -0.7000 0.0000 2.3000 -4.4000 121.047 41.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.0422 50.5421 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1625 1.6566 5.0000 9.4000 399.9980 397.5840 0.0000 0.0000 400.000
+ 20 -0.7000 0.0000 2.3000 -4.2000 120.733 50.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.9584 51.1240 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 1.6566 5.0000 9.2000 399.9970 397.5930 0.0000 0.0000 400.000
+ 21 -0.7000 0.0000 2.3000 -4.0000 121.051 41.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -31.8718 51.7082 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.6566 5.0000 9.0000 400.0010 397.5910 0.0000 0.0000 400.000
+# Sum of Counts = 1122
+# Center of Mass = -5.527986+/-0.235526
+# Full Width Half-Maximum = 2.119245+/-0.116190
+# 9:02:59 AM 6/24/2012 scan completed.
+
+9:02:59 AM 6/24/2012 Executing "scantitle "LA+TA G-X (-0.75, 0, 1.5), T=390K""
+
+Setting the scantitle to:
+LA+TA G-X (-0.75, 0, 1.5), T=390K
+
+
+9:02:59 AM 6/24/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4"
+
+
+# scan = 62
+# date = 6/24/2012
+# time = 9:02:59 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 241.091 37.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3730 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 399.9960 397.5920 0.0000 0.0000 400.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 241.452 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 399.9840 397.5820 0.0000 0.0000 400.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 243.804 47.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 400.0080 397.5930 0.0000 0.0000 400.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 243.473 51.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 399.9960 397.5950 0.0000 0.0000 400.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 244.095 77.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 399.9820 397.6080 0.0000 0.0000 400.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 243.866 141.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 400.0140 397.5940 0.0000 0.0000 400.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 244.308 140.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 399.9830 397.6110 0.0000 0.0000 400.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 243.387 96.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 400.0120 397.5980 0.0000 0.0000 400.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 242.404 64.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 399.9910 397.6000 0.0000 0.0000 400.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 243.418 38.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 399.9990 397.5860 0.0000 0.0000 400.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 242.950 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4598 1.4398 5.0000 10.0000 399.9980 397.5970 0.0000 0.0000 400.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 241.618 27.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 399.9970 397.6090 0.0000 0.0000 400.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 241.766 22.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 400.0050 397.6130 0.0000 0.0000 400.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 242.241 26.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 399.9920 397.6130 0.0000 0.0000 400.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 241.848 20.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 400.0070 397.6020 0.0000 0.0000 400.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 241.875 19.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 399.9950 397.6050 0.0000 0.0000 400.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 240.641 12.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 400.0030 397.6130 0.0000 0.0000 400.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 241.060 25.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 399.9960 397.6120 0.0000 0.0000 400.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 241.167 20.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.4398 5.0000 8.0000 399.9990 397.6150 0.0000 0.0000 400.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 241.091 46.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9187 1.4398 5.0000 7.7500 400.0040 397.5950 0.0000 0.0000 400.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 241.527 70.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 399.9880 397.6020 0.0000 0.0000 400.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 241.383 68.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 400.0040 397.6200 0.0000 0.0000 400.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 240.751 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 399.9990 397.6150 0.0000 0.0000 400.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 241.098 36.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5058 1.4398 5.0000 6.7500 400.0070 397.6160 0.0000 0.0000 400.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 240.931 18.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0824 -63.8352 1.4398 5.0000 6.5000 399.9930 397.6050 0.0000 0.0000 400.000
+# Sum of Counts = 1172
+# Center of Mass = -4.978456+/-0.211863
+# Full Width Half-Maximum = 3.485107+/-0.128230
+# 10:45:28 AM 6/24/2012 scan completed.
+
+10:45:28 AM 6/24/2012 Executing "scantitle "LA+TA G-T (-1, 0, 2.9), T=390K""
+
+Setting the scantitle to:
+LA+TA G-T (-1, 0, 2.9), T=390K
+
+
+10:45:28 AM 6/24/2012 Executing "scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1"
+
+
+# scan = 63
+# date = 6/24/2012
+# time = 10:45:28 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# builtin_command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-T (-1, 0, 2.9), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -6.5000 60.446 19.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.4904 65.5036 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.2199 5.0000 11.5000 399.9990 397.6180 0.0000 0.0000 400.000
+ 2 -1.0000 0.0000 2.9000 -6.4000 59.989 24.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0748 65.8059 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.2199 5.0000 11.4000 399.9960 397.6030 0.0000 0.0000 400.000
+ 3 -1.0000 0.0000 2.9000 -6.3000 60.330 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.6584 66.1098 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 2.2199 5.0000 11.3000 399.9920 397.6130 0.0000 0.0000 400.000
+ 4 -1.0000 0.0000 2.9000 -6.2000 60.237 28.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2411 66.4150 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.2199 5.0000 11.2000 399.9940 397.5910 0.0000 0.0000 400.000
+ 5 -1.0000 0.0000 2.9000 -6.1000 60.055 32.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.8229 66.7218 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.2199 5.0000 11.1000 399.9990 397.5910 0.0000 0.0000 400.000
+ 6 -1.0000 0.0000 2.9000 -6.0000 60.530 55.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4038 67.0302 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.2199 5.0000 11.0000 400.0030 397.6100 0.0000 0.0000 400.000
+ 7 -1.0000 0.0000 2.9000 -5.9000 60.194 61.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9838 67.3402 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 2.2199 5.0000 10.9000 399.9990 397.5960 0.0000 0.0000 400.000
+ 8 -1.0000 0.0000 2.9000 -5.8000 60.421 101.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5628 67.6518 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.2199 5.0000 10.8000 399.9990 397.6080 0.0000 0.0000 400.000
+ 9 -1.0000 0.0000 2.9000 -5.7000 60.032 159.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1408 67.9651 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 2.2199 5.0000 10.7000 399.9980 397.5930 0.0000 0.0000 400.000
+ 10 -1.0000 0.0000 2.9000 -5.6000 59.920 155.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.7177 68.2802 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.2199 5.0000 10.6000 399.9960 397.6080 0.0000 0.0000 400.000
+ 11 -1.0000 0.0000 2.9000 -5.5000 60.514 141.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.2936 68.5970 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.2199 5.0000 10.5000 399.9970 397.6130 0.0000 0.0000 400.000
+ 12 -1.0000 0.0000 2.9000 -5.4000 60.278 70.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.8684 68.9156 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.2199 5.0000 10.4000 400.0020 397.6020 0.0000 0.0000 400.000
+ 13 -1.0000 0.0000 2.9000 -5.3000 59.768 46.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.4420 69.2362 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.2199 5.0000 10.3000 400.0000 397.5900 0.0000 0.0000 400.000
+ 14 -1.0000 0.0000 2.9000 -5.2000 60.501 24.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.0145 69.5586 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.2199 5.0000 10.2000 400.0000 397.6080 0.0000 0.0000 400.000
+ 15 -1.0000 0.0000 2.9000 -5.1000 60.558 25.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5858 69.8830 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1919 2.2199 5.0000 10.1000 399.9980 397.6050 0.0000 0.0000 400.000
+ 16 -1.0000 0.0000 2.9000 -5.0000 60.164 25.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1559 70.2095 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.2199 5.0000 10.0000 399.9970 397.6090 0.0000 0.0000 400.000
+ 17 -1.0000 0.0000 2.9000 -4.9000 60.030 18.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7246 70.5380 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7319 2.2199 5.0000 9.9000 399.9970 397.6100 0.0000 0.0000 400.000
+ 18 -1.0000 0.0000 2.9000 -4.8000 60.210 20.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.2921 70.8687 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.2199 5.0000 9.8000 399.9960 397.6030 0.0000 0.0000 400.000
+ 19 -1.0000 0.0000 2.9000 -4.7000 59.887 12.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.8583 71.2016 -2.0000 1.0000 0.0000 0.0000 154.3550 -51.2898 2.2199 5.0000 9.7000 399.9980 397.6100 0.0000 0.0000 400.000
+ 20 -1.0000 0.0000 2.9000 -4.6000 59.910 25.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4230 71.5367 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.2199 5.0000 9.6000 400.0000 397.6030 0.0000 0.0000 400.000
+ 21 -1.0000 0.0000 2.9000 -4.5000 60.105 30.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9864 71.8742 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.2199 5.0000 9.5000 400.0030 397.5990 0.0000 0.0000 400.000
+ 22 -1.0000 0.0000 2.9000 -4.4000 60.142 26.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.5483 72.2141 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 2.2199 5.0000 9.4000 400.0010 397.6060 0.0000 0.0000 400.000
+ 23 -1.0000 0.0000 2.9000 -4.3000 60.158 37.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1087 72.5564 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4634 2.2199 5.0000 9.3000 399.9980 397.5940 0.0000 0.0000 400.000
+ 24 -1.0000 0.0000 2.9000 -4.2000 60.107 88.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.6676 72.9012 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 2.2199 5.0000 9.2000 399.9930 397.5950 0.0000 0.0000 400.000
+ 25 -1.0000 0.0000 2.9000 -4.1000 60.129 164.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2248 73.2487 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 2.2199 5.0000 9.1000 399.9970 397.6080 0.0000 0.0000 400.000
+ 26 -1.0000 0.0000 2.9000 -4.0000 60.460 214.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.7805 73.5988 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.2199 5.0000 9.0000 399.9980 397.6030 0.0000 0.0000 400.000
+ 27 -1.0000 0.0000 2.9000 -3.9000 60.505 257.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3345 73.9517 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.2199 5.0000 8.9000 400.0030 397.6050 0.0000 0.0000 400.000
+ 28 -1.0000 0.0000 2.9000 -3.8000 60.513 210.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.8867 74.3074 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0508 2.2199 5.0000 8.8000 400.0010 397.6080 0.0000 0.0000 400.000
+ 29 -1.0000 0.0000 2.9000 -3.7000 60.170 178.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4372 74.6660 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.2199 5.0000 8.7000 399.9990 397.6080 0.0000 0.0000 400.000
+ 30 -1.0000 0.0000 2.9000 -3.6000 60.400 239.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.9859 75.0276 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.2199 5.0000 8.6000 399.9960 397.6050 0.0000 0.0000 400.000
+ 31 -1.0000 0.0000 2.9000 -3.5000 60.404 179.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.5328 75.3923 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.2199 5.0000 8.5000 400.0020 397.6110 0.0000 0.0000 400.000
+ 32 -1.0000 0.0000 2.9000 -3.4000 59.756 96.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.0777 75.7602 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4305 2.2199 5.0000 8.4000 400.0010 397.6060 0.0000 0.0000 400.000
+ 33 -1.0000 0.0000 2.9000 -3.3000 60.405 68.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.6206 76.1314 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7924 2.2199 5.0000 8.3000 400.0030 397.6120 0.0000 0.0000 400.000
+ 34 -1.0000 0.0000 2.9000 -3.2000 60.144 66.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1616 76.5059 -2.0000 1.0000 0.0000 0.0000 151.9193 -56.1615 2.2199 5.0000 8.2000 399.9980 397.6020 0.0000 0.0000 400.000
+ 35 -1.0000 0.0000 2.9000 -3.1000 60.047 48.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.7004 76.8839 -2.0000 1.0000 0.0000 0.0000 151.7310 -56.5380 2.2199 5.0000 8.1000 399.9920 397.5870 0.0000 0.0000 400.000
+ 36 -1.0000 0.0000 2.9000 -3.0000 59.871 43.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2371 77.2656 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.2199 5.0000 8.0000 399.9960 397.6000 0.0000 0.0000 400.000
+ 37 -1.0000 0.0000 2.9000 -2.9000 60.318 39.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.7716 77.6509 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 2.2199 5.0000 7.9000 400.0010 397.5970 0.0000 0.0000 400.000
+ 38 -1.0000 0.0000 2.9000 -2.8000 60.418 21.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.3038 78.0400 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 2.2199 5.0000 7.8000 400.0000 397.5940 0.0000 0.0000 400.000
+ 39 -1.0000 0.0000 2.9000 -2.7000 60.075 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.8338 78.4332 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 2.2199 5.0000 7.7000 400.0000 397.6030 0.0000 0.0000 400.000
+ 40 -1.0000 0.0000 2.9000 -2.6000 60.050 15.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.3613 78.8304 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5424 2.2199 5.0000 7.6000 399.9990 397.6100 0.0000 0.0000 400.000
+ 41 -1.0000 0.0000 2.9000 -2.5000 59.924 10.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8863 79.2318 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.2199 5.0000 7.5000 399.9970 397.5900 0.0000 0.0000 400.000
+# Sum of Counts = 3112
+# Center of Mass = -4.354788+/-0.111809
+# Full Width Half-Maximum = 1.975085+/-0.050368
+# 11:28:30 AM 6/24/2012 scan completed.
+
+11:28:30 AM 6/24/2012 Executing "scantitle "LO at X (-1.5, 0, 0), T=390K""
+
+Setting the scantitle to:
+LO at X (-1.5, 0, 0), T=390K
+
+
+11:28:30 AM 6/24/2012 Executing "scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10"
+
+
+# scan = 64
+# date = 6/24/2012
+# time = 11:28:30 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# builtin_command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (-1.5, 0, 0), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 10.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -14.5000 602.818 96.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.0280 50.4633 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 399.9950 397.6050 0.0000 0.0000 400.000
+ 2 -1.5000 0.0000 0.0000 -14.2500 602.091 89.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -97.0888 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2500 399.9920 397.5970 0.0000 0.0000 400.000
+ 3 -1.5000 0.0000 0.0000 -14.0000 601.644 86.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -96.1518 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3993 5.0000 19.0000 399.9910 397.6070 0.0000 0.0000 400.000
+ 4 -1.5000 0.0000 0.0000 -13.7500 601.699 101.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -95.2170 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 399.9950 397.6040 0.0000 0.0000 400.000
+ 5 -1.5000 0.0000 0.0000 -13.5000 601.921 111.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.2840 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.3993 5.0000 18.5000 400.0000 397.6060 0.0000 0.0000 400.000
+ 6 -1.5000 0.0000 0.0000 -13.2500 600.801 144.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -93.3525 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6074 -36.7850 2.3993 5.0000 18.2500 400.0010 397.6110 0.0000 0.0000 400.000
+ 7 -1.5000 0.0000 0.0000 -13.0000 600.783 161.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -92.4224 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4755 -37.0488 2.3993 5.0000 18.0000 400.0000 397.6110 0.0000 0.0000 400.000
+ 8 -1.5000 0.0000 0.0000 -12.7500 600.191 176.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.4932 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3406 -37.3184 2.3993 5.0000 17.7500 399.9980 397.6060 0.0000 0.0000 400.000
+ 9 -1.5000 0.0000 0.0000 -12.5000 601.561 201.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -90.5649 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3993 5.0000 17.5000 400.0150 397.6140 0.0000 0.0000 400.000
+ 10 -1.5000 0.0000 0.0000 -12.2500 605.101 210.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -89.6372 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 400.0230 397.5960 0.0000 0.0000 400.000
+ 11 -1.5000 0.0000 0.0000 -12.0000 604.710 184.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.7097 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.3993 5.0000 17.0000 399.9740 397.6020 0.0000 0.0000 400.000
+ 12 -1.5000 0.0000 0.0000 -11.7500 603.644 172.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -87.7823 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 400.0070 397.6070 0.0000 0.0000 400.000
+ 13 -1.5000 0.0000 0.0000 -11.5000 604.343 150.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -86.8548 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.3993 5.0000 16.5000 399.9910 397.5940 0.0000 0.0000 400.000
+ 14 -1.5000 0.0000 0.0000 -11.2499 601.885 135.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.9268 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0696 2.3993 5.0000 16.2499 400.0000 397.6100 0.0000 0.0000 400.000
+ 15 -1.5000 0.0000 0.0000 -11.0000 601.377 118.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.9982 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 399.9890 397.6000 0.0000 0.0000 400.000
+ 16 -1.5000 0.0000 0.0000 -10.7500 600.325 83.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.0686 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 400.0030 397.5920 0.0000 0.0000 400.000
+ 17 -1.5000 0.0000 0.0000 -10.5000 600.725 101.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.1379 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.3993 5.0000 15.5000 399.9980 397.6060 0.0000 0.0000 400.000
+ 18 -1.5000 0.0000 0.0000 -10.2500 600.111 71.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -82.2058 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 400.0000 397.6030 0.0000 0.0000 400.000
+ 19 -1.5000 0.0000 0.0000 -10.0000 601.894 69.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -81.2720 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 400.0030 397.6030 0.0000 0.0000 400.000
+# Sum of Counts = 2458
+# Center of Mass = -12.295662+/-0.351529
+# Full Width Half-Maximum = 2.345196+/-0.148610
+# 2:40:35 PM 6/24/2012 scan completed.
+
+2:40:35 PM 6/24/2012 Executing "scantitle "LA+TA G-T (-1, 0, 2.9), T=390K""
+
+Setting the scantitle to:
+LA+TA G-T (-1, 0, 2.9), T=390K
+
+
+2:40:35 PM 6/24/2012 Executing "scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1"
+
+
+# scan = 65
+# date = 6/24/2012
+# time = 2:40:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# builtin_command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-T (-1, 0, 2.9), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 1.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0000 2.9000 -6.5000 60.014 13.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.4904 65.5036 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 2.2199 5.0000 11.5000 400.0140 397.6060 0.0000 0.0000 400.000
+ 2 -1.0000 0.0000 2.9000 -6.4000 60.237 14.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0748 65.8059 -2.0000 1.0000 0.0000 0.0000 156.4706 -47.0589 2.2199 5.0000 11.4000 399.9990 397.6000 0.0000 0.0000 400.000
+ 3 -1.0000 0.0000 2.9000 -6.3000 60.342 18.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.6584 66.1098 -2.0000 1.0000 0.0000 0.0000 156.3603 -47.2793 2.2199 5.0000 11.3000 400.0000 397.6010 0.0000 0.0000 400.000
+ 4 -1.0000 0.0000 2.9000 -6.2000 60.062 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2411 66.4150 -2.0000 1.0000 0.0000 0.0000 156.2486 -47.5028 2.2199 5.0000 11.2000 399.9900 397.6000 0.0000 0.0000 400.000
+ 5 -1.0000 0.0000 2.9000 -6.1000 59.925 31.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.8229 66.7218 -2.0000 1.0000 0.0000 0.0000 156.1352 -47.7296 2.2199 5.0000 11.1000 399.9850 397.5850 0.0000 0.0000 400.000
+ 6 -1.0000 0.0000 2.9000 -6.0000 60.068 58.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.4038 67.0302 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 2.2199 5.0000 11.0000 399.9970 397.5850 0.0000 0.0000 400.000
+ 7 -1.0000 0.0000 2.9000 -5.9000 60.158 77.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9838 67.3402 -2.0000 1.0000 0.0000 0.0000 155.9035 -48.1930 2.2199 5.0000 10.9000 400.0070 397.6000 0.0000 0.0000 400.000
+ 8 -1.0000 0.0000 2.9000 -5.8000 60.606 101.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5628 67.6518 -2.0000 1.0000 0.0000 0.0000 155.7851 -48.4298 2.2199 5.0000 10.8000 400.0090 397.5890 0.0000 0.0000 400.000
+ 9 -1.0000 0.0000 2.9000 -5.7000 60.354 142.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1408 67.9651 -2.0000 1.0000 0.0000 0.0000 155.6650 -48.6702 2.2199 5.0000 10.7000 400.0040 397.5940 0.0000 0.0000 400.000
+ 10 -1.0000 0.0000 2.9000 -5.6000 60.072 168.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.7177 68.2802 -2.0000 1.0000 0.0000 0.0000 155.5430 -48.9142 2.2199 5.0000 10.6000 399.9950 397.5920 0.0000 0.0000 400.000
+ 11 -1.0000 0.0000 2.9000 -5.5000 60.325 149.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.2936 68.5970 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 2.2199 5.0000 10.5000 399.9910 397.5910 0.0000 0.0000 400.000
+ 12 -1.0000 0.0000 2.9000 -5.4000 60.193 68.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.8684 68.9156 -2.0000 1.0000 0.0000 0.0000 155.2933 -49.4134 2.2199 5.0000 10.4000 399.9970 397.5810 0.0000 0.0000 400.000
+ 13 -1.0000 0.0000 2.9000 -5.3000 60.213 43.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.4420 69.2362 -2.0000 1.0000 0.0000 0.0000 155.1656 -49.6688 2.2199 5.0000 10.3000 400.0020 397.5800 0.0000 0.0000 400.000
+ 14 -1.0000 0.0000 2.9000 -5.2000 59.947 31.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.0145 69.5586 -2.0000 1.0000 0.0000 0.0000 155.0358 -49.9283 2.2199 5.0000 10.2000 400.0040 397.5990 0.0000 0.0000 400.000
+ 15 -1.0000 0.0000 2.9000 -5.1000 60.009 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5858 69.8830 -2.0000 1.0000 0.0000 0.0000 154.9041 -50.1919 2.2199 5.0000 10.1000 400.0030 397.5800 0.0000 0.0000 400.000
+ 16 -1.0000 0.0000 2.9000 -5.0000 60.296 14.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1559 70.2095 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 2.2199 5.0000 10.0000 400.0020 397.6020 0.0000 0.0000 400.000
+ 17 -1.0000 0.0000 2.9000 -4.9000 59.906 13.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.7246 70.5380 -2.0000 1.0000 0.0000 0.0000 154.6341 -50.7320 2.2199 5.0000 9.9000 399.9970 397.5930 0.0000 0.0000 400.000
+ 18 -1.0000 0.0000 2.9000 -4.8000 60.030 16.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.2921 70.8687 -2.0000 1.0000 0.0000 0.0000 154.4958 -51.0086 2.2199 5.0000 9.8000 399.9970 397.6030 0.0000 0.0000 400.000
+ 19 -1.0000 0.0000 2.9000 -4.7000 60.369 16.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.8583 71.2016 -2.0000 1.0000 0.0000 0.0000 154.3551 -51.2898 2.2199 5.0000 9.7000 400.0000 397.5830 0.0000 0.0000 400.000
+ 20 -1.0000 0.0000 2.9000 -4.6000 60.201 17.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.4230 71.5367 -2.0000 1.0000 0.0000 0.0000 154.2122 -51.5757 2.2199 5.0000 9.6000 400.0000 397.5910 0.0000 0.0000 400.000
+ 21 -1.0000 0.0000 2.9000 -4.5000 60.164 18.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9864 71.8742 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 2.2199 5.0000 9.5000 400.0020 397.5960 0.0000 0.0000 400.000
+ 22 -1.0000 0.0000 2.9000 -4.4000 59.956 25.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.5483 72.2141 -2.0000 1.0000 0.0000 0.0000 153.9188 -52.1624 2.2199 5.0000 9.4000 400.0000 397.5900 0.0000 0.0000 400.000
+ 23 -1.0000 0.0000 2.9000 -4.3000 60.544 58.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1087 72.5564 -2.0000 1.0000 0.0000 0.0000 153.7683 -52.4633 2.2199 5.0000 9.3000 400.0210 397.6090 0.0000 0.0000 400.000
+ 24 -1.0000 0.0000 2.9000 -4.2000 60.291 103.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.6676 72.9012 -2.0000 1.0000 0.0000 0.0000 153.6152 -52.7696 2.2199 5.0000 9.2000 400.0060 397.6010 0.0000 0.0000 400.000
+ 25 -1.0000 0.0000 2.9000 -4.1000 60.048 197.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.2248 73.2487 -2.0000 1.0000 0.0000 0.0000 153.4594 -53.0813 2.2199 5.0000 9.1000 399.9870 397.5960 0.0000 0.0000 400.000
+ 26 -1.0000 0.0000 2.9000 -4.0000 60.083 229.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.7805 73.5988 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 2.2199 5.0000 9.0000 399.9790 397.5960 0.0000 0.0000 400.000
+ 27 -1.0000 0.0000 2.9000 -3.9000 60.452 249.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3345 73.9517 -2.0000 1.0000 0.0000 0.0000 153.1392 -53.7217 2.2199 5.0000 8.9000 399.9880 397.5920 0.0000 0.0000 400.000
+ 28 -1.0000 0.0000 2.9000 -3.8000 60.518 210.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.8867 74.3074 -2.0000 1.0000 0.0000 0.0000 152.9746 -54.0508 2.2199 5.0000 8.8000 400.0020 397.5820 0.0000 0.0000 400.000
+ 29 -1.0000 0.0000 2.9000 -3.7000 60.197 201.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.4372 74.6660 -2.0000 1.0000 0.0000 0.0000 152.8070 -54.3860 2.2199 5.0000 8.7000 400.0120 397.5840 0.0000 0.0000 400.000
+ 30 -1.0000 0.0000 2.9000 -3.6000 60.009 250.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.9859 75.0276 -2.0000 1.0000 0.0000 0.0000 152.6362 -54.7275 2.2199 5.0000 8.6000 400.0080 397.5830 0.0000 0.0000 400.000
+ 31 -1.0000 0.0000 2.9000 -3.5000 60.224 169.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.5328 75.3923 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 2.2199 5.0000 8.5000 399.9980 397.5910 0.0000 0.0000 400.000
+ 32 -1.0000 0.0000 2.9000 -3.4000 59.888 103.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.0777 75.7602 -2.0000 1.0000 0.0000 0.0000 152.2847 -55.4306 2.2199 5.0000 8.4000 399.9910 397.5830 0.0000 0.0000 400.000
+ 33 -1.0000 0.0000 2.9000 -3.3000 60.062 84.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.6206 76.1314 -2.0000 1.0000 0.0000 0.0000 152.1038 -55.7924 2.2199 5.0000 8.3000 399.9890 397.5810 0.0000 0.0000 400.000
+ 34 -1.0000 0.0000 2.9000 -3.2000 60.294 38.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.1616 76.5059 -2.0000 1.0000 0.0000 0.0000 151.9193 -56.1615 2.2199 5.0000 8.2000 399.9980 397.5820 0.0000 0.0000 400.000
+ 35 -1.0000 0.0000 2.9000 -3.1000 59.990 40.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.7004 76.8839 -2.0000 1.0000 0.0000 0.0000 151.7310 -56.5380 2.2199 5.0000 8.1000 400.0040 397.5850 0.0000 0.0000 400.000
+ 36 -1.0000 0.0000 2.9000 -3.0000 60.313 27.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.2371 77.2656 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 2.2199 5.0000 8.0000 400.0050 397.5940 0.0000 0.0000 400.000
+ 37 -1.0000 0.0000 2.9000 -2.9000 60.539 22.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.7716 77.6509 -2.0000 1.0000 0.0000 0.0000 151.3427 -57.3146 2.2199 5.0000 7.9000 400.0020 397.5930 0.0000 0.0000 400.000
+ 38 -1.0000 0.0000 2.9000 -2.8000 60.288 31.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.3038 78.0400 -2.0000 1.0000 0.0000 0.0000 151.1424 -57.7152 2.2199 5.0000 7.8000 399.9970 397.5830 0.0000 0.0000 400.000
+ 39 -1.0000 0.0000 2.9000 -2.7000 60.514 23.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.8338 78.4332 -2.0000 1.0000 0.0000 0.0000 150.9378 -58.1243 2.2199 5.0000 7.7000 399.9960 397.6000 0.0000 0.0000 400.000
+ 40 -1.0000 0.0000 2.9000 -2.6000 59.934 23.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.3613 78.8304 -2.0000 1.0000 0.0000 0.0000 150.7289 -58.5423 2.2199 5.0000 7.6000 399.9970 397.5830 0.0000 0.0000 400.000
+ 41 -1.0000 0.0000 2.9000 -2.5000 60.337 19.000 81985.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.8863 79.2318 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 2.2199 5.0000 7.5000 400.0010 397.5840 0.0000 0.0000 400.000
+# Sum of Counts = 3152
+# Center of Mass = -4.339530+/-0.110669
+# Full Width Half-Maximum = 1.940339+/-0.050044
+# 3:23:46 PM 6/24/2012 scan completed.
+
+3:23:46 PM 6/24/2012 Executing "scantitle "LO at L (1.5, 0, 1.5), T=390K""
+
+Setting the scantitle to:
+LO at L (1.5, 0, 1.5), T=390K
+
+
+3:23:46 PM 6/24/2012 Executing "scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6"
+
+
+# scan = 66
+# date = 6/24/2012
+# time = 3:23:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+# builtin_command = scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5, 0, 1.5), T=390K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -15.5000 362.120 67.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.2222 52.7450 -2.0000 1.0000 0.0000 0.0000 162.6801 -34.6398 2.5280 5.0000 20.5000 400.0030 397.6040 0.0000 0.0000 400.000
+ 2 1.5000 0.0000 1.5000 -15.2500 360.918 67.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.1100 53.3686 -2.0000 1.0000 0.0000 0.0000 162.5701 -34.8598 2.5280 5.0000 20.2500 399.9980 397.6040 0.0000 0.0000 400.000
+ 3 1.5000 0.0000 1.5000 -15.0000 362.247 71.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.9962 53.9931 -2.0000 1.0000 0.0000 0.0000 162.4579 -35.0840 2.5280 5.0000 20.0000 400.0000 397.6060 0.0000 0.0000 400.000
+ 4 1.5000 0.0000 1.5000 -14.7500 361.401 73.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.8808 54.6188 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 2.5280 5.0000 19.7500 400.0000 397.5950 0.0000 0.0000 400.000
+ 5 1.5000 0.0000 1.5000 -14.5000 361.747 85.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.7642 55.2460 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.5280 5.0000 19.5000 400.0000 397.5980 0.0000 0.0000 400.000
+ 6 1.5000 0.0000 1.5000 -14.2500 362.293 86.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.6465 55.8748 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.5280 5.0000 19.2500 399.9960 397.6060 0.0000 0.0000 400.000
+ 7 1.5000 0.0000 1.5000 -14.0000 361.902 126.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.5280 56.5056 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.5280 5.0000 19.0000 399.9990 397.6020 0.0000 0.0000 400.000
+ 8 1.5000 0.0000 1.5000 -13.7500 362.028 130.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.4088 57.1383 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.5280 5.0000 18.7500 399.9980 397.5880 0.0000 0.0000 400.000
+ 9 1.5000 0.0000 1.5000 -13.5000 361.665 156.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.2892 57.7733 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 2.5280 5.0000 18.5000 399.9970 397.5990 0.0000 0.0000 400.000
+ 10 1.5000 0.0000 1.5000 -13.2500 361.201 161.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.1694 58.4108 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.5280 5.0000 18.2500 400.0010 397.5990 0.0000 0.0000 400.000
+ 11 1.5000 0.0000 1.5000 -13.0000 361.574 182.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.0496 59.0511 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.5280 5.0000 18.0000 400.0020 397.5970 0.0000 0.0000 400.000
+ 12 1.5000 0.0000 1.5000 -12.7500 361.168 149.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.9300 59.6942 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.5280 5.0000 17.7500 399.9980 397.6070 0.0000 0.0000 400.000
+ 13 1.5000 0.0000 1.5000 -12.5000 361.025 162.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.8108 60.3406 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.5280 5.0000 17.5000 399.9990 397.6010 0.0000 0.0000 400.000
+ 14 1.5000 0.0000 1.5000 -12.2500 361.835 127.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.6922 60.9904 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.5280 5.0000 17.2500 400.0040 397.6130 0.0000 0.0000 400.000
+ 15 1.5000 0.0000 1.5000 -12.0000 361.041 117.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.5745 61.6438 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 2.5280 5.0000 17.0000 399.9970 397.6030 0.0000 0.0000 400.000
+ 16 1.5000 0.0000 1.5000 -11.7500 361.403 108.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.4578 62.3012 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.5280 5.0000 16.7500 400.0050 397.5980 0.0000 0.0000 400.000
+ 17 1.5000 0.0000 1.5000 -11.5000 361.511 82.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.3424 62.9628 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 2.5280 5.0000 16.5000 400.0040 397.6010 0.0000 0.0000 400.000
+ 18 1.5000 0.0000 1.5000 -11.2500 361.638 62.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.2284 63.6288 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.5280 5.0000 16.2500 399.9980 397.6100 0.0000 0.0000 400.000
+ 19 1.5000 0.0000 1.5000 -11.0000 361.850 80.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.1161 64.2995 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.5280 5.0000 16.0000 399.9950 397.6100 0.0000 0.0000 400.000
+ 20 1.5000 0.0000 1.5000 -10.7500 361.075 73.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.0058 64.9753 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.5280 5.0000 15.7500 399.9990 397.6230 0.0000 0.0000 400.000
+ 21 1.5000 0.0000 1.5000 -10.5000 361.191 56.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.8976 65.6564 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0431 2.5280 5.0000 15.5000 399.9990 397.6020 0.0000 0.0000 400.000
+# Sum of Counts = 2220
+# Center of Mass = -13.001577+/-0.391193
+# Full Width Half-Maximum = 2.568080+/-0.157307
+# 5:31:45 PM 6/24/2012 scan completed.
+
+5:31:45 PM 6/24/2012 Executing "method temp set_setpoint d 480.000000"
+ Derived from "set_temp 480"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+5:32:35 PM 6/24/2012 Executing "drive h -0.75 k 0 l 1.5 e -7.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -44.82231
+a1 157.58884
+s2 33.37310
+s1 -75.09668
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+6:13:01 PM 6/24/2012 Executing "scantitle "LA+TA G-X (-0.75, 0, 1.5), VTI=480K""
+
+Setting the scantitle to:
+LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+
+
+6:13:01 PM 6/24/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 2"
+
+
+# scan = 67
+# date = 6/24/2012
+# time = 6:13:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 2
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 117.777 23.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5888 -44.8223 1.4398 5.0000 12.5000 479.9700 125.8840 0.0000 0.0000 480.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 119.469 27.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 479.9230 125.2840 0.0000 0.0000 480.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 120.118 20.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 480.0660 124.7390 0.0000 0.0000 480.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 120.720 26.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 479.9890 124.3320 0.0000 0.0000 480.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 120.164 44.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 479.9980 123.9060 0.0000 0.0000 480.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 120.623 63.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 480.0090 123.6140 0.0000 0.0000 480.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 119.968 67.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 479.9990 123.2320 0.0000 0.0000 480.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 120.773 37.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 480.0050 122.7110 0.0000 0.0000 480.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 120.815 45.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 480.0080 122.2700 0.0000 0.0000 480.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 120.666 21.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 480.0030 121.8180 0.0000 0.0000 480.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 120.307 25.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 479.9950 121.4190 0.0000 0.0000 480.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 120.379 21.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 480.0010 120.9690 0.0000 0.0000 480.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 120.781 12.000 163970.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0666 -51.8666 1.4398 5.0000 9.5000 479.9990 120.5580 0.0000 0.0000 480.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 74.456 12.000 101858.000 1.242 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 479.9930 120.2960 0.0000 0.0000 480.000
+# Sum of Counts = 443
+# Center of Mass = -6.017494+/-0.406149
+# Full Width Half-Maximum = 1.619023+/-0.199150
+# 6:40:57 PM 6/24/2012 scan stopped!!
+
+Abort issued!!
+
+6:41:18 PM 6/24/2012 Executing "scantitle "LA+TA G-X (-0.75, 0, 1.5), VTI=480K""
+
+Setting the scantitle to:
+LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+
+
+6:41:19 PM 6/24/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4"
+
+
+# scan = 68
+# date = 6/24/2012
+# time = 6:41:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 239.974 38.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 480.0080 120.0430 0.0000 0.0000 480.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 241.347 48.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 479.9980 119.5340 0.0000 0.0000 480.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 240.645 42.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1007 -45.7985 1.4398 5.0000 12.0000 479.9990 119.0080 0.0000 0.0000 480.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 241.059 61.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 480.0000 118.5000 0.0000 0.0000 480.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 241.609 63.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5791 -46.8416 1.4398 5.0000 11.5000 479.9980 118.1210 0.0000 0.0000 480.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 240.700 142.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 479.9980 117.8140 0.0000 0.0000 480.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 240.597 149.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0202 -47.9596 1.4398 5.0000 11.0000 479.9980 117.4510 0.0000 0.0000 480.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 241.307 133.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 480.0030 117.1110 0.0000 0.0000 480.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 241.193 81.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 480.0010 116.8360 0.0000 0.0000 480.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 240.951 56.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 479.9960 116.3660 0.0000 0.0000 480.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 240.373 36.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 480.0160 97.1390 0.0000 0.0000 480.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 241.611 38.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 479.9930 70.4110 0.0000 0.0000 480.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 242.657 30.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 479.9900 70.1130 0.0000 0.0000 480.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 242.411 23.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 479.9880 65.4750 0.0000 0.0000 480.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 241.831 36.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 479.9780 65.1930 0.0000 0.0000 480.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 242.450 41.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8912 -54.2176 1.4398 5.0000 8.7500 480.0070 65.0150 0.0000 0.0000 480.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 241.482 35.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 479.9940 64.8730 0.0000 0.0000 480.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 240.962 27.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 479.9960 64.7500 0.0000 0.0000 480.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 241.833 30.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5387 -56.9223 1.4398 5.0000 8.0000 479.9920 64.6410 0.0000 0.0000 480.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 242.469 43.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9186 1.4398 5.0000 7.7500 479.9980 64.5350 0.0000 0.0000 480.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 242.362 61.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 479.9900 64.4470 0.0000 0.0000 480.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 242.412 72.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 479.9970 64.3650 0.0000 0.0000 480.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 241.488 29.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 479.9990 64.2810 0.0000 0.0000 480.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 241.704 31.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 480.0020 64.2030 0.0000 0.0000 480.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 241.484 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0823 -63.8352 1.4398 5.0000 6.5000 480.0020 64.1390 0.0000 0.0000 480.000
+# Sum of Counts = 1369
+# Center of Mass = -4.971695+/-0.195393
+# Full Width Half-Maximum = 3.365094+/-0.113151
+# 8:26:56 PM 6/24/2012 scan completed.
+
+8:26:56 PM 6/24/2012 Executing "scantitle "LO at T (0, 0, 3), VTI=480K""
+
+Setting the scantitle to:
+LO at T (0, 0, 3), VTI=480K
+
+
+8:26:56 PM 6/24/2012 Executing "scan h 0 k 0 l 3 e -15.0 -10.0 0.25 preset mcu 8"
+
+
+# scan = 69
+# date = 6/24/2012
+# time = 8:26:56 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 0 k 0 l 3 e -15.0 -10.0 0.25 preset mcu 8
+# builtin_command = scan h 0 k 0 l 3 e -15.0 -10.0 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0, 0, 3), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 0.0000 0.0000 3.0000 -15.0000 482.651 194.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.3698 9.1509 -2.0000 1.0000 0.0000 0.0000 162.4580 -35.0840 1.5924 5.0000 20.0000 480.0060 64.0660 0.0000 0.0000 480.000
+ 2 0.0000 0.0000 3.0000 -14.7500 482.662 173.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -66.3046 11.2095 -2.0000 1.0000 0.0000 0.0000 162.3437 -35.3126 1.5924 5.0000 19.7500 480.0020 63.9360 0.0000 0.0000 480.000
+ 3 0.0000 0.0000 3.0000 -14.5000 482.835 134.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.8508 12.9588 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 1.5924 5.0000 19.5000 479.9980 63.8030 0.0000 0.0000 480.000
+ 4 0.0000 0.0000 3.0000 -14.2500 482.431 117.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.7860 14.5113 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 1.5924 5.0000 19.2500 479.9980 63.6800 0.0000 0.0000 480.000
+ 5 0.0000 0.0000 3.0000 -14.0000 482.191 121.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.9958 15.9250 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 1.5924 5.0000 19.0000 479.9990 63.5250 0.0000 0.0000 480.000
+ 6 0.0000 0.0000 3.0000 -13.7500 482.157 115.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.4120 17.2343 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 1.5924 5.0000 18.7500 479.9950 63.3820 0.0000 0.0000 480.000
+ 7 0.0000 0.0000 3.0000 -13.5000 483.119 123.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.9905 18.4616 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5268 1.5924 5.0000 18.5000 479.9990 63.2910 0.0000 0.0000 480.000
+ 8 0.0000 0.0000 3.0000 -13.2500 482.616 113.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.7003 19.6226 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 1.5924 5.0000 18.2500 479.9960 63.0850 0.0000 0.0000 480.000
+ 9 0.0000 0.0000 3.0000 -13.0000 482.043 139.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -47.5189 20.7286 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 1.5924 5.0000 18.0000 480.0000 62.9640 0.0000 0.0000 480.000
+ 10 0.0000 0.0000 3.0000 -12.7500 480.756 147.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.4294 21.7882 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 1.5924 5.0000 17.7500 479.9990 62.4650 0.0000 0.0000 480.000
+ 11 0.0000 0.0000 3.0000 -12.5000 482.417 167.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.4186 22.8081 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.5924 5.0000 17.5000 479.9910 62.2420 0.0000 0.0000 480.000
+ 12 0.0000 0.0000 3.0000 -12.2500 482.820 174.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.4761 23.7936 -2.0000 1.0000 0.0000 0.0000 161.0621 -37.8756 1.5924 5.0000 17.2500 479.9560 62.1730 0.0000 0.0000 480.000
+ 13 0.0000 0.0000 3.0000 -12.0000 484.169 156.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -39.5931 24.7491 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1638 1.5924 5.0000 17.0000 480.0010 53.7900 0.0000 0.0000 480.000
+ 14 0.0000 0.0000 3.0000 -11.7500 485.421 159.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.7628 25.6780 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.5924 5.0000 16.7500 479.9970 53.5650 0.0000 0.0000 480.000
+ 15 0.0000 0.0000 3.0000 -11.5000 484.809 177.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -35.9792 26.5835 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.5924 5.0000 16.5000 480.0050 53.3990 0.0000 0.0000 480.000
+ 16 0.0000 0.0000 3.0000 -11.2500 484.633 149.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -34.2372 27.4680 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.5924 5.0000 16.2500 479.9930 53.2680 0.0000 0.0000 480.000
+ 17 0.0000 0.0000 3.0000 -11.0000 483.712 116.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -32.5326 28.3338 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 1.5924 5.0000 16.0000 480.0030 53.1490 0.0000 0.0000 480.000
+ 18 0.0000 0.0000 3.0000 -10.7500 485.242 113.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.8618 29.1826 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.5924 5.0000 15.7500 479.9960 53.0380 0.0000 0.0000 480.000
+ 19 0.0000 0.0000 3.0000 -10.5000 484.629 102.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.2212 30.0162 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 1.5924 5.0000 15.5000 479.9980 52.9420 0.0000 0.0000 480.000
+ 20 0.0000 0.0000 3.0000 -10.2500 483.997 75.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.6082 30.8361 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 1.5924 5.0000 15.2500 479.9980 52.8420 0.0000 0.0000 480.000
+ 21 0.0000 0.0000 3.0000 -9.9999 484.981 62.000 655880.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.0202 31.6434 -2.0000 1.0000 0.0000 0.0000 159.6329 -40.7341 1.5924 5.0000 14.9999 480.0030 52.7620 0.0000 0.0000 480.000
+# Sum of Counts = 2826
+# Center of Mass = -12.670822+/-0.338177
+# Full Width Half-Maximum = 2.893242+/-0.155585
+# 11:21:25 PM 6/24/2012 scan completed.
+
+11:21:25 PM 6/24/2012 Executing "scantitle "LA+TA G-X (-0.75, 0, 1.5), VTI=480K""
+
+Setting the scantitle to:
+LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+
+
+11:21:25 PM 6/24/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4"
+
+
+# scan = 70
+# date = 6/24/2012
+# time = 11:21:25 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-X (-0.75, 0, 1.5), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 242.126 34.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -75.0967 33.3731 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.4398 5.0000 12.5000 480.0060 52.6650 0.0000 0.0000 480.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 241.643 47.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.4582 34.1457 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.4398 5.0000 12.2500 480.0010 52.6030 0.0000 0.0000 480.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 241.077 51.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.8354 34.9100 -2.0000 1.0000 0.0000 0.0000 157.1006 -45.7986 1.4398 5.0000 12.0000 480.0010 52.5550 0.0000 0.0000 480.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 242.195 60.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -70.2264 35.6668 -2.0000 1.0000 0.0000 0.0000 156.8444 -46.3112 1.4398 5.0000 11.7500 480.0000 52.4960 0.0000 0.0000 480.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 241.300 82.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.6298 36.4168 -2.0000 1.0000 0.0000 0.0000 156.5792 -46.8416 1.4398 5.0000 11.5000 479.9980 52.4630 0.0000 0.0000 480.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 241.564 109.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -67.0440 37.1606 -2.0000 1.0000 0.0000 0.0000 156.3046 -47.3907 1.4398 5.0000 11.2500 480.0020 52.4270 0.0000 0.0000 480.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 241.476 153.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.4676 37.8989 -2.0000 1.0000 0.0000 0.0000 156.0201 -47.9596 1.4398 5.0000 11.0000 479.9970 52.3890 0.0000 0.0000 480.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 242.233 140.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.8992 38.6322 -2.0000 1.0000 0.0000 0.0000 155.7252 -48.5495 1.4398 5.0000 10.7500 479.9960 52.3530 0.0000 0.0000 480.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 242.209 80.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.3377 39.3613 -2.0000 1.0000 0.0000 0.0000 155.4190 -49.1619 1.4398 5.0000 10.5000 480.0050 52.2940 0.0000 0.0000 480.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 242.054 64.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.7817 40.0864 -2.0000 1.0000 0.0000 0.0000 155.1010 -49.7981 1.4398 5.0000 10.2500 479.9970 52.2400 0.0000 0.0000 480.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 241.242 36.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.2301 40.8083 -2.0000 1.0000 0.0000 0.0000 154.7702 -50.4597 1.4398 5.0000 10.0000 479.9940 52.2080 0.0000 0.0000 480.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 242.619 24.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.6817 41.5273 -2.0000 1.0000 0.0000 0.0000 154.4257 -51.1486 1.4398 5.0000 9.7500 479.9970 52.1710 0.0000 0.0000 480.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 241.379 21.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.1353 42.2439 -2.0000 1.0000 0.0000 0.0000 154.0667 -51.8666 1.4398 5.0000 9.5000 480.0030 52.1420 0.0000 0.0000 480.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 241.270 28.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.5899 42.9586 -2.0000 1.0000 0.0000 0.0000 153.6921 -52.6158 1.4398 5.0000 9.2500 480.0010 52.1040 0.0000 0.0000 480.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 241.644 21.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.0442 43.6718 -2.0000 1.0000 0.0000 0.0000 153.3007 -53.3986 1.4398 5.0000 9.0000 479.9950 52.0610 0.0000 0.0000 480.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 241.736 27.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.4972 44.3839 -2.0000 1.0000 0.0000 0.0000 152.8911 -54.2176 1.4398 5.0000 8.7500 480.0000 52.0080 0.0000 0.0000 480.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 241.285 31.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.9478 45.0954 -2.0000 1.0000 0.0000 0.0000 152.4622 -55.0756 1.4398 5.0000 8.5000 479.9630 46.5440 0.0000 0.0000 480.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 241.453 29.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.3947 45.8066 -2.0000 1.0000 0.0000 0.0000 152.0120 -55.9760 1.4398 5.0000 8.2500 480.0010 28.3460 0.0000 0.0000 480.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 242.297 31.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.8368 46.5180 -2.0000 1.0000 0.0000 0.0000 151.5388 -56.9223 1.4398 5.0000 8.0000 479.9800 28.0560 0.0000 0.0000 480.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 242.267 34.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -45.2730 47.2300 -2.0000 1.0000 0.0000 0.0000 151.0407 -57.9187 1.4398 5.0000 7.7500 479.9990 27.9760 0.0000 0.0000 480.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 244.090 56.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.7018 47.9430 -2.0000 1.0000 0.0000 0.0000 150.5152 -58.9695 1.4398 5.0000 7.5000 479.9930 27.9280 0.0000 0.0000 480.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 243.444 61.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -42.1222 48.6574 -2.0000 1.0000 0.0000 0.0000 149.9599 -60.0802 1.4398 5.0000 7.2500 480.0050 27.8610 0.0000 0.0000 480.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 243.600 34.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.5326 49.3737 -2.0000 1.0000 0.0000 0.0000 149.3717 -61.2567 1.4398 5.0000 7.0000 480.0010 27.8150 0.0000 0.0000 480.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 243.695 27.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.9316 50.0922 -2.0000 1.0000 0.0000 0.0000 148.7471 -62.5057 1.4398 5.0000 6.7500 479.9800 27.7550 0.0000 0.0000 480.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 243.161 16.000 327940.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -37.3177 50.8133 -2.0000 1.0000 0.0000 0.0000 148.0823 -63.8352 1.4398 5.0000 6.5000 480.0160 27.6920 0.0000 0.0000 480.000
+# Sum of Counts = 1296
+# Center of Mass = -5.069059+/-0.204415
+# Full Width Half-Maximum = 3.324732+/-0.116446
+# 1:03:56 AM 6/25/2012 scan completed.
+
+1:03:56 AM 6/25/2012 Executing "scantitle "LO at X (-1.5, 0, 0), VTI=480K""
+
+Setting the scantitle to:
+LO at X (-1.5, 0, 0), VTI=480K
+
+
+1:03:56 AM 6/25/2012 Executing "scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10"
+
+
+# scan = 71
+# date = 6/25/2012
+# time = 1:03:56 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# builtin_command = scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (-1.5, 0, 0), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 10.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -14.5000 607.249 113.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.0280 50.4632 -2.0000 1.0000 0.0000 0.0000 162.2271 -35.5458 2.3993 5.0000 19.5000 479.9950 27.6190 0.0000 0.0000 480.000
+ 2 -1.5000 0.0000 0.0000 -14.2500 606.411 110.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -97.0888 51.1009 -2.0000 1.0000 0.0000 0.0000 162.1082 -35.7836 2.3993 5.0000 19.2500 480.0000 27.4800 0.0000 0.0000 480.000
+ 3 -1.5000 0.0000 0.0000 -14.0000 604.463 93.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -96.1518 51.7390 -2.0000 1.0000 0.0000 0.0000 161.9869 -36.0262 2.3993 5.0000 19.0000 480.0030 27.3540 0.0000 0.0000 480.000
+ 4 -1.5000 0.0000 0.0000 -13.7500 604.722 114.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -95.2170 52.3780 -2.0000 1.0000 0.0000 0.0000 161.8630 -36.2739 2.3993 5.0000 18.7500 480.0040 27.2520 0.0000 0.0000 480.000
+ 5 -1.5000 0.0000 0.0000 -13.4999 604.581 130.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -94.2840 53.0181 -2.0000 1.0000 0.0000 0.0000 161.7366 -36.5269 2.3993 5.0000 18.4999 479.9990 27.1460 0.0000 0.0000 480.000
+ 6 -1.5000 0.0000 0.0000 -13.2500 603.474 114.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -93.3525 53.6594 -2.0000 1.0000 0.0000 0.0000 161.6075 -36.7850 2.3993 5.0000 18.2500 480.0020 27.0310 0.0000 0.0000 480.000
+ 7 -1.5000 0.0000 0.0000 -13.0000 602.972 170.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -92.4224 54.3023 -2.0000 1.0000 0.0000 0.0000 161.4756 -37.0488 2.3993 5.0000 18.0000 480.0010 26.9280 0.0000 0.0000 480.000
+ 8 -1.5000 0.0000 0.0000 -12.7500 602.554 191.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -91.4932 54.9470 -2.0000 1.0000 0.0000 0.0000 161.3408 -37.3184 2.3993 5.0000 17.7500 480.0000 26.8440 0.0000 0.0000 480.000
+ 9 -1.5000 0.0000 0.0000 -12.5000 602.795 161.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -90.5649 55.5936 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 2.3993 5.0000 17.5000 480.0010 26.7780 0.0000 0.0000 480.000
+ 10 -1.5000 0.0000 0.0000 -12.2500 604.278 182.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -89.6372 56.2424 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 2.3993 5.0000 17.2500 480.0050 26.6760 0.0000 0.0000 480.000
+ 11 -1.5000 0.0000 0.0000 -11.9999 603.144 196.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -88.7097 56.8938 -2.0000 1.0000 0.0000 0.0000 160.9181 -38.1639 2.3993 5.0000 16.9999 479.9980 26.6000 0.0000 0.0000 480.000
+ 12 -1.5000 0.0000 0.0000 -11.7500 602.279 185.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -87.7823 57.5479 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 2.3993 5.0000 16.7500 480.0040 26.5150 0.0000 0.0000 480.000
+ 13 -1.5000 0.0000 0.0000 -11.5000 602.584 183.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -86.8548 58.2050 -2.0000 1.0000 0.0000 0.0000 160.6195 -38.7605 2.3993 5.0000 16.5000 480.0070 24.8280 0.0000 0.0000 480.000
+ 14 -1.5000 0.0000 0.0000 -11.2500 607.291 164.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -85.9268 58.8652 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 2.3993 5.0000 16.2500 480.0090 24.4970 0.0000 0.0000 480.000
+ 15 -1.5000 0.0000 0.0000 -11.0000 608.203 129.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.9982 59.5291 -2.0000 1.0000 0.0000 0.0000 160.3070 -39.3861 2.3993 5.0000 16.0000 480.0060 24.3720 0.0000 0.0000 480.000
+ 16 -1.5000 0.0000 0.0000 -10.7500 608.119 136.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -84.0686 60.1967 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 2.3993 5.0000 15.7500 479.9980 24.2510 0.0000 0.0000 480.000
+ 17 -1.5000 0.0000 0.0000 -10.5000 605.394 140.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -83.1379 60.8684 -2.0000 1.0000 0.0000 0.0000 159.9785 -40.0430 2.3993 5.0000 15.5000 479.9940 24.1670 0.0000 0.0000 480.000
+ 18 -1.5000 0.0000 0.0000 -10.2500 605.556 100.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -82.2058 61.5445 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 2.3993 5.0000 15.2500 479.9990 24.0630 0.0000 0.0000 480.000
+ 19 -1.5000 0.0000 0.0000 -10.0000 605.329 112.000 819850.000 10.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -81.2720 62.2253 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 2.3993 5.0000 15.0000 480.0030 23.9780 0.0000 0.0000 480.000
+# Sum of Counts = 2723
+# Center of Mass = -12.192239+/-0.331291
+# Full Width Half-Maximum = 2.496735+/-0.146603
+# 4:16:42 AM 6/25/2012 scan completed.
+
+4:16:42 AM 6/25/2012 Executing "scantitle "TO at G (1,0,1), VTI=480K""
+
+Setting the scantitle to:
+TO at G (1,0,1), VTI=480K
+
+
+4:16:42 AM 6/25/2012 Executing "scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6"
+
+
+# scan = 72
+# date = 6/25/2012
+# time = 4:16:42 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (1,0,1), VTI=480K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 6.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 362.769 61.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.6310 27.3666 -2.0000 1.0000 0.0000 0.0000 161.2030 -37.5939 1.6853 5.0000 17.5000 479.9990 23.8830 0.0000 0.0000 480.000
+ 2 1.0000 0.0000 1.0000 -12.2500 361.721 46.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 37.2786 28.2324 -2.0000 1.0000 0.0000 0.0000 161.0622 -37.8756 1.6853 5.0000 17.2500 480.0000 23.8400 0.0000 0.0000 480.000
+ 3 1.0000 0.0000 1.0000 -11.9999 362.371 57.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 38.8926 29.0811 -2.0000 1.0000 0.0000 0.0000 160.9180 -38.1639 1.6853 5.0000 16.9999 479.9960 23.8070 0.0000 0.0000 480.000
+ 4 1.0000 0.0000 1.0000 -11.7500 363.389 64.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 40.4761 29.9144 -2.0000 1.0000 0.0000 0.0000 160.7706 -38.4587 1.6853 5.0000 16.7500 479.9960 23.7590 0.0000 0.0000 480.000
+ 5 1.0000 0.0000 1.0000 -11.5000 362.284 59.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 42.0320 30.7338 -2.0000 1.0000 0.0000 0.0000 160.6198 -38.7605 1.6853 5.0000 16.5000 479.9930 23.7160 0.0000 0.0000 480.000
+ 6 1.0000 0.0000 1.0000 -11.2500 362.535 68.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 43.5627 31.5406 -2.0000 1.0000 0.0000 0.0000 160.4652 -39.0695 1.6853 5.0000 16.2500 479.9990 23.6840 0.0000 0.0000 480.000
+ 7 1.0000 0.0000 1.0000 -11.0000 363.143 64.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 45.0706 32.3359 -2.0000 1.0000 0.0000 0.0000 160.3069 -39.3861 1.6853 5.0000 16.0000 479.9990 23.6180 0.0000 0.0000 480.000
+ 8 1.0000 0.0000 1.0000 -10.7500 362.861 89.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 46.5574 33.1208 -2.0000 1.0000 0.0000 0.0000 160.1448 -39.7105 1.6853 5.0000 15.7500 479.9980 23.5850 0.0000 0.0000 480.000
+ 9 1.0000 0.0000 1.0000 -10.5000 362.638 103.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 48.0252 33.8962 -2.0000 1.0000 0.0000 0.0000 159.9783 -40.0430 1.6853 5.0000 15.5000 479.9970 23.5610 0.0000 0.0000 480.000
+ 10 1.0000 0.0000 1.0000 -10.2500 363.033 108.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 49.4755 34.6632 -2.0000 1.0000 0.0000 0.0000 159.8079 -40.3841 1.6853 5.0000 15.2500 479.9980 23.5070 0.0000 0.0000 480.000
+ 11 1.0000 0.0000 1.0000 -10.0000 361.819 138.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.9098 35.4223 -2.0000 1.0000 0.0000 0.0000 159.6330 -40.7340 1.6853 5.0000 15.0000 480.0000 23.4630 0.0000 0.0000 480.000
+ 12 1.0000 0.0000 1.0000 -9.7500 362.881 128.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 52.3296 36.1745 -2.0000 1.0000 0.0000 0.0000 159.4534 -41.0932 1.6853 5.0000 14.7500 479.9960 23.4280 0.0000 0.0000 480.000
+ 13 1.0000 0.0000 1.0000 -9.5000 362.088 194.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 53.7361 36.9203 -2.0000 1.0000 0.0000 0.0000 159.2690 -41.4622 1.6853 5.0000 14.5000 480.0000 23.3810 0.0000 0.0000 480.000
+ 14 1.0000 0.0000 1.0000 -9.2500 362.852 192.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 55.1305 37.6604 -2.0000 1.0000 0.0000 0.0000 159.0794 -41.8412 1.6853 5.0000 14.2500 480.0050 23.1610 0.0000 0.0000 480.000
+ 15 1.0000 0.0000 1.0000 -9.0000 362.578 209.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 56.5139 38.3955 -2.0000 1.0000 0.0000 0.0000 158.8846 -42.2308 1.6853 5.0000 14.0000 479.9900 23.1120 0.0000 0.0000 480.000
+ 16 1.0000 0.0000 1.0000 -8.7500 362.529 216.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 57.8874 39.1260 -2.0000 1.0000 0.0000 0.0000 158.6842 -42.6316 1.6853 5.0000 13.7500 480.0000 25.1620 0.0000 0.0000 480.000
+ 17 1.0000 0.0000 1.0000 -8.5000 363.423 233.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 59.2518 39.8526 -2.0000 1.0000 0.0000 0.0000 158.4778 -43.0440 1.6853 5.0000 13.5000 480.0060 25.2300 0.0000 0.0000 480.000
+ 18 1.0000 0.0000 1.0000 -8.2500 365.611 161.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 60.6083 40.5758 -2.0000 1.0000 0.0000 0.0000 158.2657 -43.4686 1.6853 5.0000 13.2500 480.0110 25.1420 0.0000 0.0000 480.000
+ 19 1.0000 0.0000 1.0000 -8.0000 365.027 137.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.9577 41.2960 -2.0000 1.0000 0.0000 0.0000 158.0468 -43.9061 1.6853 5.0000 13.0000 480.0060 25.0650 0.0000 0.0000 480.000
+ 20 1.0000 0.0000 1.0000 -7.7500 364.624 99.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.3008 42.0137 -2.0000 1.0000 0.0000 0.0000 157.8214 -44.3571 1.6853 5.0000 12.7500 480.0030 25.0050 0.0000 0.0000 480.000
+ 21 1.0000 0.0000 1.0000 -7.5000 364.496 80.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.6383 42.7294 -2.0000 1.0000 0.0000 0.0000 157.5889 -44.8223 1.6853 5.0000 12.5000 480.0000 24.9220 0.0000 0.0000 480.000
+ 22 1.0000 0.0000 1.0000 -7.2500 364.417 68.000 491910.000 6.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.9712 43.4436 -2.0000 1.0000 0.0000 0.0000 157.3487 -45.3025 1.6853 5.0000 12.2500 479.9970 24.8550 0.0000 0.0000 480.000
+# Sum of Counts = 2574
+# Center of Mass = -9.455223+/-0.264833
+# Full Width Half-Maximum = 2.630140+/-0.111265
+# 6:31:43 AM 6/25/2012 scan completed.
+
+9:46:12 AM 6/25/2012 Executing "method temp set_setpoint d 300.000000"
+ Derived from " set_temp 300"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+9:46:23 AM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.67022
+s1 32.38987
+sgl -2.00000
+sgu 1.00000
+mfocus 34.98513
+
+Drive completed.
+
+
+9:57:42 AM 6/25/2012 Executing "drive sgu 0 sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+sgl 0.00000
+
+Drive completed.
+
+
+10:20:30 AM 6/25/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+10:21:06 AM 6/25/2012 Executing "drive a2 0 a1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 0.00000
+a1 90.00000
+
+Drive completed.
+
+
+10:28:56 AM 6/25/2012 Executing "drive ei 5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+10:28:56 AM 6/25/2012 Executing "preset time 10"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 10.000000
+
+
+10:28:56 AM 6/25/2012 Executing "scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV""
+
+Setting the scantitle to:
+Ni powder (1/2,1/2,1/2), Ei=5 meV
+
+
+10:28:57 AM 6/25/2012 Executing "scan s2 56 63 0.2"
+
+
+# scan = 73
+# date = 6/25/2012
+# time = 10:28:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 55.8071 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4539 -0.4674 0.0409 2.3827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 10:29:04 AM 6/25/2012 scan stopped!!
+
+Abort issued!!
+
+10:30:17 AM 6/25/2012 Executing "drive ei 5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+10:30:17 AM 6/25/2012 Executing "preset time 10"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 10.000000
+
+
+10:30:17 AM 6/25/2012 Executing "scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV""
+
+Setting the scantitle to:
+Ni powder (1/2,1/2,1/2), Ei=5 meV
+
+
+10:30:18 AM 6/25/2012 Executing "scan s2 56 63 0.2"
+
+
+# scan = 74
+# date = 6/25/2012
+# time = 10:30:18 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 375.000 21466.000 0.262 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 -0.4702 0.0411 2.3880 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 56.2000 10.000 357.000 21475.000 0.262 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 -0.4731 0.0412 2.3934 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 56.4000 10.000 341.000 21075.000 0.257 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 -0.4761 0.0413 2.3989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 56.6000 10.000 349.000 20858.000 0.254 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 -0.4790 0.0415 2.4043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 56.8000 10.000 352.000 20919.000 0.255 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 -0.4820 0.0416 2.4096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 57.0000 10.000 382.000 20781.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 -0.4849 0.0417 2.4150 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 57.2000 10.000 364.000 20622.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 -0.4879 0.0419 2.4203 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 57.4000 10.000 355.000 20844.000 0.254 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 -0.4909 0.0420 2.4255 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 57.6000 10.000 402.000 20387.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 -0.4938 0.0421 2.4308 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 57.8000 10.000 405.000 20920.000 0.255 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 -0.4968 0.0423 2.4360 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 58.0000 10.000 375.000 20724.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 -0.4998 0.0424 2.4412 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 58.2000 10.000 367.000 20713.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 -0.5028 0.0425 2.4463 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 58.4000 10.000 391.000 20612.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 -0.5058 0.0426 2.4514 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 58.6000 10.000 440.000 20645.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 -0.5088 0.0428 2.4565 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 58.8000 10.000 501.000 20715.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 -0.5118 0.0429 2.4616 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 59.0000 10.000 748.000 20465.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 -0.5148 0.0430 2.4666 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 59.2000 10.000 1073.000 20377.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 -0.5178 0.0432 2.4716 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 59.4000 10.000 1300.000 20559.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 -0.5208 0.0433 2.4766 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 59.6000 10.000 1370.000 20635.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 -0.5239 0.0434 2.4815 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 59.8000 10.000 1247.000 20542.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5487 -0.5269 0.0435 2.4864 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 60.0000 10.000 1043.000 20742.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5534 -0.5299 0.0437 2.4913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 60.2000 10.000 863.000 20702.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5581 -0.5330 0.0438 2.4961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 60.4000 10.000 617.000 20441.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5628 -0.5360 0.0439 2.5010 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 60.6000 10.000 441.000 20329.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5674 -0.5391 0.0441 2.5057 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 60.8000 10.000 418.000 20373.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5721 -0.5422 0.0442 2.5105 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 61.0000 10.000 331.000 20585.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5768 -0.5452 0.0443 2.5152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 61.2000 10.000 379.000 20523.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5815 -0.5483 0.0444 2.5199 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 61.4000 10.000 379.000 20641.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5861 -0.5514 0.0446 2.5245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 61.6000 10.000 396.000 20507.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5908 -0.5545 0.0447 2.5292 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 61.8000 10.000 358.000 20415.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5954 -0.5576 0.0448 2.5337 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 62.0000 10.000 360.000 20255.000 0.247 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6001 -0.5607 0.0449 2.5383 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 62.2000 10.000 371.000 20424.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6047 -0.5638 0.0451 2.5428 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 62.4000 10.000 366.000 20315.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6094 -0.5669 0.0452 2.5473 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 62.6000 10.000 334.000 20644.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6140 -0.5700 0.0453 2.5518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 62.8000 10.000 403.000 20417.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6186 -0.5731 0.0454 2.5562 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 63.0000 10.000 366.000 20536.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6233 -0.5762 0.0455 2.5606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 18919
+# Center of Mass = 59.542460+/-0.612332
+# Full Width Half-Maximum = 3.504054+/-0.175657
+# 10:36:57 AM 6/25/2012 scan completed.
+
+10:36:57 AM 6/25/2012 Executing "scantitle "Ni powder (1,0,0), Ei=5 meV""
+
+Setting the scantitle to:
+Ni powder (1,0,0), Ei=5 meV
+
+
+10:36:57 AM 6/25/2012 Executing "scan s2 67 73 0.2"
+
+
+# scan = 75
+# date = 6/25/2012
+# time = 10:36:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s2 67 73 0.2
+# builtin_command = scan s2 67 73 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1,0,0), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 67.0000 10.000 351.000 20557.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7147 -0.6396 0.0479 2.6417 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 67.2000 10.000 351.000 20204.000 0.246 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7193 -0.6428 0.0481 2.6454 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 67.4000 10.000 370.000 20482.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7238 -0.6460 0.0482 2.6491 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 67.6000 10.000 373.000 20399.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7283 -0.6492 0.0483 2.6527 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 67.8000 10.000 375.000 20327.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7328 -0.6525 0.0484 2.6564 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 68.0000 10.000 388.000 20767.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7373 -0.6557 0.0485 2.6599 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 68.2000 10.000 371.000 20357.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7418 -0.6589 0.0486 2.6635 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 68.4000 10.000 408.000 20661.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7463 -0.6622 0.0487 2.6670 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 68.6000 10.000 400.000 20612.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7507 -0.6654 0.0489 2.6705 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 68.8000 10.000 391.000 20873.000 0.255 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7552 -0.6687 0.0490 2.6739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 69.0000 10.000 434.000 20607.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7597 -0.6719 0.0491 2.6773 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 69.2000 10.000 458.000 20563.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7642 -0.6752 0.0492 2.6807 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 69.4000 10.000 574.000 20323.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7686 -0.6784 0.0493 2.6840 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 69.6000 10.000 769.000 20392.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7731 -0.6817 0.0494 2.6873 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 69.8000 10.000 901.000 20632.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7775 -0.6849 0.0495 2.6906 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 70.0000 10.000 894.000 20624.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7820 -0.6882 0.0496 2.6939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 70.2000 10.000 883.000 20334.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7864 -0.6915 0.0498 2.6971 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 70.4000 10.000 812.000 20448.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7908 -0.6948 0.0499 2.7002 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 70.6000 10.000 669.000 20450.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7953 -0.6980 0.0500 2.7034 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 70.8000 10.000 567.000 20457.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7997 -0.7013 0.0501 2.7065 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 71.0000 10.000 471.000 20626.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8041 -0.7046 0.0502 2.7096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 71.2000 10.000 409.000 20570.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8085 -0.7079 0.0503 2.7126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 71.4000 10.000 421.000 20372.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8129 -0.7112 0.0504 2.7156 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 71.6000 10.000 393.000 20524.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8173 -0.7145 0.0505 2.7186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 71.8000 10.000 354.000 20462.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8217 -0.7178 0.0506 2.7215 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 72.0000 10.000 395.000 20500.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8261 -0.7211 0.0507 2.7244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 72.2000 10.000 369.000 20442.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8305 -0.7244 0.0508 2.7273 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 72.4000 10.000 389.000 20485.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8349 -0.7277 0.0509 2.7301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 72.6000 10.000 351.000 20690.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8392 -0.7310 0.0511 2.7329 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 72.8000 10.000 351.000 20393.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8436 -0.7343 0.0512 2.7357 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 73.0000 10.000 366.000 20363.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 15008
+# Center of Mass = 70.015059+/-0.808352
+# Full Width Half-Maximum = 3.159024+/-0.259185
+# 10:42:46 AM 6/25/2012 scan completed.
+
+10:55:00 AM 6/25/2012 Executing "ef 5"
+
+Setting the final energy to 5.000meV and the configuration to "Fixed Ef".
+
+
+10:55:05 AM 6/25/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+m2 -74.14282
+m1 142.92860
+a2 -64.76984
+a1 141.74192
+mfocus 34.98400
+
+
+Abort issued!!
+
+10:57:40 AM 6/25/2012 Executing "drive a2 -50"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -50.00000
+
+Drive completed.
+
+
+10:58:01 AM 6/25/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:10:36 AM 6/25/2012 Executing "drive a2 0 a1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 0.00000
+a1 90.00000
+
+Drive completed.
+
+
+11:13:02 AM 6/25/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -30.36360
+a1 114.23408
+mfocus 34.98400
+
+
+Abort issued!!
+
+11:23:01 AM 6/25/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:29:26 AM 6/25/2012 Executing "drive a1 90 a2 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a1 90.00000
+a2 0.00000
+
+Drive completed.
+
+
+11:32:39 AM 6/25/2012 Executing "drive ei 5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:32:40 AM 6/25/2012 Executing "preset time 10"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 10.000000
+
+
+11:32:40 AM 6/25/2012 Executing "scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV""
+
+Setting the scantitle to:
+Ni powder (1/2,1/2,1/2), Ei=5 meV
+
+
+11:32:40 AM 6/25/2012 Executing "scan s2 56 63 0.2"
+
+
+# scan = 76
+# date = 6/25/2012
+# time = 11:32:40 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s2 56 63 0.2
+# builtin_command = scan s2 56 63 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1/2,1/2,1/2), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 56.0000 10.000 388.000 21766.000 0.265 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4585 -0.4702 0.0411 2.3880 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 56.2000 10.000 383.000 21593.000 0.263 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4633 -0.4731 0.0412 2.3934 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 56.4000 10.000 347.000 21569.000 0.263 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4681 -0.4761 0.0413 2.3989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 56.6000 10.000 368.000 21587.000 0.263 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4729 -0.4790 0.0415 2.4043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 56.8000 10.000 385.000 21098.000 0.257 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4776 -0.4820 0.0416 2.4096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 57.0000 10.000 362.000 21013.000 0.256 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4824 -0.4849 0.0417 2.4150 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 57.2000 10.000 374.000 20975.000 0.256 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4872 -0.4879 0.0419 2.4203 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 57.4000 10.000 411.000 21051.000 0.257 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4919 -0.4909 0.0420 2.4255 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 57.6000 10.000 386.000 21164.000 0.258 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.4967 -0.4938 0.0421 2.4308 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 57.8000 10.000 377.000 20988.000 0.256 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5014 -0.4968 0.0423 2.4360 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 58.0000 10.000 392.000 20776.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5062 -0.4998 0.0424 2.4412 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 58.2000 10.000 399.000 20799.000 0.254 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5109 -0.5028 0.0425 2.4463 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 58.4000 10.000 415.000 20521.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5157 -0.5058 0.0426 2.4514 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 58.6000 10.000 436.000 20777.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5204 -0.5088 0.0428 2.4565 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 58.8000 10.000 554.000 20756.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5251 -0.5118 0.0429 2.4616 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 59.0000 10.000 890.000 20596.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5298 -0.5148 0.0430 2.4666 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 59.2000 10.000 1150.000 20613.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5346 -0.5178 0.0432 2.4716 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 59.4000 10.000 1402.000 20553.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5393 -0.5208 0.0433 2.4766 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 59.6000 10.000 1418.000 20750.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5440 -0.5239 0.0434 2.4815 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 59.8000 10.000 1344.000 20446.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5487 -0.5269 0.0435 2.4864 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 60.0000 10.000 1043.000 20715.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5534 -0.5299 0.0437 2.4913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 60.2000 10.000 831.000 20652.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5581 -0.5330 0.0438 2.4961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 60.4000 10.000 616.000 20524.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5628 -0.5360 0.0439 2.5010 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 60.6000 10.000 432.000 20747.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5674 -0.5391 0.0441 2.5057 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 60.8000 10.000 403.000 20551.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5721 -0.5422 0.0442 2.5105 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 61.0000 10.000 403.000 20605.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5768 -0.5452 0.0443 2.5152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 61.2000 10.000 382.000 20441.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5815 -0.5483 0.0444 2.5199 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 61.4000 10.000 377.000 20763.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5861 -0.5514 0.0446 2.5245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 61.6000 10.000 357.000 20579.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5908 -0.5545 0.0447 2.5292 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 61.8000 10.000 399.000 20638.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.5954 -0.5576 0.0448 2.5337 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 62.0000 10.000 361.000 20460.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6001 -0.5607 0.0449 2.5383 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 62.2000 10.000 353.000 20484.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6047 -0.5638 0.0451 2.5428 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 62.4000 10.000 390.000 20363.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6094 -0.5669 0.0452 2.5473 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 62.6000 10.000 429.000 20648.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6140 -0.5700 0.0453 2.5518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 62.8000 10.000 370.000 20775.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6186 -0.5731 0.0454 2.5562 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 63.0000 10.000 370.000 20402.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.6233 -0.5762 0.0455 2.5606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 19697
+# Center of Mass = 59.530020+/-0.599991
+# Full Width Half-Maximum = 3.492345+/-0.171586
+# 11:39:38 AM 6/25/2012 scan completed.
+
+11:39:38 AM 6/25/2012 Executing "scantitle "Ni powder (1,0,0), Ei=5 meV""
+
+Setting the scantitle to:
+Ni powder (1,0,0), Ei=5 meV
+
+
+11:39:38 AM 6/25/2012 Executing "scan s2 67 73 0.2"
+
+
+# scan = 77
+# date = 6/25/2012
+# time = 11:39:38 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s2 67 73 0.2
+# builtin_command = scan s2 67 73 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Ni powder (1,0,0), Ei=5 meV
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 10.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 67.0000 10.000 373.000 20425.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7147 -0.6396 0.0479 2.6417 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 67.2000 10.000 386.000 20714.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7193 -0.6428 0.0481 2.6454 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 67.4000 10.000 382.000 20540.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7238 -0.6460 0.0482 2.6491 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 67.6000 10.000 379.000 20548.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7283 -0.6492 0.0483 2.6527 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 67.8000 10.000 406.000 20503.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7328 -0.6525 0.0484 2.6564 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 68.0000 10.000 407.000 20504.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7373 -0.6557 0.0485 2.6599 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 68.2000 10.000 380.000 20766.000 0.253 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7418 -0.6589 0.0486 2.6635 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 68.4000 10.000 402.000 20400.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7463 -0.6622 0.0487 2.6670 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 68.6000 10.000 395.000 20546.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7507 -0.6654 0.0489 2.6705 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 68.8000 10.000 394.000 20584.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7552 -0.6687 0.0490 2.6739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 69.0000 10.000 416.000 20613.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7597 -0.6719 0.0491 2.6773 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 69.2000 10.000 534.000 20856.000 0.254 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7642 -0.6752 0.0492 2.6807 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 69.4000 10.000 665.000 20362.000 0.248 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7686 -0.6784 0.0493 2.6840 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 69.6000 10.000 810.000 20685.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7731 -0.6817 0.0494 2.6873 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 69.8000 10.000 934.000 20630.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7775 -0.6849 0.0495 2.6906 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 70.0000 10.000 951.000 20561.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7820 -0.6882 0.0496 2.6939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 70.2000 10.000 862.000 20212.000 0.247 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7864 -0.6915 0.0498 2.6971 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 70.4000 10.000 817.000 20497.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7908 -0.6948 0.0499 2.7002 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 70.6000 10.000 644.000 20435.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7953 -0.6980 0.0500 2.7034 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 70.8000 10.000 534.000 20597.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.7997 -0.7013 0.0501 2.7065 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 71.0000 10.000 475.000 20510.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8041 -0.7046 0.0502 2.7095 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 71.2000 10.000 414.000 20408.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8085 -0.7079 0.0503 2.7126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 71.4000 10.000 408.000 20574.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8129 -0.7112 0.0504 2.7156 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 71.6000 10.000 392.000 20592.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8173 -0.7145 0.0505 2.7186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 71.8000 10.000 373.000 20272.000 0.247 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8217 -0.7178 0.0506 2.7215 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 72.0000 10.000 391.000 20687.000 0.252 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8261 -0.7211 0.0507 2.7244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 72.2000 10.000 385.000 20533.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8305 -0.7244 0.0508 2.7273 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 72.4000 10.000 400.000 20578.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8349 -0.7277 0.0509 2.7301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 72.6000 10.000 352.000 20387.000 0.249 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8392 -0.7310 0.0511 2.7329 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 72.8000 10.000 370.000 20573.000 0.251 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8436 -0.7343 0.0512 2.7357 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 73.0000 10.000 369.000 20472.000 0.250 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 0.0000 90.0000 0.0000 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 15400
+# Center of Mass = 69.992584+/-0.797742
+# Full Width Half-Maximum = 3.168891+/-0.256435
+# 11:45:27 AM 6/25/2012 scan completed.
+
+11:45:38 AM 6/25/2012 Executing "drive s2 70"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 70.00000
+
+Drive completed.
+
+
+11:45:47 AM 6/25/2012 Executing "zero s2 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ s2 s2 0.0000 0.0000
+
+
+
+11:45:56 AM 6/25/2012 Executing "method s2 set_motor_position d 70.03+@(s2.zero)"
+ Derived from "spos s2 70.03"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+11:46:14 AM 6/25/2012 Executing "drive s2 59.61"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 59.61000
+
+Drive completed.
+
+
+11:46:33 AM 6/25/2012 Executing "count preset time 10"
+
+11:46:33 AM 6/25/2012 Executing count command with preset channel "time" and preset value 10.00
+
+ time detector monitor mcu
+ 10.000 1437.000 20617.000 0.251
+
+11:46:43 AM 6/25/2012 Count command completed.
+
+
+11:46:50 AM 6/25/2012 Executing "drive s2 73"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 73.00000
+
+Drive completed.
+
+
+11:48:37 AM 6/25/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:51:41 AM 6/25/2012 Executing "preset time 30"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 30.000000
+
+
+11:51:53 AM 6/25/2012 Executing "scantitle "analyzer calibration""
+
+Setting the scantitle to:
+analyzer calibration
+
+
+11:52:06 AM 6/25/2012 Executing "scan a1 @(a1)+-2 @(a1)+2 0.200000"
+ Derived from "scanrel a1 -2 2 0.2 "
+
+
+# scan = 78
+# date = 6/25/2012
+# time = 11:52:06 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel a1 -2 2 0.2
+# builtin_command = scan a1 @(a1)+-2 @(a1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 30.000000
+# def_x = a1
+# def_y = detector
+# col_headers =
+# Pt. a1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 140.9286 30.000 12.000 62490.000 0.762 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 141.1286 30.000 13.000 62584.000 0.763 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 141.3286 30.000 21.000 61649.000 0.752 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 141.5286 1.586 1.000 3333.000 0.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 47
+# Center of Mass = 141.175409+/-29.122274
+# Full Width Half-Maximum = 0.342335+/-32.065712
+# 11:53:44 AM 6/25/2012 scan stopped!!
+
+Abort issued!!
+
+11:53:49 AM 6/25/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+11:54:05 AM 6/25/2012 Executing "count preset time 60"
+
+11:54:05 AM 6/25/2012 Executing count command with preset channel "time" and preset value 60.00
+
+ time detector monitor mcu
+ 60.000 775.000 123355.000 1.505
+
+11:55:05 AM 6/25/2012 Count command completed.
+
+
+11:55:22 AM 6/25/2012 Executing "comment "The monitor count unit was set to @(methodreal0)" title "Setting the monitor count unit""
+ Derived from "mcu 123355/60."
+
+Setting the monitor count unit:
+The monitor count unit was set to 2055.916667
+
+
+11:55:28 AM 6/25/2012 Executing "preset mcu 30"
+
+
+Setting the default preset channel to: mcu
+and the default preset value to: 30.000000
+
+
+11:55:47 AM 6/25/2012 Executing "scan a1 @(a1)+-2 @(a1)+2 0.200000"
+ Derived from "scanrel a1 -2 2 0.2 "
+
+
+# scan = 79
+# date = 6/25/2012
+# time = 11:55:47 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel a1 -2 2 0.2
+# builtin_command = scan a1 @(a1)+-2 @(a1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = a1
+# def_y = detector
+# col_headers =
+# Pt. a1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 140.9286 29.851 8.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 141.1286 29.941 9.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 141.3286 30.226 23.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 141.5286 29.880 31.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 141.7286 30.188 56.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 141.9286 30.119 116.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 142.1286 30.022 167.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 142.3286 30.054 235.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 142.5286 29.835 270.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 142.7286 29.930 325.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 142.9286 29.955 334.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 143.1286 30.253 385.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 143.3286 30.016 369.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 143.5286 30.097 320.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 143.7286 30.331 232.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 143.9286 29.895 197.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 144.1286 29.913 150.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 144.3286 29.817 98.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 144.5286 30.159 56.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 144.7286 29.932 30.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 144.9286 29.935 28.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3439
+# Center of Mass = 143.095160+/-3.450855
+# Full Width Half-Maximum = 1.457142+/-1.387056
+# 12:06:40 PM 6/25/2012 scan completed.
+
+12:06:40 PM 6/25/2012 Executing "drive a1 @(a1)-2"
+ Derived from "scanrel a1 -2 2 0.2 "
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a1 142.92864
+
+Drive completed.
+
+
+12:07:00 PM 6/25/2012 Executing "drive a1 143.1041"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a1 143.10410
+
+Drive completed.
+
+
+12:07:06 PM 6/25/2012 Executing "calc 5.02"
+
+Error in "calc" command ... The "calc" command must have an even number of arguments:
+calc motor1 value1 motor2 value2 ...
+
+"calc" command syntax:
+
+calc h= k= l= e= ei= ef=
+(or any subset)
+
+OR
+
+calc motors
+
+12:07:10 PM 6/25/2012 Executing "calc ei 5.02"
+
+Calculating motor positions based on:
+ei=5.02000
+
+Resulting calculated motor positions:
+m2=-73.97026 m1=143.01487 mfocus=34.94596
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+12:07:16 PM 6/25/2012 Executing "calc ei 4.98"
+
+Calculating motor positions based on:
+ei=4.98000
+
+Resulting calculated motor positions:
+m2=-74.31657 m1=142.84172 mfocus=35.02438
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+12:07:20 PM 6/25/2012 Executing "calc ei 4.96"
+
+Calculating motor positions based on:
+ei=4.96000
+
+Resulting calculated motor positions:
+m2=-74.49159 m1=142.75420 mfocus=35.06371
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+12:07:23 PM 6/25/2012 Executing "calc ei 4.99"
+
+Calculating motor positions based on:
+ei=4.99000
+
+Resulting calculated motor positions:
+m2=-74.22953 m1=142.88524 mfocus=35.00475
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+12:07:31 PM 6/25/2012 Executing "calc ei 5"
+
+Calculating motor positions based on:
+ei=5.00000
+
+Resulting calculated motor positions:
+m2=-74.14280 m1=142.92860 mfocus=34.98513
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+12:07:33 PM 6/25/2012 Executing "calc ei 5.01"
+
+Calculating motor positions based on:
+ei=5.01000
+
+Resulting calculated motor positions:
+m2=-74.05638 m1=142.97181 mfocus=34.96554
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+12:07:36 PM 6/25/2012 Executing "calc ei 5.02"
+
+Calculating motor positions based on:
+ei=5.02000
+
+Resulting calculated motor positions:
+m2=-73.97026 m1=143.01487 mfocus=34.94596
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+12:08:14 PM 6/25/2012 Executing "scan a2 @(a2)+-5 @(a2)+5 0.250000"
+ Derived from "scanrel a2 -5 5 0.25"
+
+
+# scan = 80
+# date = 6/25/2012
+# time = 12:08:14 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel a2 -5 5 0.25
+# builtin_command = scan a2 @(a2)+-5 @(a2)+5 0.250000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = a2
+# def_y = detector
+# col_headers =
+# Pt. a2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -79.1428 29.969 1.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.7996 -0.7507 0.0496 2.5869 5.0000 4.4771 0.5229 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -78.8928 30.199 0.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8018 -0.7501 0.0496 2.5940 5.0000 4.5009 0.4991 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -78.6428 29.941 4.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8040 -0.7495 0.0497 2.6011 5.0000 4.5249 0.4751 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -78.3928 30.057 2.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8062 -0.7489 0.0498 2.6082 5.0000 4.5491 0.4509 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -78.1428 29.890 2.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8085 -0.7482 0.0499 2.6155 5.0000 4.5735 0.4265 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -77.8928 29.771 17.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8108 -0.7476 0.0500 2.6227 5.0000 4.5982 0.4018 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -77.6428 29.937 15.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8131 -0.7470 0.0500 2.6301 5.0000 4.6232 0.3768 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -77.3928 30.043 30.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8154 -0.7463 0.0501 2.6374 5.0000 4.6484 0.3516 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -77.1428 30.038 65.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8178 -0.7457 0.0502 2.6449 5.0000 4.6738 0.3262 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -76.8928 29.668 90.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8202 -0.7451 0.0503 2.6524 5.0000 4.6995 0.3005 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -76.6428 29.795 158.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8226 -0.7444 0.0504 2.6599 5.0000 4.7255 0.2745 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -76.3928 30.048 200.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8250 -0.7438 0.0505 2.6675 5.0000 4.7517 0.2483 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -76.1428 29.954 221.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8275 -0.7431 0.0506 2.6751 5.0000 4.7782 0.2218 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -75.8928 30.063 266.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8299 -0.7424 0.0506 2.6828 5.0000 4.8049 0.1951 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -75.6428 29.908 308.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8324 -0.7418 0.0507 2.6906 5.0000 4.8320 0.1680 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -75.3928 29.832 340.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8350 -0.7411 0.0508 2.6984 5.0000 4.8593 0.1407 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -75.1428 29.859 366.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8375 -0.7404 0.0509 2.7063 5.0000 4.8868 0.1132 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -74.8928 29.776 352.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8401 -0.7397 0.0510 2.7142 5.0000 4.9147 0.0853 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -74.6428 29.882 367.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8427 -0.7390 0.0511 2.7222 5.0000 4.9428 0.0572 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -74.3928 30.221 400.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8453 -0.7383 0.0512 2.7303 5.0000 4.9713 0.0287 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -74.1428 29.882 416.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 -73.8928 30.024 416.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8507 -0.7369 0.0514 2.7466 5.0000 5.0290 -0.0290 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 -73.6428 29.979 364.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8534 -0.7362 0.0514 2.7548 5.0000 5.0584 -0.0584 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 -73.3928 29.983 358.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8561 -0.7355 0.0515 2.7631 5.0000 5.0880 -0.0880 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 -73.1428 29.790 367.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8589 -0.7348 0.0516 2.7714 5.0000 5.1179 -0.1179 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 -72.8928 29.992 358.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8617 -0.7341 0.0517 2.7799 5.0000 5.1482 -0.1482 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 -72.6428 29.893 336.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8645 -0.7333 0.0518 2.7884 5.0000 5.1788 -0.1788 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 -72.3928 29.764 292.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8673 -0.7326 0.0519 2.7969 5.0000 5.2097 -0.2097 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 -72.1428 29.815 231.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8702 -0.7319 0.0520 2.8055 5.0000 5.2409 -0.2409 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 -71.8928 29.959 201.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8731 -0.7311 0.0521 2.8142 5.0000 5.2725 -0.2725 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 -71.6428 29.758 162.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8760 -0.7304 0.0522 2.8229 5.0000 5.3043 -0.3043 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 -71.3928 29.880 102.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8790 -0.7296 0.0523 2.8317 5.0000 5.3366 -0.3366 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 -71.1428 30.017 57.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8820 -0.7288 0.0524 2.8406 5.0000 5.3692 -0.3692 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 -70.8928 29.960 42.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8850 -0.7281 0.0525 2.8496 5.0000 5.4021 -0.4021 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 -70.6428 29.883 21.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8881 -0.7273 0.0526 2.8586 5.0000 5.4354 -0.4354 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 -70.3928 29.741 9.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8912 -0.7265 0.0527 2.8677 5.0000 5.4690 -0.4690 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 -70.1428 29.842 6.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8943 -0.7257 0.0528 2.8768 5.0000 5.5031 -0.5031 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 -69.8928 30.069 3.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.8975 -0.7249 0.0529 2.8861 5.0000 5.5374 -0.5375 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 -69.6428 29.938 3.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.9007 -0.7241 0.0530 2.8954 5.0000 5.5722 -0.5722 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 -69.3928 29.861 0.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.9039 -0.7233 0.0531 2.9047 5.0000 5.6074 -0.6074 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 -69.1428 30.103 3.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 143.1041 1.9072 -0.7225 0.0532 2.9142 5.0000 5.6429 -0.6429 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 6951
+# Center of Mass = -74.111869+/-1.257259
+# Full Width Half-Maximum = 3.036556+/-0.427993
+# 12:29:36 PM 6/25/2012 scan completed.
+
+12:29:36 PM 6/25/2012 Executing "drive a2 @(a2)-5"
+ Derived from "scanrel a2 -5 5 0.25"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -74.14280
+
+Drive completed.
+
+
+12:30:27 PM 6/25/2012 Executing "drive a2 -74.0987"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -74.09870
+
+Drive completed.
+
+
+12:30:45 PM 6/25/2012 Executing "zero a1 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ a1 a1 0.0000 0.0000
+
+
+
+12:30:48 PM 6/25/2012 Executing "zero a2 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ a2 a2 0.0000 0.0000
+
+
+
+12:30:55 PM 6/25/2012 Executing "method a1 set_motor_position d @(m1)+@(a1.zero)"
+ Derived from "spos a1 @(m1)"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+12:31:19 PM 6/25/2012 Executing "drive a2 -75"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -75.00000
+
+Drive completed.
+
+
+12:31:25 PM 6/25/2012 Executing "drive a2 -74.0987"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -74.09870
+
+Drive completed.
+
+
+12:31:39 PM 6/25/2012 Executing "method a2 set_motor_position d @(m2)+@(a2.zero)"
+ Derived from "spos a2 @(m2)"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+12:31:58 PM 6/25/2012 Executing "count preset mcu 30"
+
+12:31:58 PM 6/25/2012 Executing count command with preset channel "mcu" and preset value 30.00
+
+ time detector monitor mcu
+ 29.868 386.000 61678.000 30.000
+
+12:32:28 PM 6/25/2012 Count command completed.
+
+
+12:33:55 PM 6/25/2012 Executing "ef 5"
+
+Setting the final energy to 5.000meV and the configuration to "Fixed Ef".
+
+
+12:34:20 PM 6/25/2012 Executing "scan e @(e)+-0.5 @(e)+0.5 0.025000"
+ Derived from "scanrel e -0.5 0.5 0.025"
+
+
+# scan = 81
+# date = 6/25/2012
+# time = 12:34:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel e -0.5 0.5 0.025
+# builtin_command = scan e @(e)+-0.5 @(e)+0.5 0.025000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.5000 27.878 8.000 61678.000 30.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8017 -0.6873 0.0503 2.7426 4.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -0.4750 27.801 11.000 61678.000 30.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8040 -0.6899 0.0503 2.7423 4.5250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -0.4500 27.917 10.000 61678.000 30.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8063 -0.6925 0.0504 2.7421 4.5500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -0.4250 27.903 4.000 61678.000 30.000 100.8254 140.9360 -78.1280 0.6359 0.0000 35.8360 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8086 -0.6951 0.0504 2.7419 4.5750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -0.4000 28.001 5.000 61678.000 30.000 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8110 -0.6976 0.0505 2.7417 4.6000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -0.3750 27.657 9.000 61678.000 30.000 100.2907 141.1876 -77.6247 0.6359 0.0000 35.7360 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8133 -0.7002 0.0505 2.7415 4.6250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -0.3500 27.598 7.000 61678.000 30.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8156 -0.7027 0.0506 2.7413 4.6500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -0.3250 27.668 8.000 61678.000 30.000 99.7405 141.4344 -77.1313 0.6359 0.0000 35.6320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8179 -0.7053 0.0506 2.7411 4.6750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -0.3000 27.584 8.000 61678.000 30.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8202 -0.7078 0.0507 2.7409 4.7000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -0.2750 27.737 18.000 61678.000 30.000 99.2172 141.6763 -76.6474 0.6359 0.0000 35.5320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8225 -0.7103 0.0507 2.7407 4.7250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -0.2500 27.483 25.000 61678.000 30.000 98.9472 141.7955 -76.4090 0.6359 0.0000 35.4800 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8248 -0.7128 0.0508 2.7404 4.7500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -0.2250 27.678 50.000 61678.000 30.000 98.6993 141.9136 -76.1727 0.6359 0.0000 35.4320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8272 -0.7153 0.0508 2.7402 4.7750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -0.2000 27.328 79.000 61678.000 30.000 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8295 -0.7178 0.0509 2.7400 4.8000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -0.1750 27.437 147.000 61678.000 30.000 98.1868 142.1465 -75.7070 0.6359 0.0000 35.3320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8318 -0.7203 0.0509 2.7398 4.8250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -0.1500 27.524 220.000 61678.000 30.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8341 -0.7228 0.0510 2.7396 4.8500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -0.1250 27.774 259.000 61678.000 30.000 97.6795 142.3751 -75.2498 0.6359 0.0000 35.2320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8364 -0.7253 0.0510 2.7394 4.8750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -0.1000 28.149 337.000 61678.000 30.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8387 -0.7278 0.0511 2.7392 4.9000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -0.0750 28.735 369.000 61678.000 30.000 97.1775 142.5995 -74.8009 0.6359 0.0000 35.1320 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8410 -0.7303 0.0511 2.7390 4.9250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -0.0500 29.415 413.000 61678.000 30.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8433 -0.7327 0.0512 2.7388 4.9500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -0.0250 29.595 433.000 61678.000 30.000 96.7005 142.8199 -74.3602 0.6359 0.0000 35.0360 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8457 -0.7352 0.0512 2.7386 4.9750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 0.0000 30.030 365.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8480 -0.7376 0.0513 2.7384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 0.0250 30.017 359.000 61678.000 30.000 96.2085 143.0363 -73.9273 0.6359 0.0000 34.9360 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8503 -0.7401 0.0513 2.7382 5.0250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 0.0500 30.395 397.000 61678.000 30.000 95.9741 143.1431 -73.7137 0.6359 0.0000 34.8880 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8526 -0.7425 0.0514 2.7380 5.0500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 0.0750 31.005 375.000 61678.000 30.000 95.7408 143.2490 -73.5021 0.6359 0.0000 34.8400 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8549 -0.7450 0.0514 2.7378 5.0750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 0.1000 30.692 307.000 61678.000 30.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8572 -0.7474 0.0515 2.7376 5.1000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 0.1250 31.008 286.000 61678.000 30.000 95.2585 143.4579 -73.0842 0.6359 0.0000 34.7400 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8595 -0.7498 0.0515 2.7374 5.1250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 0.1500 30.581 225.000 61678.000 30.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8618 -0.7522 0.0516 2.7372 5.1500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 0.1750 30.525 181.000 61678.000 30.000 94.8000 143.6633 -72.6734 0.6359 0.0000 34.6440 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8641 -0.7547 0.0516 2.7370 5.1750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 0.2000 1.465 7.000 3068.000 1.492 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 0.0000 73.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.8664 -0.7571 0.0517 2.7368 5.2000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 4922
+# Center of Mass = -0.012236+/-0.001613
+# Full Width Half-Maximum = 0.223732+/-0.003638
+# 12:51:00 PM 6/25/2012 scan stopped!!
+
+Abort issued!!
+
+12:51:49 PM 6/25/2012 Executing "scan q 1.8 e -0.5 0.5 0.025"
+
+
+# scan = 82
+# date = 6/25/2012
+# time = 12:51:49 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.8 e -0.5 0.5 0.025
+# builtin_command = scan q 1.8 e -0.5 0.5 0.025
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+# Sum of Counts = 0
+# Center of Mass = 0.000000+/-0.000000
+# Full Width Half-Maximum = 0.000000+/-0.000000
+# 12:51:49 PM 6/25/2012 scan stopped!!
+
+Abort issued!!
+
+12:52:48 PM 6/25/2012 Executing "drive e -0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -78.90188
+m1 140.54906
+a2 -74.14280
+a1 142.92860
+mfocus 35.99120
+
+Drive completed.
+
+
+12:54:20 PM 6/25/2012 Executing "scan q 1.8 e -0.5 0.5 0.025 preset mcu 30"
+
+
+# scan = 83
+# date = 6/25/2012
+# time = 12:54:20 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.8 e -0.5 0.5 0.025 preset mcu 30
+# builtin_command = scan q 1.8 e -0.5 0.5 0.025 preset mcu 30
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = analyzer calibration
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB21Jun2012_25646PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 30.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.8000 -0.5000 27.988 4.000 61678.000 30.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 0.0000 72.9202 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6860 0.0502 2.7415 4.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.8000 -0.4750 27.991 9.000 61678.000 30.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 0.0000 72.8113 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6868 0.0502 2.7398 4.5250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.8000 -0.4500 27.790 6.000 61678.000 30.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 0.0000 72.7029 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6876 0.0502 2.7381 4.5500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.8000 -0.4250 27.883 5.000 61678.000 30.000 100.8254 140.9360 -78.1279 0.6359 0.0000 35.8360 0.0000 72.5948 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6883 0.0502 2.7364 4.5750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.8000 -0.4000 27.649 3.000 61678.000 30.000 100.5466 141.0625 -77.8750 0.6359 0.0000 35.7840 0.0000 72.4872 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6891 0.0502 2.7346 4.6000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.8000 -0.3750 27.552 14.000 61678.000 30.000 100.2907 141.1876 -77.6247 0.6359 0.0000 35.7360 0.0000 72.3799 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6899 0.0502 2.7329 4.6250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.8000 -0.3500 27.740 4.000 61678.000 30.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 0.0000 72.2730 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6907 0.0502 2.7312 4.6500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.8000 -0.3250 27.501 15.000 61678.000 30.000 99.7405 141.4344 -77.1313 0.6359 0.0000 35.6320 0.0000 72.1665 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6914 0.0502 2.7295 4.6750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.8000 -0.3000 27.583 12.000 61678.000 30.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 0.0000 72.0604 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6922 0.0502 2.7277 4.7000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.8000 -0.2750 27.438 13.000 61678.000 30.000 99.2172 141.6763 -76.6474 0.6359 0.0000 35.5320 0.0000 71.9546 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6930 0.0502 2.7260 4.7250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.8000 -0.2500 27.341 28.000 61678.000 30.000 98.9472 141.7955 -76.4089 0.6359 0.0000 35.4800 0.0000 71.8491 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6938 0.0502 2.7243 4.7500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.8000 -0.2250 27.423 39.000 61678.000 30.000 98.6993 141.9136 -76.1727 0.6359 0.0000 35.4320 0.0000 71.7441 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6946 0.0502 2.7225 4.7750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.8000 -0.2000 27.407 100.000 61678.000 30.000 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 0.0000 71.6394 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6953 0.0501 2.7208 4.8000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.8000 -0.1750 27.107 144.000 61678.000 30.000 98.1868 142.1465 -75.7069 0.6359 0.0000 35.3320 0.0000 71.5351 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6961 0.0501 2.7190 4.8250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.8000 -0.1500 27.655 199.000 61678.000 30.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 0.0000 71.4311 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6969 0.0501 2.7173 4.8500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.8000 -0.1250 27.695 244.000 61678.000 30.000 97.6795 142.3751 -75.2498 0.6359 0.0000 35.2320 0.0000 71.3275 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6977 0.0501 2.7155 4.8750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.8000 -0.1000 28.060 345.000 61678.000 30.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 0.0000 71.2242 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6984 0.0501 2.7138 4.9000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.8000 -0.0750 28.616 399.000 61678.000 30.000 97.1775 142.5995 -74.8009 0.6359 0.0000 35.1320 0.0000 71.1212 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.6992 0.0501 2.7120 4.9250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.8000 -0.0500 29.025 417.000 61678.000 30.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 0.0000 71.0186 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7000 0.0501 2.7102 4.9500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.8000 -0.0250 29.382 426.000 61678.000 30.000 96.7005 142.8199 -74.3602 0.6359 0.0000 35.0360 0.0000 70.9162 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7008 0.0501 2.7085 4.9750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.8000 0.0000 29.947 396.000 61678.000 30.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 70.8142 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7016 0.0501 2.7067 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.8000 0.0250 30.237 349.000 61678.000 30.000 96.2085 143.0363 -73.9273 0.6359 0.0000 34.9360 0.0000 70.7126 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7023 0.0501 2.7049 5.0250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.8000 0.0500 30.274 360.000 61678.000 30.000 95.9741 143.1431 -73.7137 0.6359 0.0000 34.8880 0.0000 70.6112 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7031 0.0501 2.7031 5.0500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.8000 0.0750 30.602 363.000 61678.000 30.000 95.7408 143.2490 -73.5021 0.6359 0.0000 34.8400 0.0000 70.5102 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7039 0.0501 2.7014 5.0750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.8000 0.1000 30.717 316.000 61678.000 30.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 0.0000 70.4095 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7047 0.0501 2.6996 5.1000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.8000 0.1250 30.579 266.000 61678.000 30.000 95.2585 143.4579 -73.0841 0.6359 0.0000 34.7400 0.0000 70.3091 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7054 0.0501 2.6978 5.1250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.8000 0.1500 30.698 233.000 61678.000 30.000 95.0287 143.5610 -72.8780 0.6359 0.0000 34.6920 0.0000 70.2090 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7062 0.0501 2.6960 5.1500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.8000 0.1750 30.303 182.000 61678.000 30.000 94.8000 143.6633 -72.6735 0.6359 0.0000 34.6440 0.0000 70.1092 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7070 0.0500 2.6942 5.1750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.8000 0.2000 30.100 113.000 61678.000 30.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 0.0000 70.0097 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7078 0.0500 2.6924 5.2000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.8000 0.2250 29.915 94.000 61678.000 30.000 94.3459 143.8652 -72.2698 0.6359 0.0000 34.5480 0.0000 69.9105 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7086 0.0500 2.6906 5.2250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.8000 0.2500 29.317 59.000 61678.000 30.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 0.0000 69.8115 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7093 0.0500 2.6888 5.2500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 1.8000 0.2750 29.111 31.000 61678.000 30.000 93.8962 144.0636 -71.8727 0.6359 0.0000 34.4520 0.0000 69.7129 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7101 0.0500 2.6870 5.2750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 1.8000 0.3000 28.882 21.000 61678.000 30.000 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 0.0000 69.6146 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7109 0.0500 2.6852 5.3000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 1.8000 0.3250 29.202 6.000 61678.000 30.000 93.4692 144.2588 -71.4823 0.6359 0.0000 34.3600 0.0000 69.5165 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7117 0.0500 2.6834 5.3250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 1.8000 0.3500 29.217 7.000 61678.000 30.000 93.2479 144.3552 -71.2896 0.6359 0.0000 34.3120 0.0000 69.4187 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7125 0.0500 2.6815 5.3500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 1.8000 0.3750 29.058 6.000 61678.000 30.000 93.0277 144.4508 -71.0983 0.6359 0.0000 34.2640 0.0000 69.3212 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7132 0.0500 2.6797 5.3750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 1.8000 0.4000 29.446 8.000 61678.000 30.000 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 0.0000 69.2240 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7140 0.0500 2.6779 5.4000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 1.8000 0.4250 29.614 12.000 61678.000 30.000 92.5904 144.6397 -70.7205 0.6359 0.0000 34.1680 0.0000 69.1270 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7148 0.0500 2.6761 5.4250 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 1.8000 0.4500 29.267 10.000 61678.000 30.000 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 0.0000 69.0303 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7156 0.0500 2.6743 5.4500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 1.8000 0.4750 29.324 6.000 61678.000 30.000 92.1752 144.8256 -70.3488 0.6359 0.0000 34.0760 0.0000 68.9338 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7163 0.0500 2.6724 5.4750 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 1.8000 0.5000 29.250 6.000 61678.000 30.000 91.9600 144.9174 -70.1652 0.6359 0.0000 34.0280 0.0000 68.8377 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 -0.7171 0.0499 2.6706 5.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 5270
+# Center of Mass = 0.006826+/-0.001786
+# Full Width Half-Maximum = 0.258548+/-0.004032
+# 1:17:17 PM 6/25/2012 scan completed.
+
+1:17:17 PM 6/25/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+1:32:08 PM 6/25/2012 Executing "lattice 7.596700 8.392700 13.812900 72.618000 89.097000 87.822000"
+
+
+Changing lattice constants to:
+a=7.596700 b=8.392700 c=13.81290
+alpha=72.618000 beta=89.097000 gamma=87.82200
+
+1:32:29 PM 6/25/2012 Executing "drive s2 35.739"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 35.73900
+
+Drive completed.
+
+
+1:33:06 PM 6/25/2012 Executing "drive s1 20"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 20.00000
+
+Drive completed.
+
+
+1:33:21 PM 6/25/2012 Executing "drive s1 15"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.00000
+
+Drive completed.
+
+
+1:33:26 PM 6/25/2012 Executing "drive s1 14"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 14.00000
+
+Drive completed.
+
+
+1:33:30 PM 6/25/2012 Executing "drive s1 13"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 13.00000
+
+Drive completed.
+
+
+1:33:33 PM 6/25/2012 Executing "drive s1 12"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 12.00000
+
+Drive completed.
+
+
+1:33:45 PM 6/25/2012 Executing "preset time 1"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 1.000000
+
+
+1:33:57 PM 6/25/2012 Executing "scantitle "crystal check""
+
+Setting the scantitle to:
+crystal check
+
+
+1:34:01 PM 6/25/2012 Executing "scan s2 @(s2)+-1 @(s2)+1 0.100000"
+ Derived from "scanrel s2 -1 1 0.1"
+
+
+# scan = 84
+# date = 6/25/2012
+# time = 1:34:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s2 -1 1 0.1
+# builtin_command = scan s2 @(s2)+-1 @(s2)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB25Jun2012_13208PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 34.7390 1.000 146.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 12.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9275 -0.1161 0.4102 2.0227 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 34.8390 1.000 423.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 12.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9301 -0.1174 0.4113 2.0281 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 34.9391 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 12.0000 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9326 -0.1187 0.4124 2.0336 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 569
+# Center of Mass = 34.813341+/-2.063976
+# Full Width Half-Maximum = 0.087350+/-2.549673
+# 1:34:08 PM 6/25/2012 scan stopped!!
+
+Abort issued!!
+
+1:34:12 PM 6/25/2012 Executing "drive s2 35.739"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 35.73900
+
+Drive completed.
+
+
+1:34:16 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 85
+# date = 6/25/2012
+# time = 1:34:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB25Jun2012_13208PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 11.0000 1.000 33.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1493 0.4207 2.0717 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 11.1000 1.000 43.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1473 0.4208 2.0722 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 11.2000 1.000 82.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1453 0.4208 2.0728 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 11.3000 1.000 414.000 1986.000 0.966 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1433 0.4209 2.0733 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 11.4000 1.000 1549.000 2006.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1413 0.4210 2.0738 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 11.5000 1.000 3572.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1393 0.4210 2.0743 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 11.6000 1.000 6603.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1373 0.4211 2.0748 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 11.7000 1.000 9465.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1353 0.4211 2.0753 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 11.8000 1.000 9740.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1333 0.4212 2.0758 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 11.9000 1.000 9924.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1313 0.4213 2.0763 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 12.0000 1.000 8383.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1293 0.4213 2.0768 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 12.1000 1.000 5020.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1273 0.4214 2.0772 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 12.2000 1.000 3771.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1253 0.4214 2.0777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 12.3000 1.000 3601.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1233 0.4215 2.0782 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 12.4000 1.000 1656.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1213 0.4215 2.0786 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 12.5000 1.000 295.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1193 0.4216 2.0791 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 12.6000 1.000 78.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1173 0.4216 2.0795 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 12.7000 1.000 57.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1153 0.4217 2.0799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 12.8000 1.000 44.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1133 0.4217 2.0804 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 12.9000 1.000 32.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1113 0.4218 2.0808 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 13.0000 1.000 27.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1093 0.4218 2.0812 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 64389
+# Center of Mass = 11.872036+/-0.066173
+# Full Width Half-Maximum = 0.505759+/-0.032555
+# 1:34:47 PM 6/25/2012 scan completed.
+
+1:34:47 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 12.00000
+
+Drive completed.
+
+
+1:35:35 PM 6/25/2012 Executing "drive s1 20"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 20.00000
+
+Drive completed.
+
+
+1:35:43 PM 6/25/2012 Executing "drive s1 30"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 30.00000
+
+Drive completed.
+
+
+1:35:55 PM 6/25/2012 Executing "drive s1 11.8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.80000
+
+Drive completed.
+
+
+1:36:10 PM 6/25/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+1:36:19 PM 6/25/2012 Executing "drive s1 -10"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -10.00000
+
+Drive completed.
+
+
+1:36:51 PM 6/25/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+1:37:01 PM 6/25/2012 Executing "drive s1 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 3.00000
+
+Drive completed.
+
+
+1:37:09 PM 6/25/2012 Executing "drive s1 5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 5.00000
+
+Drive completed.
+
+
+1:37:13 PM 6/25/2012 Executing "drive s1 4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 4.00000
+
+Drive completed.
+
+
+1:37:19 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 86
+# date = 6/25/2012
+# time = 1:37:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB25Jun2012_13208PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 3.0000 1.000 59.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.3066 0.4110 2.0087 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 3.1000 1.000 88.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.3047 0.4112 2.0097 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 3.2000 1.000 90.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.3028 0.4114 2.0107 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 3.3000 1.000 93.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.3008 0.4115 2.0117 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 3.4000 1.000 119.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2989 0.4117 2.0128 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 3.5000 1.000 215.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2969 0.4119 2.0138 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 3.6000 1.000 339.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2950 0.4120 2.0148 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 3.7000 1.000 349.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2931 0.4122 2.0158 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 3.8000 1.000 276.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2911 0.4124 2.0168 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 3.9000 1.000 177.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2892 0.4125 2.0177 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 4.0000 1.000 102.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2872 0.4127 2.0187 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 4.1000 1.000 42.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2853 0.4128 2.0197 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 4.2000 1.000 18.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2833 0.4130 2.0207 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 4.3000 1.000 8.000 1963.000 0.955 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2814 0.4132 2.0216 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 4.4000 1.000 3.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2794 0.4133 2.0226 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 4.5000 1.000 6.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2775 0.4135 2.0235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 4.6000 1.000 2.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2755 0.4136 2.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 4.7000 1.000 4.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2736 0.4138 2.0254 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 4.8000 1.000 0.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2716 0.4139 2.0263 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 4.9000 1.000 2.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2697 0.4141 2.0272 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 5.0000 1.000 3.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.2677 0.4142 2.0282 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 1995
+# Center of Mass = 3.626967+/-0.115016
+# Full Width Half-Maximum = 0.569974+/-0.051373
+# 1:37:50 PM 6/25/2012 scan completed.
+
+1:37:50 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 4.00000
+
+Drive completed.
+
+
+1:38:09 PM 6/25/2012 Executing "drive s1 11.8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.80000
+
+Drive completed.
+
+
+1:38:19 PM 6/25/2012 Executing "drive sgl 4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 4.00000
+
+Drive completed.
+
+
+1:38:46 PM 6/25/2012 Executing "scan sgl 8 0 0.5"
+
+
+# scan = 87
+# date = 6/25/2012
+# time = 1:38:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan sgl 8 0 0.5
+# builtin_command = scan sgl 8 0 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+# mode = 0
+# plane_normal = 0.020999,0.010495,0.601255
+# ubconf = UB25Jun2012_13208PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 8.0000 1.000 10119.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1248 0.5834 2.0456 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 7.5000 1.000 11052.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1253 0.5735 2.0486 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 7.0000 1.000 12043.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1259 0.5636 2.0516 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 6.5000 1.000 13082.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1264 0.5537 2.0543 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 6.0000 1.000 14335.000 2182.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1269 0.5438 2.0569 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 5.5000 1.000 15515.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1275 0.5338 2.0594 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 5.0000 1.000 15871.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1280 0.5237 2.0616 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 4.5000 1.000 16055.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1285 0.5136 2.0638 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 4.0000 1.000 15999.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1291 0.5035 2.0657 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 3.5000 1.000 15575.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1296 0.4933 2.0676 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 3.0000 1.000 14992.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1301 0.4831 2.0692 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 2.5000 1.000 14419.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1307 0.4729 2.0707 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 2.0000 1.000 13531.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1312 0.4626 2.0720 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 1.000 12596.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1317 0.4523 2.0732 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.0000 1.000 11414.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1323 0.4420 2.0742 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 0.5000 1.000 10617.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1328 0.4316 2.0751 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 0.0000 1.000 9705.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 11.8000 35.7390 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 -0.1333 0.4212 2.0758 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 226920
+# Center of Mass = 4.046939+/-0.012927
+# Full Width Half-Maximum = 4.543919+/-0.010092
+# 1:39:39 PM 6/25/2012 scan completed.
+
+1:40:17 PM 6/25/2012 Executing "drive sgu 4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 4.00000
+
+Drive completed.
+
+
+1:40:29 PM 6/25/2012 Executing "drive sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+1:40:46 PM 6/25/2012 Executing "drive sgu -4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu -4.00000
+
+Drive completed.
+
+
+1:40:57 PM 6/25/2012 Executing "drive sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+1:41:15 PM 6/25/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14113PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14113PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=1.000 k1=0.000 l1=0.000 h2=0.000 k2=0.000 l2=1.000
+the single peak position:
+h=0.0000 k=0.0000 l=2.0000 a1=35.7390 s2=11.8000 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=7.5967 b=8.3927 c=13.8129 alpha=72.6180 beta=89.0970 gamma=87.8220
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 2.0000 35.7390 11.8000 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 2.0000 5.0000 5.0000 142.9286 35.7387 11.7998 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0011 0.0000 0.6700 35.7390 11.8000 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB25Jun2012_14115PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB25Jun2012_14115PM.ini
+
+
+1:41:36 PM 6/25/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14135PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14135PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=0.000 h2=0.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=2.0000 a1=35.7390 s2=11.8000 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=7.5967 b=8.3927 c=13.8129 alpha=72.6180 beta=89.0970 gamma=87.8220
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 2.0000 35.7390 11.8000 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 2.0000 5.0000 5.0000 142.9286 35.7387 11.7998 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+-15208615091701190700.0000 -2746866294351701.5000 -123375045031632880.0000 35.7390 11.8000 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB25Jun2012_14136PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB25Jun2012_14136PM.ini
+
+
+1:41:41 PM 6/25/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14138PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14138PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=2.000 h2=0.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=2.0000 a1=35.7390 s2=11.8000 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=7.5967 b=8.3927 c=13.8129 alpha=72.6180 beta=89.0970 gamma=87.8220
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 2.0000 35.7390 11.8000 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 2.0000 5.0000 5.0000 142.9286 35.7387 11.7998 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 -0.0013 0.6694 35.7390 11.8000 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB25Jun2012_14141PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB25Jun2012_14141PM.ini
+
+
+1:41:45 PM 6/25/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14143PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14143PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=0.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=2.0000 a1=35.7390 s2=11.8000 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=7.5967 b=8.3927 c=13.8129 alpha=72.6180 beta=89.0970 gamma=87.8220
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 2.0000 35.7390 11.8000 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 2.0000 5.0000 5.0000 142.9286 35.7387 11.7998 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 -0.0013 0.6694 35.7390 11.8000 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB25Jun2012_14145PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB25Jun2012_14145PM.ini
+
+
+1:41:50 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 0.000000 e 0.000000"
+ Derived from "br 0 1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.26985
+s1 -98.79578
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+1:42:52 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 88
+# date = 6/25/2012
+# time = 1:42:52 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_14145PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -99.7959 1.000 19.000 2012.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9944 -0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -99.6959 1.000 16.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9950 -0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -99.5959 1.000 10.000 2159.000 1.050 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9955 -0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -99.4959 1.000 55.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9961 -0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -99.3959 1.000 169.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9967 -0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -99.2959 1.000 424.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9972 -0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -99.1959 1.000 988.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9978 -0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -99.0959 1.000 1658.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9983 -0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -98.9959 1.000 1983.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9989 -0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -98.8959 1.000 2444.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9995 -0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -98.7959 1.000 4151.000 1960.000 0.953 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -98.6959 1.000 6475.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0005 0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -98.5959 1.000 6598.000 1981.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0011 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -98.4959 1.000 5458.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0016 0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -98.3959 1.000 3340.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0022 0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -98.2959 1.000 2112.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0027 0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -98.1959 1.000 632.000 1971.000 0.959 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0032 0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -98.0959 1.000 72.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0037 0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -97.9959 1.000 37.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0043 0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -97.8959 1.000 41.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0048 0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -97.7959 1.000 42.000 1973.000 0.960 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0053 0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 36724
+# Center of Mass = -98.670432+/-0.728162
+# Full Width Half-Maximum = 0.501503+/-0.338626
+# 1:43:23 PM 6/25/2012 scan completed.
+
+1:43:23 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -98.79588
+
+Drive completed.
+
+
+1:43:54 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 0.000000 e 0.000000"
+ Derived from "br 0 1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.26985
+s1 -98.79578
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+1:44:27 PM 6/25/2012 Executing "drive sgl -2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -2.00000
+
+Drive completed.
+
+
+1:44:33 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+1:44:43 PM 6/25/2012 Executing "drive sgl 4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 4.00000
+
+Drive completed.
+
+
+1:44:58 PM 6/25/2012 Executing "drive sgl 6"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 6.00000
+
+Drive completed.
+
+
+1:45:08 PM 6/25/2012 Executing "drive sgl 8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 8.00000
+
+Drive completed.
+
+
+1:45:20 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+1:45:47 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 1.000000 e 0.000000"
+ Derived from "br 0 1 1 "
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.36462
+s1 -63.45654
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+1:46:15 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 89
+# date = 6/25/2012
+# time = 1:46:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_14145PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -64.4565 1.000 15.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0055 0.9752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -64.3565 1.000 15.000 2007.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0050 0.9777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -64.2565 1.000 32.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0044 0.9802 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -64.1565 1.000 94.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0039 0.9827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -64.0565 1.000 199.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0033 0.9852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -63.9565 1.000 386.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0028 0.9876 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -63.8565 1.000 795.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0022 0.9901 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -63.7565 1.000 1390.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0017 0.9926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -63.6565 1.000 1555.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0011 0.9951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -63.5565 1.000 1823.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0006 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -63.4565 1.000 3583.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -63.3565 1.000 5340.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9994 1.0025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -63.2565 1.000 4400.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9989 1.0049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -63.1565 1.000 3393.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9983 1.0074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -63.0565 1.000 2525.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9977 1.0098 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -62.9565 1.000 1328.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9971 1.0123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -62.8565 1.000 282.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9966 1.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -62.7565 1.000 40.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9960 1.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -62.6565 1.000 27.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9954 1.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -62.5565 1.000 15.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9948 1.0221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -62.4565 1.000 15.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9942 1.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 27252
+# Center of Mass = -63.357696+/-0.542771
+# Full Width Half-Maximum = 0.508960+/-0.250695
+# 1:46:45 PM 6/25/2012 scan completed.
+
+1:46:45 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -63.45652
+
+Drive completed.
+
+
+1:48:52 PM 6/25/2012 Executing "drive s1 -63.3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -63.30000
+
+Drive completed.
+
+
+1:48:59 PM 6/25/2012 Executing "drive sgl 4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 4.00000
+
+Drive completed.
+
+
+1:49:13 PM 6/25/2012 Executing "drive sgl 6"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 6.00000
+
+Drive completed.
+
+
+1:49:19 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+1:55:46 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 35.73865
+s1 11.79983
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+1:56:45 PM 6/25/2012 Executing "drive sgl 4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 4.00000
+
+Drive completed.
+
+
+2:00:47 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+2:01:01 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 90
+# date = 6/25/2012
+# time = 2:01:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_14145PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 10.7998 1.000 41.000 2251.000 1.095 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 10.8998 1.000 25.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0200 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 10.9998 1.000 41.000 2189.000 1.065 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0178 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 11.0998 1.000 56.000 2223.000 1.081 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 11.1998 1.000 241.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 11.2998 1.000 1255.000 2189.000 1.065 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 11.3998 1.000 5833.000 2154.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0089 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 11.4998 1.000 14937.000 2188.000 1.064 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0067 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 11.5998 1.000 19414.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 11.6998 1.000 15145.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 11.7998 1.000 7635.000 2177.000 1.059 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0000 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 11.8998 1.000 4896.000 2182.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0022 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 11.9998 1.000 4384.000 2137.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0044 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 12.0998 1.000 3151.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 12.1998 1.000 3221.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 12.2998 1.000 3530.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0111 1.9945 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 12.3998 1.000 1680.000 2206.000 1.073 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0133 1.9933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 12.4998 1.000 323.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0155 1.9922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 12.5998 1.000 67.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0178 1.9911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 12.6998 1.000 45.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0200 1.9899 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 12.7998 1.000 32.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0222 1.9888 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 85952
+# Center of Mass = 11.725411+/-0.056568
+# Full Width Half-Maximum = 0.529544+/-0.028645
+# 2:01:32 PM 6/25/2012 scan completed.
+
+2:01:32 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.79984
+
+Drive completed.
+
+
+2:04:11 PM 6/25/2012 Executing "drive s1 11.6"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.60000
+
+Drive completed.
+
+
+2:04:32 PM 6/25/2012 Executing "drive sgl -2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -2.00000
+
+Drive completed.
+
+
+2:04:37 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+2:04:48 PM 6/25/2012 Executing "drive sgl 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 2.00000
+
+Drive completed.
+
+
+2:04:56 PM 6/25/2012 Executing "drive sgl 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 1.00000
+
+Drive completed.
+
+
+2:05:01 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+2:05:07 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 91
+# date = 6/25/2012
+# time = 2:05:07 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_14145PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 10.6000 1.000 55.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0266 2.0127 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 10.7000 1.000 39.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0244 2.0116 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 10.8000 1.000 38.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 10.9000 1.000 33.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0200 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 11.0000 1.000 35.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0178 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 11.1000 1.000 56.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 11.2000 1.000 145.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 11.3000 1.000 753.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 11.4000 1.000 3199.000 2198.000 1.069 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0089 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 11.5000 1.000 9834.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0067 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 11.6000 1.000 17928.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 11.7000 1.000 17774.000 2168.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 11.8000 1.000 11388.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0000 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 11.9000 1.000 6921.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0022 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 12.0000 1.000 5157.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0044 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 12.1000 1.000 3561.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 12.2000 1.000 3403.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 12.3000 1.000 3633.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0111 1.9945 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 12.4000 1.000 1598.000 1992.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0133 1.9933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 12.5000 1.000 292.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0155 1.9922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 12.6000 1.000 75.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0178 1.9911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 85917
+# Center of Mass = 11.763833+/-0.056764
+# Full Width Half-Maximum = 0.504913+/-0.028341
+# 2:05:38 PM 6/25/2012 scan completed.
+
+2:05:38 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.60000
+
+Drive completed.
+
+
+2:05:55 PM 6/25/2012 Executing "drive s1 11.66"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.66000
+
+Drive completed.
+
+
+2:06:05 PM 6/25/2012 Executing "lattice 7.596700 8.392700 13.812900 72.618000 89.097000 87.822000"
+
+
+Changing lattice constants to:
+a=7.596700 b=8.392700 c=13.81290
+alpha=72.618000 beta=89.097000 gamma=87.82200
+
+2:06:09 PM 6/25/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_20608PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB25Jun2012_20608PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=0.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=2.0000 a1=35.7386 s2=11.6600 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=7.5967 b=8.3927 c=13.8129 alpha=72.6180 beta=89.0970 gamma=87.8220
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 2.0000 35.7386 11.6600 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 2.0000 5.0000 5.0000 142.9286 35.7387 11.6600 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 -0.0028 0.6607 35.7386 11.6600 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB25Jun2012_20609PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB25Jun2012_20609PM.ini
+
+
+2:06:16 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 0.000000 e 0.000000"
+ Derived from "br 0 1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.26985
+s1 -98.93559
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+2:07:19 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 92
+# date = 6/25/2012
+# time = 2:07:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -99.9356 1.000 20.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9944 -0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -99.8356 1.000 11.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9950 -0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -99.7356 1.000 7.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9955 -0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -99.6356 1.000 13.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9961 -0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -99.5356 1.000 32.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9967 -0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -99.4356 1.000 137.000 2010.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9972 -0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -99.3356 1.000 389.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9978 -0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -99.2356 1.000 1202.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9983 -0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -99.1356 1.000 3302.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9989 -0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -99.0356 1.000 4817.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9995 -0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -98.9356 1.000 5178.000 2163.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -98.8356 1.000 5102.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0005 0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -98.7356 1.000 4582.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0011 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -98.6356 1.000 4029.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0016 0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -98.5356 1.000 3010.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0022 0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -98.4356 1.000 2501.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0027 0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -98.3356 1.000 2132.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0032 0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -98.2356 1.000 1054.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0037 0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -98.1356 1.000 149.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0043 0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -98.0356 1.000 34.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0048 0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -97.9356 1.000 17.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0053 0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 37718
+# Center of Mass = -98.790232+/-0.719375
+# Full Width Half-Maximum = 0.541681+/-0.366596
+# 2:07:50 PM 6/25/2012 scan completed.
+
+2:07:50 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -98.93560
+
+Drive completed.
+
+
+2:08:20 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 1.000000 e 0.000000"
+ Derived from "br 0 1 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.36462
+s1 -63.59635
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+2:08:43 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 93
+# date = 6/25/2012
+# time = 2:08:43 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -64.5964 1.000 15.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0055 0.9752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -64.4964 1.000 15.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0050 0.9777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -64.3964 1.000 8.000 2205.000 1.073 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0044 0.9802 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -64.2964 1.000 16.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0039 0.9827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -64.1964 1.000 53.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0033 0.9852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -64.0964 1.000 157.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0028 0.9876 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -63.9964 1.000 324.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0022 0.9901 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -63.8964 1.000 650.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0017 0.9926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -63.7964 1.000 1624.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0011 0.9951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -63.6964 1.000 2699.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0006 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -63.5964 1.000 3027.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -63.4964 1.000 3128.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9994 1.0025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -63.3964 1.000 3569.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9989 1.0049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -63.2964 1.000 3710.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9983 1.0074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -63.1964 1.000 3020.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9977 1.0098 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -63.0964 1.000 2435.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9971 1.0123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -62.9964 1.000 1730.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9966 1.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -62.8964 1.000 561.000 1955.000 0.951 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9960 1.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -62.7964 1.000 67.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9954 1.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -62.6964 1.000 19.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9948 1.0221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -62.5964 1.000 34.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9942 1.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 26861
+# Center of Mass = -63.409333+/-0.547153
+# Full Width Half-Maximum = 0.538957+/-0.275003
+# 2:09:13 PM 6/25/2012 scan completed.
+
+2:09:13 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -63.59636
+
+Drive completed.
+
+
+2:09:32 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 0.000000 e 0.000000"
+ Derived from "br 0 1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.26985
+s1 -98.93559
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+2:10:06 PM 6/25/2012 Executing "drive sgl 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 3.00000
+
+Drive completed.
+
+
+2:10:15 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+2:10:25 PM 6/25/2012 Executing "drive sgl -3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -3.00000
+
+Drive completed.
+
+
+2:10:37 PM 6/25/2012 Executing "drive sgl -6"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -6.00000
+
+Drive completed.
+
+
+2:10:45 PM 6/25/2012 Executing "drive sgl -10"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -10.00000
+
+Drive completed.
+
+
+2:11:03 PM 6/25/2012 Executing "scan sgl 10 0 1"
+
+
+# scan = 94
+# date = 6/25/2012
+# time = 2:11:03 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan sgl 10 0 1
+# builtin_command = scan sgl 10 0 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -6.8313 0.000 0.000 0.000 0.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0451 1.0016 0.0058 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 2:11:11 PM 6/25/2012 scan stopped!!
+
+Abort issued!!
+
+2:11:16 PM 6/25/2012 Executing "scan sgl -10 0 1"
+
+
+# scan = 95
+# date = 6/25/2012
+# time = 2:11:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan sgl -10 0 1
+# builtin_command = scan sgl -10 0 1
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -10.0000 1.000 3492.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0659 1.0021 0.0115 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -9.0000 1.000 4461.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0594 1.0019 0.0095 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -8.0000 1.000 5656.000 2177.000 1.059 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0528 1.0018 0.0077 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -7.0000 1.000 6340.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0463 1.0016 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -6.0000 1.000 6964.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0397 1.0014 0.0046 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -5.0000 1.000 6812.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0331 1.0012 0.0033 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -4.0000 1.000 6505.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0265 1.0010 0.0023 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -3.0000 1.000 6430.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0199 1.0008 0.0014 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -2.0000 1.000 5939.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0132 1.0005 0.0008 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -1.0000 1.000 5575.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0066 1.0003 0.0003 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 0.0000 1.000 5119.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -98.9358 29.2698 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 63293
+# Center of Mass = -4.792062+/-0.029342
+# Full Width Half-Maximum = 5.852739+/-0.025991
+# 2:12:15 PM 6/25/2012 scan completed.
+
+2:12:33 PM 6/25/2012 Executing "drive sgu -2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu -2.00000
+
+Drive completed.
+
+
+2:12:42 PM 6/25/2012 Executing "drive sgu -4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu -4.00000
+
+Drive completed.
+
+
+2:12:48 PM 6/25/2012 Executing "drive sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+2:13:00 PM 6/25/2012 Executing "drive sgu 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 2.00000
+
+Drive completed.
+
+
+2:13:08 PM 6/25/2012 Executing "drive sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00000
+
+Drive completed.
+
+
+2:13:14 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 0 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 17.65076
+s1 2.61607
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+2:14:05 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 96
+# date = 6/25/2012
+# time = 2:14:05 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.6161 1.000 9.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0111 1.0053 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.7161 1.000 8.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0100 1.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.8161 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0089 1.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.9161 1.000 11.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0078 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 2.0161 1.000 12.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0067 1.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 2.1161 1.000 19.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0056 1.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 2.2161 1.000 42.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0044 1.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 2.3161 1.000 297.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0033 1.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 2.4161 1.000 824.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0022 1.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 2.5161 1.000 2387.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0011 1.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 2.6161 1.000 3381.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 2.7161 1.000 2508.000 1997.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0011 0.9995 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 2.8161 1.000 1590.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0022 0.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 2.9161 1.000 1678.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0033 0.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 3.0161 1.000 1132.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0044 0.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 3.1161 1.000 612.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0056 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 3.2161 1.000 853.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0067 0.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 3.3161 1.000 714.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0078 0.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 3.4161 1.000 134.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0089 0.9955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 3.5161 1.000 20.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0100 0.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 3.6161 1.000 20.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0111 0.9944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 16257
+# Center of Mass = 2.765759+/-0.030745
+# Full Width Half-Maximum = 0.523228+/-0.016599
+# 2:14:36 PM 6/25/2012 scan completed.
+
+2:14:36 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 2.61608
+
+Drive completed.
+
+
+2:15:44 PM 6/25/2012 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive completed.
+
+
+2:16:31 PM 6/25/2012 Executing "drive s1 -90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -90.00000
+
+Drive completed.
+
+
+2:18:19 PM 6/25/2012 Executing "drive s2 64.395"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 64.39500
+
+Drive completed.
+
+
+2:19:10 PM 6/25/2012 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive completed.
+
+
+2:20:48 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 35.73865
+s1 11.66002
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+2:21:34 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 97
+# date = 6/25/2012
+# time = 2:21:34 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal check
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 10.6600 1.000 40.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 10.7600 1.000 28.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0200 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 10.8600 1.000 30.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0178 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 10.9600 1.000 37.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 11.0600 1.000 52.000 1966.000 0.956 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 11.1600 1.000 84.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 11.2600 1.000 381.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0089 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 11.3600 1.000 1841.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0067 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 11.4600 1.000 6550.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 11.5600 1.000 15577.000 2153.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 11.6600 1.000 19259.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0000 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 11.7600 1.000 14239.000 1941.000 0.944 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0022 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 11.8600 1.000 8305.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0044 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 11.9600 1.000 5835.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 12.0600 1.000 3985.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 12.1600 1.000 3192.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0111 1.9945 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 12.2600 1.000 3634.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0133 1.9933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 12.3600 1.000 2470.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0155 1.9922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 12.4600 1.000 576.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0178 1.9911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 12.5600 1.000 127.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0200 1.9899 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 12.6600 1.000 53.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0222 1.9888 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 86295
+# Center of Mass = 11.762001+/-0.056631
+# Full Width Half-Maximum = 0.498666+/-0.028366
+# 2:22:05 PM 6/25/2012 scan completed.
+
+2:22:05 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.66000
+
+Drive completed.
+
+
+2:22:35 PM 6/25/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+2:50:57 PM 6/25/2012 Executing "scantitle "crystal B alignment""
+
+Setting the scantitle to:
+crystal B alignment
+
+
+2:51:05 PM 6/25/2012 Executing "drive s1 20"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 20.00000
+
+Drive completed.
+
+
+2:51:18 PM 6/25/2012 Executing "drive s1 18"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 18.00000
+
+Drive completed.
+
+
+2:51:23 PM 6/25/2012 Executing "drive s1 17.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.50000
+
+Drive completed.
+
+
+2:51:29 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 98
+# date = 6/25/2012
+# time = 2:51:29 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_20609PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 16.4998 1.000 12.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1074 1.9401 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 16.5998 1.000 11.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1096 1.9387 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 16.6998 1.000 28.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1118 1.9373 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 16.7998 1.000 44.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1140 1.9359 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 16.8998 1.000 99.000 2237.000 1.088 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1162 1.9345 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 16.9998 1.000 378.000 2176.000 1.058 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1184 1.9331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 17.0998 1.000 2070.000 2201.000 1.071 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1206 1.9317 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 17.1998 1.000 5451.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1228 1.9303 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 17.2998 1.000 5242.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1250 1.9289 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 17.3998 1.000 3455.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1273 1.9274 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 17.4998 1.000 3106.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1295 1.9260 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 17.5998 1.000 2278.000 2251.000 1.095 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1317 1.9246 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 17.6998 1.000 559.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1339 1.9231 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 17.7998 1.000 98.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1361 1.9217 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 17.8998 1.000 32.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1383 1.9202 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 17.9998 1.000 17.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1405 1.9187 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 18.0998 1.000 15.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1427 1.9172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 18.1998 1.000 8.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1449 1.9158 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 18.2998 1.000 5.000 2196.000 1.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1471 1.9143 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 18.3998 1.000 7.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1493 1.9128 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 18.4998 1.000 4.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1515 1.9113 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 22919
+# Center of Mass = 17.335679+/-0.161946
+# Full Width Half-Maximum = 0.355647+/-0.099188
+# 2:52:00 PM 6/25/2012 scan completed.
+
+2:52:00 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.49984
+
+Drive completed.
+
+
+2:52:21 PM 6/25/2012 Executing "drive s1 17.2475"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.24750
+
+Drive completed.
+
+
+2:53:18 PM 6/25/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_25316PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB25Jun2012_25316PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=0.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=2.0000 a1=35.7386 s2=17.2474 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=7.5967 b=8.3927 c=13.8129 alpha=72.6180 beta=89.0970 gamma=87.8220
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 2.0000 35.7386 17.2474 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 2.0000 5.0000 5.0000 142.9286 35.7387 17.2474 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0866 1.0103 35.7386 17.2474 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB25Jun2012_25318PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB25Jun2012_25318PM.ini
+
+
+2:53:21 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 0 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 17.65076
+s1 8.20349
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+2:54:10 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 99
+# date = 6/25/2012
+# time = 2:54:10 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 7.2035 1.000 5.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0111 1.0053 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 7.3035 1.000 0.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0100 1.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 7.4035 1.000 2.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0089 1.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 7.5035 1.000 9.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0078 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 7.6035 1.000 5.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0067 1.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 7.7035 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0056 1.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 7.8035 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0044 1.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 7.9035 1.000 21.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0033 1.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 8.0035 1.000 107.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0022 1.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 8.1035 1.000 808.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0011 1.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 8.2035 1.000 1532.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 8.3035 1.000 954.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0011 0.9995 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 8.4035 1.000 445.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0022 0.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 8.5035 1.000 482.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0033 0.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 8.6035 1.000 215.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0044 0.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 8.7035 1.000 19.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0056 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 8.8035 1.000 7.000 1995.000 0.970 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0067 0.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 8.9035 1.000 5.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0078 0.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 9.0035 1.000 7.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0089 0.9955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 9.1035 1.000 4.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0100 0.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 9.2035 1.000 3.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0111 0.9944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 4641
+# Center of Mass = 8.271395+/-0.171725
+# Full Width Half-Maximum = 0.338719+/-0.100227
+# 2:54:41 PM 6/25/2012 scan completed.
+
+2:54:41 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 8.20348
+
+Drive completed.
+
+
+2:55:11 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 0.000000 e 0.000000"
+ Derived from "br 0 1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.26985
+s1 -93.34817
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+2:56:10 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 100
+# date = 6/25/2012
+# time = 2:56:10 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -94.3482 1.000 5.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9944 -0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -94.2482 1.000 2.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9950 -0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -94.1482 1.000 5.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9955 -0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -94.0482 1.000 3.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9961 -0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -93.9482 1.000 16.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9967 -0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -93.8482 1.000 11.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9972 -0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -93.7482 1.000 23.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9978 -0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -93.6482 1.000 62.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9983 -0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -93.5482 1.000 422.000 1983.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9989 -0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -93.4482 1.000 2014.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9995 -0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -93.3482 1.000 2707.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -93.2482 1.000 2279.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0005 0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -93.1482 1.000 2548.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0011 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -93.0482 1.000 2632.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0016 0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -92.9482 1.000 1202.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0022 0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -92.8482 1.000 177.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0027 0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -92.7482 1.000 35.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0032 0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -92.6482 1.000 14.000 1989.000 0.967 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0037 0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -92.5482 1.000 6.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0043 0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -92.4482 1.000 5.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0048 0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -92.3482 1.000 5.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0053 0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 14173
+# Center of Mass = -93.221205+/-1.107387
+# Full Width Half-Maximum = 0.363436+/-0.722300
+# 2:56:41 PM 6/25/2012 scan completed.
+
+2:56:41 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -93.34816
+
+Drive completed.
+
+
+2:57:05 PM 6/25/2012 Executing "drive sgl 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 3.00000
+
+Drive completed.
+
+
+2:57:14 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+2:57:30 PM 6/25/2012 Executing "drive sgl -3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -3.00000
+
+Drive completed.
+
+
+2:57:48 PM 6/25/2012 Executing "drive sgl -5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -5.00000
+
+Drive completed.
+
+
+2:57:55 PM 6/25/2012 Executing "drive sgl 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+
+Drive completed.
+
+
+2:58:09 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 1.000000 e 0.000000"
+ Derived from "br 0 1 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.36462
+s1 -58.00893
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+2:58:35 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 101
+# date = 6/25/2012
+# time = 2:58:35 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -59.0089 1.000 3.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0055 0.9752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -58.9089 1.000 4.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0050 0.9777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -58.8089 1.000 4.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0044 0.9802 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -58.7089 1.000 7.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0039 0.9827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -58.6089 1.000 6.000 1992.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0033 0.9852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -58.5089 1.000 14.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0028 0.9876 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -58.4089 1.000 23.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0022 0.9901 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -58.3089 1.000 116.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0017 0.9926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -58.2089 1.000 809.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0011 0.9951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -58.1089 1.000 2511.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0006 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -58.0089 1.000 2896.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -57.9089 1.000 2401.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9994 1.0025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -57.8089 1.000 2384.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9989 1.0049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -57.7089 1.000 1895.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9983 1.0074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -57.6089 1.000 604.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9977 1.0098 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -57.5089 1.000 70.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9971 1.0123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -57.4089 1.000 23.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9966 1.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -57.3089 1.000 13.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9960 1.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -57.2089 1.000 3.000 2198.000 1.069 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9954 1.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -57.1089 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9948 1.0221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -57.0089 1.000 3.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9942 1.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 13794
+# Center of Mass = -57.928242+/-0.697527
+# Full Width Half-Maximum = 0.352056+/-0.448112
+# 2:59:05 PM 6/25/2012 scan completed.
+
+2:59:05 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -58.00892
+
+Drive completed.
+
+
+3:00:00 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 0 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 17.65076
+s1 8.20349
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+3:00:38 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 102
+# date = 6/25/2012
+# time = 3:00:38 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 7.2035 1.000 10.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0111 1.0053 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 7.3035 1.000 2.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0100 1.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 7.4035 1.000 3.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0089 1.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 7.5035 1.000 6.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0078 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 7.6035 1.000 3.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0067 1.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 7.7035 1.000 8.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0056 1.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 7.8035 1.000 7.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0044 1.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 7.9035 1.000 22.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0033 1.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 8.0035 1.000 132.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0022 1.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 8.1035 1.000 788.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0011 1.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 8.2035 1.000 1498.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 8.3035 1.000 999.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0011 0.9995 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 8.4035 1.000 435.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0022 0.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 8.5035 1.000 436.000 1979.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0033 0.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 8.6035 1.000 244.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0044 0.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 8.7035 1.000 31.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0056 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 8.8035 1.000 12.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0067 0.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 8.9035 1.000 7.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0078 0.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 9.0035 1.000 6.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0089 0.9955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 9.1035 1.000 2.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0100 0.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 9.2035 1.000 5.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0111 0.9944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 4656
+# Center of Mass = 8.271305+/-0.171448
+# Full Width Half-Maximum = 0.354214+/-0.093988
+# 3:01:09 PM 6/25/2012 scan completed.
+
+3:01:09 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 8.20348
+
+Drive completed.
+
+
+3:01:44 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 35.73865
+s1 17.24744
+sgl 0.00000
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+3:02:04 PM 6/25/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+3:06:02 PM 6/25/2012 Executing "drive s1 20"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 20.00000
+
+Drive completed.
+
+
+3:06:18 PM 6/25/2012 Executing "drive s1 18"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 18.00000
+
+Drive completed.
+
+
+3:06:23 PM 6/25/2012 Executing "drive s1 17"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.00000
+
+Drive completed.
+
+
+3:06:29 PM 6/25/2012 Executing "drive s1 16.8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.80000
+
+Drive completed.
+
+
+3:06:32 PM 6/25/2012 Executing "drive s1 17.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.20000
+
+Drive completed.
+
+
+3:06:38 PM 6/25/2012 Executing "drive s1 17.3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.30000
+
+Drive completed.
+
+
+3:06:47 PM 6/25/2012 Executing "scan s1 @(s1)+-2 @(s1)+2 0.100000"
+ Derived from "scanrel s1 -2 2 0.1"
+
+
+# scan = 103
+# date = 6/25/2012
+# time = 3:06:47 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -2 2 0.1
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 15.3000 1.000 487.000 2153.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 15.4000 1.000 2247.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 15.5000 1.000 7452.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 15.6000 1.000 15800.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 15.7000 1.000 19136.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 15.8000 1.000 13307.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.9000 1.000 8152.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 16.0000 1.000 5725.000 2161.000 1.051 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0131 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 16.1000 1.000 3696.000 2171.000 1.056 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 16.2000 1.000 3203.000 2202.000 1.071 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 16.3000 1.000 3557.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 16.4000 1.000 2063.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 16.5000 1.000 459.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 16.6000 1.000 125.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0069 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 16.7000 1.000 108.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 16.8000 1.000 134.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 16.9000 1.000 422.000 2171.000 1.056 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 17.0000 1.000 1897.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 17.1000 1.000 4705.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 17.2000 1.000 5061.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 17.3000 1.000 2920.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 17.4000 1.000 1489.000 2158.000 1.050 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 17.5000 1.000 602.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 17.6000 1.000 293.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 17.7000 1.000 235.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0101 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 17.8000 1.000 219.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0123 1.9939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 17.9000 1.000 114.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0145 1.9927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 18.0000 1.000 40.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0167 1.9916 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 18.1000 1.000 24.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0189 1.9905 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 18.2000 1.000 11.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0212 1.9893 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 18.3000 1.000 6.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0234 1.9882 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 18.4000 1.000 4.000 2012.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0256 1.9870 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 18.5000 1.000 12.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0278 1.9859 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 18.6000 1.000 14.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0300 1.9847 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 18.7000 1.000 7.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0323 1.9835 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 18.8000 1.000 12.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0345 1.9823 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 18.9000 1.000 7.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0367 1.9811 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 19.0000 1.000 7.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0389 1.9799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 19.1000 1.000 9.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0411 1.9787 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 19.2000 1.000 6.000 2155.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0434 1.9775 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 19.3000 1.000 9.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0456 1.9763 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 103776
+# Center of Mass = 16.044717+/-0.070461
+# Full Width Half-Maximum = 1.189606+/-0.033047
+# 3:07:47 PM 6/25/2012 scan completed.
+
+3:07:47 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -2 2 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.30000
+
+Drive completed.
+
+
+3:07:58 PM 6/25/2012 Executing "drive s1 17.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.20000
+
+Drive completed.
+
+
+3:09:09 PM 6/25/2012 Executing "drive s1 17."
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.00000
+
+Drive completed.
+
+
+3:10:35 PM 6/25/2012 Executing "drive 16.5"
+
+SPICE Error in drive command: Mon, Jun 25, 2012 [3:10:35 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+
+The argument for motor 16.5, "" contains more than one motor position.
+
+..Move aborted.
+
+
+3:10:43 PM 6/25/2012 Executing "drive 15.7"
+
+SPICE Error in drive command: Mon, Jun 25, 2012 [3:10:43 PM] : SPICE Error in Common.lvlib:Common_Commands.lvlib:Drive_Motor_Val_Pairs.vi.
+
+The argument for motor 15.7, "" contains more than one motor position.
+
+..Move aborted.
+
+
+3:10:50 PM 6/25/2012 Executing "drive s1 16.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.50000
+
+Drive completed.
+
+
+3:10:56 PM 6/25/2012 Executing "drive s1 16.7"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.70000
+
+Drive completed.
+
+
+3:11:00 PM 6/25/2012 Executing "drive s1 16.4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.40000
+
+Drive completed.
+
+
+3:11:05 PM 6/25/2012 Executing "drive s1 16.3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.30000
+
+Drive completed.
+
+
+3:11:08 PM 6/25/2012 Executing "drive s1 16.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.20000
+
+Drive completed.
+
+
+3:11:24 PM 6/25/2012 Executing "drive s1 15.7"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:11:29 PM 6/25/2012 Executing "drive s1 15."
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.00000
+
+Drive completed.
+
+
+3:11:36 PM 6/25/2012 Executing "drive s1 10"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 10.00000
+
+Drive completed.
+
+
+3:11:40 PM 6/25/2012 Executing "drive s1 12"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 12.00000
+
+Drive completed.
+
+
+3:11:43 PM 6/25/2012 Executing "drive s1 14"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 14.00000
+
+Drive completed.
+
+
+3:11:46 PM 6/25/2012 Executing "drive s1 13"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 13.00000
+
+Drive completed.
+
+
+3:11:51 PM 6/25/2012 Executing "drive s1 13.4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 13.40000
+
+Drive completed.
+
+
+3:13:01 PM 6/25/2012 Executing "drive s1 14"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 14.00000
+
+Drive completed.
+
+
+3:13:07 PM 6/25/2012 Executing "drive s1 14.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 14.50000
+
+Drive completed.
+
+
+3:13:14 PM 6/25/2012 Executing "drive s1 14.8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 14.80000
+
+Drive completed.
+
+
+3:13:19 PM 6/25/2012 Executing "drive s1 15"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.00000
+
+Drive completed.
+
+
+3:13:23 PM 6/25/2012 Executing "drive s1 15.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.50000
+
+Drive completed.
+
+
+3:13:27 PM 6/25/2012 Executing "drive s1 15.7"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:13:38 PM 6/25/2012 Executing "scan s1 @(s1)+-2 @(s1)+2 0.200000"
+ Derived from "scanrel s1 -2 2 0.2"
+
+
+# scan = 104
+# date = 6/25/2012
+# time = 3:13:38 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -2 2 0.2
+# builtin_command = scan s1 @(s1)+-2 @(s1)+2 0.200000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 13.7000 1.000 323.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0787 2.0349 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 13.9000 1.000 100.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0743 2.0331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.1000 1.000 124.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0699 2.0313 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 14.3000 1.000 230.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0654 2.0295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 14.5000 1.000 118.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0610 2.0277 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 14.7000 1.000 39.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 14.9000 1.000 45.000 1999.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0239 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.1000 1.000 50.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.3000 1.000 234.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.5000 1.000 4468.000 2021.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.7000 1.000 18818.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.9000 1.000 9880.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 16.1000 1.000 4544.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 16.3000 1.000 3458.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 16.5000 1.000 1050.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 16.7000 1.000 78.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 16.9000 1.000 85.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 17.1000 1.000 293.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 17.3000 1.000 4204.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 17.5000 1.000 3285.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 17.7000 1.000 847.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0101 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 52273
+# Center of Mass = 16.064467+/-0.099412
+# Full Width Half-Maximum = 1.369777+/-0.058410
+# 3:14:11 PM 6/25/2012 scan completed.
+
+3:14:11 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:14:21 PM 6/25/2012 Executing "drive s1 17.3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.30000
+
+Drive completed.
+
+
+3:16:33 PM 6/25/2012 Executing "drive s1 16.6"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.60000
+
+Drive completed.
+
+
+3:16:38 PM 6/25/2012 Executing "drive s1 16.8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.80000
+
+Drive completed.
+
+
+3:16:42 PM 6/25/2012 Executing "drive s1 17"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.00000
+
+Drive completed.
+
+
+3:16:51 PM 6/25/2012 Executing "drive s1 16.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.50000
+
+Drive completed.
+
+
+3:16:59 PM 6/25/2012 Executing "drive s1 16.3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.30000
+
+Drive completed.
+
+
+3:17:04 PM 6/25/2012 Executing "drive s1 16.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.20000
+
+Drive completed.
+
+
+3:17:08 PM 6/25/2012 Executing "drive s1 16.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.10000
+
+Drive completed.
+
+
+3:17:15 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 105
+# date = 6/25/2012
+# time = 3:17:15 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 15.1000 1.000 46.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 15.2000 1.000 63.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 15.3000 1.000 217.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 15.4000 1.000 1241.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 15.5000 1.000 4509.000 2167.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 15.6000 1.000 12084.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.7000 1.000 18721.000 1998.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.8000 1.000 16206.000 2186.000 1.063 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.9000 1.000 9980.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 16.0000 1.000 6620.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0131 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 16.1000 1.000 4615.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 16.2000 1.000 3319.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 16.3000 1.000 3568.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 16.4000 1.000 2955.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 16.5000 1.000 879.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 16.6000 1.000 205.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0069 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 16.7000 1.000 63.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 16.8000 1.000 40.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 16.9000 1.000 29.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 17.0000 1.000 22.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 17.1000 1.000 41.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 85423
+# Center of Mass = 15.838189+/-0.076641
+# Full Width Half-Maximum = 0.498437+/-0.038327
+# 3:17:46 PM 6/25/2012 scan completed.
+
+3:17:46 PM 6/25/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.10000
+
+Drive completed.
+
+
+3:18:57 PM 6/25/2012 Executing "drive s1 15"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.00000
+
+Drive completed.
+
+
+3:19:02 PM 6/25/2012 Executing "drive s1 10"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 10.00000
+
+Drive completed.
+
+
+3:19:07 PM 6/25/2012 Executing "drive s1 12"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 12.00000
+
+Drive completed.
+
+
+3:19:10 PM 6/25/2012 Executing "drive s1 11"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.00000
+
+Drive completed.
+
+
+3:19:14 PM 6/25/2012 Executing "drive s1 11.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.10000
+
+Drive completed.
+
+
+3:19:17 PM 6/25/2012 Executing "drive s1 11.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 11.20000
+
+Drive completed.
+
+
+3:23:22 PM 6/25/2012 Executing "drive s1 14"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 14.00000
+
+Drive completed.
+
+
+3:23:30 PM 6/25/2012 Executing "drive s1 14.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 14.50000
+
+Drive completed.
+
+
+3:23:35 PM 6/25/2012 Executing "drive s1 15"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.00000
+
+Drive completed.
+
+
+3:23:37 PM 6/25/2012 Executing "drive s1 15.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.50000
+
+Drive completed.
+
+
+3:23:41 PM 6/25/2012 Executing "drive s1 15.7"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:23:48 PM 6/25/2012 Executing "drive s1 17"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.00000
+
+Drive completed.
+
+
+3:24:00 PM 6/25/2012 Executing "drive s1 16.8"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.80000
+
+Drive completed.
+
+
+3:24:04 PM 6/25/2012 Executing "drive s1 17.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.20000
+
+Drive completed.
+
+
+3:24:08 PM 6/25/2012 Executing "drive s1 17.3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.30000
+
+Drive completed.
+
+
+3:25:40 PM 6/25/2012 Executing "drive s1 16.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 16.50000
+
+Drive completed.
+
+
+3:25:52 PM 6/25/2012 Executing "drive s1 17.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 17.50000
+
+Drive completed.
+
+
+3:25:58 PM 6/25/2012 Executing "drive s1 15.7"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:26:04 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+2 0.100000"
+ Derived from "scanrel s1 -1 2 0.1"
+
+
+# scan = 106
+# date = 6/25/2012
+# time = 3:26:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 2 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 14.7000 1.000 73.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 14.8000 1.000 40.000 2187.000 1.064 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0543 2.0249 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.9000 1.000 59.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0239 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 15.0000 1.000 55.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0499 2.0230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 15.1000 1.000 52.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 15.2000 1.000 82.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.3000 1.000 257.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.4000 1.000 1325.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.5000 1.000 4467.000 2010.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.6000 1.000 12234.000 2166.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.7000 1.000 18914.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.8000 1.000 16202.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 15.9000 1.000 9985.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 16.0000 1.000 6754.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0131 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 16.1000 1.000 5269.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 16.2000 1.000 5962.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 16.3000 1.000 8387.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 16.4000 1.000 6987.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 16.5000 1.000 3119.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 16.6000 1.000 1178.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0069 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 16.7000 1.000 396.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 16.8000 1.000 138.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 16.9000 1.000 68.000 2182.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 17.0000 1.000 51.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 17.1000 1.000 45.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 17.2000 1.000 64.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 17.3000 1.000 64.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 17.4000 1.000 37.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 17.5000 1.000 50.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 17.6000 1.000 99.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 17.7000 1.000 160.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0101 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 102573
+# Center of Mass = 15.923690+/-0.070321
+# Full Width Half-Maximum = 0.650285+/-0.035560
+# 3:26:49 PM 6/25/2012 scan completed.
+
+3:26:49 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -1 2 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:26:51 PM 6/25/2012 Executing "drive s2 70"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 70.00000
+
+Drive completed.
+
+
+3:34:38 PM 6/25/2012 Executing "drive s2 35.739"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 35.73900
+
+Drive completed.
+
+
+3:35:24 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+2 0.050000"
+ Derived from "scanrel s1 -1 2 0.05"
+
+
+# scan = 107
+# date = 6/25/2012
+# time = 3:35:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal B alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 14.7000 1.000 36.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 14.7500 1.000 44.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0555 2.0254 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.8000 1.000 44.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0543 2.0249 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 14.8500 1.000 47.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0532 2.0244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 14.9000 1.000 33.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0240 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 14.9500 1.000 34.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0510 2.0235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.0000 1.000 32.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0499 2.0230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.0500 1.000 31.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0488 2.0225 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.1000 1.000 24.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.1500 1.000 28.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0466 2.0216 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.2000 1.000 55.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.2500 1.000 80.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0444 2.0206 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 15.3000 1.000 192.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 15.3500 1.000 364.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0421 2.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 15.4000 1.000 769.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 15.4500 1.000 1570.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0399 2.0186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 15.5000 1.000 2997.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0182 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 15.5500 1.000 5303.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0377 2.0177 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 15.6000 1.000 8529.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 15.6500 1.000 11727.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0355 2.0167 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 15.7000 1.000 13814.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 15.7500 1.000 14014.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0333 2.0157 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 15.8000 1.000 12246.000 1995.000 0.970 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 15.8500 1.000 9898.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0310 2.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 15.9000 1.000 7871.000 2012.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 15.9500 1.000 6420.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0288 2.0137 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 16.0000 1.000 5249.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 16.0500 1.000 4599.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0266 2.0127 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 16.1000 1.000 3913.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 16.1500 1.000 3516.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0244 2.0116 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 16.2000 1.000 3836.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 16.2500 1.000 4524.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 16.3000 1.000 5066.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 16.3500 1.000 5023.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0199 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 16.4000 1.000 4355.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0091 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 16.4500 1.000 3215.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0177 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 16.5000 1.000 2101.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 16.5500 1.000 1291.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 16.6000 1.000 838.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0070 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 16.6500 1.000 635.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 16.7000 1.000 461.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 16.7500 1.000 235.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 16.8000 1.000 177.000 2002.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 16.8500 1.000 101.000 2194.000 1.067 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0088 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 16.9000 1.000 71.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 16.9500 1.000 30.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0066 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 17.0000 1.000 32.000 2195.000 1.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 17.0500 1.000 22.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 17.1000 1.000 35.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 17.1500 1.000 41.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 17.2000 1.000 50.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 17.2500 1.000 54.000 1957.000 0.952 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0001 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 17.3000 1.000 43.000 2200.000 1.070 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 17.3500 1.000 44.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0023 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 17.4000 1.000 43.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 17.4500 1.000 31.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0045 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 17.5000 1.000 50.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 17.5500 1.000 43.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 17.6000 1.000 65.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 17.6500 1.000 99.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 17.7000 1.000 113.000 2154.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0100 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 146203
+# Center of Mass = 15.916692+/-0.058875
+# Full Width Half-Maximum = 0.634987+/-0.020443
+# 3:36:47 PM 6/25/2012 scan completed.
+
+3:36:47 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -1 2 0.05"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:37:11 PM 6/25/2012 Executing "scantitle "crystal A+B+C+D alignment""
+
+Setting the scantitle to:
+crystal A+B+C+D alignment
+
+
+3:37:17 PM 6/25/2012 Executing "scantitle "crystal A+B+C+D co-alignment""
+
+Setting the scantitle to:
+crystal A+B+C+D co-alignment
+
+
+3:37:25 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+2 0.050000"
+ Derived from "scanrel s1 -1 2 0.05"
+
+
+# scan = 108
+# date = 6/25/2012
+# time = 3:37:25 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 14.7000 1.000 35.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 14.7500 1.000 43.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0555 2.0254 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.8000 1.000 45.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0543 2.0249 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 14.8500 1.000 32.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0532 2.0244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 14.9000 1.000 52.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0240 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 14.9500 1.000 32.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0510 2.0235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.0000 1.000 37.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0499 2.0230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.0500 1.000 31.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0488 2.0225 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.1000 1.000 37.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.1500 1.000 55.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0466 2.0216 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.2000 1.000 46.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.2500 1.000 81.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0444 2.0206 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 15.3000 1.000 168.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 15.3500 1.000 365.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0421 2.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 15.4000 1.000 757.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 15.4500 1.000 1578.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0399 2.0186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 15.5000 1.000 3029.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0182 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 15.5500 1.000 5283.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0377 2.0177 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 15.6000 1.000 8375.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 15.6500 1.000 11818.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0355 2.0167 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 15.7000 1.000 13649.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 15.7500 1.000 13941.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0333 2.0157 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 15.8000 1.000 12267.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 15.8500 1.000 9972.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0310 2.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 15.9000 1.000 7906.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 15.9500 1.000 6296.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0288 2.0137 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 16.0000 1.000 5280.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 16.0500 1.000 4720.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0266 2.0127 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 16.1000 1.000 3852.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 16.1500 1.000 3565.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0244 2.0116 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 16.2000 1.000 3845.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 16.2500 1.000 4350.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 16.3000 1.000 5101.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 16.3500 1.000 5057.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0199 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 16.4000 1.000 4490.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0091 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 16.4500 1.000 3252.000 2157.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0177 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 16.5000 1.000 2059.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 16.5500 1.000 1312.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 16.6000 1.000 891.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0070 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 16.6500 1.000 630.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 16.7000 1.000 413.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 16.7500 1.000 266.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 16.8000 1.000 175.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 16.8500 1.000 98.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0088 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 16.9000 1.000 67.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 16.9500 1.000 41.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0066 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 17.0000 1.000 39.000 2127.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 17.0500 1.000 32.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 17.1000 1.000 45.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 17.1500 1.000 42.000 2196.000 1.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 17.2000 1.000 46.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 17.2500 1.000 51.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0001 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 17.3000 1.000 54.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 17.3500 1.000 42.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0023 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 17.4000 1.000 38.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 17.4500 1.000 44.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0045 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 17.5000 1.000 39.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 17.5500 1.000 46.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 17.6000 1.000 73.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 17.6500 1.000 96.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 17.7000 1.000 159.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0100 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 146240
+# Center of Mass = 15.918439+/-0.058874
+# Full Width Half-Maximum = 0.640249+/-0.020335
+# 3:38:48 PM 6/25/2012 scan completed.
+
+3:38:48 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -1 2 0.05"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:38:58 PM 6/25/2012 Executing "scantitle "crystal A+B+C+D co-alignment (002)""
+
+Setting the scantitle to:
+crystal A+B+C+D co-alignment (002)
+
+
+3:39:00 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+2 0.050000"
+ Derived from "scanrel s1 -1 2 0.05"
+
+
+# scan = 109
+# date = 6/25/2012
+# time = 3:39:00 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (002)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = 0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_25318PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 14.7000 1.000 47.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0566 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 14.7500 1.000 51.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0555 2.0254 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 14.8000 1.000 36.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0543 2.0249 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 14.8500 1.000 50.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0532 2.0244 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 14.9000 1.000 47.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0240 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 14.9500 1.000 43.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0510 2.0235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 15.0000 1.000 30.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0499 2.0230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 15.0500 1.000 40.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0488 2.0225 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 15.1000 1.000 34.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0477 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 15.1500 1.000 44.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0466 2.0216 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 15.2000 1.000 38.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0455 2.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 15.2500 1.000 92.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0444 2.0206 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 15.3000 1.000 158.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 15.3500 1.000 358.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0421 2.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 15.4000 1.000 730.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0410 2.0191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 15.4500 1.000 1609.000 1992.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0399 2.0186 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 15.5000 1.000 2921.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0182 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 15.5500 1.000 5357.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0377 2.0177 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 15.6000 1.000 8530.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0366 2.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 15.6500 1.000 12019.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0355 2.0167 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 15.7000 1.000 13822.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0344 2.0162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 15.7500 1.000 13720.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0333 2.0157 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 15.8000 1.000 12274.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0321 2.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 15.8500 1.000 9917.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0310 2.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 15.9000 1.000 7935.000 2006.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 15.9500 1.000 6323.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0288 2.0137 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 16.0000 1.000 5221.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0277 2.0132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 16.0500 1.000 4510.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0266 2.0127 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 16.1000 1.000 3843.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0255 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 16.1500 1.000 3649.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0244 2.0116 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 16.2000 1.000 3866.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0233 2.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 16.2500 1.000 4450.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0222 2.0106 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 16.3000 1.000 5085.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0101 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 16.3500 1.000 5147.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0199 2.0096 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 16.4000 1.000 4521.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0188 2.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 16.4500 1.000 3268.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0177 2.0085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 16.5000 1.000 2142.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 16.5500 1.000 1298.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0155 2.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 16.6000 1.000 905.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0144 2.0070 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 16.6500 1.000 616.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0133 2.0064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 16.7000 1.000 458.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0122 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 16.7500 1.000 271.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0111 2.0054 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 16.8000 1.000 164.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0099 2.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 16.8500 1.000 99.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0088 2.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 16.9000 1.000 58.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0038 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 16.9500 1.000 45.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0066 2.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 17.0000 1.000 39.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0055 2.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 17.0500 1.000 34.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0044 2.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 17.1000 1.000 39.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0033 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 17.1500 1.000 39.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0022 2.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 17.2000 1.000 58.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0011 2.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 17.2500 1.000 59.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0001 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 17.3000 1.000 59.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 17.3500 1.000 41.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0023 1.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 17.4000 1.000 32.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0034 1.9983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 17.4500 1.000 29.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0045 1.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 17.5000 1.000 31.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 17.5500 1.000 42.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0067 1.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 17.6000 1.000 72.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0078 1.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 17.6500 1.000 110.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0089 1.9956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 17.7000 1.000 123.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7390 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0100 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 146648
+# Center of Mass = 15.918246+/-0.058792
+# Full Width Half-Maximum = 0.639553+/-0.020434
+# 3:40:23 PM 6/25/2012 scan completed.
+
+3:40:23 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -1 2 0.05"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.70000
+
+Drive completed.
+
+
+3:40:51 PM 6/25/2012 Executing "drive s1 15.7459"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.74590
+
+Drive completed.
+
+
+3:40:59 PM 6/25/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_34058PM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB25Jun2012_34058PM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=0.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=2.0000 a1=35.7390 s2=15.7459 s1=0.0000 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=7.5967 b=8.3927 c=13.8129 alpha=72.6180 beta=89.0970 gamma=87.8220
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 2.0000 35.7390 15.7459 0.0000 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 2.0000 5.0000 5.0000 142.9286 35.7386 15.7457 0.0000 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0569 0.9163 35.7390 15.7459 0.0000 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB25Jun2012_34059PM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB25Jun2012_34059PM.ini
+
+
+3:41:04 PM 6/25/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 110
+# date = 6/25/2012
+# time = 3:41:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (002)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 33.7390 14.7457 1.000 3.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9016 0.0000 0.0000 1.8915 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 33.9390 14.8459 1.000 6.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9067 0.0000 0.0000 1.9023 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 34.1390 14.9459 1.000 3.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9119 0.0000 0.0000 1.9132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 34.3390 15.0459 1.000 2.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9171 0.0000 0.0000 1.9241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 34.5390 15.1459 1.000 7.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9223 0.0000 0.0000 1.9349 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 34.7390 15.2459 1.000 68.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9275 0.0000 0.0000 1.9458 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 34.9390 15.3459 1.000 498.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9326 0.0000 0.0000 1.9567 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 35.1390 15.4459 1.000 1133.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9378 0.0000 0.0000 1.9675 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 35.3390 15.5459 1.000 3195.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9430 0.0000 0.0000 1.9784 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 35.5390 15.6459 1.000 8805.000 1918.000 0.933 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9481 0.0000 0.0000 1.9892 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 35.7390 15.7459 1.000 13883.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0000 2.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 35.9390 15.8459 1.000 11986.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9585 0.0000 0.0000 2.0108 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 36.1390 15.9459 1.000 6299.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9636 0.0000 0.0000 2.0217 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 36.3390 16.0459 1.000 1502.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9688 0.0000 0.0000 2.0325 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 36.5390 16.1459 1.000 139.000 1954.000 0.950 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9739 0.0000 0.0000 2.0433 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 36.7390 16.2459 1.000 24.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9791 0.0000 0.0000 2.0541 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 36.9390 16.3459 1.000 4.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9842 0.0000 0.0000 2.0649 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 37.1390 16.4459 1.000 7.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9894 0.0000 0.0000 2.0757 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 37.3390 16.5459 1.000 10.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9945 0.0000 0.0000 2.0864 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 37.5390 16.6459 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9996 0.0000 0.0000 2.0972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 37.7390 16.7459 1.000 6.000 1976.000 0.961 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 1.0048 0.0000 0.0000 2.1080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 47586
+# Center of Mass = 35.776587+/-0.231943
+# Full Width Half-Maximum = 0.570604+/-0.141043
+# 3:41:51 PM 6/25/2012 scan completed.
+
+3:41:51 PM 6/25/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 15.76467
+s2 35.77659
+
+Drive completed.
+
+
+3:42:12 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 0 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 17.65076
+s1 6.70172
+sgl 0.00002
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+3:43:21 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+2 0.050000"
+ Derived from "scanrel s1 -1 2 0.05"
+
+
+# scan = 111
+# date = 6/25/2012
+# time = 3:43:21 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (002)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 5.7017 1.000 9.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0111 1.0053 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 5.7517 1.000 11.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0105 1.0050 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 5.8017 1.000 5.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0100 1.0048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 5.8517 1.000 6.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0094 1.0045 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 5.9017 1.000 3.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0089 1.0043 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 5.9517 1.000 5.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0083 1.0040 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 6.0017 1.000 6.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0078 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 6.0517 1.000 4.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0072 1.0035 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 6.1017 1.000 7.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0067 1.0032 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 6.1517 1.000 18.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0061 1.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 6.2017 1.000 10.000 1993.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0056 1.0027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 6.2517 1.000 25.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0050 1.0024 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 6.3017 1.000 66.000 2179.000 1.060 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0044 1.0022 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 6.3517 1.000 109.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0039 1.0019 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 6.4017 1.000 220.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0033 1.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 6.4517 1.000 328.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0028 1.0014 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 6.5017 1.000 507.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0022 1.0011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 6.5517 1.000 854.000 1990.000 0.968 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0017 1.0008 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 6.6017 1.000 1258.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0011 1.0005 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 6.6517 1.000 1735.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0006 1.0003 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 6.7017 1.000 1877.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 0.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 6.7517 1.000 1820.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0006 0.9997 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 6.8017 1.000 1360.000 2021.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0011 0.9995 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 6.8517 1.000 1166.000 2137.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0017 0.9992 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 6.9017 1.000 1159.000 1941.000 0.944 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0022 0.9989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 6.9517 1.000 1168.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0028 0.9986 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 7.0017 1.000 1124.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0033 0.9984 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 7.0517 1.000 1048.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0039 0.9981 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 7.1017 1.000 802.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0044 0.9978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 7.1517 1.000 610.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0050 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 7.2017 1.000 576.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0056 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 7.2517 1.000 700.000 2168.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0061 0.9970 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 7.3017 1.000 827.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0067 0.9967 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 7.3517 1.000 841.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0072 0.9964 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 7.4017 1.000 726.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0078 0.9961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 7.4517 1.000 476.000 2179.000 1.060 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0083 0.9958 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 7.5017 1.000 322.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0089 0.9955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 7.5517 1.000 198.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0094 0.9953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 7.6017 1.000 149.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0100 0.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 7.6517 1.000 75.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0105 0.9947 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 7.7017 1.000 46.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0111 0.9944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 7.7517 1.000 25.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0117 0.9941 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 7.8017 1.000 9.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0122 0.9938 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 7.8517 1.000 10.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0128 0.9935 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 7.9017 1.000 10.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0133 0.9932 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 7.9517 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0139 0.9929 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 8.0017 1.000 11.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0144 0.9927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 8.0517 1.000 12.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0150 0.9924 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 8.1017 1.000 8.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0155 0.9921 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 8.1517 1.000 4.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0161 0.9918 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 8.2017 1.000 10.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0167 0.9915 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 8.2517 1.000 10.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0172 0.9912 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 8.3017 1.000 3.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0178 0.9909 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 8.3517 1.000 10.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0183 0.9906 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 8.4017 1.000 7.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0189 0.9903 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 8.4517 1.000 4.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0194 0.9900 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 8.5017 1.000 5.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0200 0.9897 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 8.5517 1.000 11.000 1999.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0205 0.9894 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 8.6017 1.000 15.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0211 0.9891 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 8.6517 1.000 18.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0216 0.9888 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 8.7017 1.000 19.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 17.6508 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.4766 0.0000 -0.0222 0.9885 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 22462
+# Center of Mass = 6.927477+/-0.065404
+# Full Width Half-Maximum = 0.652869+/-0.022664
+# 3:44:45 PM 6/25/2012 scan completed.
+
+3:44:45 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -1 2 0.05"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 6.70172
+
+Drive completed.
+
+
+3:48:20 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 0.000000 e 0.000000"
+ Derived from "br 0 1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.26985
+s1 -94.84994
+sgl 0.00002
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+3:49:12 PM 6/25/2012 Executing "scantitle "crystal A+B+C+D co-alignment (010)""
+
+Setting the scantitle to:
+crystal A+B+C+D co-alignment (010)
+
+
+3:49:19 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+2 0.050000"
+ Derived from "scanrel s1 -1 2 0.05"
+
+
+# scan = 112
+# date = 6/25/2012
+# time = 3:49:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (010)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -95.8499 1.000 12.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9944 -0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -95.7999 1.000 9.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9947 -0.0286 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -95.7499 1.000 13.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9950 -0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -95.6999 1.000 11.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9953 -0.0256 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -95.6499 1.000 8.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9955 -0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -95.5999 1.000 7.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9958 -0.0226 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -95.5499 1.000 11.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9961 -0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -95.4999 1.000 11.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9964 -0.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -95.4499 1.000 36.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9967 -0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -95.3999 1.000 63.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9970 -0.0166 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -95.3499 1.000 113.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9972 -0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -95.2999 1.000 180.000 1979.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9975 -0.0136 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -95.2499 1.000 258.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9978 -0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -95.1999 1.000 466.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9981 -0.0105 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -95.1499 1.000 919.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9983 -0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -95.0999 1.000 1552.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9986 -0.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -95.0499 1.000 2134.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 0.9989 -0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -94.9999 1.000 2784.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9992 -0.0045 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -94.9499 1.000 3199.000 2159.000 1.050 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9995 -0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -94.8999 1.000 3554.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 0.9997 -0.0015 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -94.8499 1.000 3644.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0000 0.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 -94.7999 1.000 3671.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0003 0.0015 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 -94.7499 1.000 3748.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0005 0.0030 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 -94.6999 1.000 3882.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0008 0.0045 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 -94.6499 1.000 3758.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0011 0.0060 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 -94.5999 1.000 3852.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0014 0.0075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 -94.5499 1.000 3834.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0016 0.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 -94.4999 1.000 3563.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0019 0.0105 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 -94.4499 1.000 3645.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0022 0.0120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 -94.3999 1.000 3630.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0024 0.0136 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 -94.3499 1.000 3499.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0027 0.0151 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 -94.2999 1.000 2809.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0030 0.0166 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 -94.2499 1.000 2121.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0032 0.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 -94.1999 1.000 1380.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0035 0.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 -94.1499 1.000 724.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0037 0.0211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 -94.0999 1.000 306.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0040 0.0226 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 -94.0499 1.000 104.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0043 0.0241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 -93.9999 1.000 48.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0045 0.0256 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 -93.9499 1.000 31.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0048 0.0271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 -93.8999 1.000 27.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0050 0.0286 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 -93.8499 1.000 27.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0053 0.0301 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 -93.7999 1.000 33.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0056 0.0316 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 -93.7499 1.000 39.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0058 0.0331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 -93.6999 1.000 39.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0061 0.0346 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 -93.6499 1.000 66.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0063 0.0361 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 -93.5999 1.000 53.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0066 0.0376 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 -93.5499 1.000 72.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0068 0.0391 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 -93.4999 1.000 77.000 1999.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0071 0.0407 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 -93.4499 1.000 60.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0073 0.0422 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 -93.3999 1.000 60.000 2161.000 1.051 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0076 0.0437 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 -93.3499 1.000 48.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0078 0.0452 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 -93.2999 1.000 22.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0081 0.0467 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 -93.2499 1.000 17.000 2021.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0083 0.0482 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 -93.1999 1.000 13.000 2200.000 1.070 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0086 0.0497 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 -93.1499 1.000 10.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0088 0.0512 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 -93.0999 1.000 12.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0091 0.0527 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 -93.0499 1.000 13.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0093 0.0542 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 -92.9999 1.000 19.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0096 0.0557 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 -92.9499 1.000 28.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7849 0.0000 1.0098 0.0572 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 -92.8999 1.000 25.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0101 0.0587 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 -92.8499 1.000 29.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.2698 0.0000 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7850 0.0000 1.0103 0.0602 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 64378
+# Center of Mass = -94.643887+/-0.527521
+# Full Width Half-Maximum = 0.602020+/-0.175880
+# 3:50:42 PM 6/25/2012 scan completed.
+
+3:50:42 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -1 2 0.05"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -94.84992
+
+Drive completed.
+
+
+3:51:22 PM 6/25/2012 Executing "drive h 0.000000 k 1.000000 l 1.000000 e 0.000000"
+ Derived from "br 0 1 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 29.36462
+s1 -59.51070
+sgl 0.00002
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+3:51:49 PM 6/25/2012 Executing "scantitle "crystal A+B+C+D co-alignment (011)""
+
+Setting the scantitle to:
+crystal A+B+C+D co-alignment (011)
+
+
+3:51:54 PM 6/25/2012 Executing "scan s1 @(s1)+-1 @(s1)+2 0.050000"
+ Derived from "scanrel s1 -1 2 0.05"
+
+
+# scan = 113
+# date = 6/25/2012
+# time = 3:51:54 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 2 0.05
+# builtin_command = scan s1 @(s1)+-1 @(s1)+2 0.050000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = crystal A+B+C+D co-alignment (011)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -60.5107 1.000 25.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0055 0.9752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 -60.4607 1.000 15.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0052 0.9764 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 -60.4107 1.000 15.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0050 0.9777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 -60.3607 1.000 6.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0047 0.9789 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 -60.3107 1.000 10.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0044 0.9802 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 -60.2607 1.000 8.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0041 0.9814 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 -60.2107 1.000 19.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0039 0.9827 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 -60.1607 1.000 38.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0036 0.9839 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 -60.1107 1.000 58.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0033 0.9852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 -60.0607 1.000 86.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0031 0.9864 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 -60.0107 1.000 160.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0028 0.9876 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 -59.9607 1.000 197.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0025 0.9889 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 -59.9107 1.000 242.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0022 0.9901 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 -59.8607 1.000 315.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0020 0.9914 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 -59.8107 1.000 467.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0017 0.9926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 -59.7607 1.000 692.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0014 0.9938 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 -59.7107 1.000 1019.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0011 0.9951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 -59.6607 1.000 1085.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0008 0.9963 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 -59.6107 1.000 1348.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0006 0.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 -59.5607 1.000 1362.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0003 0.9988 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 -59.5107 1.000 1546.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 1.0000 1.0000 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 -59.4607 1.000 1920.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9997 1.0012 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 -59.4107 1.000 2283.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9994 1.0025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 -59.3607 1.000 2841.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9991 1.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 -59.3107 1.000 3479.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9989 1.0049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 -59.2607 1.000 4053.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9986 1.0062 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 -59.2107 1.000 4187.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9983 1.0074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 -59.1607 1.000 4189.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9980 1.0086 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 -59.1107 1.000 4283.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9977 1.0098 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 -59.0607 1.000 4138.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9974 1.0111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 -59.0107 1.000 4100.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9971 1.0123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 -58.9607 1.000 3599.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9968 1.0135 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 -58.9107 1.000 2527.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9966 1.0147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 -58.8607 1.000 1405.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9963 1.0160 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 -58.8107 1.000 617.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9960 1.0172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 -58.7607 1.000 200.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9957 1.0184 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 -58.7107 1.000 98.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9954 1.0196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 -58.6607 1.000 44.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9951 1.0208 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 -58.6107 1.000 31.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9948 1.0221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 -58.5607 1.000 18.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9945 1.0233 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 -58.5107 1.000 26.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9942 1.0245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 -58.4607 1.000 13.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9939 1.0257 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 -58.4107 1.000 17.000 1997.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9936 1.0269 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 -58.3607 1.000 17.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9933 1.0282 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 -58.3107 1.000 16.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9930 1.0294 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 -58.2607 1.000 12.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9927 1.0306 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 -58.2107 1.000 11.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9924 1.0318 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 -58.1607 1.000 15.000 2002.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9921 1.0330 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 -58.1107 1.000 6.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9918 1.0342 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 -58.0607 1.000 13.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9915 1.0354 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 -58.0107 1.000 5.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9912 1.0366 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 -57.9607 1.000 7.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9909 1.0378 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 -57.9107 1.000 4.000 2160.000 1.051 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9906 1.0391 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 -57.8607 1.000 7.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9903 1.0403 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 -57.8107 1.000 2.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9900 1.0415 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 -57.7607 1.000 2.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9897 1.0427 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 -57.7107 1.000 3.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9893 1.0439 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 -57.6607 1.000 4.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9890 1.0451 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 -57.6107 1.000 5.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9887 1.0463 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 -57.5607 1.000 3.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9884 1.0475 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 -57.5107 1.000 12.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 29.3646 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.7874 0.0000 0.9881 1.0487 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 52925
+# Center of Mass = -59.231480+/-0.364116
+# Full Width Half-Maximum = 0.534623+/-0.122425
+# 3:53:16 PM 6/25/2012 scan completed.
+
+3:53:16 PM 6/25/2012 Executing "drive s1 @(s1)-2"
+ Derived from "scanrel s1 -1 2 0.05"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -59.51068
+
+Drive completed.
+
+
+3:53:56 PM 6/25/2012 Executing "drive s2 64.395"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 64.39500
+
+Drive completed.
+
+
+3:55:07 PM 6/25/2012 Executing "drive s1 -90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -90.00000
+
+Drive completed.
+
+
+3:55:28 PM 6/25/2012 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive completed.
+
+
+3:57:06 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 35.73865
+s1 15.74567
+sgl 0.00002
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+3:57:51 PM 6/25/2012 Executing "drive s1 90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 90.00000
+
+Drive completed.
+
+
+3:58:29 PM 6/25/2012 Executing "scantitle "long scan of (002) 4-crystal""
+
+Setting the scantitle to:
+long scan of (002) 4-crystal
+
+
+3:58:36 PM 6/25/2012 Executing "scan s1 90 -90 0.2"
+
+
+# scan = 114
+# date = 6/25/2012
+# time = 3:58:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan s1 90 -90 0.2
+# builtin_command = scan s1 90 -90 0.2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = long scan of (002) 4-crystal
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 90.0000 1.000 2.000 2181.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2247 -0.0591 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 89.8000 1.000 3.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2235 -0.0518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 89.6000 1.000 4.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2223 -0.0445 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 89.3998 1.000 2.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2210 -0.0371 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 89.2000 1.000 5.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2198 -0.0298 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 89.0000 1.000 4.000 1952.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2185 -0.0225 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 88.8000 1.000 1.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2172 -0.0152 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 88.6000 1.000 3.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2159 -0.0079 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 88.4000 1.000 1.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2146 -0.0006 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 88.1998 1.000 4.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2132 0.0068 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 88.0000 1.000 1.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2119 0.0141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 87.7999 1.000 0.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2105 0.0214 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 87.6000 1.000 3.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2092 0.0287 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 87.3998 1.000 0.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2078 0.0360 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 87.2000 1.000 3.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2064 0.0433 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 87.0000 1.000 3.000 2007.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2049 0.0506 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 86.8000 1.000 1.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2035 0.0579 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 86.6000 1.000 2.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2021 0.0653 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 86.4000 1.000 3.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.2006 0.0726 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 86.2000 1.000 3.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1991 0.0799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 86.0000 1.000 1.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1976 0.0872 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 85.8000 1.000 2.000 1966.000 0.956 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1961 0.0945 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 85.6000 1.000 1.000 1984.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1946 0.1018 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 85.4000 1.000 8.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1931 0.1091 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 85.2000 1.000 5.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1915 0.1164 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 85.0000 1.000 4.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1899 0.1237 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 84.8000 1.000 3.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1884 0.1310 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 84.6000 1.000 4.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1868 0.1383 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 84.4000 1.000 1.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1852 0.1456 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 84.2000 1.000 2.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1835 0.1529 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 83.9998 1.000 5.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1819 0.1602 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 83.8000 1.000 5.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1802 0.1675 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 83.6000 1.000 2.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1786 0.1748 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 83.3998 1.000 2.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1769 0.1821 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 83.2000 1.000 3.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1752 0.1894 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 83.0000 1.000 3.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1735 0.1966 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 82.7999 1.000 1.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1718 0.2039 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 82.5998 1.000 1.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1700 0.2112 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 82.4000 1.000 3.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1683 0.2185 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 82.2000 1.000 2.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1665 0.2257 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 82.0000 1.000 5.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1647 0.2330 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 42 81.8000 1.000 4.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1629 0.2403 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 43 81.5998 1.000 1.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1611 0.2476 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 44 81.4000 1.000 3.000 2157.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1593 0.2548 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 45 81.1999 1.000 4.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1574 0.2621 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 46 81.0000 1.000 3.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1556 0.2693 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 47 80.8000 1.000 2.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1537 0.2766 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 48 80.6000 1.000 4.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1519 0.2838 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 49 80.3998 1.000 3.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1500 0.2911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 50 80.1998 1.000 1.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1480 0.2983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 51 80.0000 1.000 1.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1461 0.3055 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 52 79.8000 1.000 2.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1442 0.3128 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 53 79.6000 1.000 2.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1422 0.3200 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 54 79.4000 1.000 2.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1403 0.3272 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 55 79.1998 1.000 5.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1383 0.3345 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 56 79.0000 1.000 4.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1363 0.3417 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 57 78.8000 1.000 3.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1343 0.3489 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 58 78.6000 1.000 2.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1323 0.3561 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 59 78.4000 1.000 3.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1302 0.3633 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 60 78.2000 1.000 6.000 2156.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1282 0.3705 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 61 78.0000 1.000 5.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1261 0.3777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 62 77.8000 1.000 1.000 1966.000 0.956 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1241 0.3849 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 63 77.6000 1.000 6.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1220 0.3921 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 64 77.4000 1.000 3.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1199 0.3993 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 65 77.2000 1.000 7.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1178 0.4065 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 66 77.0000 1.000 6.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1156 0.4136 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 67 76.8000 1.000 1.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1135 0.4208 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 68 76.6000 1.000 1.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1113 0.4280 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 69 76.4000 1.000 2.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1092 0.4351 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 70 76.1998 1.000 6.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1070 0.4423 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 71 76.0000 1.000 6.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1048 0.4494 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 72 75.8000 1.000 1.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1026 0.4566 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 73 75.6000 1.000 8.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.1003 0.4637 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 74 75.3997 1.000 6.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0981 0.4708 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 75 75.2000 1.000 3.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0959 0.4779 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 76 75.0000 1.000 1.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0936 0.4851 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 77 74.8000 1.000 6.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0913 0.4922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 78 74.6000 1.000 3.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0890 0.4993 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 79 74.4000 1.000 6.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0867 0.5064 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 80 74.2000 1.000 2.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0844 0.5135 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 81 73.9997 1.000 0.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0821 0.5206 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 82 73.8000 1.000 3.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0797 0.5277 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 83 73.6000 1.000 3.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0774 0.5347 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 84 73.4000 1.000 3.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0750 0.5418 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 85 73.2000 1.000 4.000 2135.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0726 0.5489 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 86 72.9997 1.000 6.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0702 0.5559 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 87 72.8000 1.000 4.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0678 0.5630 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 88 72.6000 1.000 2.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0654 0.5700 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 89 72.3998 1.000 3.000 2007.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0630 0.5770 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 90 72.2000 1.000 4.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0605 0.5841 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 91 72.0000 1.000 1.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0580 0.5911 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 92 71.7997 1.000 4.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0556 0.5981 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 93 71.6000 1.000 4.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0531 0.6051 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 94 71.4000 1.000 0.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0506 0.6121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 95 71.1998 1.000 4.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0481 0.6191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 96 71.0000 1.000 1.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0456 0.6261 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 97 70.8000 1.000 2.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0430 0.6331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 98 70.6000 1.000 0.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0405 0.6400 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 99 70.4000 1.000 3.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0379 0.6470 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 100 70.2000 1.000 2.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0353 0.6539 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 101 69.9997 1.000 4.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0327 0.6609 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 102 69.8000 1.000 5.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0301 0.6678 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 103 69.5998 1.000 4.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0275 0.6748 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 104 69.4000 1.000 3.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0249 0.6817 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 105 69.2000 1.000 2.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0223 0.6886 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 106 69.0000 1.000 2.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0196 0.6955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 107 68.8000 1.000 5.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0169 0.7024 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 108 68.6000 1.000 7.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0143 0.7093 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 109 68.4000 1.000 5.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0116 0.7162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 110 68.1998 1.000 8.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0089 0.7230 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 111 68.0000 1.000 2.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0062 0.7299 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 112 67.7998 1.000 2.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0034 0.7367 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 113 67.6000 1.000 4.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -1.0007 0.7436 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 114 67.4000 1.000 3.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9980 0.7504 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 115 67.2000 1.000 3.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9952 0.7572 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 116 66.9998 1.000 5.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9924 0.7641 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 117 66.8000 1.000 5.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9896 0.7709 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 118 66.6000 1.000 2.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9868 0.7777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 119 66.4000 1.000 3.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9840 0.7844 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 120 66.2000 1.000 1.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9812 0.7912 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 121 65.9999 1.000 5.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9784 0.7980 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 122 65.8000 1.000 1.000 1925.000 0.936 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9755 0.8048 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 123 65.5998 1.000 4.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9727 0.8115 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 124 65.4000 1.000 1.000 2012.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9698 0.8182 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 125 65.1997 1.000 4.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9669 0.8250 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 126 65.0000 1.000 5.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9640 0.8317 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 127 64.8000 1.000 3.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9611 0.8384 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 128 64.6000 1.000 3.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9582 0.8451 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 129 64.4000 1.000 3.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9553 0.8518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 130 64.2000 1.000 2.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9523 0.8585 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 131 64.0000 1.000 7.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9494 0.8651 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 132 63.8000 1.000 8.000 2001.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9464 0.8718 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 133 63.6000 1.000 2.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9434 0.8784 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 134 63.4000 1.000 4.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9405 0.8851 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 135 63.2000 1.000 1.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9375 0.8917 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 136 62.9999 1.000 7.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9344 0.8983 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 137 62.8000 1.000 2.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9314 0.9049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 138 62.5997 1.000 5.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9284 0.9115 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 139 62.3999 1.000 3.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9253 0.9181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 140 62.2000 1.000 0.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9223 0.9247 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 141 62.0000 1.000 2.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9192 0.9312 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 142 61.8000 1.000 3.000 2143.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9162 0.9378 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 143 61.5998 1.000 6.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9131 0.9443 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 144 61.3999 1.000 2.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9100 0.9508 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 145 61.2000 1.000 3.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9069 0.9573 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 146 61.0000 1.000 4.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9037 0.9638 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 147 60.8000 1.000 2.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.9006 0.9703 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 148 60.5998 1.000 1.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8975 0.9768 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 149 60.4000 1.000 2.000 1976.000 0.961 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8943 0.9833 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 150 60.1998 1.000 4.000 2153.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8911 0.9897 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 151 59.9998 1.000 0.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8880 0.9962 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 152 59.8000 1.000 1.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8848 1.0026 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 153 59.6000 1.000 1.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8816 1.0090 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 154 59.4000 1.000 0.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8784 1.0154 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 155 59.2000 1.000 3.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8752 1.0218 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 156 59.0000 1.000 5.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8719 1.0282 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 157 58.7998 1.000 3.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8687 1.0345 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 158 58.6000 1.000 4.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8654 1.0409 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 159 58.4000 1.000 3.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8622 1.0472 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 160 58.2000 1.000 3.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8589 1.0536 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 161 58.0000 1.000 1.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8556 1.0599 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 162 57.7998 1.000 1.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8523 1.0662 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 163 57.6000 1.000 5.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8490 1.0725 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 164 57.4000 1.000 5.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8457 1.0788 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 165 57.2000 1.000 3.000 2165.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8424 1.0850 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 166 56.9998 1.000 4.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8390 1.0913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 167 56.8000 1.000 3.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8357 1.0975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 168 56.6000 1.000 3.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8323 1.1037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 169 56.4000 1.000 3.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8290 1.1099 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 170 56.2000 1.000 5.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8256 1.1161 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 171 56.0000 1.000 17.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8222 1.1223 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 172 55.8000 1.000 6.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8188 1.1285 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 173 55.6000 1.000 5.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8154 1.1347 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 174 55.4000 1.000 5.000 2149.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8120 1.1408 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 175 55.2000 1.000 0.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8086 1.1469 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 176 55.0000 1.000 4.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8052 1.1530 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 177 54.8000 1.000 2.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.8017 1.1591 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 178 54.5998 1.000 1.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7983 1.1652 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 179 54.4000 1.000 1.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7948 1.1713 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 180 54.2000 1.000 1.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7913 1.1774 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 181 53.9999 1.000 1.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7878 1.1834 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 182 53.8000 1.000 1.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7843 1.1894 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 183 53.6000 1.000 1.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7808 1.1954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 184 53.4000 1.000 1.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7773 1.2014 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 185 53.2000 1.000 2.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7738 1.2074 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 186 53.0000 1.000 2.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7703 1.2134 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 187 52.8000 1.000 2.000 2218.000 1.079 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7667 1.2194 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 188 52.6000 1.000 3.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7632 1.2253 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 189 52.4000 1.000 4.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7596 1.2312 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 190 52.2000 1.000 7.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7561 1.2371 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 191 52.0000 1.000 6.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7525 1.2430 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 192 51.8000 1.000 4.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7489 1.2489 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 193 51.6000 1.000 2.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7453 1.2548 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 194 51.4000 1.000 6.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7417 1.2606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 195 51.1998 1.000 4.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7381 1.2665 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 196 51.0000 1.000 6.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7345 1.2723 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 197 50.8000 1.000 3.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7308 1.2781 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 198 50.5998 1.000 2.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7272 1.2839 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 199 50.4000 1.000 1.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7235 1.2896 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 200 50.1999 1.000 2.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7199 1.2954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 201 50.0000 1.000 4.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7162 1.3011 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 202 49.8000 1.000 5.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7125 1.3069 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 203 49.6000 1.000 6.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7089 1.3126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 204 49.4000 1.000 3.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7052 1.3183 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 205 49.2000 1.000 4.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.7015 1.3240 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 206 49.0000 1.000 3.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6977 1.3296 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 207 48.8000 1.000 2.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6940 1.3353 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 208 48.6000 1.000 2.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6903 1.3409 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 209 48.4000 1.000 1.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6866 1.3465 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 210 48.2000 1.000 1.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6828 1.3521 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 211 48.0000 1.000 1.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6791 1.3577 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 212 47.8000 1.000 12.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6753 1.3632 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 213 47.5998 1.000 26.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6715 1.3688 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 214 47.4000 1.000 5.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6678 1.3743 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 215 47.2000 1.000 9.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6640 1.3798 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 216 47.0000 1.000 19.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6602 1.3853 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 217 46.8000 1.000 12.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6564 1.3908 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 218 46.5998 1.000 1.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6526 1.3963 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 219 46.4000 1.000 4.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6488 1.4017 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 220 46.2000 1.000 3.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6449 1.4071 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 221 46.0000 1.000 5.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6411 1.4126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 222 45.8000 1.000 7.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6373 1.4180 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 223 45.6000 1.000 28.000 1980.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6334 1.4233 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 224 45.4000 1.000 65.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6296 1.4287 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 225 45.2000 1.000 17.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6257 1.4340 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 226 45.0000 1.000 4.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6218 1.4394 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 227 44.8000 1.000 13.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6179 1.4447 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 228 44.6000 1.000 2.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6141 1.4500 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 229 44.4000 1.000 3.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6102 1.4552 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 230 44.2000 1.000 2.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6063 1.4605 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 231 43.9999 1.000 0.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.6024 1.4657 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 232 43.8000 1.000 6.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5984 1.4709 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 233 43.6000 1.000 4.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5945 1.4761 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 234 43.4000 1.000 6.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5906 1.4813 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 235 43.2000 1.000 2.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5866 1.4865 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 236 43.0000 1.000 7.000 2014.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5827 1.4916 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 237 42.8000 1.000 23.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5787 1.4968 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 238 42.6000 1.000 18.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5748 1.5019 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 239 42.4000 1.000 12.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5708 1.5070 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 240 42.2000 1.000 18.000 2161.000 1.051 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5669 1.5120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 241 42.0000 1.000 2.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5629 1.5171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 242 41.8000 1.000 3.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5589 1.5221 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 243 41.6000 1.000 2.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5549 1.5271 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 244 41.4000 1.000 4.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5509 1.5321 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 245 41.1997 1.000 3.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5469 1.5371 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 246 41.0000 1.000 3.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5429 1.5421 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 247 40.8000 1.000 2.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5388 1.5470 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 248 40.5998 1.000 0.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5348 1.5520 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 249 40.4000 1.000 5.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5308 1.5569 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 250 40.2000 1.000 3.000 1982.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5267 1.5617 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 251 40.0000 1.000 2.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5227 1.5666 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 252 39.8000 1.000 3.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5186 1.5715 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 253 39.6000 1.000 2.000 2171.000 1.056 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5146 1.5763 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 254 39.4000 1.000 7.000 1980.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5105 1.5811 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 255 39.2000 1.000 2.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5065 1.5859 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 256 39.0000 1.000 3.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.5024 1.5907 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 257 38.8000 1.000 4.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4983 1.5954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 258 38.6000 1.000 1.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4942 1.6001 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 259 38.4000 1.000 4.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4901 1.6049 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 260 38.2000 1.000 14.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4860 1.6095 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 261 37.9998 1.000 55.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4819 1.6142 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 262 37.8000 1.000 20.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4778 1.6189 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 263 37.6000 1.000 5.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4737 1.6235 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 264 37.4000 1.000 1.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4695 1.6281 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 265 37.2000 1.000 1.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4654 1.6327 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 266 37.0000 1.000 2.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4613 1.6373 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 267 36.7999 1.000 1.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4571 1.6418 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 268 36.6000 1.000 9.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4530 1.6464 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 269 36.4000 1.000 38.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4488 1.6509 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 270 36.2000 1.000 21.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4447 1.6554 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 271 36.0000 1.000 2.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4405 1.6599 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 272 35.8000 1.000 1.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4363 1.6643 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 273 35.6000 1.000 13.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4322 1.6688 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 274 35.4000 1.000 35.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4280 1.6732 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 275 35.2000 1.000 85.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4238 1.6776 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 276 35.0000 1.000 18.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4196 1.6819 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 277 34.8000 1.000 1.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4154 1.6863 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 278 34.6000 1.000 4.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4112 1.6906 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 279 34.4000 1.000 4.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4070 1.6949 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 280 34.2000 1.000 7.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.4028 1.6992 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 281 34.0000 1.000 4.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3986 1.7035 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 282 33.8000 1.000 1.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3944 1.7077 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 283 33.6000 1.000 4.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3901 1.7120 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 284 33.3998 1.000 3.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3859 1.7162 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 285 33.2000 1.000 0.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3817 1.7204 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 286 33.0000 1.000 1.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3774 1.7245 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 287 32.8000 1.000 2.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3732 1.7287 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 288 32.6000 1.000 1.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3689 1.7328 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 289 32.4000 1.000 2.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3647 1.7369 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 290 32.2000 1.000 3.000 1993.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3604 1.7410 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 291 32.0000 1.000 4.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3562 1.7450 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 292 31.8000 1.000 3.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3519 1.7491 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 293 31.6000 1.000 3.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3476 1.7531 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 294 31.4000 1.000 2.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3433 1.7571 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 295 31.2000 1.000 3.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3391 1.7611 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 296 31.0000 1.000 2.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3348 1.7650 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 297 30.8000 1.000 1.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3305 1.7690 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 298 30.5998 1.000 2.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3262 1.7729 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 299 30.4000 1.000 2.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3219 1.7768 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 300 30.2000 1.000 2.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3176 1.7806 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 301 30.0000 1.000 2.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3133 1.7845 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 302 29.8000 1.000 5.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3090 1.7883 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 303 29.6000 1.000 56.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3047 1.7921 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 304 29.4000 1.000 145.000 2143.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.3004 1.7959 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 305 29.2000 1.000 30.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2961 1.7996 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 306 29.0000 1.000 4.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2917 1.8034 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 307 28.8000 1.000 7.000 1999.000 0.972 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2874 1.8071 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 308 28.5998 1.000 2.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2831 1.8108 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 309 28.4000 1.000 3.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2788 1.8144 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 310 28.2000 1.000 4.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2744 1.8181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 311 28.0000 1.000 27.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2701 1.8217 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 312 27.8000 1.000 68.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2657 1.8253 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 313 27.6000 1.000 68.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2614 1.8289 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 314 27.4000 1.000 31.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2570 1.8325 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 315 27.2000 1.000 4.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2527 1.8360 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 316 27.0000 1.000 5.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2483 1.8395 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 317 26.8000 1.000 6.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2440 1.8430 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 318 26.6000 1.000 4.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2396 1.8465 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 319 26.4000 1.000 3.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2353 1.8499 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 320 26.2000 1.000 12.000 2170.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2309 1.8533 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 321 26.0000 1.000 4.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2265 1.8567 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 322 25.8000 1.000 6.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2221 1.8601 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 323 25.6000 1.000 6.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2178 1.8635 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 324 25.4000 1.000 26.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2134 1.8668 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 325 25.2000 1.000 53.000 1912.000 0.930 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2090 1.8701 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 326 25.0000 1.000 31.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2046 1.8734 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 327 24.8000 1.000 21.000 2141.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.2002 1.8767 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 328 24.6000 1.000 25.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1959 1.8799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 329 24.4000 1.000 4.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1915 1.8831 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 330 24.2000 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1871 1.8863 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 331 24.0000 1.000 5.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1827 1.8895 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 332 23.8000 1.000 2.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1783 1.8927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 333 23.6000 1.000 8.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1739 1.8958 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 334 23.4000 1.000 3.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1695 1.8989 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 335 23.2000 1.000 3.000 1988.000 0.967 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1651 1.9020 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 336 23.0000 1.000 4.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1607 1.9050 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 337 22.8000 1.000 3.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1563 1.9081 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 338 22.6000 1.000 3.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1519 1.9111 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 339 22.4000 1.000 3.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1474 1.9141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 340 22.2000 1.000 5.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1430 1.9170 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 341 22.0000 1.000 3.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1386 1.9200 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 342 21.8000 1.000 7.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1342 1.9229 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 343 21.6000 1.000 14.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1298 1.9258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 344 21.3998 1.000 14.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1254 1.9287 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 345 21.2000 1.000 19.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1209 1.9315 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 346 21.0000 1.000 8.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1165 1.9343 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 347 20.8000 1.000 1.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1121 1.9371 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 348 20.6000 1.000 10.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1077 1.9399 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 349 20.4000 1.000 15.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.1033 1.9427 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 350 20.2000 1.000 25.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0988 1.9454 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 351 20.0000 1.000 37.000 2007.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0944 1.9481 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 352 19.8000 1.000 63.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0900 1.9508 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 353 19.6000 1.000 15.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0855 1.9534 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 354 19.4000 1.000 7.000 2121.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0811 1.9561 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 355 19.2000 1.000 4.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0767 1.9587 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 356 19.0000 1.000 2.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0722 1.9613 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 357 18.8000 1.000 5.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0678 1.9638 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 358 18.6000 1.000 9.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0634 1.9664 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 359 18.4000 1.000 6.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0589 1.9689 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 360 18.2000 1.000 14.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0545 1.9714 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 361 18.0000 1.000 67.000 1975.000 0.961 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0501 1.9739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 362 17.8000 1.000 143.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0456 1.9763 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 363 17.6000 1.000 69.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0412 1.9787 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 364 17.4000 1.000 35.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0367 1.9811 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 365 17.2000 1.000 44.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0323 1.9835 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 366 17.0000 1.000 43.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0279 1.9858 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 367 16.8000 1.000 149.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0234 1.9882 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 368 16.6000 1.000 821.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0190 1.9905 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 369 16.4000 1.000 4495.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0145 1.9927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 370 16.1998 1.000 3992.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0101 1.9950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 371 16.0000 1.000 5339.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0056 1.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 372 15.8000 1.000 12144.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 -0.0012 1.9994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 373 15.6000 1.000 8766.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0032 2.0016 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 374 15.4000 1.000 789.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0077 2.0037 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 375 15.2000 1.000 50.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0121 2.0059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 376 15.0000 1.000 33.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0166 2.0080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 377 14.8000 1.000 43.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0210 2.0100 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 378 14.6000 1.000 58.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0254 2.0121 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 379 14.4000 1.000 124.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0299 2.0141 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 380 14.2000 1.000 169.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0343 2.0161 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 381 14.0000 1.000 46.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0388 2.0181 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 382 13.8000 1.000 160.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0432 2.0201 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 383 13.6000 1.000 326.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0476 2.0220 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 384 13.4000 1.000 77.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0521 2.0239 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 385 13.2000 1.000 16.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0565 2.0258 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 386 13.0000 1.000 5.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0610 2.0277 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 387 12.8000 1.000 7.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0654 2.0295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 388 12.6000 1.000 5.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0698 2.0313 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 389 12.3999 1.000 16.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0743 2.0331 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 390 12.2000 1.000 5.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0787 2.0348 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 391 12.0000 1.000 9.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0831 2.0366 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 392 11.8000 1.000 2.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0876 2.0383 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 393 11.5998 1.000 3.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0920 2.0400 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 394 11.4000 1.000 7.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.0964 2.0416 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 395 11.2000 1.000 4.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1008 2.0433 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 396 11.0000 1.000 6.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1053 2.0449 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 397 10.8000 1.000 5.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1097 2.0465 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 398 10.6000 1.000 5.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1141 2.0480 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 399 10.4000 1.000 5.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1185 2.0496 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 400 10.2000 1.000 18.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1230 2.0511 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 401 9.9998 1.000 12.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1274 2.0526 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 402 9.8000 1.000 4.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1318 2.0540 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 403 9.6000 1.000 2.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1362 2.0554 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 404 9.4000 1.000 3.000 1980.000 0.963 96.4440 142.9286 -74.1427 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1406 2.0569 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 405 9.2000 1.000 2.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1451 2.0582 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 406 9.0000 1.000 3.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1495 2.0596 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 407 8.8000 1.000 3.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1539 2.0609 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 408 8.6000 1.000 2.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1583 2.0622 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 409 8.4000 1.000 6.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1627 2.0635 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 410 8.2000 1.000 5.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1671 2.0648 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 411 8.0000 1.000 97.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1715 2.0660 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 412 7.8000 1.000 281.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1759 2.0672 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 413 7.6000 1.000 380.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1803 2.0684 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 414 7.4000 1.000 154.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1847 2.0696 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 415 7.2000 1.000 99.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1891 2.0707 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 416 7.0000 1.000 66.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1935 2.0718 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 417 6.8000 1.000 24.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.1979 2.0729 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 418 6.6000 1.000 19.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2022 2.0740 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 419 6.4000 1.000 8.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2066 2.0750 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 420 6.2000 1.000 7.000 2138.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2110 2.0760 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 421 6.0000 1.000 4.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2154 2.0770 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 422 5.8000 1.000 4.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2198 2.0779 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 423 5.6000 1.000 2.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2241 2.0789 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 424 5.4000 1.000 2.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2285 2.0798 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 425 5.2000 1.000 3.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2329 2.0807 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 426 5.0000 1.000 1.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2372 2.0815 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 427 4.8000 1.000 5.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2416 2.0823 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 428 4.6000 1.000 4.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2460 2.0831 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 429 4.4000 1.000 3.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2503 2.0839 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 430 4.2000 1.000 2.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2547 2.0847 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 431 4.0000 1.000 3.000 2010.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2590 2.0854 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 432 3.8000 1.000 4.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2634 2.0861 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 433 3.6000 1.000 1.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2677 2.0868 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 434 3.4000 1.000 2.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2721 2.0874 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 435 3.2000 1.000 1.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2764 2.0881 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 436 3.0000 1.000 1.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2807 2.0887 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 437 2.8000 1.000 2.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2851 2.0892 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 438 2.6000 1.000 4.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2894 2.0898 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 439 2.4000 1.000 0.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2937 2.0903 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 440 2.2000 1.000 5.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.2980 2.0908 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 441 2.0000 1.000 6.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3023 2.0913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 442 1.8000 1.000 3.000 1992.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3067 2.0917 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 443 1.6000 1.000 1.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3110 2.0922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 444 1.3998 1.000 1.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3153 2.0926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 445 1.2000 1.000 1.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3196 2.0929 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 446 1.0000 1.000 1.000 2185.000 1.063 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3239 2.0933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 447 0.8000 1.000 3.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3282 2.0936 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 448 0.6000 1.000 3.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3325 2.0939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 449 0.4000 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3367 2.0942 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 450 0.2000 1.000 5.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3410 2.0944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 451 -0.0000 1.000 2.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3453 2.0946 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 452 -0.2000 1.000 1.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3496 2.0948 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 453 -0.4000 1.000 5.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3538 2.0950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 454 -0.6000 1.000 4.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3581 2.0951 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 455 -0.8000 1.000 3.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3624 2.0953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 456 -1.0000 1.000 3.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3666 2.0953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 457 -1.2000 1.000 3.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3709 2.0954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 458 -1.4001 1.000 5.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3751 2.0954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 459 -1.6000 1.000 1.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3794 2.0955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 460 -1.8000 1.000 3.000 1944.000 0.946 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3836 2.0955 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 461 -2.0000 1.000 2.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3878 2.0954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 462 -2.2000 1.000 1.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3921 2.0954 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 463 -2.4000 1.000 2.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.3963 2.0953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 464 -2.6000 1.000 1.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4005 2.0952 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 465 -2.8000 1.000 4.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4047 2.0950 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 466 -3.0000 1.000 4.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4089 2.0949 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 467 -3.2000 1.000 1.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4131 2.0947 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 468 -3.4000 1.000 2.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4173 2.0944 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 469 -3.6000 1.000 3.000 1968.000 0.957 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4215 2.0942 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 470 -3.8000 1.000 2.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4257 2.0939 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 471 -4.0000 1.000 3.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4299 2.0936 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 472 -4.2000 1.000 1.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4341 2.0933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 473 -4.4000 1.000 3.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4382 2.0930 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 474 -4.6000 1.000 3.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4424 2.0926 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 475 -4.8000 1.000 1.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4466 2.0922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 476 -5.0000 1.000 2.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4507 2.0918 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 477 -5.2000 1.000 4.000 2142.000 1.042 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4549 2.0914 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 478 -5.4000 1.000 4.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4590 2.0909 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 479 -5.6000 1.000 6.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4632 2.0904 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 480 -5.8000 1.000 9.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4673 2.0899 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 481 -6.0000 1.000 6.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4714 2.0893 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 482 -6.2000 1.000 1.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4755 2.0888 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 483 -6.4000 1.000 3.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4797 2.0882 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 484 -6.6000 1.000 1.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4838 2.0875 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 485 -6.8000 1.000 2.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4879 2.0869 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 486 -7.0000 1.000 4.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4920 2.0862 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 487 -7.2000 1.000 3.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.4961 2.0855 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 488 -7.4000 1.000 5.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5002 2.0848 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 489 -7.6000 1.000 3.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5042 2.0840 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 490 -7.8000 1.000 3.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5083 2.0833 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 491 -8.0000 1.000 2.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5124 2.0825 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 492 -8.2000 1.000 3.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5164 2.0816 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 493 -8.4000 1.000 0.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5205 2.0808 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 494 -8.6000 1.000 2.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5246 2.0799 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 495 -8.8000 1.000 1.000 2002.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5286 2.0790 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 496 -9.0000 1.000 4.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5326 2.0781 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 497 -9.2000 1.000 4.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5367 2.0771 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 498 -9.4000 1.000 4.000 2186.000 1.063 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5407 2.0762 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 499 -9.6000 1.000 5.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5447 2.0751 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 500 -9.8000 1.000 4.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5487 2.0741 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 501 -10.0000 1.000 4.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5527 2.0731 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 502 -10.2000 1.000 1.000 2184.000 1.062 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5567 2.0720 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 503 -10.4001 1.000 4.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5607 2.0709 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 504 -10.6001 1.000 1.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5647 2.0698 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 505 -10.8000 1.000 4.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5687 2.0686 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 506 -11.0000 1.000 2.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5726 2.0674 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 507 -11.2000 1.000 0.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5766 2.0662 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 508 -11.4000 1.000 1.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5806 2.0650 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 509 -11.6000 1.000 5.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5845 2.0637 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 510 -11.8000 1.000 2.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5884 2.0624 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 511 -12.0000 1.000 0.000 2001.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5924 2.0611 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 512 -12.2000 1.000 4.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.5963 2.0598 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 513 -12.4000 1.000 5.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6002 2.0585 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 514 -12.6000 1.000 2.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6041 2.0571 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 515 -12.8000 1.000 7.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6080 2.0557 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 516 -13.0000 1.000 1.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6119 2.0542 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 517 -13.2000 1.000 0.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6158 2.0528 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 518 -13.4000 1.000 3.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6197 2.0513 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 519 -13.6000 1.000 0.000 2021.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6236 2.0498 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 520 -13.8000 1.000 2.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6275 2.0483 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 521 -14.0000 1.000 2.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6313 2.0467 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 522 -14.2000 1.000 3.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6352 2.0451 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 523 -14.4000 1.000 2.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6390 2.0435 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 524 -14.6000 1.000 1.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6429 2.0419 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 525 -14.8000 1.000 2.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6467 2.0402 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 526 -15.0000 1.000 2.000 2182.000 1.061 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6505 2.0385 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 527 -15.2000 1.000 0.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6543 2.0368 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 528 -15.4000 1.000 1.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6581 2.0351 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 529 -15.6000 1.000 4.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6619 2.0334 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 530 -15.8000 1.000 4.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6657 2.0316 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 531 -16.0000 1.000 10.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6695 2.0298 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 532 -16.2000 1.000 6.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6733 2.0279 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 533 -16.4000 1.000 5.000 2154.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6770 2.0261 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 534 -16.6000 1.000 8.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6808 2.0242 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 535 -16.8000 1.000 2.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6845 2.0223 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 536 -17.0000 1.000 3.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6883 2.0204 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 537 -17.2000 1.000 4.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6920 2.0184 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 538 -17.4000 1.000 3.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6957 2.0164 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 539 -17.6000 1.000 0.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.6994 2.0144 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 540 -17.8000 1.000 3.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7032 2.0124 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 541 -18.0000 1.000 1.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7068 2.0104 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 542 -18.2000 1.000 5.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7105 2.0083 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 543 -18.4000 1.000 7.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7142 2.0062 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 544 -18.6000 1.000 7.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7179 2.0041 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 545 -18.8000 1.000 2.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7216 2.0019 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 546 -19.0002 1.000 3.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7252 1.9997 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 547 -19.2000 1.000 1.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7289 1.9975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 548 -19.4000 1.000 2.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7325 1.9953 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 549 -19.6000 1.000 3.000 1982.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7361 1.9931 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 550 -19.8000 1.000 2.000 2245.000 1.092 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7397 1.9908 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 551 -20.0000 1.000 1.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7433 1.9885 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 552 -20.2000 1.000 4.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7469 1.9862 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 553 -20.4000 1.000 4.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7505 1.9839 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 554 -20.6000 1.000 5.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7541 1.9815 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 555 -20.8000 1.000 6.000 1985.000 0.966 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7577 1.9791 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 556 -21.0000 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7613 1.9767 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 557 -21.2000 1.000 2.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7648 1.9742 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 558 -21.4000 1.000 0.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7684 1.9718 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 559 -21.6000 1.000 3.000 2167.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7719 1.9693 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 560 -21.8000 1.000 1.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7754 1.9668 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 561 -22.0000 1.000 5.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7789 1.9642 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 562 -22.2000 1.000 3.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7824 1.9617 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 563 -22.4000 1.000 3.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7859 1.9591 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 564 -22.6000 1.000 0.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7894 1.9565 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 565 -22.8000 1.000 1.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7929 1.9539 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 566 -23.0000 1.000 3.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7964 1.9512 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 567 -23.2000 1.000 1.000 1976.000 0.961 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.7998 1.9485 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 568 -23.4000 1.000 5.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8033 1.9458 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 569 -23.6000 1.000 5.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8067 1.9431 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 570 -23.8002 1.000 3.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8102 1.9403 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 571 -24.0000 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8136 1.9376 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 572 -24.2000 1.000 1.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8170 1.9348 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 573 -24.4000 1.000 2.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8204 1.9319 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 574 -24.6000 1.000 1.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8238 1.9291 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 575 -24.8000 1.000 4.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8272 1.9262 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 576 -25.0000 1.000 3.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8305 1.9233 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 577 -25.2000 1.000 2.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8339 1.9204 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 578 -25.4000 1.000 4.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8372 1.9175 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 579 -25.6000 1.000 4.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8406 1.9145 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 580 -25.8000 1.000 1.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8439 1.9115 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 581 -26.0000 1.000 1.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8472 1.9085 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 582 -26.2000 1.000 3.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8505 1.9055 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 583 -26.4000 1.000 2.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8538 1.9025 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 584 -26.6000 1.000 6.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8571 1.8994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 585 -26.8000 1.000 5.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8604 1.8963 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 586 -27.0000 1.000 4.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8637 1.8931 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 587 -27.2000 1.000 4.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8669 1.8900 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 588 -27.4000 1.000 2.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8702 1.8868 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 589 -27.6000 1.000 8.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8734 1.8836 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 590 -27.8000 1.000 6.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8766 1.8804 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 591 -28.0000 1.000 5.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8798 1.8772 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 592 -28.2000 1.000 3.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8830 1.8739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 593 -28.4000 1.000 4.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8862 1.8706 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 594 -28.6000 1.000 3.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8894 1.8673 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 595 -28.8000 1.000 2.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8926 1.8640 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 596 -29.0000 1.000 3.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8957 1.8606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 597 -29.2000 1.000 1.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.8989 1.8573 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 598 -29.4000 1.000 6.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9020 1.8539 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 599 -29.6000 1.000 6.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9052 1.8505 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 600 -29.8000 1.000 7.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9083 1.8470 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 601 -30.0000 1.000 5.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9114 1.8435 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 602 -30.2000 1.000 6.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9145 1.8401 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 603 -30.4000 1.000 8.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9176 1.8365 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 604 -30.6000 1.000 2.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9206 1.8330 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 605 -30.8000 1.000 3.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9237 1.8295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 606 -31.0000 1.000 1.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9267 1.8259 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 607 -31.2000 1.000 3.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9298 1.8223 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 608 -31.4000 1.000 7.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9328 1.8187 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 609 -31.6000 1.000 4.000 1983.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9358 1.8150 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 610 -31.8000 1.000 5.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9388 1.8113 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 611 -32.0000 1.000 4.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9418 1.8077 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 612 -32.2000 1.000 6.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9448 1.8039 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 613 -32.4000 1.000 3.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9478 1.8002 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 614 -32.6000 1.000 2.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9507 1.7965 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 615 -32.8000 1.000 4.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9537 1.7927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 616 -33.0003 1.000 0.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9566 1.7889 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 617 -33.2000 1.000 4.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9595 1.7851 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 618 -33.4000 1.000 3.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9624 1.7812 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 619 -33.6000 1.000 3.000 1934.000 0.941 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9653 1.7774 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 620 -33.8000 1.000 2.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9682 1.7735 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 621 -34.0000 1.000 5.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9711 1.7696 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 622 -34.2000 1.000 5.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9740 1.7656 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 623 -34.4000 1.000 3.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9768 1.7617 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 624 -34.6000 1.000 2.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9797 1.7577 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 625 -34.8000 1.000 2.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9825 1.7537 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 626 -35.0000 1.000 4.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9853 1.7497 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 627 -35.2000 1.000 3.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9881 1.7457 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 628 -35.4000 1.000 3.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9909 1.7416 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 629 -35.6000 1.000 3.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9937 1.7375 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 630 -35.8000 1.000 7.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9965 1.7334 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 631 -36.0002 1.000 4.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 0.9992 1.7293 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 632 -36.2000 1.000 7.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0020 1.7252 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 633 -36.4000 1.000 2.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0047 1.7210 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 634 -36.6000 1.000 1.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0074 1.7168 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 635 -36.8000 1.000 1.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0101 1.7126 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 636 -37.0000 1.000 3.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0128 1.7084 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 637 -37.2001 1.000 3.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0155 1.7042 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 638 -37.4000 1.000 3.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0182 1.6999 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 639 -37.6000 1.000 2.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0208 1.6956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 640 -37.8000 1.000 3.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0235 1.6913 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 641 -38.0000 1.000 5.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0261 1.6870 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 642 -38.2000 1.000 1.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0287 1.6826 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 643 -38.4000 1.000 3.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0313 1.6782 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 644 -38.6000 1.000 4.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0339 1.6739 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 645 -38.8000 1.000 3.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0365 1.6694 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 646 -39.0000 1.000 2.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0391 1.6650 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 647 -39.2000 1.000 7.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0416 1.6606 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 648 -39.4000 1.000 7.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0442 1.6561 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 649 -39.6000 1.000 3.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0467 1.6516 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 650 -39.8000 1.000 7.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0492 1.6471 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 651 -40.0000 1.000 5.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0517 1.6426 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 652 -40.2000 1.000 5.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0542 1.6380 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 653 -40.4000 1.000 1.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0567 1.6334 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 654 -40.6000 1.000 4.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0592 1.6288 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 655 -40.8000 1.000 6.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0616 1.6242 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 656 -41.0000 1.000 4.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0641 1.6196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 657 -41.2000 1.000 6.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0665 1.6149 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 658 -41.4000 1.000 1.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0689 1.6103 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 659 -41.6000 1.000 1.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0713 1.6056 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 660 -41.8000 1.000 4.000 2033.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0737 1.6009 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 661 -42.0000 1.000 5.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0761 1.5961 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 662 -42.2000 1.000 8.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0784 1.5914 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 663 -42.4000 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0808 1.5866 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 664 -42.6000 1.000 5.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0831 1.5818 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 665 -42.8000 1.000 2.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0855 1.5770 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 666 -43.0000 1.000 1.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0878 1.5722 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 667 -43.2000 1.000 4.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0901 1.5674 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 668 -43.4000 1.000 4.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0924 1.5625 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 669 -43.6000 1.000 6.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0946 1.5576 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 670 -43.8000 1.000 1.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0969 1.5527 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 671 -44.0000 1.000 7.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.0991 1.5478 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 672 -44.2000 1.000 2.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1014 1.5428 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 673 -44.4000 1.000 7.000 2006.000 0.976 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1036 1.5379 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 674 -44.6000 1.000 7.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1058 1.5329 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 675 -44.8003 1.000 2.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1080 1.5279 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 676 -45.0000 1.000 4.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1102 1.5229 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 677 -45.2000 1.000 3.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1123 1.5179 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 678 -45.4000 1.000 5.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1145 1.5128 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 679 -45.6000 1.000 3.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1166 1.5077 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 680 -45.8000 1.000 3.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1187 1.5027 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 681 -46.0000 1.000 4.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1208 1.4975 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 682 -46.2000 1.000 1.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1229 1.4924 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 683 -46.4000 1.000 3.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1250 1.4873 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 684 -46.6000 1.000 2.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1271 1.4821 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 685 -46.8000 1.000 1.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1291 1.4769 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 686 -47.0000 1.000 6.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1312 1.4717 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 687 -47.2000 1.000 6.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1332 1.4665 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 688 -47.4000 1.000 6.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1352 1.4613 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 689 -47.6000 1.000 6.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1372 1.4560 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 690 -47.8000 1.000 4.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1392 1.4508 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 691 -48.0000 1.000 1.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1412 1.4455 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 692 -48.2000 1.000 1.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1431 1.4402 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 693 -48.4000 1.000 2.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1451 1.4349 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 694 -48.6000 1.000 7.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1470 1.4295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 695 -48.8000 1.000 3.000 1974.000 0.960 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1489 1.4242 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 696 -49.0000 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1508 1.4188 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 697 -49.2000 1.000 1.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1527 1.4134 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 698 -49.4000 1.000 4.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1546 1.4080 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 699 -49.6000 1.000 2.000 2017.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1564 1.4026 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 700 -49.8000 1.000 4.000 2193.000 1.067 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1583 1.3971 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 701 -50.0000 1.000 2.000 2127.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1601 1.3917 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 702 -50.2000 1.000 6.000 2130.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1619 1.3862 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 703 -50.4001 1.000 3.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1637 1.3807 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 704 -50.6000 1.000 3.000 1878.000 0.913 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1655 1.3752 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 705 -50.8000 1.000 2.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1673 1.3696 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 706 -51.0000 1.000 4.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1691 1.3641 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 707 -51.2000 1.000 1.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1708 1.3585 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 708 -51.4000 1.000 5.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1725 1.3530 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 709 -51.6000 1.000 0.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1743 1.3474 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 710 -51.8000 1.000 2.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1760 1.3418 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 711 -52.0000 1.000 3.000 1958.000 0.952 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1777 1.3361 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 712 -52.2000 1.000 1.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1793 1.3305 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 713 -52.4000 1.000 3.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1810 1.3248 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 714 -52.6000 1.000 3.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1826 1.3192 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 715 -52.8000 1.000 2.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1843 1.3135 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 716 -53.0001 1.000 2.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1859 1.3078 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 717 -53.2000 1.000 3.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1875 1.3020 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 718 -53.4000 1.000 1.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1891 1.2963 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 719 -53.6000 1.000 1.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1907 1.2905 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 720 -53.8000 1.000 1.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1922 1.2848 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 721 -54.0000 1.000 4.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1938 1.2790 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 722 -54.2000 1.000 2.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1953 1.2732 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 723 -54.4000 1.000 4.000 2127.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1968 1.2674 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 724 -54.6000 1.000 4.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1983 1.2615 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 725 -54.8000 1.000 2.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.1998 1.2557 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 726 -55.0000 1.000 2.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2013 1.2498 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 727 -55.2000 1.000 1.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2027 1.2439 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 728 -55.4000 1.000 1.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2042 1.2381 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 729 -55.6000 1.000 2.000 2020.000 0.983 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2056 1.2321 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 730 -55.8001 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2070 1.2262 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 731 -56.0000 1.000 1.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2084 1.2203 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 732 -56.2000 1.000 1.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2098 1.2143 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 733 -56.4000 1.000 2.000 2166.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2112 1.2084 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 734 -56.6000 1.000 5.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2125 1.2024 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 735 -56.8000 1.000 1.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2139 1.1964 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 736 -57.0000 1.000 5.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2152 1.1904 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 737 -57.2000 1.000 3.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2165 1.1843 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 738 -57.4000 1.000 6.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2178 1.1783 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 739 -57.6000 1.000 3.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2191 1.1722 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 740 -57.8000 1.000 4.000 2083.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2203 1.1662 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 741 -58.0000 1.000 2.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2216 1.1601 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 742 -58.2000 1.000 1.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2228 1.1540 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 743 -58.4000 1.000 2.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2240 1.1479 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 744 -58.6000 1.000 5.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2252 1.1417 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 745 -58.8000 1.000 2.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2264 1.1356 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 746 -59.0000 1.000 3.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2276 1.1295 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 747 -59.2000 1.000 1.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2288 1.1233 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 748 -59.4000 1.000 3.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2299 1.1171 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 749 -59.6000 1.000 2.000 2150.000 1.046 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2310 1.1109 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 750 -59.8000 1.000 2.000 2049.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2322 1.1047 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 751 -60.0000 1.000 2.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2333 1.0985 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 752 -60.2000 1.000 1.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2343 1.0922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 753 -60.4000 1.000 1.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2354 1.0860 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 754 -60.6000 1.000 3.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2365 1.0797 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 755 -60.8000 1.000 1.000 2005.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2375 1.0735 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 756 -61.0000 1.000 5.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2385 1.0672 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 757 -61.2000 1.000 1.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2396 1.0609 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 758 -61.4000 1.000 2.000 2196.000 1.068 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2406 1.0546 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 759 -61.6000 1.000 2.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2415 1.0482 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 760 -61.8000 1.000 3.000 1971.000 0.959 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2425 1.0419 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 761 -62.0000 1.000 4.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2434 1.0355 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 762 -62.2000 1.000 1.000 1995.000 0.970 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2444 1.0292 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 763 -62.4000 1.000 1.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2453 1.0228 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 764 -62.6000 1.000 3.000 2157.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2462 1.0164 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 765 -62.8000 1.000 0.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2471 1.0100 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 766 -63.0000 1.000 2.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2480 1.0036 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 767 -63.2000 1.000 1.000 1993.000 0.969 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2488 0.9972 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 768 -63.4000 1.000 2.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2497 0.9907 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 769 -63.6000 1.000 4.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2505 0.9843 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 770 -63.8000 1.000 5.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2513 0.9778 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 771 -64.0000 1.000 4.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2521 0.9713 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 772 -64.2000 1.000 1.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2529 0.9648 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 773 -64.4000 1.000 3.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2537 0.9583 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 774 -64.6000 1.000 2.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2544 0.9518 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 775 -64.8000 1.000 2.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2552 0.9453 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 776 -65.0000 1.000 1.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2559 0.9388 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 777 -65.2000 1.000 3.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2566 0.9322 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 778 -65.4000 1.000 6.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2573 0.9257 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 779 -65.6000 1.000 9.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2580 0.9191 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 780 -65.8000 1.000 2.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2586 0.9125 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 781 -66.0000 1.000 2.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2593 0.9059 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 782 -66.2000 1.000 4.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2599 0.8993 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 783 -66.4000 1.000 2.000 2037.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2605 0.8927 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 784 -66.6000 1.000 6.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2611 0.8861 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 785 -66.8001 1.000 3.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2617 0.8795 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 786 -67.0000 1.000 4.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2623 0.8728 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 787 -67.2000 1.000 2.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2628 0.8662 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 788 -67.4000 1.000 0.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2633 0.8595 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 789 -67.6001 1.000 1.000 2113.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2639 0.8528 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 790 -67.8000 1.000 3.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2644 0.8461 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 791 -68.0000 1.000 5.000 1980.000 0.963 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2649 0.8394 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 792 -68.2000 1.000 1.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2653 0.8327 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 793 -68.4000 1.000 4.000 2147.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2658 0.8260 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 794 -68.6000 1.000 6.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2662 0.8193 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 795 -68.8000 1.000 5.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2667 0.8125 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 796 -69.0000 1.000 5.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2671 0.8058 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 797 -69.2000 1.000 4.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2675 0.7990 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 798 -69.4000 1.000 5.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2679 0.7923 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 799 -69.6000 1.000 2.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2682 0.7855 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 800 -69.8000 1.000 6.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2686 0.7787 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 801 -70.0000 1.000 7.000 1947.000 0.947 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2689 0.7719 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 802 -70.2000 1.000 1.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2693 0.7651 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 803 -70.4000 1.000 3.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2696 0.7583 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 804 -70.6000 1.000 1.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2699 0.7515 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 805 -70.8000 1.000 7.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2701 0.7446 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 806 -71.0000 1.000 5.000 2100.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2704 0.7378 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 807 -71.2000 1.000 1.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2706 0.7310 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 808 -71.4000 1.000 4.000 2039.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2709 0.7241 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 809 -71.6000 1.000 3.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2711 0.7172 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 810 -71.8000 1.000 5.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2713 0.7103 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 811 -72.0000 1.000 4.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2715 0.7035 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 812 -72.2001 1.000 3.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2716 0.6966 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 813 -72.4000 1.000 3.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2718 0.6897 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 814 -72.6000 1.000 6.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2719 0.6828 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 815 -72.8000 1.000 2.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2720 0.6758 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 816 -73.0000 1.000 4.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2721 0.6689 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 817 -73.2000 1.000 3.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2722 0.6620 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 818 -73.4000 1.000 6.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2723 0.6550 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 819 -73.6000 1.000 3.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6481 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 820 -73.8002 1.000 1.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6411 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 821 -74.0000 1.000 1.000 2002.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6341 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 822 -74.2000 1.000 2.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6272 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 823 -74.4000 1.000 3.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6202 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 824 -74.6000 1.000 5.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6132 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 825 -74.8000 1.000 3.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2724 0.6062 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 826 -75.0000 1.000 3.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2723 0.5992 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 827 -75.2001 1.000 1.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2723 0.5922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 828 -75.4000 1.000 5.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2722 0.5852 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 829 -75.6000 1.000 5.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2721 0.5781 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 830 -75.8001 1.000 1.000 2162.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2720 0.5711 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 831 -76.0000 1.000 6.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2718 0.5641 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 832 -76.2000 1.000 3.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2717 0.5570 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 833 -76.4000 1.000 5.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2715 0.5500 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 834 -76.6000 1.000 4.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2714 0.5429 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 835 -76.8000 1.000 5.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2712 0.5358 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 836 -77.0000 1.000 3.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2710 0.5288 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 837 -77.2000 1.000 2.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2708 0.5217 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 838 -77.4000 1.000 2.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2705 0.5146 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 839 -77.6000 1.000 1.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2703 0.5075 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 840 -77.8000 1.000 5.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2700 0.5004 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 841 -78.0000 1.000 0.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2697 0.4933 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 842 -78.2000 1.000 3.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2694 0.4862 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 843 -78.4001 1.000 3.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2691 0.4791 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 844 -78.6000 1.000 4.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2688 0.4719 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 845 -78.8000 1.000 3.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2684 0.4648 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 846 -79.0000 1.000 4.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2681 0.4577 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 847 -79.2000 1.000 2.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2677 0.4505 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 848 -79.4000 1.000 2.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2673 0.4434 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 849 -79.6000 1.000 3.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2669 0.4362 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 850 -79.8000 1.000 3.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2665 0.4291 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 851 -80.0000 1.000 2.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2660 0.4219 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 852 -80.2000 1.000 2.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2656 0.4147 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 853 -80.4000 1.000 1.000 2008.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2651 0.4076 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 854 -80.6000 1.000 4.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2646 0.4004 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 855 -80.8000 1.000 6.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2641 0.3932 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 856 -81.0000 1.000 2.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2636 0.3860 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 857 -81.2000 1.000 2.000 2004.000 0.975 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2631 0.3788 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 858 -81.4000 1.000 3.000 1983.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2626 0.3716 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 859 -81.6000 1.000 3.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2620 0.3644 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 860 -81.8000 1.000 3.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2614 0.3572 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 861 -82.0000 1.000 1.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2608 0.3500 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 862 -82.2000 1.000 1.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2602 0.3428 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 863 -82.4000 1.000 5.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2596 0.3356 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 864 -82.6000 1.000 7.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2590 0.3284 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 865 -82.8000 1.000 4.000 2067.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2583 0.3211 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 866 -83.0000 1.000 4.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2576 0.3139 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 867 -83.2000 1.000 4.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2570 0.3067 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 868 -83.4000 1.000 4.000 1987.000 0.966 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2563 0.2994 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 869 -83.6000 1.000 4.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2555 0.2922 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 870 -83.8000 1.000 3.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2548 0.2849 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 871 -84.0000 1.000 1.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2541 0.2777 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 872 -84.2000 1.000 4.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2533 0.2704 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 873 -84.4000 1.000 1.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2525 0.2632 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 874 -84.6000 1.000 3.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2518 0.2559 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 875 -84.8000 1.000 6.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2509 0.2487 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 876 -85.0000 1.000 2.000 2086.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2501 0.2414 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 877 -85.2002 1.000 3.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2493 0.2341 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 878 -85.4000 1.000 5.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2484 0.2269 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 879 -85.6000 1.000 8.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2476 0.2196 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 880 -85.8001 1.000 3.000 2028.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2467 0.2123 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 881 -86.0000 1.000 0.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2458 0.2050 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 882 -86.2000 1.000 3.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2449 0.1978 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 883 -86.4000 1.000 6.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2440 0.1905 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 884 -86.6000 1.000 1.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2430 0.1832 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 885 -86.8000 1.000 3.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2421 0.1759 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 886 -87.0000 1.000 4.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2411 0.1686 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 887 -87.2000 1.000 4.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2401 0.1613 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 888 -87.4000 1.000 5.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2391 0.1540 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 889 -87.6000 1.000 8.000 2038.000 0.991 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2381 0.1467 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 890 -87.8000 1.000 3.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2370 0.1394 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 891 -88.0000 1.000 9.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2360 0.1321 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 892 -88.2000 1.000 4.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2349 0.1248 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 893 -88.4000 1.000 2.000 2072.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2339 0.1175 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 894 -88.6000 1.000 0.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2328 0.1102 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 895 -88.8000 1.000 7.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2317 0.1029 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 896 -89.0000 1.000 4.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2305 0.0956 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 897 -89.2000 1.000 2.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2294 0.0883 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 898 -89.4000 1.000 3.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2282 0.0810 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 899 -89.6000 1.000 3.000 2180.000 1.060 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2271 0.0737 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 900 -89.8000 1.000 4.000 2171.000 1.056 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2259 0.0664 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 901 -90.0003 1.000 4.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 35.7386 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.9533 0.0000 1.2247 0.0591 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 43227
+# Center of Mass = 15.003700+/-0.123518
+# Full Width Half-Maximum = 28.932711+/-0.364309
+# 4:27:41 PM 6/25/2012 scan completed.
+
+4:27:52 PM 6/25/2012 Executing "drive h 0.000000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 35.73865
+s1 15.74567
+sgl 0.00002
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+4:28:46 PM 6/25/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+4:44:14 PM 6/25/2012 Executing "drive s2 70"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 70.00000
+
+Drive completed.
+
+
+4:59:19 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=5 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=5 meV, guide-M-open-S-Be-80-A-open-D
+
+
+5:00:43 PM 6/25/2012 Executing "scan q 1.5 e -0.5 0.5 0.05 preset mcu 60"
+
+
+# scan = 115
+# date = 6/25/2012
+# time = 5:00:43 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=5 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 55.593 5.000 123355.000 60.000 101.6712 140.5490 -78.9018 0.6359 0.0000 35.9920 -0.0000 59.3401 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8430 3.2687 4.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 55.756 8.000 123355.000 60.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 -0.0000 59.1780 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8489 3.2672 4.5500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 55.594 7.000 123355.000 60.000 100.5466 141.0625 -77.8750 0.6359 0.0000 35.7840 -0.0000 59.0164 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8549 3.2658 4.6000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 55.327 21.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 58.8552 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8608 3.2643 4.6500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 55.162 10.000 123355.000 60.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 -0.0000 58.6945 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8666 3.2628 4.7000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 54.714 33.000 123355.000 60.000 98.9472 141.7955 -76.4089 0.6359 0.0000 35.4800 -0.0000 58.5342 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8724 3.2612 4.7500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 54.849 104.000 123355.000 60.000 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 -0.0000 58.3744 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8782 3.2596 4.8000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 54.785 270.000 123355.000 60.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 -0.0000 58.2150 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8840 3.2580 4.8500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 56.494 454.000 123355.000 60.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 -0.0000 58.0560 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8897 3.2564 4.9000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 58.258 546.000 123355.000 60.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 -0.0000 57.8974 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8954 3.2547 4.9500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 59.527 614.000 123355.000 60.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0000 57.7393 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9010 3.2530 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 60.984 509.000 123355.000 60.000 95.9741 143.1431 -73.7137 0.6359 0.0000 34.8880 -0.0000 57.5816 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9067 3.2513 5.0500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 61.928 471.000 123355.000 60.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 -0.0000 57.4242 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9123 3.2496 5.1000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 61.391 291.000 123355.000 60.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 -0.0000 57.2673 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9178 3.2478 5.1500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 59.324 157.000 123355.000 60.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 -0.0000 57.1107 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9234 3.2461 5.2000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 58.632 44.000 123355.000 60.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 -0.0000 56.9544 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9289 3.2442 5.2500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 58.362 10.000 123355.000 60.000 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 -0.0000 56.7986 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9344 3.2424 5.3000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 58.627 9.000 123355.000 60.000 93.2479 144.3552 -71.2895 0.6359 0.0000 34.3120 -0.0000 56.6431 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9398 3.2405 5.3500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 58.755 5.000 123355.000 60.000 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 -0.0000 56.4880 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9452 3.2387 5.4000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 58.618 4.000 123355.000 60.000 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 -0.0000 56.3332 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9506 3.2368 5.4500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 58.685 6.000 123355.000 60.000 91.9600 144.9174 -70.1652 0.6359 0.0000 34.0280 -0.0000 56.1787 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.9560 3.2348 5.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3578
+# Center of Mass = 0.002809+/-0.002022
+# Full Width Half-Maximum = 0.241824+/-0.004708
+# 5:25:58 PM 6/25/2012 scan completed.
+
+5:25:58 PM 6/25/2012 Executing "ef 4.75"
+
+Setting the final energy to 4.750meV and the configuration to "Fixed Ef".
+
+
+5:25:58 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=4.75 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=4.75 meV, guide-M-open-S-Be-80-A-open-D
+
+
+5:25:58 PM 6/25/2012 Executing "scan q 1.5 e -0.5 0.5 0.05 preset mcu 60"
+
+
+# scan = 116
+# date = 6/25/2012
+# time = 5:25:58 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.75 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 56.711 5.000 123355.000 60.000 104.6188 139.1683 -81.6633 0.6359 0.0000 36.5160 -0.0000 61.1372 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8698 3.2619 4.2500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 56.671 4.000 123355.000 60.000 103.9973 139.4564 -81.0872 0.6359 0.0000 36.4080 -0.0000 60.9593 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8757 3.2603 4.3000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 56.726 9.000 123355.000 60.000 103.4059 139.7383 -80.5234 0.6359 0.0000 36.3040 -0.0000 60.7820 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8815 3.2587 4.3500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 56.334 7.000 123355.000 60.000 102.8211 140.0142 -79.9716 0.6359 0.0000 36.2000 -0.0000 60.6055 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8872 3.2571 4.4000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 56.173 9.000 123355.000 60.000 102.2429 140.2844 -79.4312 0.6359 0.0000 36.0960 -0.0000 60.4296 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8930 3.2554 4.4500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 56.000 15.000 123355.000 60.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 -0.0000 60.2543 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.8987 3.2538 4.5000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 55.401 28.000 123355.000 60.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 -0.0000 60.0797 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9043 3.2521 4.5500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 55.264 98.000 123355.000 60.000 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 -0.0000 59.9056 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9099 3.2503 4.6000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 55.307 286.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 59.7323 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9156 3.2486 4.6500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 54.956 499.000 123355.000 60.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 -0.0000 59.5594 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9211 3.2468 4.7000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 54.732 644.000 123355.000 60.000 98.9472 141.7955 -76.4090 0.6359 0.0000 35.4800 -0.0000 59.3871 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9267 3.2450 4.7500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 54.636 635.000 123355.000 60.000 98.4321 142.0306 -75.9388 0.6359 0.0000 35.3800 -0.0000 59.2155 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9322 3.2431 4.8000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 54.968 530.000 123355.000 60.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 -0.0000 59.0444 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9377 3.2413 4.8500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 56.460 327.000 123355.000 60.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 -0.0000 58.8738 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9431 3.2394 4.9000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 58.295 175.000 123355.000 60.000 96.9384 142.7102 -74.5795 0.6359 0.0000 35.0840 -0.0000 58.7038 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9485 3.2375 4.9500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 59.546 78.000 123355.000 60.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0000 58.5342 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9539 3.2356 5.0000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 60.908 26.000 123355.000 60.000 95.9741 143.1431 -73.7138 0.6359 0.0000 34.8880 -0.0000 58.3652 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9593 3.2336 5.0500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 61.763 13.000 123355.000 60.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 -0.0000 58.1966 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9647 3.2316 5.1000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 61.275 7.000 123355.000 60.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 -0.0000 58.0287 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9700 3.2296 5.1500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 60.142 10.000 123355.000 60.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 -0.0000 57.8611 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9753 3.2276 5.2000 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 58.934 10.000 123355.000 60.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 -0.0000 57.6940 0.0001 0.0000 0.0000 0.0000 141.7954 -76.4090 0.0000 0.9805 3.2256 5.2500 4.7500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3415
+# Center of Mass = 0.035813+/-0.002144
+# Full Width Half-Maximum = 0.229214+/-0.005038
+# 5:50:51 PM 6/25/2012 scan completed.
+
+5:50:52 PM 6/25/2012 Executing "ef 4.5"
+
+Setting the final energy to 4.500meV and the configuration to "Fixed Ef".
+
+
+5:50:52 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=4.5 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=4.5 meV, guide-M-open-S-Be-80-A-open-D
+
+
+5:50:52 PM 6/25/2012 Executing "scan q 1.5 e -0.5 0.5 0.05 preset mcu 60"
+
+
+# scan = 117
+# date = 6/25/2012
+# time = 5:50:52 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.5 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 59.004 3.000 123355.000 60.000 107.8407 137.6264 -84.7472 0.6359 0.0000 37.0560 -0.0000 63.1100 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.8992 3.2536 4.0000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 58.559 6.000 123355.000 60.000 107.1563 137.9492 -84.1015 0.6359 0.0000 36.9440 -0.0000 62.9135 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9049 3.2519 4.0500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 58.274 7.000 123355.000 60.000 106.5044 138.2646 -83.4709 0.6359 0.0000 36.8360 -0.0000 62.7180 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9105 3.2502 4.1000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 58.136 8.000 123355.000 60.000 105.8605 138.5727 -82.8547 0.6359 0.0000 36.7280 -0.0000 62.5234 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9161 3.2484 4.1500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 57.363 8.000 123355.000 60.000 105.2242 138.8738 -82.2524 0.6359 0.0000 36.6200 -0.0000 62.3298 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9216 3.2466 4.2000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 57.156 8.000 123355.000 60.000 104.6188 139.1683 -81.6634 0.6359 0.0000 36.5160 -0.0000 62.1370 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9272 3.2448 4.2500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 56.652 10.000 123355.000 60.000 103.9973 139.4564 -81.0872 0.6359 0.0000 36.4080 -0.0000 61.9451 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9327 3.2430 4.3000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 56.623 77.000 123355.000 60.000 103.4059 139.7383 -80.5234 0.6359 0.0000 36.3040 -0.0000 61.7541 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9381 3.2411 4.3500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 56.861 194.000 123355.000 60.000 102.8211 140.0142 -79.9716 0.6359 0.0000 36.2000 -0.0000 61.5639 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9436 3.2392 4.4000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 56.380 454.000 123355.000 60.000 102.2429 140.2844 -79.4312 0.6359 0.0000 36.0960 -0.0000 61.3745 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9490 3.2373 4.4500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 55.871 583.000 123355.000 60.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 -0.0000 61.1859 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9544 3.2354 4.5000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 55.757 614.000 123355.000 60.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 -0.0000 60.9981 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9598 3.2334 4.5500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 55.204 478.000 123355.000 60.000 100.5466 141.0625 -77.8750 0.6359 0.0000 35.7840 -0.0000 60.8111 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9651 3.2315 4.6000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 55.241 302.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 60.6248 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9704 3.2295 4.6500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 54.815 143.000 123355.000 60.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 -0.0000 60.4392 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9757 3.2275 4.7000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 54.896 63.000 123355.000 60.000 98.9472 141.7955 -76.4089 0.6359 0.0000 35.4800 -0.0000 60.2543 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9810 3.2254 4.7500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 54.557 22.000 123355.000 60.000 98.4321 142.0306 -75.9387 0.6359 0.0000 35.3800 -0.0000 60.0702 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9862 3.2233 4.8000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 55.141 14.000 123355.000 60.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 -0.0000 59.8867 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9914 3.2212 4.8500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 56.480 7.000 123355.000 60.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 -0.0000 59.7038 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 0.9966 3.2191 4.9000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 58.380 8.000 123355.000 60.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 -0.0000 59.5217 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 1.0018 3.2170 4.9500 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 59.915 7.000 123355.000 60.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0000 59.3401 0.0001 0.0000 0.0000 0.0000 140.5490 -78.9019 0.0000 1.0069 3.2148 5.0000 4.5000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3016
+# Center of Mass = 0.039688+/-0.002254
+# Full Width Half-Maximum = 0.220604+/-0.005353
+# 6:16:00 PM 6/25/2012 scan completed.
+
+6:16:00 PM 6/25/2012 Executing "ef 4.25"
+
+Setting the final energy to 4.250meV and the configuration to "Fixed Ef".
+
+
+6:16:00 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=4.25 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=4.25 meV, guide-M-open-S-Be-80-A-open-D
+
+
+6:16:00 PM 6/25/2012 Executing "scan q 1.5 e -0.4 0.4 0.04 preset mcu 60"
+
+
+# scan = 118
+# date = 6/25/2012
+# time = 6:16:00 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.25 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 66.499 3.000 123355.000 60.000 109.9220 136.6096 -86.7808 0.6359 0.0000 37.3880 -0.0000 64.8539 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9423 3.2397 3.8500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 62.364 2.000 123355.000 60.000 109.3373 136.8882 -86.2236 0.6359 0.0000 37.2960 -0.0000 64.6810 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9466 3.2382 3.8900 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 60.929 10.000 123355.000 60.000 108.7837 137.1612 -85.6775 0.6359 0.0000 37.2080 -0.0000 64.5090 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9509 3.2367 3.9300 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 60.355 7.000 123355.000 60.000 108.2358 137.4290 -85.1420 0.6359 0.0000 37.1200 -0.0000 64.3378 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9552 3.2351 3.9700 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 59.415 4.000 123355.000 60.000 107.6933 137.6916 -84.6168 0.6359 0.0000 37.0320 -0.0000 64.1674 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9594 3.2336 4.0100 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 59.239 9.000 123355.000 60.000 107.1563 137.9492 -84.1016 0.6359 0.0000 36.9440 -0.0000 63.9977 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9636 3.2320 4.0500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 58.226 28.000 123355.000 60.000 106.6486 138.2021 -83.5958 0.6359 0.0000 36.8600 -0.0000 63.8288 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9679 3.2304 4.0900 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 58.157 90.000 123355.000 60.000 106.1219 138.4503 -83.0995 0.6359 0.0000 36.7720 -0.0000 63.6606 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9721 3.2289 4.1300 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 58.093 232.000 123355.000 60.000 105.6239 138.6940 -82.6121 0.6359 0.0000 36.6880 -0.0000 63.4931 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9763 3.2272 4.1700 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 57.625 407.000 123355.000 60.000 105.1073 138.9332 -82.1335 0.6359 0.0000 36.6000 -0.0000 63.3264 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9804 3.2256 4.2100 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 57.365 535.000 123355.000 60.000 104.6188 139.1683 -81.6633 0.6359 0.0000 36.5160 -0.0000 63.1603 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9846 3.2240 4.2500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 57.043 580.000 123355.000 60.000 104.1348 139.3993 -81.2014 0.6359 0.0000 36.4320 -0.0000 62.9948 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9887 3.2223 4.2900 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 56.691 499.000 123355.000 60.000 103.6326 139.6263 -80.7475 0.6359 0.0000 36.3440 -0.0000 62.8301 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9929 3.2207 4.3300 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 56.699 353.000 123355.000 60.000 103.1577 139.8494 -80.3012 0.6359 0.0000 36.2600 -0.0000 62.6660 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 0.9970 3.2190 4.3700 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 56.362 208.000 123355.000 60.000 102.7094 140.0687 -79.8626 0.6359 0.0000 36.1800 -0.0000 62.5026 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0011 3.2173 4.4100 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 56.230 114.000 123355.000 60.000 102.2429 140.2844 -79.4311 0.6359 0.0000 36.0960 -0.0000 62.3397 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0052 3.2156 4.4500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 55.858 37.000 123355.000 60.000 101.7806 140.4966 -79.0069 0.6359 0.0000 36.0120 -0.0000 62.1775 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0092 3.2139 4.4900 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 55.945 18.000 123355.000 60.000 101.3225 140.7053 -78.5894 0.6359 0.0000 35.9280 -0.0000 62.0158 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0133 3.2121 4.5300 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 55.464 17.000 123355.000 60.000 100.8900 140.9106 -78.1788 0.6359 0.0000 35.8480 -0.0000 61.8548 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0173 3.2104 4.5700 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 55.364 7.000 123355.000 60.000 100.4398 141.1127 -77.7746 0.6359 0.0000 35.7640 -0.0000 61.6944 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0214 3.2086 4.6100 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 55.210 8.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 61.5345 0.0001 0.0000 0.0000 0.0000 139.1683 -81.6634 0.0000 1.0254 3.2068 4.6500 4.2500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3168
+# Center of Mass = 0.039987+/-0.001963
+# Full Width Half-Maximum = 0.189848+/-0.004107
+# 6:41:22 PM 6/25/2012 scan completed.
+
+6:41:22 PM 6/25/2012 Executing "ef 4.0"
+
+Setting the final energy to 4.000meV and the configuration to "Fixed Ef".
+
+
+6:41:22 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=4.0 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=4.0 meV, guide-M-open-S-Be-80-A-open-D
+
+
+6:41:23 PM 6/25/2012 Executing "scan q 1.5 e -0.4 0.4 0.04 preset mcu 60"
+
+
+# scan = 119
+# date = 6/25/2012
+# time = 6:41:23 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.0 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 57.446 4.000 123355.000 60.000 113.6755 134.7310 -90.5379 0.6359 0.0000 37.9560 -0.0000 67.2272 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9774 3.2268 3.6000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 58.469 4.000 123355.000 60.000 113.0502 135.0488 -89.9023 0.6359 0.0000 37.8640 -0.0000 67.0338 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9815 3.2252 3.6400 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 64.117 6.000 123355.000 60.000 112.4318 135.3597 -89.2806 0.6359 0.0000 37.7720 -0.0000 66.8416 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9856 3.2236 3.6800 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 71.837 7.000 123355.000 60.000 111.8201 135.6639 -88.6721 0.6359 0.0000 37.6800 -0.0000 66.6505 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9896 3.2220 3.7200 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 73.442 2.000 123355.000 60.000 111.2151 135.9618 -88.0765 0.6359 0.0000 37.5880 -0.0000 66.4605 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9936 3.2203 3.7600 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 75.037 12.000 123355.000 60.000 110.6424 136.2534 -87.4932 0.6359 0.0000 37.5000 -0.0000 66.2714 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 0.9977 3.2187 3.8000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 69.254 14.000 123355.000 60.000 110.0500 136.5391 -86.9218 0.6359 0.0000 37.4080 -0.0000 66.0834 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0017 3.2170 3.8400 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 63.778 62.000 123355.000 60.000 109.4892 136.8191 -86.3619 0.6359 0.0000 37.3200 -0.0000 65.8964 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0057 3.2154 3.8800 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 61.406 172.000 123355.000 60.000 108.9342 137.0935 -85.8130 0.6359 0.0000 37.2320 -0.0000 65.7104 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0096 3.2137 3.9200 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 60.374 323.000 123355.000 60.000 108.3847 137.3625 -85.2749 0.6359 0.0000 37.1440 -0.0000 65.5253 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0136 3.2120 3.9600 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 59.796 464.000 123355.000 60.000 107.8407 137.6264 -84.7472 0.6359 0.0000 37.0560 -0.0000 65.3411 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0176 3.2102 4.0000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 59.137 530.000 123355.000 60.000 107.3022 137.8853 -84.2294 0.6359 0.0000 36.9680 -0.0000 65.1579 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0215 3.2085 4.0400 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 58.747 487.000 123355.000 60.000 106.7690 138.1393 -83.7214 0.6359 0.0000 36.8800 -0.0000 64.9755 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0255 3.2068 4.0800 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 58.208 308.000 123355.000 60.000 106.2411 138.3886 -83.2227 0.6359 0.0000 36.7920 -0.0000 64.7940 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0294 3.2050 4.1200 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 57.850 155.000 123355.000 60.000 105.7421 138.6334 -82.7331 0.6359 0.0000 36.7080 -0.0000 64.6134 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0333 3.2032 4.1600 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 57.337 76.000 123355.000 60.000 105.2242 138.8738 -82.2523 0.6359 0.0000 36.6200 -0.0000 64.4336 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0372 3.2014 4.2000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 57.105 18.000 123355.000 60.000 104.7347 139.1100 -81.7801 0.6359 0.0000 36.5360 -0.0000 64.2546 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0411 3.1996 4.2400 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 57.258 6.000 123355.000 60.000 104.2496 139.3419 -81.3162 0.6359 0.0000 36.4520 -0.0000 64.0764 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0450 3.1978 4.2800 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 56.664 8.000 123355.000 60.000 103.7691 139.5699 -80.8602 0.6359 0.0000 36.3680 -0.0000 63.8990 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0489 3.1960 4.3200 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 56.863 9.000 123355.000 60.000 103.2929 139.7940 -80.4121 0.6359 0.0000 36.2840 -0.0000 63.7223 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0528 3.1941 4.3600 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 56.651 4.000 123355.000 60.000 102.8211 140.0142 -79.9716 0.6359 0.0000 36.2000 -0.0000 63.5465 0.0001 0.0000 0.0000 0.0000 137.6264 -84.7472 0.0000 1.0566 3.1923 4.4000 4.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2671
+# Center of Mass = 0.039072+/-0.002030
+# Full Width Half-Maximum = 0.178386+/-0.004531
+# 7:08:15 PM 6/25/2012 scan completed.
+
+7:08:15 PM 6/25/2012 Executing "ef 3.75"
+
+Setting the final energy to 3.750meV and the configuration to "Fixed Ef".
+
+
+7:08:16 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=3.75 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=3.75 meV, guide-M-open-S-Be-80-A-open-D
+
+
+7:08:16 PM 6/25/2012 Executing "scan q 1.5 e -0.4 0.4 0.04 preset mcu 60"
+
+
+# scan = 120
+# date = 6/25/2012
+# time = 7:08:16 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.75 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 59.780 6.000 123355.000 60.000 117.8411 132.5702 -94.8597 0.6359 0.0000 38.5440 -0.0000 69.8861 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0164 3.2107 3.3500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 59.988 4.000 123355.000 60.000 117.1402 132.9380 -94.1240 0.6359 0.0000 38.4480 -0.0000 69.6679 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0202 3.2091 3.3900 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 59.575 5.000 123355.000 60.000 116.4477 133.2968 -93.4063 0.6359 0.0000 38.3520 -0.0000 69.4511 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0240 3.2074 3.4300 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 59.258 3.000 123355.000 60.000 115.7633 133.6472 -92.7056 0.6359 0.0000 38.2560 -0.0000 69.2359 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0277 3.2058 3.4700 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 59.138 3.000 123355.000 60.000 115.1149 133.9894 -92.0212 0.6359 0.0000 38.1640 -0.0000 69.0221 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0315 3.2041 3.5100 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 58.694 3.000 123355.000 60.000 114.4738 134.3237 -91.3526 0.6359 0.0000 38.0720 -0.0000 68.8097 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0352 3.2024 3.5500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 58.333 11.000 123355.000 60.000 113.8123 134.6505 -90.6990 0.6359 0.0000 37.9760 -0.0000 68.5986 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2242 0.0000 1.0390 3.2006 3.5900 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 58.406 30.000 123355.000 60.000 113.1856 134.9700 -90.0599 0.6359 0.0000 37.8840 -0.0000 68.3889 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0427 3.1989 3.6300 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 62.277 120.000 123355.000 60.000 112.5657 135.2826 -89.4348 0.6359 0.0000 37.7920 -0.0000 68.1806 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0464 3.1971 3.6700 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 70.980 290.000 123355.000 60.000 111.9791 135.5885 -88.8230 0.6359 0.0000 37.7040 -0.0000 67.9735 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0502 3.1954 3.7100 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 73.398 301.000 123355.000 60.000 111.3723 135.8879 -88.2243 0.6359 0.0000 37.6120 -0.0000 67.7677 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0539 3.1936 3.7500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 75.467 476.000 123355.000 60.000 110.7720 136.1810 -87.6379 0.6359 0.0000 37.5200 -0.0000 67.5631 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0576 3.1918 3.7900 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 70.811 410.000 123355.000 60.000 110.2039 136.4682 -87.0635 0.6359 0.0000 37.4320 -0.0000 67.3597 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0613 3.1900 3.8300 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 64.742 230.000 123355.000 60.000 109.6416 136.7496 -86.5008 0.6359 0.0000 37.3440 -0.0000 67.1574 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0650 3.1882 3.8700 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 61.543 112.000 123355.000 60.000 109.0598 137.0254 -85.9492 0.6359 0.0000 37.2520 -0.0000 66.9563 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0687 3.1863 3.9100 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 60.720 32.000 123355.000 60.000 108.5091 137.2958 -85.4084 0.6359 0.0000 37.1640 -0.0000 66.7564 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0723 3.1845 3.9500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 59.987 17.000 123355.000 60.000 107.9639 137.5609 -84.8781 0.6359 0.0000 37.0760 -0.0000 66.5574 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0760 3.1826 3.9900 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 59.738 8.000 123355.000 60.000 107.4241 137.8210 -84.3579 0.6359 0.0000 36.9880 -0.0000 66.3596 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0797 3.1807 4.0300 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 58.772 7.000 123355.000 60.000 106.9139 138.0762 -83.8475 0.6359 0.0000 36.9040 -0.0000 66.1628 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0833 3.1788 4.0700 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 57.759 3.000 123355.000 60.000 106.3846 138.3268 -83.3465 0.6359 0.0000 36.8160 -0.0000 65.9670 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0870 3.1769 4.1100 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 58.027 2.000 123355.000 60.000 105.8605 138.5727 -82.8547 0.6359 0.0000 36.7280 -0.0000 65.7723 0.0001 0.0000 0.0000 0.0000 135.8878 -88.2243 0.0000 1.0906 3.1750 4.1500 3.7500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2073
+# Center of Mass = 0.038611+/-0.002233
+# Full Width Half-Maximum = 0.171542+/-0.005353
+# 7:37:33 PM 6/25/2012 scan completed.
+
+7:37:33 PM 6/25/2012 Executing "ef 3.5"
+
+Setting the final energy to 3.500meV and the configuration to "Fixed Ef".
+
+
+7:37:33 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=3.5 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=3.5 meV, guide-M-open-S-Be-80-A-open-D
+
+
+7:37:34 PM 6/25/2012 Executing "scan q 1.5 e -0.3 0.3 0.03 preset mcu 60"
+
+
+# scan = 121
+# date = 6/25/2012
+# time = 7:37:34 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.3 0.3 0.03 preset mcu 60
+# builtin_command = scan q 1.5 e -0.3 0.3 0.03 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.5 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.3000 62.389 3.000 123355.000 60.000 120.5763 131.1045 -97.7911 0.6359 0.0000 38.9080 -0.0000 72.2754 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0686 3.1864 3.2000 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.2700 62.222 6.000 123355.000 60.000 119.9948 131.4092 -97.1816 0.6359 0.0000 38.8320 -0.0000 72.0922 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0711 3.1851 3.2300 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.2400 61.547 4.000 123355.000 60.000 119.4490 131.7080 -96.5841 0.6359 0.0000 38.7600 -0.0000 71.9101 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0737 3.1838 3.2600 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2100 61.269 4.000 123355.000 60.000 118.9082 132.0009 -95.9982 0.6359 0.0000 38.6880 -0.0000 71.7291 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0762 3.1825 3.2900 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.1800 61.008 3.000 123355.000 60.000 118.3722 132.2882 -95.4235 0.6359 0.0000 38.6160 -0.0000 71.5491 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0788 3.1812 3.3200 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.1500 60.568 8.000 123355.000 60.000 117.8411 132.5702 -94.8597 0.6359 0.0000 38.5440 -0.0000 71.3702 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0813 3.1799 3.3500 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1200 60.676 14.000 123355.000 60.000 117.3147 132.8469 -94.3063 0.6359 0.0000 38.4720 -0.0000 71.1924 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0838 3.1786 3.3800 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.0900 60.111 28.000 123355.000 60.000 116.7929 133.1185 -93.7630 0.6359 0.0000 38.4000 -0.0000 71.0154 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0864 3.1773 3.4100 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0600 59.809 125.000 123355.000 60.000 116.2759 133.3852 -93.2295 0.6359 0.0000 38.3280 -0.0000 70.8396 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0889 3.1759 3.4400 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0300 59.145 267.000 123355.000 60.000 115.7633 133.6472 -92.7056 0.6359 0.0000 38.2560 -0.0000 70.6647 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0915 3.1746 3.4700 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 59.051 415.000 123355.000 60.000 115.2834 133.9046 -92.1908 0.6359 0.0000 38.1880 -0.0000 70.4906 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0940 3.1732 3.5000 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0300 58.906 482.000 123355.000 60.000 114.7795 134.1575 -91.6850 0.6359 0.0000 38.1160 -0.0000 70.3176 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0966 3.1719 3.5300 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0600 58.683 444.000 123355.000 60.000 114.3077 134.4061 -91.1878 0.6359 0.0000 38.0480 -0.0000 70.1455 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.0991 3.1705 3.5600 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.0900 58.381 307.000 123355.000 60.000 113.8123 134.6505 -90.6990 0.6359 0.0000 37.9760 -0.0000 69.9742 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1017 3.1691 3.5900 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1200 57.915 182.000 123355.000 60.000 113.3484 134.8908 -90.2184 0.6359 0.0000 37.9080 -0.0000 69.8039 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1042 3.1677 3.6200 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.1500 59.174 96.000 123355.000 60.000 112.8883 135.1272 -89.7456 0.6359 0.0000 37.8400 -0.0000 69.6344 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1068 3.1663 3.6500 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.1800 64.138 51.000 123355.000 60.000 112.4318 135.3597 -89.2806 0.6359 0.0000 37.7720 -0.0000 69.4657 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1093 3.1649 3.6800 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2100 70.693 16.000 123355.000 60.000 111.9791 135.5885 -88.8230 0.6359 0.0000 37.7040 -0.0000 69.2978 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1118 3.1635 3.7100 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.2400 72.742 6.000 123355.000 60.000 111.5299 135.8136 -88.3728 0.6359 0.0000 37.6360 -0.0000 69.1309 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1144 3.1621 3.7400 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.2700 74.434 6.000 123355.000 60.000 111.0844 136.0352 -87.9295 0.6359 0.0000 37.5680 -0.0000 68.9647 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1169 3.1606 3.7700 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.3000 75.372 6.000 123355.000 60.000 110.6424 136.2534 -87.4932 0.6359 0.0000 37.5000 -0.0000 68.7992 0.0001 0.0000 0.0000 0.0000 133.9046 -92.1908 0.0000 1.1195 3.1592 3.8000 3.5000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2473
+# Center of Mass = 0.039062+/-0.001775
+# Full Width Half-Maximum = 0.137668+/-0.003596
+# 8:05:11 PM 6/25/2012 scan completed.
+
+8:05:11 PM 6/25/2012 Executing "ef 3.25"
+
+Setting the final energy to 3.250meV and the configuration to "Fixed Ef".
+
+
+8:05:12 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=3.25 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=3.25 meV, guide-M-open-S-Be-80-A-open-D
+
+
+8:05:12 PM 6/25/2012 Executing "scan q 1.5 e -0.3 0.3 0.02 preset mcu 60"
+
+
+# scan = 122
+# date = 6/25/2012
+# time = 8:05:12 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.3 0.3 0.02 preset mcu 60
+# builtin_command = scan q 1.5 e -0.3 0.3 0.02 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.25 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.3000 65.933 4.000 123355.000 60.000 125.5729 128.2986 -103.4028 0.6359 0.0000 39.5320 -0.0000 75.6225 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1167 3.1608 2.9500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.2800 66.550 2.000 123355.000 60.000 125.1407 128.5426 -102.9147 0.6359 0.0000 39.4800 -0.0000 75.4816 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1182 3.1599 2.9700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.2600 66.619 3.000 123355.000 60.000 124.7116 128.7830 -102.4341 0.6359 0.0000 39.4280 -0.0000 75.3414 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1196 3.1591 2.9900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2400 65.703 4.000 123355.000 60.000 124.3180 129.0196 -101.9607 0.6359 0.0000 39.3800 -0.0000 75.2018 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1211 3.1583 3.0100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2200 65.279 2.000 123355.000 60.000 123.8944 129.2528 -101.4944 0.6359 0.0000 39.3280 -0.0000 75.0630 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1225 3.1574 3.0300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 65.164 5.000 123355.000 60.000 123.5060 129.4825 -101.0350 0.6359 0.0000 39.2800 -0.0000 74.9248 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1240 3.1566 3.0500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1800 64.389 1.000 123355.000 60.000 123.0879 129.7089 -100.5823 0.6359 0.0000 39.2280 -0.0000 74.7872 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1255 3.1558 3.0700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1600 63.845 3.000 123355.000 60.000 122.7045 129.9320 -100.1360 0.6359 0.0000 39.1800 -0.0000 74.6503 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1269 3.1549 3.0900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1400 63.781 9.000 123355.000 60.000 122.2919 130.1519 -99.6962 0.6359 0.0000 39.1280 -0.0000 74.5141 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1284 3.1541 3.1100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.1200 63.509 7.000 123355.000 60.000 121.9134 130.3688 -99.2624 0.6359 0.0000 39.0800 -0.0000 74.3784 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1299 3.1532 3.1300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.1000 63.258 16.000 123355.000 60.000 121.5060 130.5826 -98.8348 0.6359 0.0000 39.0280 -0.0000 74.2434 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1313 3.1523 3.1500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.0800 62.752 31.000 123355.000 60.000 121.1324 130.7935 -98.4130 0.6359 0.0000 38.9800 -0.0000 74.1089 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1328 3.1515 3.1700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 -0.0600 62.675 60.000 123355.000 60.000 120.7611 131.0015 -97.9970 0.6359 0.0000 38.9320 -0.0000 73.9751 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1343 3.1506 3.1900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 -0.0400 62.324 143.000 123355.000 60.000 120.3614 131.2067 -97.5865 0.6359 0.0000 38.8800 -0.0000 73.8418 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1358 3.1497 3.2100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 -0.0200 61.812 216.000 123355.000 60.000 119.9948 131.4092 -97.1816 0.6359 0.0000 38.8320 -0.0000 73.7091 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1373 3.1488 3.2300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.0000 62.105 346.000 123355.000 60.000 119.6304 131.6090 -96.7819 0.6359 0.0000 38.7840 -0.0000 73.5770 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1388 3.1480 3.2500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.0200 61.642 390.000 123355.000 60.000 119.2682 131.8062 -96.3876 0.6359 0.0000 38.7360 -0.0000 73.4455 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1403 3.1471 3.2700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.0400 61.219 418.000 123355.000 60.000 118.9082 132.0009 -95.9982 0.6359 0.0000 38.6880 -0.0000 73.3145 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1418 3.1462 3.2900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.0600 60.820 374.000 123355.000 60.000 118.5503 132.1931 -95.6139 0.6359 0.0000 38.6400 -0.0000 73.1840 0.0001 0.0000 0.0000 0.0000 131.6090 -96.7820 0.0000 1.1433 3.1453 3.3100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.0800 60.744 272.000 123355.000 60.000 118.1946 132.3828 -95.2344 0.6359 0.0000 38.5920 -0.0000 73.0541 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1448 3.1444 3.3300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.1000 60.640 213.000 123355.000 60.000 117.8411 132.5702 -94.8597 0.6359 0.0000 38.5440 -0.0000 72.9248 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1463 3.1434 3.3500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.1200 60.211 119.000 123355.000 60.000 117.4896 132.7552 -94.4896 0.6359 0.0000 38.4960 -0.0000 72.7959 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1478 3.1425 3.3700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.1400 60.162 52.000 123355.000 60.000 117.1402 132.9380 -94.1241 0.6359 0.0000 38.4480 -0.0000 72.6676 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1493 3.1416 3.3900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.1600 59.969 22.000 123355.000 60.000 116.7929 133.1185 -93.7630 0.6359 0.0000 38.4000 -0.0000 72.5397 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1508 3.1407 3.4100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.1800 59.976 13.000 123355.000 60.000 116.4477 133.2968 -93.4063 0.6359 0.0000 38.3520 -0.0000 72.4124 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1523 3.1398 3.4300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.5000 0.2000 59.584 5.000 123355.000 60.000 116.1045 133.4731 -93.0538 0.6359 0.0000 38.3040 -0.0000 72.2856 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1538 3.1388 3.4500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.5000 0.2200 59.386 6.000 123355.000 60.000 115.7633 133.6472 -92.7056 0.6359 0.0000 38.2560 -0.0000 72.1592 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1553 3.1379 3.4700 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.5000 0.2400 59.023 8.000 123355.000 60.000 115.4523 133.8193 -92.3614 0.6359 0.0000 38.2120 -0.0000 72.0334 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1569 3.1370 3.4900 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.5000 0.2600 58.894 10.000 123355.000 60.000 115.1149 133.9894 -92.0212 0.6359 0.0000 38.1640 -0.0000 71.9080 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1584 3.1360 3.5100 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.5000 0.2800 58.903 7.000 123355.000 60.000 114.7795 134.1575 -91.6849 0.6359 0.0000 38.1160 -0.0000 71.7831 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1599 3.1351 3.5300 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.5000 0.3000 58.592 4.000 123355.000 60.000 114.4738 134.3237 -91.3526 0.6359 0.0000 38.0720 -0.0000 71.6586 0.0001 0.0000 0.0000 0.0000 131.6089 -96.7820 0.0000 1.1614 3.1341 3.5500 3.2500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2765
+# Center of Mass = 0.036897+/-0.001559
+# Full Width Half-Maximum = 0.126456+/-0.003436
+# 8:43:52 PM 6/25/2012 scan completed.
+
+8:43:52 PM 6/25/2012 Executing "ef 3.0"
+
+Setting the final energy to 3.000meV and the configuration to "Fixed Ef".
+
+
+8:43:52 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=3.0 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=3.0 meV, guide-M-open-S-Be-80-A-open-D
+
+
+8:43:53 PM 6/25/2012 Executing "scan q 1.5 e -0.24 0.24 0.02 preset mcu 60"
+
+
+# scan = 123
+# date = 6/25/2012
+# time = 8:43:53 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.24 0.24 0.02 preset mcu 60
+# builtin_command = scan q 1.5 e -0.24 0.24 0.02 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.0 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.2400 70.750 7.000 123355.000 60.000 129.8144 125.7715 -108.4570 0.6359 0.0000 40.0240 -0.0000 79.0039 0.0001 0.0000 0.0000 0.0000 128.9018 -102.1965 0.0000 1.1749 3.1255 2.7600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.2200 70.551 2.000 123355.000 60.000 129.3526 126.0571 -107.8858 0.6359 0.0000 39.9720 -0.0000 78.8419 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1760 3.1248 2.7800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.2000 70.249 4.000 123355.000 60.000 128.8941 126.3377 -107.3246 0.6359 0.0000 39.9200 -0.0000 78.6808 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1772 3.1240 2.8000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.1800 69.869 4.000 123355.000 60.000 128.4388 126.6135 -106.7729 0.6359 0.0000 39.8680 -0.0000 78.5206 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1783 3.1233 2.8200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.1600 69.205 6.000 123355.000 60.000 127.9867 126.8846 -106.2307 0.6359 0.0000 39.8160 -0.0000 78.3613 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1795 3.1225 2.8400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.1400 68.883 8.000 123355.000 60.000 127.5379 127.1512 -105.6975 0.6359 0.0000 39.7640 -0.0000 78.2028 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1807 3.1217 2.8600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1200 68.371 3.000 123355.000 60.000 127.0921 127.4135 -105.1730 0.6359 0.0000 39.7120 -0.0000 78.0453 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1819 3.1210 2.8800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1000 68.081 3.000 123355.000 60.000 126.6495 127.6715 -104.6571 0.6359 0.0000 39.6600 -0.0000 77.8886 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1830 3.1202 2.9000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 67.452 11.000 123355.000 60.000 126.2099 127.9253 -104.1494 0.6359 0.0000 39.6080 -0.0000 77.7328 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1842 3.1194 2.9200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0600 67.388 37.000 123355.000 60.000 125.7733 128.1752 -103.6497 0.6359 0.0000 39.5560 -0.0000 77.5776 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1855 3.1186 2.9400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.0400 66.725 81.000 123355.000 60.000 125.3398 128.4211 -103.1578 0.6359 0.0000 39.5040 -0.0000 77.4235 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1867 3.1178 2.9600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.0200 66.430 181.000 123355.000 60.000 124.9423 128.6632 -102.6735 0.6359 0.0000 39.4560 -0.0000 77.2701 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1879 3.1170 2.9800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0000 66.033 245.000 123355.000 60.000 124.5145 128.9018 -102.1965 0.6359 0.0000 39.4040 -0.0000 77.1174 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1891 3.1162 3.0000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.0200 65.415 301.000 123355.000 60.000 124.0896 129.1366 -101.7267 0.6359 0.0000 39.3520 -0.0000 76.9656 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1903 3.1153 3.0200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.0400 65.176 336.000 123355.000 60.000 123.6999 129.3681 -101.2638 0.6359 0.0000 39.3040 -0.0000 76.8145 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1916 3.1145 3.0400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.0600 64.801 335.000 123355.000 60.000 123.2805 129.5961 -100.8078 0.6359 0.0000 39.2520 -0.0000 76.6642 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1928 3.1137 3.0600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.0800 64.181 215.000 123355.000 60.000 122.8959 129.8208 -100.3583 0.6359 0.0000 39.2040 -0.0000 76.5145 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1941 3.1128 3.0800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.1000 63.871 134.000 123355.000 60.000 122.4820 130.0424 -99.9153 0.6359 0.0000 39.1520 -0.0000 76.3657 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1953 3.1120 3.1000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.1200 63.680 74.000 123355.000 60.000 122.1024 130.2607 -99.4785 0.6359 0.0000 39.1040 -0.0000 76.2176 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1966 3.1111 3.1200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.1400 63.347 19.000 123355.000 60.000 121.6937 130.4760 -99.0479 0.6359 0.0000 39.0520 -0.0000 76.0702 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1978 3.1103 3.1400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.1600 62.782 7.000 123355.000 60.000 121.3189 130.6884 -98.6232 0.6359 0.0000 39.0040 -0.0000 75.9234 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.1991 3.1094 3.1600 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.1800 62.826 4.000 123355.000 60.000 120.9465 130.8978 -98.2043 0.6359 0.0000 38.9560 -0.0000 75.7774 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.2004 3.1085 3.1800 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.2000 62.441 7.000 123355.000 60.000 120.5763 131.1045 -97.7911 0.6359 0.0000 38.9080 -0.0000 75.6320 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.2017 3.1076 3.2000 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.2200 62.350 3.000 123355.000 60.000 120.1778 131.3083 -97.3834 0.6359 0.0000 38.8560 -0.0000 75.4873 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.2030 3.1067 3.2200 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.2400 61.768 8.000 123355.000 60.000 119.8123 131.5094 -96.9811 0.6359 0.0000 38.8080 -0.0000 75.3433 0.0001 0.0000 0.0000 0.0000 128.9016 -102.1965 0.0000 1.2042 3.1059 3.2400 3.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2035
+# Center of Mass = 0.034978+/-0.001651
+# Full Width Half-Maximum = 0.111297+/-0.003521
+# 9:17:52 PM 6/25/2012 scan completed.
+
+9:17:53 PM 6/25/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -102.19652
+m1 128.90174
+a2 -102.19652
+a1 128.90174
+mfocus 39.40417
+
+Drive completed.
+
+
+9:19:33 PM 6/25/2012 Executing "drive e -0.3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -110.23372
+m1 124.88314
+a2 -102.19652
+a1 128.90174
+mfocus 40.18346
+
+Drive completed.
+
+
+9:25:08 PM 6/25/2012 Executing "ef 2.65"
+
+Setting the final energy to 2.650meV and the configuration to "Fixed Ef".
+
+
+9:25:15 PM 6/25/2012 Executing "drive ef 2.65"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+a2 -111.79235
+a1 124.10383
+
+Drive completed.
+
+
+9:26:07 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=2.65 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=2.65 meV, guide-M-open-S-Be-80-A-open-D
+
+
+9:26:21 PM 6/25/2012 Executing "scan q 1.5 e -0.15 0.15 0.015 preset mcu 60"
+
+
+# scan = 124
+# date = 6/25/2012
+# time = 9:26:21 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+# builtin_command = scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=2.65 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.1500 5.636 0.000 0.000 0.000 136.4071 121.5152 -116.9697 0.6359 0.0000 40.7280 -0.0000 84.5635 0.0001 0.0000 0.0000 0.0000 124.1038 -111.7924 0.0000 1.2665 3.0597 2.5000 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 0
+# Center of Mass = NaN+/-NaN
+# Full Width Half-Maximum = NaN+/-NaN
+# 9:27:47 PM 6/25/2012 scan stopped!!
+
+Abort issued!!
+
+9:28:01 PM 6/25/2012 Executing "scan q 1.5 e -0.15 0.15 0.015 preset mcu 60"
+
+
+# scan = 125
+# date = 6/25/2012
+# time = 9:28:01 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+# builtin_command = scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=2.65 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.1500 79.617 3.000 123355.000 60.000 136.4071 121.5152 -116.9697 0.6359 0.0000 40.7280 -0.0000 84.5635 0.0001 0.0000 0.0000 0.0000 124.1038 -111.7924 0.0000 1.2665 3.0597 2.5000 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.1350 79.801 5.000 123355.000 60.000 135.9755 121.7932 -116.4137 0.6359 0.0000 40.6840 -0.0000 84.4125 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2670 3.0593 2.5150 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.1200 79.615 2.000 123355.000 60.000 135.5855 122.0665 -115.8670 0.6359 0.0000 40.6440 -0.0000 84.2624 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2674 3.0590 2.5300 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.1050 79.380 4.000 123355.000 60.000 135.1977 122.3354 -115.3291 0.6359 0.0000 40.6040 -0.0000 84.1131 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2679 3.0586 2.5450 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.0900 78.652 2.000 123355.000 60.000 134.7737 122.6000 -114.8000 0.6359 0.0000 40.5600 -0.0000 83.9645 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2684 3.0582 2.5600 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.0750 78.124 7.000 123355.000 60.000 134.3906 122.8604 -114.2791 0.6359 0.0000 40.5200 -0.0000 83.8168 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2689 3.0578 2.5750 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.0600 77.012 9.000 123355.000 60.000 134.0096 123.1168 -113.7665 0.6359 0.0000 40.4800 -0.0000 83.6698 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2693 3.0574 2.5900 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.0450 76.629 17.000 123355.000 60.000 133.6308 123.3692 -113.2617 0.6359 0.0000 40.4400 -0.0000 83.5235 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2698 3.0570 2.6050 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0300 76.243 36.000 123355.000 60.000 133.2541 123.6177 -112.7646 0.6359 0.0000 40.4000 -0.0000 83.3780 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2704 3.0566 2.6200 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0150 75.431 98.000 123355.000 60.000 132.8422 123.8626 -112.2748 0.6359 0.0000 40.3560 -0.0000 83.2332 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2709 3.0562 2.6350 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 75.076 176.000 123355.000 60.000 132.4699 124.1038 -111.7924 0.6359 0.0000 40.3160 -0.0000 83.0892 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2714 3.0558 2.6500 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0150 74.940 223.000 123355.000 60.000 132.0997 124.3416 -111.3169 0.6359 0.0000 40.2760 -0.0000 82.9458 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2719 3.0554 2.6650 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0300 74.043 260.000 123355.000 60.000 131.7316 124.5759 -110.8482 0.6359 0.0000 40.2360 -0.0000 82.8032 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2725 3.0549 2.6800 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.0450 73.726 256.000 123355.000 60.000 131.3655 124.8069 -110.3863 0.6359 0.0000 40.1960 -0.0000 82.6613 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2730 3.0545 2.6950 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.0600 72.919 223.000 123355.000 60.000 131.0015 125.0346 -109.9308 0.6359 0.0000 40.1560 -0.0000 82.5200 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2736 3.0540 2.7100 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.0750 72.617 134.000 123355.000 60.000 130.6395 125.2592 -109.4816 0.6359 0.0000 40.1160 -0.0000 82.3794 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2741 3.0536 2.7250 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.0900 72.110 73.000 123355.000 60.000 130.2794 125.4808 -109.0384 0.6359 0.0000 40.0760 -0.0000 82.2396 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2747 3.0531 2.7400 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.1050 71.601 30.000 123355.000 60.000 129.9214 125.6993 -108.6014 0.6359 0.0000 40.0360 -0.0000 82.1003 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2753 3.0527 2.7550 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.1200 71.498 15.000 123355.000 60.000 129.5653 125.9149 -108.1701 0.6359 0.0000 39.9960 -0.0000 81.9617 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2759 3.0522 2.7700 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.1350 70.885 11.000 123355.000 60.000 129.2465 126.1277 -107.7446 0.6359 0.0000 39.9600 -0.0000 81.8238 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2765 3.0517 2.7850 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.1500 70.823 6.000 123355.000 60.000 128.8941 126.3377 -107.3246 0.6359 0.0000 39.9200 -0.0000 81.6864 0.0001 0.0000 0.0000 0.0000 124.1037 -111.7924 0.0000 1.2771 3.0512 2.8000 2.6500 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 1590
+# Center of Mass = 0.033745+/-0.001547
+# Full Width Half-Maximum = 0.078194+/-0.002535
+# 9:57:02 PM 6/25/2012 scan completed.
+
+9:58:18 PM 6/25/2012 Executing "ef 2.8"
+
+Setting the final energy to 2.800meV and the configuration to "Fixed Ef".
+
+
+9:58:26 PM 6/25/2012 Executing "drive e 0.037"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -106.31146
+m1 126.84427
+a2 -107.32457
+a1 126.33771
+mfocus 39.82248
+
+Drive completed.
+
+
+9:58:59 PM 6/25/2012 Executing "zero a1 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ a1 a1 0.0000 0.0000
+
+
+
+9:59:02 PM 6/25/2012 Executing "zero a2 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ a2 a2 0.0000 0.0000
+
+
+
+9:59:16 PM 6/25/2012 Executing "method a1 set_motor_position d @(m1)+@(a1.zero)"
+ Derived from "spos a1 @(m1)"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+9:59:34 PM 6/25/2012 Executing "method a2 set_motor_position d @(m2)+@(a2.zero)"
+ Derived from "spos a2 @(m2)"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+10:01:35 PM 6/25/2012 Executing "ef 2.8"
+
+Setting the final energy to 2.800meV and the configuration to "Fixed Ef".
+
+
+10:01:35 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=2.8 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=2.8 meV, guide-M-open-S-Be-80-A-open-D
+
+
+10:01:36 PM 6/25/2012 Executing "scan q 1.5 e -0.3 0.3 0.015 preset mcu 60"
+
+
+# scan = 126
+# date = 6/25/2012
+# time = 10:01:36 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.3 0.3 0.015 preset mcu 60
+# builtin_command = scan q 1.5 e -0.3 0.3 0.015 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=2.8 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.3000 80.514 2.000 123355.000 60.000 136.4071 121.5152 -116.9697 0.6359 0.0000 40.7280 -0.0000 83.0780 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2212 3.0939 2.5000 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.2850 80.249 3.000 123355.000 60.000 135.9755 121.7932 -116.4137 0.6359 0.0000 40.6840 -0.0000 82.9356 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2218 3.0935 2.5150 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.2700 79.649 3.000 123355.000 60.000 135.5855 122.0665 -115.8670 0.6359 0.0000 40.6440 -0.0000 82.7940 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2223 3.0931 2.5300 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2550 79.054 2.000 123355.000 60.000 135.1977 122.3354 -115.3291 0.6359 0.0000 40.6040 -0.0000 82.6531 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2229 3.0926 2.5450 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 78.289 1.000 123355.000 60.000 134.7737 122.6000 -114.8000 0.6359 0.0000 40.5600 -0.0000 82.5129 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2235 3.0922 2.5600 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2250 77.894 5.000 123355.000 60.000 134.3906 122.8604 -114.2792 0.6359 0.0000 40.5200 -0.0000 82.3735 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2242 3.0918 2.5750 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2100 77.079 3.000 123355.000 60.000 134.0096 123.1168 -113.7665 0.6359 0.0000 40.4800 -0.0000 82.2346 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2248 3.0913 2.5900 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1950 76.719 3.000 123355.000 60.000 133.6308 123.3692 -113.2617 0.6359 0.0000 40.4400 -0.0000 82.0966 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2254 3.0909 2.6050 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1800 76.010 6.000 123355.000 60.000 133.2541 123.6177 -112.7646 0.6359 0.0000 40.4000 -0.0000 81.9592 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2261 3.0904 2.6200 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.1650 75.610 5.000 123355.000 60.000 132.8422 123.8626 -112.2749 0.6359 0.0000 40.3560 -0.0000 81.8225 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2267 3.0899 2.6350 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.1500 74.886 5.000 123355.000 60.000 132.4699 124.1038 -111.7924 0.6359 0.0000 40.3160 -0.0000 81.6864 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2273 3.0895 2.6500 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.1350 74.670 4.000 123355.000 60.000 132.0997 124.3416 -111.3169 0.6359 0.0000 40.2760 -0.0000 81.5510 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2280 3.0890 2.6650 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 -0.1200 74.325 7.000 123355.000 60.000 131.7316 124.5759 -110.8483 0.6359 0.0000 40.2360 -0.0000 81.4163 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2287 3.0885 2.6800 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 -0.1050 73.868 6.000 123355.000 60.000 131.3655 124.8069 -110.3863 0.6359 0.0000 40.1960 -0.0000 81.2821 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2293 3.0880 2.6950 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 -0.0900 73.365 26.000 123355.000 60.000 131.0015 125.0346 -109.9308 0.6359 0.0000 40.1560 -0.0000 81.1486 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2300 3.0875 2.7100 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 -0.0750 72.707 41.000 123355.000 60.000 130.6395 125.2592 -109.4815 0.6359 0.0000 40.1160 -0.0000 81.0158 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2307 3.0870 2.7250 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 -0.0600 72.374 82.000 123355.000 60.000 130.2794 125.4808 -109.0385 0.6359 0.0000 40.0760 -0.0000 80.8835 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2314 3.0865 2.7400 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 -0.0450 71.519 158.000 123355.000 60.000 129.9214 125.6993 -108.6014 0.6359 0.0000 40.0360 -0.0000 80.7518 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2321 3.0860 2.7550 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 -0.0300 71.263 190.000 123355.000 60.000 129.5653 125.9149 -108.1702 0.6359 0.0000 39.9960 -0.0000 80.6208 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2328 3.0855 2.7700 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 -0.0150 71.371 242.000 123355.000 60.000 129.2465 126.1277 -107.7445 0.6359 0.0000 39.9600 -0.0000 80.4903 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2335 3.0849 2.7850 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.0000 70.466 280.000 123355.000 60.000 128.8941 126.3377 -107.3246 0.6359 0.0000 39.9200 -0.0000 80.3604 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2342 3.0844 2.8000 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.0150 70.103 273.000 123355.000 60.000 128.5436 126.5450 -106.9100 0.6359 0.0000 39.8800 -0.0000 80.2311 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2349 3.0839 2.8150 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.0300 70.127 235.000 123355.000 60.000 128.1950 126.7496 -106.5007 0.6359 0.0000 39.8400 -0.0000 80.1023 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2357 3.0833 2.8300 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.0450 69.188 161.000 123355.000 60.000 127.8483 126.9517 -106.0966 0.6359 0.0000 39.8000 -0.0000 79.9742 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2364 3.0828 2.8450 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.0600 68.641 77.000 123355.000 60.000 127.5379 127.1512 -105.6975 0.6359 0.0000 39.7640 -0.0000 79.8465 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2371 3.0823 2.8600 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.5000 0.0750 68.322 35.000 123355.000 60.000 127.1947 127.3483 -105.3033 0.6359 0.0000 39.7240 -0.0000 79.7194 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2379 3.0817 2.8750 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.5000 0.0900 68.353 11.000 123355.000 60.000 126.8534 127.5430 -104.9140 0.6359 0.0000 39.6840 -0.0000 79.5929 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2386 3.0811 2.8900 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.5000 0.1050 67.957 12.000 123355.000 60.000 126.5477 127.7353 -104.5293 0.6359 0.0000 39.6480 -0.0000 79.4668 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2394 3.0806 2.9050 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.5000 0.1200 67.688 9.000 123355.000 60.000 126.2099 127.9253 -104.1494 0.6359 0.0000 39.6080 -0.0000 79.3414 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2401 3.0800 2.9200 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.5000 0.1350 67.417 5.000 123355.000 60.000 125.8738 128.1131 -103.7739 0.6359 0.0000 39.5680 -0.0000 79.2164 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2409 3.0794 2.9350 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.5000 0.1500 67.377 2.000 123355.000 60.000 125.5729 128.2986 -103.4028 0.6359 0.0000 39.5320 -0.0000 79.0919 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2417 3.0789 2.9500 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 1.5000 0.1650 66.538 3.000 123355.000 60.000 125.2402 128.4820 -103.0360 0.6359 0.0000 39.4920 -0.0000 78.9680 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2424 3.0783 2.9650 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 1.5000 0.1800 66.428 3.000 123355.000 60.000 124.9423 128.6632 -102.6735 0.6359 0.0000 39.4560 -0.0000 78.8446 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2432 3.0777 2.9800 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 1.5000 0.1950 65.866 4.000 123355.000 60.000 124.6129 128.8424 -102.3151 0.6359 0.0000 39.4160 -0.0000 78.7216 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2440 3.0771 2.9950 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 1.5000 0.2100 66.016 4.000 123355.000 60.000 124.3180 129.0196 -101.9607 0.6359 0.0000 39.3800 -0.0000 78.5992 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2448 3.0765 3.0100 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 1.5000 0.2250 65.419 5.000 123355.000 60.000 123.9919 129.1948 -101.6104 0.6359 0.0000 39.3400 -0.0000 78.4772 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2456 3.0759 3.0250 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 1.5000 0.2400 64.849 1.000 123355.000 60.000 123.6999 129.3681 -101.2638 0.6359 0.0000 39.3040 -0.0000 78.3557 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2464 3.0753 3.0400 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 1.5000 0.2550 64.776 2.000 123355.000 60.000 123.3771 129.5394 -100.9212 0.6359 0.0000 39.2640 -0.0000 78.2347 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2472 3.0747 3.0550 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 1.5000 0.2700 64.246 4.000 123355.000 60.000 123.0879 129.7089 -100.5823 0.6359 0.0000 39.2280 -0.0000 78.1141 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2480 3.0741 3.0700 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 1.5000 0.2850 64.040 1.000 123355.000 60.000 122.8002 129.8765 -100.2470 0.6359 0.0000 39.1920 -0.0000 77.9941 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2488 3.0735 3.0850 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 1.5000 0.3000 64.125 3.000 123355.000 60.000 122.4820 130.0424 -99.9153 0.6359 0.0000 39.1520 -0.0000 77.8744 0.0001 0.0000 0.0000 0.0000 126.3377 -107.3246 0.0000 1.2496 3.0729 3.1000 2.8000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 1924
+# Center of Mass = -0.000031+/-0.001320
+# Full Width Half-Maximum = 0.115758+/-0.004369
+# 10:57:10 PM 6/25/2012 scan completed.
+
+10:57:10 PM 6/25/2012 Executing "ef 3.125"
+
+Setting the final energy to 3.125meV and the configuration to "Fixed Ef".
+
+
+10:57:10 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=3.125 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=3.125 meV, guide-M-open-S-Be-80-A-open-D
+
+
+10:57:10 PM 6/25/2012 Executing "scan q 1.5 e -0.4 0.4 0.02 preset mcu 60"
+
+
+# scan = 127
+# date = 6/25/2012
+# time = 10:57:10 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.125 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 71.958 3.000 123355.000 60.000 130.6395 125.2592 -109.4815 0.6359 0.0000 40.1160 -0.0000 78.2580 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1368 3.1491 2.7250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3800 72.347 3.000 123355.000 60.000 130.1718 125.5539 -108.8921 0.6359 0.0000 40.0640 -0.0000 78.1016 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1381 3.1484 2.7450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3600 71.480 1.000 123355.000 60.000 129.7075 125.8434 -108.3132 0.6359 0.0000 40.0120 -0.0000 77.9461 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1393 3.1476 2.7650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3400 70.953 6.000 123355.000 60.000 129.2465 126.1277 -107.7446 0.6359 0.0000 39.9600 -0.0000 77.7915 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1406 3.1469 2.7850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3200 70.366 2.000 123355.000 60.000 128.7887 126.4071 -107.1858 0.6359 0.0000 39.9080 -0.0000 77.6377 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1419 3.1461 2.8050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.3000 69.895 1.000 123355.000 60.000 128.2994 126.6817 -106.6365 0.6359 0.0000 39.8520 -0.0000 77.4848 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1432 3.1453 2.8250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2800 69.245 2.000 123355.000 60.000 127.8483 126.9517 -106.0966 0.6359 0.0000 39.8000 -0.0000 77.3327 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1445 3.1445 2.8450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.2600 68.828 10.000 123355.000 60.000 127.4004 127.2172 -105.5656 0.6359 0.0000 39.7480 -0.0000 77.1814 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1458 3.1438 2.8650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.2400 68.294 1.000 123355.000 60.000 126.9897 127.4784 -105.0432 0.6359 0.0000 39.7000 -0.0000 77.0309 0.0001 0.0000 0.0000 0.0000 130.3149 -99.3703 0.0000 1.1471 3.1430 2.8850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.2200 67.751 6.000 123355.000 60.000 126.5477 127.7353 -104.5294 0.6359 0.0000 39.6480 -0.0000 76.8812 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1484 3.1422 2.9050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.2000 67.646 4.000 123355.000 60.000 126.1089 127.9882 -104.0237 0.6359 0.0000 39.5960 -0.0000 76.7323 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1497 3.1414 2.9250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.1800 66.962 3.000 123355.000 60.000 125.6730 128.2370 -103.5260 0.6359 0.0000 39.5440 -0.0000 76.5842 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1510 3.1405 2.9450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 -0.1600 66.925 7.000 123355.000 60.000 125.2402 128.4820 -103.0360 0.6359 0.0000 39.4920 -0.0000 76.4368 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1524 3.1397 2.9650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 -0.1400 66.181 22.000 123355.000 60.000 124.8433 128.7232 -102.5536 0.6359 0.0000 39.4440 -0.0000 76.2901 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1537 3.1389 2.9850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 -0.1200 66.282 30.000 123355.000 60.000 124.4162 128.9608 -102.0784 0.6359 0.0000 39.3920 -0.0000 76.1442 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1550 3.1381 3.0050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 -0.1000 65.462 92.000 123355.000 60.000 123.9919 129.1948 -101.6104 0.6359 0.0000 39.3400 -0.0000 75.9991 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1564 3.1372 3.0250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 -0.0800 65.073 148.000 123355.000 60.000 123.6029 129.4254 -101.1492 0.6359 0.0000 39.2920 -0.0000 75.8546 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1577 3.1364 3.0450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 -0.0600 64.393 258.000 123355.000 60.000 123.1842 129.6526 -100.6948 0.6359 0.0000 39.2400 -0.0000 75.7108 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1591 3.1356 3.0650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 -0.0400 64.556 337.000 123355.000 60.000 122.8002 129.8765 -100.2470 0.6359 0.0000 39.1920 -0.0000 75.5677 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1604 3.1347 3.0850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 -0.0200 63.939 364.000 123355.000 60.000 122.3869 130.0972 -99.8055 0.6359 0.0000 39.1400 -0.0000 75.4253 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1618 3.1339 3.1050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.0000 63.672 340.000 123355.000 60.000 122.0078 130.3148 -99.3703 0.6359 0.0000 39.0920 -0.0000 75.2836 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1632 3.1330 3.1250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.0200 63.187 295.000 123355.000 60.000 121.5998 130.5294 -98.9411 0.6359 0.0000 39.0400 -0.0000 75.1424 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1645 3.1321 3.1450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.0400 62.767 155.000 123355.000 60.000 121.2256 130.7410 -98.5179 0.6359 0.0000 38.9920 -0.0000 75.0021 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1659 3.1313 3.1650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.0600 62.849 84.000 123355.000 60.000 120.8537 130.9498 -98.1005 0.6359 0.0000 38.9440 -0.0000 74.8622 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1673 3.1304 3.1850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.0800 62.492 23.000 123355.000 60.000 120.4534 131.1557 -97.6886 0.6359 0.0000 38.8920 -0.0000 74.7231 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1687 3.1295 3.2050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.5000 0.1000 62.188 11.000 123355.000 60.000 120.0862 131.3588 -97.2823 0.6359 0.0000 38.8440 -0.0000 74.5844 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1701 3.1286 3.2250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.5000 0.1200 61.951 12.000 123355.000 60.000 119.7212 131.5593 -96.8814 0.6359 0.0000 38.7960 -0.0000 74.4466 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1715 3.1277 3.2450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.5000 0.1400 61.638 4.000 123355.000 60.000 119.3585 131.7572 -96.4856 0.6359 0.0000 38.7480 -0.0000 74.3093 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1729 3.1268 3.2650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.5000 0.1600 61.546 6.000 123355.000 60.000 118.9980 131.9525 -96.0951 0.6359 0.0000 38.7000 -0.0000 74.1726 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1743 3.1259 3.2850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.5000 0.1800 61.052 6.000 123355.000 60.000 118.6396 132.1452 -95.7095 0.6359 0.0000 38.6520 -0.0000 74.0365 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1757 3.1250 3.3050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.5000 0.2000 60.943 1.000 123355.000 60.000 118.2833 132.3356 -95.3288 0.6359 0.0000 38.6040 -0.0000 73.9009 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1771 3.1241 3.3250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 1.5000 0.2200 60.746 1.000 123355.000 60.000 117.9293 132.5236 -94.9529 0.6359 0.0000 38.5560 -0.0000 73.7660 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1785 3.1232 3.3450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 1.5000 0.2400 60.489 4.000 123355.000 60.000 117.5773 132.7092 -94.5817 0.6359 0.0000 38.5080 -0.0000 73.6315 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1799 3.1223 3.3650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 1.5000 0.2600 60.131 1.000 123355.000 60.000 117.2274 132.8925 -94.2150 0.6359 0.0000 38.4600 -0.0000 73.4976 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1813 3.1213 3.3850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 1.5000 0.2800 60.036 6.000 123355.000 60.000 116.8796 133.0736 -93.8528 0.6359 0.0000 38.4120 -0.0000 73.3644 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1827 3.1204 3.4050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 1.5000 0.3000 59.815 3.000 123355.000 60.000 116.5338 133.2525 -93.4950 0.6359 0.0000 38.3640 -0.0000 73.2316 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1841 3.1195 3.4250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 1.5000 0.3200 59.757 3.000 123355.000 60.000 116.1901 133.4292 -93.1415 0.6359 0.0000 38.3160 -0.0000 73.0993 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1856 3.1185 3.4450 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 1.5000 0.3400 59.160 3.000 123355.000 60.000 115.8484 133.6039 -92.7922 0.6359 0.0000 38.2680 -0.0000 72.9676 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1870 3.1176 3.4650 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 1.5000 0.3600 59.212 2.000 123355.000 60.000 115.5370 133.7765 -92.4470 0.6359 0.0000 38.2240 -0.0000 72.8364 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1884 3.1166 3.4850 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 1.5000 0.3800 59.031 1.000 123355.000 60.000 115.1991 133.9470 -92.1059 0.6359 0.0000 38.1760 -0.0000 72.7058 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1898 3.1157 3.5050 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 1.5000 0.4000 58.903 2.000 123355.000 60.000 114.8632 134.1157 -91.7687 0.6359 0.0000 38.1280 -0.0000 72.5756 0.0001 0.0000 0.0000 0.0000 130.3147 -99.3703 0.0000 1.1913 3.1147 3.5250 3.1250 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2263
+# Center of Mass = -0.019708+/-0.001587
+# Full Width Half-Maximum = 0.140340+/-0.005321
+# 11:47:59 PM 6/25/2012 scan completed.
+
+11:47:59 PM 6/25/2012 Executing "ef 3.375"
+
+Setting the final energy to 3.375meV and the configuration to "Fixed Ef".
+
+
+11:47:59 PM 6/25/2012 Executing "scantitle "Instrument resolution at E=3.375 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=3.375 meV, guide-M-open-S-Be-80-A-open-D
+
+
+11:47:59 PM 6/25/2012 Executing "scan q 1.5 e -0.4 0.4 0.02 preset mcu 60"
+
+
+# scan = 128
+# date = 6/25/2012
+# time = 11:47:59 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.375 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 65.896 3.000 123355.000 60.000 125.0414 128.6031 -102.7939 0.6359 0.0000 39.4680 -0.0000 74.5551 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0841 3.1785 2.9750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3800 65.687 1.000 123355.000 60.000 124.6129 128.8424 -102.3151 0.6359 0.0000 39.4160 -0.0000 74.4210 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0856 3.1777 2.9950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3600 65.424 1.000 123355.000 60.000 124.2200 129.0782 -101.8435 0.6359 0.0000 39.3680 -0.0000 74.2876 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0872 3.1768 3.0150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3400 65.008 5.000 123355.000 60.000 123.7971 129.3105 -101.3789 0.6359 0.0000 39.3160 -0.0000 74.1548 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0888 3.1760 3.0350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3200 64.946 3.000 123355.000 60.000 123.3771 129.5394 -100.9212 0.6359 0.0000 39.2640 -0.0000 74.0226 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0903 3.1752 3.0550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.3000 64.677 6.000 123355.000 60.000 122.9919 129.7650 -100.4700 0.6359 0.0000 39.2160 -0.0000 73.8910 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0919 3.1743 3.0750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2800 64.143 6.000 123355.000 60.000 122.5773 129.9873 -100.0255 0.6359 0.0000 39.1640 -0.0000 73.7600 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0935 3.1735 3.0950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.2600 63.825 5.000 123355.000 60.000 122.1970 130.2064 -99.5872 0.6359 0.0000 39.1160 -0.0000 73.6295 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0951 3.1727 3.1150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.2400 63.112 2.000 123355.000 60.000 121.8192 130.4225 -99.1550 0.6359 0.0000 39.0680 -0.0000 73.4997 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0967 3.1718 3.1350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.2200 63.069 5.000 123355.000 60.000 121.4124 130.6356 -98.7288 0.6359 0.0000 39.0160 -0.0000 73.3703 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0982 3.1710 3.1550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.2000 62.755 8.000 123355.000 60.000 121.0394 130.8458 -98.3085 0.6359 0.0000 38.9680 -0.0000 73.2416 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.0998 3.1701 3.1750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.1800 62.676 16.000 123355.000 60.000 120.6686 131.0531 -97.8939 0.6359 0.0000 38.9200 -0.0000 73.1135 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1014 3.1692 3.1950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 -0.1600 62.312 24.000 123355.000 60.000 120.2695 131.2576 -97.4848 0.6359 0.0000 38.8680 -0.0000 72.9858 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1030 3.1684 3.2150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 -0.1400 62.307 45.000 123355.000 60.000 119.9034 131.4594 -97.0812 0.6359 0.0000 38.8200 -0.0000 72.8587 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1046 3.1675 3.2350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 -0.1200 61.806 90.000 123355.000 60.000 119.5396 131.6586 -96.6829 0.6359 0.0000 38.7720 -0.0000 72.7322 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1062 3.1666 3.2550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 -0.1000 61.818 203.000 123355.000 60.000 119.1780 131.8551 -96.2897 0.6359 0.0000 38.7240 -0.0000 72.6061 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1078 3.1657 3.2750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 -0.0800 61.333 288.000 123355.000 60.000 118.8185 132.0492 -95.9017 0.6359 0.0000 38.6760 -0.0000 72.4806 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1094 3.1649 3.2950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 -0.0600 61.051 367.000 123355.000 60.000 118.4612 132.2407 -95.5185 0.6359 0.0000 38.6280 -0.0000 72.3556 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1110 3.1640 3.3150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 -0.0400 60.799 394.000 123355.000 60.000 118.1060 132.4299 -95.1403 0.6359 0.0000 38.5800 -0.0000 72.2310 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1126 3.1631 3.3350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 -0.0200 60.461 427.000 123355.000 60.000 117.7530 132.6166 -94.7667 0.6359 0.0000 38.5320 -0.0000 72.1070 0.0001 0.0000 0.0000 0.0000 132.8011 -94.3978 0.0000 1.1142 3.1622 3.3550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.0000 60.414 422.000 123355.000 60.000 117.4021 132.8011 -94.3978 0.6359 0.0000 38.4840 -0.0000 71.9834 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1158 3.1613 3.3750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.0200 60.369 341.000 123355.000 60.000 117.0532 132.9833 -94.0334 0.6359 0.0000 38.4360 -0.0000 71.8604 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1174 3.1604 3.3950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.0400 59.557 222.000 123355.000 60.000 116.7064 133.1633 -93.6734 0.6359 0.0000 38.3880 -0.0000 71.7378 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1190 3.1595 3.4150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.0600 59.692 134.000 123355.000 60.000 116.3617 133.3411 -93.3178 0.6359 0.0000 38.3400 -0.0000 71.6157 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1206 3.1586 3.4350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.0800 59.656 55.000 123355.000 60.000 116.0190 133.5168 -92.9664 0.6359 0.0000 38.2920 -0.0000 71.4940 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1222 3.1576 3.4550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 26 1.5000 0.1000 59.293 16.000 123355.000 60.000 115.7066 133.6904 -92.6191 0.6359 0.0000 38.2480 -0.0000 71.3728 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1238 3.1567 3.4750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 27 1.5000 0.1200 59.050 6.000 123355.000 60.000 115.3678 133.8620 -92.2760 0.6359 0.0000 38.2000 -0.0000 71.2520 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1254 3.1558 3.4950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 28 1.5000 0.1400 59.046 5.000 123355.000 60.000 115.0309 134.0316 -91.9368 0.6359 0.0000 38.1520 -0.0000 71.1317 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1270 3.1549 3.5150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 29 1.5000 0.1600 58.786 3.000 123355.000 60.000 114.6960 134.1992 -91.6015 0.6359 0.0000 38.1040 -0.0000 71.0119 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1286 3.1539 3.5350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 30 1.5000 0.1800 58.754 6.000 123355.000 60.000 114.3907 134.3650 -91.2701 0.6359 0.0000 38.0600 -0.0000 70.8924 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1302 3.1530 3.5550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 31 1.5000 0.2000 58.272 5.000 123355.000 60.000 114.0595 134.5288 -90.9423 0.6359 0.0000 38.0120 -0.0000 70.7734 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1318 3.1521 3.5750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 32 1.5000 0.2200 58.144 0.000 123355.000 60.000 113.7576 134.6908 -90.6183 0.6359 0.0000 37.9680 -0.0000 70.6548 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1335 3.1511 3.5950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 33 1.5000 0.2400 57.887 3.000 123355.000 60.000 113.4300 134.8510 -90.2979 0.6359 0.0000 37.9200 -0.0000 70.5367 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1351 3.1502 3.6150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 34 1.5000 0.2600 58.163 2.000 123355.000 60.000 113.1314 135.0095 -89.9810 0.6359 0.0000 37.8760 -0.0000 70.4189 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1367 3.1492 3.6350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 35 1.5000 0.2800 59.611 3.000 123355.000 60.000 112.8074 135.1662 -89.6676 0.6359 0.0000 37.8280 -0.0000 70.3016 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1383 3.1482 3.6550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 36 1.5000 0.3000 62.811 7.000 123355.000 60.000 112.5121 135.3212 -89.3576 0.6359 0.0000 37.7840 -0.0000 70.1846 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1399 3.1473 3.6750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 37 1.5000 0.3200 67.617 2.000 123355.000 60.000 112.1917 135.4746 -89.0509 0.6359 0.0000 37.7360 -0.0000 70.0680 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1415 3.1463 3.6950 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 38 1.5000 0.3400 71.339 0.000 123355.000 60.000 111.8995 135.6262 -88.7475 0.6359 0.0000 37.6920 -0.0000 69.9519 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1431 3.1453 3.7150 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 39 1.5000 0.3600 73.075 3.000 123355.000 60.000 111.5826 135.7764 -88.4473 0.6359 0.0000 37.6440 -0.0000 69.8361 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1447 3.1444 3.7350 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 40 1.5000 0.3800 73.460 2.000 123355.000 60.000 111.2936 135.9248 -88.1503 0.6359 0.0000 37.6000 -0.0000 69.7207 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1464 3.1434 3.7550 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 41 1.5000 0.4000 74.330 2.000 123355.000 60.000 111.0061 136.0718 -87.8563 0.6359 0.0000 37.5560 -0.0000 69.6057 0.0001 0.0000 0.0000 0.0000 132.8010 -94.3978 0.0000 1.1480 3.1424 3.7750 3.3750 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3138
+# Center of Mass = -0.027043+/-0.001417
+# Full Width Half-Maximum = 0.139166+/-0.004058
+# 12:37:25 AM 6/26/2012 scan completed.
+
+12:37:25 AM 6/26/2012 Executing "ef 3.625"
+
+Setting the final energy to 3.625meV and the configuration to "Fixed Ef".
+
+
+12:37:25 AM 6/26/2012 Executing "scantitle "Instrument resolution at E=3.625 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=3.625 meV, guide-M-open-S-Be-80-A-open-D
+
+
+12:37:25 AM 6/26/2012 Executing "scan q 1.5 e -0.36 0.36 0.03 preset mcu 60"
+
+
+# scan = 129
+# date = 6/26/2012
+# time = 12:37:25 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.36 0.36 0.03 preset mcu 60
+# builtin_command = scan q 1.5 e -0.36 0.36 0.03 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.625 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.3600 61.235 4.000 123355.000 60.000 119.3585 131.7572 -96.4857 0.6359 0.0000 38.7480 -0.0000 71.1090 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0412 3.1996 3.2650 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3300 61.312 8.000 123355.000 60.000 118.8185 132.0492 -95.9017 0.6359 0.0000 38.6760 -0.0000 70.9354 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0439 3.1983 3.2950 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3000 60.825 8.000 123355.000 60.000 118.2833 132.3356 -95.3288 0.6359 0.0000 38.6040 -0.0000 70.7631 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0466 3.1971 3.3250 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2700 60.519 7.000 123355.000 60.000 117.7530 132.6166 -94.7667 0.6359 0.0000 38.5320 -0.0000 70.5915 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0493 3.1958 3.3550 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 60.134 9.000 123355.000 60.000 117.2274 132.8925 -94.2150 0.6359 0.0000 38.4600 -0.0000 70.4210 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0520 3.1945 3.3850 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2100 59.614 13.000 123355.000 60.000 116.7064 133.1633 -93.6734 0.6359 0.0000 38.3880 -0.0000 70.2514 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0547 3.1932 3.4150 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1800 59.626 36.000 123355.000 60.000 116.1901 133.4292 -93.1416 0.6359 0.0000 38.3160 -0.0000 70.0826 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0574 3.1919 3.4450 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 59.347 100.000 123355.000 60.000 115.7066 133.6904 -92.6192 0.6359 0.0000 38.2480 -0.0000 69.9147 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0600 3.1906 3.4750 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1200 59.173 190.000 123355.000 60.000 115.1991 133.9470 -92.1059 0.6359 0.0000 38.1760 -0.0000 69.7478 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0627 3.1893 3.5050 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0900 58.920 354.000 123355.000 60.000 114.6960 134.1992 -91.6015 0.6359 0.0000 38.1040 -0.0000 69.5817 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0654 3.1880 3.5350 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 -0.0600 58.611 451.000 123355.000 60.000 114.2249 134.4471 -91.1057 0.6359 0.0000 38.0360 -0.0000 69.4165 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0681 3.1866 3.5650 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 -0.0300 58.072 468.000 123355.000 60.000 113.7576 134.6908 -90.6183 0.6359 0.0000 37.9680 -0.0000 69.2520 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0707 3.1853 3.5950 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0000 58.364 406.000 123355.000 60.000 113.2669 134.9305 -90.1391 0.6359 0.0000 37.8960 -0.0000 69.0884 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0734 3.1839 3.6250 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.0300 59.433 324.000 123355.000 60.000 112.8074 135.1662 -89.6676 0.6359 0.0000 37.8280 -0.0000 68.9256 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0761 3.1826 3.6550 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.0600 65.404 162.000 123355.000 60.000 112.3517 135.3981 -89.2038 0.6359 0.0000 37.7600 -0.0000 68.7635 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0788 3.1812 3.6850 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.0900 71.441 68.000 123355.000 60.000 111.8995 135.6262 -88.7475 0.6359 0.0000 37.6920 -0.0000 68.6023 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0814 3.1798 3.7150 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.1200 73.236 23.000 123355.000 60.000 111.4511 135.8508 -88.2984 0.6359 0.0000 37.6240 -0.0000 68.4417 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0841 3.1785 3.7450 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.1500 74.675 6.000 123355.000 60.000 111.0061 136.0718 -87.8563 0.6359 0.0000 37.5560 -0.0000 68.2820 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0868 3.1771 3.7750 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.1800 74.698 12.000 123355.000 60.000 110.5648 136.2894 -87.4211 0.6359 0.0000 37.4880 -0.0000 68.1230 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0894 3.1757 3.8050 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.2100 70.119 3.000 123355.000 60.000 110.1269 136.5037 -86.9926 0.6359 0.0000 37.4200 -0.0000 67.9647 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0921 3.1743 3.8350 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.2400 64.953 3.000 123355.000 60.000 109.6925 136.7147 -86.5705 0.6359 0.0000 37.3520 -0.0000 67.8071 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0947 3.1728 3.8650 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 22 1.5000 0.2700 62.802 4.000 123355.000 60.000 109.2867 136.9226 -86.1548 0.6359 0.0000 37.2880 -0.0000 67.6502 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.0974 3.1714 3.8950 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 23 1.5000 0.3000 61.004 6.000 123355.000 60.000 108.8589 137.1274 -85.7452 0.6359 0.0000 37.2200 -0.0000 67.4939 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.1000 3.1700 3.9250 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 24 1.5000 0.3300 60.535 4.000 123355.000 60.000 108.4344 137.3292 -85.3416 0.6359 0.0000 37.1520 -0.0000 67.3383 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.1027 3.1685 3.9550 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 25 1.5000 0.3600 59.896 4.000 123355.000 60.000 108.0379 137.5280 -84.9439 0.6359 0.0000 37.0880 -0.0000 67.1834 0.0001 0.0000 0.0000 0.0000 134.9305 -90.1390 0.0000 1.1053 3.1671 3.9850 3.6250 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2673
+# Center of Mass = -0.034467+/-0.001768
+# Full Width Half-Maximum = 0.154601+/-0.004187
+# 1:08:29 AM 6/26/2012 scan completed.
+
+1:08:29 AM 6/26/2012 Executing "ef 3.875"
+
+Setting the final energy to 3.875meV and the configuration to "Fixed Ef".
+
+
+1:08:29 AM 6/26/2012 Executing "scantitle "Instrument resolution at E=3.875 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=3.875 meV, guide-M-open-S-Be-80-A-open-D
+
+
+1:08:30 AM 6/26/2012 Executing "scan q 1.5 e -0.4 0.4 0.04 preset mcu 60"
+
+
+# scan = 130
+# date = 6/26/2012
+# time = 1:08:30 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=3.875 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 58.932 6.000 123355.000 60.000 115.7066 133.6904 -92.6191 0.6359 0.0000 38.2480 -0.0000 68.5174 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 0.9964 3.2192 3.4750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 58.846 7.000 123355.000 60.000 115.0309 134.0316 -91.9368 0.6359 0.0000 38.1520 -0.0000 68.3122 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0003 3.2176 3.5150 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 58.349 7.000 123355.000 60.000 114.3907 134.3650 -91.2701 0.6359 0.0000 38.0600 -0.0000 68.1084 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0043 3.2160 3.5550 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 58.403 11.000 123355.000 60.000 113.7576 134.6908 -90.6183 0.6359 0.0000 37.9680 -0.0000 67.9058 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0082 3.2143 3.5950 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 58.009 15.000 123355.000 60.000 113.1314 135.0095 -89.9810 0.6359 0.0000 37.8760 -0.0000 67.7045 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0121 3.2126 3.6350 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 62.880 57.000 123355.000 60.000 112.5121 135.3212 -89.3576 0.6359 0.0000 37.7840 -0.0000 67.5043 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0160 3.2110 3.6750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 71.394 112.000 123355.000 60.000 111.8995 135.6262 -88.7475 0.6359 0.0000 37.6920 -0.0000 67.3054 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0198 3.2093 3.7150 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 73.371 208.000 123355.000 60.000 111.2936 135.9248 -88.1503 0.6359 0.0000 37.6000 -0.0000 67.1075 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0237 3.2076 3.7550 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 74.389 425.000 123355.000 60.000 110.7202 136.2173 -87.5655 0.6359 0.0000 37.5120 -0.0000 66.9109 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0276 3.2058 3.7950 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 69.857 513.000 123355.000 60.000 110.1269 136.5037 -86.9925 0.6359 0.0000 37.4200 -0.0000 66.7153 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0314 3.2041 3.8350 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 64.176 399.000 123355.000 60.000 109.5654 136.7844 -86.4312 0.6359 0.0000 37.3320 -0.0000 66.5208 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4312 0.0000 1.0353 3.2023 3.8750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 61.450 235.000 123355.000 60.000 109.0095 137.0595 -85.8811 0.6359 0.0000 37.2440 -0.0000 66.3274 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0391 3.2006 3.9150 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 60.346 93.000 123355.000 60.000 108.4344 137.3292 -85.3416 0.6359 0.0000 37.1520 -0.0000 66.1350 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0430 3.1988 3.9550 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 59.732 27.000 123355.000 60.000 107.8899 137.5937 -84.8126 0.6359 0.0000 37.0640 -0.0000 65.9436 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0468 3.1970 3.9950 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 59.068 12.000 123355.000 60.000 107.3753 137.8532 -84.2936 0.6359 0.0000 36.9800 -0.0000 65.7532 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0506 3.1952 4.0350 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 58.713 6.000 123355.000 60.000 106.8414 138.1078 -83.7844 0.6359 0.0000 36.8920 -0.0000 65.5638 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0544 3.1934 4.0750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 58.128 4.000 123355.000 60.000 106.3128 138.3577 -83.2845 0.6359 0.0000 36.8040 -0.0000 65.3752 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0582 3.1915 4.1150 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 57.941 4.000 123355.000 60.000 105.8131 138.6031 -82.7938 0.6359 0.0000 36.7200 -0.0000 65.1877 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0620 3.1897 4.1550 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 57.409 9.000 123355.000 60.000 105.2946 138.8440 -82.3120 0.6359 0.0000 36.6320 -0.0000 65.0010 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0657 3.1878 4.1950 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 57.168 4.000 123355.000 60.000 104.8043 139.0807 -81.8387 0.6359 0.0000 36.5480 -0.0000 64.8152 0.0001 0.0000 0.0000 0.0000 136.7844 -86.4314 0.0000 1.0695 3.1859 4.2350 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 56.400 3.000 123355.000 60.000 104.3186 139.3132 -81.3737 0.6359 0.0000 36.4640 -0.0000 64.6303 0.0001 0.0000 0.0000 0.0000 136.7842 -86.4314 0.0000 1.0732 3.1840 4.2750 3.8750 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2157
+# Center of Mass = -0.042578+/-0.002284
+# Full Width Half-Maximum = 0.174681+/-0.005387
+# 1:34:31 AM 6/26/2012 scan completed.
+
+1:34:31 AM 6/26/2012 Executing "ef 4.125"
+
+Setting the final energy to 4.125meV and the configuration to "Fixed Ef".
+
+
+1:34:31 AM 6/26/2012 Executing "scantitle "Instrument resolution at E=4.125 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=4.125 meV, guide-M-open-S-Be-80-A-open-D
+
+
+1:34:31 AM 6/26/2012 Executing "scan q 1.5 e -0.4 0.4 0.04 preset mcu 60"
+
+
+# scan = 131
+# date = 6/26/2012
+# time = 1:34:31 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.125 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 71.052 4.000 123355.000 60.000 111.7408 135.7015 -88.5971 0.6359 0.0000 37.6680 -0.0000 66.0081 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9594 3.2336 3.7250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 74.041 5.000 123355.000 60.000 111.1366 135.9985 -88.0029 0.6359 0.0000 37.5760 -0.0000 65.8255 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9636 3.2320 3.7650 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 73.982 6.000 123355.000 60.000 110.5648 136.2894 -87.4211 0.6359 0.0000 37.4880 -0.0000 65.6439 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9678 3.2305 3.8050 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 68.318 12.000 123355.000 60.000 109.9732 136.5744 -86.8512 0.6359 0.0000 37.3960 -0.0000 65.4632 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9720 3.2289 3.8450 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 63.038 25.000 123355.000 60.000 109.4132 136.8537 -86.2927 0.6359 0.0000 37.3080 -0.0000 65.2834 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9761 3.2273 3.8850 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 61.124 122.000 123355.000 60.000 108.8589 137.1274 -85.7452 0.6359 0.0000 37.2200 -0.0000 65.1045 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9802 3.2257 3.9250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 59.905 240.000 123355.000 60.000 108.3102 137.3958 -85.2084 0.6359 0.0000 37.1320 -0.0000 64.9264 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1610 0.0000 0.9844 3.2241 3.9650 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 59.419 434.000 123355.000 60.000 107.7670 137.6590 -84.6819 0.6359 0.0000 37.0440 -0.0000 64.7493 0.0001 0.0000 0.0000 0.0000 138.4195 -83.1611 0.0000 0.9885 3.2224 4.0050 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 58.756 519.000 123355.000 60.000 107.2292 137.9173 -84.1654 0.6359 0.0000 36.9560 -0.0000 64.5729 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 0.9926 3.2208 4.0450 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 58.702 541.000 123355.000 60.000 106.6967 138.1707 -83.6585 0.6359 0.0000 36.8680 -0.0000 64.3974 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 0.9966 3.2191 4.0850 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 58.471 454.000 123355.000 60.000 106.1934 138.4195 -83.1610 0.6359 0.0000 36.7840 -0.0000 64.2226 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0007 3.2174 4.1250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 57.623 272.000 123355.000 60.000 105.6711 138.6637 -82.6725 0.6359 0.0000 36.6960 -0.0000 64.0487 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0048 3.2157 4.1650 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 57.248 123.000 123355.000 60.000 105.1774 138.9036 -82.1928 0.6359 0.0000 36.6120 -0.0000 63.8755 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0088 3.2140 4.2050 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 56.939 36.000 123355.000 60.000 104.6651 139.1392 -81.7217 0.6359 0.0000 36.5240 -0.0000 63.7031 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0128 3.2123 4.2450 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 57.027 17.000 123355.000 60.000 104.1807 139.3706 -81.2587 0.6359 0.0000 36.4400 -0.0000 63.5314 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0168 3.2106 4.2850 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 57.003 10.000 123355.000 60.000 103.7008 139.5981 -80.8038 0.6359 0.0000 36.3560 -0.0000 63.3604 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0208 3.2088 4.3250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 56.732 9.000 123355.000 60.000 103.2252 139.8217 -80.3567 0.6359 0.0000 36.2720 -0.0000 63.1901 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0248 3.2071 4.3650 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 56.318 5.000 123355.000 60.000 102.7540 140.0415 -79.9170 0.6359 0.0000 36.1880 -0.0000 63.0206 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0288 3.2053 4.4050 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 56.235 8.000 123355.000 60.000 102.2871 140.2576 -79.4847 0.6359 0.0000 36.1040 -0.0000 62.8517 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0328 3.2035 4.4450 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 56.088 7.000 123355.000 60.000 101.8464 140.4702 -79.0595 0.6359 0.0000 36.0240 -0.0000 62.6835 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0367 3.2017 4.4850 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 55.846 4.000 123355.000 60.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 -0.0000 62.5160 0.0001 0.0000 0.0000 0.0000 138.4194 -83.1611 0.0000 1.0407 3.1999 4.5250 4.1250 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 2853
+# Center of Mass = -0.053530+/-0.002210
+# Full Width Half-Maximum = 0.181213+/-0.004553
+# 1:59:51 AM 6/26/2012 scan completed.
+
+1:59:51 AM 6/26/2012 Executing "ef 4.375"
+
+Setting the final energy to 4.375meV and the configuration to "Fixed Ef".
+
+
+1:59:51 AM 6/26/2012 Executing "scantitle "Instrument resolution at E=4.375 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=4.375 meV, guide-M-open-S-Be-80-A-open-D
+
+
+1:59:52 AM 6/26/2012 Executing "scan q 1.5 e -0.4 0.4 0.04 preset mcu 60"
+
+
+# scan = 132
+# date = 6/26/2012
+# time = 1:59:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# builtin_command = scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.375 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.4000 59.553 8.000 123355.000 60.000 108.1615 137.4621 -85.0758 0.6359 0.0000 37.1080 -0.0000 63.7588 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9260 3.2452 3.9750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.3600 59.475 8.000 123355.000 60.000 107.6443 137.7241 -84.5518 0.6359 0.0000 37.0240 -0.0000 63.5949 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9304 3.2437 4.0150 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.3200 58.810 22.000 123355.000 60.000 107.1077 137.9811 -84.0378 0.6359 0.0000 36.9360 -0.0000 63.4317 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9348 3.2423 4.0550 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.2800 58.744 27.000 123355.000 60.000 106.5764 138.2334 -83.5333 0.6359 0.0000 36.8480 -0.0000 63.2692 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9391 3.2408 4.0950 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.2400 58.195 74.000 123355.000 60.000 106.0504 138.4810 -83.0381 0.6359 0.0000 36.7600 -0.0000 63.1073 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9435 3.2393 4.1350 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2000 57.547 227.000 123355.000 60.000 105.5532 138.7241 -82.5518 0.6359 0.0000 36.6760 -0.0000 62.9461 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9478 3.2378 4.1750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.1600 57.121 381.000 123355.000 60.000 105.0372 138.9629 -82.0743 0.6359 0.0000 36.5880 -0.0000 62.7855 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9521 3.2362 4.2150 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1200 56.947 523.000 123355.000 60.000 104.5494 139.1974 -81.6052 0.6359 0.0000 36.5040 -0.0000 62.6256 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9564 3.2347 4.2550 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.0800 56.514 572.000 123355.000 60.000 104.0660 139.4279 -81.1443 0.6359 0.0000 36.4200 -0.0000 62.4662 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9607 3.2331 4.2950 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0400 56.489 562.000 123355.000 60.000 103.5871 139.6544 -80.6913 0.6359 0.0000 36.3360 -0.0000 62.3075 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9649 3.2315 4.3350 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 56.364 433.000 123355.000 60.000 103.1127 139.8770 -80.2460 0.6359 0.0000 36.2520 -0.0000 62.1494 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9692 3.2300 4.3750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0400 56.549 252.000 123355.000 60.000 102.6425 140.0959 -79.8082 0.6359 0.0000 36.1680 -0.0000 61.9918 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9734 3.2283 4.4150 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.0800 56.018 119.000 123355.000 60.000 102.1766 140.3111 -79.3777 0.6359 0.0000 36.0840 -0.0000 61.8348 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9776 3.2267 4.4550 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1200 55.824 63.000 123355.000 60.000 101.7149 140.5228 -78.9543 0.6359 0.0000 36.0000 -0.0000 61.6784 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9818 3.2251 4.4950 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.1600 55.612 20.000 123355.000 60.000 101.2791 140.7311 -78.5378 0.6359 0.0000 35.9200 -0.0000 61.5225 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9860 3.2234 4.5350 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2000 55.399 10.000 123355.000 60.000 100.8254 140.9360 -78.1279 0.6359 0.0000 35.8360 -0.0000 61.3672 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9901 3.2218 4.5750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.2400 55.226 7.000 123355.000 60.000 100.3972 141.1377 -77.7245 0.6359 0.0000 35.7560 -0.0000 61.2124 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9943 3.2201 4.6150 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.2800 54.991 10.000 123355.000 60.000 99.9514 141.3362 -77.3275 0.6359 0.0000 35.6720 -0.0000 61.0581 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 0.9984 3.2184 4.6550 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.3200 54.685 10.000 123355.000 60.000 99.5305 141.5317 -76.9366 0.6359 0.0000 35.5920 -0.0000 60.9043 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 1.0025 3.2167 4.6950 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.3600 54.866 6.000 123355.000 60.000 99.1131 141.7241 -76.5518 0.6359 0.0000 35.5120 -0.0000 60.7510 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 1.0066 3.2150 4.7350 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.4000 54.272 7.000 123355.000 60.000 98.6993 141.9136 -76.1728 0.6359 0.0000 35.4320 -0.0000 60.5982 0.0001 0.0000 0.0000 0.0000 139.8770 -80.2460 0.0000 1.0107 3.2132 4.7750 4.3750 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3341
+# Center of Mass = -0.069081+/-0.002411
+# Full Width Half-Maximum = 0.198837+/-0.004450
+# 2:23:26 AM 6/26/2012 scan completed.
+
+2:23:26 AM 6/26/2012 Executing "ef 4.625"
+
+Setting the final energy to 4.625meV and the configuration to "Fixed Ef".
+
+
+2:23:26 AM 6/26/2012 Executing "scantitle "Instrument resolution at E=4.625 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=4.625 meV, guide-M-open-S-Be-80-A-open-D
+
+
+2:23:26 AM 6/26/2012 Executing "scan q 1.5 e -0.5 0.5 0.05 preset mcu 60"
+
+
+# scan = 133
+# date = 6/26/2012
+# time = 2:23:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.625 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 57.497 6.000 123355.000 60.000 106.1934 138.4195 -83.1610 0.6359 0.0000 36.7840 -0.0000 62.0998 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.8842 3.2580 4.1250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 57.553 4.000 123355.000 60.000 105.5532 138.7241 -82.5518 0.6359 0.0000 36.6760 -0.0000 61.9130 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.8899 3.2563 4.1750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 57.268 5.000 123355.000 60.000 104.9206 139.0219 -81.9562 0.6359 0.0000 36.5680 -0.0000 61.7270 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.8956 3.2547 4.2250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 56.915 16.000 123355.000 60.000 104.3186 139.3132 -81.3737 0.6359 0.0000 36.4640 -0.0000 61.5418 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9013 3.2530 4.2750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 56.678 48.000 123355.000 60.000 103.7008 139.5981 -80.8038 0.6359 0.0000 36.3560 -0.0000 61.3574 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9070 3.2512 4.3250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 56.595 122.000 123355.000 60.000 103.1127 139.8770 -80.2460 0.6359 0.0000 36.2520 -0.0000 61.1738 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9126 3.2495 4.3750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 56.389 334.000 123355.000 60.000 102.5312 140.1500 -79.7000 0.6359 0.0000 36.1480 -0.0000 60.9908 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9182 3.2477 4.4250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 56.022 507.000 123355.000 60.000 101.9562 140.4174 -79.1652 0.6359 0.0000 36.0440 -0.0000 60.8086 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9238 3.2459 4.4750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 55.626 551.000 123355.000 60.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 -0.0000 60.6272 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9293 3.2441 4.5250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 55.420 608.000 123355.000 60.000 100.8254 140.9360 -78.1279 0.6359 0.0000 35.8360 -0.0000 60.4464 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6247 0.0000 0.9348 3.2423 4.5750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 55.306 479.000 123355.000 60.000 100.2907 141.1876 -77.6247 0.6359 0.0000 35.7360 -0.0000 60.2663 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9403 3.2404 4.6250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 55.179 235.000 123355.000 60.000 99.7405 141.4344 -77.1313 0.6359 0.0000 35.6320 -0.0000 60.0868 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9457 3.2385 4.6750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 54.697 96.000 123355.000 60.000 99.2172 141.6763 -76.6474 0.6359 0.0000 35.5320 -0.0000 59.9080 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9511 3.2366 4.7250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 54.588 30.000 123355.000 60.000 98.6993 141.9136 -76.1727 0.6359 0.0000 35.4320 -0.0000 59.7299 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9565 3.2346 4.7750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 54.679 11.000 123355.000 60.000 98.1868 142.1465 -75.7070 0.6359 0.0000 35.3320 -0.0000 59.5524 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9619 3.2327 4.8250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 55.199 9.000 123355.000 60.000 97.6795 142.3751 -75.2498 0.6359 0.0000 35.2320 -0.0000 59.3753 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9672 3.2307 4.8750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 57.259 8.000 123355.000 60.000 97.1775 142.5995 -74.8009 0.6359 0.0000 35.1320 -0.0000 59.1991 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9725 3.2287 4.9250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 58.685 8.000 123355.000 60.000 96.7005 142.8199 -74.3602 0.6359 0.0000 35.0360 -0.0000 59.0234 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9778 3.2266 4.9750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 59.829 5.000 123355.000 60.000 96.2085 143.0363 -73.9273 0.6359 0.0000 34.9360 -0.0000 58.8482 0.0001 0.0000 0.0000 0.0000 141.1877 -77.6248 0.0000 0.9830 3.2246 5.0250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 61.240 6.000 123355.000 60.000 95.7408 143.2490 -73.5021 0.6359 0.0000 34.8400 -0.0000 58.6736 0.0001 0.0000 0.0000 0.0000 141.1875 -77.6248 0.0000 0.9883 3.2225 5.0750 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 61.615 7.000 123355.000 60.000 95.2585 143.4579 -73.0841 0.6359 0.0000 34.7400 -0.0000 58.4996 0.0001 0.0000 0.0000 0.0000 141.1875 -77.6248 0.0000 0.9935 3.2204 5.1250 4.6250 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3095
+# Center of Mass = -0.078174+/-0.002824
+# Full Width Half-Maximum = 0.223320+/-0.005630
+# 2:47:26 AM 6/26/2012 scan completed.
+
+2:47:26 AM 6/26/2012 Executing "ef 4.875"
+
+Setting the final energy to 4.875meV and the configuration to "Fixed Ef".
+
+
+2:47:26 AM 6/26/2012 Executing "scantitle "Instrument resolution at E=4.875 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=4.875 meV, guide-M-open-S-Be-80-A-open-D
+
+
+2:47:26 AM 6/26/2012 Executing "scan q 1.5 e -0.5 0.5 0.05 preset mcu 60"
+
+
+# scan = 134
+# date = 6/26/2012
+# time = 2:47:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=4.875 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 55.959 9.000 123355.000 60.000 103.1127 139.8770 -80.2460 0.6359 0.0000 36.2520 -0.0000 60.2184 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8561 3.2655 4.3750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 55.965 9.000 123355.000 60.000 102.5312 140.1500 -79.7000 0.6359 0.0000 36.1480 -0.0000 60.0486 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8620 3.2640 4.4250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 55.948 15.000 123355.000 60.000 101.9562 140.4174 -79.1652 0.6359 0.0000 36.0440 -0.0000 59.8795 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8679 3.2624 4.4750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 55.789 23.000 123355.000 60.000 101.3877 140.6794 -78.6413 0.6359 0.0000 35.9400 -0.0000 59.7109 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8737 3.2609 4.5250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 55.344 95.000 123355.000 60.000 100.8254 140.9360 -78.1279 0.6359 0.0000 35.8360 -0.0000 59.5429 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8795 3.2593 4.5750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 55.088 210.000 123355.000 60.000 100.2907 141.1876 -77.6247 0.6359 0.0000 35.7360 -0.0000 59.3754 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8853 3.2577 4.6250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 54.939 427.000 123355.000 60.000 99.7405 141.4344 -77.1313 0.6359 0.0000 35.6320 -0.0000 59.2084 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8910 3.2560 4.6750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 54.928 573.000 123355.000 60.000 99.2172 141.6763 -76.6475 0.6359 0.0000 35.5320 -0.0000 59.0420 0.0001 0.0000 0.0000 0.0000 142.3751 -75.2498 0.0000 0.8967 3.2543 4.7250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 54.315 622.000 123355.000 60.000 98.6993 141.9136 -76.1727 0.6359 0.0000 35.4320 -0.0000 58.8761 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9024 3.2526 4.7750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 54.581 641.000 123355.000 60.000 98.1868 142.1465 -75.7069 0.6359 0.0000 35.3320 -0.0000 58.7107 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9080 3.2509 4.8250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 55.325 469.000 123355.000 60.000 97.6795 142.3751 -75.2498 0.6359 0.0000 35.2320 -0.0000 58.5458 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9136 3.2492 4.8750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 57.119 289.000 123355.000 60.000 97.1775 142.5995 -74.8010 0.6359 0.0000 35.1320 -0.0000 58.3813 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9192 3.2474 4.9250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 58.902 131.000 123355.000 60.000 96.7005 142.8199 -74.3602 0.6359 0.0000 35.0360 -0.0000 58.2173 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9247 3.2456 4.9750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 60.105 38.000 123355.000 60.000 96.2085 143.0363 -73.9273 0.6359 0.0000 34.9360 -0.0000 58.0537 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9302 3.2438 5.0250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 61.210 8.000 123355.000 60.000 95.7408 143.2490 -73.5020 0.6359 0.0000 34.8400 -0.0000 57.8907 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9357 3.2419 5.0750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 61.373 5.000 123355.000 60.000 95.2585 143.4579 -73.0842 0.6359 0.0000 34.7400 -0.0000 57.7280 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9412 3.2401 5.1250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 60.574 8.000 123355.000 60.000 94.8000 143.6633 -72.6735 0.6359 0.0000 34.6440 -0.0000 57.5658 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9466 3.2382 5.1750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 59.503 6.000 123355.000 60.000 94.3459 143.8652 -72.2697 0.6359 0.0000 34.5480 -0.0000 57.4040 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9520 3.2363 5.2250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 58.471 6.000 123355.000 60.000 93.8962 144.0636 -71.8727 0.6359 0.0000 34.4520 -0.0000 57.2426 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9574 3.2343 5.2750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 58.304 7.000 123355.000 60.000 93.4692 144.2588 -71.4824 0.6359 0.0000 34.3600 -0.0000 57.0817 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9627 3.2324 5.3250 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 58.149 5.000 123355.000 60.000 93.0277 144.4508 -71.0983 0.6359 0.0000 34.2640 -0.0000 56.9211 0.0001 0.0000 0.0000 0.0000 142.3750 -75.2498 0.0000 0.9681 3.2304 5.3750 4.8750 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3596
+# Center of Mass = -0.089141+/-0.002862
+# Full Width Half-Maximum = 0.232959+/-0.005087
+# 3:11:24 AM 6/26/2012 scan completed.
+
+3:11:24 AM 6/26/2012 Executing "ef 5"
+
+Setting the final energy to 5.000meV and the configuration to "Fixed Ef".
+
+
+3:11:24 AM 6/26/2012 Executing "scantitle "Instrument resolution at E=5.0 meV, guide-M-open-S-Be-80-A-open-D""
+
+Setting the scantitle to:
+Instrument resolution at E=5.0 meV, guide-M-open-S-Be-80-A-open-D
+
+
+3:11:24 AM 6/26/2012 Executing "scan q 1.5 e -0.5 0.5 0.05 preset mcu 60"
+
+
+# scan = 135
+# date = 6/26/2012
+# time = 3:11:24 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# builtin_command = scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Instrument resolution at E=5.0 meV, guide-M-open-S-Be-80-A-open-D
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+# ubmatrix = 0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB25Jun2012_34059PM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 60.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. q e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 h k l ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 -0.5000 55.297 4.000 123355.000 60.000 101.6712 140.5490 -78.9019 0.6359 0.0000 35.9920 -0.0000 59.3401 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8430 3.2687 4.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 2 1.5000 -0.4500 55.618 11.000 123355.000 60.000 101.1058 140.8084 -78.3833 0.6359 0.0000 35.8880 -0.0000 59.1780 0.0001 0.0000 0.0000 0.0000 142.9286 -74.1428 0.0000 0.8489 3.2672 4.5500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 3 1.5000 -0.4000 54.963 16.000 123355.000 60.000 100.5466 141.0625 -77.8751 0.6359 0.0000 35.7840 -0.0000 59.0164 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8549 3.2658 4.6000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 4 1.5000 -0.3500 54.590 43.000 123355.000 60.000 100.0148 141.3116 -77.3768 0.6359 0.0000 35.6840 -0.0000 58.8552 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8608 3.2643 4.6500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 5 1.5000 -0.3000 54.918 140.000 123355.000 60.000 99.4886 141.5559 -76.8882 0.6359 0.0000 35.5840 -0.0000 58.6945 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8666 3.2628 4.7000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 6 1.5000 -0.2500 54.550 293.000 123355.000 60.000 98.9472 141.7955 -76.4090 0.6359 0.0000 35.4800 -0.0000 58.5342 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8724 3.2612 4.7500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 7 1.5000 -0.2000 54.408 483.000 123355.000 60.000 98.4321 142.0306 -75.9388 0.6359 0.0000 35.3800 -0.0000 58.3744 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8782 3.2596 4.8000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 8 1.5000 -0.1500 54.971 630.000 123355.000 60.000 97.9224 142.2614 -75.4773 0.6359 0.0000 35.2800 -0.0000 58.2150 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8840 3.2580 4.8500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 9 1.5000 -0.1000 56.269 677.000 123355.000 60.000 97.4379 142.4878 -75.0243 0.6359 0.0000 35.1840 -0.0000 58.0560 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8897 3.2564 4.9000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 10 1.5000 -0.0500 58.282 591.000 123355.000 60.000 96.9384 142.7102 -74.5796 0.6359 0.0000 35.0840 -0.0000 57.8975 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.8954 3.2547 4.9500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 11 1.5000 0.0000 59.566 348.000 123355.000 60.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.0000 57.7393 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9010 3.2530 5.0000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 12 1.5000 0.0500 60.760 205.000 123355.000 60.000 95.9741 143.1431 -73.7138 0.6359 0.0000 34.8880 -0.0000 57.5816 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9067 3.2513 5.0500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 13 1.5000 0.1000 61.571 125.000 123355.000 60.000 95.5087 143.3539 -73.2922 0.6359 0.0000 34.7920 -0.0000 57.4242 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9123 3.2496 5.1000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 14 1.5000 0.1500 60.734 53.000 123355.000 60.000 95.0287 143.5610 -72.8779 0.6359 0.0000 34.6920 -0.0000 57.2673 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9178 3.2478 5.1500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 15 1.5000 0.2000 60.289 14.000 123355.000 60.000 94.5724 143.7646 -72.4707 0.6359 0.0000 34.5960 -0.0000 57.1107 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9234 3.2461 5.2000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 16 1.5000 0.2500 59.073 8.000 123355.000 60.000 94.1205 143.9648 -72.0704 0.6359 0.0000 34.5000 -0.0000 56.9544 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9289 3.2442 5.2500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 17 1.5000 0.3000 58.292 5.000 123355.000 60.000 93.6729 144.1616 -71.6767 0.6359 0.0000 34.4040 -0.0000 56.7986 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9344 3.2424 5.3000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 18 1.5000 0.3500 58.778 4.000 123355.000 60.000 93.2479 144.3552 -71.2896 0.6359 0.0000 34.3120 -0.0000 56.6431 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9398 3.2405 5.3500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 19 1.5000 0.4000 58.422 3.000 123355.000 60.000 92.8086 144.5457 -70.9087 0.6359 0.0000 34.2160 -0.0000 56.4880 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9452 3.2387 5.4000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 20 1.5000 0.4500 58.480 6.000 123355.000 60.000 92.3733 144.7330 -70.5339 0.6359 0.0000 34.1200 -0.0000 56.3332 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9506 3.2368 5.4500 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+ 21 1.5000 0.5000 58.381 3.000 123355.000 60.000 91.9600 144.9174 -70.1651 0.6359 0.0000 34.0280 -0.0000 56.1787 0.0001 0.0000 0.0000 0.0000 142.9285 -74.1428 0.0000 0.9560 3.2348 5.5000 5.0000 0.0000 0.0000 0.0000 0.0000 0.000
+# Sum of Counts = 3662
+# Center of Mass = -0.106008+/-0.003141
+# Full Width Half-Maximum = 0.233600+/-0.004858
+# 3:35:32 AM 6/26/2012 scan completed.
+
+3:35:32 AM 6/26/2012 Executing "drive e 0 s2 70"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 70.00000
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+9:16:25 AM 6/26/2012 Executing "initialize"
+ Derived from "init"
+
+Reinitializing experiment ... Completed initialization.
+
+
+9:17:01 AM 6/26/2012 Executing "calc ei 4.89"
+
+Calculating motor positions based on:
+ei=4.89000
+
+Resulting calculated motor positions:
+m2=-75.11425 m1=142.44287 mfocus=35.20199
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+9:19:03 AM 6/26/2012 Executing "calc ef 2.8"
+
+Calculating motor positions based on:
+ef=2.80000
+
+Resulting calculated motor positions:
+a2=-107.32457 a1=126.33771
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+9:19:27 AM 6/26/2012 Executing "calc ef 2.837"
+
+Calculating motor positions based on:
+ef=2.83700
+
+Resulting calculated motor positions:
+a2=-106.31146 a1=126.84427
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+9:27:56 AM 6/26/2012 Executing "calc ei 4.9"
+
+Calculating motor positions based on:
+ei=4.90000
+
+Resulting calculated motor positions:
+m2=-75.02432 m1=142.48784 mfocus=35.18217
+
+NOTE: Any values not explicitly specified will be read from the current motor positions.
+
+
+9:34:54 AM 6/26/2012 Executing "zero a1 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ a1 a1 0.0000 0.0000
+
+
+
+9:34:56 AM 6/26/2012 Executing "zero a2 0"
+
+Setting the following motor zeros:
+ Motor Name Motor Alias Zero Previous Zero
+ a2 a2 0.0000 0.0000
+
+
+
+9:35:36 AM 6/26/2012 Executing "method a1 set_motor_position d 142.48784+@(a1.zero)"
+ Derived from "spos a1 142.48784"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+9:35:47 AM 6/26/2012 Executing "method a2 set_motor_position d -75.02432+@(a2.zero)"
+ Derived from "spos a2 -75.02432"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+9:35:55 AM 6/26/2012 Executing "ef 5"
+
+Setting the final energy to 5.000meV and the configuration to "Fixed Ef".
+
+
+9:35:59 AM 6/26/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+9:38:23 AM 6/26/2012 Executing "lattice 4.550000 4.550000 11.837000 90.000000 90.000000 120.000000"
+
+
+Changing lattice constants to:
+a=4.550000 b=4.550000 c=11.83700
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+9:38:39 AM 6/26/2012 Executing "drive s2 61.67"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 61.67000
+
+Drive completed.
+
+
+9:39:27 AM 6/26/2012 Executing "drive s1 40"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 40.00000
+
+Drive aborted!!
+
+Final Motor Positions:
+motor position
+s1 36.15620
+
+
+Abort issued!!
+
+9:39:49 AM 6/26/2012 Executing "drive s1 25"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 25.00000
+
+Drive completed.
+
+
+9:39:58 AM 6/26/2012 Executing "drive s1 20"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 20.00000
+
+Drive completed.
+
+
+9:40:02 AM 6/26/2012 Executing "drive s1 22"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 22.00000
+
+Drive completed.
+
+
+9:40:29 AM 6/26/2012 Executing "scantitle "Bi alignment at 50 K (003)""
+
+Setting the scantitle to:
+Bi alignment at 50 K (003)
+
+
+9:40:36 AM 6/26/2012 Executing "preset time 1"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 1.000000
+
+
+9:40:40 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 136
+# date = 6/26/2012
+# time = 9:40:40 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 21.0000 1.000 672.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0872 -0.1938 2.9572 5.0000 5.0000 0.0000 49.9980 49.9130 0.0000 0.0000 50.000
+ 2 21.1000 1.000 985.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0883 -0.1958 2.9563 5.0000 5.0000 0.0000 49.9980 49.8270 0.0000 0.0000 50.000
+ 3 21.2000 1.000 1402.000 2057.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0894 -0.1978 2.9554 5.0000 5.0000 0.0000 50.0000 49.9190 0.0000 0.0000 50.000
+ 4 21.3000 1.000 1895.000 2085.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0904 -0.1998 2.9545 5.0000 5.0000 0.0000 49.9990 49.8580 0.0000 0.0000 50.000
+ 5 21.4000 1.000 2956.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0915 -0.2017 2.9536 5.0000 5.0000 0.0000 49.9960 49.9670 0.0000 0.0000 50.000
+ 6 21.5000 1.000 5124.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0925 -0.2037 2.9527 5.0000 5.0000 0.0000 49.9990 49.8850 0.0000 0.0000 50.000
+ 7 21.6000 1.000 10543.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0936 -0.2057 2.9517 5.0000 5.0000 0.0000 50.0050 49.8200 0.0000 0.0000 50.000
+ 8 21.7000 1.000 25550.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0946 -0.2077 2.9508 5.0000 5.0000 0.0000 50.0010 49.8650 0.0000 0.0000 50.000
+ 9 21.8000 1.000 57103.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0957 -0.2097 2.9499 5.0000 5.0000 0.0000 49.9980 49.8150 0.0000 0.0000 50.000
+ 10 21.9000 1.000 91596.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0967 -0.2116 2.9489 5.0000 5.0000 0.0000 50.0000 49.9440 0.0000 0.0000 50.000
+ 11 22.0000 1.000 109024.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0978 -0.2136 2.9479 5.0000 5.0000 0.0000 49.9980 49.9680 0.0000 0.0000 50.000
+ 12 22.1000 1.000 106691.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0988 -0.2156 2.9470 5.0000 5.0000 0.0000 49.9980 49.8580 0.0000 0.0000 50.000
+ 13 22.2000 1.000 85040.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.0999 -0.2176 2.9460 5.0000 5.0000 0.0000 49.9980 49.8860 0.0000 0.0000 50.000
+ 14 22.3000 1.000 51101.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1009 -0.2195 2.9450 5.0000 5.0000 0.0000 50.0000 49.8240 0.0000 0.0000 50.000
+ 15 22.4000 1.000 23513.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1020 -0.2215 2.9440 5.0000 5.0000 0.0000 49.9980 49.8190 0.0000 0.0000 50.000
+ 16 22.5000 1.000 9783.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1030 -0.2235 2.9430 5.0000 5.0000 0.0000 50.0000 49.8530 0.0000 0.0000 50.000
+ 17 22.6000 1.000 4438.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1041 -0.2255 2.9420 5.0000 5.0000 0.0000 50.0020 49.8340 0.0000 0.0000 50.000
+ 18 22.7000 1.000 2361.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1051 -0.2274 2.9410 5.0000 5.0000 0.0000 49.9980 49.8480 0.0000 0.0000 50.000
+ 19 22.8000 1.000 1430.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1062 -0.2294 2.9399 5.0000 5.0000 0.0000 49.9990 49.8020 0.0000 0.0000 50.000
+ 20 22.9000 1.000 1008.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1073 -0.2314 2.9389 5.0000 5.0000 0.0000 49.9990 49.8390 0.0000 0.0000 50.000
+ 21 23.0000 1.000 746.000 2134.000 1.038 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1083 -0.2333 2.9378 5.0000 5.0000 0.0000 49.9980 49.8500 0.0000 0.0000 50.000
+# Sum of Counts = 592961
+# Center of Mass = 22.039821+/-0.040478
+# Full Width Half-Maximum = 0.467470+/-0.018391
+# 9:41:13 AM 6/26/2012 scan completed.
+
+9:41:13 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 22.00000
+
+Drive completed.
+
+
+9:41:19 AM 6/26/2012 Executing "drive s1 22"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 22.00000
+
+Drive completed.
+
+
+9:42:48 AM 6/26/2012 Executing "drive s1 28"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 28.00000
+
+Drive completed.
+
+
+9:42:57 AM 6/26/2012 Executing "drive s1 32"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.00000
+
+Drive completed.
+
+
+9:43:02 AM 6/26/2012 Executing "drive s1 35"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 35.00000
+
+Drive completed.
+
+
+9:43:06 AM 6/26/2012 Executing "drive s1 40"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 40.00000
+
+Drive completed.
+
+
+9:43:12 AM 6/26/2012 Executing "drive s1 41"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 41.00000
+
+Drive completed.
+
+
+9:44:08 AM 6/26/2012 Executing "drive s1 38"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 38.00000
+
+Drive completed.
+
+
+9:44:12 AM 6/26/2012 Executing "drive s1 35"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 35.00000
+
+Drive completed.
+
+
+9:44:17 AM 6/26/2012 Executing "drive s1 30"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 30.00000
+
+Drive completed.
+
+
+9:44:22 AM 6/26/2012 Executing "drive s1 32"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 32.00000
+
+Drive completed.
+
+
+9:44:26 AM 6/26/2012 Executing "drive s1 31"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.00000
+
+Drive completed.
+
+
+9:44:32 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 137
+# date = 6/26/2012
+# time = 9:44:32 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.0000 1.000 588.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1808 -0.3691 2.8421 5.0000 5.0000 0.0000 50.0040 49.7290 0.0000 0.0000 50.000
+ 2 30.1000 1.000 821.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1818 -0.3710 2.8404 5.0000 5.0000 0.0000 49.9980 49.8300 0.0000 0.0000 50.000
+ 3 30.2000 1.000 1071.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1828 -0.3729 2.8387 5.0000 5.0000 0.0000 50.0000 49.8140 0.0000 0.0000 50.000
+ 4 30.3000 1.000 1590.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1839 -0.3748 2.8370 5.0000 5.0000 0.0000 50.0030 49.8900 0.0000 0.0000 50.000
+ 5 30.4000 1.000 2264.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1849 -0.3768 2.8353 5.0000 5.0000 0.0000 49.9980 49.8280 0.0000 0.0000 50.000
+ 6 30.5000 1.000 3597.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1859 -0.3787 2.8336 5.0000 5.0000 0.0000 50.0020 49.8690 0.0000 0.0000 50.000
+ 7 30.6000 1.000 6700.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1869 -0.3806 2.8319 5.0000 5.0000 0.0000 50.0010 49.7940 0.0000 0.0000 50.000
+ 8 30.7000 1.000 15141.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1879 -0.3824 2.8302 5.0000 5.0000 0.0000 50.0030 49.8740 0.0000 0.0000 50.000
+ 9 30.8000 1.000 37129.000 2144.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1889 -0.3843 2.8284 5.0000 5.0000 0.0000 50.0020 49.7940 0.0000 0.0000 50.000
+ 10 30.9000 1.000 72426.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1900 -0.3862 2.8267 5.0000 5.0000 0.0000 50.0040 49.7430 0.0000 0.0000 50.000
+ 11 31.0000 1.000 101082.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1910 -0.3881 2.8249 5.0000 5.0000 0.0000 50.0020 49.7840 0.0000 0.0000 50.000
+ 12 31.1000 1.000 109917.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1920 -0.3900 2.8232 5.0000 5.0000 0.0000 50.0010 49.8040 0.0000 0.0000 50.000
+ 13 31.2000 1.000 99139.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1930 -0.3919 2.8214 5.0000 5.0000 0.0000 50.0000 49.7960 0.0000 0.0000 50.000
+ 14 31.3000 1.000 70027.000 2165.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1940 -0.3938 2.8196 5.0000 5.0000 0.0000 50.0020 49.8510 0.0000 0.0000 50.000
+ 15 31.4000 1.000 37247.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1950 -0.3957 2.8178 5.0000 5.0000 0.0000 50.0010 49.8390 0.0000 0.0000 50.000
+ 16 31.5000 1.000 15932.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1960 -0.3976 2.8160 5.0000 5.0000 0.0000 49.9990 49.9100 0.0000 0.0000 50.000
+ 17 31.6000 1.000 6849.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1970 -0.3995 2.8142 5.0000 5.0000 0.0000 50.0010 49.8280 0.0000 0.0000 50.000
+ 18 31.7000 1.000 3399.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1981 -0.4014 2.8124 5.0000 5.0000 0.0000 50.0010 49.8460 0.0000 0.0000 50.000
+ 19 31.8000 1.000 1953.000 2091.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1991 -0.4032 2.8106 5.0000 5.0000 0.0000 50.0050 49.8420 0.0000 0.0000 50.000
+ 20 31.9000 1.000 1235.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.2001 -0.4051 2.8087 5.0000 5.0000 0.0000 50.0030 49.8700 0.0000 0.0000 50.000
+ 21 32.0000 1.000 822.000 2076.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 0.0001 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.2011 -0.4070 2.8069 5.0000 5.0000 0.0000 50.0050 49.9440 0.0000 0.0000 50.000
+# Sum of Counts = 588929
+# Center of Mass = 31.095653+/-0.057305
+# Full Width Half-Maximum = 0.467661+/-0.025984
+# 9:45:06 AM 6/26/2012 scan completed.
+
+9:45:06 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.00000
+
+Drive completed.
+
+
+9:45:13 AM 6/26/2012 Executing "drive s1 31.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.10000
+
+Drive completed.
+
+
+9:45:25 AM 6/26/2012 Executing "drive sgl -4"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -4.00000
+
+Drive completed.
+
+
+9:45:42 AM 6/26/2012 Executing "scan sgl -4 0 0.5"
+
+
+# scan = 138
+# date = 6/26/2012
+# time = 9:45:42 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan sgl -4 0 0.5
+# builtin_command = scan sgl -4 0 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 94671.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1233 -0.3919 2.8130 5.0000 5.0000 0.0000 50.0040 49.8660 0.0000 0.0000 50.000
+ 2 -3.5000 1.000 104176.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1319 -0.3918 2.8150 5.0000 5.0000 0.0000 50.0080 49.8010 0.0000 0.0000 50.000
+ 3 -3.0000 1.000 113295.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1406 -0.3916 2.8168 5.0000 5.0000 0.0000 50.0030 49.8580 0.0000 0.0000 50.000
+ 4 -2.5000 1.000 119295.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1492 -0.3914 2.8184 5.0000 5.0000 0.0000 49.9980 49.8200 0.0000 0.0000 50.000
+ 5 -2.0000 1.000 122392.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1577 -0.3912 2.8198 5.0000 5.0000 0.0000 50.0040 49.8530 0.0000 0.0000 50.000
+ 6 -1.5000 1.000 122867.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1663 -0.3910 2.8210 5.0000 5.0000 0.0000 50.0100 49.9050 0.0000 0.0000 50.000
+ 7 -1.0000 1.000 120862.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1749 -0.3907 2.8219 5.0000 5.0000 0.0000 49.9940 49.8420 0.0000 0.0000 50.000
+ 8 -0.5000 1.000 116244.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1834 -0.3904 2.8226 5.0000 5.0000 0.0000 50.0010 49.8930 0.0000 0.0000 50.000
+ 9 0.0000 1.000 109294.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1000 61.6700 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1920 -0.3900 2.8232 5.0000 5.0000 0.0000 50.0060 49.8730 0.0000 0.0000 50.000
+# Sum of Counts = 1023096
+# Center of Mass = -1.944579+/-0.002987
+# Full Width Half-Maximum = 2.503729+/-0.002846
+# 9:46:15 AM 6/26/2012 scan completed.
+
+9:46:39 AM 6/26/2012 Executing "drive sgl -1.633"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl -1.63300
+
+Drive completed.
+
+
+9:46:45 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 139
+# date = 6/26/2012
+# time = 9:46:45 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.1000 1.000 987.000 1978.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1539 -0.3720 2.8379 5.0000 5.0000 0.0000 49.9910 49.9250 0.0000 0.0000 50.000
+ 2 30.2000 1.000 1299.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1549 -0.3739 2.8362 5.0000 5.0000 0.0000 49.9960 49.8990 0.0000 0.0000 50.000
+ 3 30.3000 1.000 1863.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1559 -0.3758 2.8346 5.0000 5.0000 0.0000 50.0010 49.8170 0.0000 0.0000 50.000
+ 4 30.4000 1.000 2837.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1569 -0.3777 2.8328 5.0000 5.0000 0.0000 50.0000 49.8670 0.0000 0.0000 50.000
+ 5 30.5000 1.000 4663.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1580 -0.3796 2.8311 5.0000 5.0000 0.0000 49.9970 49.8580 0.0000 0.0000 50.000
+ 6 30.6000 1.000 8970.000 1982.000 0.964 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1590 -0.3815 2.8294 5.0000 5.0000 0.0000 49.9970 49.8060 0.0000 0.0000 50.000
+ 7 30.7000 1.000 20815.000 2034.000 0.989 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1600 -0.3834 2.8277 5.0000 5.0000 0.0000 50.0020 49.8350 0.0000 0.0000 50.000
+ 8 30.8000 1.000 48750.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1610 -0.3853 2.8259 5.0000 5.0000 0.0000 49.9960 49.8360 0.0000 0.0000 50.000
+ 9 30.9000 1.000 88748.000 2148.000 1.045 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1620 -0.3872 2.8242 5.0000 5.0000 0.0000 49.9970 49.8440 0.0000 0.0000 50.000
+ 10 31.0000 1.000 115307.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1630 -0.3891 2.8224 5.0000 5.0000 0.0000 49.9930 49.8340 0.0000 0.0000 50.000
+ 11 31.1000 1.000 123070.000 2116.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1640 -0.3910 2.8207 5.0000 5.0000 0.0000 49.9950 49.8620 0.0000 0.0000 50.000
+ 12 31.2000 1.000 110045.000 1977.000 0.962 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1651 -0.3929 2.8189 5.0000 5.0000 0.0000 49.9940 49.9070 0.0000 0.0000 50.000
+ 13 31.3000 1.000 77146.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1661 -0.3948 2.8171 5.0000 5.0000 0.0000 49.9970 49.8450 0.0000 0.0000 50.000
+ 14 31.4000 1.000 40343.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1671 -0.3967 2.8153 5.0000 5.0000 0.0000 49.9950 49.9010 0.0000 0.0000 50.000
+ 15 31.5000 1.000 17972.000 2011.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1681 -0.3986 2.8135 5.0000 5.0000 0.0000 49.9960 49.8250 0.0000 0.0000 50.000
+ 16 31.6000 1.000 7909.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1691 -0.4005 2.8117 5.0000 5.0000 0.0000 49.9980 49.8230 0.0000 0.0000 50.000
+ 17 31.7000 1.000 3798.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1701 -0.4024 2.8099 5.0000 5.0000 0.0000 49.9970 49.8650 0.0000 0.0000 50.000
+ 18 31.8000 1.000 2230.000 2127.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1711 -0.4042 2.8081 5.0000 5.0000 0.0000 49.9990 49.8280 0.0000 0.0000 50.000
+ 19 31.9000 1.000 1342.000 2129.000 1.036 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1721 -0.4061 2.8062 5.0000 5.0000 0.0000 49.9970 49.8550 0.0000 0.0000 50.000
+ 20 32.0000 1.000 964.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1731 -0.4080 2.8044 5.0000 5.0000 0.0000 50.0000 49.9680 0.0000 0.0000 50.000
+ 21 32.1000 1.000 690.000 2060.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.6700 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1741 -0.4099 2.8026 5.0000 5.0000 0.0000 49.9940 49.8970 0.0000 0.0000 50.000
+# Sum of Counts = 679748
+# Center of Mass = 31.086766+/-0.053324
+# Full Width Half-Maximum = 0.474766+/-0.024204
+# 9:47:20 AM 6/26/2012 scan completed.
+
+9:47:20 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.10000
+
+Drive completed.
+
+
+9:47:35 AM 6/26/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 140
+# date = 6/26/2012
+# time = 9:47:35 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.6700 30.1000 1.000 5.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5456 0.1592 -0.3795 2.7378 5.0000 5.0000 0.0000 49.9950 49.8150 0.0000 0.0000 50.000
+ 2 59.8700 30.2000 1.000 23.000 2041.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5503 0.1597 -0.3807 2.7461 5.0000 5.0000 0.0000 50.0050 49.8620 0.0000 0.0000 50.000
+ 3 60.0700 30.3000 1.000 33.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5550 0.1602 -0.3818 2.7544 5.0000 5.0000 0.0000 49.9980 49.9570 0.0000 0.0000 50.000
+ 4 60.2700 30.4000 1.000 47.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5597 0.1607 -0.3830 2.7627 5.0000 5.0000 0.0000 49.9990 49.8400 0.0000 0.0000 50.000
+ 5 60.4700 30.5000 1.000 153.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5644 0.1612 -0.3841 2.7710 5.0000 5.0000 0.0000 50.0000 49.8480 0.0000 0.0000 50.000
+ 6 60.6700 30.6000 1.000 906.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5691 0.1616 -0.3853 2.7793 5.0000 5.0000 0.0000 49.9960 49.8720 0.0000 0.0000 50.000
+ 7 60.8700 30.7000 1.000 4567.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5738 0.1621 -0.3864 2.7876 5.0000 5.0000 0.0000 50.0010 49.8780 0.0000 0.0000 50.000
+ 8 61.0700 30.8000 1.000 17848.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5784 0.1626 -0.3876 2.7959 5.0000 5.0000 0.0000 49.9990 49.9250 0.0000 0.0000 50.000
+ 9 61.2700 30.9000 1.000 51644.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5831 0.1631 -0.3887 2.8042 5.0000 5.0000 0.0000 49.9960 49.6860 0.0000 0.0000 50.000
+ 10 61.4700 31.0000 1.000 96118.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5878 0.1636 -0.3899 2.8124 5.0000 5.0000 0.0000 50.0010 49.8060 0.0000 0.0000 50.000
+ 11 61.6700 31.1000 1.000 121903.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5924 0.1640 -0.3910 2.8207 5.0000 5.0000 0.0000 49.9970 49.9510 0.0000 0.0000 50.000
+ 12 61.8700 31.2000 1.000 120563.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5971 0.1645 -0.3922 2.8289 5.0000 5.0000 0.0000 50.0010 49.9340 0.0000 0.0000 50.000
+ 13 62.0700 31.3000 1.000 87862.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6017 0.1650 -0.3933 2.8372 5.0000 5.0000 0.0000 49.9990 49.9170 0.0000 0.0000 50.000
+ 14 62.2700 31.4000 1.000 40674.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6064 0.1655 -0.3944 2.8454 5.0000 5.0000 0.0000 49.9980 49.9350 0.0000 0.0000 50.000
+ 15 62.4700 31.5000 1.000 12346.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6110 0.1660 -0.3956 2.8536 5.0000 5.0000 0.0000 50.0010 49.8640 0.0000 0.0000 50.000
+ 16 62.6700 31.6000 1.000 2752.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6156 0.1664 -0.3967 2.8618 5.0000 5.0000 0.0000 50.0030 49.8540 0.0000 0.0000 50.000
+ 17 62.8700 31.7000 1.000 501.000 2035.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6203 0.1669 -0.3979 2.8700 5.0000 5.0000 0.0000 49.9970 49.8610 0.0000 0.0000 50.000
+ 18 63.0700 31.8000 1.000 134.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6249 0.1674 -0.3990 2.8782 5.0000 5.0000 0.0000 50.0010 49.7940 0.0000 0.0000 50.000
+ 19 63.2700 31.9000 1.000 36.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6295 0.1679 -0.4001 2.8864 5.0000 5.0000 0.0000 49.9970 49.7310 0.0000 0.0000 50.000
+ 20 63.4700 32.0000 1.000 15.000 2092.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6341 0.1683 -0.4013 2.8945 5.0000 5.0000 0.0000 49.9980 49.8410 0.0000 0.0000 50.000
+ 21 63.6700 32.1000 1.000 20.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.6387 0.1688 -0.4024 2.9027 5.0000 5.0000 0.0000 50.0020 49.8680 0.0000 0.0000 50.000
+# Sum of Counts = 558150
+# Center of Mass = 61.744713+/-0.116881
+# Full Width Half-Maximum = 0.683139+/-0.068623
+# 9:48:27 AM 6/26/2012 scan completed.
+
+9:48:27 AM 6/26/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.13736
+s2 61.74471
+
+Drive completed.
+
+
+9:49:18 AM 6/26/2012 Executing "drive s2 61.7444 s1 31.1372"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 61.74440
+s1 31.13720
+
+Drive completed.
+
+
+9:49:21 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 141
+# date = 6/26/2012
+# time = 9:49:21 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+# ubmatrix = 0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+# mode = 0
+# plane_normal = -0.000000,0.000000,1.000000
+# ubconf = UB26Jun2012_93823AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.1372 1.000 1030.000 2030.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1541 -0.3724 2.8410 5.0000 5.0000 0.0000 49.9980 49.8730 0.0000 0.0000 50.000
+ 2 30.2372 1.000 1519.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1551 -0.3743 2.8393 5.0000 5.0000 0.0000 50.0020 49.8480 0.0000 0.0000 50.000
+ 3 30.3372 1.000 2113.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1561 -0.3762 2.8376 5.0000 5.0000 0.0000 49.9980 49.9050 0.0000 0.0000 50.000
+ 4 30.4372 1.000 3072.000 2066.000 1.005 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1571 -0.3782 2.8359 5.0000 5.0000 0.0000 49.9990 49.8350 0.0000 0.0000 50.000
+ 5 30.5372 1.000 5081.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1581 -0.3801 2.8342 5.0000 5.0000 0.0000 49.9980 49.8730 0.0000 0.0000 50.000
+ 6 30.6372 1.000 10023.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1591 -0.3820 2.8325 5.0000 5.0000 0.0000 49.9970 49.8550 0.0000 0.0000 50.000
+ 7 30.7372 1.000 23131.000 2016.000 0.981 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1602 -0.3839 2.8308 5.0000 5.0000 0.0000 49.9980 49.9780 0.0000 0.0000 50.000
+ 8 30.8372 1.000 53257.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1612 -0.3858 2.8290 5.0000 5.0000 0.0000 50.0050 49.7830 0.0000 0.0000 50.000
+ 9 30.9372 1.000 93377.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1622 -0.3877 2.8273 5.0000 5.0000 0.0000 49.9970 49.8410 0.0000 0.0000 50.000
+ 10 31.0372 1.000 119666.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1632 -0.3895 2.8255 5.0000 5.0000 0.0000 49.9980 49.8150 0.0000 0.0000 50.000
+ 11 31.1372 1.000 124201.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1642 -0.3914 2.8237 5.0000 5.0000 0.0000 50.0000 49.7850 0.0000 0.0000 50.000
+ 12 31.2372 1.000 109715.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1652 -0.3933 2.8220 5.0000 5.0000 0.0000 49.9960 49.7910 0.0000 0.0000 50.000
+ 13 31.3372 1.000 74588.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1662 -0.3952 2.8202 5.0000 5.0000 0.0000 49.9990 49.8680 0.0000 0.0000 50.000
+ 14 31.4372 1.000 37550.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1673 -0.3971 2.8184 5.0000 5.0000 0.0000 50.0000 49.8580 0.0000 0.0000 50.000
+ 15 31.5372 1.000 16722.000 2131.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1683 -0.3990 2.8166 5.0000 5.0000 0.0000 49.9970 49.8260 0.0000 0.0000 50.000
+ 16 31.6372 1.000 7310.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1693 -0.4009 2.8148 5.0000 5.0000 0.0000 50.0010 49.8160 0.0000 0.0000 50.000
+ 17 31.7372 1.000 3612.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1703 -0.4028 2.8130 5.0000 5.0000 0.0000 50.0000 49.8240 0.0000 0.0000 50.000
+ 18 31.8372 1.000 2075.000 2111.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1713 -0.4047 2.8111 5.0000 5.0000 0.0000 50.0000 49.8380 0.0000 0.0000 50.000
+ 19 31.9372 1.000 1370.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1723 -0.4066 2.8093 5.0000 5.0000 0.0000 50.0010 49.8230 0.0000 0.0000 50.000
+ 20 32.0372 1.000 985.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1733 -0.4084 2.8075 5.0000 5.0000 0.0000 49.9960 49.8490 0.0000 0.0000 50.000
+ 21 32.1372 1.000 706.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7444 -1.6330 0.0000 -1.5000 1.3000 142.9286 -74.1428 1.5942 0.1743 -0.4103 2.8056 5.0000 5.0000 0.0000 50.0000 49.9240 0.0000 0.0000 50.000
+# Sum of Counts = 691103
+# Center of Mass = 31.113523+/-0.052930
+# Full Width Half-Maximum = 0.476033+/-0.023930
+# 9:49:55 AM 6/26/2012 scan completed.
+
+9:49:55 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.13720
+
+Drive completed.
+
+
+9:50:20 AM 6/26/2012 Executing "drive s1 31.115"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.11500
+
+Drive completed.
+
+
+9:50:27 AM 6/26/2012 Executing "lattice a 4.550000 b 4.550000 c 11.824179"
+
+
+Changing the lattice constants "a=4.550000,b=4.550000,c=11.824179".
+The lattice constants will be changed to:
+a=4.550000 b=4.550000 c=11.82417
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+9:50:40 AM 6/26/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95038AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95038AM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=0.000 k1=0.000 l1=1.000 h2=0.000 k2=1.000 l2=0.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.7444 s2=31.1150 s1=-1.6330 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8242 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.7444 31.1150 -1.6330 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0164 0.1483 1.4954 61.7444 31.1150 -1.6330 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB26Jun2012_95040AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB26Jun2012_95040AM.ini
+
+
+9:50:56 AM 6/26/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+SPICE Warning in drive command: Tue, Jun 26, 2012 [9:50:56 AM] : SPICE Warning in Devices.lvlib:Common_Converter.lvlib:PseudoToRealNew.vi.
+
+Q is not in the specified scattering plane
+
+..Move aborted.
+
+
+9:51:14 AM 6/26/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95113AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95113AM.ini".
+
+The UB matrix was successfully generated using:
+
+Scattering plane specified by:
+ h1=1.000 k1=0.000 l1=0.000 h2=0.000 k2=0.000 l2=1.000
+the single peak position:
+h=0.0000 k=0.0000 l=3.0000 a1=61.7444 s2=31.1150 s1=-1.6330 sgl=0.0000 Ei=5.0000 Ef=5.0000
+
+and the following lattice parameters:
+a=4.5500 b=4.5500 c=11.8242 alpha=90.0000 beta=90.0000 gamma=120.0000
+
+Results of the new UB matrix:
+
+Peak position as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 0.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.7444 31.1150 -1.6330 0.0000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.1648 0.0164 1.4954 61.7444 31.1150 -1.6330 0.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB26Jun2012_95114AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB26Jun2012_95114AM.ini
+
+
+9:51:17 AM 6/26/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.63605
+s1 62.43754
+sgl -1.63299
+sgu 0.00002
+mfocus 34.98513
+
+Drive completed.
+
+
+9:51:46 AM 6/26/2012 Executing "scan sgu @(sgu)+-3 @(sgu)+3 0.500000"
+ Derived from "scanrel sgu -3 3 0.5"
+
+
+# scan = 142
+# date = 6/26/2012
+# time = 9:51:46 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel sgu -3 3 0.5
+# builtin_command = scan sgu @(sgu)+-3 @(sgu)+3 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (003)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+# ubmatrix = 0.001075,-0.005726,-0.084537,0.253778,0.126889,0.000358,-0.000031,-0.219706,0.002410
+# mode = 0
+# plane_normal = 0.028497,0.000000,0.999594
+# ubconf = UB26Jun2012_95114AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -3.0000 1.000 10849.000 2164.000 1.053 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5135 -0.0303 2.0022 5.0000 5.0000 0.0000 49.9950 49.8340 0.0000 0.0000 50.000
+ 2 -2.5000 1.000 11333.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5113 -0.0253 2.0019 5.0000 5.0000 0.0000 50.0010 49.8520 0.0000 0.0000 50.000
+ 3 -2.0000 1.000 11970.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5092 -0.0202 2.0015 5.0000 5.0000 0.0000 50.0060 49.8920 0.0000 0.0000 50.000
+ 4 -1.5000 1.000 12288.000 2032.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5069 -0.0152 2.0011 5.0000 5.0000 0.0000 50.0050 49.9840 0.0000 0.0000 50.000
+ 5 -1.0000 1.000 12752.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5047 -0.0101 2.0007 5.0000 5.0000 0.0000 50.0040 49.8330 0.0000 0.0000 50.000
+ 6 -0.5000 1.000 13339.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5023 -0.0051 2.0004 5.0000 5.0000 0.0000 50.0030 49.8630 0.0000 0.0000 50.000
+ 7 0.0000 1.000 14336.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 50.0010 49.9700 0.0000 0.0000 50.000
+ 8 0.5000 1.000 14846.000 1972.000 0.959 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4976 0.0051 1.9996 5.0000 5.0000 0.0000 50.0000 49.8730 0.0000 0.0000 50.000
+ 9 1.0000 1.000 15030.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4952 0.0101 1.9993 5.0000 5.0000 0.0000 49.9980 49.8410 0.0000 0.0000 50.000
+ 10 1.5000 1.000 15590.000 2059.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4927 0.0152 1.9989 5.0000 5.0000 0.0000 50.0040 49.8810 0.0000 0.0000 50.000
+ 11 2.0000 1.000 15661.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4902 0.0203 1.9985 5.0000 5.0000 0.0000 50.0020 49.9300 0.0000 0.0000 50.000
+ 12 2.5000 1.000 15162.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4877 0.0253 1.9981 5.0000 5.0000 0.0000 50.0020 49.9020 0.0000 0.0000 50.000
+ 13 3.0000 1.000 14255.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.4376 50.6360 -1.6330 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4851 0.0304 1.9978 5.0000 5.0000 0.0000 50.0040 50.0100 0.0000 0.0000 50.000
+# Sum of Counts = 177411
+# Center of Mass = 0.198167+/-0.004390
+# Full Width Half-Maximum = 3.655404+/-0.007708
+# 9:52:42 AM 6/26/2012 scan completed.
+
+9:52:42 AM 6/26/2012 Executing "drive sgu @(sgu)-3"
+ Derived from "scanrel sgu -3 3 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.00002
+
+Drive completed.
+
+
+9:52:50 AM 6/26/2012 Executing "drive sgu 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 2.00000
+
+Drive completed.
+
+
+9:53:07 AM 6/26/2012 Executing "drive sgu 1.6"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 1.60000
+
+Drive completed.
+
+
+9:53:23 AM 6/26/2012 Executing "scantitle "Bi alignment at 50 K (0.5 0 2)""
+
+Setting the scantitle to:
+Bi alignment at 50 K (0.5 0 2)
+
+
+9:53:28 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 143
+# date = 6/26/2012
+# time = 9:53:28 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0.5 0 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+# ubmatrix = 0.001075,-0.005726,-0.084537,0.253778,0.126889,0.000358,-0.000031,-0.219706,0.002410
+# mode = 0
+# plane_normal = 0.028497,0.000000,0.999594
+# ubconf = UB26Jun2012_95114AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 61.4375 1.000 77.000 2137.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4807 0.0158 2.0247 5.0000 5.0000 0.0000 49.9940 49.8840 0.0000 0.0000 50.000
+ 2 61.5376 1.000 99.000 2101.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4819 0.0159 2.0221 5.0000 5.0000 0.0000 49.9960 49.8850 0.0000 0.0000 50.000
+ 3 61.6376 1.000 142.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4830 0.0159 2.0196 5.0000 5.0000 0.0000 49.9950 49.9390 0.0000 0.0000 50.000
+ 4 61.7376 1.000 195.000 2118.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4842 0.0160 2.0170 5.0000 5.0000 0.0000 49.9990 49.8760 0.0000 0.0000 50.000
+ 5 61.8376 1.000 292.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4853 0.0160 2.0144 5.0000 5.0000 0.0000 50.0030 49.9490 0.0000 0.0000 50.000
+ 6 61.9376 1.000 474.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4865 0.0160 2.0118 5.0000 5.0000 0.0000 49.9980 49.8790 0.0000 0.0000 50.000
+ 7 62.0376 1.000 819.000 2051.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4876 0.0161 2.0092 5.0000 5.0000 0.0000 49.9960 49.8970 0.0000 0.0000 50.000
+ 8 62.1376 1.000 1975.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4888 0.0161 2.0066 5.0000 5.0000 0.0000 49.9980 49.8990 0.0000 0.0000 50.000
+ 9 62.2376 1.000 5170.000 1996.000 0.971 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4899 0.0161 2.0040 5.0000 5.0000 0.0000 49.9970 49.9830 0.0000 0.0000 50.000
+ 10 62.3376 1.000 10879.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4911 0.0162 2.0014 5.0000 5.0000 0.0000 50.0040 49.9590 0.0000 0.0000 50.000
+ 11 62.4376 1.000 15372.000 1991.000 0.968 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4922 0.0162 1.9988 5.0000 5.0000 0.0000 50.0010 49.9920 0.0000 0.0000 50.000
+ 12 62.5376 1.000 14549.000 2058.000 1.001 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4934 0.0163 1.9962 5.0000 5.0000 0.0000 50.0000 49.9270 0.0000 0.0000 50.000
+ 13 62.6376 1.000 8390.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4945 0.0163 1.9935 5.0000 5.0000 0.0000 50.0010 49.9520 0.0000 0.0000 50.000
+ 14 62.7376 1.000 3976.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4957 0.0163 1.9909 5.0000 5.0000 0.0000 50.0000 49.8680 0.0000 0.0000 50.000
+ 15 62.8376 1.000 1886.000 2029.000 0.987 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4968 0.0164 1.9883 5.0000 5.0000 0.0000 49.9970 49.9160 0.0000 0.0000 50.000
+ 16 62.9376 1.000 858.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4979 0.0164 1.9856 5.0000 5.0000 0.0000 49.9960 49.9740 0.0000 0.0000 50.000
+ 17 63.0376 1.000 400.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.4991 0.0164 1.9830 5.0000 5.0000 0.0000 50.0000 49.9510 0.0000 0.0000 50.000
+ 18 63.1376 1.000 211.000 1988.000 0.967 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5002 0.0165 1.9803 5.0000 5.0000 0.0000 49.9970 49.9790 0.0000 0.0000 50.000
+ 19 63.2376 1.000 154.000 2078.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5013 0.0165 1.9776 5.0000 5.0000 0.0000 49.9990 49.8310 0.0000 0.0000 50.000
+ 20 63.3376 1.000 82.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5025 0.0165 1.9750 5.0000 5.0000 0.0000 49.9980 49.9430 0.0000 0.0000 50.000
+ 21 63.4376 1.000 69.000 2169.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.6360 -1.6330 1.6000 -1.5000 1.3000 142.9286 -74.1428 1.3286 0.5036 0.0166 1.9723 5.0000 5.0000 0.0000 49.9970 49.8660 0.0000 0.0000 50.000
+# Sum of Counts = 66069
+# Center of Mass = 62.472297+/-0.343720
+# Full Width Half-Maximum = 0.422516+/-0.150076
+# 9:54:02 AM 6/26/2012 scan completed.
+
+9:54:02 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 62.43756
+
+Drive completed.
+
+
+9:54:04 AM 6/26/2012 Executing "drive stl 0 stu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+stl 0.00000
+stu 0.00000
+
+Drive completed.
+
+
+9:54:16 AM 6/26/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 144
+# date = 6/26/2012
+# time = 9:54:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0.5 0 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+# ubmatrix = 0.001075,-0.005726,-0.084537,0.253778,0.126889,0.000358,-0.000031,-0.219706,0.002410
+# mode = 0
+# plane_normal = 0.028497,0.000000,0.999594
+# ubconf = UB26Jun2012_95114AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 48.6360 61.4376 1.000 1.000 2019.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2794 0.4740 0.0156 1.9248 5.0000 5.0000 0.0000 49.9970 49.8740 0.0000 0.0000 50.000
+ 2 48.8360 61.5376 1.000 1.000 2114.000 1.028 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2843 0.4758 0.0157 1.9322 5.0000 5.0000 0.0000 49.9950 49.9560 0.0000 0.0000 50.000
+ 3 49.0360 61.6376 1.000 2.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2892 0.4777 0.0157 1.9396 5.0000 5.0000 0.0000 49.9990 49.8970 0.0000 0.0000 50.000
+ 4 49.2360 61.7376 1.000 1.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2942 0.4795 0.0158 1.9470 5.0000 5.0000 0.0000 50.0040 49.8930 0.0000 0.0000 50.000
+ 5 49.4360 61.8376 1.000 11.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.2991 0.4813 0.0159 1.9544 5.0000 5.0000 0.0000 49.9990 49.9110 0.0000 0.0000 50.000
+ 6 49.6360 61.9376 1.000 33.000 2137.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3040 0.4831 0.0159 1.9619 5.0000 5.0000 0.0000 50.0000 49.9250 0.0000 0.0000 50.000
+ 7 49.8360 62.0376 1.000 148.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3089 0.4850 0.0160 1.9693 5.0000 5.0000 0.0000 50.0020 49.9460 0.0000 0.0000 50.000
+ 8 50.0360 62.1376 1.000 687.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3139 0.4868 0.0160 1.9767 5.0000 5.0000 0.0000 50.0020 49.9230 0.0000 0.0000 50.000
+ 9 50.2360 62.2376 1.000 3309.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3188 0.4886 0.0161 1.9840 5.0000 5.0000 0.0000 49.9970 49.9370 0.0000 0.0000 50.000
+ 10 50.4360 62.3376 1.000 9258.000 2003.000 0.974 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3237 0.4904 0.0162 1.9914 5.0000 5.0000 0.0000 49.9980 49.8640 0.0000 0.0000 50.000
+ 11 50.6360 62.4376 1.000 14900.000 2094.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3286 0.4922 0.0162 1.9988 5.0000 5.0000 0.0000 49.9940 49.9130 0.0000 0.0000 50.000
+ 12 50.8360 62.5376 1.000 14376.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3335 0.4940 0.0163 2.0062 5.0000 5.0000 0.0000 50.0050 49.8780 0.0000 0.0000 50.000
+ 13 51.0360 62.6376 1.000 8203.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3384 0.4959 0.0163 2.0135 5.0000 5.0000 0.0000 49.9960 49.9230 0.0000 0.0000 50.000
+ 14 51.2360 62.7376 1.000 2902.000 2176.000 1.058 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3433 0.4977 0.0164 2.0209 5.0000 5.0000 0.0000 49.9990 49.8700 0.0000 0.0000 50.000
+ 15 51.4360 62.8376 1.000 611.000 2013.000 0.979 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3482 0.4995 0.0165 2.0282 5.0000 5.0000 0.0000 50.0050 49.8960 0.0000 0.0000 50.000
+ 16 51.6360 62.9376 1.000 165.000 2176.000 1.058 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3530 0.5013 0.0165 2.0356 5.0000 5.0000 0.0000 50.0010 49.9130 0.0000 0.0000 50.000
+ 17 51.8360 63.0376 1.000 31.000 2087.000 1.015 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3579 0.5031 0.0166 2.0429 5.0000 5.0000 0.0000 49.9990 49.8420 0.0000 0.0000 50.000
+ 18 52.0360 63.1376 1.000 7.000 2133.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3628 0.5049 0.0166 2.0503 5.0000 5.0000 0.0000 49.9950 49.8800 0.0000 0.0000 50.000
+ 19 52.2360 63.2376 1.000 4.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3677 0.5067 0.0167 2.0576 5.0000 5.0000 0.0000 49.9980 49.9030 0.0000 0.0000 50.000
+ 20 52.4360 63.3376 1.000 1.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3725 0.5085 0.0167 2.0649 5.0000 5.0000 0.0000 50.0050 49.9120 0.0000 0.0000 50.000
+ 21 52.6360 63.4376 1.000 0.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3774 0.5103 0.0168 2.0722 5.0000 5.0000 0.0000 49.9980 49.8300 0.0000 0.0000 50.000
+# Sum of Counts = 54651
+# Center of Mass = 50.724675+/-0.306859
+# Full Width Half-Maximum = 0.569763+/-0.190063
+# 9:55:08 AM 6/26/2012 scan completed.
+
+9:55:08 AM 6/26/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 62.48188
+s2 50.72467
+
+Drive completed.
+
+
+9:55:30 AM 6/26/2012 Executing "drive s2 50.7243 s1 62.4818"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 50.72430
+s1 62.48180
+
+Drive completed.
+
+
+9:56:02 AM 6/26/2012 Executing "lattice a 4.529543 b 4.529543 c 11.824200"
+
+
+Changing the lattice constants "a=4.529543,b=4.529543,c=11.824200".
+The lattice constants will be changed to:
+a=4.529543 b=4.529543 c=11.82420
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+9:56:13 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 145
+# date = 6/26/2012
+# time = 9:56:13 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0.5 0 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001080,-0.005751,-0.084537,0.254924,0.127462,0.000358,-0.000031,-0.220699,0.002410
+# mode = 0
+# plane_normal = 0.028497,0.000000,0.999594
+# ubconf = UB26Jun2012_95602AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 61.4818 1.000 70.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4793 0.0158 2.0280 5.0000 5.0000 0.0000 49.9990 49.9390 0.0000 0.0000 50.000
+ 2 61.5818 1.000 124.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4805 0.0158 2.0254 5.0000 5.0000 0.0000 50.0010 49.8660 0.0000 0.0000 50.000
+ 3 61.6818 1.000 140.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4816 0.0159 2.0229 5.0000 5.0000 0.0000 50.0010 49.8670 0.0000 0.0000 50.000
+ 4 61.7818 1.000 192.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4828 0.0159 2.0203 5.0000 5.0000 0.0000 49.9980 49.8780 0.0000 0.0000 50.000
+ 5 61.8818 1.000 309.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4839 0.0159 2.0177 5.0000 5.0000 0.0000 49.9990 49.9380 0.0000 0.0000 50.000
+ 6 61.9818 1.000 440.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4851 0.0160 2.0151 5.0000 5.0000 0.0000 49.9990 49.8550 0.0000 0.0000 50.000
+ 7 62.0818 1.000 858.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4862 0.0160 2.0125 5.0000 5.0000 0.0000 49.9940 49.7890 0.0000 0.0000 50.000
+ 8 62.1818 1.000 1959.000 2096.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4874 0.0161 2.0099 5.0000 5.0000 0.0000 50.0020 49.8890 0.0000 0.0000 50.000
+ 9 62.2818 1.000 4934.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4885 0.0161 2.0073 5.0000 5.0000 0.0000 50.0000 49.9200 0.0000 0.0000 50.000
+ 10 62.3818 1.000 10407.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4897 0.0161 2.0047 5.0000 5.0000 0.0000 49.9990 49.9010 0.0000 0.0000 50.000
+ 11 62.4818 1.000 15501.000 2071.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4908 0.0162 2.0021 5.0000 5.0000 0.0000 50.0020 49.9320 0.0000 0.0000 50.000
+ 12 62.5818 1.000 14276.000 2025.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4920 0.0162 1.9994 5.0000 5.0000 0.0000 50.0010 49.9630 0.0000 0.0000 50.000
+ 13 62.6818 1.000 8222.000 2126.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4931 0.0162 1.9968 5.0000 5.0000 0.0000 49.9950 49.8790 0.0000 0.0000 50.000
+ 14 62.7818 1.000 3804.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4942 0.0163 1.9942 5.0000 5.0000 0.0000 50.0010 49.9250 0.0000 0.0000 50.000
+ 15 62.8818 1.000 1736.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4954 0.0163 1.9915 5.0000 5.0000 0.0000 50.0010 49.9160 0.0000 0.0000 50.000
+ 16 62.9818 1.000 805.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4965 0.0164 1.9889 5.0000 5.0000 0.0000 50.0010 49.9040 0.0000 0.0000 50.000
+ 17 63.0818 1.000 378.000 2063.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4976 0.0164 1.9862 5.0000 5.0000 0.0000 50.0030 49.9270 0.0000 0.0000 50.000
+ 18 63.1818 1.000 196.000 2108.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4988 0.0164 1.9835 5.0000 5.0000 0.0000 49.9990 49.8850 0.0000 0.0000 50.000
+ 19 63.2818 1.000 127.000 2031.000 0.988 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4999 0.0165 1.9809 5.0000 5.0000 0.0000 50.0030 49.9110 0.0000 0.0000 50.000
+ 20 63.3818 1.000 73.000 2157.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5010 0.0165 1.9782 5.0000 5.0000 0.0000 50.0030 49.9370 0.0000 0.0000 50.000
+ 21 63.4818 1.000 60.000 2062.000 1.003 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6330 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5021 0.0165 1.9755 5.0000 5.0000 0.0000 49.9980 49.8730 0.0000 0.0000 50.000
+# Sum of Counts = 64611
+# Center of Mass = 62.514451+/-0.347811
+# Full Width Half-Maximum = 0.419830+/-0.151012
+# 9:56:47 AM 6/26/2012 scan completed.
+
+9:56:48 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 62.48180
+
+Drive completed.
+
+
+9:57:02 AM 6/26/2012 Executing "drive s1 62.5171"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 62.51710
+
+Drive completed.
+
+
+9:57:23 AM 6/26/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95716AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95716AM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.7243 62.5171 -1.6330 1.6000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5295 b=4.5295 c=11.8242 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.7243 62.5171 -1.6330 1.6000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.7443 31.1149 -1.6330 1.6000 34.9851 -74.1428 142.9286
+ 0.5000 0.0000 2.0000 5.0000 5.0000 142.9286 50.7243 62.6057 -1.6330 1.6000 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.1741 0.0373 1.4933 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ -0.5856 0.0726 2.5351 50.7243 62.5171 -1.6330 1.6000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB26Jun2012_95723AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB26Jun2012_95723AM.ini
+
+
+9:57:43 AM 6/26/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.72430
+s1 62.60573
+sgl -1.63299
+sgu 1.60000
+mfocus 34.98513
+
+Drive completed.
+
+
+9:57:53 AM 6/26/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.74428
+s1 31.11494
+sgl -1.63299
+sgu 1.60000
+mfocus 34.98513
+
+Drive completed.
+
+
+9:58:42 AM 6/26/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.72430
+s1 62.60573
+sgl -1.63299
+sgu 1.60000
+mfocus 34.98513
+
+Drive completed.
+
+
+9:59:31 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 146
+# date = 6/26/2012
+# time = 9:59:31 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0.5 0 2)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224171,0.002399
+# mode = 0
+# plane_normal = 0.017115,0.016763,0.600112
+# ubconf = UB26Jun2012_95723AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 61.6057 1.000 107.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4883 0.0000 2.0260 5.0000 5.0000 0.0000 50.0040 49.8710 0.0000 0.0000 50.000
+ 2 61.7057 1.000 130.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4895 0.0000 2.0234 5.0000 5.0000 0.0000 50.0020 49.8990 0.0000 0.0000 50.000
+ 3 61.8057 1.000 233.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4907 0.0000 2.0208 5.0000 5.0000 0.0000 50.0020 49.8140 0.0000 0.0000 50.000
+ 4 61.9057 1.000 304.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4919 0.0000 2.0183 5.0000 5.0000 0.0000 50.0010 49.9020 0.0000 0.0000 50.000
+ 5 62.0057 1.000 546.000 2074.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4930 0.0000 2.0157 5.0000 5.0000 0.0000 49.9940 49.9840 0.0000 0.0000 50.000
+ 6 62.1057 1.000 1059.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4942 0.0000 2.0131 5.0000 5.0000 0.0000 49.9970 49.9680 0.0000 0.0000 50.000
+ 7 62.2057 1.000 2401.000 2022.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4954 0.0000 2.0105 5.0000 5.0000 0.0000 50.0010 49.9370 0.0000 0.0000 50.000
+ 8 62.3057 1.000 6075.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4965 0.0000 2.0079 5.0000 5.0000 0.0000 49.9990 49.8910 0.0000 0.0000 50.000
+ 9 62.4057 1.000 11796.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4977 0.0000 2.0052 5.0000 5.0000 0.0000 49.9980 49.8810 0.0000 0.0000 50.000
+ 10 62.5057 1.000 16248.000 2104.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.4988 0.0000 2.0026 5.0000 5.0000 0.0000 50.0020 49.9180 0.0000 0.0000 50.000
+ 11 62.6057 1.000 13063.000 2084.000 1.014 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5000 0.0000 2.0000 5.0000 5.0000 0.0000 50.0010 49.9360 0.0000 0.0000 50.000
+ 12 62.7057 1.000 6896.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5012 0.0000 1.9974 5.0000 5.0000 0.0000 50.0020 49.9090 0.0000 0.0000 50.000
+ 13 62.8057 1.000 3164.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5023 0.0000 1.9947 5.0000 5.0000 0.0000 49.9990 49.8720 0.0000 0.0000 50.000
+ 14 62.9057 1.000 1489.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5035 0.0000 1.9921 5.0000 5.0000 0.0000 49.9990 49.8950 0.0000 0.0000 50.000
+ 15 63.0057 1.000 670.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5046 0.0000 1.9894 5.0000 5.0000 0.0000 50.0010 49.9320 0.0000 0.0000 50.000
+ 16 63.1057 1.000 293.000 2047.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5058 0.0000 1.9868 5.0000 5.0000 0.0000 50.0080 49.8890 0.0000 0.0000 50.000
+ 17 63.2057 1.000 167.000 1952.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5069 0.0000 1.9841 5.0000 5.0000 0.0000 50.0030 49.9640 0.0000 0.0000 50.000
+ 18 63.3057 1.000 118.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5081 0.0000 1.9814 5.0000 5.0000 0.0000 49.9970 49.8960 0.0000 0.0000 50.000
+ 19 63.4057 1.000 80.000 2173.000 1.057 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5092 0.0000 1.9788 5.0000 5.0000 0.0000 50.0010 49.8970 0.0000 0.0000 50.000
+ 20 63.5057 1.000 45.000 2061.000 1.002 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5104 0.0000 1.9761 5.0000 5.0000 0.0000 50.0000 49.8910 0.0000 0.0000 50.000
+ 21 63.6057 1.000 53.000 2065.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 50.7243 -1.6329 1.6000 0.0000 0.0000 142.9286 -74.1428 1.3307 0.5115 0.0000 1.9734 5.0000 5.0000 0.0000 50.0020 49.8370 0.0000 0.0000 50.000
+# Sum of Counts = 64937
+# Center of Mass = 62.517564+/-0.346954
+# Full Width Half-Maximum = 0.415380+/-0.151682
+# 10:00:06 AM 6/26/2012 scan completed.
+
+10:00:06 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 62.60572
+
+Drive completed.
+
+
+10:00:10 AM 6/26/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.72430
+s1 62.60573
+sgl -1.63299
+sgu 1.60000
+mfocus 34.98513
+
+Drive completed.
+
+
+10:00:16 AM 6/26/2012 Executing "lattice 4.529543 4.529543 11.824200 90.000000 90.000000 120.000000"
+
+
+Changing lattice constants to:
+a=4.529543 b=4.529543 c=11.82420
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+10:00:19 AM 6/26/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100017AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100017AM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.7243 62.6057 -1.6329 1.6000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5295 b=4.5295 c=11.8242 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ 0.5000 0.0000 2.0000 50.7243 62.6057 -1.6329 1.6000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.7443 31.1149 -1.6330 1.6001 34.9851 -74.1428 142.9286
+ 0.5000 0.0000 2.0000 5.0000 5.0000 142.9286 50.7243 62.6057 -1.6330 1.6001 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.1741 0.0373 1.4933 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ -0.5870 0.0727 2.5370 50.7243 62.6057 -1.6329 1.6000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB26Jun2012_100019AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB26Jun2012_100019AM.ini
+
+
+10:00:23 AM 6/26/2012 Executing "drive h 1.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 1 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.80368
+s1 104.79128
+sgl -1.63299
+sgu 1.60011
+mfocus 34.98513
+
+Drive completed.
+
+
+10:00:47 AM 6/26/2012 Executing "scantitle "Bi alignment at 50 K (1 0 1)""
+
+Setting the scantitle to:
+Bi alignment at 50 K (1 0 1)
+
+
+10:01:05 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 147
+# date = 6/26/2012
+# time = 10:01:05 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224172,0.002399
+# mode = 0
+# plane_normal = 0.017150,0.016798,0.601347
+# ubconf = UB26Jun2012_100019AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.7913 1.000 214.000 2125.000 1.034 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9941 0.0000 1.0525 5.0000 5.0000 0.0000 50.0000 49.8220 0.0000 0.0000 50.000
+ 2 103.8913 1.000 305.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9947 0.0000 1.0472 5.0000 5.0000 0.0000 49.9970 49.8050 0.0000 0.0000 50.000
+ 3 103.9913 1.000 436.000 2139.000 1.040 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9953 0.0000 1.0420 5.0000 5.0000 0.0000 49.9940 49.7800 0.0000 0.0000 50.000
+ 4 104.0913 1.000 676.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9959 0.0000 1.0368 5.0000 5.0000 0.0000 49.9960 49.7790 0.0000 0.0000 50.000
+ 5 104.1913 1.000 1203.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9965 0.0000 1.0315 5.0000 5.0000 0.0000 50.0030 49.8890 0.0000 0.0000 50.000
+ 6 104.2913 1.000 2934.000 2010.000 0.978 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9971 0.0000 1.0263 5.0000 5.0000 0.0000 50.0080 49.7290 0.0000 0.0000 50.000
+ 7 104.3913 1.000 8532.000 2027.000 0.986 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9977 0.0000 1.0210 5.0000 5.0000 0.0000 49.9980 49.8890 0.0000 0.0000 50.000
+ 8 104.4913 1.000 22991.000 2043.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9982 0.0000 1.0158 5.0000 5.0000 0.0000 50.0010 49.8440 0.0000 0.0000 50.000
+ 9 104.5913 1.000 45115.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9988 0.0000 1.0105 5.0000 5.0000 0.0000 50.0010 49.8030 0.0000 0.0000 50.000
+ 10 104.6913 1.000 60104.000 2093.000 1.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9994 0.0000 1.0053 5.0000 5.0000 0.0000 49.9940 49.8320 0.0000 0.0000 50.000
+ 11 104.7913 1.000 55027.000 2053.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 50.0020 49.8760 0.0000 0.0000 50.000
+ 12 104.8913 1.000 35697.000 2115.000 1.029 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0006 0.0000 0.9947 5.0000 5.0000 0.0000 50.0000 49.9110 0.0000 0.0000 50.000
+ 13 104.9913 1.000 16811.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0012 0.0000 0.9895 5.0000 5.0000 0.0000 49.9970 49.8260 0.0000 0.0000 50.000
+ 14 105.0913 1.000 7437.000 2075.000 1.009 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0017 0.0000 0.9842 5.0000 5.0000 0.0000 50.0020 49.8870 0.0000 0.0000 50.000
+ 15 105.1913 1.000 3095.000 2145.000 1.043 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0023 0.0000 0.9789 5.0000 5.0000 0.0000 49.9990 49.8340 0.0000 0.0000 50.000
+ 16 105.2913 1.000 1338.000 1984.000 0.965 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0029 0.0000 0.9737 5.0000 5.0000 0.0000 49.9980 49.8580 0.0000 0.0000 50.000
+ 17 105.3913 1.000 662.000 2103.000 1.023 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0034 0.0000 0.9684 5.0000 5.0000 0.0000 50.0000 49.8250 0.0000 0.0000 50.000
+ 18 105.4913 1.000 390.000 2036.000 0.990 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0040 0.0000 0.9631 5.0000 5.0000 0.0000 49.9990 49.8070 0.0000 0.0000 50.000
+ 19 105.5913 1.000 241.000 2173.000 1.057 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0045 0.0000 0.9578 5.0000 5.0000 0.0000 50.0000 49.8540 0.0000 0.0000 50.000
+ 20 105.6913 1.000 197.000 2095.000 1.019 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0051 0.0000 0.9525 5.0000 5.0000 0.0000 50.0000 49.8900 0.0000 0.0000 50.000
+ 21 105.7913 1.000 132.000 2089.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.8037 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 1.0056 0.0000 0.9472 5.0000 5.0000 0.0000 49.9990 49.8570 0.0000 0.0000 50.000
+# Sum of Counts = 263537
+# Center of Mass = 104.728309+/-0.288509
+# Full Width Half-Maximum = 0.397991+/-0.138862
+# 10:01:40 AM 6/26/2012 scan completed.
+
+10:01:40 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.79128
+
+Drive completed.
+
+
+10:02:19 AM 6/26/2012 Executing "drive s1 104.7258"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.72580
+
+Drive completed.
+
+
+10:02:26 AM 6/26/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 148
+# date = 6/26/2012
+# time = 10:02:26 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224172,0.002399
+# mode = 0
+# plane_normal = 0.017150,0.016798,0.601347
+# ubconf = UB26Jun2012_100019AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.8036 103.7257 1.000 3.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6418 0.9725 0.0000 0.9762 5.0000 5.0000 0.0000 49.9980 49.8140 0.0000 0.0000 50.000
+ 2 64.0037 103.8257 1.000 6.000 1951.000 0.949 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6464 0.9752 0.0000 0.9790 5.0000 5.0000 0.0000 50.0020 49.7740 0.0000 0.0000 50.000
+ 3 64.2037 103.9257 1.000 15.000 2163.000 1.052 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6510 0.9779 0.0000 0.9817 5.0000 5.0000 0.0000 49.9980 49.8490 0.0000 0.0000 50.000
+ 4 64.4037 104.0257 1.000 17.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6556 0.9807 0.0000 0.9844 5.0000 5.0000 0.0000 49.9990 49.9040 0.0000 0.0000 50.000
+ 5 64.6037 104.1257 1.000 78.000 2081.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6602 0.9834 0.0000 0.9872 5.0000 5.0000 0.0000 49.9980 49.7730 0.0000 0.0000 50.000
+ 6 64.8037 104.2257 1.000 431.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6648 0.9861 0.0000 0.9899 5.0000 5.0000 0.0000 50.0020 49.8180 0.0000 0.0000 50.000
+ 7 65.0037 104.3257 1.000 2766.000 2132.000 1.037 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6693 0.9888 0.0000 0.9926 5.0000 5.0000 0.0000 49.9950 49.8290 0.0000 0.0000 50.000
+ 8 65.2037 104.4257 1.000 11715.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6739 0.9915 0.0000 0.9953 5.0000 5.0000 0.0000 50.0000 49.8910 0.0000 0.0000 50.000
+ 9 65.4037 104.5257 1.000 33217.000 2045.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6785 0.9942 0.0000 0.9980 5.0000 5.0000 0.0000 50.0030 49.8020 0.0000 0.0000 50.000
+ 10 65.6037 104.6257 1.000 56457.000 2026.000 0.985 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6830 0.9969 0.0000 1.0007 5.0000 5.0000 0.0000 50.0010 49.8820 0.0000 0.0000 50.000
+ 11 65.8037 104.7257 1.000 61365.000 2082.000 1.013 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6876 0.9996 0.0000 1.0034 5.0000 5.0000 0.0000 50.0000 49.8020 0.0000 0.0000 50.000
+ 12 66.0037 104.8257 1.000 44179.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6921 1.0023 0.0000 1.0062 5.0000 5.0000 0.0000 50.0020 49.7480 0.0000 0.0000 50.000
+ 13 66.2037 104.9257 1.000 19273.000 2170.000 1.055 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6967 1.0050 0.0000 1.0089 5.0000 5.0000 0.0000 50.0010 49.8440 0.0000 0.0000 50.000
+ 14 66.4037 105.0257 1.000 5043.000 2117.000 1.030 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7012 1.0077 0.0000 1.0116 5.0000 5.0000 0.0000 49.9980 49.8510 0.0000 0.0000 50.000
+ 15 66.6037 105.1257 1.000 1030.000 2154.000 1.048 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7058 1.0104 0.0000 1.0143 5.0000 5.0000 0.0000 50.0000 49.8440 0.0000 0.0000 50.000
+ 16 66.8037 105.2257 1.000 189.000 2156.000 1.049 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7103 1.0131 0.0000 1.0169 5.0000 5.0000 0.0000 50.0000 49.7690 0.0000 0.0000 50.000
+ 17 67.0037 105.3257 1.000 58.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7148 1.0157 0.0000 1.0196 5.0000 5.0000 0.0000 49.9980 49.7400 0.0000 0.0000 50.000
+ 18 67.2037 105.4257 1.000 14.000 2122.000 1.032 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7193 1.0184 0.0000 1.0223 5.0000 5.0000 0.0000 49.9980 49.8020 0.0000 0.0000 50.000
+ 19 67.4037 105.5257 1.000 13.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7238 1.0211 0.0000 1.0250 5.0000 5.0000 0.0000 49.9980 49.8490 0.0000 0.0000 50.000
+ 20 67.6037 105.6257 1.000 5.000 2080.000 1.012 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7284 1.0238 0.0000 1.0277 5.0000 5.0000 0.0000 50.0020 49.8390 0.0000 0.0000 50.000
+ 21 67.8037 105.7257 1.000 7.000 2102.000 1.022 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.7329 1.0264 0.0000 1.0304 5.0000 5.0000 0.0000 49.9990 49.8950 0.0000 0.0000 50.000
+# Sum of Counts = 235881
+# Center of Mass = 65.745652+/-0.191442
+# Full Width Half-Maximum = 0.598387+/-0.117671
+# 10:03:18 AM 6/26/2012 scan completed.
+
+10:03:18 AM 6/26/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.69671
+s2 65.74565
+
+Drive completed.
+
+
+10:03:41 AM 6/26/2012 Executing "drive s2 65.7453 s1 104.6965"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 65.74530
+s1 104.69650
+
+Drive completed.
+
+
+10:04:10 AM 6/26/2012 Executing "lattice a 4.533506 b 4.533506 c 11.824200"
+
+
+Changing the lattice constants "a=4.533506,b=4.533506,c=11.824200".
+The lattice constants will be changed to:
+a=4.533506 b=4.533506 c=11.82420
+alpha=90.000000 beta=90.000000 gamma=120.00000
+
+10:04:16 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 149
+# date = 6/26/2012
+# time = 10:04:16 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+# mode = 0
+# plane_normal = 0.017150,0.016798,0.601347
+# ubconf = UB26Jun2012_100410AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.6965 1.000 214.000 2048.000 0.996 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9937 0.0000 1.0551 5.0000 5.0000 0.0000 50.0010 49.8130 0.0000 0.0000 50.000
+ 2 103.7965 1.000 247.000 2140.000 1.041 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9944 0.0000 1.0498 5.0000 5.0000 0.0000 49.9960 49.8510 0.0000 0.0000 50.000
+ 3 103.8965 1.000 329.000 2064.000 1.004 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9950 0.0000 1.0446 5.0000 5.0000 0.0000 50.0000 49.7730 0.0000 0.0000 50.000
+ 4 103.9965 1.000 519.000 2107.000 1.025 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9956 0.0000 1.0394 5.0000 5.0000 0.0000 49.9970 49.8000 0.0000 0.0000 50.000
+ 5 104.0965 1.000 823.000 2166.000 1.054 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9962 0.0000 1.0341 5.0000 5.0000 0.0000 49.9970 49.8660 0.0000 0.0000 50.000
+ 6 104.1965 1.000 1527.000 2073.000 1.008 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9968 0.0000 1.0289 5.0000 5.0000 0.0000 50.0010 49.8780 0.0000 0.0000 50.000
+ 7 104.2965 1.000 3884.000 2009.000 0.977 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9974 0.0000 1.0237 5.0000 5.0000 0.0000 50.0000 49.8180 0.0000 0.0000 50.000
+ 8 104.3965 1.000 11783.000 2042.000 0.993 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9979 0.0000 1.0184 5.0000 5.0000 0.0000 49.9950 49.8500 0.0000 0.0000 50.000
+ 9 104.4965 1.000 29494.000 2120.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9985 0.0000 1.0132 5.0000 5.0000 0.0000 50.0020 49.7980 0.0000 0.0000 50.000
+ 10 104.5965 1.000 52736.000 2046.000 0.995 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9991 0.0000 1.0079 5.0000 5.0000 0.0000 50.0020 49.8400 0.0000 0.0000 50.000
+ 11 104.6965 1.000 62369.000 2079.000 1.011 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9997 0.0000 1.0027 5.0000 5.0000 0.0000 50.0000 49.8600 0.0000 0.0000 50.000
+ 12 104.7965 1.000 52276.000 2128.000 1.035 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0003 0.0000 0.9974 5.0000 5.0000 0.0000 50.0010 49.9030 0.0000 0.0000 50.000
+ 13 104.8965 1.000 30795.000 2068.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0009 0.0000 0.9921 5.0000 5.0000 0.0000 50.0000 49.8640 0.0000 0.0000 50.000
+ 14 104.9965 1.000 14045.000 2069.000 1.006 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0014 0.0000 0.9869 5.0000 5.0000 0.0000 50.0020 49.8380 0.0000 0.0000 50.000
+ 15 105.0965 1.000 6119.000 2054.000 0.999 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0020 0.0000 0.9816 5.0000 5.0000 0.0000 49.9960 49.8450 0.0000 0.0000 50.000
+ 16 105.1965 1.000 2544.000 2018.000 0.982 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0026 0.0000 0.9763 5.0000 5.0000 0.0000 49.9960 49.8260 0.0000 0.0000 50.000
+ 17 105.2965 1.000 1097.000 2105.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0031 0.0000 0.9711 5.0000 5.0000 0.0000 50.0000 49.7360 0.0000 0.0000 50.000
+ 18 105.3965 1.000 594.000 2109.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0037 0.0000 0.9658 5.0000 5.0000 0.0000 49.9950 49.6910 0.0000 0.0000 50.000
+ 19 105.4965 1.000 327.000 1995.000 0.970 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0043 0.0000 0.9605 5.0000 5.0000 0.0000 50.0010 49.8240 0.0000 0.0000 50.000
+ 20 105.5965 1.000 250.000 2056.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0048 0.0000 0.9552 5.0000 5.0000 0.0000 50.0050 49.8390 0.0000 0.0000 50.000
+ 21 105.6965 1.000 179.000 2050.000 0.997 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.6001 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0054 0.0000 0.9500 5.0000 5.0000 0.0000 50.0040 49.7750 0.0000 0.0000 50.000
+# Sum of Counts = 272151
+# Center of Mass = 104.705606+/-0.283844
+# Full Width Half-Maximum = 0.399040+/-0.136421
+# 10:04:50 AM 6/26/2012 scan completed.
+
+10:04:50 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.69648
+
+Drive completed.
+
+
+10:05:00 AM 6/26/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100457AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100457AM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ 1.0000 0.0000 1.0000 65.7453 104.6965 -1.6329 1.6001 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5335 b=4.5335 c=11.8242 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ 1.0000 0.0000 1.0000 65.7453 104.6965 -1.6329 1.6001 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.7443 31.1149 -1.6330 1.6001 34.9851 -74.1428 142.9286
+ 1.0000 0.0000 1.0000 5.0000 5.0000 142.9286 65.7453 104.7471 -1.6330 1.6001 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.1742 0.0373 1.4933 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ -1.2952 0.0989 2.6989 65.7453 104.6965 -1.6329 1.6001 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB26Jun2012_100500AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB26Jun2012_100500AM.ini
+
+
+10:05:22 AM 6/26/2012 Executing "scan sgu 3 0 0.5"
+
+
+# scan = 150
+# date = 6/26/2012
+# time = 10:05:22 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan sgu 3 0 0.5
+# builtin_command = scan sgu 3 0 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+# mode = 0
+# plane_normal = 0.027037,0.026483,0.948016
+# ubconf = UB26Jun2012_100500AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 3.0000 1.000 44162.000 2097.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9855 0.0282 1.0006 5.0000 5.0000 0.0000 49.9950 49.8230 0.0000 0.0000 50.000
+ 2 2.5000 1.000 51623.000 2044.000 0.994 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9907 0.0181 1.0013 5.0000 5.0000 0.0000 49.9970 49.8000 0.0000 0.0000 50.000
+ 3 2.0000 1.000 58045.000 2124.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9957 0.0081 1.0021 5.0000 5.0000 0.0000 50.0020 49.8130 0.0000 0.0000 50.000
+ 4 1.5000 1.000 63210.000 2123.000 1.033 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0007 -0.0020 1.0028 5.0000 5.0000 0.0000 49.9950 49.8630 0.0000 0.0000 50.000
+ 5 1.0000 1.000 66042.000 2040.000 0.992 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0056 -0.0121 1.0036 5.0000 5.0000 0.0000 50.0040 49.8240 0.0000 0.0000 50.000
+ 6 0.5000 1.000 67782.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0104 -0.0222 1.0043 5.0000 5.0000 0.0000 50.0010 49.7910 0.0000 0.0000 50.000
+ 7 0.0000 1.000 66322.000 2106.000 1.024 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.6965 65.7453 -1.6329 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0152 -0.0323 1.0051 5.0000 5.0000 0.0000 50.0020 49.8080 0.0000 0.0000 50.000
+# Sum of Counts = 417186
+# Center of Mass = 1.372006+/-0.003358
+# Full Width Half-Maximum = 1.939137+/-0.003543
+# 10:05:45 AM 6/26/2012 scan completed.
+
+10:06:06 AM 6/26/2012 Executing "drive sgu 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 1.00000
+
+Drive completed.
+
+
+10:06:27 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 151
+# date = 6/26/2012
+# time = 10:06:27 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1)
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+# mode = 0
+# plane_normal = 0.027037,0.026483,0.948016
+# ubconf = UB26Jun2012_100500AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.6965 1.000 183.000 2000.000 0.973 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9996 -0.0120 1.0559 5.0000 5.0000 0.0000 49.9990 49.9700 0.0000 0.0000 50.000
+ 2 103.7965 1.000 272.000 2110.000 1.026 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0002 -0.0120 1.0507 5.0000 5.0000 0.0000 50.0040 49.9110 0.0000 0.0000 50.000
+ 3 103.8965 1.000 358.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0008 -0.0120 1.0455 5.0000 5.0000 0.0000 50.0000 49.8150 0.0000 0.0000 50.000
+ 4 103.9965 1.000 541.000 2055.000 1.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0014 -0.0121 1.0403 5.0000 5.0000 0.0000 49.9970 49.7720 0.0000 0.0000 50.000
+ 5 104.0965 1.000 800.000 2146.000 1.044 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0020 -0.0121 1.0350 5.0000 5.0000 0.0000 49.9960 49.7830 0.0000 0.0000 50.000
+ 6 104.1965 1.000 1510.000 2015.000 0.980 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0026 -0.0121 1.0298 5.0000 5.0000 0.0000 50.0020 49.9280 0.0000 0.0000 50.000
+ 7 104.2965 1.000 3742.000 2070.000 1.007 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0032 -0.0121 1.0246 5.0000 5.0000 0.0000 49.9990 49.8610 0.0000 0.0000 50.000
+ 8 104.3965 1.000 11069.000 2119.000 1.031 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0038 -0.0121 1.0193 5.0000 5.0000 0.0000 49.9980 49.8980 0.0000 0.0000 50.000
+ 9 104.4965 1.000 29048.000 2088.000 1.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0044 -0.0121 1.0141 5.0000 5.0000 0.0000 49.9990 49.7650 0.0000 0.0000 50.000
+ 10 104.5965 1.000 53436.000 2152.000 1.047 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0050 -0.0121 1.0088 5.0000 5.0000 0.0000 50.0010 49.8480 0.0000 0.0000 50.000
+ 11 104.6965 1.000 66300.000 2136.000 1.039 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0056 -0.0121 1.0036 5.0000 5.0000 0.0000 49.9950 49.8880 0.0000 0.0000 50.000
+ 12 104.7965 1.000 58320.000 2090.000 1.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0062 -0.0121 0.9983 5.0000 5.0000 0.0000 50.0010 49.8030 0.0000 0.0000 50.000
+ 13 104.8965 1.000 36461.000 2098.000 1.020 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0068 -0.0121 0.9930 5.0000 5.0000 0.0000 49.9990 49.8070 0.0000 0.0000 50.000
+ 14 104.9965 1.000 16965.000 2099.000 1.021 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0073 -0.0121 0.9878 5.0000 5.0000 0.0000 50.0040 49.8090 0.0000 0.0000 50.000
+ 15 105.0965 1.000 7094.000 2177.000 1.059 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0079 -0.0121 0.9825 5.0000 5.0000 0.0000 49.9990 49.8790 0.0000 0.0000 50.000
+ 16 105.1965 1.000 3041.000 2112.000 1.027 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0085 -0.0121 0.9772 5.0000 5.0000 0.0000 50.0030 49.8160 0.0000 0.0000 50.000
+ 17 105.2965 1.000 1293.000 2077.000 1.010 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0091 -0.0121 0.9720 5.0000 5.0000 0.0000 49.9990 49.7690 0.0000 0.0000 50.000
+ 18 105.3965 1.000 686.000 1987.000 0.966 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0096 -0.0121 0.9667 5.0000 5.0000 0.0000 49.9970 49.7890 0.0000 0.0000 50.000
+ 19 105.4965 1.000 364.000 2023.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0102 -0.0122 0.9614 5.0000 5.0000 0.0000 49.9990 49.8480 0.0000 0.0000 50.000
+ 20 105.5965 1.000 265.000 2024.000 0.984 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0107 -0.0122 0.9561 5.0000 5.0000 0.0000 50.0030 49.7430 0.0000 0.0000 50.000
+ 21 105.6965 1.000 183.000 2052.000 0.998 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6329 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0113 -0.0122 0.9509 5.0000 5.0000 0.0000 50.0020 49.7460 0.0000 0.0000 50.000
+# Sum of Counts = 291931
+# Center of Mass = 104.717881+/-0.274092
+# Full Width Half-Maximum = 0.398963+/-0.132404
+# 10:07:01 AM 6/26/2012 scan completed.
+
+10:07:01 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.69648
+
+Drive completed.
+
+
+10:07:15 AM 6/26/2012 Executing "drive s1 104.717"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.71700
+
+Drive completed.
+
+
+10:07:22 AM 6/26/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100719AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100719AM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ 1.0000 0.0000 1.0000 65.7453 104.7170 -1.6329 1.0000 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5335 b=4.5335 c=11.8242 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ 1.0000 0.0000 1.0000 65.7453 104.7170 -1.6329 1.0000 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.7443 31.1320 -1.6304 0.9992 34.9851 -74.1428 142.9286
+ 1.0000 0.0000 1.0000 5.0000 5.0000 142.9286 65.7453 104.7642 -1.6304 0.9992 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.1736 0.0355 1.4933 61.7444 31.1150 -1.6330 1.6000 5.0000 5.0000
+ -1.2836 0.0729 2.7000 65.7453 104.7170 -1.6329 1.0000 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB26Jun2012_100722AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB26Jun2012_100722AM.ini
+
+
+10:07:31 AM 6/26/2012 Executing "drive h 1.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 1 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.74531
+s1 104.76423
+sgl -1.63036
+sgu 0.99915
+mfocus 34.98513
+
+Drive completed.
+
+
+10:07:36 AM 6/26/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.70711
+s1 62.59016
+sgl -1.63036
+sgu 0.99915
+mfocus 34.98513
+
+Drive completed.
+
+
+10:08:25 AM 6/26/2012 Executing "drive s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 0.00000
+
+Drive completed.
+
+
+10:18:44 AM 6/26/2012 Executing "drive s1 -90"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -90.00000
+
+Drive completed.
+
+
+10:19:42 AM 6/26/2012 Executing "drive s1 -100"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 -100.00000
+
+Drive completed.
+
+
+10:19:56 AM 6/26/2012 Executing "drive s1 100"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 100.00000
+
+Drive completed.
+
+
+10:22:18 AM 6/26/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.74428
+s1 31.13205
+sgl -1.63036
+sgu 0.99915
+mfocus 34.98513
+
+Drive completed.
+
+
+10:23:03 AM 6/26/2012 Executing "scantitle "Bi alignment at 50 K (0 0 3) with Be filter""
+
+Setting the scantitle to:
+Bi alignment at 50 K (0 0 3) with Be filter
+
+
+10:23:10 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 152
+# date = 6/26/2012
+# time = 10:23:10 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0 0 3) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.1319 1.000 741.000 1407.000 0.684 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 50.0520 49.2400 0.0000 0.0000 50.000
+ 2 30.2320 1.000 976.000 1446.000 0.703 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 50.0490 49.2580 0.0000 0.0000 50.000
+ 3 30.3320 1.000 1368.000 1466.000 0.713 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 50.0460 49.2520 0.0000 0.0000 50.000
+ 4 30.4320 1.000 2068.000 1420.000 0.691 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 50.0480 49.3560 0.0000 0.0000 50.000
+ 5 30.5320 1.000 3572.000 1455.000 0.708 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 50.0510 49.3290 0.0000 0.0000 50.000
+ 6 30.6320 1.000 7155.000 1424.000 0.693 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 50.0500 49.2910 0.0000 0.0000 50.000
+ 7 30.7320 1.000 17389.000 1394.000 0.678 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 50.0490 49.2450 0.0000 0.0000 50.000
+ 8 30.8320 1.000 40724.000 1399.000 0.680 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 50.0520 49.3150 0.0000 0.0000 50.000
+ 9 30.9320 1.000 72042.000 1426.000 0.694 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 50.0440 49.2480 0.0000 0.0000 50.000
+ 10 31.0320 1.000 93458.000 1434.000 0.697 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 50.0430 49.2560 0.0000 0.0000 50.000
+ 11 31.1320 1.000 95643.000 1407.000 0.684 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0000 0.0000 3.0000 5.0000 5.0000 0.0000 50.0460 49.1590 0.0000 0.0000 50.000
+ 12 31.2320 1.000 79748.000 1400.000 0.681 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0017 0.0000 3.0000 5.0000 5.0000 0.0000 50.0460 49.2400 0.0000 0.0000 50.000
+ 13 31.3320 1.000 49876.000 1396.000 0.679 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0035 0.0000 3.0000 5.0000 5.0000 0.0000 50.0450 49.3030 0.0000 0.0000 50.000
+ 14 31.4320 1.000 24073.000 1495.000 0.727 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0052 0.0000 3.0000 5.0000 5.0000 0.0000 50.0410 49.2980 0.0000 0.0000 50.000
+ 15 31.5320 1.000 10142.000 1452.000 0.706 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0070 0.0000 2.9999 5.0000 5.0000 0.0000 50.0430 49.2870 0.0000 0.0000 50.000
+ 16 31.6320 1.000 4311.000 1446.000 0.703 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0087 0.0000 2.9999 5.0000 5.0000 0.0000 50.0420 49.2160 0.0000 0.0000 50.000
+ 17 31.7320 1.000 2147.000 1431.000 0.696 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0104 0.0000 2.9998 5.0000 5.0000 0.0000 50.0450 49.3480 0.0000 0.0000 50.000
+ 18 31.8320 1.000 1291.000 1433.000 0.697 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0122 0.0000 2.9998 5.0000 5.0000 0.0000 50.0470 49.3500 0.0000 0.0000 50.000
+ 19 31.9320 1.000 915.000 1391.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0139 0.0000 2.9997 5.0000 5.0000 0.0000 50.0460 49.3460 0.0000 0.0000 50.000
+ 20 32.0320 1.000 583.000 1367.000 0.665 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0156 0.0000 2.9996 5.0000 5.0000 0.0000 50.0410 49.3890 0.0000 0.0000 50.000
+ 21 32.1320 1.000 457.000 1406.000 0.684 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0174 0.0000 2.9995 5.0000 5.0000 0.0000 50.0420 49.3340 0.0000 0.0000 50.000
+# Sum of Counts = 508679
+# Center of Mass = 31.097559+/-0.061663
+# Full Width Half-Maximum = 0.458513+/-0.028238
+# 10:23:44 AM 6/26/2012 scan completed.
+
+10:23:44 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.13204
+
+Drive completed.
+
+
+10:24:02 AM 6/26/2012 Executing "scan sgl -4 0 0.5"
+
+
+# scan = 153
+# date = 6/26/2012
+# time = 10:24:02 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan sgl -4 0 0.5
+# builtin_command = scan sgl -4 0 0.5
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (0 0 3) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgl
+# def_y = detector
+# col_headers =
+# Pt. sgl time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -4.0000 1.000 67849.000 1385.000 0.674 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0238 -0.0476 2.9974 5.0000 5.0000 0.0000 50.0360 49.3340 0.0000 0.0000 50.000
+ 2 -3.5000 1.000 77012.000 1403.000 0.682 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0188 -0.0375 2.9984 5.0000 5.0000 0.0000 50.0300 49.4320 0.0000 0.0000 50.000
+ 3 -3.0000 1.000 86176.000 1378.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0137 -0.0275 2.9991 5.0000 5.0000 0.0000 50.0340 49.3480 0.0000 0.0000 50.000
+ 4 -2.5000 1.000 91719.000 1378.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0087 -0.0175 2.9997 5.0000 5.0000 0.0000 50.0360 49.3650 0.0000 0.0000 50.000
+ 5 -2.0000 1.000 94988.000 1322.000 0.643 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0037 -0.0074 2.9999 5.0000 5.0000 0.0000 50.0310 49.4720 0.0000 0.0000 50.000
+ 6 -1.5000 1.000 94884.000 1386.000 0.674 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0013 0.0026 3.0000 5.0000 5.0000 0.0000 50.0300 49.3040 0.0000 0.0000 50.000
+ 7 -1.0000 1.000 92024.000 1362.000 0.662 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0063 0.0127 2.9998 5.0000 5.0000 0.0000 50.0320 49.3810 0.0000 0.0000 50.000
+ 8 -0.5000 1.000 87815.000 1356.000 0.660 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0113 0.0227 2.9994 5.0000 5.0000 0.0000 50.0320 49.4190 0.0000 0.0000 50.000
+ 9 0.0000 1.000 82321.000 1419.000 0.690 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 31.1320 61.7443 1.0000 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0164 0.0327 2.9988 5.0000 5.0000 0.0000 50.0260 49.3750 0.0000 0.0000 50.000
+# Sum of Counts = 774788
+# Center of Mass = -1.932138+/-0.003409
+# Full Width Half-Maximum = 2.481571+/-0.003240
+# 10:24:41 AM 6/26/2012 scan completed.
+
+10:24:49 AM 6/26/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.74428
+s1 31.13205
+sgl -1.63036
+sgu 0.99915
+mfocus 34.98513
+
+Drive completed.
+
+
+10:25:00 AM 6/26/2012 Executing "drive h 1.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 1 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.74531
+s1 104.76423
+sgl -1.63036
+sgu 0.99915
+mfocus 34.98513
+
+Drive completed.
+
+
+10:25:48 AM 6/26/2012 Executing "scantitle "Bi alignment at 50 K (1 0 1) with Be filter""
+
+Setting the scantitle to:
+Bi alignment at 50 K (1 0 1) with Be filter
+
+
+10:25:52 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 154
+# date = 6/26/2012
+# time = 10:25:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.7642 1.000 100.000 1413.000 0.687 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9940 0.0000 1.0524 5.0000 5.0000 0.0000 50.0210 49.5860 0.0000 0.0000 50.000
+ 2 103.8642 1.000 152.000 1358.000 0.661 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9947 0.0000 1.0472 5.0000 5.0000 0.0000 50.0180 49.4660 0.0000 0.0000 50.000
+ 3 103.9642 1.000 212.000 1383.000 0.673 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9953 0.0000 1.0420 5.0000 5.0000 0.0000 50.0160 49.4650 0.0000 0.0000 50.000
+ 4 104.0642 1.000 328.000 1336.000 0.650 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9959 0.0000 1.0367 5.0000 5.0000 0.0000 50.0210 49.2220 0.0000 0.0000 50.000
+ 5 104.1642 1.000 573.000 1365.000 0.664 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9965 0.0000 1.0315 5.0000 5.0000 0.0000 50.0130 49.4020 0.0000 0.0000 50.000
+ 6 104.2642 1.000 1459.000 1460.000 0.710 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9971 0.0000 1.0262 5.0000 5.0000 0.0000 50.0210 49.4130 0.0000 0.0000 50.000
+ 7 104.3642 1.000 4374.000 1388.000 0.675 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9976 0.0000 1.0210 5.0000 5.0000 0.0000 50.0200 49.3310 0.0000 0.0000 50.000
+ 8 104.4642 1.000 12679.000 1399.000 0.680 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9982 0.0000 1.0158 5.0000 5.0000 0.0000 50.0160 49.4380 0.0000 0.0000 50.000
+ 9 104.5642 1.000 27832.000 1357.000 0.660 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9988 0.0000 1.0105 5.0000 5.0000 0.0000 50.0180 49.4280 0.0000 0.0000 50.000
+ 10 104.6642 1.000 40863.000 1312.000 0.638 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9994 0.0000 1.0053 5.0000 5.0000 0.0000 50.0250 49.5070 0.0000 0.0000 50.000
+ 11 104.7642 1.000 41868.000 1355.000 0.659 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 50.0150 49.4470 0.0000 0.0000 50.000
+ 12 104.8642 1.000 30057.000 1414.000 0.688 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0006 0.0000 0.9947 5.0000 5.0000 0.0000 50.0130 49.4600 0.0000 0.0000 50.000
+ 13 104.9642 1.000 15371.000 1372.000 0.667 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0011 0.0000 0.9895 5.0000 5.0000 0.0000 50.0160 49.4930 0.0000 0.0000 50.000
+ 14 105.0642 1.000 6432.000 1392.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0017 0.0000 0.9842 5.0000 5.0000 0.0000 50.0160 49.2840 0.0000 0.0000 50.000
+ 15 105.1642 1.000 2516.000 1353.000 0.658 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0023 0.0000 0.9789 5.0000 5.0000 0.0000 50.0180 49.3220 0.0000 0.0000 50.000
+ 16 105.2642 1.000 1052.000 1431.000 0.696 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0029 0.0000 0.9737 5.0000 5.0000 0.0000 50.0170 49.4480 0.0000 0.0000 50.000
+ 17 105.3642 1.000 475.000 1385.000 0.674 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0034 0.0000 0.9684 5.0000 5.0000 0.0000 50.0200 49.5570 0.0000 0.0000 50.000
+ 18 105.4642 1.000 255.000 1428.000 0.695 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0040 0.0000 0.9631 5.0000 5.0000 0.0000 50.0150 49.6140 0.0000 0.0000 50.000
+ 19 105.5642 1.000 160.000 1383.000 0.673 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0045 0.0000 0.9579 5.0000 5.0000 0.0000 50.0120 49.4930 0.0000 0.0000 50.000
+ 20 105.6642 1.000 113.000 1336.000 0.650 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0051 0.0000 0.9526 5.0000 5.0000 0.0000 50.0200 49.3580 0.0000 0.0000 50.000
+ 21 105.7642 1.000 69.000 1424.000 0.693 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 1.0000 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0056 0.0000 0.9473 5.0000 5.0000 0.0000 50.0180 49.4010 0.0000 0.0000 50.000
+# Sum of Counts = 186940
+# Center of Mass = 104.728835+/-0.342555
+# Full Width Half-Maximum = 0.385307+/-0.170792
+# 10:26:26 AM 6/26/2012 scan completed.
+
+10:26:26 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.76424
+
+Drive completed.
+
+
+10:26:52 AM 6/26/2012 Executing "scan sgu @(sgu)+-3 @(sgu)+3 0.500000"
+ Derived from "scanrel sgu -3 3 0.5"
+
+
+# scan = 155
+# date = 6/26/2012
+# time = 10:26:52 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel sgu -3 3 0.5
+# builtin_command = scan sgu @(sgu)+-3 @(sgu)+3 0.500000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = sgu
+# def_y = detector
+# col_headers =
+# Pt. sgu time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -2.0000 1.000 28489.000 1405.000 0.683 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0284 -0.0605 1.0045 5.0000 5.0000 0.0000 50.0160 49.5480 0.0000 0.0000 50.000
+ 2 -1.5000 1.000 33275.000 1379.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0238 -0.0504 1.0037 5.0000 5.0000 0.0000 50.0170 49.5200 0.0000 0.0000 50.000
+ 3 -1.0000 1.000 38090.000 1421.000 0.691 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0192 -0.0403 1.0030 5.0000 5.0000 0.0000 50.0130 49.4490 0.0000 0.0000 50.000
+ 4 -0.5000 1.000 41627.000 1353.000 0.658 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0145 -0.0302 1.0022 5.0000 5.0000 0.0000 50.0120 49.6060 0.0000 0.0000 50.000
+ 5 0.0000 1.000 43612.000 1369.000 0.666 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0098 -0.0202 1.0015 5.0000 5.0000 0.0000 50.0150 49.5070 0.0000 0.0000 50.000
+ 6 0.5000 1.000 43202.000 1400.000 0.681 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0049 -0.0101 1.0007 5.0000 5.0000 0.0000 50.0090 49.4670 0.0000 0.0000 50.000
+ 7 1.0000 1.000 41408.000 1376.000 0.669 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 50.0130 49.5360 0.0000 0.0000 50.000
+ 8 1.5000 1.000 38312.000 1369.000 0.666 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9950 0.0101 0.9993 5.0000 5.0000 0.0000 50.0090 49.3550 0.0000 0.0000 50.000
+ 9 2.0000 1.000 34464.000 1349.000 0.656 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9899 0.0202 0.9985 5.0000 5.0000 0.0000 50.0110 49.4990 0.0000 0.0000 50.000
+ 10 2.5000 1.000 29512.000 1335.000 0.649 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9848 0.0303 0.9978 5.0000 5.0000 0.0000 50.0120 49.5340 0.0000 0.0000 50.000
+ 11 3.0000 1.000 23848.000 1395.000 0.679 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9795 0.0404 0.9970 5.0000 5.0000 0.0000 50.0160 49.6060 0.0000 0.0000 50.000
+ 12 3.5000 1.000 18028.000 1372.000 0.667 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9742 0.0505 0.9962 5.0000 5.0000 0.0000 50.0090 49.5550 0.0000 0.0000 50.000
+ 13 4.0000 1.000 13583.000 1380.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 104.7642 65.7453 -1.6304 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9689 0.0605 0.9955 5.0000 5.0000 0.0000 50.0110 49.4800 0.0000 0.0000 50.000
+# Sum of Counts = 427450
+# Center of Mass = 0.669938+/-0.002906
+# Full Width Half-Maximum = 3.293275+/-0.004667
+# 10:27:48 AM 6/26/2012 scan completed.
+
+10:27:48 AM 6/26/2012 Executing "drive sgu @(sgu)-3"
+ Derived from "scanrel sgu -3 3 0.5"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 1.00000
+
+Drive completed.
+
+
+10:28:06 AM 6/26/2012 Executing "drive sgu 0.2862"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgu 0.28620
+
+Drive completed.
+
+
+10:28:14 AM 6/26/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 156
+# date = 6/26/2012
+# time = 10:28:14 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+# mode = 0
+# plane_normal = 0.026994,0.016538,0.948262
+# ubconf = UB26Jun2012_100722AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.7642 1.000 104.000 1373.000 0.668 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0010 -0.0143 1.0535 5.0000 5.0000 0.0000 50.0140 49.5890 0.0000 0.0000 50.000
+ 2 103.8642 1.000 126.000 1390.000 0.676 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0016 -0.0143 1.0482 5.0000 5.0000 0.0000 50.0110 49.6230 0.0000 0.0000 50.000
+ 3 103.9642 1.000 183.000 1358.000 0.661 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0022 -0.0143 1.0430 5.0000 5.0000 0.0000 50.0100 49.6460 0.0000 0.0000 50.000
+ 4 104.0642 1.000 293.000 1391.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0028 -0.0143 1.0378 5.0000 5.0000 0.0000 50.0100 49.6020 0.0000 0.0000 50.000
+ 5 104.1642 1.000 544.000 1372.000 0.667 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0034 -0.0143 1.0325 5.0000 5.0000 0.0000 50.0110 49.5450 0.0000 0.0000 50.000
+ 6 104.2642 1.000 1352.000 1377.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0040 -0.0143 1.0273 5.0000 5.0000 0.0000 50.0130 49.5210 0.0000 0.0000 50.000
+ 7 104.3642 1.000 3830.000 1322.000 0.643 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0046 -0.0143 1.0221 5.0000 5.0000 0.0000 50.0050 49.5950 0.0000 0.0000 50.000
+ 8 104.4642 1.000 11497.000 1466.000 0.713 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0052 -0.0144 1.0168 5.0000 5.0000 0.0000 50.0100 49.5440 0.0000 0.0000 50.000
+ 9 104.5642 1.000 25712.000 1414.000 0.688 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0058 -0.0144 1.0116 5.0000 5.0000 0.0000 50.0130 49.5880 0.0000 0.0000 50.000
+ 10 104.6642 1.000 40254.000 1391.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0064 -0.0144 1.0063 5.0000 5.0000 0.0000 50.0100 49.5370 0.0000 0.0000 50.000
+ 11 104.7642 1.000 43716.000 1387.000 0.675 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0070 -0.0144 1.0011 5.0000 5.0000 0.0000 50.0120 49.6720 0.0000 0.0000 50.000
+ 12 104.8642 1.000 34197.000 1413.000 0.687 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0076 -0.0144 0.9958 5.0000 5.0000 0.0000 50.0080 49.6840 0.0000 0.0000 50.000
+ 13 104.9642 1.000 18489.000 1382.000 0.672 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0082 -0.0144 0.9905 5.0000 5.0000 0.0000 50.0080 49.5620 0.0000 0.0000 50.000
+ 14 105.0642 1.000 7905.000 1379.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0087 -0.0144 0.9853 5.0000 5.0000 0.0000 50.0080 49.5030 0.0000 0.0000 50.000
+ 15 105.1642 1.000 3177.000 1329.000 0.646 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0093 -0.0144 0.9800 5.0000 5.0000 0.0000 50.0080 49.5180 0.0000 0.0000 50.000
+ 16 105.2642 1.000 1319.000 1333.000 0.648 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0099 -0.0144 0.9747 5.0000 5.0000 0.0000 50.0090 49.6190 0.0000 0.0000 50.000
+ 17 105.3642 1.000 602.000 1337.000 0.650 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0104 -0.0144 0.9695 5.0000 5.0000 0.0000 50.0060 49.6310 0.0000 0.0000 50.000
+ 18 105.4642 1.000 301.000 1393.000 0.678 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0110 -0.0144 0.9642 5.0000 5.0000 0.0000 50.0100 49.5710 0.0000 0.0000 50.000
+ 19 105.5642 1.000 166.000 1299.000 0.632 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0116 -0.0144 0.9589 5.0000 5.0000 0.0000 50.0060 49.5850 0.0000 0.0000 50.000
+ 20 105.6642 1.000 91.000 1317.000 0.641 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0121 -0.0145 0.9536 5.0000 5.0000 0.0000 50.0130 49.5740 0.0000 0.0000 50.000
+ 21 105.7642 1.000 86.000 1259.000 0.612 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2862 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0127 -0.0145 0.9484 5.0000 5.0000 0.0000 50.0110 49.6010 0.0000 0.0000 50.000
+# Sum of Counts = 193944
+# Center of Mass = 104.746523+/-0.336370
+# Full Width Half-Maximum = 0.387481+/-0.167945
+# 10:28:48 AM 6/26/2012 scan completed.
+
+10:28:48 AM 6/26/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.76424
+
+Drive completed.
+
+
+10:29:06 AM 6/26/2012 Executing "ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_102903AM.ini""
+
+Setting the UB matrix using the configuration file "C:\User\exp50\UBConf\tmp\UB26Jun2012_102903AM.ini".
+
+The UB matrix was successfully generated using:
+
+The 2 reflections specified by:
+ h k l s2 s1 sgl sgu Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 0.2860 5.0000 5.0000
+ 1.0000 0.0000 1.0000 65.7453 104.7642 -1.6304 0.2862 5.0000 5.0000
+
+
+and the following lattice constants:
+a=4.5335 b=4.5335 c=11.8242 alpha=90.0000 beta=90.0000 gamma=120.0000
+Results of the new UB matrix:
+
+Peak positions as input:
+ h k l a1 s2 s1 sgl Ei Ef
+ 0.0000 0.0000 3.0000 61.7444 31.1150 -1.6330 0.2860 5.0000 5.0000
+ 1.0000 0.0000 1.0000 65.7453 104.7642 -1.6304 0.2862 5.0000 5.0000
+
+Calculated angle positions using original h,k,l,Ei,Ef:
+ h k l Ei Ef a1 s2 s1 sgl m2 m1
+ 0.0000 0.0000 3.0000 5.0000 5.0000 142.9286 61.7443 31.1149 -1.6330 0.2871 34.9851 -74.1428 142.9286
+ 1.0000 0.0000 1.0000 5.0000 5.0000 142.9286 65.7453 104.7471 -1.6330 0.2871 34.9851 -74.1428 142.9286
+
+Calculated h,k,l positions using original angles:
+ h k l a1 s2 s1 sgl Ei Ef
+ -0.1660 0.0201 1.4951 61.7444 31.1150 -1.6330 0.2860 5.0000 5.0000
+ -1.2691 0.0421 2.7033 65.7453 104.7642 -1.6304 0.2862 5.0000 5.0000
+
+
+The orientation information has been stored in the file 'C:\User\exp50\UBConf\UB26Jun2012_102906AM.ini'.
+To restore the configuration to this state at a later time, type:
+
+ubcalc file=C:\User\exp50\UBConf\UB26Jun2012_102906AM.ini
+
+
+10:29:12 AM 6/26/2012 Executing "drive h 1.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 1 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.74531
+s1 104.74709
+sgl -1.63300
+sgu 0.28707
+mfocus 34.98513
+
+Drive completed.
+
+
+10:29:29 AM 6/26/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 157
+# date = 6/26/2012
+# time = 10:29:29 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.7453 103.7470 1.000 1.000 1365.000 0.664 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6405 0.9728 0.0000 0.9728 5.0000 5.0000 0.0000 50.0040 49.6330 0.0000 0.0000 50.000
+ 2 63.9453 103.8470 1.000 4.000 1412.000 0.687 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6451 0.9756 0.0000 0.9756 5.0000 5.0000 0.0000 50.0060 49.6230 0.0000 0.0000 50.000
+ 3 64.1453 103.9470 1.000 4.000 1381.000 0.672 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6497 0.9783 0.0000 0.9783 5.0000 5.0000 0.0000 50.0060 49.5460 0.0000 0.0000 50.000
+ 4 64.3453 104.0470 1.000 17.000 1324.000 0.644 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6543 0.9810 0.0000 0.9810 5.0000 5.0000 0.0000 50.0050 49.6040 0.0000 0.0000 50.000
+ 5 64.5453 104.1470 1.000 66.000 1348.000 0.656 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6588 0.9837 0.0000 0.9837 5.0000 5.0000 0.0000 50.0040 49.7010 0.0000 0.0000 50.000
+ 6 64.7453 104.2470 1.000 278.000 1378.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6634 0.9864 0.0000 0.9865 5.0000 5.0000 0.0000 50.0060 49.6200 0.0000 0.0000 50.000
+ 7 64.9453 104.3470 1.000 1534.000 1388.000 0.675 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6680 0.9892 0.0000 0.9892 5.0000 5.0000 0.0000 50.0050 49.6190 0.0000 0.0000 50.000
+ 8 65.1453 104.4470 1.000 6344.000 1427.000 0.694 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6726 0.9919 0.0000 0.9919 5.0000 5.0000 0.0000 50.0050 49.6430 0.0000 0.0000 50.000
+ 9 65.3453 104.5470 1.000 19293.000 1404.000 0.683 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6771 0.9946 0.0000 0.9946 5.0000 5.0000 0.0000 50.0060 49.5960 0.0000 0.0000 50.000
+ 10 65.5453 104.6470 1.000 36947.000 1389.000 0.676 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6817 0.9973 0.0000 0.9973 5.0000 5.0000 0.0000 49.9990 49.5320 0.0000 0.0000 50.000
+ 11 65.7453 104.7470 1.000 44027.000 1427.000 0.694 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 50.0020 49.5200 0.0000 0.0000 50.000
+ 12 65.9453 104.8470 1.000 37494.000 1374.000 0.668 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6908 1.0027 0.0000 1.0027 5.0000 5.0000 0.0000 50.0050 49.6150 0.0000 0.0000 50.000
+ 13 66.1453 104.9470 1.000 20374.000 1393.000 0.678 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6954 1.0054 0.0000 1.0054 5.0000 5.0000 0.0000 50.0050 49.6180 0.0000 0.0000 50.000
+ 14 66.3453 105.0470 1.000 7188.000 1406.000 0.684 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6999 1.0081 0.0000 1.0081 5.0000 5.0000 0.0000 50.0080 49.6430 0.0000 0.0000 50.000
+ 15 66.5453 105.1470 1.000 1740.000 1340.000 0.652 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7044 1.0108 0.0000 1.0108 5.0000 5.0000 0.0000 50.0040 49.6300 0.0000 0.0000 50.000
+ 16 66.7453 105.2470 1.000 400.000 1433.000 0.697 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7090 1.0135 0.0000 1.0135 5.0000 5.0000 0.0000 50.0020 49.6120 0.0000 0.0000 50.000
+ 17 66.9453 105.3470 1.000 89.000 1333.000 0.648 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7135 1.0161 0.0000 1.0162 5.0000 5.0000 0.0000 50.0020 49.6850 0.0000 0.0000 50.000
+ 18 67.1453 105.4470 1.000 29.000 1345.000 0.654 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7180 1.0188 0.0000 1.0188 5.0000 5.0000 0.0000 50.0020 49.6130 0.0000 0.0000 50.000
+ 19 67.3453 105.5470 1.000 8.000 1386.000 0.674 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7225 1.0215 0.0000 1.0215 5.0000 5.0000 0.0000 50.0040 49.6240 0.0000 0.0000 50.000
+ 20 67.5453 105.6470 1.000 5.000 1380.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7270 1.0242 0.0000 1.0242 5.0000 5.0000 0.0000 50.0020 49.6020 0.0000 0.0000 50.000
+ 21 67.7453 105.7470 1.000 2.000 1467.000 0.714 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7315 1.0268 0.0000 1.0269 5.0000 5.0000 0.0000 50.0030 49.6410 0.0000 0.0000 50.000
+# Sum of Counts = 175844
+# Center of Mass = 65.753202+/-0.221754
+# Full Width Half-Maximum = 0.628108+/-0.132807
+# 10:30:21 AM 6/26/2012 scan completed.
+
+10:30:21 AM 6/26/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.75098
+s2 65.75320
+
+Drive completed.
+
+
+10:30:26 AM 6/26/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.74428
+s1 31.11491
+sgl -1.63300
+sgu 0.28707
+mfocus 34.98513
+
+Drive completed.
+
+
+10:31:28 AM 6/26/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 158
+# date = 6/26/2012
+# time = 10:31:28 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi alignment at 50 K (1 0 1) with Be filter
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.7443 30.1149 1.000 7.000 1290.000 0.627 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5474 -0.0000 0.0001 2.9120 5.0000 5.0000 0.0000 50.0020 49.7370 0.0000 0.0000 50.000
+ 2 59.9443 30.2149 1.000 8.000 1378.000 0.670 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5521 -0.0000 0.0001 2.9208 5.0000 5.0000 0.0000 50.0020 49.6840 0.0000 0.0000 50.000
+ 3 60.1443 30.3149 1.000 27.000 1423.000 0.692 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5568 -0.0000 0.0001 2.9296 5.0000 5.0000 0.0000 50.0040 49.6680 0.0000 0.0000 50.000
+ 4 60.3443 30.4149 1.000 99.000 1379.000 0.671 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5615 -0.0000 0.0001 2.9385 5.0000 5.0000 0.0000 50.0030 49.6930 0.0000 0.0000 50.000
+ 5 60.5443 30.5149 1.000 251.000 1355.000 0.659 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5661 -0.0000 0.0001 2.9473 5.0000 5.0000 0.0000 50.0050 49.6490 0.0000 0.0000 50.000
+ 6 60.7443 30.6149 1.000 1225.000 1365.000 0.664 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5708 -0.0000 0.0001 2.9561 5.0000 5.0000 0.0000 50.0050 49.5990 0.0000 0.0000 50.000
+ 7 60.9443 30.7149 1.000 5232.000 1312.000 0.638 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5755 -0.0000 0.0001 2.9649 5.0000 5.0000 0.0000 50.0050 49.7360 0.0000 0.0000 50.000
+ 8 61.1443 30.8149 1.000 19775.000 1337.000 0.650 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5802 -0.0000 0.0001 2.9737 5.0000 5.0000 0.0000 50.0030 49.7390 0.0000 0.0000 50.000
+ 9 61.3443 30.9149 1.000 48538.000 1388.000 0.675 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5848 -0.0000 0.0001 2.9825 5.0000 5.0000 0.0000 50.0060 49.7110 0.0000 0.0000 50.000
+ 10 61.5443 31.0149 1.000 81783.000 1396.000 0.679 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5895 -0.0000 0.0001 2.9912 5.0000 5.0000 0.0000 50.0020 49.6680 0.0000 0.0000 50.000
+ 11 61.7443 31.1149 1.000 96536.000 1300.000 0.632 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0000 0.0001 3.0000 5.0000 5.0000 0.0000 50.0010 49.6950 0.0000 0.0000 50.000
+ 12 61.9443 31.2149 1.000 85364.000 1345.000 0.654 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5988 -0.0000 0.0001 3.0088 5.0000 5.0000 0.0000 50.0060 49.7550 0.0000 0.0000 50.000
+ 13 62.1443 31.3149 1.000 54073.000 1395.000 0.679 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6034 -0.0000 0.0001 3.0175 5.0000 5.0000 0.0000 50.0020 49.6700 0.0000 0.0000 50.000
+ 14 62.3443 31.4149 1.000 22904.000 1404.000 0.683 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6081 -0.0000 0.0001 3.0262 5.0000 5.0000 0.0000 50.0040 49.6910 0.0000 0.0000 50.000
+ 15 62.5443 31.5149 1.000 6484.000 1384.000 0.673 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6127 -0.0000 0.0001 3.0350 5.0000 5.0000 0.0000 50.0020 49.6830 0.0000 0.0000 50.000
+ 16 62.7443 31.6149 1.000 1415.000 1339.000 0.651 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6174 -0.0000 0.0001 3.0437 5.0000 5.0000 0.0000 50.0040 49.7480 0.0000 0.0000 50.000
+ 17 62.9443 31.7149 1.000 337.000 1326.000 0.645 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6220 -0.0000 0.0001 3.0524 5.0000 5.0000 0.0000 50.0010 49.6170 0.0000 0.0000 50.000
+ 18 63.1443 31.8149 1.000 88.000 1347.000 0.655 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6266 -0.0000 0.0001 3.0611 5.0000 5.0000 0.0000 50.0030 49.7080 0.0000 0.0000 50.000
+ 19 63.3443 31.9149 1.000 43.000 1400.000 0.681 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6312 -0.0000 0.0001 3.0698 5.0000 5.0000 0.0000 50.0030 49.6550 0.0000 0.0000 50.000
+ 20 63.5443 32.0149 1.000 15.000 1392.000 0.677 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6358 -0.0000 0.0001 3.0785 5.0000 5.0000 0.0000 50.0010 49.8040 0.0000 0.0000 50.000
+ 21 63.7443 32.1149 1.000 10.000 1329.000 0.646 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6404 -0.0000 0.0001 3.0871 5.0000 5.0000 0.0000 50.0000 49.6840 0.0000 0.0000 50.000
+# Sum of Counts = 424214
+# Center of Mass = 61.758753+/-0.134099
+# Full Width Half-Maximum = 0.686991+/-0.077554
+# 10:32:19 AM 6/26/2012 scan completed.
+
+10:32:19 AM 6/26/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.12216
+s2 61.75875
+
+Drive completed.
+
+
+10:38:03 AM 6/26/2012 Executing "count preset time 60"
+
+10:38:03 AM 6/26/2012 Executing count command with preset channel "time" and preset value 60.00
+
+ time detector monitor mcu
+ 60.000 5797930.000 82948.000 40.346
+
+10:39:03 AM 6/26/2012 Count command completed.
+
+
+10:39:15 AM 6/26/2012 Executing "comment "The monitor count unit was set to @(methodreal0)" title "Setting the monitor count unit""
+ Derived from "mcu 82948"
+
+Setting the monitor count unit:
+The monitor count unit was set to 82948
+
+
+10:39:34 AM 6/26/2012 Executing "ei 5"
+
+Setting the incident energy to 5.000meV and the configuration to "Fixed Ei".
+
+
+10:39:56 AM 6/26/2012 Executing "scantitle "TO at G (1,0,1), T=50K""
+
+Setting the scantitle to:
+TO at G (1,0,1), T=50K
+
+
+10:39:56 AM 6/26/2012 Executing "scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12"
+
+
+# scan = 159
+# date = 6/26/2012
+# time = 10:39:56 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12
+# builtin_command = scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = TO at G (1,0,1), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.0000 0.0000 1.0000 -12.5000 725.581 8.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 34.3775 27.4104 -1.6304 0.2871 0.0000 0.0000 161.2030 -37.5939 1.6863 5.0000 17.5000 49.9980 49.9210 0.0000 0.0000 50.000
+ 2 1.0000 0.0000 1.0000 -12.2500 723.774 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 36.0227 28.2753 -1.6304 0.2871 0.0000 0.0000 161.0620 -37.8756 1.6863 5.0000 17.2500 49.9960 49.8940 0.0000 0.0000 50.000
+ 3 1.0000 0.0000 1.0000 -12.0000 726.533 5.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 37.6345 29.1232 -1.6304 0.2871 0.0000 0.0000 160.9181 -38.1638 1.6863 5.0000 17.0000 49.9980 49.9790 0.0000 0.0000 50.000
+ 4 1.0000 0.0000 1.0000 -11.7500 725.999 9.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 39.2160 29.9557 -1.6304 0.2871 0.0000 0.0000 160.7706 -38.4587 1.6863 5.0000 16.7500 50.0040 49.9460 0.0000 0.0000 50.000
+ 5 1.0000 0.0000 1.0000 -11.5000 723.842 13.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 40.7700 30.7744 -1.6304 0.2871 0.0000 0.0000 160.6198 -38.7605 1.6863 5.0000 16.5000 49.9990 49.9610 0.0000 0.0000 50.000
+ 6 1.0000 0.0000 1.0000 -11.2500 726.270 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 42.2989 31.5805 -1.6304 0.2871 0.0000 0.0000 160.4652 -39.0695 1.6863 5.0000 16.2500 50.0020 49.7160 0.0000 0.0000 50.000
+ 7 1.0000 0.0000 1.0000 -11.0000 725.642 21.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 43.8051 32.3752 -1.6304 0.2871 0.0000 0.0000 160.3069 -39.3861 1.6863 5.0000 16.0000 50.0010 49.8430 0.0000 0.0000 50.000
+ 8 1.0000 0.0000 1.0000 -10.7500 725.326 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 45.2904 33.1596 -1.6304 0.2871 0.0000 0.0000 160.1448 -39.7105 1.6863 5.0000 15.7500 50.0010 49.8700 0.0000 0.0000 50.000
+ 9 1.0000 0.0000 1.0000 -10.5000 725.033 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 46.7566 33.9346 -1.6304 0.2871 0.0000 0.0000 159.9785 -40.0430 1.6863 5.0000 15.5000 49.9980 49.8580 0.0000 0.0000 50.000
+ 10 1.0000 0.0000 1.0000 -10.2500 724.987 22.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 48.2056 34.7011 -1.6304 0.2871 0.0000 0.0000 159.8079 -40.3841 1.6863 5.0000 15.2500 50.0000 49.7330 0.0000 0.0000 50.000
+ 11 1.0000 0.0000 1.0000 -10.0000 725.191 33.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 49.6386 35.4599 -1.6304 0.2871 0.0000 0.0000 159.6329 -40.7340 1.6863 5.0000 15.0000 50.0000 49.6590 0.0000 0.0000 50.000
+ 12 1.0000 0.0000 1.0000 -9.7500 723.571 18.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 51.0570 36.2116 -1.6304 0.2871 0.0000 0.0000 159.4534 -41.0932 1.6863 5.0000 14.7500 50.0040 49.8890 0.0000 0.0000 50.000
+ 13 1.0000 0.0000 1.0000 -9.5000 724.506 27.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 52.4623 36.9571 -1.6304 0.2871 0.0000 0.0000 159.2690 -41.4622 1.6863 5.0000 14.5000 50.0010 49.8250 0.0000 0.0000 50.000
+ 14 1.0000 0.0000 1.0000 -9.2500 723.672 28.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 53.8555 37.6970 -1.6304 0.2871 0.0000 0.0000 159.0794 -41.8412 1.6863 5.0000 14.2500 50.0010 49.8280 0.0000 0.0000 50.000
+ 15 1.0000 0.0000 1.0000 -9.0000 725.481 29.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 55.2378 38.4318 -1.6304 0.2871 0.0000 0.0000 158.8846 -42.2308 1.6863 5.0000 14.0000 49.9960 49.7330 0.0000 0.0000 50.000
+ 16 1.0000 0.0000 1.0000 -8.7500 738.789 23.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 56.6102 39.1621 -1.6304 0.2871 0.0000 0.0000 158.6842 -42.6316 1.6863 5.0000 13.7500 49.9990 49.8400 0.0000 0.0000 50.000
+ 17 1.0000 0.0000 1.0000 -8.5000 739.506 12.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 57.9736 39.8884 -1.6304 0.2871 0.0000 0.0000 158.4780 -43.0440 1.6863 5.0000 13.5000 50.0020 49.9080 0.0000 0.0000 50.000
+ 18 1.0000 0.0000 1.0000 -8.2500 737.321 16.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 59.3291 40.6114 -1.6304 0.2871 0.0000 0.0000 158.2657 -43.4686 1.6863 5.0000 13.2500 50.0000 49.8860 0.0000 0.0000 50.000
+ 19 1.0000 0.0000 1.0000 -8.0000 735.204 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 60.6775 41.3314 -1.6304 0.2871 0.0000 0.0000 158.0470 -43.9062 1.6863 5.0000 13.0000 50.0020 49.8250 0.0000 0.0000 50.000
+ 20 1.0000 0.0000 1.0000 -7.7500 732.328 8.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.0196 42.0490 -1.6304 0.2871 0.0000 0.0000 157.8214 -44.3571 1.6863 5.0000 12.7500 49.9990 49.8930 0.0000 0.0000 50.000
+ 21 1.0000 0.0000 1.0000 -7.5000 729.917 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.3563 42.7645 -1.6304 0.2871 0.0000 0.0000 157.5889 -44.8223 1.6863 5.0000 12.5000 50.0030 49.7100 0.0000 0.0000 50.000
+ 22 1.0000 0.0000 1.0000 -7.2500 727.129 9.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.6884 43.4786 -1.6304 0.2871 0.0000 0.0000 157.3487 -45.3025 1.6863 5.0000 12.2500 50.0020 49.8190 0.0000 0.0000 50.000
+# Sum of Counts = 355
+# Center of Mass = -9.754930+/-0.735423
+# Full Width Half-Maximum = 2.594803+/-0.303937
+# 3:37:45 PM 6/26/2012 scan completed.
+
+3:37:46 PM 6/26/2012 Executing "scantitle "LA at L (1.5, 0, 1.5), T=50K""
+
+Setting the scantitle to:
+LA at L (1.5, 0, 1.5), T=50K
+
+
+3:37:46 PM 6/26/2012 Executing "scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 4"
+
+
+# scan = 160
+# date = 6/26/2012
+# time = 3:37:46 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 4
+# builtin_command = scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 4
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at L (1.5, 0, 1.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 4.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -8.2000 241.015 7.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 89.9683 72.2892 -1.6304 0.2871 0.0000 0.0000 158.2225 -43.5551 2.5294 5.0000 13.2000 50.0050 49.7790 0.0000 0.0000 50.000
+ 2 1.5000 0.0000 1.5000 -8.0000 240.965 4.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 90.7102 72.8941 -1.6304 0.2871 0.0000 0.0000 158.0470 -43.9061 2.5294 5.0000 13.0000 49.9990 49.7830 0.0000 0.0000 50.000
+ 3 1.5000 0.0000 1.5000 -7.8000 242.743 15.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.4554 73.5052 -1.6304 0.2871 0.0000 0.0000 157.8671 -44.2658 2.5294 5.0000 12.8000 49.9990 49.7530 0.0000 0.0000 50.000
+ 4 1.5000 0.0000 1.5000 -7.6000 241.872 13.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.2042 74.1229 -1.6304 0.2871 0.0000 0.0000 157.6826 -44.6345 2.5294 5.0000 12.6000 49.9980 49.8220 0.0000 0.0000 50.000
+ 5 1.5000 0.0000 1.5000 -7.4000 242.508 25.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.9565 74.7476 -1.6304 0.2871 0.0000 0.0000 157.4938 -45.0126 2.5294 5.0000 12.4000 49.9980 49.8280 0.0000 0.0000 50.000
+ 6 1.5000 0.0000 1.5000 -7.2000 241.981 19.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.7126 75.3795 -1.6304 0.2871 0.0000 0.0000 157.2998 -45.4005 2.5294 5.0000 12.2000 50.0000 49.7120 0.0000 0.0000 50.000
+ 7 1.5000 0.0000 1.5000 -7.0000 242.057 16.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.4728 76.0190 -1.6304 0.2871 0.0000 0.0000 157.1007 -45.7985 2.5294 5.0000 12.0000 49.9950 49.7150 0.0000 0.0000 50.000
+ 8 1.5000 0.0000 1.5000 -6.8000 241.891 12.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.2372 76.6664 -1.6304 0.2871 0.0000 0.0000 156.8963 -46.2073 2.5294 5.0000 11.8000 49.9960 49.8530 0.0000 0.0000 50.000
+ 9 1.5000 0.0000 1.5000 -6.6000 241.671 16.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.0061 77.3222 -1.6304 0.2871 0.0000 0.0000 156.6864 -46.6273 2.5294 5.0000 11.6000 49.9960 49.8790 0.0000 0.0000 50.000
+ 10 1.5000 0.0000 1.5000 -6.4000 241.257 4.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.7796 77.9866 -1.6304 0.2871 0.0000 0.0000 156.4706 -47.0589 2.5294 5.0000 11.4000 49.9980 49.8170 0.0000 0.0000 50.000
+ 11 1.5000 0.0000 1.5000 -6.2000 240.976 11.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.5580 78.6602 -1.6304 0.2871 0.0000 0.0000 156.2486 -47.5028 2.5294 5.0000 11.2000 50.0010 49.8490 0.0000 0.0000 50.000
+ 12 1.5000 0.0000 1.5000 -6.0000 240.920 8.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 98.3415 79.3434 -1.6304 0.2871 0.0000 0.0000 156.0202 -47.9596 2.5294 5.0000 11.0000 49.9980 49.6160 0.0000 0.0000 50.000
+ 13 1.5000 0.0000 1.5000 -5.8000 240.978 5.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.1303 80.0366 -1.6304 0.2871 0.0000 0.0000 155.7851 -48.4298 2.5294 5.0000 10.8000 49.9980 49.8220 0.0000 0.0000 50.000
+ 14 1.5000 0.0000 1.5000 -5.6000 241.296 12.000 331792.000 4.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 99.9248 80.7404 -1.6304 0.2871 0.0000 0.0000 155.5430 -48.9142 2.5294 5.0000 10.6000 50.0010 49.7270 0.0000 0.0000 50.000
+# Sum of Counts = 167
+# Center of Mass = -6.971257+/-0.764854
+# Full Width Half-Maximum = 1.411858+/-0.407506
+# 4:40:39 PM 6/26/2012 scan completed.
+
+4:40:40 PM 6/26/2012 Executing "scantitle "LA at X (-1.5, 0, 0), T=50K""
+
+Setting the scantitle to:
+LA at X (-1.5, 0, 0), T=50K
+
+
+4:40:40 PM 6/26/2012 Executing "scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 2"
+
+
+# scan = 161
+# date = 6/26/2012
+# time = 4:40:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 2
+# builtin_command = scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA at X (-1.5, 0, 0), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.5000 0.0000 0.0000 -5.2500 120.711 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -64.1022 76.6362 -1.6304 0.2871 0.0000 0.0000 155.1010 -49.7982 2.4005 5.0000 10.2500 49.9990 49.8380 0.0000 0.0000 50.000
+ 2 -1.5000 0.0000 0.0000 -5.0000 120.822 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.0694 77.5066 -1.6304 0.2871 0.0000 0.0000 154.7702 -50.4597 2.4005 5.0000 10.0000 50.0050 49.8570 0.0000 0.0000 50.000
+ 3 -1.5000 0.0000 0.0000 -4.7500 121.123 12.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.0271 78.3940 -1.6304 0.2871 0.0000 0.0000 154.4257 -51.1486 2.4005 5.0000 9.7500 49.9990 49.8070 0.0000 0.0000 50.000
+ 4 -1.5000 0.0000 0.0000 -4.5000 120.767 31.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.9748 79.2996 -1.6304 0.2871 0.0000 0.0000 154.0667 -51.8666 2.4005 5.0000 9.5000 49.9940 49.9240 0.0000 0.0000 50.000
+ 5 -1.5000 0.0000 0.0000 -4.2500 121.004 62.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -59.9118 80.2246 -1.6304 0.2871 0.0000 0.0000 153.6921 -52.6158 2.4005 5.0000 9.2500 50.0000 49.9140 0.0000 0.0000 50.000
+ 6 -1.5000 0.0000 0.0000 -4.0000 120.688 88.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.8373 81.1706 -1.6304 0.2871 0.0000 0.0000 153.3007 -53.3986 2.4005 5.0000 9.0000 50.0020 49.8170 0.0000 0.0000 50.000
+ 7 -1.5000 0.0000 0.0000 -3.7500 121.113 50.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.7506 82.1388 -1.6304 0.2871 0.0000 0.0000 152.8912 -54.2176 2.4005 5.0000 8.7500 49.9970 49.9610 0.0000 0.0000 50.000
+ 8 -1.5000 0.0000 0.0000 -3.5000 120.982 14.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -56.6509 83.1312 -1.6304 0.2871 0.0000 0.0000 152.4622 -55.0756 2.4005 5.0000 8.5000 50.0010 49.8110 0.0000 0.0000 50.000
+ 9 -1.5000 0.0000 0.0000 -3.2500 120.860 11.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -55.5372 84.1496 -1.6304 0.2871 0.0000 0.0000 152.0119 -55.9760 2.4005 5.0000 8.2500 49.9930 49.9750 0.0000 0.0000 50.000
+ 10 -1.5000 0.0000 0.0000 -3.0000 120.037 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.4086 85.1960 -1.6304 0.2871 0.0000 0.0000 151.5388 -56.9223 2.4005 5.0000 8.0000 49.9970 49.9110 0.0000 0.0000 50.000
+ 11 -1.5000 0.0000 0.0000 -2.7500 120.879 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -53.2640 86.2727 -1.6304 0.2871 0.0000 0.0000 151.0407 -57.9186 2.4005 5.0000 7.7500 50.0000 49.9050 0.0000 0.0000 50.000
+ 12 -1.5000 0.0000 0.0000 -2.5000 120.688 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.1023 87.3824 -1.6304 0.2871 0.0000 0.0000 150.5152 -58.9695 2.4005 5.0000 7.5000 49.9990 49.8250 0.0000 0.0000 50.000
+# Sum of Counts = 296
+# Center of Mass = -4.036318+/-0.332992
+# Full Width Half-Maximum = 0.975525+/-0.162389
+# 5:06:47 PM 6/26/2012 scan completed.
+
+5:06:47 PM 6/26/2012 Executing "scantitle "LA + TA at T (-1,0,3.5), T=50K""
+
+Setting the scantitle to:
+LA + TA at T (-1,0,3.5), T=50K
+
+
+5:06:47 PM 6/26/2012 Executing "scan h -1 k 0 l 3.5 e -8.8 -3.4 0.2 preset mcu 2"
+
+
+# scan = 162
+# date = 6/26/2012
+# time = 5:06:47 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1 k 0 l 3.5 e -8.8 -3.4 0.2 preset mcu 2
+# builtin_command = scan h -1 k 0 l 3.5 e -8.8 -3.4 0.2 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA + TA at T (-1,0,3.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0001 3.5000 -8.8000 120.668 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.0164 67.6197 -1.6304 0.2871 0.0000 0.0000 158.7247 -42.5505 2.4536 5.0000 13.8000 50.0050 49.9390 0.0000 0.0000 50.000
+ 2 -1.0000 0.0001 3.5000 -8.6000 120.988 2.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.2692 68.1971 -1.6304 0.2871 0.0000 0.0000 158.5612 -42.8776 2.4536 5.0000 13.6000 49.9980 49.8320 0.0000 0.0000 50.000
+ 3 -1.0000 0.0001 3.5000 -8.4000 120.800 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.5196 68.7794 -1.6304 0.2871 0.0000 0.0000 158.3938 -43.2123 2.4536 5.0000 13.4000 49.9990 49.8260 0.0000 0.0000 50.000
+ 4 -1.0000 0.0001 3.5000 -8.2000 120.330 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.7674 69.3669 -1.6304 0.2871 0.0000 0.0000 158.2225 -43.5551 2.4536 5.0000 13.2000 49.9980 49.8950 0.0000 0.0000 50.000
+ 5 -1.0000 0.0001 3.5000 -8.0000 120.221 14.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.0124 69.9598 -1.6304 0.2871 0.0000 0.0000 158.0470 -43.9061 2.4536 5.0000 13.0000 50.0040 49.9610 0.0000 0.0000 50.000
+ 6 -1.0000 0.0001 3.5000 -7.8000 120.223 23.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.2544 70.5584 -1.6304 0.2871 0.0000 0.0000 157.8671 -44.2658 2.4536 5.0000 12.8000 50.0000 49.8320 0.0000 0.0000 50.000
+ 7 -1.0000 0.0001 3.5000 -7.6000 120.999 20.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.4933 71.1629 -1.6304 0.2871 0.0000 0.0000 157.6828 -44.6345 2.4536 5.0000 12.6000 49.9990 49.8920 0.0000 0.0000 50.000
+ 8 -1.0000 0.0001 3.5000 -7.4000 120.765 22.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.7290 71.7737 -1.6304 0.2871 0.0000 0.0000 157.4938 -45.0126 2.4536 5.0000 12.4000 49.9950 49.8590 0.0000 0.0000 50.000
+ 9 -1.0000 0.0001 3.5000 -7.2000 120.410 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9611 72.3909 -1.6304 0.2871 0.0000 0.0000 157.2998 -45.4004 2.4536 5.0000 12.2000 50.0070 49.8380 0.0000 0.0000 50.000
+ 10 -1.0000 0.0001 3.5000 -7.0000 120.786 13.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.1896 73.0150 -1.6304 0.2871 0.0000 0.0000 157.1006 -45.7985 2.4536 5.0000 12.0000 50.0070 49.9340 0.0000 0.0000 50.000
+ 11 -1.0000 0.0001 3.5000 -6.8000 120.743 10.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.4142 73.6462 -1.6304 0.2871 0.0000 0.0000 156.8963 -46.2073 2.4536 5.0000 11.8000 50.0030 49.9220 0.0000 0.0000 50.000
+ 12 -1.0000 0.0001 3.5000 -6.6000 120.728 11.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.6347 74.2849 -1.6304 0.2871 0.0000 0.0000 156.6864 -46.6273 2.4536 5.0000 11.6000 50.0030 49.8370 0.0000 0.0000 50.000
+ 13 -1.0000 0.0001 3.5000 -6.4000 121.418 25.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.8510 74.9314 -1.6304 0.2871 0.0000 0.0000 156.4706 -47.0589 2.4536 5.0000 11.4000 50.0010 49.8870 0.0000 0.0000 50.000
+ 14 -1.0000 0.0001 3.5000 -6.2000 120.576 24.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.0628 75.5862 -1.6304 0.2871 0.0000 0.0000 156.2486 -47.5028 2.4536 5.0000 11.2000 50.0030 49.8460 0.0000 0.0000 50.000
+ 15 -1.0000 0.0001 3.5000 -6.0000 120.925 14.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.2699 76.2497 -1.6304 0.2871 0.0000 0.0000 156.0202 -47.9596 2.4536 5.0000 11.0000 50.0010 50.0000 0.0000 0.0000 50.000
+ 16 -1.0000 0.0001 3.5000 -5.8000 120.524 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4720 76.9222 -1.6304 0.2871 0.0000 0.0000 155.7850 -48.4298 2.4536 5.0000 10.8000 49.9970 49.7840 0.0000 0.0000 50.000
+ 17 -1.0000 0.0001 3.5000 -5.6000 120.123 10.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.6689 77.6043 -1.6304 0.2871 0.0000 0.0000 155.5430 -48.9142 2.4536 5.0000 10.6000 49.9970 49.8230 0.0000 0.0000 50.000
+ 18 -1.0000 0.0001 3.5000 -5.4000 120.321 22.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.8603 78.2964 -1.6304 0.2871 0.0000 0.0000 155.2933 -49.4134 2.4536 5.0000 10.4000 50.0010 49.8970 0.0000 0.0000 50.000
+ 19 -1.0000 0.0001 3.5000 -5.2000 120.833 24.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.0460 78.9990 -1.6304 0.2871 0.0000 0.0000 155.0358 -49.9283 2.4536 5.0000 10.2000 50.0010 49.9110 0.0000 0.0000 50.000
+ 20 -1.0000 0.0001 3.5000 -5.0000 120.503 24.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.2256 79.7128 -1.6304 0.2871 0.0000 0.0000 154.7702 -50.4597 2.4536 5.0000 10.0000 50.0050 49.9090 0.0000 0.0000 50.000
+ 21 -1.0000 0.0001 3.5000 -4.8000 120.286 15.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.3988 80.4383 -1.6304 0.2871 0.0000 0.0000 154.4956 -51.0086 2.4536 5.0000 9.8000 50.0040 49.9690 0.0000 0.0000 50.000
+ 22 -1.0000 0.0001 3.5000 -4.6000 120.591 9.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.5654 81.1762 -1.6304 0.2871 0.0000 0.0000 154.2120 -51.5757 2.4536 5.0000 9.6000 50.0020 49.8350 0.0000 0.0000 50.000
+ 23 -1.0000 0.0001 3.5000 -4.4000 120.229 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.7249 81.9270 -1.6304 0.2871 0.0000 0.0000 153.9188 -52.1624 2.4536 5.0000 9.4000 49.9990 49.8640 0.0000 0.0000 50.000
+ 24 -1.0000 0.0001 3.5000 -4.2000 120.221 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.8770 82.6917 -1.6304 0.2871 0.0000 0.0000 153.6152 -52.7696 2.4536 5.0000 9.2000 50.0020 49.8890 0.0000 0.0000 50.000
+ 25 -1.0000 0.0001 3.5000 -4.0000 120.579 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.0214 83.4710 -1.6304 0.2871 0.0000 0.0000 153.3007 -53.3986 2.4536 5.0000 9.0000 50.0020 49.9400 0.0000 0.0000 50.000
+ 26 -1.0000 0.0001 3.5000 -3.8000 120.656 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.1575 84.2657 -1.6304 0.2871 0.0000 0.0000 152.9746 -54.0507 2.4536 5.0000 8.8000 49.9980 49.9320 0.0000 0.0000 50.000
+ 27 -1.0000 0.0001 3.5000 -3.6000 120.837 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.2850 85.0768 -1.6304 0.2871 0.0000 0.0000 152.6362 -54.7275 2.4536 5.0000 8.6000 50.0050 49.9060 0.0000 0.0000 50.000
+ 28 -1.0000 0.0001 3.5000 -3.4000 120.462 5.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.4034 85.9052 -1.6304 0.2871 0.0000 0.0000 152.2845 -55.4305 2.4536 5.0000 8.4000 49.9990 49.8740 0.0000 0.0000 50.000
+# Sum of Counts = 336
+# Center of Mass = -6.154167+/-0.480015
+# Full Width Half-Maximum = 2.585800+/-0.226133
+# 6:04:39 PM 6/26/2012 scan completed.
+
+6:04:40 PM 6/26/2012 Executing "scantitle "LO at L (1.5, 0, 1.5), T=50K""
+
+Setting the scantitle to:
+LO at L (1.5, 0, 1.5), T=50K
+
+
+6:04:40 PM 6/26/2012 Executing "scan h 1.5 k 0 l 1.5 e -16.0 -10.5 0.25 preset mcu 12"
+
+
+# scan = 163
+# date = 6/26/2012
+# time = 6:04:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 1.5 e -16.0 -10.5 0.25 preset mcu 12
+# builtin_command = scan h 1.5 k 0 l 1.5 e -16.0 -10.5 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at L (1.5, 0, 1.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 1.5000 -16.0000 725.226 24.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 62.1769 51.5532 -1.6304 0.2871 0.0000 0.0000 162.8940 -34.2121 2.5294 5.0000 21.0000 50.0020 49.8240 0.0000 0.0000 50.000
+ 2 1.5000 0.0000 1.5000 -15.7500 724.628 13.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.0682 52.1751 -1.6304 0.2871 0.0000 0.0000 162.7880 -34.4240 2.5294 5.0000 20.7500 50.0000 49.8290 0.0000 0.0000 50.000
+ 3 1.5000 0.0000 1.5000 -15.5000 724.242 27.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 63.9573 52.7977 -1.6304 0.2871 0.0000 0.0000 162.6801 -34.6398 2.5294 5.0000 20.5000 50.0030 49.7640 0.0000 0.0000 50.000
+ 4 1.5000 0.0000 1.5000 -15.2500 724.996 23.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 64.8446 53.4210 -1.6304 0.2871 0.0000 0.0000 162.5701 -34.8598 2.5294 5.0000 20.2500 50.0010 49.8340 0.0000 0.0000 50.000
+ 5 1.5000 0.0000 1.5000 -15.0000 726.095 22.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7301 54.0455 -1.6304 0.2871 0.0000 0.0000 162.4580 -35.0840 2.5294 5.0000 20.0000 50.0000 49.8870 0.0000 0.0000 50.000
+ 6 1.5000 0.0000 1.5000 -14.7500 727.184 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 66.6141 54.6712 -1.6304 0.2871 0.0000 0.0000 162.3437 -35.3126 2.5294 5.0000 19.7500 50.0010 49.7770 0.0000 0.0000 50.000
+ 7 1.5000 0.0000 1.5000 -14.5000 726.531 32.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 67.4969 55.2983 -1.6304 0.2871 0.0000 0.0000 162.2271 -35.5458 2.5294 5.0000 19.5000 49.9970 49.8810 0.0000 0.0000 50.000
+ 8 1.5000 0.0000 1.5000 -14.2500 726.667 36.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 68.3787 55.9271 -1.6304 0.2871 0.0000 0.0000 162.1082 -35.7836 2.5294 5.0000 19.2500 49.9980 49.9070 0.0000 0.0000 50.000
+ 9 1.5000 0.0000 1.5000 -14.0000 726.305 40.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 69.2596 56.5577 -1.6304 0.2871 0.0000 0.0000 161.9869 -36.0262 2.5294 5.0000 19.0000 50.0000 49.8050 0.0000 0.0000 50.000
+ 10 1.5000 0.0000 1.5000 -13.7500 726.751 37.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 70.1400 57.1904 -1.6304 0.2871 0.0000 0.0000 161.8630 -36.2739 2.5294 5.0000 18.7500 49.9950 49.9030 0.0000 0.0000 50.000
+ 11 1.5000 0.0000 1.5000 -13.5000 727.776 33.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.0199 57.8254 -1.6304 0.2871 0.0000 0.0000 161.7366 -36.5268 2.5294 5.0000 18.5000 49.9970 49.7230 0.0000 0.0000 50.000
+ 12 1.5000 0.0000 1.5000 -13.2500 726.437 30.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 71.8996 58.4630 -1.6304 0.2871 0.0000 0.0000 161.6075 -36.7850 2.5294 5.0000 18.2500 50.0010 49.8380 0.0000 0.0000 50.000
+ 13 1.5000 0.0000 1.5000 -13.0000 727.726 27.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 72.7793 59.1032 -1.6304 0.2871 0.0000 0.0000 161.4756 -37.0488 2.5294 5.0000 18.0000 49.9990 49.8810 0.0000 0.0000 50.000
+ 14 1.5000 0.0000 1.5000 -12.7500 728.278 30.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 73.6592 59.7464 -1.6304 0.2871 0.0000 0.0000 161.3408 -37.3184 2.5294 5.0000 17.7500 50.0010 49.7800 0.0000 0.0000 50.000
+ 15 1.5000 0.0000 1.5000 -12.5000 726.320 20.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 74.5396 60.3928 -1.6304 0.2871 0.0000 0.0000 161.2029 -37.5939 2.5294 5.0000 17.5000 49.9990 49.8780 0.0000 0.0000 50.000
+ 16 1.5000 0.0000 1.5000 -12.2500 725.485 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 75.4206 61.0426 -1.6304 0.2871 0.0000 0.0000 161.0622 -37.8757 2.5294 5.0000 17.2500 50.0000 49.8840 0.0000 0.0000 50.000
+ 17 1.5000 0.0000 1.5000 -12.0000 726.332 26.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 76.3024 61.6961 -1.6304 0.2871 0.0000 0.0000 160.9181 -38.1638 2.5294 5.0000 17.0000 49.9990 49.8360 0.0000 0.0000 50.000
+ 18 1.5000 0.0000 1.5000 -11.7500 724.073 12.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 77.1852 62.3536 -1.6304 0.2871 0.0000 0.0000 160.7706 -38.4587 2.5294 5.0000 16.7500 50.0010 49.8370 0.0000 0.0000 50.000
+ 19 1.5000 0.0000 1.5000 -11.5000 723.757 14.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.0694 63.0152 -1.6304 0.2871 0.0000 0.0000 160.6198 -38.7605 2.5294 5.0000 16.5000 50.0000 49.8310 0.0000 0.0000 50.000
+ 20 1.5000 0.0000 1.5000 -11.2499 724.395 9.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 78.9550 63.6813 -1.6304 0.2871 0.0000 0.0000 160.4652 -39.0696 2.5294 5.0000 16.2499 50.0030 49.9160 0.0000 0.0000 50.000
+ 21 1.5000 0.0000 1.5000 -11.0000 725.589 29.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 79.8423 64.3522 -1.6304 0.2871 0.0000 0.0000 160.3070 -39.3861 2.5294 5.0000 16.0000 50.0000 49.7720 0.0000 0.0000 50.000
+ 22 1.5000 0.0000 1.5000 -10.7500 724.621 13.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.7316 65.0280 -1.6304 0.2871 0.0000 0.0000 160.1448 -39.7105 2.5294 5.0000 15.7500 49.9990 49.7380 0.0000 0.0000 50.000
+ 23 1.5000 0.0000 1.5000 -10.5000 723.853 12.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.6230 65.7093 -1.6304 0.2871 0.0000 0.0000 159.9785 -40.0431 2.5294 5.0000 15.5000 49.9970 49.7790 0.0000 0.0000 50.000
+# Sum of Counts = 547
+# Center of Mass = -13.479432+/-0.817517
+# Full Width Half-Maximum = 2.958995+/-0.342662
+# 10:44:23 PM 6/26/2012 scan completed.
+
+10:44:24 PM 6/26/2012 Executing "scantitle "LO at T (0, 0, 4.5), T=50K""
+
+Setting the scantitle to:
+LO at T (0, 0, 4.5), T=50K
+
+
+10:44:24 PM 6/26/2012 Executing "scan h 0 k 0 l 4.5 e -16.75 -11 0.25 preset mcu 12"
+
+
+# scan = 164
+# date = 6/26/2012
+# time = 10:44:24 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 0 k 0 l 4.5 e -16.75 -11 0.25 preset mcu 12
+# builtin_command = scan h 0 k 0 l 4.5 e -16.75 -11 0.25 preset mcu 12
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at T (0, 0, 4.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 12.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.0000 0.0001 4.5000 -16.7500 725.550 23.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.3248 44.3994 -1.6304 0.2871 0.0000 0.0000 163.2004 -33.5992 2.3912 5.0000 21.7500 50.0000 49.9300 0.0000 0.0000 50.000
+ 2 -0.0000 0.0001 4.5000 -16.5000 724.500 21.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.3458 45.0438 -1.6304 0.2871 0.0000 0.0000 163.1001 -33.7998 2.3912 5.0000 21.5000 50.0010 49.8470 0.0000 0.0000 50.000
+ 3 -0.0000 0.0001 4.5000 -16.2500 726.489 25.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.3722 45.6865 -1.6304 0.2871 0.0000 0.0000 162.9979 -34.0041 2.3912 5.0000 21.2500 49.9990 49.7880 0.0000 0.0000 50.000
+ 4 -0.0000 0.0001 4.5000 -16.0000 725.560 22.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4036 46.3278 -1.6304 0.2871 0.0000 0.0000 162.8940 -34.2121 2.3912 5.0000 21.0000 49.9980 49.8330 0.0000 0.0000 50.000
+ 5 -0.0000 0.0001 4.5000 -15.7500 725.867 27.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.4395 46.9680 -1.6304 0.2871 0.0000 0.0000 162.7880 -34.4240 2.3912 5.0000 20.7500 50.0000 49.8120 0.0000 0.0000 50.000
+ 6 -0.0000 0.0001 4.5000 -15.5000 726.315 16.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.4796 47.6073 -1.6304 0.2871 0.0000 0.0000 162.6801 -34.6398 2.3912 5.0000 20.5000 49.9970 49.9100 0.0000 0.0000 50.000
+ 7 -0.0000 0.0001 4.5000 -15.2500 725.376 30.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -12.5237 48.2460 -1.6304 0.2871 0.0000 0.0000 162.5701 -34.8598 2.3912 5.0000 20.2500 50.0000 49.8050 0.0000 0.0000 50.000
+ 8 -0.0000 0.0001 4.5000 -15.0000 725.638 36.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -11.5714 48.8842 -1.6304 0.2871 0.0000 0.0000 162.4580 -35.0840 2.3912 5.0000 20.0000 50.0000 49.7910 0.0000 0.0000 50.000
+ 9 -0.0000 0.0001 4.5000 -14.7500 726.886 34.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -10.6223 49.5222 -1.6304 0.2871 0.0000 0.0000 162.3434 -35.3126 2.3912 5.0000 19.7500 50.0010 49.8270 0.0000 0.0000 50.000
+ 10 -0.0000 0.0001 4.5000 -14.5000 726.577 29.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -9.6763 50.1603 -1.6304 0.2871 0.0000 0.0000 162.2271 -35.5458 2.3912 5.0000 19.5000 49.9980 49.8290 0.0000 0.0000 50.000
+ 11 -0.0000 0.0001 4.5000 -14.2500 725.648 22.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -8.7330 50.7986 -1.6304 0.2871 0.0000 0.0000 162.1081 -35.7836 2.3912 5.0000 19.2500 49.9980 49.7150 0.0000 0.0000 50.000
+ 12 -0.0000 0.0001 4.5000 -14.0000 726.624 29.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -7.7921 51.4375 -1.6304 0.2871 0.0000 0.0000 161.9867 -36.0262 2.3912 5.0000 19.0000 50.0050 49.8210 0.0000 0.0000 50.000
+ 13 -0.0000 0.0001 4.5000 -13.7500 726.551 30.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -6.8534 52.0772 -1.6304 0.2871 0.0000 0.0000 161.8630 -36.2739 2.3912 5.0000 18.7500 49.9990 49.7240 0.0000 0.0000 50.000
+ 14 -0.0000 0.0001 4.5000 -13.5000 726.320 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -5.9166 52.7178 -1.6304 0.2871 0.0000 0.0000 161.7366 -36.5268 2.3912 5.0000 18.5000 49.9970 49.7840 0.0000 0.0000 50.000
+ 15 -0.0000 0.0001 4.5000 -13.2500 725.538 21.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.9815 53.3596 -1.6304 0.2871 0.0000 0.0000 161.6075 -36.7850 2.3912 5.0000 18.2500 50.0000 49.7900 0.0000 0.0000 50.000
+ 16 -0.0000 0.0001 4.5000 -13.0000 727.713 25.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -4.0478 54.0029 -1.6304 0.2871 0.0000 0.0000 161.4756 -37.0488 2.3912 5.0000 18.0000 49.9990 49.7460 0.0000 0.0000 50.000
+ 17 -0.0000 0.0001 4.5000 -12.7500 726.103 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -3.1152 54.6478 -1.6304 0.2871 0.0000 0.0000 161.3408 -37.3184 2.3912 5.0000 17.7500 49.9980 49.8510 0.0000 0.0000 50.000
+ 18 -0.0000 0.0001 4.5000 -12.5000 727.844 19.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -2.1835 55.2947 -1.6304 0.2871 0.0000 0.0000 161.2030 -37.5939 2.3912 5.0000 17.5000 50.0060 49.8260 0.0000 0.0000 50.000
+ 19 -0.0000 0.0001 4.5000 -12.2500 728.940 24.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.2524 55.9437 -1.6304 0.2871 0.0000 0.0000 161.0622 -37.8756 2.3912 5.0000 17.2500 50.0010 49.7730 0.0000 0.0000 50.000
+ 20 -0.0000 0.0001 4.5000 -12.0000 727.715 14.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -0.3218 56.5951 -1.6304 0.2871 0.0000 0.0000 160.9181 -38.1638 2.3912 5.0000 17.0000 50.0020 49.8070 0.0000 0.0000 50.000
+ 21 -0.0000 0.0001 4.5000 -11.7500 726.933 8.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 0.6088 57.2492 -1.6304 0.2871 0.0000 0.0000 160.7706 -38.4587 2.3912 5.0000 16.7500 49.9970 49.8240 0.0000 0.0000 50.000
+ 22 -0.0000 0.0001 4.5000 -11.5000 727.993 11.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 1.5394 57.9062 -1.6304 0.2871 0.0000 0.0000 160.6198 -38.7605 2.3912 5.0000 16.5000 49.9980 49.6980 0.0000 0.0000 50.000
+ 23 -0.0000 0.0001 4.5000 -11.2500 727.821 13.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 2.4703 58.5664 -1.6304 0.2871 0.0000 0.0000 160.4652 -39.0695 2.3912 5.0000 16.2500 50.0020 49.8140 0.0000 0.0000 50.000
+ 24 -0.0000 0.0001 4.5000 -11.0000 727.841 16.000 995376.000 12.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 3.4019 59.2299 -1.6304 0.2871 0.0000 0.0000 160.3070 -39.3861 2.3912 5.0000 16.0000 49.9980 49.8400 0.0000 0.0000 50.000
+# Sum of Counts = 533
+# Center of Mass = -14.181989+/-0.871424
+# Full Width Half-Maximum = 3.157346+/-0.357964
+# 3:36:49 AM 6/27/2012 scan completed.
+
+3:36:49 AM 6/27/2012 Executing "scantitle "LO at X (1.5, 0, 0), T=50K""
+
+Setting the scantitle to:
+LO at X (1.5, 0, 0), T=50K
+
+
+3:36:49 AM 6/27/2012 Executing "scan h 1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 15"
+
+
+# scan = 165
+# date = 6/27/2012
+# time = 3:36:49 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h 1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 15
+# builtin_command = scan h 1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 15
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LO at X (1.5, 0, 0), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 15.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 1.5000 0.0000 0.0000 -14.5000 908.606 56.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 80.7098 50.5083 -1.6304 0.2871 0.0000 0.0000 162.2271 -35.5458 2.4005 5.0000 19.5000 50.0060 49.8270 0.0000 0.0000 50.000
+ 2 1.5000 0.0000 0.0000 -14.2500 909.895 62.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 81.6485 51.1457 -1.6304 0.2871 0.0000 0.0000 162.1082 -35.7836 2.4005 5.0000 19.2500 50.0010 49.8800 0.0000 0.0000 50.000
+ 3 1.5000 0.0000 0.0000 -14.0000 910.862 24.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 82.5848 51.7838 -1.6304 0.2871 0.0000 0.0000 161.9869 -36.0262 2.4005 5.0000 19.0000 50.0000 49.7870 0.0000 0.0000 50.000
+ 4 1.5000 0.0000 0.0000 -13.7500 911.047 30.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 83.5190 52.4227 -1.6304 0.2871 0.0000 0.0000 161.8630 -36.2739 2.4005 5.0000 18.7500 49.9980 49.8400 0.0000 0.0000 50.000
+ 5 1.5000 0.0000 0.0000 -13.5000 911.768 33.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 84.4515 53.0626 -1.6304 0.2871 0.0000 0.0000 161.7366 -36.5268 2.4005 5.0000 18.5000 50.0020 49.8490 0.0000 0.0000 50.000
+ 6 1.5000 0.0000 0.0000 -13.2500 911.141 32.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 85.3824 53.7040 -1.6304 0.2871 0.0000 0.0000 161.6075 -36.7850 2.4005 5.0000 18.2500 49.9990 49.8090 0.0000 0.0000 50.000
+ 7 1.5000 0.0000 0.0000 -13.0000 910.936 21.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 86.3121 54.3468 -1.6304 0.2871 0.0000 0.0000 161.4756 -37.0488 2.4005 5.0000 18.0000 50.0020 49.8710 0.0000 0.0000 50.000
+ 8 1.5000 0.0000 0.0000 -12.7500 911.334 20.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 87.2407 54.9914 -1.6304 0.2871 0.0000 0.0000 161.3408 -37.3184 2.4005 5.0000 17.7500 50.0010 49.8370 0.0000 0.0000 50.000
+ 9 1.5000 0.0000 0.0000 -12.5000 911.327 21.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 88.1685 55.6380 -1.6304 0.2871 0.0000 0.0000 161.2030 -37.5939 2.4005 5.0000 17.5000 50.0020 49.9640 0.0000 0.0000 50.000
+ 10 1.5000 0.0000 0.0000 -12.2500 911.736 19.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 89.0958 56.2868 -1.6304 0.2871 0.0000 0.0000 161.0622 -37.8756 2.4005 5.0000 17.2500 49.9980 49.8230 0.0000 0.0000 50.000
+ 11 1.5000 0.0000 0.0000 -12.0000 912.728 27.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 90.0228 56.9382 -1.6304 0.2871 0.0000 0.0000 160.9181 -38.1638 2.4005 5.0000 17.0000 50.0010 49.8850 0.0000 0.0000 50.000
+ 12 1.5000 0.0000 0.0000 -11.7500 911.874 34.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 90.9497 57.5922 -1.6304 0.2871 0.0000 0.0000 160.7706 -38.4587 2.4005 5.0000 16.7500 50.0000 49.7760 0.0000 0.0000 50.000
+ 13 1.5000 0.0000 0.0000 -11.5000 911.916 21.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 91.8768 58.2493 -1.6304 0.2871 0.0000 0.0000 160.6198 -38.7605 2.4005 5.0000 16.5000 49.9980 49.7190 0.0000 0.0000 50.000
+ 14 1.5000 0.0000 0.0000 -11.2500 913.935 17.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 92.8043 58.9096 -1.6304 0.2871 0.0000 0.0000 160.4652 -39.0695 2.4005 5.0000 16.2500 50.0000 49.8320 0.0000 0.0000 50.000
+ 15 1.5000 0.0000 0.0000 -11.0000 914.649 20.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 93.7325 59.5735 -1.6304 0.2871 0.0000 0.0000 160.3070 -39.3861 2.4005 5.0000 16.0000 49.9970 49.7640 0.0000 0.0000 50.000
+ 16 1.5000 0.0000 0.0000 -10.7500 912.892 24.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 94.6616 60.2412 -1.6304 0.2871 0.0000 0.0000 160.1448 -39.7105 2.4005 5.0000 15.7500 50.0000 49.9350 0.0000 0.0000 50.000
+ 17 1.5000 0.0000 0.0000 -10.5000 912.008 19.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 95.5920 60.9130 -1.6304 0.2871 0.0000 0.0000 159.9785 -40.0430 2.4005 5.0000 15.5000 49.9990 49.7420 0.0000 0.0000 50.000
+ 18 1.5000 0.0000 0.0000 -10.2500 912.697 22.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 96.5236 61.5891 -1.6304 0.2871 0.0000 0.0000 159.8079 -40.3841 2.4005 5.0000 15.2500 50.0000 50.0000 0.0000 0.0000 50.000
+ 19 1.5000 0.0000 0.0000 -10.0000 912.267 27.000 1244220.000 15.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 97.4570 62.2700 -1.6304 0.2871 0.0000 0.0000 159.6328 -40.7340 2.4005 5.0000 15.0000 49.9990 49.7800 0.0000 0.0000 50.000
+# Sum of Counts = 529
+# Center of Mass = -12.601134+/-0.777382
+# Full Width Half-Maximum = 2.905037+/-0.417489
+# 8:26:56 AM 6/27/2012 scan completed.
+
+8:26:56 AM 6/27/2012 Executing "scantitle "LA+TA mid G-X (-0.75, 0, 1.5), T=50K""
+
+Setting the scantitle to:
+LA+TA mid G-X (-0.75, 0, 1.5), T=50K
+
+
+8:26:57 AM 6/27/2012 Executing "scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 8"
+
+
+# scan = 166
+# date = 6/27/2012
+# time = 8:26:57 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 8
+# builtin_command = scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 8
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA mid G-X (-0.75, 0, 1.5), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 8.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -0.7500 0.0000 1.5000 -7.5000 486.763 12.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -76.3406 33.4115 -1.6304 0.2871 0.0000 0.0000 157.5889 -44.8223 1.4408 5.0000 12.5000 50.0030 49.8160 0.0000 0.0000 50.000
+ 2 -0.7500 0.0000 1.5000 -7.2500 485.702 9.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -74.7038 34.1838 -1.6304 0.2871 0.0000 0.0000 157.3487 -45.3025 1.4408 5.0000 12.2500 49.9990 49.7910 0.0000 0.0000 50.000
+ 3 -0.7500 0.0000 1.5000 -7.0000 486.615 14.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -73.0825 34.9477 -1.6304 0.2871 0.0000 0.0000 157.1007 -45.7985 1.4408 5.0000 12.0000 49.9980 49.7850 0.0000 0.0000 50.000
+ 4 -0.7500 0.0000 1.5000 -6.7500 487.627 23.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -71.4750 35.7042 -1.6304 0.2871 0.0000 0.0000 156.8444 -46.3112 1.4408 5.0000 11.7500 50.0010 49.8020 0.0000 0.0000 50.000
+ 5 -0.7500 0.0000 1.5000 -6.5000 486.798 41.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -69.8798 36.4539 -1.6304 0.2871 0.0000 0.0000 156.5792 -46.8416 1.4408 5.0000 11.5000 50.0050 49.8150 0.0000 0.0000 50.000
+ 6 -0.7500 0.0000 1.5000 -6.2500 485.801 28.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -68.2954 37.1974 -1.6304 0.2871 0.0000 0.0000 156.3046 -47.3907 1.4408 5.0000 11.2500 50.0000 49.9410 0.0000 0.0000 50.000
+ 7 -0.7500 0.0000 1.5000 -6.0000 486.286 19.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -66.7203 37.9356 -1.6304 0.2871 0.0000 0.0000 156.0202 -47.9596 1.4408 5.0000 11.0000 50.0030 49.9290 0.0000 0.0000 50.000
+ 8 -0.7500 0.0000 1.5000 -5.7500 485.810 14.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -65.1532 38.6688 -1.6304 0.2871 0.0000 0.0000 155.7252 -48.5495 1.4408 5.0000 10.7500 49.9980 49.7010 0.0000 0.0000 50.000
+ 9 -0.7500 0.0000 1.5000 -5.5000 487.399 14.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -63.5929 39.3976 -1.6304 0.2871 0.0000 0.0000 155.4190 -49.1619 1.4408 5.0000 10.5000 50.0010 49.8370 0.0000 0.0000 50.000
+ 10 -0.7500 0.0000 1.5000 -5.2500 487.149 12.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -62.0381 40.1227 -1.6304 0.2871 0.0000 0.0000 155.1010 -49.7981 1.4408 5.0000 10.2500 50.0020 49.8850 0.0000 0.0000 50.000
+ 11 -0.7500 0.0000 1.5000 -5.0000 485.692 11.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -60.4877 40.8444 -1.6304 0.2871 0.0000 0.0000 154.7702 -50.4597 1.4408 5.0000 10.0000 49.9980 49.7820 0.0000 0.0000 50.000
+ 12 -0.7500 0.0000 1.5000 -4.7500 485.092 11.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -58.9404 41.5634 -1.6304 0.2871 0.0000 0.0000 154.4257 -51.1486 1.4408 5.0000 9.7500 50.0010 49.8160 0.0000 0.0000 50.000
+ 13 -0.7500 0.0000 1.5000 -4.5000 484.993 11.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -57.3951 42.2800 -1.6304 0.2871 0.0000 0.0000 154.0667 -51.8666 1.4408 5.0000 9.5000 50.0000 49.7530 0.0000 0.0000 50.000
+ 14 -0.7500 0.0000 1.5000 -4.2500 483.474 9.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -55.8507 42.9946 -1.6304 0.2871 0.0000 0.0000 153.6921 -52.6158 1.4408 5.0000 9.2500 50.0010 49.8280 0.0000 0.0000 50.000
+ 15 -0.7500 0.0000 1.5000 -4.0000 484.676 7.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -54.3061 43.7078 -1.6304 0.2871 0.0000 0.0000 153.3006 -53.3986 1.4408 5.0000 9.0000 49.9990 49.8450 0.0000 0.0000 50.000
+ 16 -0.7500 0.0000 1.5000 -3.7500 484.039 9.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -52.7601 44.4200 -1.6304 0.2871 0.0000 0.0000 152.8912 -54.2176 1.4408 5.0000 8.7500 49.9970 49.8590 0.0000 0.0000 50.000
+ 17 -0.7500 0.0000 1.5000 -3.5000 483.141 15.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -51.2116 45.1316 -1.6304 0.2871 0.0000 0.0000 152.4622 -55.0756 1.4408 5.0000 8.5000 49.9990 49.7670 0.0000 0.0000 50.000
+ 18 -0.7500 0.0000 1.5000 -3.2500 483.387 15.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -49.6595 45.8429 -1.6304 0.2871 0.0000 0.0000 152.0120 -55.9760 1.4408 5.0000 8.2500 50.0030 49.7960 0.0000 0.0000 50.000
+ 19 -0.7500 0.0000 1.5000 -3.0000 484.001 15.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -48.1026 46.5544 -1.6304 0.2871 0.0000 0.0000 151.5388 -56.9223 1.4408 5.0000 8.0000 50.0010 49.9340 0.0000 0.0000 50.000
+ 20 -0.7500 0.0000 1.5000 -2.7500 483.540 19.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -46.5396 47.2666 -1.6304 0.2871 0.0000 0.0000 151.0407 -57.9186 1.4408 5.0000 7.7500 49.9980 49.8160 0.0000 0.0000 50.000
+ 21 -0.7500 0.0000 1.5000 -2.5000 483.653 20.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -44.9694 47.9798 -1.6304 0.2871 0.0000 0.0000 150.5151 -58.9695 1.4408 5.0000 7.5000 50.0030 49.8360 0.0000 0.0000 50.000
+ 22 -0.7500 0.0000 1.5000 -2.2500 484.572 10.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -43.3906 48.6944 -1.6304 0.2871 0.0000 0.0000 149.9599 -60.0802 1.4408 5.0000 7.2500 50.0070 49.9220 0.0000 0.0000 50.000
+ 23 -0.7500 0.0000 1.5000 -2.0000 484.689 9.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -41.8019 49.4109 -1.6304 0.2871 0.0000 0.0000 149.3717 -61.2567 1.4408 5.0000 7.0000 50.0040 49.8930 0.0000 0.0000 50.000
+ 24 -0.7500 0.0000 1.5000 -1.7500 484.513 11.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -40.2018 50.1297 -1.6304 0.2871 0.0000 0.0000 148.7471 -62.5057 1.4408 5.0000 6.7500 50.0000 49.8050 0.0000 0.0000 50.000
+ 25 -0.7500 0.0000 1.5000 -1.5000 484.238 8.000 663584.000 8.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -38.5889 50.8512 -1.6304 0.2871 0.0000 0.0000 148.0824 -63.8352 1.4408 5.0000 6.5000 49.9980 49.8960 0.0000 0.0000 50.000
+# Sum of Counts = 366
+# Center of Mass = -4.812842+/-0.367770
+# Full Width Half-Maximum = 3.564480+/-0.221748
+# 11:51:49 AM 6/27/2012 scan completed.
+
+11:51:49 AM 6/27/2012 Executing "scantitle "LA+TA G-T (-1, 0, 2.9), T=50K""
+
+Setting the scantitle to:
+LA+TA G-T (-1, 0, 2.9), T=50K
+
+
+11:51:49 AM 6/27/2012 Executing "scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 2"
+
+
+# scan = 167
+# date = 6/27/2012
+# time = 11:51:49 AM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 2
+# builtin_command = scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 2
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = LA+TA G-T (-1, 0, 2.9), T=50K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = mcu
+# preset_value = 2.000000
+# def_x = e
+# def_y = detector
+# col_headers =
+# Pt. h k l e time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s1 s2 sgl sgu stl stu a1 a2 q ei ef cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 -1.0000 0.0001 2.9000 -6.5000 121.283 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.7316 65.5698 -1.6304 0.2871 0.0000 0.0000 156.5792 -46.8416 2.2217 5.0000 11.5000 50.0010 49.9020 0.0000 0.0000 50.000
+ 2 -1.0000 0.0001 2.9000 -6.4000 121.233 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -30.3162 65.8723 -1.6304 0.2871 0.0000 0.0000 156.4706 -47.0589 2.2217 5.0000 11.4000 50.0040 49.7950 0.0000 0.0000 50.000
+ 3 -1.0000 0.0001 2.9000 -6.3000 121.230 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.9000 66.1762 -1.6304 0.2871 0.0000 0.0000 156.3603 -47.2793 2.2217 5.0000 11.3000 49.9970 49.9000 0.0000 0.0000 50.000
+ 4 -1.0000 0.0001 2.9000 -6.2000 121.299 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.4830 66.4816 -1.6304 0.2871 0.0000 0.0000 156.2486 -47.5029 2.2217 5.0000 11.2000 50.0010 49.7940 0.0000 0.0000 50.000
+ 5 -1.0000 0.0001 2.9000 -6.1000 120.902 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -29.0650 66.7886 -1.6304 0.2871 0.0000 0.0000 156.1352 -47.7296 2.2217 5.0000 11.1000 50.0060 49.7590 0.0000 0.0000 50.000
+ 6 -1.0000 0.0001 2.9000 -6.0000 121.328 15.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.6461 67.0971 -1.6304 0.2871 0.0000 0.0000 156.0202 -47.9596 2.2217 5.0000 11.0000 50.0000 49.7070 0.0000 0.0000 50.000
+ 7 -1.0000 0.0001 2.9000 -5.9000 121.510 18.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -28.2263 67.4073 -1.6304 0.2871 0.0000 0.0000 155.9035 -48.1930 2.2217 5.0000 10.9000 49.9980 49.8110 0.0000 0.0000 50.000
+ 8 -1.0000 0.0001 2.9000 -5.8000 121.229 67.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.8055 67.7190 -1.6304 0.2871 0.0000 0.0000 155.7851 -48.4298 2.2217 5.0000 10.8000 50.0010 49.7700 0.0000 0.0000 50.000
+ 9 -1.0000 0.0001 2.9000 -5.7000 121.616 57.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -27.3837 68.0325 -1.6304 0.2871 0.0000 0.0000 155.6650 -48.6702 2.2217 5.0000 10.7000 49.9990 49.7250 0.0000 0.0000 50.000
+ 10 -1.0000 0.0001 2.9000 -5.6000 121.115 23.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.9608 68.3477 -1.6304 0.2871 0.0000 0.0000 155.5430 -48.9142 2.2217 5.0000 10.6000 49.9980 49.8290 0.0000 0.0000 50.000
+ 11 -1.0000 0.0001 2.9000 -5.5000 121.065 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.5369 68.6647 -1.6304 0.2871 0.0000 0.0000 155.4190 -49.1619 2.2217 5.0000 10.5000 50.0010 49.6570 0.0000 0.0000 50.000
+ 12 -1.0000 0.0001 2.9000 -5.4000 120.882 7.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -26.1119 68.9835 -1.6304 0.2871 0.0000 0.0000 155.2933 -49.4134 2.2217 5.0000 10.4000 50.0040 49.8580 0.0000 0.0000 50.000
+ 13 -1.0000 0.0001 2.9000 -5.3000 120.916 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.6857 69.3042 -1.6304 0.2871 0.0000 0.0000 155.1656 -49.6688 2.2217 5.0000 10.3000 50.0020 49.8040 0.0000 0.0000 50.000
+ 14 -1.0000 0.0001 2.9000 -5.2000 121.543 5.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -25.2584 69.6269 -1.6304 0.2871 0.0000 0.0000 155.0358 -49.9283 2.2217 5.0000 10.2000 50.0040 49.8280 0.0000 0.0000 50.000
+ 15 -1.0000 0.0001 2.9000 -5.1000 121.671 2.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.8298 69.9515 -1.6304 0.2871 0.0000 0.0000 154.9041 -50.1919 2.2217 5.0000 10.1000 50.0020 49.7840 0.0000 0.0000 50.000
+ 16 -1.0000 0.0001 2.9000 -5.0000 121.000 5.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -24.4001 70.2782 -1.6304 0.2871 0.0000 0.0000 154.7702 -50.4597 2.2217 5.0000 10.0000 50.0020 49.7640 0.0000 0.0000 50.000
+ 17 -1.0000 0.0001 2.9000 -4.9000 120.618 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.9691 70.6069 -1.6304 0.2871 0.0000 0.0000 154.6341 -50.7319 2.2217 5.0000 9.9000 49.9990 49.8600 0.0000 0.0000 50.000
+ 18 -1.0000 0.0001 2.9000 -4.8000 120.818 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.5367 70.9378 -1.6304 0.2871 0.0000 0.0000 154.4958 -51.0086 2.2217 5.0000 9.8000 50.0000 49.8080 0.0000 0.0000 50.000
+ 19 -1.0000 0.0001 2.9000 -4.7000 121.278 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -23.1030 71.2709 -1.6304 0.2871 0.0000 0.0000 154.3549 -51.2898 2.2217 5.0000 9.7000 49.9990 49.6870 0.0000 0.0000 50.000
+ 20 -1.0000 0.0001 2.9000 -4.6000 121.149 3.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.6680 71.6062 -1.6304 0.2871 0.0000 0.0000 154.2122 -51.5757 2.2217 5.0000 9.6000 50.0020 49.6970 0.0000 0.0000 50.000
+ 21 -1.0000 0.0001 2.9000 -4.5000 120.967 12.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -22.2315 71.9440 -1.6304 0.2871 0.0000 0.0000 154.0666 -51.8667 2.2217 5.0000 9.5000 50.0020 49.7450 0.0000 0.0000 50.000
+ 22 -1.0000 0.0001 2.9000 -4.4000 121.275 12.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.7936 72.2841 -1.6304 0.2871 0.0000 0.0000 153.9188 -52.1624 2.2217 5.0000 9.4000 49.9990 49.8060 0.0000 0.0000 50.000
+ 23 -1.0000 0.0001 2.9000 -4.3000 120.921 38.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -21.3542 72.6266 -1.6304 0.2871 0.0000 0.0000 153.7683 -52.4633 2.2217 5.0000 9.3000 49.9980 49.8690 0.0000 0.0000 50.000
+ 24 -1.0000 0.0001 2.9000 -4.2000 121.477 66.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.9132 72.9717 -1.6304 0.2871 0.0000 0.0000 153.6152 -52.7696 2.2217 5.0000 9.2000 49.9970 49.8070 0.0000 0.0000 50.000
+ 25 -1.0000 0.0001 2.9000 -4.1000 121.063 88.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.4706 73.3194 -1.6304 0.2871 0.0000 0.0000 153.4594 -53.0813 2.2217 5.0000 9.1000 50.0030 49.7930 0.0000 0.0000 50.000
+ 26 -1.0000 0.0001 2.9000 -4.0000 120.982 56.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -20.0264 73.6698 -1.6304 0.2871 0.0000 0.0000 153.3007 -53.3986 2.2217 5.0000 9.0000 50.0010 49.7700 0.0000 0.0000 50.000
+ 27 -1.0000 0.0001 2.9000 -3.9000 121.383 45.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.5806 74.0230 -1.6304 0.2871 0.0000 0.0000 153.1392 -53.7217 2.2217 5.0000 8.9000 49.9960 49.9110 0.0000 0.0000 50.000
+ 28 -1.0000 0.0001 2.9000 -3.8000 121.098 37.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -19.1330 74.3789 -1.6304 0.2871 0.0000 0.0000 152.9746 -54.0507 2.2217 5.0000 8.8000 49.9990 49.8200 0.0000 0.0000 50.000
+ 29 -1.0000 0.0001 2.9000 -3.7000 121.397 48.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.6837 74.7378 -1.6304 0.2871 0.0000 0.0000 152.8070 -54.3860 2.2217 5.0000 8.7000 49.9980 49.7590 0.0000 0.0000 50.000
+ 30 -1.0000 0.0001 2.9000 -3.6000 121.619 142.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -18.2325 75.0997 -1.6304 0.2871 0.0000 0.0000 152.6362 -54.7275 2.2217 5.0000 8.6000 49.9980 49.7870 0.0000 0.0000 50.000
+ 31 -1.0000 0.0001 2.9000 -3.5000 121.172 167.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.7795 75.4647 -1.6304 0.2871 0.0000 0.0000 152.4622 -55.0756 2.2217 5.0000 8.5000 50.0000 49.9290 0.0000 0.0000 50.000
+ 32 -1.0000 0.0001 2.9000 -3.4000 121.075 57.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -17.3246 75.8329 -1.6304 0.2871 0.0000 0.0000 152.2847 -55.4305 2.2217 5.0000 8.4000 50.0040 49.9320 0.0000 0.0000 50.000
+ 33 -1.0000 0.0001 2.9000 -3.3000 121.447 25.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.8677 76.2044 -1.6304 0.2871 0.0000 0.0000 152.1038 -55.7924 2.2217 5.0000 8.3000 49.9990 49.7540 0.0000 0.0000 50.000
+ 34 -1.0000 0.0001 2.9000 -3.2000 121.169 14.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -16.4087 76.5793 -1.6304 0.2871 0.0000 0.0000 151.9191 -56.1615 2.2217 5.0000 8.2000 50.0020 49.8120 0.0000 0.0000 50.000
+ 35 -1.0000 0.0001 2.9000 -3.1000 121.326 9.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.9477 76.9576 -1.6304 0.2871 0.0000 0.0000 151.7310 -56.5380 2.2217 5.0000 8.1000 50.0000 49.8440 0.0000 0.0000 50.000
+ 36 -1.0000 0.0001 2.9000 -3.0000 121.279 9.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.4846 77.3396 -1.6304 0.2871 0.0000 0.0000 151.5387 -56.9223 2.2217 5.0000 8.0000 50.0040 49.6590 0.0000 0.0000 50.000
+ 37 -1.0000 0.0001 2.9000 -2.9000 121.144 10.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -15.0192 77.7253 -1.6304 0.2871 0.0000 0.0000 151.3427 -57.3146 2.2217 5.0000 7.9000 50.0040 49.7460 0.0000 0.0000 50.000
+ 38 -1.0000 0.0001 2.9000 -2.8000 121.044 9.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.5516 78.1148 -1.6304 0.2871 0.0000 0.0000 151.1424 -57.7152 2.2217 5.0000 7.8000 50.0010 49.8080 0.0000 0.0000 50.000
+ 39 -1.0000 0.0001 2.9000 -2.7000 121.203 4.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -14.0816 78.5083 -1.6304 0.2871 0.0000 0.0000 150.9378 -58.1243 2.2217 5.0000 7.7000 49.9960 49.8110 0.0000 0.0000 50.000
+ 40 -1.0000 0.0001 2.9000 -2.6000 120.897 6.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.6092 78.9059 -1.6304 0.2871 0.0000 0.0000 150.7289 -58.5423 2.2217 5.0000 7.6000 49.9970 49.8230 0.0000 0.0000 50.000
+ 41 -1.0000 0.0001 2.9000 -2.5000 120.985 2.000 165896.000 2.000 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -13.1344 79.3077 -1.6304 0.2871 0.0000 0.0000 150.5152 -58.9695 2.2217 5.0000 7.5000 49.9990 49.8290 0.0000 0.0000 50.000
+# Sum of Counts = 1107
+# Center of Mass = -4.165041+/-0.179114
+# Full Width Half-Maximum = 1.810595+/-0.093050
+# 1:16:36 PM 6/27/2012 scan completed.
+
+1:16:37 PM 6/27/2012 Executing "method temp set_setpoint d 200.000000"
+ Derived from "set_temp 200"
+
+Return Code: 0
+Integer returned values:
+Double returned values:
+String returned values:
+
+
+1:19:17 PM 6/27/2012 Executing "ef 5"
+
+Setting the final energy to 5.000meV and the configuration to "Fixed Ef".
+
+
+1:19:20 PM 6/27/2012 Executing "drive e 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+mfocus 34.98513
+
+Drive completed.
+
+
+1:19:47 PM 6/27/2012 Executing "drive h 0.000000 k 0.000000 l 3.000000 e 0.000000"
+ Derived from "br 0 0 3"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 61.74428
+s1 31.11491
+sgl -1.63300
+sgu 0.28707
+mfocus 34.98513
+
+Drive completed.
+
+
+1:21:19 PM 6/27/2012 Executing "preset time 1"
+
+
+Setting the default preset channel to: time
+and the default preset value to: 1.000000
+
+
+1:21:31 PM 6/27/2012 Executing "scantitle "Bi (003) check at 50 K""
+
+Setting the scantitle to:
+Bi (003) check at 50 K
+
+
+1:21:34 PM 6/27/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 168
+# date = 6/27/2012
+# time = 1:21:34 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) check at 50 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 30.1149 1.000 744.000 1377.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0174 0.0001 2.9995 5.0000 5.0000 0.0000 167.5340 71.9170 0.0000 0.0000 200.000
+ 2 30.2149 1.000 957.000 1363.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0157 0.0001 2.9996 5.0000 5.0000 0.0000 167.8440 72.0840 0.0000 0.0000 200.000
+ 3 30.3149 1.000 1279.000 1415.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0139 0.0001 2.9997 5.0000 5.0000 0.0000 168.1350 72.2090 0.0000 0.0000 200.000
+ 4 30.4149 1.000 1903.000 1406.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0122 0.0001 2.9998 5.0000 5.0000 0.0000 168.4160 72.3750 0.0000 0.0000 200.000
+ 5 30.5149 1.000 3120.000 1435.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0105 0.0001 2.9998 5.0000 5.0000 0.0000 168.6850 72.4860 0.0000 0.0000 200.000
+ 6 30.6149 1.000 5956.000 1376.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0087 0.0001 2.9999 5.0000 5.0000 0.0000 168.9670 72.6570 0.0000 0.0000 200.000
+ 7 30.7149 1.000 13591.000 1428.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0070 0.0001 2.9999 5.0000 5.0000 0.0000 169.2620 72.8060 0.0000 0.0000 200.000
+ 8 30.8149 1.000 33181.000 1425.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0052 0.0001 3.0000 5.0000 5.0000 0.0000 169.5530 72.8990 0.0000 0.0000 200.000
+ 9 30.9149 1.000 64374.000 1389.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0035 0.0001 3.0000 5.0000 5.0000 0.0000 169.8350 73.0650 0.0000 0.0000 200.000
+ 10 31.0149 1.000 91247.000 1327.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0018 0.0001 3.0000 5.0000 5.0000 0.0000 170.1210 73.1790 0.0000 0.0000 200.000
+ 11 31.1149 1.000 99835.000 1391.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0000 0.0001 3.0000 5.0000 5.0000 0.0000 170.4160 73.2760 0.0000 0.0000 200.000
+ 12 31.2149 1.000 88212.000 1357.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0017 0.0001 3.0000 5.0000 5.0000 0.0000 170.7020 73.4670 0.0000 0.0000 200.000
+ 13 31.3149 1.000 61644.000 1383.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0035 0.0001 3.0000 5.0000 5.0000 0.0000 170.9960 73.6480 0.0000 0.0000 200.000
+ 14 31.4149 1.000 32050.000 1419.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0052 0.0001 3.0000 5.0000 5.0000 0.0000 171.2970 73.7760 0.0000 0.0000 200.000
+ 15 31.5149 1.000 13825.000 1333.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0069 0.0001 2.9999 5.0000 5.0000 0.0000 171.5980 73.8950 0.0000 0.0000 200.000
+ 16 31.6149 1.000 5973.000 1397.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0087 0.0001 2.9999 5.0000 5.0000 0.0000 171.9050 74.0610 0.0000 0.0000 200.000
+ 17 31.7149 1.000 2865.000 1356.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0104 0.0001 2.9998 5.0000 5.0000 0.0000 172.1890 74.2360 0.0000 0.0000 200.000
+ 18 31.8149 1.000 1609.000 1306.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0121 0.0001 2.9998 5.0000 5.0000 0.0000 172.4900 74.3330 0.0000 0.0000 200.000
+ 19 31.9149 1.000 1026.000 1327.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0139 0.0001 2.9997 5.0000 5.0000 0.0000 172.7650 74.5240 0.0000 0.0000 200.000
+ 20 32.0149 1.000 747.000 1420.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0156 0.0001 2.9996 5.0000 5.0000 0.0000 173.0580 74.6500 0.0000 0.0000 200.000
+ 21 32.1149 1.000 586.000 1351.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 61.7443 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 0.0174 0.0001 2.9995 5.0000 5.0000 0.0000 173.3490 74.7540 0.0000 0.0000 200.000
+# Sum of Counts = 524724
+# Center of Mass = 31.111098+/-0.060739
+# Full Width Half-Maximum = 0.463058+/-0.027595
+# 1:22:07 PM 6/27/2012 scan completed.
+
+1:22:07 PM 6/27/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.11492
+
+Drive completed.
+
+
+1:22:19 PM 6/27/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 169
+# date = 6/27/2012
+# time = 1:22:19 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) check at 50 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 59.7442 30.1149 1.000 9.000 1387.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5474 -0.0000 0.0001 2.9120 5.0000 5.0000 0.0000 176.4460 76.3370 0.0000 0.0000 200.000
+ 2 59.9443 30.2149 1.000 14.000 1425.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5521 -0.0000 0.0001 2.9208 5.0000 5.0000 0.0000 176.8910 76.5180 0.0000 0.0000 200.000
+ 3 60.1443 30.3149 1.000 40.000 1397.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5568 -0.0000 0.0001 2.9296 5.0000 5.0000 0.0000 177.3080 76.7300 0.0000 0.0000 200.000
+ 4 60.3443 30.4149 1.000 99.000 1331.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5615 -0.0000 0.0001 2.9385 5.0000 5.0000 0.0000 177.7000 76.9560 0.0000 0.0000 200.000
+ 5 60.5443 30.5149 1.000 354.000 1350.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5661 -0.0000 0.0001 2.9473 5.0000 5.0000 0.0000 178.1030 77.1560 0.0000 0.0000 200.000
+ 6 60.7443 30.6149 1.000 1490.000 1330.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5708 -0.0000 0.0001 2.9561 5.0000 5.0000 0.0000 178.5310 77.3640 0.0000 0.0000 200.000
+ 7 60.9443 30.7149 1.000 6276.000 1371.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5755 -0.0000 0.0001 2.9649 5.0000 5.0000 0.0000 178.9100 77.5180 0.0000 0.0000 200.000
+ 8 61.1443 30.8149 1.000 22587.000 1403.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5802 -0.0000 0.0001 2.9737 5.0000 5.0000 0.0000 179.3100 77.7590 0.0000 0.0000 200.000
+ 9 61.3443 30.9149 1.000 55812.000 1350.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5848 -0.0000 0.0001 2.9825 5.0000 5.0000 0.0000 179.7480 77.9540 0.0000 0.0000 200.000
+ 10 61.5443 31.0149 1.000 88085.000 1294.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5895 -0.0000 0.0001 2.9912 5.0000 5.0000 0.0000 180.1470 78.1950 0.0000 0.0000 200.000
+ 11 61.7443 31.1149 1.000 100221.000 1388.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5942 -0.0000 0.0001 3.0000 5.0000 5.0000 0.0000 180.5720 78.3480 0.0000 0.0000 200.000
+ 12 61.9443 31.2149 1.000 84701.000 1389.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.5988 -0.0000 0.0001 3.0088 5.0000 5.0000 0.0000 180.9870 78.5300 0.0000 0.0000 200.000
+ 13 62.1443 31.3149 1.000 50257.000 1449.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6034 -0.0000 0.0001 3.0175 5.0000 5.0000 0.0000 181.4270 78.7120 0.0000 0.0000 200.000
+ 14 62.3443 31.4149 1.000 20086.000 1352.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6081 -0.0000 0.0001 3.0262 5.0000 5.0000 0.0000 181.8220 78.9920 0.0000 0.0000 200.000
+ 15 62.5443 31.5149 1.000 5492.000 1414.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6127 -0.0000 0.0001 3.0350 5.0000 5.0000 0.0000 182.2230 79.1460 0.0000 0.0000 200.000
+ 16 62.7443 31.6149 1.000 1216.000 1373.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6174 -0.0000 0.0001 3.0437 5.0000 5.0000 0.0000 182.6140 79.3590 0.0000 0.0000 200.000
+ 17 62.9443 31.7149 1.000 275.000 1292.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6220 -0.0000 0.0001 3.0524 5.0000 5.0000 0.0000 183.0130 79.6180 0.0000 0.0000 200.000
+ 18 63.1443 31.8149 1.000 67.000 1351.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6266 -0.0000 0.0001 3.0611 5.0000 5.0000 0.0000 183.4480 79.7710 0.0000 0.0000 200.000
+ 19 63.3443 31.9149 1.000 25.000 1356.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6312 -0.0000 0.0001 3.0698 5.0000 5.0000 0.0000 183.8580 80.0170 0.0000 0.0000 200.000
+ 20 63.5443 32.0149 1.000 4.000 1340.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6358 -0.0000 0.0001 3.0785 5.0000 5.0000 0.0000 184.2540 80.1600 0.0000 0.0000 200.000
+ 21 63.7443 32.1149 1.000 8.000 1398.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6404 -0.0000 0.0001 3.0871 5.0000 5.0000 0.0000 184.6660 80.3270 0.0000 0.0000 200.000
+# Sum of Counts = 437118
+# Center of Mass = 61.731754+/-0.132047
+# Full Width Half-Maximum = 0.682730+/-0.076575
+# 1:23:09 PM 6/27/2012 scan completed.
+
+1:23:09 PM 6/27/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 31.10866
+s2 61.73175
+
+Drive completed.
+
+
+1:23:14 PM 6/27/2012 Executing "drive h 0.500000 k 0.000000 l 2.000000 e 0.000000"
+ Derived from "br 0.5 0 2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 50.70711
+s1 62.57303
+sgl -1.63300
+sgu 0.28707
+mfocus 34.98513
+
+Drive completed.
+
+
+1:23:42 PM 6/27/2012 Executing "drive h 1.000000 k 0.000000 l 1.000000 e 0.000000"
+ Derived from "br 1 0 1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+m2 -74.14280
+m1 142.92860
+a2 -74.14280
+a1 142.92860
+s2 65.74531
+s1 104.74709
+sgl -1.63300
+sgu 0.28707
+mfocus 34.98513
+
+Drive completed.
+
+
+1:24:04 PM 6/27/2012 Executing "scan s1 @(s1)+-1 @(s1)+1 0.100000"
+ Derived from "scanrel s1 -1 1 0.1"
+
+
+# scan = 170
+# date = 6/27/2012
+# time = 1:24:04 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = scanrel s1 -1 1 0.1
+# builtin_command = scan s1 @(s1)+-1 @(s1)+1 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) check at 50 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s1
+# def_y = detector
+# col_headers =
+# Pt. s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus s2 sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 103.7471 1.000 78.000 1370.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9940 0.0000 1.0524 5.0000 5.0000 0.0000 195.2750 85.3870 0.0000 0.0000 200.000
+ 2 103.8471 1.000 116.000 1359.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9947 0.0000 1.0472 5.0000 5.0000 0.0000 195.5550 85.5220 0.0000 0.0000 200.000
+ 3 103.9471 1.000 187.000 1326.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9953 0.0000 1.0420 5.0000 5.0000 0.0000 195.8830 85.6750 0.0000 0.0000 200.000
+ 4 104.0471 1.000 265.000 1385.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9959 0.0000 1.0367 5.0000 5.0000 0.0000 196.2070 85.7910 0.0000 0.0000 200.000
+ 5 104.1471 1.000 448.000 1377.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9965 0.0000 1.0315 5.0000 5.0000 0.0000 196.5010 85.9670 0.0000 0.0000 200.000
+ 6 104.2471 1.000 1027.000 1313.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9971 0.0000 1.0262 5.0000 5.0000 0.0000 196.8110 86.0850 0.0000 0.0000 200.000
+ 7 104.3471 1.000 3129.000 1370.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9976 0.0000 1.0210 5.0000 5.0000 0.0000 197.0980 86.2680 0.0000 0.0000 200.000
+ 8 104.4471 1.000 9699.000 1400.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9982 0.0000 1.0158 5.0000 5.0000 0.0000 197.4060 86.3840 0.0000 0.0000 200.000
+ 9 104.5471 1.000 23281.000 1368.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9988 0.0000 1.0105 5.0000 5.0000 0.0000 197.6730 86.5450 0.0000 0.0000 200.000
+ 10 104.6471 1.000 38263.000 1404.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 0.9994 0.0000 1.0053 5.0000 5.0000 0.0000 197.9560 86.6470 0.0000 0.0000 200.000
+ 11 104.7471 1.000 43738.000 1402.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 198.2540 86.7400 0.0000 0.0000 200.000
+ 12 104.8471 1.000 36276.000 1375.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0006 0.0000 0.9947 5.0000 5.0000 0.0000 198.5130 86.9090 0.0000 0.0000 200.000
+ 13 104.9471 1.000 20860.000 1478.000 0.018 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0011 0.0000 0.9895 5.0000 5.0000 0.0000 198.7070 87.0820 0.0000 0.0000 200.000
+ 14 105.0471 1.000 9077.000 1385.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0017 0.0000 0.9842 5.0000 5.0000 0.0000 198.8620 87.1550 0.0000 0.0000 200.000
+ 15 105.1471 1.000 3834.000 1306.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0023 0.0000 0.9790 5.0000 5.0000 0.0000 198.9530 87.2560 0.0000 0.0000 200.000
+ 16 105.2471 1.000 1614.000 1361.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0029 0.0000 0.9737 5.0000 5.0000 0.0000 199.0180 87.3940 0.0000 0.0000 200.000
+ 17 105.3471 1.000 655.000 1324.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0034 0.0000 0.9684 5.0000 5.0000 0.0000 199.0670 87.5130 0.0000 0.0000 200.000
+ 18 105.4471 1.000 319.000 1324.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0040 0.0000 0.9631 5.0000 5.0000 0.0000 199.1570 87.6360 0.0000 0.0000 200.000
+ 19 105.5471 1.000 182.000 1429.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0045 0.0000 0.9579 5.0000 5.0000 0.0000 199.2290 87.7620 0.0000 0.0000 200.000
+ 20 105.6471 1.000 108.000 1433.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0051 0.0000 0.9526 5.0000 5.0000 0.0000 199.3150 87.8990 0.0000 0.0000 200.000
+ 21 105.7471 1.000 85.000 1401.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 65.7453 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0056 0.0000 0.9473 5.0000 5.0000 0.0000 199.3840 87.9990 0.0000 0.0000 200.000
+# Sum of Counts = 193241
+# Center of Mass = 104.746395+/-0.336981
+# Full Width Half-Maximum = 0.387095+/-0.168986
+# 1:24:38 PM 6/27/2012 scan completed.
+
+1:24:38 PM 6/27/2012 Executing "drive s1 @(s1)-1"
+ Derived from "scanrel s1 -1 1 0.1"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.74708
+
+Drive completed.
+
+
+1:24:40 PM 6/27/2012 Executing "scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000"
+ Derived from "th2th -2 2 0.2"
+
+
+# scan = 171
+# date = 6/27/2012
+# time = 1:24:40 PM
+# proposal = 5137
+# experiment = Measurement of the phonon dispersion of Bismuch at high temperatures
+# experiment_number = 43
+# command = th2th -2 2 0.2
+# builtin_command = scan s2 @(s2)+-2 @(s2)+2 0.200000 s1 @(s1)+(-2/2) @(s1)+(2/2) 0.100000
+# users = Michael Manley and Olivier Delaire
+# local_contact = T. Hong
+# scan_title = Bi (003) check at 50 K
+# monochromator = PG002
+# analyzer = Pg002
+# sense = -+-
+# collimation = 48-40-40-120
+# samplename = C32D24CuN2O14
+# sampletype = crystal
+# samplemosaic = 30.000000
+# latticeconstants = 4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+# ubmatrix = 0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+# mode = 0
+# plane_normal = 0.027048,0.004754,0.948747
+# ubconf = UB26Jun2012_102906AM.ini
+# preset_type = normal
+# preset_channel = time
+# preset_value = 1.000000
+# def_x = s2
+# def_y = detector
+# col_headers =
+# Pt. s2 s1 time detector monitor mcu focal_length m1 m2 marc mtrans mfocus sgl sgu stl stu a1 a2 q h k l ei ef e cold_tip_[a] sample_[b] e_typ_tc au-fe_tc temp
+ 1 63.7453 103.7471 1.000 4.000 1434.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6405 0.9728 0.0000 0.9728 5.0000 5.0000 0.0000 199.6870 88.7280 0.0000 0.0000 200.000
+ 2 63.9453 103.8471 1.000 1.000 1377.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6451 0.9756 0.0000 0.9756 5.0000 5.0000 0.0000 199.7750 88.8860 0.0000 0.0000 200.000
+ 3 64.1453 103.9471 1.000 4.000 1402.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6497 0.9783 0.0000 0.9783 5.0000 5.0000 0.0000 199.8460 89.0880 0.0000 0.0000 200.000
+ 4 64.3453 104.0471 1.000 23.000 1399.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6543 0.9810 0.0000 0.9810 5.0000 5.0000 0.0000 199.9020 89.2660 0.0000 0.0000 200.000
+ 5 64.5453 104.1471 1.000 50.000 1299.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6588 0.9837 0.0000 0.9837 5.0000 5.0000 0.0000 199.9730 89.4490 0.0000 0.0000 200.000
+ 6 64.7453 104.2471 1.000 326.000 1339.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6634 0.9864 0.0000 0.9865 5.0000 5.0000 0.0000 200.0300 89.6620 0.0000 0.0000 200.000
+ 7 64.9453 104.3471 1.000 1651.000 1334.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6680 0.9892 0.0000 0.9892 5.0000 5.0000 0.0000 200.0960 89.8740 0.0000 0.0000 200.000
+ 8 65.1453 104.4471 1.000 7123.000 1394.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6726 0.9919 0.0000 0.9919 5.0000 5.0000 0.0000 200.1340 90.1120 0.0000 0.0000 200.000
+ 9 65.3453 104.5471 1.000 20691.000 1373.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6771 0.9946 0.0000 0.9946 5.0000 5.0000 0.0000 200.1850 90.2460 0.0000 0.0000 200.000
+ 10 65.5453 104.6471 1.000 37329.000 1332.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6817 0.9973 0.0000 0.9973 5.0000 5.0000 0.0000 200.2230 90.3820 0.0000 0.0000 200.000
+ 11 65.7453 104.7471 1.000 44227.000 1359.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6863 1.0000 0.0000 1.0000 5.0000 5.0000 0.0000 200.2520 90.5900 0.0000 0.0000 200.000
+ 12 65.9453 104.8471 1.000 36030.000 1348.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6908 1.0027 0.0000 1.0027 5.0000 5.0000 0.0000 200.2830 90.7760 0.0000 0.0000 200.000
+ 13 66.1453 104.9471 1.000 18962.000 1319.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6954 1.0054 0.0000 1.0054 5.0000 5.0000 0.0000 200.3300 90.9880 0.0000 0.0000 200.000
+ 14 66.3453 105.0471 1.000 6159.000 1323.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.6999 1.0081 0.0000 1.0081 5.0000 5.0000 0.0000 200.3340 91.1670 0.0000 0.0000 200.000
+ 15 66.5453 105.1471 1.000 1499.000 1327.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7044 1.0108 0.0000 1.0108 5.0000 5.0000 0.0000 200.3490 91.3530 0.0000 0.0000 200.000
+ 16 66.7453 105.2471 1.000 323.000 1339.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7090 1.0135 0.0000 1.0135 5.0000 5.0000 0.0000 200.3790 91.4960 0.0000 0.0000 200.000
+ 17 66.9453 105.3471 1.000 73.000 1362.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7135 1.0161 0.0000 1.0161 5.0000 5.0000 0.0000 200.3750 91.7190 0.0000 0.0000 200.000
+ 18 67.1453 105.4471 1.000 15.000 1388.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7180 1.0188 0.0000 1.0188 5.0000 5.0000 0.0000 200.4010 91.8850 0.0000 0.0000 200.000
+ 19 67.3453 105.5471 1.000 6.000 1418.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7225 1.0215 0.0000 1.0215 5.0000 5.0000 0.0000 200.3970 92.0940 0.0000 0.0000 200.000
+ 20 67.5453 105.6471 1.000 6.000 1400.000 0.017 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7270 1.0242 0.0000 1.0242 5.0000 5.0000 0.0000 200.4090 92.3140 0.0000 0.0000 200.000
+ 21 67.7453 105.7471 1.000 6.000 1340.000 0.016 96.4440 142.9286 -74.1428 0.6359 0.0000 34.9840 -1.6304 0.2871 0.0000 0.0000 142.9286 -74.1428 1.7315 1.0268 0.0000 1.0269 5.0000 5.0000 0.0000 200.4080 92.4870 0.0000 0.0000 200.000
+# Sum of Counts = 174508
+# Center of Mass = 65.736006+/-0.222543
+# Full Width Half-Maximum = 0.625153+/-0.133709
+# 1:25:31 PM 6/27/2012 scan completed.
+
+1:25:31 PM 6/27/2012 Executing "drive s1 @(s1)-((@(s2)-@(com))/2) s2 @(com)"
+ Derived from "th2th -2 2 0.2"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s1 104.74242
+s2 65.73601
+
+Drive completed.
+
+
+1:29:17 PM 6/27/2012 Executing "drive s2 70 s1 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+s2 70.00000
+s1 0.00000
+
+Drive completed.
+
+
+1:30:11 PM 6/27/2012 Executing "drive sgl 0 sgu 0"
+
+Driving to the following position: ""
+
+Destination Motor Positions:
+motor position
+sgl 0.00000
+sgu 0.00000
+
+Drive completed.
+
+
+1:48:39 PM 6/27/2012 Executing "initialize"
+ Derived from "init"
+
+Reinitializing experiment ... Completed initialization.
+
+
+1:50:44 PM 6/27/2012 Executing "begin"
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/crash.macro b/test_data/Bi_CTAX/exp50/Macros/crash.macro
new file mode 100644
index 0000000..6607f64
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/crash.macro
@@ -0,0 +1,26 @@
+scantitle "TO at G (1,0,1), T=50K"
+scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12
+
+scantitle "LA at L (1.5, 0, 1.5), T=50K"
+scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 4
+
+scantitle "LA at X (-1.5, 0, 0), T=50K"
+scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 2
+
+scantitle "LA + TA at T (-1,0,3.5), T=50K"
+scan h -1 k 0 l 3.5 e -8.8 -3.4 0.2 preset mcu 2
+
+scantitle "LO at L (1.5, 0, 1.5), T=50K"
+scan h 1.5 k 0 l 1.5 e -16.0 -10.5 0.25 preset mcu 12
+
+scantitle "LO at T (0, 0, 4.5), T=50K"
+scan h 0 k 0 l 4.5 e -16.75 -11 0.25 preset mcu 12
+
+scantitle "LO at X (1.5, 0, 0), T=50K"
+scan h 1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 15
+
+scantitle "LA+TA mid G-X (-0.75, 0, 1.5), T=50K"
+scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 8
+
+scantitle "LA+TA G-T (-1, 0, 2.9), T=50K"
+scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 2
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html b/test_data/Bi_CTAX/exp50/Macros/index.html
new file mode 100644
index 0000000..b694ea4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html@C=D;O=A b/test_data/Bi_CTAX/exp50/Macros/index.html@C=D;O=A
new file mode 100644
index 0000000..2b09b4c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html@C=D;O=A
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html@C=D;O=D b/test_data/Bi_CTAX/exp50/Macros/index.html@C=D;O=D
new file mode 100644
index 0000000..ecbea1d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html@C=D;O=D
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html@C=M;O=A b/test_data/Bi_CTAX/exp50/Macros/index.html@C=M;O=A
new file mode 100644
index 0000000..d8d55c7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html@C=M;O=A
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html@C=M;O=D b/test_data/Bi_CTAX/exp50/Macros/index.html@C=M;O=D
new file mode 100644
index 0000000..bcc6465
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html@C=M;O=D
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html@C=N;O=A b/test_data/Bi_CTAX/exp50/Macros/index.html@C=N;O=A
new file mode 100644
index 0000000..b694ea4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html@C=N;O=A
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html@C=N;O=D b/test_data/Bi_CTAX/exp50/Macros/index.html@C=N;O=D
new file mode 100644
index 0000000..ecbea1d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html@C=N;O=D
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html@C=S;O=A b/test_data/Bi_CTAX/exp50/Macros/index.html@C=S;O=A
new file mode 100644
index 0000000..f2c3cd6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html@C=S;O=A
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/index.html@C=S;O=D b/test_data/Bi_CTAX/exp50/Macros/index.html@C=S;O=D
new file mode 100644
index 0000000..3e5ddcd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/index.html@C=S;O=D
@@ -0,0 +1,19 @@
+
+
+
+ Index of /user_data/cg4c/exp50/Macros
+
+
+Index of /user_data/cg4c/exp50/Macros
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/scan-T=150K.macro b/test_data/Bi_CTAX/exp50/Macros/scan-T=150K.macro
new file mode 100644
index 0000000..35450d1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/scan-T=150K.macro
@@ -0,0 +1,17 @@
+scantitle "LO at T (0 0 4.5), 150 K"
+scan h 0 k 0 l 4.5 e -16.0 -11.0 0.25 preset mcu 8
+
+scantitle "LO at L (1.5 0 1.5), 150 K"
+scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+
+scantitle "LO at X (1.5 0 0), 150 K"
+scan h 1.5 k 0 l 0 e -14.5 -9.5 0.25 preset mcu 12
+
+scantitle "TO at L (-0.5 0 2.5), 150 K"
+scan h -0.5 k 0 l 2.5 e -14.0 -9.0 0.25 preset mcu 12
+
+scantitle "LO at G (0 0 3), 150 K"
+scan h 0 k 0 l 3 e -14.0 -10.0 0.25 preset mcu 15
+
+scantitle "LO at G (0 0 3), 150 K"
+scan h 0 k 0 l 3 e -15.25 -14.25 -0.25 preset mcu 15
\ No newline at end of file
diff --git a/test_data/Bi_CTAX/exp50/Macros/scan.macro b/test_data/Bi_CTAX/exp50/Macros/scan.macro
new file mode 100644
index 0000000..b222004
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/scan.macro
@@ -0,0 +1,46 @@
+scantitle "TO at G (1,0,1), T=390K"
+scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+
+scantitle "LA at L (1.5, 0, 1.5), T=390K"
+scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+
+scantitle "LA at X (-1.5, 0, 0), T=390K"
+scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+
+scantitle "LA + TA at T (-1,0,3.5), T=390K"
+scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+
+scantitle "LO at L (1.5, 0, 1.5), T=390K"
+scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+
+scantitle "LO at T (0, 0, 4.5), T=390K"
+scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 6
+
+scantitle "LO at X (-1.5, 0, 0), T=390K"
+scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+
+scantitle "LA+TA G-L (-0.7, 0, 2.3), T=390K"
+scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+
+scantitle "LA+TA G-X (-0.75, 0, 1.5), T=390K"
+scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+
+scantitle "LA+TA G-T (-1, 0, 2.9), T=390K"
+scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+
+
+scantitle "LA+TA G-X (-0.75, 0, 1.5), VTI=480K"
+scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+
+scantitle "LO at T (0, 0, 3), VTI=480K"
+scan h 0 k 0 l 3 e -15.0 -10.0 0.25 preset mcu 8
+
+scantitle "LO at X (-1.5, 0, 0), VTI=480K"
+scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+
+scantitle "TO at G (1,0,1), VTI=480K"
+scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+
+
+
+
diff --git a/test_data/Bi_CTAX/exp50/Macros/scans-overnight-225K.macro b/test_data/Bi_CTAX/exp50/Macros/scans-overnight-225K.macro
new file mode 100644
index 0000000..0bf2d44
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/scans-overnight-225K.macro
@@ -0,0 +1,26 @@
+scantitle "LA at L (1.5, 0, 1.5), T=225K"
+scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+
+scantitle "LA at X (-1.5, 0, 0), T=225K"
+scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+
+scantitle "LA + TA at T (-1,0,3.5), T=225K"
+scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+
+scantitle "LO at L (1.5, 0, 1.5), T=225K"
+scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+
+scantitle "LO at T (0, 0, 4.5), T=225K"
+scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 8
+
+scantitle "LO at X (-1.5, 0, 0), T=225K"
+scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 12
+
+scantitle "LA+TA G-L (-0.7, 0, 2.3), T=225K"
+scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+
+scantitle "LA+TA G-X (-0.75, 0, 1.5), T=225K"
+scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+
+scantitle "LA+TA G-T (-1, 0, 2.9), T=225K"
+scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
diff --git a/test_data/Bi_CTAX/exp50/Macros/scans-overnight-390K.macro b/test_data/Bi_CTAX/exp50/Macros/scans-overnight-390K.macro
new file mode 100644
index 0000000..3a4fcae
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/scans-overnight-390K.macro
@@ -0,0 +1,29 @@
+scantitle "TO at G (1,0,1), T=390K"
+scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+
+scantitle "LA at L (1.5, 0, 1.5), T=390K"
+scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+
+scantitle "LA at X (-1.5, 0, 0), T=390K"
+scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+
+scantitle "LA + TA at T (-1,0,3.5), T=390K"
+scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+
+scantitle "LO at L (1.5, 0, 1.5), T=390K"
+scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+
+scantitle "LO at T (0, 0, 4.5), T=390K"
+scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 6
+
+scantitle "LO at X (-1.5, 0, 0), T=390K"
+scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+
+scantitle "LA+TA G-L (-0.7, 0, 2.3), T=390K"
+scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+
+scantitle "LA+TA G-X (-0.75, 0, 1.5), T=390K"
+scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+
+scantitle "LA+TA G-T (-1, 0, 2.9), T=390K"
+scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
diff --git a/test_data/Bi_CTAX/exp50/Macros/scans-overnight-50K.macro b/test_data/Bi_CTAX/exp50/Macros/scans-overnight-50K.macro
new file mode 100644
index 0000000..6607f64
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/Macros/scans-overnight-50K.macro
@@ -0,0 +1,26 @@
+scantitle "TO at G (1,0,1), T=50K"
+scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12
+
+scantitle "LA at L (1.5, 0, 1.5), T=50K"
+scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 4
+
+scantitle "LA at X (-1.5, 0, 0), T=50K"
+scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 2
+
+scantitle "LA + TA at T (-1,0,3.5), T=50K"
+scan h -1 k 0 l 3.5 e -8.8 -3.4 0.2 preset mcu 2
+
+scantitle "LO at L (1.5, 0, 1.5), T=50K"
+scan h 1.5 k 0 l 1.5 e -16.0 -10.5 0.25 preset mcu 12
+
+scantitle "LO at T (0, 0, 4.5), T=50K"
+scan h 0 k 0 l 4.5 e -16.75 -11 0.25 preset mcu 12
+
+scantitle "LO at X (1.5, 0, 0), T=50K"
+scan h 1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 15
+
+scantitle "LA+TA mid G-X (-0.75, 0, 1.5), T=50K"
+scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 8
+
+scantitle "LA+TA G-T (-1, 0, 2.9), T=50K"
+scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 2
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10348PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10348PM.ini
new file mode 100644
index 0000000..690c74b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10348PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,1.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=1.000000,1.000000,0.000000,69.783626,34.891813,0.000000,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.179450,-0.245133,0.000000,0.000000,0.000000,-0.084217,0.179450,-0.065683,0.000000
+UBInverse=-1.177627,0.000000,4.394963,-3.217336,0.000000,-3.217336,0.000000,-11.874153,0.000000
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10428PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10428PM.ini
new file mode 100644
index 0000000..e4cfd24
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10428PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=2.000000,0.000000,0.000000,40.000000,0.000000,0.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.238476,-0.119238,-0.028804,-0.086798,-0.043399,0.079138,0.000000,0.219780,0.000000
+UBInverse=-3.702780,-1.347701,-2.275000,0.000000,0.000000,4.550000,-4.061198,11.158055,0.000000
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10441PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10441PM.ini
new file mode 100644
index 0000000..b0c036e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_10441PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=2.000000,0.000000,0.000000,40.000000,0.000000,0.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+UBInverse=-3.702780,-1.347701,2.275000,0.000000,0.000000,-4.550000,4.061198,-11.158055,0.000000
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_110654AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_110654AM.ini
new file mode 100644
index 0000000..55ecfc4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_110654AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,1.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=1.000000,1.000000,0.000000,69.783626,34.891813,0.000000,0.000000,5.000000,5.000000
+LatticeParams=5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+UBInverse=-3.535534,0.000000,3.535534,-3.535534,0.000000,-3.535534,0.000000,-5.000000,0.000000
+BMatrix=0.200000,0.000000,0.000000,0.000000,0.200000,0.000000,0.000000,0.000000,0.200000
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24047PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24047PM.ini
new file mode 100644
index 0000000..acf3f75
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24047PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=2.000000,0.000000,0.000000,40.000000,0.000000,0.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.238476,-0.119238,0.028894,-0.086798,-0.043399,-0.079386,0.000000,-0.219780,0.000000
+UBInverse=-3.702780,-1.347701,2.275000,0.000000,0.000000,-4.550000,4.048498,-11.123161,0.000000
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24102PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24102PM.ini
new file mode 100644
index 0000000..da382f4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24102PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+UBInverse=0.186244,3.938965,2.269883,-0.158793,0.000000,-4.547228,-11.825454,0.321166,0.412954
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=-2.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24150PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24150PM.ini
new file mode 100644
index 0000000..b2cb243
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24150PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+UBInverse=0.186244,3.938965,2.269883,-0.158793,0.000000,-4.547228,-11.825454,0.321167,0.412954
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
+LowerArc=-2.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24741PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24741PM.ini
new file mode 100644
index 0000000..cff66ad
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_24741PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.598000,63.760000,-2.000000,1.000000,4.999998,5.000000
+LatticeParams=4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+UBInverse=0.186244,3.977980,2.200793,-0.158793,-0.079360,-4.546536,-11.825454,0.328325,0.407286
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.020957,0.010474,0.600050
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
+LowerArc=-2.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25429PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25429PM.ini
new file mode 100644
index 0000000..fdc31a4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25429PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.598000,63.760000,-2.000000,1.000000,4.999998,5.000000
+LatticeParams=4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+UBInverse=0.185662,3.965546,2.193914,-0.158296,-0.079112,-4.532325,-11.825434,0.328325,0.407285
+BMatrix=0.254576,0.127288,0.000000,0.000000,0.220469,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.020957,0.010474,0.600050
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
+LowerArc=-2.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25619PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25619PM.ini
new file mode 100644
index 0000000..9635906
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25619PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.659800,63.820000,-2.000000,1.000000,4.999998,5.000000
+LatticeParams=4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+UBInverse=0.185662,3.965546,2.193914,-0.158296,-0.079112,-4.532325,-11.825434,0.328325,0.407285
+BMatrix=0.254576,0.127288,0.000000,0.000000,0.220469,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.020972,0.010481,0.600456
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
+LowerArc=-2.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25646PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25646PM.ini
new file mode 100644
index 0000000..13614a2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB21Jun2012_25646PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.659800,63.877360,-2.000000,1.000000,4.999999,5.000000
+LatticeParams=4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+UBInverse=0.185662,3.965546,2.193914,-0.158296,-0.079112,-4.532325,-11.825434,0.328325,0.407285
+BMatrix=0.254576,0.127288,0.000000,0.000000,0.220469,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.020999,0.010495,0.601255
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
+LowerArc=-2.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_13208PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_13208PM.ini
new file mode 100644
index 0000000..01628f3
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_13208PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.659800,63.877360,-2.000000,1.000000,4.999999,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.003572,-0.004475,-0.071544,0.131662,-0.006535,0.002053,-0.002423,-0.124677,0.025143
+UBInverse=0.076986,7.585753,-0.400344,-2.784319,-0.070155,-7.917074,-13.799403,0.383131,0.475272
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.020999,0.010495,0.601255
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
+LowerArc=-2.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14115PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14115PM.ini
new file mode 100644
index 0000000..2f31d03
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14115PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.013323,0.037548,-0.075436,0.131057,-0.000565,-0.008021,0.000000,-0.119151,0.000000
+UBInverse=-0.802655,7.548658,-0.288708,0.000000,-0.000002,-8.392700,-13.114529,-1.333229,-4.126479
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14136PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14136PM.ini
new file mode 100644
index 0000000..da0a3c2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14136PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,0.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000605,0.037069,-0.075436,0.000064,0.003942,-0.008021,0.000000,0.000000,0.000000
+UBInverse=-170469969643850170000.000000,1880195372469644690000.000000,991901878112855579000000000.000000,811020815270369024.000000,-7598769425891571710.000000,102300111191507391000000.000000,-969218949169700480.000000,11351586925806184400.000000,8008724107008735920000000.000000
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14141PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14141PM.ini
new file mode 100644
index 0000000..964d270
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14141PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,2.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.886759,-8.339625,-0.318955,-12.672337,-5.491875,-0.217685
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14145PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14145PM.ini
new file mode 100644
index 0000000..156f25f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_14145PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.886759,-8.339625,-0.318955,-12.672337,-5.491875,-0.217685
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_20605PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_20605PM.ini
new file mode 100644
index 0000000..156f25f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_20605PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.886759,-8.339625,-0.318955,-12.672337,-5.491875,-0.217685
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_20609PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_20609PM.ini
new file mode 100644
index 0000000..b194a84
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_20609PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.738640,11.660000,0.000000,0.000016,4.999999,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.907106,-8.337436,-0.318955,-12.658898,-5.522782,-0.217685
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_25318PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_25318PM.ini
new file mode 100644
index 0000000..01195e1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_25318PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.738640,17.247440,0.000000,0.000016,5.000001,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.091027,-8.386143,-0.318955,-13.136476,-4.264016,-0.217686
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_34059PM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_34059PM.ini
new file mode 100644
index 0000000..c701400
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB25Jun2012_34059PM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,15.745880,0.000016,0.000016,5.000004,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+UBInverse=0.000002,-0.000002,-7.596700,0.310778,-8.380877,-0.318955,-13.020213,-4.606829,-0.217689
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=-0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100016AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100016AM.ini
new file mode 100644
index 0000000..5a71e51
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100016AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.724280,62.517080,-1.632992,1.600000,5.000001,5.000000
+LatticeParams=4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224171,0.002399
+UBInverse=0.081156,3.984332,2.152968,-0.129079,-0.126421,-4.525938,-11.819292,0.059496,0.335423
+BMatrix=0.254926,0.127463,0.000000,0.000000,0.220773,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.017115,0.016763,0.600112
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=1.600000
+LowerArc=-1.632992
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100019AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100019AM.ini
new file mode 100644
index 0000000..c28804b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100019AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.724280,62.605720,-1.632944,1.600048,5.000000,5.000000
+LatticeParams=4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224172,0.002399
+UBInverse=0.081156,3.984336,2.152961,-0.129079,-0.126430,-4.525938,-11.819292,0.059496,0.335423
+BMatrix=0.254926,0.127463,0.000000,0.000000,0.220773,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.017150,0.016798,0.601347
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=1.600112
+LowerArc=-1.632992
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100410AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100410AM.ini
new file mode 100644
index 0000000..5710b20
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100410AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.724280,62.605720,-1.632944,1.600048,5.000000,5.000000
+LatticeParams=4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+UBInverse=0.081227,3.987822,2.154844,-0.129192,-0.126540,-4.529898,-11.819292,0.059496,0.335423
+BMatrix=0.254704,0.127352,0.000000,0.000000,0.220580,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.017150,0.016798,0.601347
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=1.600112
+LowerArc=-1.632992
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100500AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100500AM.ini
new file mode 100644
index 0000000..f1ee4ee
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100500AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=1.000000,0.000000,1.000000,65.745280,104.696480,-1.632944,1.600112,5.000002,5.000000
+LatticeParams=4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+UBInverse=0.081227,3.987823,2.154843,-0.129192,-0.126542,-4.529898,-11.819292,0.059496,0.335423
+BMatrix=0.254704,0.127352,0.000000,0.000000,0.220580,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.027037,0.026483,0.948016
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=1.600128
+LowerArc=-1.632993
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100722AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100722AM.ini
new file mode 100644
index 0000000..9dd2b08
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_100722AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=1.000000,0.000000,1.000000,65.745280,104.717000,-1.632944,1.000000,4.999998,5.000000
+LatticeParams=4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+UBInverse=0.082295,3.964996,2.196523,-0.128984,-0.079021,-4.530982,-11.819292,0.059496,0.335423
+BMatrix=0.254704,0.127352,0.000000,0.000000,0.220580,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.026994,0.016538,0.948262
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=0.999151
+LowerArc=-1.630357
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_102906AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_102906AM.ini
new file mode 100644
index 0000000..55b078f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_102906AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,0.286000,5.000000,5.000000
+Peak2=1.000000,0.000000,1.000000,65.745320,104.764240,-1.630352,0.286208,4.999998,5.000000
+LatticeParams=4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+UBInverse=0.081225,3.937397,2.245659,-0.129193,-0.022705,-4.531608,-11.819292,0.051788,0.336700
+BMatrix=0.254704,0.127352,0.000000,0.000000,0.220580,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.027048,0.004754,0.948747
+InPlaneRef=-0.999585,0.004380,0.028475
+UpperArc=0.287073
+LowerArc=-1.632997
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_93823AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_93823AM.ini
new file mode 100644
index 0000000..4195327
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_93823AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,15.745880,0.000016,0.000016,5.000004,5.000000
+LatticeParams=4.550000,4.550000,11.837000,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000814,0.073786,-0.079633,0.009681,-0.202186,-0.028176,-0.253594,-0.134465,-0.001331
+UBInverse=-0.746915,2.293308,-3.858155,1.519123,-4.285973,-0.158745,-11.157705,-3.947834,-0.186549
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=-0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95027AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95027AM.ini
new file mode 100644
index 0000000..045e2d1
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95027AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,15.745880,0.000016,0.000016,5.000004,5.000000
+LatticeParams=4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000814,0.073786,-0.079719,0.009681,-0.202186,-0.028206,-0.253594,-0.134465,-0.001333
+UBInverse=-0.746915,2.293308,-3.858155,1.519123,-4.285973,-0.158745,-11.145620,-3.943558,-0.186347
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=-0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95040AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95040AM.ini
new file mode 100644
index 0000000..edbf1fd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95040AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,0.000016,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.006801,-0.001075,-0.084537,-0.126889,-0.253778,0.000358,-0.219676,0.000031,0.002410
+UBInverse=-0.129662,-0.000001,-4.548152,0.048140,-3.940380,2.274553,-11.819271,0.050107,0.336953
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.028497,0.000000,0.999594
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=-1.632992
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95114AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95114AM.ini
new file mode 100644
index 0000000..41fdd9d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95114AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,0.000016,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001075,-0.005726,-0.084537,0.253778,0.126889,0.000358,-0.000031,-0.219706,0.002410
+UBInverse=0.081523,3.940381,2.273599,-0.129662,-0.000001,-4.548152,-11.819271,0.050107,0.336953
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.028497,0.000000,0.999594
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=-1.632992
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95602AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95602AM.ini
new file mode 100644
index 0000000..2bbf676
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95602AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,0.000016,5.000000,5.000000
+LatticeParams=4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001080,-0.005751,-0.084537,0.254924,0.127462,0.000358,-0.000031,-0.220699,0.002410
+UBInverse=0.081156,3.922665,2.263377,-0.129079,-0.000001,-4.527703,-11.819292,0.050107,0.336954
+BMatrix=0.254926,0.127463,0.000000,0.000000,0.220773,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.028497,0.000000,0.999594
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
+LowerArc=-1.632992
diff --git a/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95723AM.ini b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95723AM.ini
new file mode 100644
index 0000000..5a71e51
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/UB26Jun2012_95723AM.ini
@@ -0,0 +1,17 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.724280,62.517080,-1.632992,1.600000,5.000001,5.000000
+LatticeParams=4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224171,0.002399
+UBInverse=0.081156,3.984332,2.152968,-0.129079,-0.126421,-4.525938,-11.819292,0.059496,0.335423
+BMatrix=0.254926,0.127463,0.000000,0.000000,0.220773,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.017115,0.016763,0.600112
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=1.600000
+LowerArc=-1.632992
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html b/test_data/Bi_CTAX/exp50/UBConf/index.html
new file mode 100644
index 0000000..7c6cb5a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html@C=D;O=A b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=D;O=A
new file mode 100644
index 0000000..5594193
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=D;O=A
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html@C=D;O=D b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=D;O=D
new file mode 100644
index 0000000..a1d4ebf
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=D;O=D
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html@C=M;O=A b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=M;O=A
new file mode 100644
index 0000000..1850aec
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=M;O=A
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html@C=M;O=D b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=M;O=D
new file mode 100644
index 0000000..8040c8c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=M;O=D
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html@C=N;O=A b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=N;O=A
new file mode 100644
index 0000000..7c6cb5a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=N;O=A
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html@C=N;O=D b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=N;O=D
new file mode 100644
index 0000000..a1d4ebf
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=N;O=D
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html@C=S;O=A b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=S;O=A
new file mode 100644
index 0000000..84fe346
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=S;O=A
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/index.html@C=S;O=D b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=S;O=D
new file mode 100644
index 0000000..d3874c9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/index.html@C=S;O=D
@@ -0,0 +1,46 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf
+
+
+Index of /user_data/cg4c/exp50/UBConf
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_10426PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_10426PM.ini
new file mode 100644
index 0000000..6519d54
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_10426PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,1.000000,0.000000,0.000000
+Peak1=2.000000,0.000000,0.000000,40.000000,0.000000,0.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.238476,-0.119238,-0.028804,-0.086798,-0.043399,0.079138,0.000000,0.219780,0.000000
+UBInverse=-3.702780,-1.347701,-2.275000,0.000000,0.000000,4.550000,-4.061198,11.158054,0.000000
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_10440PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_10440PM.ini
new file mode 100644
index 0000000..0fbda2a
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_10440PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=2.000000,0.000000,0.000000,40.000000,0.000000,0.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.874153,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.238476,-0.119238,0.028804,-0.086798,-0.043399,-0.079138,0.000000,-0.219780,0.000000
+UBInverse=-3.702780,-1.347701,2.275000,0.000000,0.000000,-4.550000,4.061198,-11.158055,0.000000
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084217
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24100PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24100PM.ini
new file mode 100644
index 0000000..8a9e540
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24100PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,0.000000,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+UBInverse=0.186244,3.938965,2.269883,-0.158793,0.000000,-4.547228,-11.825454,0.321166,0.412954
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24149PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24149PM.ini
new file mode 100644
index 0000000..491eb49
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24149PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+UBInverse=0.186244,3.938965,2.269883,-0.158793,0.000000,-4.547228,-11.825454,0.321167,0.412954
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24739PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24739PM.ini
new file mode 100644
index 0000000..6893c0e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_24739PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.598000,63.760000,-2.000000,1.000000,4.999998,5.000000
+LatticeParams=4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006881,-0.004229,-0.084398,0.253644,0.122989,0.002343,-0.004668,-0.221947,0.002907
+UBInverse=0.186244,3.977980,2.200793,-0.158793,-0.079360,-4.546536,-11.825454,0.328325,0.407286
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.020957,0.010474,0.600050
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25608PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25608PM.ini
new file mode 100644
index 0000000..32d636b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25608PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.659800,63.820000,-2.000000,1.000000,4.999998,5.000000
+LatticeParams=4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+UBInverse=0.185662,3.965546,2.193914,-0.158296,-0.079112,-4.532325,-11.825434,0.328325,0.407285
+BMatrix=0.254576,0.127288,0.000000,0.000000,0.220469,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.020972,0.010481,0.600456
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25617PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25617PM.ini
new file mode 100644
index 0000000..32d636b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25617PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.659800,63.820000,-2.000000,1.000000,4.999998,5.000000
+LatticeParams=4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+UBInverse=0.185662,3.965546,2.193914,-0.158296,-0.079112,-4.532325,-11.825434,0.328325,0.407285
+BMatrix=0.254576,0.127288,0.000000,0.000000,0.220469,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.020972,0.010481,0.600456
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25644PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25644PM.ini
new file mode 100644
index 0000000..c0f602b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB21Jun2012_25644PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,1.000000,4.999999,5.000000
+Peak2=0.500000,0.000000,2.000000,50.659800,63.877360,-2.000000,1.000000,4.999999,5.000000
+LatticeParams=4.535778,4.535778,11.837000,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006903,-0.004243,-0.084398,0.254439,0.123374,0.002343,-0.004682,-0.222643,0.002907
+UBInverse=0.185662,3.965546,2.193914,-0.158296,-0.079112,-4.532325,-11.825434,0.328325,0.407285
+BMatrix=0.254576,0.127288,0.000000,0.000000,0.220469,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.020999,0.010495,0.601255
+InPlaneRef=-0.999023,0.027737,0.034408
+UpperArc=1.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14113PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14113PM.ini
new file mode 100644
index 0000000..b6a4c12
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14113PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.013323,0.037548,-0.075436,0.131057,-0.000565,-0.008021,0.000000,-0.119151,0.000000
+UBInverse=-0.802655,7.548658,-0.288708,0.000000,-0.000002,-8.392700,-13.114529,-1.333230,-4.126479
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14135PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14135PM.ini
new file mode 100644
index 0000000..d609a66
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14135PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,0.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000605,0.037069,-0.075436,0.000064,0.003942,-0.008021,0.000000,0.000000,0.000000
+UBInverse=-170469969643850170000.000000,1880195372469644690000.000000,991901878112855579000000000.000000,811020815270369024.000000,-7598769425891571710.000000,102300111191507391000000.000000,-969218949169700480.000000,11351586925806184400.000000,8008724107008735920000000.000000
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14138PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14138PM.ini
new file mode 100644
index 0000000..e81d0cd
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14138PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,2.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.886759,-8.339625,-0.318955,-12.672337,-5.491875,-0.217685
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14143PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14143PM.ini
new file mode 100644
index 0000000..331bf6f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_14143PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,11.800000,0.000000,0.000016,5.000000,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000076,0.049677,-0.075436,0.005043,-0.114627,-0.008021,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.886759,-8.339625,-0.318955,-12.672337,-5.491875,-0.217685
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_20608PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_20608PM.ini
new file mode 100644
index 0000000..729119f
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_20608PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.738640,11.660000,0.000000,0.000016,4.999999,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000064,0.049956,-0.075416,0.005043,-0.114506,-0.008205,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.907107,-8.337436,-0.318955,-12.658898,-5.522783,-0.217685
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_25316PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_25316PM.ini
new file mode 100644
index 0000000..caae1eb
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_25316PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.738640,17.247440,0.000000,0.000016,5.000001,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000554,0.038570,-0.075857,0.005013,-0.118826,-0.000823,-0.131636,0.000000,0.000000
+UBInverse=0.000000,-0.000002,-7.596700,0.091027,-8.386143,-0.318955,-13.136476,-4.264016,-0.217686
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_34058PM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_34058PM.ini
new file mode 100644
index 0000000..c03ad37
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB25Jun2012_34058PM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,15.745880,0.000016,0.000016,5.000004,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+UBInverse=0.000002,-0.000002,-7.596700,0.310778,-8.380877,-0.318955,-13.020213,-4.606829,-0.217689
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=-0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100017AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100017AM.ini
new file mode 100644
index 0000000..a302777
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100017AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.724280,62.605720,-1.632944,1.600048,5.000000,5.000000
+LatticeParams=4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224172,0.002399
+UBInverse=0.081156,3.984336,2.152961,-0.129079,-0.126430,-4.525938,-11.819292,0.059496,0.335423
+BMatrix=0.254926,0.127463,0.000000,0.000000,0.220773,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.017150,0.016798,0.601347
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=1.600112
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100457AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100457AM.ini
new file mode 100644
index 0000000..2c799b9
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100457AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=1.000000,0.000000,1.000000,65.745280,104.696480,-1.632944,1.600112,5.000002,5.000000
+LatticeParams=4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001079,-0.005746,-0.084537,0.254601,0.121144,0.000426,-0.007143,-0.223976,0.002399
+UBInverse=0.081227,3.987823,2.154843,-0.129192,-0.126542,-4.529898,-11.819292,0.059496,0.335423
+BMatrix=0.254704,0.127352,0.000000,0.000000,0.220580,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.027037,0.026483,0.948016
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=1.600128
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100719AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100719AM.ini
new file mode 100644
index 0000000..b010567
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_100719AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=1.000000,0.000000,1.000000,65.745280,104.717000,-1.632944,1.000000,4.999998,5.000000
+LatticeParams=4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001155,-0.005698,-0.084537,0.254662,0.123486,0.000426,-0.004474,-0.222694,0.002399
+UBInverse=0.082295,3.964996,2.196523,-0.128984,-0.079021,-4.530982,-11.819292,0.059496,0.335423
+BMatrix=0.254704,0.127352,0.000000,0.000000,0.220580,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.026994,0.016538,0.948262
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=0.999151
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_102903AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_102903AM.ini
new file mode 100644
index 0000000..85efd0c
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_102903AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,0.286000,5.000000,5.000000
+Peak2=1.000000,0.000000,1.000000,65.745320,104.764240,-1.630352,0.286208,4.999998,5.000000
+LatticeParams=4.533506,4.533506,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001079,-0.005747,-0.084537,0.254698,0.126244,0.000370,-0.001307,-0.221141,0.002408
+UBInverse=0.081225,3.937397,2.245659,-0.129193,-0.022705,-4.531608,-11.819292,0.051788,0.336700
+BMatrix=0.254704,0.127352,0.000000,0.000000,0.220580,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.027048,0.004754,0.948747
+InPlaneRef=-0.999585,0.004380,0.028475
+UpperArc=0.287073
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93645AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93645AM.ini
new file mode 100644
index 0000000..498ab89
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93645AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,1.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=1.000000,1.000000,0.000000,69.783626,34.891813,0.000000,0.000000,5.000000,5.000000
+LatticeParams=5.000000,5.000000,5.000000,90.000000,90.000000,90.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.141421,-0.141421,0.000000,0.000000,0.000000,-0.200000,0.141421,-0.141421,0.000000
+UBInverse=-3.535534,0.000000,3.535534,-3.535534,0.000000,-3.535534,0.000000,-5.000000,0.000000
+BMatrix=0.200000,0.000000,0.000000,0.000000,0.200000,0.000000,0.000000,0.000000,0.200000
+[AngleMode]
+Mode=0
+PlaneNormal=0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93653AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93653AM.ini
new file mode 100644
index 0000000..c03ad37
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93653AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,2.000000,35.739000,15.745880,0.000016,0.000016,5.000004,5.000000
+LatticeParams=7.596700,8.392700,13.812900,72.618000,89.097000,87.822000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.000423,0.041671,-0.075809,0.005025,-0.117774,-0.002811,-0.131636,0.000000,0.000000
+UBInverse=0.000002,-0.000002,-7.596700,0.310778,-8.380877,-0.318955,-13.020213,-4.606829,-0.217689
+BMatrix=0.131733,-0.004359,-0.000351,0.000000,0.124853,-0.022663,0.000000,0.000000,0.072396
+[AngleMode]
+Mode=0
+PlaneNormal=-0.000000,0.000000,1.000000
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93658AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93658AM.ini
new file mode 100644
index 0000000..491eb49
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_93658AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.670080,32.389800,-2.000000,0.000000,4.999999,5.000000
+LatticeParams=4.550000,4.550000,11.837020,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.006881,-0.004229,-0.084398,0.253687,0.126843,0.002292,-0.000240,-0.219766,0.002947
+UBInverse=0.186244,3.938965,2.269883,-0.158793,0.000000,-4.547228,-11.825454,0.321167,0.412954
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084481
+[AngleMode]
+Mode=0
+PlaneNormal=0.034899,0.000000,0.999391
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95038AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95038AM.ini
new file mode 100644
index 0000000..ff57ce2
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95038AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=0.000000,0.000000,1.000000,0.000000,1.000000,0.000000
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,0.000016,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=-0.006801,-0.001075,-0.084537,-0.126889,-0.253778,0.000358,-0.219676,0.000031,0.002410
+UBInverse=-0.129662,-0.000001,-4.548152,0.048140,-3.940380,2.274553,-11.819271,0.050107,0.336953
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.028497,0.000000,0.999594
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95113AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95113AM.ini
new file mode 100644
index 0000000..3c21373
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95113AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=1
+[Data]
+ScatteringPlaneVectors=1.000000,0.000000,0.000000,0.000000,0.000000,1.000000
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,0.000016,5.000000,5.000000
+LatticeParams=4.550000,4.550000,11.824179,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001075,-0.005726,-0.084537,0.253778,0.126889,0.000358,-0.000031,-0.219706,0.002410
+UBInverse=0.081523,3.940381,2.273599,-0.129662,-0.000001,-4.548152,-11.819271,0.050107,0.336953
+BMatrix=0.253780,0.126890,0.000000,0.000000,0.219780,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.028497,0.000000,0.999594
+InPlaneRef=0.000000,-1.000000,0.000000
+UpperArc=0.000016
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95716AM.ini b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95716AM.ini
new file mode 100644
index 0000000..800b926
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/UB26Jun2012_95716AM.ini
@@ -0,0 +1,16 @@
+[UBMode]
+Mode=2
+[Data]
+Peak1=0.000000,0.000000,3.000000,61.744400,31.115000,-1.632992,1.600000,5.000000,5.000000
+Peak2=0.500000,0.000000,2.000000,50.724280,62.517080,-1.632992,1.600000,5.000001,5.000000
+LatticeParams=4.529543,4.529543,11.824200,90.000000,90.000000,120.000000
+Energy=5.000000
+[Matrices]
+UBMatrix=0.001080,-0.005751,-0.084537,0.254824,0.121250,0.000426,-0.007149,-0.224171,0.002399
+UBInverse=0.081156,3.984332,2.152968,-0.129079,-0.126421,-4.525938,-11.819292,0.059496,0.335423
+BMatrix=0.254926,0.127463,0.000000,0.000000,0.220773,0.000000,0.000000,0.000000,0.084572
+[AngleMode]
+Mode=0
+PlaneNormal=0.017115,0.016763,0.600112
+InPlaneRef=-0.999585,0.005032,0.028368
+UpperArc=1.600000
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html
new file mode 100644
index 0000000..e721de7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=D;O=A b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=D;O=A
new file mode 100644
index 0000000..82edba0
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=D;O=A
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=D;O=D b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=D;O=D
new file mode 100644
index 0000000..1f3e0df
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=D;O=D
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=M;O=A b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=M;O=A
new file mode 100644
index 0000000..5a6dd09
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=M;O=A
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=M;O=D b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=M;O=D
new file mode 100644
index 0000000..1f3e0df
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=M;O=D
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=N;O=A b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=N;O=A
new file mode 100644
index 0000000..e721de7
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=N;O=A
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=N;O=D b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=N;O=D
new file mode 100644
index 0000000..1f3e0df
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=N;O=D
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=S;O=A b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=S;O=A
new file mode 100644
index 0000000..4ba97e4
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=S;O=A
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=S;O=D b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=S;O=D
new file mode 100644
index 0000000..f574785
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/UBConf/tmp/index.html@C=S;O=D
@@ -0,0 +1,38 @@
+
+
+
+ Index of /user_data/cg4c/exp50/UBConf/tmp
+
+
+Index of /user_data/cg4c/exp50/UBConf/tmp
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/UserAlias.txt b/test_data/Bi_CTAX/exp50/UserAlias.txt
new file mode 100644
index 0000000..e69de29
diff --git a/test_data/Bi_CTAX/exp50/expconf.ini b/test_data/Bi_CTAX/exp50/expconf.ini
new file mode 100644
index 0000000..d5b1824
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/expconf.ini
@@ -0,0 +1,32 @@
+[Proposal]
+ID=5137
+[Experiment]
+title="Measurement of the phonon dispersion of Bismuch at high temperatures"
+users="Michael Manley and Olivier Delaire"
+localcontact="T. Hong"
+currentexpnumber=50
+[Sample]
+samplename=C32D24CuN2O14
+sampletype=crystal
+mosaic=30.000000
+[Orientation]
+ubfile=UB26Jun2012_102906AM.ini
+plusminus=-1,1,-1
+[Instrument]
+energy=5.000000
+fixed_ei_ef_mode=1
+mononame=PG002
+monodspace=3.355000
+analyzername=Pg002
+analyzerdspace=3.355000
+collimation=48.000,40.000,40.000,120.000
+[Scan]
+nextscannumber=172
+scantitle="Bi (003) check at 50 K"
+[Preset]
+mode=normal
+defaultindex=0
+channels=clock,det1,mon1,scaled_monitor
+values=1.000000,0.000000,0.000000,30.000000
+defcountfile=""
+defcountchannel=detector
diff --git a/test_data/Bi_CTAX/exp50/history.txt b/test_data/Bi_CTAX/exp50/history.txt
new file mode 100644
index 0000000..b2b8e6e
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/history.txt
@@ -0,0 +1,723 @@
+6/21/2012 11:07 AM drive ei 5
+6/21/2012 11:07 AM preset time 10
+6/21/2012 11:07 AM scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV"
+6/21/2012 11:07 AM scan s2 56 63 0.2
+6/21/2012 11:11 AM drive s2 0
+6/21/2012 11:13 AM drive ei 5
+6/21/2012 11:13 AM preset time 10
+6/21/2012 11:13 AM scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV"
+6/21/2012 11:13 AM scan s2 56 63 0.2
+6/21/2012 11:20 AM scantitle "Ni powder (1,0,0), Ei=5 meV"
+6/21/2012 11:20 AM scan s2 67 73 0.2
+6/21/2012 11:29 AM drive e 0
+6/21/2012 11:30 AM preset time 30
+6/21/2012 11:31 AM scantitle "Analyzer calibration"
+6/21/2012 11:31 AM scanrel a1 -2 2 0.2
+6/21/2012 11:44 AM scanrel a2 -5 5 0.4
+6/21/2012 12:00 PM count preset time 60
+6/21/2012 12:01 PM mcu 122754
+6/21/2012 12:02 PM scan q 1.8 e -0.6 0.6 0.05 preset mcu 1
+6/21/2012 12:30 PM drive e 0.0175
+6/21/2012 12:33 PM zero a1 0
+6/21/2012 12:34 PM admin
+6/21/2012 12:34 PM spos a1 143.00412
+6/21/2012 12:34 PM zero a2 0
+6/21/2012 12:34 PM spos a2 -73.99176
+6/21/2012 12:35 PM scan q 1.8 e -0.5 0.5 0.05 preset mcu 0.5
+6/21/2012 12:50 PM drive e 0
+6/21/2012 12:53 PM drive s2 59.5817
+6/21/2012 12:53 PM zero s2 0
+6/21/2012 12:54 PM spos s2 59.61
+6/21/2012 12:54 PM drive s2 0
+6/21/2012 12:56 PM drive s2 40
+6/21/2012 1:03 PM lattice 4.550000 4.550000 11.874153 90.000000 90.000000 120.000000
+6/21/2012 1:04 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_10426PM.ini"
+6/21/2012 1:04 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_10440PM.ini"
+6/21/2012 1:42 PM init
+6/21/2012 1:43 PM set_temp 1.23
+6/21/2012 1:43 PM set_temp 2.23
+6/21/2012 1:47 PM drive s2 61.456
+6/21/2012 1:48 PM drive s1 40
+6/21/2012 2:00 PM init
+6/21/2012 2:01 PM set_temp 149.9
+6/21/2012 2:27 PM set_temp 152
+6/21/2012 2:29 PM drive s1 30
+6/21/2012 2:29 PM drive s1 35
+6/21/2012 2:29 PM drive s1 38
+6/21/2012 2:29 PM drive s1 20
+6/21/2012 2:30 PM drive s1 25
+6/21/2012 2:30 PM drive s1 24.5
+6/21/2012 2:30 PM scantitle "(003)"
+6/21/2012 2:30 PM preset time 1
+6/21/2012 2:30 PM scanrel s1 -2 2 0.2
+6/21/2012 2:31 PM drive s1 24.7372
+6/21/2012 2:33 PM drive s1 30
+6/21/2012 2:33 PM drive s1 32
+6/21/2012 2:33 PM drive s1 34
+6/21/2012 2:33 PM drive s1 35
+6/21/2012 2:33 PM drive s1 36
+6/21/2012 2:33 PM drive s1 37
+6/21/2012 2:33 PM drive s1 36.5
+6/21/2012 2:34 PM drive s1 32
+6/21/2012 2:34 PM drive s1 31.8
+6/21/2012 2:34 PM drive s1 32.4
+6/21/2012 2:35 PM scantitle "(003) inside cryo-furnace w/o filter"
+6/21/2012 2:35 PM scanrel s1 -2 2 0.2
+6/21/2012 2:36 PM drive s1 32.33
+6/21/2012 2:36 PM scanrel sgl -4 4 0.5
+6/21/2012 2:37 PM drive sgl -2
+6/21/2012 2:37 PM scanrel s1 -1 1 0.1
+6/21/2012 2:38 PM drive s1 32.3142
+6/21/2012 2:38 PM th2th -2 2 0.2
+6/21/2012 2:39 PM drive s2 61.6701 s1 32.4212
+6/21/2012 2:39 PM scanrel s1 -1 1 0.1
+6/21/2012 2:40 PM drive s1 32.3898
+6/21/2012 2:40 PM lattice a 4.550000 b 4.550000 c 11.837020
+6/21/2012 2:41 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24100PM.ini"
+6/21/2012 2:41 PM br 0.5 0 2
+6/21/2012 2:41 PM drive s1 32.3898 s2 61.6701
+6/21/2012 2:41 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24149PM.ini"
+6/21/2012 2:41 PM br 0.5 0 2
+6/21/2012 2:42 PM scantitle "(0.5 0 2) inside cryo-furnace w/o filter"
+6/21/2012 2:42 PM scanrel s1 -1 1 0.1
+6/21/2012 2:43 PM scanrel sgu -3 3 0.5
+6/21/2012 2:45 PM drive sgu 1
+6/21/2012 2:45 PM scanrel s1 -1 1 0.1
+6/21/2012 2:45 PM drive s1 63.76
+6/21/2012 2:46 PM th2th -2 2 0.2
+6/21/2012 2:47 PM drive s2 50.598 s1 63.76
+6/21/2012 2:47 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_24739PM.ini"
+6/21/2012 2:47 PM scanrel sgl -2 2 0.5
+6/21/2012 2:49 PM br 1 0 1
+6/21/2012 2:49 PM scantitle "(1 0 1) inside cryo-furnace w/o filter"
+6/21/2012 2:49 PM scanrel s1 -1 1 0.1
+6/21/2012 2:50 PM th2th -2 2 0.2
+6/21/2012 2:51 PM br 0.5 0 2
+6/21/2012 2:52 PM scantitle "(0.5 0 2) inside cryo-furnace w/o filter"
+6/21/2012 2:52 PM th2th -2 2 0.2
+6/21/2012 2:54 PM lattice a 4.535778 b 4.535778 c 11.837000
+6/21/2012 2:55 PM drive s2 50.6598 s1 63.7913
+6/21/2012 2:55 PM scanrel s1 -1 1 0.1
+6/21/2012 2:55 PM drive s1 63.82
+6/21/2012 2:56 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_25617PM.ini"
+6/21/2012 2:56 PM br 0.5 0 2
+6/21/2012 2:56 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB21Jun2012_25644PM.ini"
+6/21/2012 2:56 PM br 1 0 1
+6/21/2012 2:57 PM th2th -2 2 0.2
+6/21/2012 2:58 PM scantitle "(1 0 1) inside cryo-furnace w/o filter"
+6/21/2012 2:58 PM scanrel s1 -1 1 0.1
+6/21/2012 2:59 PM count preset time 60
+6/21/2012 3:00 PM br 0 0 3
+6/21/2012 3:18 PM drive s1 90
+6/21/2012 3:19 PM drive s1 100
+6/21/2012 3:20 PM drive s1 120
+6/21/2012 3:20 PM drive s1 135
+6/21/2012 3:21 PM drive s1 -60
+6/21/2012 3:23 PM count preset time 60
+6/21/2012 3:24 PM mcu 85641/60.
+6/21/2012 3:24 PM br 0 0 3
+6/21/2012 3:26 PM scantitle "(0 0 3) inside cryo-furnace with filter"
+6/21/2012 3:26 PM scanrel s1 -1 1 0.1
+6/21/2012 3:27 PM th2th -2 2 0.2
+6/21/2012 3:31 PM ei 5
+6/21/2012 3:33 PM count preset muc 0.5
+6/21/2012 3:33 PM count preset mcu 0.5
+6/21/2012 3:33 PM mcu 85641/60.*60
+6/21/2012 3:33 PM count preset muc 0.5
+6/21/2012 3:34 PM count preset mcu 0.5
+6/21/2012 3:35 PM scantitle "LA at X (1.5 0 0), 150 K"
+6/21/2012 3:35 PM scan h 1.5 k 0 l 0 e -5 -2.0 0.25 preset mcu 1
+6/21/2012 3:50 PM drive s1 60
+6/21/2012 4:17 PM scantitle "G-X LA, 150 K"
+6/21/2012 4:17 PM scan h -0.75 k 0 l.5 1 e -7.0 -2.0 -0.25 preset mcu 2
+6/21/2012 4:18 PM scantitle "G-X LA, (-1 0 2) zone 150 K"
+6/21/2012 4:18 PM scan h -0.75 k 0 l 1.5 e -7.0 -2.0 -0.25 preset mcu 2
+6/21/2012 5:06 PM scantitle "mid G-X LA+TA (-0.75,0,1.5), 150K"
+6/21/2012 5:06 PM scan h -0.75 k 0 l 1.5 e -7.5 -1.5 -0.25 preset mcu 4
+6/21/2012 6:52 PM scantitle "LO at T (0 0 4.5), 150 K"
+6/21/2012 6:52 PM scan h 0 k 0 l 4.5 e -16.0 -11.0 0.25 preset mcu 8
+6/21/2012 9:40 PM scantitle "LO at L (1.5 0 1.5), 150 K"
+6/21/2012 9:40 PM scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+6/22/2012 12:37 AM scantitle "LO at X (1.5 0 0), 150 K"
+6/22/2012 12:37 AM scan h 1.5 k 0 l 0 e -14.5 -9.5 0.25 preset mcu 12
+6/22/2012 5:03 AM scantitle "TO at L (-0.5 0 2.5), 150 K"
+6/22/2012 5:03 AM scan h -0.5 k 0 l 2.5 e -14.0 -9.0 0.25 preset mcu 12
+6/22/2012 9:27 AM scantitle "LO at G (0 0 3), 150 K"
+6/22/2012 9:27 AM scan h 0 k 0 l 3 e -14.0 -10.0 0.25 preset mcu 15
+6/22/2012 12:20 PM scantitle "LO at G (0 0 3), 150 K"
+6/22/2012 12:20 PM scan h 0 k 0 l 3 e -15.25 -14.25 -0.25 preset mcu 15
+6/22/2012 3:25 PM set_temp 150
+6/22/2012 3:25 PM set_temp 151
+6/22/2012 3:25 PM drive s1 -90
+6/22/2012 3:26 PM drive s1 -110
+6/22/2012 3:26 PM drive s1 0
+6/22/2012 3:28 PM drive s1 60
+6/22/2012 3:29 PM drive s1 0
+6/22/2012 3:36 PM drive s1 90
+6/22/2012 3:38 PM drive s1 100
+6/22/2012 3:39 PM drive s1 110
+6/22/2012 3:39 PM drive s1 140
+6/22/2012 3:40 PM drive s1 130
+6/22/2012 3:40 PM drive s1 120
+6/22/2012 3:40 PM drive s1 100
+6/22/2012 3:41 PM drive s1 -100
+6/22/2012 3:47 PM br 0 0 3
+6/22/2012 3:49 PM preset time 1
+6/22/2012 3:49 PM scantitle "(0 0 3) check at T=150 K"
+6/22/2012 3:49 PM scanrel s1 -1 1 0.1
+6/22/2012 3:50 PM count preset time 60
+6/22/2012 3:51 PM count preset time 60
+6/22/2012 3:52 PM mcu 81985
+6/22/2012 3:52 PM preset mcu 1
+6/22/2012 3:53 PM count preset mcu 1
+6/22/2012 4:05 PM scantitle "Dispersion G-L transverse (-102) zone, 150 K"
+6/22/2012 4:05 PM scan h -0.9 k 0 l 2.1 e -3.0 -0.6 0.05 preset mcu 2
+6/22/2012 5:59 PM scantitle "Dispersion G-L transverse (-102) 150K"
+6/22/2012 5:59 PM scan h -0.8 k 0 l 2.2 e -6.0 -2.0 0.1 preset mcu 2.0
+6/22/2012 7:23 PM scan h -0.7 k 0 l 2.3 e -8.0 -3.5 0.1 preset mcu 2.0
+6/22/2012 9:17 PM set_temp 225
+6/22/2012 9:21 PM set_temp 150
+6/22/2012 9:27 PM set_temp 225
+6/22/2012 9:43 PM scantitle "LA at X (1.5, 0, 0), 225K"
+6/22/2012 9:44 PM scan h 1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1
+6/22/2012 9:54 PM scantitle "TO at G (101), 225K"
+6/22/2012 9:55 PM scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 8.0
+6/23/2012 12:56 AM scantitle "LA at L (1.5, 0, 1.5), T=225K"
+6/23/2012 12:56 AM scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+6/23/2012 1:39 AM scantitle "LA at X (-1.5, 0, 0), T=225K"
+6/23/2012 1:39 AM scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+6/23/2012 1:59 AM scantitle "LA + TA at T (-1,0,3.5), T=225K"
+6/23/2012 1:59 AM scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+6/23/2012 3:23 AM scantitle "LO at L (1.5, 0, 1.5), T=225K"
+6/23/2012 3:23 AM scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 8
+6/23/2012 6:14 AM scantitle "LO at T (0, 0, 4.5), T=225K"
+6/23/2012 6:14 AM scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 8
+6/23/2012 9:19 AM scantitle "LO at X (-1.5, 0, 0), T=225K"
+6/23/2012 9:19 AM scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 12
+6/23/2012 1:21 PM scantitle "LA+TA G-L (-0.7, 0, 2.3), T=225K"
+6/23/2012 1:21 PM scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+6/23/2012 2:04 PM scantitle "LA+TA G-X (-0.75, 0, 1.5), T=225K"
+6/23/2012 2:04 PM scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+6/23/2012 3:47 PM scantitle "LA+TA G-T (-1, 0, 2.9), T=225K"
+6/23/2012 3:47 PM scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+6/23/2012 4:40 PM set_temp 300
+6/23/2012 4:57 PM scantitle "LA+TA G-L (-0.9, 0, 2.1), T=300K"
+6/23/2012 4:58 PM scan h -0.9 k 0 l 2.1 e -3.5 -0.7 0.05 preset mcu 1
+6/23/2012 5:58 PM scantitle "LA+TA G-X (-0.75, 0, 1.5), T=300K"
+6/23/2012 5:58 PM scan h -0.75 k 0 l 1.5 e -7.5 -1.25 0.25 preset mcu 2
+6/23/2012 7:33 PM set_temp 390
+6/23/2012 7:35 PM wait 00:01:00
+6/23/2012 7:36 PM set_temp 400
+6/23/2012 7:56 PM scantitle "TO at G (1,0,1), T=390K"
+6/23/2012 7:56 PM scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+6/23/2012 10:11 PM scantitle "LA at L (1.5, 0, 1.5), T=390K"
+6/23/2012 10:11 PM scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 3
+6/23/2012 10:54 PM scantitle "LA at X (-1.5, 0, 0), T=390K"
+6/23/2012 10:54 PM scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 1.5
+6/23/2012 11:14 PM scantitle "LA + TA at T (-1,0,3.5), T=390K"
+6/23/2012 11:14 PM scan h -1 k 0 l 3.5 e -8.7 -3.4 0.1 preset mcu 1.5
+6/24/2012 12:39 AM scantitle "LO at L (1.5, 0, 1.5), T=390K"
+6/24/2012 12:39 AM scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+6/24/2012 2:48 AM scantitle "LO at T (0, 0, 4.5), T=390K"
+6/24/2012 2:48 AM scan h 0 k 0 l 4.5 e -16.25 -11 0.25 preset mcu 6
+6/24/2012 5:04 AM scantitle "LO at X (-1.5, 0, 0), T=390K"
+6/24/2012 5:04 AM scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+6/24/2012 8:19 AM scantitle "LA+TA G-L (-0.7, 0, 2.3), T=390K"
+6/24/2012 8:19 AM scan h -0.7 k 0 l 2.3 e -8 -4 0.2 preset mcu 2
+6/24/2012 9:02 AM scantitle "LA+TA G-X (-0.75, 0, 1.5), T=390K"
+6/24/2012 9:02 AM scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+6/24/2012 10:45 AM scantitle "LA+TA G-T (-1, 0, 2.9), T=390K"
+6/24/2012 10:45 AM scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+6/24/2012 11:28 AM scantitle "LO at X (-1.5, 0, 0), T=390K"
+6/24/2012 11:28 AM scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+6/24/2012 2:40 PM scantitle "LA+TA G-T (-1, 0, 2.9), T=390K"
+6/24/2012 2:40 PM scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 1
+6/24/2012 3:23 PM scantitle "LO at L (1.5, 0, 1.5), T=390K"
+6/24/2012 3:23 PM scan h 1.5 k 0 l 1.5 e -15.5 -10.5 0.25 preset mcu 6
+6/24/2012 5:31 PM set_temp 480
+6/24/2012 5:32 PM drive h -0.75 k 0 l 1.5 e -7.5
+6/24/2012 6:13 PM scantitle "LA+TA G-X (-0.75, 0, 1.5), VTI=480K"
+6/24/2012 6:13 PM scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 2
+6/24/2012 6:41 PM scantitle "LA+TA G-X (-0.75, 0, 1.5), VTI=480K"
+6/24/2012 6:41 PM scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+6/24/2012 8:26 PM scantitle "LO at T (0, 0, 3), VTI=480K"
+6/24/2012 8:26 PM scan h 0 k 0 l 3 e -15.0 -10.0 0.25 preset mcu 8
+6/24/2012 11:21 PM scantitle "LA+TA G-X (-0.75, 0, 1.5), VTI=480K"
+6/24/2012 11:21 PM scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 4
+6/25/2012 1:03 AM scantitle "LO at X (-1.5, 0, 0), VTI=480K"
+6/25/2012 1:03 AM scan h -1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 10
+6/25/2012 4:16 AM scantitle "TO at G (1,0,1), VTI=480K"
+6/25/2012 4:16 AM scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 6
+6/25/2012 9:46 AM set_temp 300
+6/25/2012 9:46 AM br 0 0 3
+6/25/2012 9:57 AM drive sgu 0 sgl 0
+6/25/2012 10:20 AM drive s1 0
+6/25/2012 10:21 AM drive a2 0 a1 90
+6/25/2012 10:28 AM drive ei 5
+6/25/2012 10:28 AM preset time 10
+6/25/2012 10:28 AM scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV"
+6/25/2012 10:28 AM scan s2 56 63 0.2
+6/25/2012 10:30 AM drive ei 5
+6/25/2012 10:30 AM preset time 10
+6/25/2012 10:30 AM scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV"
+6/25/2012 10:30 AM scan s2 56 63 0.2
+6/25/2012 10:36 AM scantitle "Ni powder (1,0,0), Ei=5 meV"
+6/25/2012 10:36 AM scan s2 67 73 0.2
+6/25/2012 10:55 AM ef 5
+6/25/2012 10:55 AM drive e 0
+6/25/2012 10:57 AM drive a2 -50
+6/25/2012 10:58 AM drive e 0
+6/25/2012 11:10 AM drive a2 0 a1 90
+6/25/2012 11:13 AM drive e 0
+6/25/2012 11:23 AM drive e 0
+6/25/2012 11:29 AM drive a1 90 a2 0
+6/25/2012 11:32 AM drive ei 5
+6/25/2012 11:32 AM preset time 10
+6/25/2012 11:32 AM scantitle "Ni powder (1/2,1/2,1/2), Ei=5 meV"
+6/25/2012 11:32 AM scan s2 56 63 0.2
+6/25/2012 11:39 AM scantitle "Ni powder (1,0,0), Ei=5 meV"
+6/25/2012 11:39 AM scan s2 67 73 0.2
+6/25/2012 11:45 AM drive s2 70
+6/25/2012 11:45 AM zero s2 0
+6/25/2012 11:45 AM spos s2 70.03
+6/25/2012 11:46 AM drive s2 59.61
+6/25/2012 11:46 AM count preset time 10
+6/25/2012 11:46 AM drive s2 73
+6/25/2012 11:48 AM drive e 0
+6/25/2012 11:51 AM preset time 30
+6/25/2012 11:51 AM scantitle "analyzer calibration"
+6/25/2012 11:52 AM scanrel a1 -2 2 0.2
+6/25/2012 11:53 AM drive e 0
+6/25/2012 11:54 AM count preset time 60
+6/25/2012 11:55 AM mcu 123355/60.
+6/25/2012 11:55 AM preset mcu 30
+6/25/2012 11:55 AM scanrel a1 -2 2 0.2
+6/25/2012 12:07 PM drive a1 143.1041
+6/25/2012 12:07 PM calc 5.02
+6/25/2012 12:07 PM calc ei 5.02
+6/25/2012 12:07 PM calc ei 4.98
+6/25/2012 12:07 PM calc ei 4.96
+6/25/2012 12:07 PM calc ei 4.99
+6/25/2012 12:07 PM calc ei 5
+6/25/2012 12:07 PM calc ei 5.01
+6/25/2012 12:07 PM calc ei 5.02
+6/25/2012 12:08 PM scanrel a2 -5 5 0.25
+6/25/2012 12:30 PM drive a2 -74.0987
+6/25/2012 12:30 PM zero a1 0
+6/25/2012 12:30 PM zero a2 0
+6/25/2012 12:30 PM spos a1 @(m1)
+6/25/2012 12:31 PM drive a2 -75
+6/25/2012 12:31 PM drive a2 -74.0987
+6/25/2012 12:31 PM spos a2 @(m2)
+6/25/2012 12:31 PM count preset mcu 30
+6/25/2012 12:33 PM ef 5
+6/25/2012 12:34 PM scanrel e -0.5 0.5 0.025
+6/25/2012 12:51 PM scan q 1.8 e -0.5 0.5 0.025
+6/25/2012 12:52 PM drive e -0.5
+6/25/2012 12:54 PM scan q 1.8 e -0.5 0.5 0.025 preset mcu 30
+6/25/2012 1:17 PM drive e 0
+6/25/2012 1:32 PM lattice 7.596700 8.392700 13.812900 72.618000 89.097000 87.822000
+6/25/2012 1:32 PM drive s2 35.739
+6/25/2012 1:33 PM drive s1 20
+6/25/2012 1:33 PM drive s1 15
+6/25/2012 1:33 PM drive s1 14
+6/25/2012 1:33 PM drive s1 13
+6/25/2012 1:33 PM drive s1 12
+6/25/2012 1:33 PM preset time 1
+6/25/2012 1:33 PM scantitle "crystal check"
+6/25/2012 1:34 PM scanrel s2 -1 1 0.1
+6/25/2012 1:34 PM drive s2 35.739
+6/25/2012 1:34 PM scanrel s1 -1 1 0.1
+6/25/2012 1:35 PM drive s1 20
+6/25/2012 1:35 PM drive s1 30
+6/25/2012 1:35 PM drive s1 11.8
+6/25/2012 1:36 PM drive s1 0
+6/25/2012 1:36 PM drive s1 -10
+6/25/2012 1:36 PM drive s1 0
+6/25/2012 1:37 PM drive s1 3
+6/25/2012 1:37 PM drive s1 5
+6/25/2012 1:37 PM drive s1 4
+6/25/2012 1:37 PM scanrel s1 -1 1 0.1
+6/25/2012 1:38 PM drive s1 11.8
+6/25/2012 1:38 PM drive sgl 4
+6/25/2012 1:38 PM scan sgl 8 0 0.5
+6/25/2012 1:40 PM drive sgu 4
+6/25/2012 1:40 PM drive sgu 0
+6/25/2012 1:40 PM drive sgu -4
+6/25/2012 1:40 PM drive sgu 0
+6/25/2012 1:41 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14113PM.ini"
+6/25/2012 1:41 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14135PM.ini"
+6/25/2012 1:41 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14138PM.ini"
+6/25/2012 1:41 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_14143PM.ini"
+6/25/2012 1:41 PM br 0 1 0
+6/25/2012 1:42 PM scanrel s1 -1 1 0.1
+6/25/2012 1:43 PM br 0 1 0
+6/25/2012 1:44 PM drive sgl -2
+6/25/2012 1:44 PM drive sgl 0
+6/25/2012 1:44 PM drive sgl 4
+6/25/2012 1:44 PM drive sgl 6
+6/25/2012 1:45 PM drive sgl 8
+6/25/2012 1:45 PM drive sgl 0
+6/25/2012 1:45 PM br 0 1 1
+6/25/2012 1:46 PM scanrel s1 -1 1 0.1
+6/25/2012 1:48 PM drive s1 -63.3
+6/25/2012 1:48 PM drive sgl 4
+6/25/2012 1:49 PM drive sgl 6
+6/25/2012 1:49 PM drive sgl 0
+6/25/2012 1:55 PM br 0 0 2
+6/25/2012 1:56 PM drive sgl 4
+6/25/2012 2:00 PM drive sgl 0
+6/25/2012 2:01 PM scanrel s1 -1 1 0.1
+6/25/2012 2:04 PM drive s1 11.6
+6/25/2012 2:04 PM drive sgl -2
+6/25/2012 2:04 PM drive sgl 0
+6/25/2012 2:04 PM drive sgl 2
+6/25/2012 2:04 PM drive sgl 1
+6/25/2012 2:05 PM drive sgl 0
+6/25/2012 2:05 PM scanrel s1 -1 1 0.1
+6/25/2012 2:05 PM drive s1 11.66
+6/25/2012 2:06 PM lattice 7.596700 8.392700 13.812900 72.618000 89.097000 87.822000
+6/25/2012 2:06 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_20608PM.ini"
+6/25/2012 2:06 PM br 0 1 0
+6/25/2012 2:07 PM scanrel s1 -1 1 0.1
+6/25/2012 2:08 PM br 0 1 1
+6/25/2012 2:08 PM scanrel s1 -1 1 0.1
+6/25/2012 2:09 PM br 0 1 0
+6/25/2012 2:10 PM drive sgl 3
+6/25/2012 2:10 PM drive sgl 0
+6/25/2012 2:10 PM drive sgl -3
+6/25/2012 2:10 PM drive sgl -6
+6/25/2012 2:10 PM drive sgl -10
+6/25/2012 2:11 PM scan sgl 10 0 1
+6/25/2012 2:11 PM scan sgl -10 0 1
+6/25/2012 2:12 PM drive sgu -2
+6/25/2012 2:12 PM drive sgu -4
+6/25/2012 2:12 PM drive sgu 0
+6/25/2012 2:13 PM drive sgu 2
+6/25/2012 2:13 PM drive sgu 0
+6/25/2012 2:13 PM br 0 0 1
+6/25/2012 2:14 PM scanrel s1 -1 1 0.1
+6/25/2012 2:15 PM drive s1 90
+6/25/2012 2:16 PM drive s1 -90
+6/25/2012 2:18 PM drive s2 64.395
+6/25/2012 2:19 PM drive s1 90
+6/25/2012 2:20 PM br 0 0 2
+6/25/2012 2:21 PM scanrel s1 -1 1 0.1
+6/25/2012 2:22 PM drive s1 0
+6/25/2012 2:50 PM scantitle "crystal B alignment"
+6/25/2012 2:51 PM drive s1 20
+6/25/2012 2:51 PM drive s1 18
+6/25/2012 2:51 PM drive s1 17.5
+6/25/2012 2:51 PM scanrel s1 -1 1 0.1
+6/25/2012 2:52 PM drive s1 17.2475
+6/25/2012 2:53 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_25316PM.ini"
+6/25/2012 2:53 PM br 0 0 1
+6/25/2012 2:54 PM scanrel s1 -1 1 0.1
+6/25/2012 2:55 PM br 0 1 0
+6/25/2012 2:56 PM scanrel s1 -1 1 0.1
+6/25/2012 2:57 PM drive sgl 3
+6/25/2012 2:57 PM drive sgl 0
+6/25/2012 2:57 PM drive sgl -3
+6/25/2012 2:57 PM drive sgl -5
+6/25/2012 2:57 PM drive sgl 0
+6/25/2012 2:58 PM br 0 1 1
+6/25/2012 2:58 PM scanrel s1 -1 1 0.1
+6/25/2012 3:00 PM br 0 0 1
+6/25/2012 3:00 PM scanrel s1 -1 1 0.1
+6/25/2012 3:01 PM br 0 0 2
+6/25/2012 3:02 PM drive s1 0
+6/25/2012 3:06 PM drive s1 20
+6/25/2012 3:06 PM drive s1 18
+6/25/2012 3:06 PM drive s1 17
+6/25/2012 3:06 PM drive s1 16.8
+6/25/2012 3:06 PM drive s1 17.2
+6/25/2012 3:06 PM drive s1 17.3
+6/25/2012 3:06 PM scanrel s1 -2 2 0.1
+6/25/2012 3:07 PM drive s1 17.2
+6/25/2012 3:09 PM drive s1 17.
+6/25/2012 3:10 PM drive 16.5
+6/25/2012 3:10 PM drive 15.7
+6/25/2012 3:10 PM drive s1 16.5
+6/25/2012 3:10 PM drive s1 16.7
+6/25/2012 3:11 PM drive s1 16.4
+6/25/2012 3:11 PM drive s1 16.3
+6/25/2012 3:11 PM drive s1 16.2
+6/25/2012 3:11 PM drive s1 15.7
+6/25/2012 3:11 PM drive s1 15.
+6/25/2012 3:11 PM drive s1 10
+6/25/2012 3:11 PM drive s1 12
+6/25/2012 3:11 PM drive s1 14
+6/25/2012 3:11 PM drive s1 13
+6/25/2012 3:11 PM drive s1 13.4
+6/25/2012 3:13 PM drive s1 14
+6/25/2012 3:13 PM drive s1 14.5
+6/25/2012 3:13 PM drive s1 14.8
+6/25/2012 3:13 PM drive s1 15
+6/25/2012 3:13 PM drive s1 15.5
+6/25/2012 3:13 PM drive s1 15.7
+6/25/2012 3:13 PM scanrel s1 -2 2 0.2
+6/25/2012 3:14 PM drive s1 17.3
+6/25/2012 3:16 PM drive s1 16.6
+6/25/2012 3:16 PM drive s1 16.8
+6/25/2012 3:16 PM drive s1 17
+6/25/2012 3:16 PM drive s1 16.5
+6/25/2012 3:16 PM drive s1 16.3
+6/25/2012 3:17 PM drive s1 16.2
+6/25/2012 3:17 PM drive s1 16.1
+6/25/2012 3:17 PM scanrel s1 -1 1 0.1
+6/25/2012 3:18 PM drive s1 15
+6/25/2012 3:19 PM drive s1 10
+6/25/2012 3:19 PM drive s1 12
+6/25/2012 3:19 PM drive s1 11
+6/25/2012 3:19 PM drive s1 11.1
+6/25/2012 3:19 PM drive s1 11.2
+6/25/2012 3:23 PM drive s1 14
+6/25/2012 3:23 PM drive s1 14.5
+6/25/2012 3:23 PM drive s1 15
+6/25/2012 3:23 PM drive s1 15.5
+6/25/2012 3:23 PM drive s1 15.7
+6/25/2012 3:23 PM drive s1 17
+6/25/2012 3:23 PM drive s1 16.8
+6/25/2012 3:24 PM drive s1 17.2
+6/25/2012 3:24 PM drive s1 17.3
+6/25/2012 3:25 PM drive s1 16.5
+6/25/2012 3:25 PM drive s1 17.5
+6/25/2012 3:25 PM drive s1 15.7
+6/25/2012 3:26 PM scanrel s1 -1 2 0.1
+6/25/2012 3:26 PM drive s2 70
+6/25/2012 3:34 PM drive s2 35.739
+6/25/2012 3:35 PM scanrel s1 -1 2 0.05
+6/25/2012 3:37 PM scantitle "crystal A+B+C+D alignment"
+6/25/2012 3:37 PM scantitle "crystal A+B+C+D co-alignment"
+6/25/2012 3:37 PM scanrel s1 -1 2 0.05
+6/25/2012 3:38 PM scantitle "crystal A+B+C+D co-alignment (002)"
+6/25/2012 3:39 PM scanrel s1 -1 2 0.05
+6/25/2012 3:40 PM drive s1 15.7459
+6/25/2012 3:40 PM ubcalc file "C:\User\exp50\UBConf\tmp\UB25Jun2012_34058PM.ini"
+6/25/2012 3:41 PM th2th -2 2 0.2
+6/25/2012 3:42 PM br 0 0 1
+6/25/2012 3:43 PM scanrel s1 -1 2 0.05
+6/25/2012 3:48 PM br 0 1 0
+6/25/2012 3:49 PM scantitle "crystal A+B+C+D co-alignment (010)"
+6/25/2012 3:49 PM scanrel s1 -1 2 0.05
+6/25/2012 3:51 PM br 0 1 1
+6/25/2012 3:51 PM scantitle "crystal A+B+C+D co-alignment (011)"
+6/25/2012 3:51 PM scanrel s1 -1 2 0.05
+6/25/2012 3:53 PM drive s2 64.395
+6/25/2012 3:55 PM drive s1 -90
+6/25/2012 3:55 PM drive s1 90
+6/25/2012 3:57 PM br 0 0 2
+6/25/2012 3:57 PM drive s1 90
+6/25/2012 3:58 PM scantitle "long scan of (002) 4-crystal"
+6/25/2012 3:58 PM scan s1 90 -90 0.2
+6/25/2012 4:27 PM br 0 0 2
+6/25/2012 4:28 PM drive s1 0
+6/25/2012 4:44 PM drive s2 70
+6/25/2012 4:59 PM scantitle "Instrument resolution at E=5 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 5:00 PM scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+6/25/2012 5:25 PM ef 4.75
+6/25/2012 5:25 PM scantitle "Instrument resolution at E=4.75 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 5:25 PM scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+6/25/2012 5:50 PM ef 4.5
+6/25/2012 5:50 PM scantitle "Instrument resolution at E=4.5 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 5:50 PM scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+6/25/2012 6:16 PM ef 4.25
+6/25/2012 6:16 PM scantitle "Instrument resolution at E=4.25 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 6:16 PM scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+6/25/2012 6:41 PM ef 4.0
+6/25/2012 6:41 PM scantitle "Instrument resolution at E=4.0 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 6:41 PM scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+6/25/2012 7:08 PM ef 3.75
+6/25/2012 7:08 PM scantitle "Instrument resolution at E=3.75 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 7:08 PM scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+6/25/2012 7:37 PM ef 3.5
+6/25/2012 7:37 PM scantitle "Instrument resolution at E=3.5 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 7:37 PM scan q 1.5 e -0.3 0.3 0.03 preset mcu 60
+6/25/2012 8:05 PM ef 3.25
+6/25/2012 8:05 PM scantitle "Instrument resolution at E=3.25 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 8:05 PM scan q 1.5 e -0.3 0.3 0.02 preset mcu 60
+6/25/2012 8:43 PM ef 3.0
+6/25/2012 8:43 PM scantitle "Instrument resolution at E=3.0 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 8:43 PM scan q 1.5 e -0.24 0.24 0.02 preset mcu 60
+6/25/2012 9:17 PM drive e 0
+6/25/2012 9:19 PM drive e -0.3
+6/25/2012 9:25 PM ef 2.65
+6/25/2012 9:25 PM drive ef 2.65
+6/25/2012 9:26 PM scantitle "Instrument resolution at E=2.65 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 9:26 PM scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+6/25/2012 9:28 PM scan q 1.5 e -0.15 0.15 0.015 preset mcu 60
+6/25/2012 9:58 PM ef 2.8
+6/25/2012 9:58 PM drive e 0.037
+6/25/2012 9:58 PM zero a1 0
+6/25/2012 9:59 PM zero a2 0
+6/25/2012 9:59 PM spos a1 @(m1)
+6/25/2012 9:59 PM spos a2 @(m2)
+6/25/2012 10:01 PM ef 2.8
+6/25/2012 10:01 PM scantitle "Instrument resolution at E=2.8 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 10:01 PM scan q 1.5 e -0.3 0.3 0.015 preset mcu 60
+6/25/2012 10:57 PM ef 3.125
+6/25/2012 10:57 PM scantitle "Instrument resolution at E=3.125 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 10:57 PM scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+6/25/2012 11:47 PM ef 3.375
+6/25/2012 11:47 PM scantitle "Instrument resolution at E=3.375 meV, guide-M-open-S-Be-80-A-open-D"
+6/25/2012 11:47 PM scan q 1.5 e -0.4 0.4 0.02 preset mcu 60
+6/26/2012 12:37 AM ef 3.625
+6/26/2012 12:37 AM scantitle "Instrument resolution at E=3.625 meV, guide-M-open-S-Be-80-A-open-D"
+6/26/2012 12:37 AM scan q 1.5 e -0.36 0.36 0.03 preset mcu 60
+6/26/2012 1:08 AM ef 3.875
+6/26/2012 1:08 AM scantitle "Instrument resolution at E=3.875 meV, guide-M-open-S-Be-80-A-open-D"
+6/26/2012 1:08 AM scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+6/26/2012 1:34 AM ef 4.125
+6/26/2012 1:34 AM scantitle "Instrument resolution at E=4.125 meV, guide-M-open-S-Be-80-A-open-D"
+6/26/2012 1:34 AM scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+6/26/2012 1:59 AM ef 4.375
+6/26/2012 1:59 AM scantitle "Instrument resolution at E=4.375 meV, guide-M-open-S-Be-80-A-open-D"
+6/26/2012 1:59 AM scan q 1.5 e -0.4 0.4 0.04 preset mcu 60
+6/26/2012 2:23 AM ef 4.625
+6/26/2012 2:23 AM scantitle "Instrument resolution at E=4.625 meV, guide-M-open-S-Be-80-A-open-D"
+6/26/2012 2:23 AM scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+6/26/2012 2:47 AM ef 4.875
+6/26/2012 2:47 AM scantitle "Instrument resolution at E=4.875 meV, guide-M-open-S-Be-80-A-open-D"
+6/26/2012 2:47 AM scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+6/26/2012 3:11 AM ef 5
+6/26/2012 3:11 AM scantitle "Instrument resolution at E=5.0 meV, guide-M-open-S-Be-80-A-open-D"
+6/26/2012 3:11 AM scan q 1.5 e -0.5 0.5 0.05 preset mcu 60
+6/26/2012 3:35 AM drive e 0 s2 70
+6/26/2012 9:16 AM init
+6/26/2012 9:17 AM calc ei 4.89
+6/26/2012 9:19 AM calc ef 2.8
+6/26/2012 9:19 AM calc ef 2.837
+6/26/2012 9:27 AM calc ei 4.9
+6/26/2012 9:34 AM zero a1 0
+6/26/2012 9:34 AM zero a2 0
+6/26/2012 9:35 AM spos a1 142.48784
+6/26/2012 9:35 AM spos a2 -75.02432
+6/26/2012 9:35 AM ef 5
+6/26/2012 9:35 AM drive e 0
+6/26/2012 9:38 AM lattice 4.550000 4.550000 11.837000 90.000000 90.000000 120.000000
+6/26/2012 9:38 AM drive s2 61.67
+6/26/2012 9:39 AM drive s1 40
+6/26/2012 9:39 AM drive s1 25
+6/26/2012 9:39 AM drive s1 20
+6/26/2012 9:40 AM drive s1 22
+6/26/2012 9:40 AM scantitle "Bi alignment at 50 K (003)"
+6/26/2012 9:40 AM preset time 1
+6/26/2012 9:40 AM scanrel s1 -1 1 0.1
+6/26/2012 9:41 AM drive s1 22
+6/26/2012 9:42 AM drive s1 28
+6/26/2012 9:42 AM drive s1 32
+6/26/2012 9:43 AM drive s1 35
+6/26/2012 9:43 AM drive s1 40
+6/26/2012 9:43 AM drive s1 41
+6/26/2012 9:44 AM drive s1 38
+6/26/2012 9:44 AM drive s1 35
+6/26/2012 9:44 AM drive s1 30
+6/26/2012 9:44 AM drive s1 32
+6/26/2012 9:44 AM drive s1 31
+6/26/2012 9:44 AM scanrel s1 -1 1 0.1
+6/26/2012 9:45 AM drive s1 31.1
+6/26/2012 9:45 AM drive sgl -4
+6/26/2012 9:45 AM scan sgl -4 0 0.5
+6/26/2012 9:46 AM drive sgl -1.633
+6/26/2012 9:46 AM scanrel s1 -1 1 0.1
+6/26/2012 9:47 AM th2th -2 2 0.2
+6/26/2012 9:49 AM drive s2 61.7444 s1 31.1372
+6/26/2012 9:49 AM scanrel s1 -1 1 0.1
+6/26/2012 9:50 AM drive s1 31.115
+6/26/2012 9:50 AM lattice a 4.550000 b 4.550000 c 11.824179
+6/26/2012 9:50 AM ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95038AM.ini"
+6/26/2012 9:50 AM br 0.5 0 2
+6/26/2012 9:51 AM ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95113AM.ini"
+6/26/2012 9:51 AM br 0.5 0 2
+6/26/2012 9:51 AM scanrel sgu -3 3 0.5
+6/26/2012 9:52 AM drive sgu 2
+6/26/2012 9:53 AM drive sgu 1.6
+6/26/2012 9:53 AM scantitle "Bi alignment at 50 K (0.5 0 2)"
+6/26/2012 9:53 AM scanrel s1 -1 1 0.1
+6/26/2012 9:54 AM drive stl 0 stu 0
+6/26/2012 9:54 AM th2th -2 2 0.2
+6/26/2012 9:55 AM drive s2 50.7243 s1 62.4818
+6/26/2012 9:56 AM lattice a 4.529543 b 4.529543 c 11.824200
+6/26/2012 9:56 AM scanrel s1 -1 1 0.1
+6/26/2012 9:57 AM drive s1 62.5171
+6/26/2012 9:57 AM ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_95716AM.ini"
+6/26/2012 9:57 AM br 0.5 0 2
+6/26/2012 9:57 AM br 0 0 3
+6/26/2012 9:58 AM br 0.5 0 2
+6/26/2012 9:59 AM scanrel s1 -1 1 0.1
+6/26/2012 10:00 AM br 0.5 0 2
+6/26/2012 10:00 AM lattice 4.529543 4.529543 11.824200 90.000000 90.000000 120.000000
+6/26/2012 10:00 AM ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100017AM.ini"
+6/26/2012 10:00 AM br 1 0 1
+6/26/2012 10:00 AM scantitle "Bi alignment at 50 K (1 0 1)"
+6/26/2012 10:01 AM scanrel s1 -1 1 0.1
+6/26/2012 10:02 AM drive s1 104.7258
+6/26/2012 10:02 AM th2th -2 2 0.2
+6/26/2012 10:03 AM drive s2 65.7453 s1 104.6965
+6/26/2012 10:04 AM lattice a 4.533506 b 4.533506 c 11.824200
+6/26/2012 10:04 AM scanrel s1 -1 1 0.1
+6/26/2012 10:05 AM ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100457AM.ini"
+6/26/2012 10:05 AM scan sgu 3 0 0.5
+6/26/2012 10:06 AM drive sgu 1
+6/26/2012 10:06 AM scanrel s1 -1 1 0.1
+6/26/2012 10:07 AM drive s1 104.717
+6/26/2012 10:07 AM ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_100719AM.ini"
+6/26/2012 10:07 AM br 1 0 1
+6/26/2012 10:07 AM br 0.5 0 2
+6/26/2012 10:08 AM drive s1 0
+6/26/2012 10:18 AM drive s1 -90
+6/26/2012 10:19 AM drive s1 -100
+6/26/2012 10:19 AM drive s1 100
+6/26/2012 10:22 AM br 0 0 3
+6/26/2012 10:23 AM scantitle "Bi alignment at 50 K (0 0 3) with Be filter"
+6/26/2012 10:23 AM scanrel s1 -1 1 0.1
+6/26/2012 10:24 AM scan sgl -4 0 0.5
+6/26/2012 10:24 AM br 0 0 3
+6/26/2012 10:25 AM br 1 0 1
+6/26/2012 10:25 AM scantitle "Bi alignment at 50 K (1 0 1) with Be filter"
+6/26/2012 10:25 AM scanrel s1 -1 1 0.1
+6/26/2012 10:26 AM scanrel sgu -3 3 0.5
+6/26/2012 10:28 AM drive sgu 0.2862
+6/26/2012 10:28 AM scanrel s1 -1 1 0.1
+6/26/2012 10:29 AM ubcalc file "C:\User\exp50\UBConf\tmp\UB26Jun2012_102903AM.ini"
+6/26/2012 10:29 AM br 1 0 1
+6/26/2012 10:29 AM th2th -2 2 0.2
+6/26/2012 10:30 AM br 0 0 3
+6/26/2012 10:31 AM th2th -2 2 0.2
+6/26/2012 10:38 AM count preset time 60
+6/26/2012 10:39 AM mcu 82948
+6/26/2012 10:39 AM ei 5
+6/26/2012 10:39 AM scantitle "TO at G (1,0,1), T=50K"
+6/26/2012 10:39 AM scan h 1 k 0 l 1 e -12.5 -7.25 0.25 preset mcu 12
+6/26/2012 3:37 PM scantitle "LA at L (1.5, 0, 1.5), T=50K"
+6/26/2012 3:37 PM scan h 1.5 k 0 l 1.5 e -8.2 -5.6 0.2 preset mcu 4
+6/26/2012 4:40 PM scantitle "LA at X (-1.5, 0, 0), T=50K"
+6/26/2012 4:40 PM scan h -1.5 k 0 l 0 e -5.25 -2.5 0.25 preset mcu 2
+6/26/2012 5:06 PM scantitle "LA + TA at T (-1,0,3.5), T=50K"
+6/26/2012 5:06 PM scan h -1 k 0 l 3.5 e -8.8 -3.4 0.2 preset mcu 2
+6/26/2012 6:04 PM scantitle "LO at L (1.5, 0, 1.5), T=50K"
+6/26/2012 6:04 PM scan h 1.5 k 0 l 1.5 e -16.0 -10.5 0.25 preset mcu 12
+6/26/2012 10:44 PM scantitle "LO at T (0, 0, 4.5), T=50K"
+6/26/2012 10:44 PM scan h 0 k 0 l 4.5 e -16.75 -11 0.25 preset mcu 12
+6/27/2012 3:36 AM scantitle "LO at X (1.5, 0, 0), T=50K"
+6/27/2012 3:36 AM scan h 1.5 k 0 l 0 e -14.5 -10 0.25 preset mcu 15
+6/27/2012 8:26 AM scantitle "LA+TA mid G-X (-0.75, 0, 1.5), T=50K"
+6/27/2012 8:26 AM scan h -0.75 k 0 l 1.5 e -7.5 -1.5 0.25 preset mcu 8
+6/27/2012 11:51 AM scantitle "LA+TA G-T (-1, 0, 2.9), T=50K"
+6/27/2012 11:51 AM scan h -1 k 0 l 2.9 e -6.5 -2.5 0.1 preset mcu 2
+6/27/2012 1:16 PM set_temp 200
+6/27/2012 1:19 PM ef 5
+6/27/2012 1:19 PM drive e 0
+6/27/2012 1:19 PM br 0 0 3
+6/27/2012 1:21 PM preset time 1
+6/27/2012 1:21 PM scantitle "Bi (003) check at 50 K"
+6/27/2012 1:21 PM scanrel s1 -1 1 0.1
+6/27/2012 1:22 PM th2th -2 2 0.2
+6/27/2012 1:23 PM br 0.5 0 2
+6/27/2012 1:23 PM br 1 0 1
+6/27/2012 1:24 PM scanrel s1 -1 1 0.1
+6/27/2012 1:24 PM th2th -2 2 0.2
+6/27/2012 1:29 PM drive s2 70 s1 0
+6/27/2012 1:30 PM drive sgl 0 sgu 0
+6/27/2012 1:48 PM init
+6/27/2012 1:50 PM begin
diff --git a/test_data/Bi_CTAX/exp50/index.html b/test_data/Bi_CTAX/exp50/index.html
new file mode 100644
index 0000000..99a0fb6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/index.html@C=D;O=A b/test_data/Bi_CTAX/exp50/index.html@C=D;O=A
new file mode 100644
index 0000000..239e366
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html@C=D;O=A
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/index.html@C=D;O=D b/test_data/Bi_CTAX/exp50/index.html@C=D;O=D
new file mode 100644
index 0000000..dae640d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html@C=D;O=D
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/index.html@C=M;O=A b/test_data/Bi_CTAX/exp50/index.html@C=M;O=A
new file mode 100644
index 0000000..ffec894
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html@C=M;O=A
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/index.html@C=M;O=D b/test_data/Bi_CTAX/exp50/index.html@C=M;O=D
new file mode 100644
index 0000000..f48ff7b
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html@C=M;O=D
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/index.html@C=N;O=A b/test_data/Bi_CTAX/exp50/index.html@C=N;O=A
new file mode 100644
index 0000000..99a0fb6
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html@C=N;O=A
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/index.html@C=N;O=D b/test_data/Bi_CTAX/exp50/index.html@C=N;O=D
new file mode 100644
index 0000000..dae640d
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html@C=N;O=D
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/index.html@C=S;O=A b/test_data/Bi_CTAX/exp50/index.html@C=S;O=A
new file mode 100644
index 0000000..55f0d69
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html@C=S;O=A
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/index.html@C=S;O=D b/test_data/Bi_CTAX/exp50/index.html@C=S;O=D
new file mode 100644
index 0000000..d542571
--- /dev/null
+++ b/test_data/Bi_CTAX/exp50/index.html@C=S;O=D
@@ -0,0 +1,25 @@
+
+
+
+ Index of /user_data/cg4c/exp50
+
+
+Index of /user_data/cg4c/exp50
+
+Apache/2.2.17 (Ubuntu) Server at neutron.ornl.gov Port 80
+
diff --git a/test_data/Bi_CTAX/exp50/webcontrol.ini b/test_data/Bi_CTAX/exp50/webcontrol.ini
new file mode 100644
index 0000000..e69de29
diff --git a/test_data/exp978/.DS_Store b/test_data/IPTS9879_HB1A_exp978/exp978/.DS_Store
similarity index 100%
rename from test_data/exp978/.DS_Store
rename to test_data/IPTS9879_HB1A_exp978/exp978/.DS_Store
diff --git a/test_data/exp978/Calibration/si23May2023_52601PM b/test_data/IPTS9879_HB1A_exp978/exp978/Calibration/si23May2023_52601PM
similarity index 100%
rename from test_data/exp978/Calibration/si23May2023_52601PM
rename to test_data/IPTS9879_HB1A_exp978/exp978/Calibration/si23May2023_52601PM
diff --git a/test_data/exp978/Calibration/si23May2023_52601PM.out b/test_data/IPTS9879_HB1A_exp978/exp978/Calibration/si23May2023_52601PM.out
similarity index 100%
rename from test_data/exp978/Calibration/si23May2023_52601PM.out
rename to test_data/IPTS9879_HB1A_exp978/exp978/Calibration/si23May2023_52601PM.out
diff --git a/test_data/IPTS9879_HB1A_exp978/exp978/CountLog.txt b/test_data/IPTS9879_HB1A_exp978/exp978/CountLog.txt
new file mode 100644
index 0000000..e69de29
diff --git a/test_data/exp978/DataLogs/exp978datalog.txt b/test_data/IPTS9879_HB1A_exp978/exp978/DataLogs/exp978datalog.txt
similarity index 100%
rename from test_data/exp978/DataLogs/exp978datalog.txt
rename to test_data/IPTS9879_HB1A_exp978/exp978/DataLogs/exp978datalog.txt
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0001.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0001.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0001.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0001.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0002.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0002.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0002.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0002.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0003.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0003.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0003.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0003.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0004.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0004.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0004.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0004.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0005.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0005.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0005.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0005.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0006.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0006.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0006.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0006.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0007.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0007.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0007.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0007.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0008.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0008.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0008.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0008.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0009.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0009.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0009.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0009.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0010.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0010.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0010.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0010.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0011.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0011.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0011.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0011.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0012.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0012.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0012.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0012.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0013.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0013.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0013.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0013.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0014.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0014.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0014.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0014.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0015.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0015.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0015.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0015.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0016.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0016.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0016.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0016.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0017.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0017.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0017.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0017.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0018.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0018.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0018.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0018.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0019.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0019.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0019.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0019.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0020.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0020.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0020.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0020.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0021.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0021.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0021.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0021.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0022.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0022.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0022.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0022.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0023.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0023.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0023.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0023.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0024.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0024.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0024.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0024.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0025.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0025.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0025.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0025.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0026.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0026.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0026.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0026.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0027.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0027.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0027.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0027.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0028.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0028.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0028.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0028.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0029.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0029.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0029.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0029.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0030.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0030.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0030.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0030.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0031.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0031.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0031.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0031.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0032.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0032.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0032.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0032.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0033.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0033.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0033.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0033.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0034.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0034.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0034.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0034.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0035.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0035.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0035.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0035.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0036.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0036.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0036.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0036.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0037.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0037.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0037.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0037.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0038.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0038.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0038.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0038.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0039.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0039.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0039.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0039.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0040.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0040.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0040.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0040.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0041.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0041.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0041.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0041.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0042.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0042.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0042.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0042.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0043.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0043.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0043.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0043.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0044.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0044.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0044.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0044.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0045.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0045.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0045.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0045.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0046.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0046.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0046.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0046.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0047.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0047.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0047.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0047.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0048.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0048.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0048.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0048.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0049.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0049.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0049.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0049.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0050.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0050.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0050.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0050.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0051.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0051.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0051.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0051.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0052.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0052.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0052.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0052.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0053.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0053.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0053.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0053.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0054.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0054.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0054.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0054.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0055.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0055.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0055.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0055.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0056.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0056.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0056.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0056.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0057.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0057.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0057.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0057.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0058.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0058.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0058.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0058.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0059.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0059.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0059.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0059.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0060.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0060.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0060.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0060.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0061.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0061.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0061.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0061.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0062.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0062.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0062.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0062.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0063.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0063.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0063.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0063.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0064.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0064.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0064.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0064.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0065.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0065.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0065.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0065.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0066.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0066.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0066.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0066.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0067.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0067.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0067.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0067.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0068.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0068.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0068.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0068.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0069.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0069.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0069.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0069.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0070.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0070.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0070.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0070.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0071.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0071.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0071.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0071.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0072.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0072.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0072.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0072.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0073.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0073.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0073.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0073.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0074.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0074.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0074.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0074.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0075.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0075.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0075.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0075.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0076.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0076.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0076.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0076.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0077.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0077.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0077.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0077.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0078.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0078.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0078.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0078.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0079.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0079.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0079.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0079.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0080.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0080.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0080.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0080.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0081.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0081.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0081.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0081.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0082.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0082.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0082.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0082.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0083.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0083.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0083.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0083.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0084.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0084.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0084.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0084.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0085.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0085.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0085.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0085.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0086.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0086.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0086.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0086.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0087.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0087.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0087.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0087.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0088.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0088.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0088.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0088.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0089.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0089.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0089.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0089.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0090.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0090.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0090.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0090.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0091.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0091.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0091.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0091.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0092.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0092.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0092.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0092.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0093.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0093.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0093.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0093.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0094.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0094.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0094.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0094.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0095.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0095.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0095.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0095.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0096.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0096.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0096.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0096.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0097.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0097.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0097.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0097.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0098.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0098.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0098.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0098.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0099.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0099.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0099.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0099.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0100.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0100.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0100.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0100.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0101.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0101.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0101.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0101.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0102.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0102.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0102.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0102.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0103.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0103.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0103.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0103.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0104.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0104.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0104.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0104.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0105.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0105.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0105.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0105.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0106.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0106.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0106.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0106.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0107.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0107.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0107.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0107.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0108.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0108.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0108.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0108.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0109.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0109.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0109.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0109.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0110.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0110.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0110.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0110.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0111.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0111.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0111.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0111.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0112.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0112.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0112.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0112.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0113.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0113.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0113.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0113.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0114.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0114.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0114.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0114.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0115.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0115.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0115.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0115.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0116.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0116.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0116.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0116.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0117.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0117.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0117.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0117.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0118.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0118.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0118.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0118.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0119.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0119.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0119.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0119.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0120.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0120.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0120.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0120.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0121.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0121.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0121.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0121.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0122.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0122.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0122.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0122.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0123.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0123.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0123.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0123.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0124.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0124.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0124.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0124.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0125.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0125.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0125.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0125.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0126.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0126.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0126.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0126.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0127.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0127.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0127.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0127.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0128.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0128.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0128.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0128.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0129.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0129.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0129.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0129.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0130.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0130.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0130.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0130.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0131.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0131.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0131.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0131.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0132.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0132.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0132.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0132.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0133.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0133.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0133.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0133.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0134.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0134.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0134.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0134.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0135.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0135.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0135.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0135.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0136.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0136.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0136.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0136.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0137.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0137.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0137.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0137.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0138.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0138.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0138.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0138.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0139.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0139.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0139.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0139.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0140.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0140.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0140.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0140.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0141.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0141.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0141.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0141.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0142.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0142.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0142.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0142.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0143.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0143.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0143.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0143.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0144.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0144.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0144.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0144.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0145.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0145.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0145.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0145.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0146.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0146.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0146.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0146.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0147.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0147.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0147.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0147.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0148.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0148.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0148.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0148.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0149.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0149.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0149.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0149.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0150.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0150.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0150.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0150.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0151.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0151.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0151.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0151.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0152.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0152.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0152.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0152.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0153.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0153.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0153.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0153.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0154.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0154.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0154.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0154.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0155.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0155.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0155.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0155.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0156.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0156.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0156.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0156.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0157.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0157.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0157.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0157.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0158.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0158.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0158.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0158.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0159.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0159.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0159.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0159.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0160.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0160.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0160.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0160.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0161.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0161.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0161.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0161.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0162.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0162.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0162.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0162.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0163.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0163.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0163.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0163.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0164.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0164.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0164.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0164.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0165.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0165.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0165.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0165.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0166.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0166.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0166.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0166.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0167.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0167.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0167.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0167.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0168.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0168.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0168.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0168.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0169.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0169.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0169.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0169.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0170.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0170.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0170.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0170.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0171.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0171.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0171.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0171.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0172.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0172.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0172.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0172.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0173.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0173.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0173.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0173.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0174.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0174.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0174.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0174.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0175.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0175.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0175.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0175.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0176.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0176.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0176.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0176.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0177.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0177.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0177.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0177.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0178.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0178.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0178.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0178.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0179.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0179.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0179.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0179.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0180.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0180.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0180.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0180.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0181.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0181.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0181.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0181.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0182.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0182.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0182.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0182.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0183.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0183.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0183.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0183.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0184.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0184.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0184.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0184.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0185.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0185.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0185.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0185.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0186.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0186.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0186.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0186.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0187.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0187.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0187.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0187.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0188.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0188.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0188.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0188.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0189.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0189.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0189.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0189.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0190.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0190.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0190.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0190.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0191.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0191.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0191.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0191.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0192.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0192.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0192.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0192.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0193.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0193.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0193.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0193.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0194.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0194.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0194.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0194.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0195.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0195.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0195.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0195.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0196.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0196.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0196.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0196.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0197.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0197.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0197.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0197.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0198.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0198.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0198.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0198.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0199.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0199.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0199.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0199.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0200.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0200.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0200.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0200.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0201.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0201.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0201.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0201.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0202.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0202.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0202.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0202.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0203.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0203.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0203.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0203.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0204.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0204.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0204.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0204.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0205.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0205.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0205.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0205.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0206.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0206.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0206.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0206.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0207.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0207.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0207.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0207.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0208.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0208.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0208.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0208.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0209.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0209.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0209.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0209.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0210.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0210.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0210.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0210.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0211.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0211.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0211.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0211.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0212.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0212.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0212.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0212.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0213.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0213.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0213.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0213.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0214.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0214.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0214.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0214.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0215.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0215.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0215.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0215.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0216.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0216.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0216.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0216.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0217.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0217.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0217.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0217.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0218.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0218.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0218.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0218.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0219.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0219.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0219.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0219.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0220.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0220.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0220.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0220.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0221.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0221.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0221.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0221.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0222.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0222.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0222.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0222.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0223.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0223.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0223.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0223.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0224.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0224.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0224.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0224.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0225.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0225.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0225.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0225.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0226.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0226.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0226.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0226.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0227.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0227.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0227.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0227.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0228.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0228.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0228.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0228.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0229.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0229.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0229.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0229.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0230.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0230.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0230.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0230.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0231.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0231.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0231.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0231.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0232.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0232.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0232.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0232.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0233.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0233.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0233.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0233.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0234.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0234.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0234.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0234.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0235.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0235.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0235.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0235.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0236.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0236.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0236.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0236.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0237.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0237.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0237.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0237.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0238.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0238.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0238.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0238.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0239.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0239.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0239.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0239.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0240.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0240.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0240.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0240.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0241.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0241.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0241.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0241.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0242.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0242.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0242.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0242.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0243.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0243.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0243.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0243.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0244.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0244.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0244.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0244.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0245.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0245.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0245.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0245.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0246.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0246.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0246.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0246.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0247.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0247.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0247.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0247.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0248.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0248.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0248.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0248.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0249.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0249.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0249.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0249.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0250.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0250.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0250.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0250.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0251.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0251.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0251.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0251.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0252.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0252.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0252.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0252.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0253.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0253.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0253.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0253.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0254.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0254.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0254.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0254.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0255.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0255.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0255.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0255.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0256.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0256.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0256.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0256.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0257.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0257.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0257.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0257.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0258.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0258.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0258.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0258.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0259.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0259.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0259.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0259.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0260.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0260.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0260.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0260.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0261.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0261.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0261.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0261.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0262.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0262.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0262.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0262.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0263.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0263.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0263.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0263.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0264.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0264.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0264.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0264.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0265.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0265.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0265.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0265.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0266.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0266.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0266.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0266.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0267.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0267.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0267.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0267.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0268.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0268.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0268.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0268.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0269.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0269.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0269.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0269.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0270.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0270.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0270.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0270.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0271.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0271.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0271.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0271.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0272.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0272.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0272.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0272.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0273.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0273.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0273.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0273.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0274.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0274.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0274.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0274.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0275.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0275.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0275.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0275.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0276.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0276.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0276.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0276.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0277.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0277.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0277.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0277.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0278.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0278.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0278.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0278.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0279.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0279.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0279.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0279.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0280.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0280.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0280.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0280.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0281.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0281.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0281.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0281.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0282.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0282.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0282.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0282.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0283.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0283.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0283.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0283.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0284.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0284.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0284.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0284.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0285.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0285.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0285.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0285.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0286.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0286.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0286.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0286.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0287.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0287.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0287.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0287.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0288.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0288.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0288.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0288.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0289.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0289.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0289.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0289.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0290.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0290.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0290.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0290.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0291.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0291.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0291.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0291.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0292.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0292.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0292.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0292.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0293.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0293.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0293.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0293.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0294.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0294.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0294.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0294.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0295.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0295.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0295.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0295.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0296.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0296.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0296.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0296.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0297.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0297.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0297.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0297.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0298.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0298.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0298.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0298.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0299.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0299.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0299.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0299.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0300.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0300.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0300.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0300.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0301.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0301.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0301.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0301.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0302.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0302.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0302.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0302.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0303.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0303.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0303.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0303.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0304.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0304.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0304.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0304.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0305.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0305.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0305.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0305.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0306.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0306.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0306.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0306.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0307.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0307.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0307.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0307.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0308.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0308.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0308.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0308.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0309.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0309.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0309.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0309.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0310.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0310.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0310.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0310.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0311.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0311.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0311.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0311.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0312.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0312.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0312.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0312.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0313.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0313.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0313.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0313.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0314.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0314.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0314.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0314.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0315.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0315.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0315.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0315.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0316.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0316.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0316.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0316.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0317.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0317.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0317.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0317.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0318.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0318.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0318.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0318.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0319.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0319.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0319.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0319.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0320.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0320.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0320.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0320.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0321.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0321.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0321.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0321.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0322.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0322.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0322.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0322.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0323.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0323.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0323.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0323.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0324.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0324.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0324.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0324.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0325.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0325.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0325.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0325.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0326.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0326.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0326.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0326.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0327.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0327.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0327.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0327.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0328.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0328.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0328.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0328.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0329.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0329.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0329.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0329.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0330.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0330.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0330.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0330.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0331.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0331.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0331.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0331.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0332.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0332.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0332.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0332.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0333.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0333.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0333.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0333.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0334.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0334.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0334.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0334.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0335.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0335.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0335.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0335.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0336.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0336.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0336.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0336.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0337.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0337.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0337.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0337.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0338.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0338.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0338.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0338.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0339.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0339.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0339.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0339.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0340.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0340.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0340.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0340.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0341.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0341.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0341.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0341.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0342.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0342.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0342.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0342.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0343.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0343.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0343.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0343.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0344.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0344.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0344.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0344.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0345.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0345.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0345.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0345.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0346.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0346.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0346.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0346.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0347.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0347.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0347.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0347.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0348.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0348.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0348.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0348.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0349.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0349.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0349.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0349.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0350.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0350.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0350.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0350.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0351.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0351.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0351.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0351.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0352.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0352.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0352.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0352.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0353.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0353.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0353.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0353.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0354.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0354.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0354.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0354.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0355.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0355.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0355.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0355.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0356.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0356.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0356.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0356.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0357.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0357.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0357.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0357.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0358.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0358.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0358.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0358.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0359.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0359.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0359.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0359.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0360.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0360.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0360.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0360.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0361.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0361.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0361.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0361.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0362.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0362.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0362.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0362.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0363.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0363.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0363.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0363.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0364.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0364.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0364.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0364.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0365.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0365.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0365.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0365.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0366.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0366.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0366.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0366.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0367.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0367.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0367.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0367.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0368.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0368.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0368.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0368.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0369.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0369.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0369.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0369.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0370.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0370.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0370.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0370.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0371.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0371.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0371.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0371.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0372.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0372.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0372.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0372.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0373.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0373.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0373.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0373.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0374.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0374.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0374.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0374.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0375.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0375.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0375.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0375.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0376.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0376.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0376.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0376.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0377.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0377.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0377.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0377.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0378.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0378.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0378.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0378.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0379.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0379.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0379.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0379.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0380.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0380.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0380.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0380.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0381.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0381.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0381.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0381.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0382.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0382.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0382.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0382.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0383.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0383.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0383.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0383.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0384.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0384.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0384.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0384.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0385.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0385.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0385.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0385.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0386.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0386.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0386.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0386.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0387.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0387.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0387.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0387.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0388.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0388.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0388.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0388.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0389.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0389.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0389.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0389.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0390.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0390.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0390.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0390.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0391.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0391.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0391.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0391.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0392.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0392.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0392.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0392.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0393.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0393.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0393.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0393.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0394.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0394.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0394.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0394.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0395.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0395.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0395.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0395.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0396.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0396.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0396.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0396.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0397.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0397.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0397.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0397.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0398.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0398.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0398.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0398.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0399.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0399.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0399.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0399.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0400.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0400.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0400.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0400.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0401.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0401.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0401.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0401.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0402.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0402.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0402.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0402.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0403.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0403.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0403.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0403.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0404.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0404.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0404.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0404.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0405.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0405.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0405.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0405.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0406.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0406.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0406.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0406.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0407.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0407.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0407.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0407.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0408.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0408.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0408.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0408.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0409.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0409.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0409.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0409.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0410.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0410.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0410.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0410.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0411.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0411.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0411.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0411.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0412.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0412.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0412.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0412.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0413.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0413.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0413.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0413.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0414.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0414.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0414.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0414.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0415.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0415.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0415.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0415.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0416.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0416.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0416.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0416.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0417.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0417.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0417.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0417.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0418.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0418.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0418.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0418.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0419.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0419.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0419.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0419.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0420.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0420.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0420.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0420.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0421.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0421.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0421.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0421.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0422.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0422.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0422.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0422.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0423.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0423.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0423.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0423.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0424.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0424.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0424.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0424.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0425.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0425.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0425.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0425.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0426.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0426.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0426.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0426.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0427.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0427.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0427.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0427.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0428.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0428.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0428.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0428.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0429.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0429.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0429.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0429.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0430.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0430.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0430.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0430.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0431.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0431.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0431.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0431.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0432.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0432.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0432.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0432.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0433.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0433.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0433.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0433.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0434.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0434.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0434.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0434.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0435.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0435.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0435.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0435.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0436.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0436.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0436.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0436.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0437.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0437.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0437.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0437.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0438.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0438.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0438.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0438.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0439.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0439.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0439.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0439.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0440.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0440.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0440.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0440.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0441.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0441.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0441.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0441.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0442.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0442.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0442.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0442.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0443.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0443.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0443.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0443.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0444.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0444.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0444.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0444.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0445.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0445.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0445.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0445.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0446.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0446.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0446.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0446.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0447.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0447.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0447.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0447.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0448.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0448.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0448.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0448.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0449.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0449.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0449.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0449.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0450.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0450.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0450.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0450.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0451.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0451.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0451.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0451.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0452.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0452.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0452.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0452.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0453.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0453.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0453.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0453.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0454.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0454.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0454.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0454.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0455.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0455.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0455.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0455.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0456.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0456.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0456.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0456.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0457.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0457.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0457.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0457.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0458.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0458.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0458.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0458.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0459.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0459.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0459.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0459.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0460.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0460.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0460.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0460.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0461.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0461.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0461.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0461.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0462.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0462.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0462.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0462.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0463.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0463.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0463.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0463.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0464.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0464.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0464.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0464.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0465.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0465.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0465.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0465.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0466.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0466.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0466.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0466.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0467.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0467.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0467.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0467.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0468.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0468.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0468.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0468.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0469.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0469.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0469.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0469.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0470.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0470.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0470.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0470.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0471.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0471.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0471.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0471.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0472.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0472.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0472.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0472.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0473.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0473.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0473.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0473.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0474.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0474.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0474.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0474.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0475.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0475.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0475.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0475.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0476.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0476.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0476.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0476.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0477.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0477.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0477.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0477.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0478.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0478.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0478.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0478.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0479.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0479.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0479.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0479.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0480.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0480.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0480.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0480.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0481.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0481.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0481.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0481.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0482.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0482.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0482.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0482.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0483.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0483.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0483.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0483.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0484.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0484.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0484.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0484.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0485.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0485.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0485.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0485.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0486.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0486.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0486.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0486.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0487.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0487.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0487.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0487.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0488.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0488.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0488.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0488.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0489.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0489.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0489.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0489.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0490.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0490.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0490.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0490.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0491.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0491.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0491.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0491.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0492.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0492.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0492.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0492.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0493.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0493.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0493.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0493.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0494.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0494.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0494.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0494.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0495.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0495.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0495.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0495.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0496.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0496.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0496.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0496.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0497.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0497.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0497.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0497.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0498.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0498.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0498.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0498.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0499.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0499.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0499.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0499.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0500.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0500.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0500.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0500.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0501.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0501.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0501.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0501.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0502.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0502.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0502.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0502.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0503.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0503.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0503.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0503.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0504.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0504.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0504.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0504.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0505.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0505.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0505.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0505.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0506.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0506.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0506.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0506.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0507.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0507.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0507.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0507.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0508.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0508.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0508.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0508.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0509.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0509.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0509.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0509.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0510.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0510.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0510.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0510.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0511.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0511.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0511.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0511.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0512.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0512.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0512.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0512.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0513.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0513.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0513.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0513.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0514.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0514.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0514.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0514.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0515.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0515.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0515.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0515.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0516.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0516.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0516.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0516.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0517.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0517.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0517.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0517.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0518.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0518.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0518.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0518.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0519.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0519.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0519.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0519.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0520.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0520.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0520.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0520.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0521.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0521.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0521.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0521.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0522.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0522.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0522.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0522.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0523.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0523.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0523.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0523.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0524.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0524.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0524.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0524.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0525.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0525.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0525.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0525.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0526.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0526.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0526.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0526.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0527.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0527.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0527.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0527.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0528.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0528.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0528.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0528.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0529.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0529.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0529.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0529.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0530.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0530.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0530.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0530.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0531.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0531.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0531.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0531.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0532.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0532.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0532.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0532.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0533.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0533.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0533.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0533.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0534.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0534.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0534.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0534.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0535.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0535.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0535.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0535.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0536.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0536.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0536.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0536.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0537.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0537.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0537.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0537.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0538.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0538.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0538.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0538.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0539.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0539.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0539.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0539.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0540.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0540.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0540.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0540.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0541.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0541.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0541.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0541.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0542.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0542.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0542.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0542.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0543.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0543.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0543.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0543.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0544.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0544.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0544.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0544.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0545.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0545.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0545.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0545.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0546.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0546.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0546.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0546.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0547.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0547.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0547.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0547.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0548.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0548.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0548.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0548.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0549.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0549.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0549.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0549.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0550.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0550.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0550.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0550.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0551.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0551.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0551.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0551.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0552.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0552.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0552.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0552.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0553.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0553.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0553.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0553.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0554.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0554.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0554.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0554.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0555.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0555.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0555.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0555.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0556.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0556.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0556.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0556.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0557.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0557.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0557.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0557.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0558.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0558.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0558.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0558.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0559.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0559.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0559.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0559.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0560.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0560.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0560.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0560.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0561.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0561.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0561.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0561.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0562.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0562.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0562.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0562.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0563.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0563.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0563.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0563.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0564.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0564.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0564.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0564.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0565.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0565.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0565.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0565.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0566.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0566.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0566.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0566.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0567.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0567.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0567.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0567.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0568.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0568.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0568.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0568.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0569.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0569.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0569.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0569.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0570.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0570.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0570.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0570.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0571.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0571.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0571.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0571.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0572.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0572.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0572.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0572.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0573.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0573.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0573.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0573.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0574.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0574.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0574.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0574.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0575.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0575.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0575.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0575.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0576.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0576.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0576.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0576.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0577.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0577.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0577.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0577.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0578.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0578.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0578.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0578.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0579.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0579.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0579.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0579.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0580.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0580.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0580.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0580.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0581.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0581.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0581.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0581.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0582.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0582.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0582.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0582.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0583.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0583.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0583.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0583.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0584.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0584.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0584.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0584.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0585.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0585.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0585.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0585.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0586.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0586.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0586.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0586.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0587.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0587.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0587.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0587.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0588.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0588.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0588.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0588.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0589.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0589.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0589.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0589.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0590.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0590.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0590.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0590.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0591.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0591.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0591.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0591.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0592.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0592.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0592.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0592.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0593.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0593.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0593.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0593.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0594.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0594.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0594.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0594.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0595.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0595.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0595.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0595.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0596.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0596.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0596.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0596.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0597.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0597.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0597.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0597.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0598.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0598.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0598.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0598.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0599.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0599.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0599.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0599.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0600.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0600.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0600.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0600.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0601.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0601.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0601.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0601.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0602.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0602.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0602.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0602.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0603.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0603.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0603.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0603.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0604.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0604.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0604.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0604.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0605.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0605.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0605.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0605.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0606.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0606.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0606.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0606.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0607.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0607.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0607.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0607.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0608.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0608.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0608.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0608.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0609.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0609.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0609.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0609.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0610.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0610.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0610.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0610.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0611.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0611.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0611.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0611.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0612.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0612.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0612.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0612.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0613.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0613.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0613.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0613.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0614.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0614.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0614.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0614.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0615.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0615.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0615.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0615.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0616.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0616.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0616.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0616.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0617.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0617.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0617.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0617.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0618.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0618.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0618.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0618.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0619.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0619.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0619.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0619.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0620.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0620.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0620.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0620.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0621.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0621.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0621.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0621.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0622.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0622.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0622.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0622.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0623.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0623.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0623.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0623.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0624.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0624.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0624.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0624.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0625.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0625.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0625.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0625.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0626.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0626.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0626.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0626.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0627.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0627.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0627.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0627.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0628.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0628.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0628.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0628.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0629.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0629.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0629.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0629.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0630.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0630.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0630.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0630.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0631.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0631.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0631.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0631.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0632.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0632.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0632.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0632.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0633.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0633.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0633.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0633.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0634.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0634.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0634.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0634.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0635.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0635.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0635.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0635.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0636.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0636.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0636.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0636.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0637.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0637.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0637.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0637.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0638.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0638.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0638.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0638.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0639.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0639.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0639.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0639.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0640.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0640.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0640.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0640.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0641.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0641.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0641.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0641.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0642.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0642.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0642.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0642.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0643.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0643.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0643.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0643.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0644.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0644.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0644.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0644.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0645.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0645.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0645.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0645.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0646.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0646.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0646.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0646.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0647.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0647.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0647.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0647.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0648.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0648.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0648.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0648.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0649.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0649.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0649.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0649.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0650.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0650.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0650.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0650.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0651.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0651.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0651.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0651.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0652.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0652.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0652.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0652.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0653.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0653.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0653.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0653.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0654.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0654.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0654.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0654.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0655.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0655.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0655.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0655.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0656.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0656.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0656.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0656.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0657.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0657.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0657.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0657.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0658.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0658.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0658.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0658.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0659.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0659.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0659.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0659.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0660.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0660.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0660.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0660.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0661.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0661.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0661.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0661.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0662.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0662.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0662.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0662.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0663.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0663.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0663.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0663.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0664.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0664.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0664.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0664.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0665.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0665.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0665.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0665.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0666.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0666.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0666.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0666.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0667.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0667.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0667.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0667.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0668.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0668.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0668.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0668.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0669.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0669.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0669.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0669.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0670.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0670.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0670.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0670.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0671.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0671.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0671.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0671.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0672.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0672.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0672.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0672.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0673.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0673.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0673.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0673.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0674.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0674.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0674.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0674.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0675.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0675.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0675.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0675.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0676.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0676.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0676.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0676.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0677.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0677.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0677.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0677.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0678.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0678.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0678.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0678.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0679.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0679.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0679.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0679.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0680.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0680.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0680.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0680.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0681.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0681.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0681.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0681.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0682.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0682.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0682.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0682.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0683.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0683.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0683.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0683.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0684.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0684.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0684.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0684.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0685.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0685.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0685.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0685.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0686.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0686.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0686.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0686.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0687.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0687.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0687.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0687.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0688.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0688.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0688.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0688.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0689.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0689.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0689.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0689.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0690.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0690.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0690.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0690.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0691.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0691.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0691.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0691.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0692.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0692.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0692.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0692.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0693.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0693.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0693.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0693.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0694.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0694.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0694.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0694.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0695.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0695.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0695.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0695.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0696.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0696.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0696.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0696.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0697.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0697.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0697.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0697.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0698.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0698.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0698.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0698.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0699.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0699.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0699.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0699.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0700.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0700.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0700.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0700.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0701.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0701.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0701.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0701.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0702.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0702.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0702.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0702.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0703.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0703.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0703.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0703.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0704.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0704.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0704.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0704.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0705.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0705.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0705.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0705.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0706.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0706.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0706.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0706.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0707.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0707.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0707.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0707.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0708.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0708.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0708.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0708.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0709.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0709.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0709.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0709.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0710.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0710.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0710.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0710.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0711.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0711.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0711.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0711.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0712.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0712.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0712.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0712.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0713.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0713.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0713.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0713.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0714.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0714.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0714.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0714.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0715.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0715.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0715.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0715.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0716.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0716.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0716.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0716.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0717.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0717.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0717.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0717.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0718.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0718.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0718.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0718.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0719.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0719.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0719.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0719.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0720.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0720.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0720.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0720.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0721.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0721.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0721.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0721.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0722.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0722.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0722.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0722.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0723.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0723.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0723.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0723.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0724.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0724.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0724.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0724.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0725.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0725.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0725.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0725.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0726.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0726.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0726.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0726.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0727.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0727.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0727.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0727.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0728.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0728.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0728.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0728.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0729.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0729.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0729.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0729.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0730.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0730.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0730.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0730.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0731.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0731.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0731.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0731.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0732.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0732.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0732.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0732.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0733.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0733.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0733.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0733.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0734.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0734.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0734.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0734.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0735.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0735.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0735.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0735.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0736.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0736.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0736.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0736.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0737.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0737.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0737.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0737.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0738.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0738.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0738.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0738.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0739.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0739.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0739.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0739.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0740.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0740.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0740.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0740.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0741.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0741.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0741.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0741.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0742.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0742.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0742.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0742.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0743.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0743.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0743.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0743.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0744.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0744.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0744.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0744.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0745.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0745.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0745.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0745.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0746.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0746.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0746.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0746.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0747.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0747.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0747.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0747.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0748.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0748.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0748.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0748.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0749.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0749.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0749.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0749.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0750.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0750.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0750.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0750.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0751.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0751.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0751.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0751.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0752.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0752.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0752.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0752.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0753.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0753.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0753.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0753.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0754.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0754.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0754.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0754.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0755.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0755.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0755.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0755.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0756.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0756.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0756.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0756.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0757.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0757.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0757.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0757.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0758.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0758.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0758.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0758.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0759.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0759.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0759.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0759.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0760.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0760.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0760.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0760.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0761.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0761.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0761.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0761.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0762.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0762.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0762.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0762.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0763.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0763.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0763.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0763.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0764.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0764.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0764.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0764.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0765.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0765.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0765.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0765.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0766.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0766.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0766.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0766.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0767.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0767.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0767.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0767.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0768.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0768.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0768.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0768.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0769.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0769.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0769.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0769.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0770.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0770.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0770.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0770.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0771.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0771.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0771.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0771.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0772.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0772.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0772.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0772.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0773.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0773.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0773.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0773.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0774.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0774.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0774.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0774.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0775.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0775.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0775.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0775.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0776.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0776.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0776.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0776.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0777.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0777.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0777.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0777.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0778.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0778.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0778.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0778.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0779.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0779.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0779.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0779.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0780.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0780.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0780.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0780.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0781.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0781.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0781.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0781.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0782.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0782.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0782.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0782.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0783.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0783.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0783.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0783.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0784.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0784.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0784.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0784.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0785.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0785.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0785.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0785.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0786.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0786.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0786.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0786.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0787.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0787.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0787.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0787.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0788.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0788.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0788.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0788.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0789.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0789.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0789.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0789.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0790.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0790.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0790.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0790.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0791.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0791.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0791.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0791.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0792.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0792.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0792.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0792.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0793.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0793.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0793.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0793.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0794.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0794.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0794.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0794.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0795.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0795.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0795.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0795.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0796.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0796.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0796.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0796.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0797.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0797.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0797.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0797.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0798.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0798.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0798.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0798.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0799.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0799.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0799.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0799.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0800.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0800.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0800.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0800.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0801.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0801.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0801.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0801.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0802.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0802.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0802.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0802.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0803.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0803.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0803.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0803.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0804.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0804.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0804.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0804.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0805.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0805.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0805.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0805.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0806.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0806.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0806.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0806.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0807.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0807.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0807.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0807.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0808.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0808.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0808.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0808.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0809.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0809.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0809.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0809.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0810.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0810.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0810.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0810.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0811.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0811.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0811.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0811.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0812.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0812.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0812.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0812.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0813.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0813.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0813.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0813.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0814.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0814.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0814.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0814.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0815.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0815.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0815.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0815.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0816.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0816.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0816.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0816.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0817.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0817.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0817.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0817.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0818.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0818.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0818.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0818.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0819.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0819.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0819.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0819.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0820.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0820.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0820.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0820.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0821.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0821.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0821.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0821.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0822.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0822.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0822.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0822.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0823.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0823.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0823.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0823.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0824.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0824.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0824.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0824.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0825.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0825.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0825.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0825.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0826.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0826.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0826.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0826.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0827.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0827.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0827.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0827.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0828.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0828.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0828.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0828.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0829.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0829.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0829.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0829.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0830.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0830.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0830.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0830.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0831.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0831.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0831.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0831.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0832.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0832.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0832.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0832.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0833.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0833.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0833.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0833.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0834.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0834.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0834.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0834.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0835.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0835.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0835.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0835.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0836.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0836.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0836.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0836.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0837.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0837.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0837.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0837.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0838.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0838.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0838.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0838.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0839.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0839.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0839.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0839.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0840.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0840.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0840.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0840.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0841.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0841.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0841.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0841.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0842.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0842.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0842.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0842.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0843.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0843.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0843.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0843.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0844.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0844.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0844.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0844.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0845.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0845.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0845.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0845.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0846.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0846.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0846.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0846.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0847.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0847.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0847.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0847.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0848.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0848.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0848.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0848.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0849.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0849.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0849.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0849.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0850.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0850.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0850.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0850.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0851.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0851.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0851.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0851.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0852.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0852.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0852.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0852.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0853.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0853.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0853.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0853.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0854.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0854.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0854.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0854.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0855.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0855.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0855.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0855.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0856.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0856.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0856.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0856.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0857.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0857.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0857.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0857.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0858.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0858.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0858.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0858.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0859.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0859.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0859.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0859.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0860.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0860.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0860.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0860.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0861.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0861.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0861.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0861.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0862.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0862.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0862.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0862.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0863.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0863.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0863.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0863.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0864.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0864.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0864.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0864.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0865.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0865.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0865.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0865.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0866.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0866.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0866.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0866.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0867.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0867.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0867.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0867.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0868.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0868.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0868.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0868.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0869.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0869.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0869.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0869.dat
diff --git a/test_data/exp978/Datafiles/HB1A_exp0978_scan0870.dat b/test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0870.dat
similarity index 100%
rename from test_data/exp978/Datafiles/HB1A_exp0978_scan0870.dat
rename to test_data/IPTS9879_HB1A_exp978/exp978/Datafiles/HB1A_exp0978_scan0870.dat
diff --git a/test_data/exp978/InstLog_exp978.doc b/test_data/IPTS9879_HB1A_exp978/exp978/InstLog_exp978.doc
similarity index 100%
rename from test_data/exp978/InstLog_exp978.doc
rename to test_data/IPTS9879_HB1A_exp978/exp978/InstLog_exp978.doc
diff --git a/test_data/exp978/LogFile.txt b/test_data/IPTS9879_HB1A_exp978/exp978/LogFile.txt
similarity index 100%
rename from test_data/exp978/LogFile.txt
rename to test_data/IPTS9879_HB1A_exp978/exp978/LogFile.txt
diff --git a/test_data/exp978/Macros/Fe-Ga-10p8-SW.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/Fe-Ga-10p8-SW.macro
similarity index 100%
rename from test_data/exp978/Macros/Fe-Ga-10p8-SW.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/Fe-Ga-10p8-SW.macro
diff --git a/test_data/exp978/Macros/Fe-Ga-10p8-phonon-new-backend.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/Fe-Ga-10p8-phonon-new-backend.macro
similarity index 100%
rename from test_data/exp978/Macros/Fe-Ga-10p8-phonon-new-backend.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/Fe-Ga-10p8-phonon-new-backend.macro
diff --git a/test_data/exp978/Macros/Fe-Ga-10p8-phonon.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/Fe-Ga-10p8-phonon.macro
similarity index 100%
rename from test_data/exp978/Macros/Fe-Ga-10p8-phonon.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/Fe-Ga-10p8-phonon.macro
diff --git a/test_data/exp978/Macros/La2Ni7-long-L-scan.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-long-L-scan.macro
similarity index 100%
rename from test_data/exp978/Macros/La2Ni7-long-L-scan.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-long-L-scan.macro
diff --git a/test_data/exp978/Macros/La2Ni7-mesh-1st.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-mesh-1st.macro
similarity index 100%
rename from test_data/exp978/Macros/La2Ni7-mesh-1st.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-mesh-1st.macro
diff --git a/test_data/exp978/Macros/La2Ni7-mesh-2nd-half.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-mesh-2nd-half.macro
similarity index 100%
rename from test_data/exp978/Macros/La2Ni7-mesh-2nd-half.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-mesh-2nd-half.macro
diff --git a/test_data/exp978/Macros/La2Ni7-mesh-2nd.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-mesh-2nd.macro
similarity index 100%
rename from test_data/exp978/Macros/La2Ni7-mesh-2nd.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-mesh-2nd.macro
diff --git a/test_data/exp978/Macros/La2Ni7-mesh.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-mesh.macro
similarity index 100%
rename from test_data/exp978/Macros/La2Ni7-mesh.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-mesh.macro
diff --git a/test_data/exp978/Macros/La2Ni7-rocking-th2th-tight-collimation.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-rocking-th2th-tight-collimation.macro
similarity index 100%
rename from test_data/exp978/Macros/La2Ni7-rocking-th2th-tight-collimation.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-rocking-th2th-tight-collimation.macro
diff --git a/test_data/exp978/Macros/La2Ni7-rocking-th2th.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-rocking-th2th.macro
similarity index 100%
rename from test_data/exp978/Macros/La2Ni7-rocking-th2th.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/La2Ni7-rocking-th2th.macro
diff --git a/test_data/exp978/Macros/Si-phonon.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/Si-phonon.macro
similarity index 100%
rename from test_data/exp978/Macros/Si-phonon.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/Si-phonon.macro
diff --git a/test_data/exp978/Macros/Si-wafer-mesh.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/Si-wafer-mesh.macro
similarity index 100%
rename from test_data/exp978/Macros/Si-wafer-mesh.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/Si-wafer-mesh.macro
diff --git a/test_data/exp978/Macros/Tao-Sample-mesh.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/Tao-Sample-mesh.macro
similarity index 100%
rename from test_data/exp978/Macros/Tao-Sample-mesh.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/Tao-Sample-mesh.macro
diff --git a/test_data/exp978/Macros/crash.macro b/test_data/IPTS9879_HB1A_exp978/exp978/Macros/crash.macro
similarity index 100%
rename from test_data/exp978/Macros/crash.macro
rename to test_data/IPTS9879_HB1A_exp978/exp978/Macros/crash.macro
diff --git a/test_data/exp978/UBConf/UB23May2023_125134PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_125134PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB23May2023_125134PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_125134PM.ini
diff --git a/test_data/exp978/UBConf/UB23May2023_31637PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_31637PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB23May2023_31637PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_31637PM.ini
diff --git a/test_data/exp978/UBConf/UB23May2023_31639PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_31639PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB23May2023_31639PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_31639PM.ini
diff --git a/test_data/exp978/UBConf/UB23May2023_31834PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_31834PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB23May2023_31834PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_31834PM.ini
diff --git a/test_data/exp978/UBConf/UB23May2023_31856PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_31856PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB23May2023_31856PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB23May2023_31856PM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_101129AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_101129AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_101129AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_101129AM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_101158AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_101158AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_101158AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_101158AM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_43505PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_43505PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_43505PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_43505PM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_45359PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_45359PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_45359PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_45359PM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_45429PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_45429PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_45429PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_45429PM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_45508PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_45508PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_45508PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_45508PM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_50219PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_50219PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_50219PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_50219PM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_85611AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_85611AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_85611AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_85611AM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_93241AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_93241AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_93241AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_93241AM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_93305AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_93305AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_93305AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_93305AM.ini
diff --git a/test_data/exp978/UBConf/UB24May2023_94404AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_94404AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB24May2023_94404AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB24May2023_94404AM.ini
diff --git a/test_data/exp978/UBConf/UB25May2023_32646PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_32646PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB25May2023_32646PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_32646PM.ini
diff --git a/test_data/exp978/UBConf/UB25May2023_33722PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_33722PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB25May2023_33722PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_33722PM.ini
diff --git a/test_data/exp978/UBConf/UB25May2023_34320PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_34320PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB25May2023_34320PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_34320PM.ini
diff --git a/test_data/exp978/UBConf/UB25May2023_34344PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_34344PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB25May2023_34344PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_34344PM.ini
diff --git a/test_data/exp978/UBConf/UB25May2023_35355PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_35355PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB25May2023_35355PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_35355PM.ini
diff --git a/test_data/exp978/UBConf/UB25May2023_40506PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_40506PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB25May2023_40506PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_40506PM.ini
diff --git a/test_data/exp978/UBConf/UB25May2023_40539PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_40539PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB25May2023_40539PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB25May2023_40539PM.ini
diff --git a/test_data/exp978/UBConf/UB27May2023_74810PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_74810PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB27May2023_74810PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_74810PM.ini
diff --git a/test_data/exp978/UBConf/UB27May2023_74827PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_74827PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB27May2023_74827PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_74827PM.ini
diff --git a/test_data/exp978/UBConf/UB27May2023_75537PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_75537PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB27May2023_75537PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_75537PM.ini
diff --git a/test_data/exp978/UBConf/UB27May2023_75549PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_75549PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB27May2023_75549PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_75549PM.ini
diff --git a/test_data/exp978/UBConf/UB27May2023_80126PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_80126PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB27May2023_80126PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_80126PM.ini
diff --git a/test_data/exp978/UBConf/UB27May2023_80143PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_80143PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB27May2023_80143PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB27May2023_80143PM.ini
diff --git a/test_data/exp978/UBConf/UB29May2023_32619PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_32619PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB29May2023_32619PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_32619PM.ini
diff --git a/test_data/exp978/UBConf/UB29May2023_33638PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_33638PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB29May2023_33638PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_33638PM.ini
diff --git a/test_data/exp978/UBConf/UB29May2023_33650PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_33650PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB29May2023_33650PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_33650PM.ini
diff --git a/test_data/exp978/UBConf/UB29May2023_35015PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_35015PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB29May2023_35015PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_35015PM.ini
diff --git a/test_data/exp978/UBConf/UB29May2023_80133PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_80133PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB29May2023_80133PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_80133PM.ini
diff --git a/test_data/exp978/UBConf/UB29May2023_80143PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_80143PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/UB29May2023_80143PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/UB29May2023_80143PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB23May2023_31853PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB23May2023_31853PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB23May2023_31853PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB23May2023_31853PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB24May2023_101155AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_101155AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB24May2023_101155AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_101155AM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB24May2023_45426PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_45426PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB24May2023_45426PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_45426PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB24May2023_45505PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_45505PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB24May2023_45505PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_45505PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB24May2023_50215PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_50215PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB24May2023_50215PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_50215PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB24May2023_93302AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_93302AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB24May2023_93302AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_93302AM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB24May2023_94402AM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_94402AM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB24May2023_94402AM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB24May2023_94402AM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB25May2023_34341PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB25May2023_34341PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB25May2023_34341PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB25May2023_34341PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB25May2023_35346PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB25May2023_35346PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB25May2023_35346PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB25May2023_35346PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB25May2023_40533PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB25May2023_40533PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB25May2023_40533PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB25May2023_40533PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB27May2023_74824PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB27May2023_74824PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB27May2023_74824PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB27May2023_74824PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB27May2023_75546PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB27May2023_75546PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB27May2023_75546PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB27May2023_75546PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB27May2023_80140PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB27May2023_80140PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB27May2023_80140PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB27May2023_80140PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB29May2023_33647PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB29May2023_33647PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB29May2023_33647PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB29May2023_33647PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB29May2023_35012PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB29May2023_35012PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB29May2023_35012PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB29May2023_35012PM.ini
diff --git a/test_data/exp978/UBConf/tmp/UB29May2023_80140PM.ini b/test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB29May2023_80140PM.ini
similarity index 100%
rename from test_data/exp978/UBConf/tmp/UB29May2023_80140PM.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/UBConf/tmp/UB29May2023_80140PM.ini
diff --git a/test_data/IPTS9879_HB1A_exp978/exp978/UserAlias.txt b/test_data/IPTS9879_HB1A_exp978/exp978/UserAlias.txt
new file mode 100644
index 0000000..e69de29
diff --git a/test_data/exp978/expconf.ini b/test_data/IPTS9879_HB1A_exp978/exp978/expconf.ini
similarity index 100%
rename from test_data/exp978/expconf.ini
rename to test_data/IPTS9879_HB1A_exp978/exp978/expconf.ini
diff --git a/test_data/exp978/history.txt b/test_data/IPTS9879_HB1A_exp978/exp978/history.txt
similarity index 100%
rename from test_data/exp978/history.txt
rename to test_data/IPTS9879_HB1A_exp978/exp978/history.txt
diff --git a/test_data/IPTS9879_HB1A_exp978/exp978/webcontrol.ini b/test_data/IPTS9879_HB1A_exp978/exp978/webcontrol.ini
new file mode 100644
index 0000000..e69de29
diff --git a/test_data/IPTS9879_HB1A_exp978/hb1a.json b/test_data/IPTS9879_HB1A_exp978/hb1a.json
new file mode 100644
index 0000000..eed0e72
--- /dev/null
+++ b/test_data/IPTS9879_HB1A_exp978/hb1a.json
@@ -0,0 +1,72 @@
+{
+ "source": {
+ "shape": "rectangular",
+ "width": 0.0,
+ "height": 0.0
+ },
+ "guide": {
+ "in_use": false,
+ "div_h": 0.0,
+ "div_v": 0.0
+ },
+ "monochromator": {
+ "type": "PG002",
+ "mosaic_h": 30,
+ "mosaic_v": 30,
+ "sense": 1,
+ "shape": "rectangular",
+ "width": 10.0,
+ "height": 18.0,
+ "depth": 0.0,
+ "curved_h": false,
+ "curvh": 0.0,
+ "optimally_curved_h": false,
+ "curved_v": true,
+ "curvv": 0.0,
+ "optimally_curved_v": false
+ },
+ "monitor": {},
+ "goniometer": {
+ "sense": -1,
+ "type": "Y-ZX"
+ },
+ "analyzer": {
+ "type": "Pg002",
+ "mosaic_h": 30,
+ "mosaic_v": 30,
+ "sense": 1,
+ "shape": "rectangular",
+ "width": 15.0,
+ "height": 15.6,
+ "depth": 0.0,
+ "curved_h": false,
+ "curvh": 0.0,
+ "optimally_curved_h": false,
+ "curved_v": true,
+ "curvv": 0.0,
+ "optimally_curved_v": false
+ },
+ "detector": {
+ "shape": "rectangular",
+ "width": 5.08,
+ "height": 5.08
+ },
+ "distances": {
+ "src_mono1": 474.5,
+ "mono1_mono2": 227.6,
+ "src_mono": 474.5,
+ "mono_sample": 143.13,
+ "sample_ana": 74.0,
+ "ana_det": 50.0
+ },
+ "collimators": {
+ "h_pre_mono": 40,
+ "h_pre_sample": 40,
+ "h_post_sample": 40,
+ "h_post_ana": 80,
+ "v_pre_mono": 600,
+ "v_pre_sample": 600,
+ "v_post_sample": 600,
+ "v_post_ana": 600
+ }
+}
\ No newline at end of file
diff --git a/test_data/IPTS9879_HB1A_exp978/si.json b/test_data/IPTS9879_HB1A_exp978/si.json
new file mode 100644
index 0000000..fb7c00f
--- /dev/null
+++ b/test_data/IPTS9879_HB1A_exp978/si.json
@@ -0,0 +1,33 @@
+{
+ "type": "xtal",
+ "a": 5.419666,
+ "b": 5.419666,
+ "c": 5.419666,
+ "alpha": 90,
+ "beta": 90,
+ "gamma": 90,
+ "shape": "cylindrical",
+ "mosaic_h": 0,
+ "mosaic_v": 0,
+ "ub_matrix": [
+ 0.112527,
+ 0.102287,
+ 0.104500,
+ -0.073949,
+ -0.073950,
+ 0.152013,
+ 0.126152,
+ -0.134588,
+ -0.004105
+ ],
+ "plane_normal": [
+ 0.039245,
+ 0.000005,
+ 0.999230
+ ],
+ "in_plane_ref": [
+ 0.000000,
+ -1.000000,
+ 0.000005
+ ]
+}
\ No newline at end of file
diff --git a/tests/test_fit.py b/tests/test_fit.py
index 48046e7..c1d27c7 100644
--- a/tests/test_fit.py
+++ b/tests/test_fit.py
@@ -55,20 +55,11 @@ def test_get_fitting_variables(fit_data):
f1.add_signal(model="Gaussian")
f1.add_background(model="Constant")
- assert f1.signal_param_names == [["s1_amplitude", "s1_center", "s1_sigma"]]
- assert f1.background_param_names == [["b1_c"]]
-
- assert len(f1.params) == 2
-
- s1_params = f1.params["s1"]
- assert len(s1_params) == 5
- assert s1_params[0].name == "s1_amplitude"
- assert s1_params[1].name == "s1_center"
- assert s1_params[2].name == "s1_sigma"
- assert s1_params[3].name == "s1_fwhm"
- assert s1_params[4].name == "s1_height"
- assert s1_params[4].expr == "0.3989423*s1_amplitude/max(1e-15, s1_sigma)"
- assert f1.params["b1"][0].name == "b1_c"
+ assert len(f1.params) == 6
+ for k in ["s1_amplitude", "s1_center", "s1_sigma", "s1_fwhm", "s1_height", "b1_c"]:
+ assert k in f1.params.keys()
+ assert f1.params["s1_amplitude"].name == "s1_amplitude"
+ assert f1.params["s1_height"].expr == "0.3989423*s1_amplitude/max(1e-15, s1_sigma)"
def test_guess_initial(fit_data):
@@ -87,7 +78,7 @@ def test_guess_initial(fit_data):
if PLOT:
p1 = Plot1D()
p1.add_scan(s1_scan, fmt="o", label="data")
- p1.add_fit((x, y), label="guess", color="C1", marker="s", linestyle="dashed", linewidth=2, markersize=4)
+ p1.add_fit(f1, x=x, label="guess", color="C1", marker="s", linestyle="dashed", linewidth=2, markersize=4)
fig, ax = plt.subplots()
p1.plot(ax)
@@ -113,6 +104,7 @@ def test_fit_single_peak_internal_model(fit_data):
fig, ax = plt.subplots()
p1.plot(ax)
+ ax.set_ylim(top=80)
plt.show()
@@ -122,26 +114,30 @@ def test_fit_two_peak(fit_data):
f1 = Fit1D(s1_scan, fit_range=(0.0, 4.0), name="scan42_fit2peaks")
- f1.add_background(model="Constant")
+ # f1.add_background(model="Constant")
+ f1.add_signal(model="Gaussian")
f1.add_signal(model="Gaussian")
- f1.add_signal(values=(None, 3.5, 0.29), vary=(True, True, True))
- f1.add_signal(
- model="Gaussian",
- values=(None, 0, None),
- vary=(True, False, True),
- mins=(0, 0, 0.1),
- maxs=(None, 0.1, 0.3),
- )
- f1.perform_fit()
- assert np.allclose(f1.result.params["s1_center"].value, 3.54, atol=0.01)
- assert np.allclose(f1.result.params["s1_fwhm"].value, 0.40, atol=0.01)
+ pars = f1.guess()
+ pars["s1_amplitude"].set(min=0)
+ pars["s1_center"].set(value=3.9)
+ pars["s1_sigma"].set(value=0.29, max=3)
+ pars["s2_amplitude"].set(value=250, min=0, max=300)
+ pars["s2_center"].set(value=0, vary=False)
+ pars["s2_fwhm"].set(value=0.2, min=0.1, max=0.3)
+ # pars["b1_c"].set(min=0)
+
+ result = f1.fit(pars)
+ assert np.allclose(result.params["s1_center"].value, 3.54, atol=0.01)
+ assert np.allclose(result.params["s1_fwhm"].value, 0.40, atol=0.01)
+ x = f1.x_to_plot(num_of_pts=100, min=-1, max=5)
+ # y = f1.eval(result.params, x)
if PLOT:
p1 = Plot1D()
p1.add_scan(s1_scan, fmt="o", label="data")
- p1.add_fit(fit_result, label="fit", color="C3", num_of_pts=50, marker="^")
- p1.add_fit_components(fit_result, color=["C4", "C5"])
+ p1.add_fit(f1, x=x, label="fit", color="C3")
+ p1.add_fit_components(f1, x=x, color=["C4", "C5"])
fig, ax = plt.subplots()
p1.plot(ax)