| 1 | #ifndef  COURBE_NB_H_SEEN  
 | 
|---|
| 2 | #define  COURBE_NB_H_SEEN
 | 
|---|
| 3 | 
 | 
|---|
| 4 | #include <stdlib.h>
 | 
|---|
| 5 | #include <stdio.h>
 | 
|---|
| 6 | 
 | 
|---|
| 7 | /*
 | 
|---|
| 8 | Pour ecrire des fichiers ASCII contenant des courbes de lumieres et des
 | 
|---|
| 9 |   informations sur les bases,bosses,paczinski,periodiques,...
 | 
|---|
| 10 | - On peut SOIT creer un fichier par etoile, SOIT creer un fichier
 | 
|---|
| 11 |   contenant plusieurs etoiles en gerant l'endroit de l'appel a la creation
 | 
|---|
| 12 |   du fichier ASCII (CreCourbe) et sa fermeture (CloseCourbe).
 | 
|---|
| 13 | */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | FILE *COURBE_NB_FILE;
 | 
|---|
| 16 | 
 | 
|---|
| 17 | FILE *CreCourbe(int et);
 | 
|---|
| 18 | FILE *CreCourbe(const char *str);
 | 
|---|
| 19 | void FillCourbe(int et,int coul
 | 
|---|
| 20 |               ,float t,float flx,float eflx,float flb,float eflb
 | 
|---|
| 21 |               ,float v0,float v1,float v2,float v3,float v4);
 | 
|---|
| 22 | void CloseCourbe(void);
 | 
|---|
| 23 | void FillBosse(int et,int coul
 | 
|---|
| 24 |               ,float fbase,float tp1,float tp2,float ts1,float ts2);
 | 
|---|
| 25 | void FillPacZin(int et,int coul,int mc
 | 
|---|
| 26 |                ,float fbase,float u0,float t0,float tau,float blend);
 | 
|---|
| 27 | void FillVarPer(int et,int coul,int mc
 | 
|---|
| 28 |                ,int nharm,float fbase,float per,float t0
 | 
|---|
| 29 |                ,float *pcs,float *psn);
 | 
|---|
| 30 | 
 | 
|---|
| 31 | #endif
 | 
|---|