Annotation of rpl/src/gnuplot.h, revision 1.17

1.1       bertrand    1: /*
                      2: ================================================================================
1.17    ! bertrand    3:   RPL/2 (R) version 4.0.21
1.16      bertrand    4:   Copyright (C) 1989-2011 Dr. BERTRAND Joël
1.1       bertrand    5: 
                      6:   This file is part of RPL/2.
                      7: 
                      8:   RPL/2 is free software; you can redistribute it and/or modify it
                      9:   under the terms of the CeCILL V2 License as published by the french
                     10:   CEA, CNRS and INRIA.
                     11:  
                     12:   RPL/2 is distributed in the hope that it will be useful, but WITHOUT
                     13:   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
                     14:   FITNESS FOR A PARTICULAR PURPOSE.  See the CeCILL V2 License
                     15:   for more details.
                     16:  
                     17:   You should have received a copy of the CeCILL License
                     18:   along with RPL/2. If not, write to info@cecill.info.
                     19: ================================================================================
                     20: */
                     21: 
                     22: 
                     23: #ifndef INCLUSION_GNUPLOT
                     24: #define INCLUSION_GNUPLOT
                     25: 
                     26: #define ds_gnuplot_commande                        "gnuplot -raise "\
                     27:                                                    "1> /dev/null 2> /dev/null"
                     28: #define ds_gnuplot_commande_persistante            "gnuplot -raise -persist "\
                     29:                                                    "1> /dev/null 2> /dev/null"
                     30: 
                     31: #define ds_gnuplot_commande_trace_2D           "plot"
                     32: #define ds_gnuplot_commande_trace_3D           "splot"
                     33: 
1.14      bertrand   34: #ifdef OS2
1.13      bertrand   35: #  define ds_gnuplot_terminal_defaut           "set terminal pm"
                     36: #else
                     37: #  define ds_gnuplot_terminal_defaut           "set terminal x11"
                     38: #endif
1.1       bertrand   39: 
                     40: #define ds_gnuplot_option_2D                   "with lines"
                     41: #define ds_gnuplot_option_3D                   "with lines"
                     42: #define ds_gnuplot_option_nuages               "with points"
                     43: #define ds_gnuplot_option_table_tracante       "with lines"
                     44: #define ds_gnuplot_option_histogramme          "with boxes"
                     45: #define ds_gnuplot_option_largeur_histogramme  1
                     46: 
                     47: #define ds_gnuplot_nombre_max_fichiers         16
                     48: 
                     49: #endif
                     50: 
                     51: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>