Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97924639
weight_baryc.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
Tue, Jan 7, 15:16
Size
1 KB
Mime Type
text/x-c
Expires
Thu, Jan 9, 15:16 (2 d)
Engine
blob
Format
Raw Data
Handle
23440589
Attached To
R1448 Lenstool-HPC
weight_baryc.c
View Options
#include<stdio.h>
#include<math.h>
#include<fonction.h>
#include<constant.h>
#include<dimension.h>
#include<structure.h>
/****************************************************************/
/* nom: weight_baryc */
/* auteur: Ghislain Golse */
/* date: 12/99 */
/* place: Toulouse */
/****************************************************************/
/*
* barycenter of a list of points weighted by the amplification
*
* Global variables used :
* - amplifi
* - in e_amp() : G, lens, lens_table
* - in amplif() : multi, I, amplifi, G, lens, lens_table, C
*/
struct point weight_baryc(struct point *P, struct galaxie *multi, int n, int n_famille)
{
// const extern double amplifi[NFMAX][NIMAX];
struct point B;
register int i;
double dlsds, Atot, A;
dlsds = multi[0].dr;
B.x = B.y = 0.;
Atot = 0.;
for (i = 0; i < n; i++)
{
/* A=1./fabs(e_amp(multi[i].C,dlsds)); */
// A = fabs(amplifi[n_famille][i]);
A = 1./fabs(e_amp_gal(&multi[i], NULL));
Atot += sqrt(A);
B.x += P[i].x * sqrt(A);
B.y += P[i].y * sqrt(A);
};
B.x /= Atot;
B.y /= Atot;
return(B);
}
/* printf("B.x=%.3lf B.y=%.3lf\n",B.x,B.y); */
Event Timeline
Log In to Comment