/// <summary>
        /// Provides a snapshot view of an SDS
        /// </summary>
        /// <param name="DataSetToView">The name of the SDS to view</param>
        /// <param name="handle">An object handle for the viewer instance; send the same handle to prevent multiple instances of SDS viewer opening</param>
        /// <todoD>Need to update to be able to select which variable to view</todoD>
        /// <todoD>Pass sleep length</todoD>
        public void SnapshotView(ref DataSet DataSetToView, ref object handle)
        {
            // Open the snapshot viewer
            handle = DataSetToView.ViewSnapshot("", handle);
            
            // Slow down computation
            System.Threading.Thread.Sleep(250);

        }