Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98849336
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
Thu, Jan 16, 22:00
Size
724 B
Mime Type
text/x-c
Expires
Sat, Jan 18, 22:00 (2 d)
Engine
blob
Format
Raw Data
Handle
23635388
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