27#ifndef math_plot_gnuPlot_hpp
28#define math_plot_gnuPlot_hpp
48#include "../constants.hpp"
49#include "../../mxError.hpp"
50#include "../../sys/timeUtils.hpp"
56#define MX_GP_FNAME_SZ ( 128 )
63#define MX_GP_TEMP_SZ ( 128 )
72#define MX_GP_FC_TIME ( 10000 )
75#ifndef MX_GP_FC_RETRIES
80#define MX_GP_FC_RETRIES ( 10 )
90template <
typename dataT>
91std::string gpBinaryFormat()
93 static_assert( std::is_fundamental<dataT>::value || !std::is_fundamental<dataT>::value,
94 "No gnuplot format specifier available for this type." );
104 std::string m_modifiers;
106 std::string m_binary;
112 gpCurve(
const std::string &
file,
const std::string &title,
const std::string &modifiers )
113 : m_file(
file ), m_title( title ), m_modifiers( modifiers )
117 gpCurve(
const std::string &
file,
118 const std::string &title,
119 const std::string &modifiers,
120 const std::string &
binary )
121 : m_file(
file ), m_title( title ), m_modifiers( modifiers ), m_binary(
binary )
125 gpCurve(
const gpCurve &
gpc )
128 m_title =
gpc.m_title;
129 m_modifiers =
gpc.m_modifiers;
130 m_binary =
gpc.m_binary;
200 std::string _gpErrorMsg;
227 std::map<std::string, gpCurve> m_curveMap;
433 const std::string &
title,
434 const std::string &name
451 const std::string &name
469 const std::string &name
500 template <
typename dataT>
501 int plot(
const dataT *y,
507 const std::string &name
522 template <
typename dataT>
523 int plot(
const dataT *y,
527 const std::string &name
540 template <
typename dataT>
541 int plot(
const dataT *y,
543 const std::string &name
555 template <
typename dataT>
556 int plot(
const dataT *y,
572 template <
typename dataT>
573 int plot(
const std::vector<dataT> &y,
578 const std::string &name
593 template <
typename dataT>
594 int plot(
const std::vector<dataT> &y,
597 const std::string &name
609 template <
typename dataT>
610 int plot(
const std::vector<dataT> &y,
611 const std::string &name
623 template <
typename dataT>
624 int plot(
const std::vector<dataT> &y );
638 template <
typename dataTx,
typename dataTy>
644 const std::string &
title,
645 const std::string &name
660 template <
typename dataTx,
typename dataTy>
666 const std::string &name
678 template <
typename dataTx,
typename dataTy>
682 const std::string &name
694 template <
typename dataTx,
typename dataTy>
712 template <
typename dataTx,
typename dataTy>
713 int plot(
const std::vector<dataTx> &x,
714 const std::vector<dataTy> &y,
717 const std::string &
title,
718 const std::string &name
733 template <
typename dataTx,
typename dataTy>
734 int plot(
const std::vector<dataTx> &x,
735 const std::vector<dataTy> &y,
738 const std::string &name
750 template <
typename dataTx,
typename dataTy>
751 int plot(
const std::vector<dataTx> &x,
752 const std::vector<dataTy> &y,
753 const std::string &name
765 template <
typename dataTx,
typename dataTy>
766 int plot(
const std::vector<dataTx> &x,
767 const std::vector<dataTy> &y
777 template <
typename dataTx,
typename dataTy>
782 const std::string &
title =
""
794 const std::string &
title =
"",
806 const std::string &
title =
"",
827 void title(
const std::string &name,
828 const std::string &
title
835 const std::string &
binary,
837 const std::string &
title,
838 const std::string &name );
849 const std::string &
title,
850 const std::string &name );
863template <
typename dataT>
865 const dataT *y,
size_t N,
const std::string &modifiers,
const std::string &title,
const std::string &name )
870template <
typename dataT>
871int gnuPlot::plot(
const dataT *y,
size_t N,
const std::string &modifiers,
const std::string &name )
876template <
typename dataT>
882template <
typename dataT>
888template <
typename dataT>
890 const std::string &modifiers,
891 const std::string &title,
892 const std::string &name )
897template <
typename dataT>
898int gnuPlot::plot(
const std::vector<dataT> &y,
const std::string &modifiers,
const std::string &name )
903template <
typename dataT>
906 return plot<dataT>( y.data(), y.size(),
"",
"", name );
909template <
typename dataT>
912 return plot<dataT>( y.data(), y.size(),
"",
"",
"" );
915template <
typename dataTx,
typename dataTy>
919 const std::string &modifiers,
920 const std::string &title,
921 const std::string &name )
935template <
typename dataTx,
typename dataTy>
950template <
typename dataTx,
typename dataTy>
957template <
typename dataTx,
typename dataTy>
964template <
typename dataTx,
typename dataTy>
966 const std::vector<dataTy> &y,
967 const std::string &modifiers,
968 const std::string &title,
969 const std::string &name )
974template <
typename dataTx,
typename dataTy>
976 const std::vector<dataTy> &y,
977 const std::string &modifiers,
978 const std::string &name )
980 return plot( x.data(), y.data(), x.size(),
modifiers,
"", name );
983template <
typename dataTx,
typename dataTy>
984int gnuPlot::plot(
const std::vector<dataTx> &x,
const std::vector<dataTy> &y,
const std::string &name )
986 return plot( x.data(), y.data(), x.size(),
"",
"", name );
989template <
typename dataTx,
typename dataTy>
990int gnuPlot::plot(
const std::vector<dataTx> &x,
const std::vector<dataTy> &y )
992 return plot( x.data(), y.data(), x.size(),
"",
"",
"" );
995template <
typename dataTx,
typename dataTy>
1003std::string gpBinaryFormat<char>();
1006std::string gpBinaryFormat<unsigned char>();
1009std::string gpBinaryFormat<short>();
1012std::string gpBinaryFormat<unsigned short>();
1015std::string gpBinaryFormat<int>();
1018std::string gpBinaryFormat<unsigned int>();
1021std::string gpBinaryFormat<long>();
1024std::string gpBinaryFormat<unsigned long>();
1027std::string gpBinaryFormat<float>();
1030std::string gpBinaryFormat<double>();
An interactive c++ interface to gnuplot.
int circle(double radius, const std::string &modifiers="", const std::string &title="", int npoints=10)
Draw a circle on the plot around the origin.
int doPlotCommand()
Issue the plot command for all the curves.
int plot(const std::string &fname)
Plot from a file without specifying the name or any modifiers.
std::string getResponse(const std::string &com, double timeout=0.5)
Get a response from gnuplot for a given command.
FILE * _pipeH
File stream for the gnuplot interface.
int plot(const std::string &fname, const std::string &modifiers, const std::string &title, const std::string &name)
Plot from a file specifying all curve components.
bool _gpError
Set to true if the response indicates a gnuplot error.
int xrange(double x0, double x1)
Set the x-axis range.
void title(const std::string &name, const std::string &title)
Modify the title for a curve.
int plot(const std::string &fname, const std::string &modifiers, const std::string &name)
Plot from a file without specifying the title.
int plotImpl(const void *x, const void *y, size_t Npts, size_t sizex, size_t sizey, const std::string &binaryx, const std::string &binaryy, const std::string &modifiers, const std::string &title, const std::string &name)
Implementation of 2-d binary plotting.
int plot(const std::string &fname, const std::string &name)
Plot from a file without modifiers.
void reset()
Clear all the curves and reset plot configuration.
int connect()
Connect to gnuplot.
int point(dataTx x, dataTy y, const std::string &modifiers="", const std::string &title="")
Plot a single point.
FILE * openTempFile(char *fname)
Open a temporary binary file, and provide the filename.
std::string _errFName
File name of the gnuplot stderr fifo.
std::vector< std::string > _tempFiles
Vector of all temporary file names opened, used for removal on destruction.
int ulogy()
Unset the y axis from log scale.
int plotImpl(const void *y, size_t Nbytes, const std::string &binary, const std::string &modifiers, const std::string &title, const std::string &name)
Implementation of 1-D binary plotting.
bool _deleteTemp
Flag to control whether temporary files are deleted on destruction. Default is true (files deleted).
int logy()
Set the y axis to log scale.
int _errFD
File descriptor for the gnuplot stderr fifo.
std::string _errLocation
Where to create gnuplot stderr fifo.
int ulogxy()
Unset the x and y axes from log scale.
int replot()
Issue the replot command.
int logxy()
Set the x and y axes to log scale.
int yrange()
Unset the y-axis range.
void listCurves()
List the curves and their specifications.
int checkResponse(std::string &response, double timeout=0)
Check for a response from gnuplot.
bool gpError()
Return the value of the gpError flag.
void modifiers(const std::string &name, const std::string &modifiers)
Modify the modifiers for a curve.
int xrange()
Unset the x-axis range.
int ulogx()
Unset the x axis from log scale.
int yrange(double y0, double y1)
Set the y-axis range.
std::string _tempLocation
Location of temporary files.
int circle(double xcen, double ycen, double radius, const std::string &modifiers="", const std::string &title="", int npoints=10)
Draw a circle on the plot.
int command(const std::string &com, bool flush=true)
Send a command to gnuplot.
int logx()
Set the x axis to log scale.
std::string gpErrorMsg()
Return the gnuplot error message.
void clear()
Clear all the curves.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.