Skip to content

Commit

Permalink
smurf: Fix typo in SEEINGEN GSD2ACSIS FITS header
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Jul 31, 2013
1 parent ded7c11 commit b7fa0e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applications/smurf/libgsd/gsdac_putFits.c
Expand Up @@ -857,15 +857,15 @@ void gsdac_putFits ( const gsdVars *gsdVars, const int subBandNum,
astSetFitsF ( fitschan, "SEEINGST", gsdVars->seeing,
"[arcsec] SAO atmospheric seeing (start)", 0 );

astSetFitsF ( fitschan, "SEEINGSEN", gsdVars->seeing,
astSetFitsF ( fitschan, "SEEINGEN", gsdVars->seeing,
"[arcsec] SAO atmospheric seeing (end)", 0 );

} else {
/* Use undefined header value if there was no measurement */
astSetFitsU ( fitschan, "SEEINGST",
"[arcsec] SAO atmospheric seeing (start)", 0 );

astSetFitsU ( fitschan, "SEEINGSEN",
astSetFitsU ( fitschan, "SEEINGEN",
"[arcsec] SAO atmospheric seeing (end)", 0 );
}

Expand Down

0 comments on commit b7fa0e7

Please sign in to comment.