CMS 3D CMS Logo

Classes | Enumerations | Functions

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/DetectorDescription/Core/interface/DDScope.h File Reference

#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

Enumerator:
different_branch 
subtree 
supertree 
delete_action 

Definition at line 7 of file DDScope.h.


Function Documentation

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

Definition at line 117 of file DDScope.cc.

References DDScope::subtrees_.

{
   DDScope::scope_type::const_iterator it = scope.subtrees_.begin();
   for(; it != scope.subtrees_.end(); ++ it )
   {
     os << *it << std::endl;
   }
   return os;
}