97 lines
3.0 KiB
SQL
97 lines
3.0 KiB
SQL
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4PTrap.ddl,v 1.5.2.1 2001/06/28 19:11:31 gunter Exp $
|
|
// GEANT4 tag $Name: $
|
|
//
|
|
// class G4PTrap
|
|
//
|
|
// History:
|
|
// 19.06.98 A.Kimura Converted G4Trap.hh
|
|
|
|
#ifndef G4PTrap_DDL
|
|
#define G4PTrap_DDL
|
|
|
|
#include "G4PersistentSchema.hh"
|
|
#include "G4PCSGSolid.hh"
|
|
|
|
class G4VSolid;
|
|
class G4Trap;
|
|
|
|
#include "G4ThreeVector.hh"
|
|
|
|
struct PTrapSidePlane
|
|
{
|
|
G4double a,b,c,d; // Normal unit vector (a,b,c) and offset (d)
|
|
// => Ax+By+Cz+D=0
|
|
};
|
|
|
|
class G4PTrap : public G4PCSGSolid {
|
|
|
|
public:
|
|
|
|
// The most general constructor for G4Trap
|
|
|
|
G4PTrap(const G4Trap* theTrap);
|
|
virtual ~G4PTrap() ;
|
|
|
|
// Access functions
|
|
G4VSolid* MakeTransientObject() const;
|
|
|
|
void SetAllParameters ( G4double pDz,
|
|
G4double pTheta,
|
|
G4double pPhi,
|
|
G4double pDy1,
|
|
G4double pDx1,
|
|
G4double pDx2,
|
|
G4double pAlp1,
|
|
G4double pDy2,
|
|
G4double pDx3,
|
|
G4double pDx4,
|
|
G4double pAlp2);
|
|
|
|
// Naming method (pseudo-RTTI : run-time type identification
|
|
virtual G4GeometryType GetEntityType() const { return G4String("G4Trap"); }
|
|
|
|
protected:
|
|
|
|
G4bool MakePlanes();
|
|
G4bool MakePlane( const G4ThreeVector& p1,
|
|
const G4ThreeVector& p2,
|
|
const G4ThreeVector& p3,
|
|
const G4ThreeVector& p4,
|
|
PTrapSidePlane& plane ) ;
|
|
|
|
private:
|
|
|
|
G4double fDz,fTthetaCphi,fTthetaSphi;
|
|
G4double fDy1,fDx1,fDx2,fTalpha1;
|
|
G4double fDy2,fDx3,fDx4,fTalpha2;
|
|
PTrapSidePlane fPlanes[4];
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
// **************************** End of G4Trap.hh *****************************************
|