Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4OpenInventorQtExaminerViewer::elementForSorting Struct Reference

#include <G4OpenInventorQtExaminerViewer.hh>

Public Member Functions

G4bool operator< (elementForSorting const &other) const
 

Public Attributes

float closestPointZCoord
 
SbVec3f closestPoint
 
float smallestDistance
 
float distanceToBeamlineStart
 
std::string name
 

Detailed Description

Definition at line 364 of file G4OpenInventorQtExaminerViewer.hh.

Member Function Documentation

◆ operator<()

G4bool G4OpenInventorQtExaminerViewer::elementForSorting::operator< ( elementForSorting const & other) const
inline

Definition at line 371 of file G4OpenInventorQtExaminerViewer.hh.

372 {
373 if (closestPointZCoord < other.closestPointZCoord)
374 return true;
375 if (closestPointZCoord > other.closestPointZCoord)
376 return false;
377
378 // otherwise closestPointZCoord == other.closestPointZCoord.
379 // Compare the distances from the center of the element to
380 // the start of the beamline.
381 if (distanceToBeamlineStart < other.distanceToBeamlineStart)
382 return true;
383 if (distanceToBeamlineStart > other.distanceToBeamlineStart)
384 return false;
385
386 // In case both closestPointZCoord and smallestDistance are
387 // equal, we have two exactly overlapping elements, if so
388 // the order doesn't matter
389 return true;
390 }

Member Data Documentation

◆ closestPoint

SbVec3f G4OpenInventorQtExaminerViewer::elementForSorting::closestPoint

◆ closestPointZCoord

float G4OpenInventorQtExaminerViewer::elementForSorting::closestPointZCoord

◆ distanceToBeamlineStart

float G4OpenInventorQtExaminerViewer::elementForSorting::distanceToBeamlineStart

◆ name

std::string G4OpenInventorQtExaminerViewer::elementForSorting::name

Definition at line 369 of file G4OpenInventorQtExaminerViewer.hh.

◆ smallestDistance

float G4OpenInventorQtExaminerViewer::elementForSorting::smallestDistance

The documentation for this struct was generated from the following file: