56 lines
2.3 KiB
C++
56 lines
2.3 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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: G4Transform3D.hh,v 1.3 2001/07/11 10:00:38 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-07-00-cand-01 $
|
|
//
|
|
#ifndef G4TRANSFORM3D_HH
|
|
#define G4TRANSFORM3D_HH
|
|
|
|
#include "globals.hh"
|
|
#include <CLHEP/Geometry/Transform3D.h>
|
|
|
|
typedef HepTransform3D G4Transform3D;
|
|
|
|
typedef HepRotate3D G4Rotate3D;
|
|
typedef HepRotateX3D G4RotateX3D;
|
|
typedef HepRotateY3D G4RotateY3D;
|
|
typedef HepRotateZ3D G4RotateZ3D;
|
|
|
|
typedef HepTranslate3D G4Translate3D;
|
|
typedef HepTranslateX3D G4TranslateX3D;
|
|
typedef HepTranslateY3D G4TranslateY3D;
|
|
typedef HepTranslateZ3D G4TranslateZ3D;
|
|
|
|
typedef HepReflect3D G4Reflect3D;
|
|
typedef HepReflectX3D G4ReflectX3D;
|
|
typedef HepReflectY3D G4ReflectY3D;
|
|
typedef HepReflectZ3D G4ReflectZ3D;
|
|
|
|
typedef HepScale3D G4Scale3D;
|
|
typedef HepScaleX3D G4ScaleX3D;
|
|
typedef HepScaleY3D G4ScaleY3D;
|
|
typedef HepScaleZ3D G4ScaleZ3D;
|
|
|
|
#endif /* G4TRANSFORM3D_HH */
|