#include <AsciiData.hh>
◆ TOFHIT() [1/2]
◆ TOFHIT() [2/2]
◆ operator<< [1/2]
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const TOFHIT & |
x |
|
) |
| |
|
friend |
Definition at line 600 of file AsciiData.cc.
601{
602 os << std::endl << "{ TOFHIT" << std::endl;
603 if(
x.initialized()) {
605 {
for(
int i = 0; i <
x.nHit; i++) {
606 os <<
" " <<
x.hitCol[i];
607 }}
608 }
609 os << std::endl << "} TOFHIT" << std::endl;
610 return os;
611}
◆ operator<< [2/2]
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const TOFHIT & |
x |
|
) |
| |
|
friend |
Definition at line 600 of file AsciiData.cc.
601{
602 os << std::endl << "{ TOFHIT" << std::endl;
603 if(
x.initialized()) {
605 {
for(
int i = 0; i <
x.nHit; i++) {
606 os <<
" " <<
x.hitCol[i];
607 }}
608 }
609 os << std::endl << "} TOFHIT" << std::endl;
610 return os;
611}
◆ operator>> [1/2]
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
TOFHIT & |
x |
|
) |
| |
|
friend |
Definition at line 587 of file AsciiData.cc.
588{
589 x.check_start_tag(is,
"TOFHIT");
590 if(!
x.initialized())
return is;
592 x.hitCol.resize(
x.nHit);
593 {
for(
int i = 0; i <
x.nHit; i++) {
595 }}
596 x.check_end_tag(is,
"TOFHIT");
597 return is;
598}
◆ operator>> [2/2]
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
TOFHIT & |
x |
|
) |
| |
|
friend |
Definition at line 587 of file AsciiData.cc.
588{
589 x.check_start_tag(is,
"TOFHIT");
590 if(!
x.initialized())
return is;
592 x.hitCol.resize(
x.nHit);
593 {
for(
int i = 0; i <
x.nHit; i++) {
595 }}
596 x.check_end_tag(is,
"TOFHIT");
597 return is;
598}
◆ hitCol
◆ nHit
The documentation for this class was generated from the following files: