G4Polycone.icc

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

Generated on Mon May 27 17:49:23 2013 for Geant4 by  doxygen 1.4.7