#include <AsciiData.hh>
Definition at line 462 of file AsciiData.hh.
◆ EMCHIT()
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const EMCHIT & |
x |
|
) |
| |
|
friend |
Definition at line 938 of file AsciiData.cc.
939{
940 os << std::endl << "{ EMCHIT" << std::endl;
941 if(
x.initialized()) {
943 {
for(
int i = 0; i <
x.nHit; i++) {
944 os <<
" " <<
x.hitCol[i];
945 }}
946 }
947 os << std::endl << "} EMCHIT" << std::endl;
948 return os;
949}
◆ operator>>
std::istream & operator>> |
( |
std::istream & |
is, |
|
|
EMCHIT & |
x |
|
) |
| |
|
friend |
Definition at line 925 of file AsciiData.cc.
926{
927 x.check_start_tag(is,
"EMCHIT");
928 if(!
x.initialized())
return is;
930 x.hitCol.resize(
x.nHit);
931 {
for(
int i = 0; i <
x.nHit; i++) {
933 }}
934 x.check_end_tag(is,
"EMCHIT");
935 return is;
936}
◆ hitCol
◆ nHit
The documentation for this class was generated from the following file: