#include <AsciiData.hh>
Definition at line 196 of file AsciiData.hh.
◆ MUCTRUTH() [1/2]
◆ MUCTRUTH() [2/2]
◆ operator<< [1/2]
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const MUCTRUTH & |
x |
|
) |
| |
|
friend |
Definition at line 402 of file AsciiData.cc.
403{
404 os << std::endl << "{ MUCTRUTH" << std::endl;
405 if(
x.initialized()) {
406 os <<
" " <<
x.nTruth;
407 {
for(
int i = 0; i <
x.nTruth; i++) {
408 os <<
" " <<
x.truthCol[i];
409 }}
410 }
411 os << std::endl << "} MUCTRUTH" << std::endl;
412 return os;
413}
◆ operator<< [2/2]
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const MUCTRUTH & |
x |
|
) |
| |
|
friend |
Definition at line 402 of file AsciiData.cc.
403{
404 os << std::endl << "{ MUCTRUTH" << std::endl;
405 if(
x.initialized()) {
406 os <<
" " <<
x.nTruth;
407 {
for(
int i = 0; i <
x.nTruth; i++) {
408 os <<
" " <<
x.truthCol[i];
409 }}
410 }
411 os << std::endl << "} MUCTRUTH" << std::endl;
412 return os;
413}
◆ operator>> [1/2]
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
MUCTRUTH & |
x |
|
) |
| |
|
friend |
Definition at line 389 of file AsciiData.cc.
390{
391 x.check_start_tag(is,
"MUCTRUTH");
392 if(!
x.initialized())
return is;
394 x.truthCol.resize(
x.nTruth);
395 {
for(
int i = 0; i <
x.nTruth; i++) {
397 }}
398 x.check_end_tag(is,
"MUCTRUTH");
399 return is;
400}
◆ operator>> [2/2]
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
MUCTRUTH & |
x |
|
) |
| |
|
friend |
Definition at line 389 of file AsciiData.cc.
390{
391 x.check_start_tag(is,
"MUCTRUTH");
392 if(!
x.initialized())
return is;
394 x.truthCol.resize(
x.nTruth);
395 {
for(
int i = 0; i <
x.nTruth; i++) {
397 }}
398 x.check_end_tag(is,
"MUCTRUTH");
399 return is;
400}
◆ nTruth
◆ truthCol
The documentation for this class was generated from the following files: