#include <AsciiData.hh>
Definition at line 299 of file AsciiData.hh.
◆ MDCHIT()
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const MDCHIT & |
x |
|
) |
| |
|
friend |
Definition at line 609 of file AsciiData.cc.
610{
611 os << std::endl << "{ MDCHIT" << std::endl;
612 if(
x.initialized()) {
614 {
for(
int i = 0; i <
x.nHit; i++) {
615 os <<
" " <<
x.hitCol[i];
616 }}
617 }
618 os << std::endl << "} MDCHIT" << std::endl;
619 return os;
620}
◆ operator>>
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
MDCHIT & |
x |
|
) |
| |
|
friend |
Definition at line 596 of file AsciiData.cc.
597{
598 x.check_start_tag(is,
"MDCHIT");
599 if(!
x.initialized())
return is;
601 x.hitCol.resize(
x.nHit);
602 {
for(
int i = 0; i <
x.nHit; i++) {
604 }}
605 x.check_end_tag(is,
"MDCHIT");
606 return is;
607}
◆ hitCol
◆ nHit
The documentation for this class was generated from the following file: