source: trunk/source/geometry/solids/specific/include/G4TwistedBox.hh@ 1316

Last change on this file since 1316 was 1228, checked in by garnier, 16 years ago

update geant4.9.3 tag

File size: 3.4 KB
RevLine 
[831]1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id: G4TwistedBox.hh,v 1.10 2006/06/29 18:48:00 gunter Exp $
[1228]28// GEANT4 tag $Name: geant4-09-03 $
[831]29//
30//
31// --------------------------------------------------------------------
32// GEANT 4 class header file
33//
34//
35// G4TwistedBox
36//
37// Class description:
38//
39// A G4TwistedBox is a twisted cuboid of given half lengths pDx,pDy,pDz
40// and twist angle pPhiTwist.
41// The Box is centred on the origin with sides parallel to the x/y/z axes.
42//
43// Member Data:
44//
45// pDx Half-length along x axis
46// pDy Half-length along y asis
47// pDz Half-length along z axis
48// pPhiTwist Twist angle
49
50// Author:
51//
52// 27-Oct-2004 - O.Link (Oliver.Link@cern.ch)
53//
54// --------------------------------------------------------------------
55#ifndef __G4TWISTEDBOX__
56#define __G4TWISTEDBOX__
57
58#include "G4VTwistedFaceted.hh"
59
60class G4TwistedBox : public G4VTwistedFaceted
61{
62 public: // with description
63
64 G4TwistedBox(const G4String& pName,
65 G4double pPhiTwist,
66 G4double pDx,
67 G4double pDy,
68 G4double pDz );
69
70 virtual ~G4TwistedBox();
71
72 // accessors
73
74 inline G4double GetXHalfLength() const { return GetDx1() ; }
75 inline G4double GetYHalfLength() const { return GetDy1() ; }
76 inline G4double GetZHalfLength() const { return GetDz() ; }
77 inline G4double GetPhiTwist() const { return GetTwistAngle() ; }
78
79 G4GeometryType GetEntityType() const;
80
81 std::ostream& StreamInfo(std::ostream& os) const;
82
83 public: // without description
84
85 G4TwistedBox(__void__&);
86 // Fake default constructor for usage restricted to direct object
87 // persistency for clients requiring preallocation of memory for
88 // persistifiable objects.
89};
90
91#endif
Note: See TracBrowser for help on using the repository browser.