28 char des_evolution_C[] =
"$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Graphics/des_evolution.C,v 1.5 2014/10/13 08:53:22 j_novak Exp $" ;
57 #include "graphique.h"
58 #include "evolution.h"
65 const char* title,
int ngraph,
const char* device,
66 bool closeit,
bool show_time,
const char* nomx) {
68 int jmin = uu.
j_min() ;
69 int jmax = uu.
j_max() ;
71 des_evol(uu, jmin, jmax, nomy, title, ngraph, device, closeit,
80 const char* nomy,
const char* title,
int ngraph,
const char* device,
81 bool closeit,
bool show_time,
const char* nomx) {
85 if ((device[0] ==
'/') && (device[1] ==
'n')) return ;
88 int npt = j_max - j_min + 1 ;
90 float* uutab =
new float[npt] ;
91 float* xtab =
new float[npt] ;
93 for (
int j=j_min; j<=j_max; j++) {
94 uutab[j-j_min] = float(uu[j]) ;
98 for (
int j=j_min; j<=j_max; j++) {
99 xtab[j-j_min] = float(uu.
get_time(j)) ;
103 for (
int j=j_min; j<=j_max; j++) {
104 xtab[j-j_min] = float(j) ;
108 if (nomx == 0x0) nomx = (show_time) ?
"t" :
"j" ;
110 if (nomy == 0x0) nomy =
"" ;
112 if (title == 0x0) title =
"" ;