33 lines
964 B
C++
33 lines
964 B
C++
// 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: G3toG4RotationMatrix.hh,v 1.3 1999/12/09 01:27:47 lockman Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
#ifndef G3TOG4ROTATION_HH
|
|
#define G3TOG4ROTATION_HH 1
|
|
|
|
#include "G4RotationMatrix.hh"
|
|
#include "globals.hh"
|
|
|
|
class G3toG4RotationMatrix : public G4RotationMatrix
|
|
{
|
|
public:
|
|
G3toG4RotationMatrix();
|
|
|
|
void SetRotationMatrixByCol(const G4ThreeVector& Col1,
|
|
const G4ThreeVector& Col2,
|
|
const G4ThreeVector& Col3);
|
|
|
|
void SetRotationMatrixByRow(const G4ThreeVector& Row1,
|
|
const G4ThreeVector& Row2,
|
|
const G4ThreeVector& Row3);
|
|
|
|
~G3toG4RotationMatrix();
|
|
};
|
|
#endif
|