#include <AsciiData.hh>
Definition at line 419 of file AsciiData.hh.
◆ TOFHIT()
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & | os, |
|
|
const TOFHIT & | x ) |
|
friend |
Definition at line 851 of file AsciiData.cc.
852{
853 os << std::endl << "{ TOFHIT" << std::endl;
854 if(
x.initialized()) {
856 {
for(
int i = 0; i <
x.nHit; i++) {
857 os <<
" " <<
x.hitCol[i];
858 }}
859 }
860 os << std::endl << "} TOFHIT" << std::endl;
861 return os;
862}
◆ operator>>
std::istream & operator>> |
( |
std::istream & | is, |
|
|
TOFHIT & | x ) |
|
friend |
Definition at line 838 of file AsciiData.cc.
839{
840 x.check_start_tag(is,
"TOFHIT");
841 if(!
x.initialized())
return is;
843 x.hitCol.resize(
x.nHit);
844 {
for(
int i = 0; i <
x.nHit; i++) {
846 }}
847 x.check_end_tag(is,
"TOFHIT");
848 return is;
849}
◆ hitCol
◆ nHit
The documentation for this class was generated from the following file: