G4GeomTestOverlapList.cc

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 //
00027 // $Id$
00028 //
00029 // --------------------------------------------------------------------
00030 // GEANT 4 class source file
00031 //
00032 // G4GeomTestOverlapList
00033 //
00034 // Author: D.C.Williams, UCSC (davidw@scipp.ucsc.edu)
00035 // --------------------------------------------------------------------
00036 
00037 #include "G4GeomTestOverlapList.hh"
00038 
00039 #include "G4VPhysicalVolume.hh"
00040 #include "G4LogicalVolume.hh"
00041 
00042 //
00043 // Constructor
00044 //
00045 G4GeomTestOverlapList::G4GeomTestOverlapList(
00046                              const G4VPhysicalVolume *theMother,
00047                                    G4int theDaughter1,
00048                                    G4int theDaughter2 )
00049   : G4GeomTestErrorList(theMother),
00050     daughter1(theDaughter1),
00051     daughter2(theDaughter2)
00052 {}
00053 
00054 
00055 //
00056 // Default constructor
00057 //
00058 G4GeomTestOverlapList::G4GeomTestOverlapList()
00059   : G4GeomTestErrorList(0),
00060     daughter1(0),
00061     daughter2(0)
00062 {}
00063 
00064 
00065 //
00066 // Destructor
00067 //
00068 G4GeomTestOverlapList::~G4GeomTestOverlapList()
00069 {}
00070 
00071 
00072 //
00073 // Comparison operators
00074 //
00075 G4bool
00076 G4GeomTestOverlapList::operator==( const G4GeomTestOverlapList &other ) const
00077 {
00078   return daughter1==other.daughter1 && daughter2==other.daughter2;
00079 }
00080 
00081 G4bool
00082 G4GeomTestOverlapList::operator< ( const G4GeomTestOverlapList &other ) const
00083 {
00084   if (daughter1 > other.daughter1) return false;
00085   if (daughter1 < other.daughter1) return true;
00086   
00087   return (daughter2 < other.daughter2);
00088 }
00089 
00090 
00091 
00092 //
00093 // Accessors
00094 //
00095 const G4VPhysicalVolume *G4GeomTestOverlapList::GetDaughter1() const
00096 { 
00097   return GetMother()->GetLogicalVolume()->GetDaughter(daughter1); 
00098 }
00099 
00100 const G4VPhysicalVolume *G4GeomTestOverlapList::GetDaughter2() const
00101 { 
00102   return GetMother()->GetLogicalVolume()->GetDaughter(daughter2); 
00103 }
00104 
00105 G4int G4GeomTestOverlapList::GetDaughter1Index() const
00106 {
00107   return daughter1;
00108 }
00109 
00110 G4int G4GeomTestOverlapList::GetDaughter2Index() const
00111 {
00112   return daughter2;
00113 }
00114 
00115 
00116 //
00117 // GetDaught1Points
00118 //
00119 // Return start and end points in the coordinate system of
00120 // the first daughter
00121 //
00122 void G4GeomTestOverlapList::GetDaught1Points( G4int i, 
00123                                               G4ThreeVector &s1, 
00124                                               G4ThreeVector &s2 ) const
00125 {
00126   GetOneDaughtPoints( GetDaughter1(), i, s1, s2 );
00127 }
00128 
00129 
00130 //
00131 // GetDaught2Points
00132 //
00133 // Return start and end points in the coordinate system of
00134 // the second daughter
00135 //
00136 void G4GeomTestOverlapList::GetDaught2Points( G4int i, 
00137                                               G4ThreeVector &s1, 
00138                                               G4ThreeVector &s2 ) const
00139 {
00140   GetOneDaughtPoints( GetDaughter2(), i, s1, s2 );
00141 }

Generated on Mon May 27 17:48:22 2013 for Geant4 by  doxygen 1.4.7