#include "DetectorDescription/Core/interface/DDExpandedNode.h"
#include "DetectorDescription/Core/interface/DDPosData.h"
#include <ostream>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const DDGeoHistory &h) |
std::ostream & | operator<< (std::ostream &os, const DDExpandedNode &n) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const DDGeoHistory & | h | |||
) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const DDExpandedNode & | n | |||
) |
Definition at line 31 of file DDExpandedNode.cc.
References DDExpandedNode::copyno(), DDExpandedNode::logicalPart(), and DDBase< N, C >::name().
00032 { 00033 os << n.logicalPart().name() 00034 << '[' << n.copyno() << ']'; 00035 //<< ',' << n.siblingno() << ']'; 00036 return os; 00037 }