16void mnplot(
double *xpt,
double *ypt,
char *chpt,
int nxypt,
int npagwd,
int npagln);
21 std::vector<double>
x;
23 std::vector<double>
y;
25 std::vector<char> chpt;
26 chpt.reserve(
points.size());
28 for (std::vector<std::pair<double, double>>::const_iterator ipoint =
points.begin(); ipoint !=
points.end();
30 x.push_back((*ipoint).first);
31 y.push_back((*ipoint).second);
41 std::vector<double>
x;
45 std::vector<double>
y;
49 std::vector<char> chpt;
50 chpt.reserve(
points.size() + 2);
54 for (std::vector<std::pair<double, double>>::const_iterator ipoint =
points.begin(); ipoint !=
points.end();
56 x.push_back((*ipoint).first);
57 y.push_back((*ipoint).second);
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t points
void operator()(const std::vector< std::pair< double, double > > &) const
unsigned int Width() const
unsigned int Length() const
void mnplot(double *xpt, double *ypt, char *chpt, int nxypt, int npagwd, int npagln)
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...