45 lines
1.3 KiB
C++
45 lines
1.3 KiB
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: G4ParticleMomentum.hh,v 1.4 1999/12/15 14:51:11 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
//
|
|
// ------------------------------------------------------------
|
|
// GEANT 4 class header file
|
|
//
|
|
// For information related to this code contact:
|
|
// CERN, CN Division, ASD group
|
|
// History: first implementation, based on object model of
|
|
// 2nd December 1995, G.Cosmo
|
|
// ------------------------------------------------------------
|
|
//
|
|
// Class Description
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
// G4ParticleMomentum is "momentum direction" not "momentum vector"
|
|
// The name is miss-leading so you should not use G4ParticleMomentum
|
|
// and you are recommended to use G4ThreeVector instead
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
//
|
|
|
|
#ifndef G4ParticleMomentum_h
|
|
#define G4ParticleMomentum_h 1
|
|
|
|
#include "G4ThreeVector.hh"
|
|
|
|
typedef G4ThreeVector G4ParticleMomentum;
|
|
// Is a three vector containing the momentum direction.
|
|
// The momentum components are in global reference system.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|