G4TwistedTrd.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: G4TwistedTrd.hh 67011 2013-01-29 16:17:41Z gcosmo $
00028 //
00029 // 
00030 // --------------------------------------------------------------------
00031 // GEANT 4 class header file
00032 //
00033 //
00034 // G4TwistedTrd
00035 //
00036 // Class description:
00037 //
00038 //  A G4TwistedTrd is a twisted trapezoid with the x and y dimensions 
00039 //  varying along z 
00040 // 
00041 //
00042 //   Member Data:
00043 //
00044 //     pDx1    Half-length along x at the surface positioned at -dz
00045 //     pDx2    Half-length along x at the surface positioned at +dz
00046 //     pDy1    Half-length along y at the surface positioned at -dz
00047 //     pDy2    Half-length along y at the surface positioned at +dz
00048 //     pDz     Half-length along z axis
00049 //     pPhiTwist Twist angle
00050 
00051 // Author:
00052 //
00053 //   Oliver Link (Oliver.Link@cern.ch)
00054 //
00055 // --------------------------------------------------------------------
00056 #ifndef __G4TWISTEDTRD__
00057 #define __G4TWISTEDTRD__
00058 
00059 #include "G4VTwistedFaceted.hh"
00060 
00061 class G4TwistedTrd : public G4VTwistedFaceted
00062 {
00063   public:  // with description
00064 
00065     G4TwistedTrd( const G4String& pName,
00066                         G4double  pDx1,
00067                         G4double  pDx2,
00068                         G4double  pDy1, 
00069                         G4double  pDy2,
00070                         G4double  pDz,
00071                         G4double  pPhiTwist );
00072 
00073     virtual ~G4TwistedTrd();
00074 
00075     // accessors
00076 
00077     inline G4double GetX1HalfLength() const { return GetDx1() ; }
00078     inline G4double GetX2HalfLength() const { return GetDx3() ; }
00079     inline G4double GetY1HalfLength() const { return GetDy1() ; }
00080     inline G4double GetY2HalfLength() const { return GetDy2() ; }
00081     inline G4double GetZHalfLength()  const { return GetDz()  ; }
00082     inline G4double GetPhiTwist()     const { return GetTwistAngle() ; }
00083 
00084     G4GeometryType GetEntityType() const;
00085 
00086     G4VSolid* Clone() const;
00087 
00088     std::ostream&  StreamInfo(std::ostream& os) const;
00089 
00090   public:  // without description
00091 
00092     G4TwistedTrd(__void__&);
00093       // Fake default constructor for usage restricted to direct object
00094       // persistency for clients requiring preallocation of memory for
00095       // persistifiable objects.
00096 
00097     G4TwistedTrd(const G4TwistedTrd& rhs);
00098     G4TwistedTrd& operator=(const G4TwistedTrd& rhs); 
00099       // Copy constructor and assignment operator.
00100 
00101 } ;
00102 
00103 #endif

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