2522 |
return m_data.get(); |
return m_data.get(); |
2523 |
} |
} |
2524 |
|
|
2525 |
|
|
2526 |
|
std::string |
2527 |
|
Data::toString() const |
2528 |
|
{ |
2529 |
|
static const DataArrayView::ValueType::size_type TOO_MANY_POINTS=80; |
2530 |
|
if (getNumDataPoints()*getDataPointSize()>TOO_MANY_POINTS) |
2531 |
|
{ |
2532 |
|
stringstream temp; |
2533 |
|
temp << "Summary: inf="<< inf() << " sup=" << sup() << " data points=" << getNumDataPoints(); |
2534 |
|
return temp.str(); |
2535 |
|
} |
2536 |
|
return m_data->toString(); |
2537 |
|
} |
2538 |
|
|
2539 |
|
|
2540 |
/* Member functions specific to the MPI implementation */ |
/* Member functions specific to the MPI implementation */ |
2541 |
|
|
2542 |
void |
void |
2602 |
#endif |
#endif |
2603 |
} |
} |
2604 |
|
|
2605 |
|
|