Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4GeometryCell.hh File Reference
#include "globals.hh"

Go to the source code of this file.

Classes

class  G4GeometryCell
 

Functions

G4bool operator== (const G4GeometryCell &k1, const G4GeometryCell &k2)
 
G4bool operator!= (const G4GeometryCell &k1, const G4GeometryCell &k2)
 

Function Documentation

◆ operator!=()

G4bool operator!= ( const G4GeometryCell & k1,
const G4GeometryCell & k2 )

Definition at line 75 of file G4GeometryCell.cc.

76{
77 G4bool unequal = false;
78 if (&(k1.GetPhysicalVolume()) != &(k2.GetPhysicalVolume()))
79 {
80 unequal = true;
81 }
82 else if (k1.GetReplicaNumber() != k2.GetReplicaNumber())
83 {
84 unequal = true;
85 }
86 return unequal;
87}
bool G4bool
Definition G4Types.hh:86
G4int GetReplicaNumber() const
const G4VPhysicalVolume & GetPhysicalVolume() const

◆ operator==()

G4bool operator== ( const G4GeometryCell & k1,
const G4GeometryCell & k2 )

Definition at line 61 of file G4GeometryCell.cc.

62{
63 G4bool equal = true;
64 if (&(k1.GetPhysicalVolume()) != &(k2.GetPhysicalVolume()))
65 {
66 equal = false;
67 }
68 else if (k1.GetReplicaNumber() != k2.GetReplicaNumber())
69 {
70 equal = false;
71 }
72 return equal;
73}

Referenced by G4Solver< Function >::operator!=().