;--------------------------------------------------------------------------- ; Document name: hsi_roll_solution_full__define.pro ; Created by: Andre Csillaghy, September 28, 2002 ; ; Last Modified: 20 July 2003 (ghurford@ssl.berkeley.edu) ;--------------------------------------------------------------------------- ; ;+ ; PROJECT: ; HESSI ; ; NAME: ; HSI_ROLL_SOLUTION_FULL__DEFINE ; ; PURPOSE: ; ; ; CATEGORY: ; ; ; CALLING SEQUENCE: ; hsi_roll_solution_full__define, ; ; INPUTS: ; ; ; OPTIONAL INPUTS: ; None. ; ; OUTPUTS: ; None. ; ; OPTIONAL OUTPUTS: ; None. ; ; KEYWORDS: ; None. ; ; COMMON BLOCKS: ; None. ; ; PROCEDURE: ; ; RESTRICTIONS: ; None. ; ; SIDE EFFECTS: ; None. ; ; EXAMPLES: ; ; ; SEE ALSO: ; ; HISTORY: ; Version 1, September 28, 2002, ; A Csillaghy, csillag@ssl.berkeley.edu ; 20-July-2003 gh Updated tag (rms_scatter --> est_error) ;- ; PRO hsi_roll_solution_full__define dummy = {hsi_roll_solution_full, $ sctime: 0L, $ ; in s/c clock seconds, should be a multiple of 64 roll_phase: 0L, $ ; in microradians approx_angvel: 0B, $ ; approximate angular velocity, in radians/second * 2^7 roll_quality: 0B, $ ; roll_quality byte blipcount: 0, $ ; number of blips in this interval starcount: 0B, $ ; number of unique stars in this interval roll_period: 0.0, $ ; exact roll period (s) est_error: 0.0, $ ; estimated error in roll_phase (radians) analysis_code: 0B, $ ; TBD code indicating software configuration/parameters stars: Replicate( {hsi_stars}, 10 )} END ;--------------------------------------------------------------------------- ; End of 'hsi_roll_solution_full__define.pro'. ;---------------------------------------------------------------------------