#include <G3RotTableEntry.hh>
Public Member Functions | |
G3RotTableEntry (G4int id, G4RotationMatrix *matrix) | |
G3RotTableEntry (const G3RotTableEntry &right) | |
virtual | ~G3RotTableEntry () |
G3RotTableEntry & | operator= (const G3RotTableEntry &right) |
G4int | operator== (const G3RotTableEntry &right) const |
G4int | operator!= (const G3RotTableEntry &right) const |
G4int | GetID () const |
G4RotationMatrix * | GetMatrix () const |
Definition at line 47 of file G3RotTableEntry.hh.
G3RotTableEntry::G3RotTableEntry | ( | G4int | id, | |
G4RotationMatrix * | matrix | |||
) |
G3RotTableEntry::G3RotTableEntry | ( | const G3RotTableEntry & | right | ) |
G3RotTableEntry::~G3RotTableEntry | ( | ) | [virtual] |
G4int G3RotTableEntry::GetID | ( | ) | const [inline] |
G4RotationMatrix * G3RotTableEntry::GetMatrix | ( | ) | const [inline] |
G4int G3RotTableEntry::operator!= | ( | const G3RotTableEntry & | right | ) | const |
G3RotTableEntry & G3RotTableEntry::operator= | ( | const G3RotTableEntry & | right | ) |
Definition at line 48 of file G3RotTableEntry.cc.
References GetID(), and GetMatrix().
00049 { 00050 if (&right == this) { return *this; } 00051 fID = right.GetID(); 00052 fMatrix = right.GetMatrix(); 00053 return *this; 00054 }
G4int G3RotTableEntry::operator== | ( | const G3RotTableEntry & | right | ) | const |
Definition at line 56 of file G3RotTableEntry.cc.
References GetID().
00057 { 00058 if (fID == right.GetID()) 00059 return 1; 00060 else 00061 return 0; 00062 }