File: plot.C

package info (click to toggle)
lorene 0.0.0~cvs20161116%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 26,444 kB
  • ctags: 13,953
  • sloc: cpp: 212,946; fortran: 21,645; makefile: 1,750; sh: 4
file content (281 lines) | stat: -rw-r--r-- 7,310 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*
 * Definition of elementary graphical functions
 */

/*
 *   Copyright (c) 2005 Eric Gourgoulhon
 *
 *   This file is part of LORENE.
 *
 *   LORENE is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   LORENE is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with LORENE; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

/*
 * $Id: plot.C,v 1.3 2014/10/06 15:09:48 j_novak Exp $
 * $Log: plot.C,v $
 * Revision 1.3  2014/10/06 15:09:48  j_novak
 * Modified #include directives to use c++ syntax.
 *
 * Revision 1.2  2005/11/14 14:12:10  e_gourgoulhon
 * Added include <assert.h>
 *
 * Revision 1.1  2005/11/14 01:57:00  e_gourgoulhon
 * First version
 *
 *
 * $Header: /cvsroot/Lorene/School05/Monday/plot.C,v 1.3 2014/10/06 15:09:48 j_novak Exp $
 *
 */

#include <iostream>

using namespace std ;

#include <cstdlib>
#include <cassert>

#include <cpgplot.h>

#include "plot.h"


namespace Plotid {
    const int nfig_max = 100 ; 
    int fig_id[nfig_max] ;     
}

//===========================================================================

void plot_init() {
    using namespace Plotid ; 

    static bool never_called = true ; 
    
    if (never_called) {
        for (int i=0; i<nfig_max; i++) {
            fig_id[i] = 0 ; 
        }     
        never_called = false ; 
    }
    
}

//===========================================================================

void plot_open(int nfig, double ymin, double ymax, const char* title,    
    const char* label_y, const char* device) {
    using namespace Plotid ; 

    assert( fig_id[nfig] == 0 ) ; 
    
    if (device == 0x0) device = "?" ; 
   
    fig_id[nfig] = cpgopen(device) ; 
        
    if ( fig_id[nfig] <= 0 ) {
        cerr << "plot_profile: problem in opening PGPLOT display !\n" ;
        abort() ; 
    }
        
    cpgask(0) ;  // Disables the ``Type RETURN for next page:'' prompt
            
    cpgsch(1.3) ;  // Character size
    
    cpgslw(4) ;  // Line width
    
    cpgscf(2) ;  // Axis fonts = Roman

    cpgsls(1) ;  // Continous lines

    // Sets the window :         
    cpgenv(-1., 1., float(ymin), float(ymax), 0, 0 ) ; 
    
    // Title and labels
    if (label_y == 0x0) label_y = "y" ; 
    if (title == 0x0) title = " " ; 
    cpglab("x", label_y, title) ;
    
}



//===========================================================================

void plot_close(int nfig) {

    using namespace Plotid ;     
    plot_init() ; 

    if ( (nfig < 0) || (nfig >= nfig_max) ) {
        cerr << "plot_close : figure index out of range ! \n" ;
        cerr << " nfig = " << nfig << "  while range = 0, " 
            << nfig_max-1 << endl ; 
        abort() ;
    }
    
    if (fig_id[nfig] != 0) { 
        cpgslct( fig_id[nfig] ) ; // selects the appropriate device        
        cpgclos() ; 
        fig_id[nfig] = 0 ; 
    }

}

//===========================================================================

void plot_close_all() {

    using namespace Plotid ;     
    plot_init() ; 

    for (int nfig = 0; nfig < nfig_max; nfig++) {
        if (fig_id[nfig] != 0) { 
            cpgslct( fig_id[nfig] ) ; // selects the appropriate device        
            cpgclos() ; 
            fig_id[nfig] = 0 ; 
        }
    }
}

//===========================================================================

void plot_profile(const double* yy, int nx, int color, int style,    
    int nfig, double ymin, double ymax, const char* title,    
    const char* label_y, const char* device) {

    using namespace Plotid ; 
    plot_init() ; 
		          
    // Conversion double -> float
    // --------------------------
    float* yyf = new float[nx] ; 
    for (int i=0; i<nx; i++) {
        yyf[i] = yy[i] ; 
    }
         
    // Points abscisses : 
    // ----------------
    float xmin = -1. ; 
    float xmax = 1. ; 
    float* xx = new float[nx] ; 
    float hx = (xmax-xmin)/float(nx-1) ;
    for(int i=0; i<nx; i++) {
	    xx[i] = xmin + i * hx ; 
    }
         
    // Graphics display
    // ----------------
    
    // Opening of the device
    
    if ( (nfig < 0) || (nfig >= nfig_max) ) {
        cerr << "plot_profile : graph index out of range ! \n" ;
        cerr << " nfig = " << nfig << "  while range = 0, " 
            << nfig_max-1 << endl ; 
        abort() ;
    }
    
    if (fig_id[nfig] == 0) { // opening is required
                               
        plot_open(nfig, ymin, ymax, title, label_y, device ) ; 

    }
    else {   // the graphic device has been opened previously   

        cpgslct( fig_id[nfig] ) ; // selects the appropriate device
    }  
    
    // Drawing of the curve
    cpgsci(color) ; 
    cpgsls(style) ;  
    cpgline(nx, xx, yyf) ; 	

    delete [] xx ; 
    delete [] yyf ; 

}

//===========================================================================

void plot_point(double x, double y, int color, int nfig, double ymin, 
    double ymax, const char* title, const char* label_y, const char* device) {

    using namespace Plotid ; 
    plot_init() ; 

    if ( (nfig < 0) || (nfig >= nfig_max) ) {
        cerr << "plot_point : figure index out of range ! \n" ;
        cerr << " nfig = " << nfig << "  while range = 0, " 
            << nfig_max-1 << endl ; 
        abort() ;
    }
    
    if (fig_id[nfig] == 0) { // opening is required
                               
        plot_open(nfig, ymin, ymax, title, label_y, device ) ; 

    }
    else {   // the graphic device has been opened previously   

        cpgslct( fig_id[nfig] ) ; // selects the appropriate device
    }

    cpgsci(color) ; 

    cpgpt1(float(x), float(y), 24) ; 
    
}

//===========================================================================

void plot_point_set(int np, const double* xx, const double* yy, int color, 
                    int nfig, double ymin, double ymax, const char* title, 
                    const char* label_y, const char* device) {

    using namespace Plotid ; 
    plot_init() ; 

    if ( (nfig < 0) || (nfig >= nfig_max) ) {
        cerr << "plot_point : figure index out of range ! \n" ;
        cerr << " nfig = " << nfig << "  while range = 0, " 
            << nfig_max-1 << endl ; 
        abort() ;
    }
    
    if (fig_id[nfig] == 0) { // opening is required
                               
        plot_open(nfig, ymin, ymax, title, label_y, device ) ; 

    }
    else {   // the graphic device has been opened previously   

        cpgslct( fig_id[nfig] ) ; // selects the appropriate device
    }

    cpgsci(color) ; 
    
    float* x1 = new float[np] ; 
    float* y1 = new float[np] ; 
    
    for (int i=0; i<np; i++) {
        x1[i] = xx[i] ;
        y1[i] = yy[i] ;
    }
    cpgpt(np, x1, y1, 24) ; 

    delete [] x1 ; 
    delete [] y1 ; 
}