|
HG-MD
1
|

Functions | |
| template<StatType T> | |
| std::ostream & | operator<< (std::ostream &os, const StatisticsPoint< T > &stat) |
| Output statistical variables to ostream. | |
| std::ostream& operator<< | ( | std::ostream & | os, |
| const StatisticsPoint< T > & | stat | ||
| ) |
Output statistical variables to ostream.
{
os.precision(16);
if (stat.mirrorParticle<0) {
//only write std particles, not mirrored particles
os << stat.get_Position() << " " << stat.write() << endl;
}
return os;
}
1.7.6.1