G4BREPSolidOpenPCone.hh

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 // Class G4BREPSolidOpenPCone
00031 //
00032 // Class description:
00033 //
00034 //  Definition of a generic BREP open polyconical solid:
00035 //
00036 //  G4BREPSolidOpenPCone ( const G4String& name,
00037 //                               G4double  start_angle,
00038 //                               G4double  opening_angle,                 
00039 //                               G4int     num_z_planes,
00040 //                               G4double  z_start,               
00041 //                               G4double  z_values[],
00042 //                               G4double  RMIN[],
00043 //                               G4double  RMAX[])
00044 
00045 // Authors: J.Sulkimo, P.Urban.
00046 // Revisions by: L.Broglia, G.Cosmo.
00047 // ----------------------------------------------------------------------
00048 #ifndef G4BREPSolidOpenPCone_hh
00049 #define G4BREPSolidOpenPCone_hh
00050 
00051 #include "G4IntersectionSolid.hh"
00052 
00053 class G4BREPSolidOpenPCone : public G4IntersectionSolid
00054 {
00055 
00056  public: // with description
00057   
00058   G4BREPSolidOpenPCone( const G4String& name,
00059                         G4double  start_angle,
00060                         G4double  opening_angle,                 
00061                         G4int     num_z_planes, // sections
00062                         G4double  z_start,               
00063                         G4double  z_values[],
00064                         G4double  RMIN[],
00065                         G4double  RMAX[] );
00066     // Constructor defining the polycone through its
00067     // conical/cylindrical surfaces.
00068 
00069   ~G4BREPSolidOpenPCone();
00070     // Empty destructor.
00071 
00072   void DescribeYourselfTo (G4VGraphicsScene& scene) const;
00073     // Dispatch function which identifies the solid to the graphics scene.
00074   
00075   G4VSolid* Clone() const;
00076     // Returns a pointer of a dynamically allocated copy of the solid.
00077 
00078   std::ostream& StreamInfo(std::ostream& os) const;
00079     // Streams solid contents to output stream.
00080 
00081  public:  // without description
00082 
00083   G4BREPSolidOpenPCone(__void__&);
00084     // Fake default constructor for usage restricted to direct object
00085     // persistency for clients requiring preallocation of memory for
00086     // persistifiable objects.
00087 
00088   G4BREPSolidOpenPCone(const G4BREPSolidOpenPCone& rhs);
00089   G4BREPSolidOpenPCone& operator=(const G4BREPSolidOpenPCone& rhs);
00090 
00091  private:
00092 
00093   void InitializeOPCone();
00094 
00095  private:
00096 
00097   struct G4BREPOpenPConeParams
00098   {
00099     G4double start_angle, opening_angle;
00100     G4int num_z_planes;       // sections
00101     G4double z_start;
00102     G4double *z_values, *RMIN, *RMAX;
00103   } constructorParams;
00104 };
00105 
00106 #endif

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