' FOCUS PARAMETERS
enableFocusMax = True ' Set this to True if you wish to use FocusMax, and
' to False if you don't wish to use FocusMax or if
' it is not installed on your system
FocusDec = +23. ' Declination (deg) where focus images will be taken
FocusHA = 0. ' |HA| (h) where focus images will be taken
FocusSearchRadius = 5. ' Radius (deg) around (FocusDec,FocusHA) where focus
' stars will be sought
FocusCatalog = 0 ' Catalog where focus stars will be searched (0=GSC)
FocusCatalogPath = "c:" ' Path to focus star catalog
FocusMinMag = 7. ' Magnitude of brightest allowable focus stars
FocusMaxMag = 8. ' Magnitude of faintest allowable focus stars
FocusMinExpTime = 0.3 ' Exposure time (sec) to be used with focus stars of
' magnitude FocusMinMag
FocusTemplateImage = "c:\TAO\obs\blank.fit" ' Template image used in search for focus stars
focusSampleSize = 1 ' Number of repeated focus determinations which are
' averaged to determine an average focus position
minHFD = 1. ' Minimum acceptable half-flux diameter of focused stars
maxHFD = 10. ' Maximum acceptable half-flux diameter of focused stars
useTempFocusRelation = False ' True to use a linear temperature vs. focus relationship;
' this relationship will be used both for computing default
' focuser positions and for rejecting measured focuser
' positions which deviate too much from the expected
' values; this has no effect if weatherStation is set to
' False
FocusIntercept = 2690.1 ' Coefficient A in the relationship
' Focuser position = A + B * Temperature (deg C)
FocusSlope = 7.504 ' Coefficient B in the relationship
' Focuser position = A + B * Temperature (deg C)
FocusTol1 = 30. ' Maximum acceptable deviation of a focus measurement from
' the default focuser position given by the above linear
' relationship; this value is used if useTempFocusRelation
' is set to True
defaultFocus = 2700 ' Default focuser position to be used if
' useTempFocusRelation is set to False or if
' useTempFocusRelation is set to True and the weather
' station fails to provide the current temperature
FocusTol2 = 400. ' Maximum acceptable deviation of a focus measurement from
' the default focuser position given by defaultFocus; this
' value is used if useTempFocusRelation is set to False or
' if useTempFocusRelation is set to True and the weather
' station fails to provide the current temperature
focusTimeOut = 3. ' Timeout (min) for individual focus determinations
SetDefaultFocusAtStart = True ' True to set focuser position to defaultFocus
' (or to a position computed from the focus-temperature
' relationship, if enabled) before imaging starts
focusAtCurrentPosition = False ' True to focus at the current telescope position, without
' slewing to the position defined by FocusHA and FocusDec;
' this has no effect unless focusSampleSize = 0
giveUpFocusIfFMGoesBad = True ' True to give up all further focus operations in case
' FocusMax gives signs of weird behavior (which it does
' on occasion)
|