#include <iostream>
#include <string>
#include <vector>
#include "TObject.h"
Go to the source code of this file.
◆ operator<<()
std::ostream& operator<< |
( |
std::ostream & |
s, |
|
|
const node & |
n |
|
) |
| |
|
inline |
Definition at line 89 of file node.h.
90 s <<
n.depth() <<
n.name() <<
"::" <<
n.stype() <<
" : obj " <<
n.object() <<
" : size " <<
n.size() <<
"\tpath " <<
n.path();
92 else if (
n.size() ) {
93 if (
n.parent() )
s <<
"\t( parent " <<
n.parent()->name() <<
" )";
94 if (
n.rate().first!=
"" )
s <<
"\t\t:::(max rate chain " <<
n.rate().first <<
" " <<
n.rate().second <<
" ):::";
95 for (
unsigned i=0 ;
i<
n.size() ;
i++ ) {
97 s <<
"\n" <<
i <<
" " <<
n.depth() <<
" " << *
n[
i];