Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4SmartVoxelNode Class Reference

#include <G4SmartVoxelNode.hh>

Public Member Functions

 G4SmartVoxelNode (G4int pSlice=0)
 
 ~G4SmartVoxelNode ()=default
 
G4int GetVolume (G4int pVolumeNo) const
 
void Insert (G4int pVolumeNo)
 
std::size_t GetNoContained () const
 
std::size_t GetCapacity () const
 
void Reserve (G4int noSlices)
 
void Shrink ()
 
G4int GetMaxEquivalentSliceNo () const
 
void SetMaxEquivalentSliceNo (G4int pMax)
 
G4int GetMinEquivalentSliceNo () const
 
void SetMinEquivalentSliceNo (G4int pMin)
 
G4bool operator== (const G4SmartVoxelNode &v) const
 

Detailed Description

Definition at line 57 of file G4SmartVoxelNode.hh.

Constructor & Destructor Documentation

◆ G4SmartVoxelNode()

G4SmartVoxelNode::G4SmartVoxelNode ( G4int pSlice = 0)
inline

Definition at line 61 of file G4SmartVoxelNode.hh.

61 : fminEquivalent(pSlice),
62 fmaxEquivalent(pSlice) {}

Referenced by operator==(), and SetMinEquivalentSliceNo().

◆ ~G4SmartVoxelNode()

G4SmartVoxelNode::~G4SmartVoxelNode ( )
default

Member Function Documentation

◆ GetCapacity()

std::size_t G4SmartVoxelNode::GetCapacity ( ) const
inline

◆ GetMaxEquivalentSliceNo()

G4int G4SmartVoxelNode::GetMaxEquivalentSliceNo ( ) const
inline

◆ GetMinEquivalentSliceNo()

G4int G4SmartVoxelNode::GetMinEquivalentSliceNo ( ) const
inline

◆ GetNoContained()

◆ GetVolume()

◆ Insert()

void G4SmartVoxelNode::Insert ( G4int pVolumeNo)
inline

◆ operator==()

G4bool G4SmartVoxelNode::operator== ( const G4SmartVoxelNode & v) const

Definition at line 41 of file G4SmartVoxelNode.cc.

42{
43 std::size_t maxNode = GetNoContained();
44 if (maxNode == v.GetNoContained())
45 {
46 for (std::size_t node=0; node<maxNode; ++node)
47 {
48 if (GetVolume((G4int)node) != v.GetVolume((G4int)node))
49 {
50 return false;
51 }
52 }
53 return true;
54 }
55 return false;
56}
int G4int
Definition G4Types.hh:85
G4int GetVolume(G4int pVolumeNo) const
std::size_t GetNoContained() const

◆ Reserve()

void G4SmartVoxelNode::Reserve ( G4int noSlices)
inline

◆ SetMaxEquivalentSliceNo()

void G4SmartVoxelNode::SetMaxEquivalentSliceNo ( G4int pMax)
inline

◆ SetMinEquivalentSliceNo()

void G4SmartVoxelNode::SetMinEquivalentSliceNo ( G4int pMin)
inline

◆ Shrink()

void G4SmartVoxelNode::Shrink ( )
inline

The documentation for this class was generated from the following files: