CMS 3D CMS Logo

Classes | Enumerations | Functions
DDScope.h File Reference
#include <iosfwd>
#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 &)
 

Enumeration Type Documentation

◆ dd_scope_class

Enumerator
different_branch 
subtree 
supertree 
delete_action 

Definition at line 9 of file DDScope.h.

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  ,
const DDScope  
)

Definition at line 87 of file DDScope.cc.

References DDScope::subtrees_.

87  {
88  DDScope::scope_type::const_iterator it = scope.subtrees_.begin();
89  for (; it != scope.subtrees_.end(); ++it) {
90  os << *it << std::endl;
91  }
92  return os;
93 }