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: G4Polyhedra.icc 67011 2013-01-29 16:17:41Z gcosmo $ 00028 // 00029 // -------------------------------------------------------------------- 00030 // GEANT 4 inline definitions file 00031 // 00032 // G4Polyhedra.icc 00033 // 00034 // Implementation of inline methods of G4Polyhedra 00035 // -------------------------------------------------------------------- 00036 00037 inline 00038 G4int G4Polyhedra::GetNumSide() const 00039 { 00040 return numSide; 00041 } 00042 00043 inline 00044 G4double G4Polyhedra::GetStartPhi() const 00045 { 00046 return startPhi; 00047 } 00048 00049 inline 00050 G4double G4Polyhedra::GetEndPhi() const 00051 { 00052 return endPhi; 00053 } 00054 00055 inline 00056 G4bool G4Polyhedra::IsOpen() const 00057 { 00058 return phiIsOpen; 00059 } 00060 00061 inline 00062 G4bool G4Polyhedra::IsGeneric() const 00063 { 00064 return genericPgon; 00065 } 00066 00067 inline 00068 G4int G4Polyhedra::GetNumRZCorner() const 00069 { 00070 return numCorner; 00071 } 00072 00073 inline 00074 G4PolyhedraSideRZ G4Polyhedra::GetCorner( const G4int index ) const 00075 { 00076 return corners[index]; 00077 } 00078 00079 inline 00080 G4PolyhedraHistorical* G4Polyhedra::GetOriginalParameters() const 00081 { 00082 return original_parameters; 00083 } 00084 00085 inline 00086 void G4Polyhedra::SetOriginalParameters(G4PolyhedraHistorical* pars) 00087 { 00088 if (!pars) 00089 { 00090 G4Exception("G4Polyhedra::SetOriginalParameters()", "GeomSolids0002", 00091 FatalException, "NULL pointer to parameters!"); 00092 } 00093 *original_parameters = *pars; 00094 fCubicVolume = 0.; 00095 fpPolyhedron = 0; 00096 } 00097 00098 inline 00099 void G4Polyhedra::SetOriginalParameters() 00100 { 00101 G4int numPlanes = (G4int) numCorner/2; 00102 00103 original_parameters = new G4PolyhedraHistorical; 00104 00105 original_parameters->Z_values = new G4double[numPlanes]; 00106 original_parameters->Rmin = new G4double[numPlanes]; 00107 original_parameters->Rmax = new G4double[numPlanes]; 00108 00109 for(G4int j=0; j < numPlanes; j++) 00110 { 00111 original_parameters->Z_values[j] = corners[numPlanes+j].z; 00112 original_parameters->Rmax[j] = corners[numPlanes+j].r; 00113 original_parameters->Rmin[j] = corners[numPlanes-1-j].r; 00114 } 00115 00116 original_parameters->Start_angle = startPhi; 00117 original_parameters->Opening_angle = endPhi-startPhi; 00118 original_parameters->Num_z_planes = numPlanes; 00119 original_parameters->numSide = numSide; 00120 00121 }