Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // >> 23 // >> 24 // $Id: G4SolidExtentList.hh,v 1.5 2002/10/28 11:47:51 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-05-00 $ >> 26 // >> 27 // >> 28 // -------------------------------------------------------------------- >> 29 // GEANT 4 class header file >> 30 // >> 31 // 26 // G4SolidExtentList 32 // G4SolidExtentList 27 // 33 // 28 // Class description: 34 // Class description: 29 // 35 // 30 // Defines a list of (voxel) extents along o 36 // Defines a list of (voxel) extents along one axis. 31 // 37 // 32 // This utility class is designed for one sp 38 // This utility class is designed for one specific purpose: 33 // to calculate the extent of a CSG-like sol 39 // to calculate the extent of a CSG-like solid for a voxel 34 // (G4VSolid::CalculateExtent). 40 // (G4VSolid::CalculateExtent). 35 41 36 // Author: David C. Williams (davidw@scipp.ucs << 42 // Author: >> 43 // David C. Williams (davidw@scipp.ucsc.edu) 37 // ------------------------------------------- 44 // -------------------------------------------------------------------- 38 #ifndef G4SOLIDEXTENTLIST_HH << 39 #define G4SOLIDEXTENTLIST_HH << 40 45 41 #include "G4Types.hh" << 46 #ifndef G4SolidExtentList_hh >> 47 #define G4SolidExtentList_hh >> 48 >> 49 #include "globals.hh" 42 50 43 #include "G4ClippablePolygon.hh" 51 #include "G4ClippablePolygon.hh" 44 52 45 class G4SolidExtentList 53 class G4SolidExtentList 46 { 54 { 47 public: 55 public: 48 56 49 G4SolidExtentList(); << 57 G4SolidExtentList(); 50 G4SolidExtentList( const EAxis targetAxis, << 58 G4SolidExtentList( const EAxis targetAxis, 51 const G4VoxelLimits& vo << 59 const G4VoxelLimits &voxelLimits ); 52 ~G4SolidExtentList(); << 60 ~G4SolidExtentList(); >> 61 53 62 54 void AddSurface( const G4ClippablePolygon& << 63 void AddSurface( const G4ClippablePolygon &surface ); 55 64 56 G4bool GetExtent( G4double& min, G4double& << 65 G4bool GetExtent( G4double &min, G4double &max ) const; 57 66 58 protected: 67 protected: 59 68 60 EAxis axis; // Target axis << 69 EAxis axis; // Target axis 61 G4bool limited = false; // True if limi << 70 G4bool limited; // True if limited 62 G4double minLimit; // ... min limit << 71 G4double minLimit; // ... min limit 63 G4double maxLimit; // ... max limit << 72 G4double maxLimit; // ... max limit 64 << 73 65 G4ClippablePolygon minSurface, // Minimum << 74 G4ClippablePolygon minSurface, // Minimum surface within limits 66 maxSurface, // Maximum << 75 maxSurface, // Maximum 67 minAbove, // Minimum << 76 minAbove, // Minimum surface totally above max limit 68 maxBelow; // Maximum << 77 maxBelow; // Maximum surface totally below min limit 69 }; 78 }; 70 79 71 #endif 80 #endif 72 81