Geant4  10.02.p03
G4PhysicalVolumeModel.hh File Reference
#include "G4VModel.hh"
#include "G4VTouchable.hh"
#include "G4Transform3D.hh"
#include "G4Plane3D.hh"
#include <iostream>
#include <vector>
#include <map>
Include dependency graph for G4PhysicalVolumeModel.hh:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  G4PhysicalVolumeModel
 
class  G4PhysicalVolumeModel::G4PhysicalVolumeNodeID
 
class  G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable
 

Functions

std::ostream & operator<< (std::ostream &os, const G4PhysicalVolumeModel::G4PhysicalVolumeNodeID)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  os,
const G4PhysicalVolumeModel::G4PhysicalVolumeNodeID   
)

Definition at line 922 of file G4PhysicalVolumeModel.cc.

923 {
924  G4VPhysicalVolume* pPV = node.GetPhysicalVolume();
925  if (pPV) {
926  os << pPV->GetName()
927  << ':' << node.GetCopyNo()
928  << '[' << node.GetNonCulledDepth() << ']'
929  << ':' << node.GetTransform();
930  if (!node.GetDrawn()) os << " Not ";
931  os << "drawn";
932  } else {
933  os << "Null node";
934  }
935  return os;
936 }
const G4String & GetName() const
Here is the call graph for this function: