#include <AsciiData.hh>
Definition at line 379 of file AsciiData.hh.
◆ MUCHIT()
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const MUCHIT & |
x |
|
) |
| |
|
friend |
Definition at line 773 of file AsciiData.cc.
774{
775 os << std::endl << "{ MUCHIT" << std::endl;
776 if(
x.initialized()) {
778 {
for(
int i = 0; i <
x.nHit; i++) {
779 os <<
" " <<
x.hitCol[i];
780 }}
781 }
782 os << std::endl << "} MUCHIT" << std::endl;
783 return os;
784}
◆ operator>>
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
MUCHIT & |
x |
|
) |
| |
|
friend |
Definition at line 760 of file AsciiData.cc.
761{
762 x.check_start_tag(is,
"MUCHIT");
763 if(!
x.initialized())
return is;
765 x.hitCol.resize(
x.nHit);
766 {
for(
int i = 0; i <
x.nHit; i++) {
768 }}
769 x.check_end_tag(is,
"MUCHIT");
770 return is;
771}
◆ hitCol
◆ nHit
The documentation for this class was generated from the following file: