#include <AsciiData.hh>
Definition at line 159 of file AsciiData.hh.
◆ CGEMTRUTH()
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const CGEMTRUTH & |
x |
|
) |
| |
|
friend |
Definition at line 323 of file AsciiData.cc.
324{
325 os << std::endl << "{ CGEMTRUTH" << std::endl;
326 if(
x.initialized()) {
327 os <<
" " <<
x.nTruth;
328 {
for(
int i = 0; i <
x.nTruth; i++) {
329 os <<
" " <<
x.truthCol[i];
330 }}
331 }
332 os << std::endl << "} CGEMTRUTH" << std::endl;
333 return os;
334}
◆ operator>>
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
CGEMTRUTH & |
x |
|
) |
| |
|
friend |
Definition at line 310 of file AsciiData.cc.
311{
312 x.check_start_tag(is,
"CGEMTRUTH");
313 if(!
x.initialized())
return is;
315 x.truthCol.resize(
x.nTruth);
316 {
for(
int i = 0; i <
x.nTruth; i++) {
318 }}
319 x.check_end_tag(is,
"CGEMTRUTH");
320 return is;
321}
◆ nTruth
◆ truthCol
The documentation for this class was generated from the following file: