#include <AsciiData.hh>
Definition at line 249 of file AsciiData.hh.
◆ MDCHIT()
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const MDCHIT & |
x |
|
) |
| |
|
friend |
Definition at line 510 of file AsciiData.cc.
511{
512 os << std::endl << "{ MDCHIT" << std::endl;
513 if(
x.initialized()) {
515 {
for(
int i = 0; i <
x.nHit; i++) {
516 os <<
" " <<
x.hitCol[i];
517 }}
518 }
519 os << std::endl << "} MDCHIT" << std::endl;
520 return os;
521}
◆ operator>>
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
MDCHIT & |
x |
|
) |
| |
|
friend |
Definition at line 497 of file AsciiData.cc.
498{
499 x.check_start_tag(is,
"MDCHIT");
500 if(!
x.initialized())
return is;
502 x.hitCol.resize(
x.nHit);
503 {
for(
int i = 0; i <
x.nHit; i++) {
505 }}
506 x.check_end_tag(is,
"MDCHIT");
507 return is;
508}
◆ hitCol
◆ nHit
The documentation for this class was generated from the following file: