#include <AsciiData.hh>
Definition at line 504 of file AsciiData.hh.
◆ MUCHIT()
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & | os, |
|
|
const MUCHIT & | x ) |
|
friend |
Definition at line 1024 of file AsciiData.cc.
1025{
1026 os << std::endl << "{ MUCHIT" << std::endl;
1027 if(
x.initialized()) {
1028 os <<
" " <<
x.nHit;
1029 {
for(
int i = 0; i <
x.nHit; i++) {
1030 os <<
" " <<
x.hitCol[i];
1031 }}
1032 }
1033 os << std::endl << "} MUCHIT" << std::endl;
1034 return os;
1035}
◆ operator>>
std::istream & operator>> |
( |
std::istream & | is, |
|
|
MUCHIT & | x ) |
|
friend |
Definition at line 1011 of file AsciiData.cc.
1012{
1013 x.check_start_tag(is,
"MUCHIT");
1014 if(!
x.initialized())
return is;
1016 x.hitCol.resize(
x.nHit);
1017 {
for(
int i = 0; i <
x.nHit; i++) {
1019 }}
1020 x.check_end_tag(is,
"MUCHIT");
1021 return is;
1022}
◆ hitCol
◆ nHit
The documentation for this class was generated from the following file: