CMS 3D CMS Logo

Classes | Typedefs | Functions
DDExpandedNode.h File Reference
#include <iosfwd>
#include <vector>
#include "DetectorDescription/Core/interface/DDRotationMatrix.h"
#include "DetectorDescription/Core/interface/DDTranslation.h"
#include "DetectorDescription/Core/interface/DDLogicalPart.h"
#include "DetectorDescription/Core/interface/DDTransform.h"

Go to the source code of this file.

Classes

class  DDExpandedNode
 represents one node in the DDExpandedView More...
 
struct  DDExpandedNodeLess
 function object to compare to ExpandedNodes More...
 

Typedefs

typedef std::vector< DDExpandedNodeDDGeoHistory
 Geometrical 'path' of the current node up to the root-node. More...
 

Functions

std::ostream & operator<< (std::ostream &, const DDExpandedNode &)
 
std::ostream & operator<< (std::ostream &, const DDGeoHistory &)
 

Typedef Documentation

typedef std::vector<DDExpandedNode> DDGeoHistory

Geometrical 'path' of the current node up to the root-node.

Definition at line 106 of file DDExpandedNode.h.

Function Documentation

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

Definition at line 32 of file DDExpandedNode.cc.

References DDExpandedNode::copyno(), DDExpandedNode::logicalPart(), and DDBase< N, C >::name().

33 {
34  os << n.logicalPart().name()
35  << '[' << n.copyno() << ']';
36  return os;
37 }
std::ostream& operator<< ( std::ostream &  ,
const DDGeoHistory  
)

Definition at line 39 of file DDExpandedNode.cc.

40 {
41  for( const auto& it : h ) {
42  os << '/' << it;
43  }
44  return os;
45 }
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.