#include <AsciiData.hh>
Definition at line 374 of file AsciiData.hh.
◆ CGEMHIT()
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const CGEMHIT & |
x |
|
) |
| |
|
friend |
Definition at line 761 of file AsciiData.cc.
762{
763 os << std::endl << "{ CGEMHIT" << std::endl;
764 if(
x.initialized()) {
766 {
for(
int i = 0; i <
x.nHit; i++) {
767 os <<
" " <<
x.hitCol[i];
768 }}
769 }
770 os << std::endl << "} CGEMHIT" << std::endl;
771 return os;
772}
◆ operator>>
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
CGEMHIT & |
x |
|
) |
| |
|
friend |
Definition at line 748 of file AsciiData.cc.
749{
750 x.check_start_tag(is,
"CGEMHIT");
751 if(!
x.initialized())
return is;
753 x.hitCol.resize(
x.nHit);
754 {
for(
int i = 0; i <
x.nHit; i++) {
756 }}
757 x.check_end_tag(is,
"CGEMHIT");
758 return is;
759}
◆ hitCol
◆ nHit
The documentation for this class was generated from the following file: