G4TwistedBox.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: G4TwistedBox.hh 67011 2013-01-29 16:17:41Z gcosmo $
00028 //
00029 // 
00030 // --------------------------------------------------------------------
00031 // GEANT 4 class header file
00032 //
00033 //
00034 // G4TwistedBox
00035 //
00036 // Class description:
00037 //
00038 //  A G4TwistedBox is a twisted cuboid of given half lengths pDx,pDy,pDz
00039 //  and twist angle pPhiTwist. 
00040 //  The Box is  centred on the origin with sides parallel to the x/y/z axes.
00041 //
00042 //   Member Data:
00043 //
00044 //     pDx    Half-length along x axis 
00045 //     pDy    Half-length along y asis
00046 //     pDz    Half-length along z axis
00047 //     pPhiTwist Twist angle
00048 
00049 // Author:
00050 //
00051 //   27-Oct-2004 - O.Link (Oliver.Link@cern.ch)
00052 //
00053 // --------------------------------------------------------------------
00054 #ifndef __G4TWISTEDBOX__
00055 #define __G4TWISTEDBOX__
00056 
00057 #include "G4VTwistedFaceted.hh"
00058 
00059 class G4TwistedBox : public G4VTwistedFaceted
00060 {
00061   public:  // with description
00062 
00063     G4TwistedBox(const G4String& pName,
00064                        G4double  pPhiTwist,
00065                        G4double  pDx,
00066                        G4double  pDy, 
00067                        G4double  pDz );
00068 
00069     virtual ~G4TwistedBox();
00070 
00071     // accessors
00072 
00073     inline G4double GetXHalfLength() const { return GetDx1() ; }
00074     inline G4double GetYHalfLength() const { return GetDy1() ; }
00075     inline G4double GetZHalfLength() const { return GetDz()  ; }
00076     inline G4double GetPhiTwist()    const { return GetTwistAngle() ; }
00077 
00078     G4GeometryType GetEntityType()    const;
00079 
00080     G4VSolid* Clone() const;
00081 
00082     std::ostream& StreamInfo(std::ostream& os) const;
00083 
00084   public:  // without description
00085 
00086     G4TwistedBox(__void__&);
00087       // Fake default constructor for usage restricted to direct object
00088       // persistency for clients requiring preallocation of memory for
00089       // persistifiable objects.
00090 
00091     G4TwistedBox(const G4TwistedBox& rhs);
00092     G4TwistedBox& operator=(const G4TwistedBox& rhs); 
00093       // Copy constructor and assignment operator.
00094 };
00095 
00096 #endif

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