Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-pipeline
msc
sextractor
Commits
6fb2f5c4
Commit
6fb2f5c4
authored
Sep 06, 2011
by
Emmanuel Bertin
Browse files
Fixed triggering of model surface brightness measurement.
parent
3d8b32ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/catout.c
View file @
6fb2f5c4
...
@@ -421,7 +421,7 @@ void updateparamflags()
...
@@ -421,7 +421,7 @@ void updateparamflags()
|
FLAG
(
obj2
.
prof_flag
)
|
FLAG
(
obj2
.
prof_flag
)
|
FLAG
(
obj2
.
flux_prof
)
|
FLAG
(
obj2
.
flux_prof
)
|
FLAG
(
obj2
.
prof_mx2
)
|
FLAG
(
obj2
.
prof_mx2
)
|
FLAG
(
obj2
.
peak
_prof
)
|
FLAG
(
obj2
.
fluxeff
_prof
)
|
FLAG
(
obj2
.
prof_disk_flux
)
|
FLAG
(
obj2
.
prof_disk_flux
)
|
FLAG
(
obj2
.
prof_spheroid_flux
)
|
FLAG
(
obj2
.
prof_spheroid_flux
)
|
FLAG
(
obj2
.
prof_dirac_flux
)
|
FLAG
(
obj2
.
prof_dirac_flux
)
...
...
src/fits/fitshead.c
View file @
6fb2f5c4
...
@@ -479,7 +479,7 @@ PURPOSE Update a FITS header to make it "primary" (not extension)
...
@@ -479,7 +479,7 @@ PURPOSE Update a FITS header to make it "primary" (not extension)
INPUT Table structure.
INPUT Table structure.
OUTPUT RETURN_OK if tab header was already primary, or RETURN_ERROR otherwise.
OUTPUT RETURN_OK if tab header was already primary, or RETURN_ERROR otherwise.
NOTES -.
NOTES -.
AUTHOR E. Bertin (IAP
& Leiden observatory
) C. Marmo (IAP)
AUTHOR E. Bertin (IAP) C. Marmo (IAP)
VERSION 30/08/2011
VERSION 30/08/2011
***/
***/
int
prim_head
(
tabstruct
*
tab
)
int
prim_head
(
tabstruct
*
tab
)
...
@@ -671,8 +671,8 @@ PURPOSE Return the size of a binary-table field from its ``TFORM''.
...
@@ -671,8 +671,8 @@ PURPOSE Return the size of a binary-table field from its ``TFORM''.
INPUT TFORM string (see the FITS documentation).
INPUT TFORM string (see the FITS documentation).
OUTPUT size in bytes, or RETURN_ERROR if the TFORM is unknown.
OUTPUT size in bytes, or RETURN_ERROR if the TFORM is unknown.
NOTES -.
NOTES -.
AUTHOR E. Bertin (IAP
& Leiden observatory
)
AUTHOR E. Bertin (IAP)
VERSION
28/10/2009
VERSION
10/11/2010
***/
***/
int
tsizeof
(
char
*
str
)
int
tsizeof
(
char
*
str
)
...
@@ -681,7 +681,8 @@ int tsizeof(char *str)
...
@@ -681,7 +681,8 @@ int tsizeof(char *str)
char
*
str2
;
char
*
str2
;
str2
=
str
;
str2
=
str
;
if
(
!
(
n
=
strtol
(
str
,
&
str2
,
10
)))
n
=
strtol
(
str
,
&
str2
,
10
);
if
(
str2
==
str
)
n
=
1
;
n
=
1
;
switch
((
int
)
*
str2
)
switch
((
int
)
*
str2
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment