source: Sophya/trunk/FrEROS/AnaLC/courbe_nb.h@ 3851

Last change on this file since 3851 was 3572, checked in by cmv, 17 years ago

char* -> const char* pour regler les problemes de deprecated string const... + comparaison unsigned signed + suppression EVOL_PLANCK rz+cmv 07/02/2009

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1#ifndef COURBE_NB_H_SEEN
2#define COURBE_NB_H_SEEN
3
4#include <stdlib.h>
5#include <stdio.h>
6
7/*
8Pour 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
15FILE *COURBE_NB_FILE;
16
17FILE *CreCourbe(int et);
18FILE *CreCourbe(const char *str);
19void 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);
22void CloseCourbe(void);
23void FillBosse(int et,int coul
24 ,float fbase,float tp1,float tp2,float ts1,float ts2);
25void FillPacZin(int et,int coul,int mc
26 ,float fbase,float u0,float t0,float tau,float blend);
27void FillVarPer(int et,int coul,int mc
28 ,int nharm,float fbase,float per,float t0
29 ,float *pcs,float *psn);
30
31#endif
Note: See TracBrowser for help on using the repository browser.