[Previous] [Next] [Up] [Top]

NAME

ft_headfind,ft_headindex,ft_headfindidx,ft_headfindseq -Fitsy FITS header find routines.

SYNOPSIS

FITSCard ft_headfind(FITSHead fits, char *name, int n, int add);
void ft_headindex(FITSHead fits);
FITSCard ft_headfindidx(FITSHead fits, char *name, int n, int *match);
FITSCard ft_headfindseq(FITSHead fits, char *name, int n, int *match);


PARAMETERS

DESCRIPTION

ft_headfind

Find a FITS card in the header.

If the header has been indexed the index will be used otherwise a sequential search will be done.

ft_headindex

Index a header for use with ft_headfind.

ft_headfindidx

Find a FITS card in the header.

headfindidx uses an index to find the card.

ft_headfindseq

Find a FITS card in the header.

Find a card in the header using sequential search.

If the requested card is a FITS indexed keyword and an exact match is not found, the highest existing card of that type is returned and match is set to 0.

RETURNS

ft_headfind

The card found or NULL if an exact match was not found.

[Previous] [Next] [Up] [Top]