Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions
G4PhysicalVolumeModel.cc File Reference
#include "G4PhysicalVolumeModel.hh"
#include "G4ModelingParameters.hh"
#include "G4VGraphicsScene.hh"
#include "G4VPhysicalVolume.hh"
#include "G4VPVParameterisation.hh"
#include "G4LogicalVolume.hh"
#include "G4VSolid.hh"
#include "G4SubtractionSolid.hh"
#include "G4IntersectionSolid.hh"
#include "G4Material.hh"
#include "G4VisAttributes.hh"
#include "G4BoundingSphereScene.hh"
#include "G4PhysicalVolumeSearchScene.hh"
#include "G4TransportationManager.hh"
#include "G4Polyhedron.hh"
#include "HepPolyhedronProcessor.h"
#include "G4AttDefStore.hh"
#include "G4AttDef.hh"
#include "G4AttValue.hh"
#include "G4UnitsTable.hh"
#include "G4Vector3D.hh"
#include <sstream>
#include <iomanip>

Go to the source code of this file.

Functions

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

Function Documentation

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

Definition at line 890 of file G4PhysicalVolumeModel.cc.

References G4VPhysicalVolume::GetName().

891 {
892  G4VPhysicalVolume* pPV = node.GetPhysicalVolume();
893  if (pPV) {
894  os << pPV->GetName()
895  << ':' << node.GetCopyNo()
896  << '[' << node.GetNonCulledDepth() << ']'
897  << ':' << node.GetTransform();
898  if (!node.GetDrawn()) os << " Not "; os << "drawn";
899  } else {
900  os << "Null node";
901  }
902  return os;
903 }
const G4String & GetName() const