Skip to content

Commit

Permalink
percentage unit
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Dec 26, 2024
1 parent cde2b72 commit 7283cd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/image/trans/ccdpixelclip.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* state. It restores dynamic range to that of the camera and recovers
* the blown-out star cores.
*
* 24-aug-2022 drafted - Peter Teuben
* 24-aug-2022 drafted for NEMO - Peter Teuben
*
*/

Expand All @@ -31,7 +31,7 @@ string defv[] = {
"size=1\n size around clip pixel to average around (-size..+size)",
"matchclip=t\n Also fix data where it matches the clip value?",
"jwst=t\n JWST mode? (only true is accepted now)",
"VERSION=0.2\n 24-aug-2022 PJT",
"VERSION=0.3\n 25-aug-2022 PJT",
NULL,
};

Expand Down Expand Up @@ -90,7 +90,7 @@ void nemo_main()
}
}
dprintf(0,"Clipped %d/%d %g%% values %s %g\n",
countclip,nx*ny*nz, (1.0*countclip)/(nx*ny*nz),
countclip,nx*ny*nz, (100.0*countclip)/(nx*ny*nz),
Qjwst ? (Qmatch ? "equal or below" : "below") :
(Qmatch ? "equal or above" : "above"),
clip);
Expand Down

0 comments on commit 7283cd7

Please sign in to comment.