#include <vector>
#include "DetectorDescription/Core/interface/DDExpandedNode.h"
Go to the source code of this file.
Classes | |
class | DDScope |
defines subtrees in the expanded-view More... | |
struct | DDScopeClassification |
Classification of scope describe by A towards B. More... | |
Enumerations | |
enum | dd_scope_class { different_branch, subtree, supertree, delete_action } |
Functions | |
std::ostream & | operator<< (std::ostream &, const DDScope &) |
enum dd_scope_class |
Definition at line 7 of file DDScope.h.
00007 { different_branch, subtree, supertree, delete_action };
std::ostream& operator<< | ( | std::ostream & | , | |
const DDScope & | ||||
) |
Definition at line 125 of file DDScope.cc.
References lat::endl(), it, and DDScope::subtrees_.
00126 { 00127 DDScope::scope_type::const_iterator it = scope.subtrees_.begin(); 00128 for (; it!=scope.subtrees_.end(); ++ it) { 00129 os << *it << std::endl; 00130 } 00131 return os; 00132 }