Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96784332
cor_seeing.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Dec 30, 20:08
Size
724 B
Mime Type
text/x-c
Expires
Wed, Jan 1, 20:08 (2 d)
Engine
blob
Format
Raw Data
Handle
23212201
Attached To
R1448 Lenstool-HPC
cor_seeing.c
View Options
#include<stdio.h>
#include<math.h>
#include<fonction.h>
#include<constant.h>
#include<dimension.h>
#include<structure.h>
/****************************************************************/
/* nom: study */
/* auteur: Jean-Paul Kneib */
/* date: 10/02/92 */
/* place: Toulouse */
/****************************************************************/
void
cor_seeing
(
long
int
n
,
struct
galaxie
*
image
,
double
seeing
)
{
long
int
i
;
for
(
i
=
0
;
i
<
n
;
i
++
)
{
image
[
i
].
E
.
a
=
sqrt
(
image
[
i
].
E
.
a
*
image
[
i
].
E
.
a
-
seeing
*
seeing
/
4.
);
image
[
i
].
E
.
b
=
sqrt
(
image
[
i
].
E
.
b
*
image
[
i
].
E
.
b
-
seeing
*
seeing
/
4.
);
}
}
Event Timeline
Log In to Comment