Import Geant4 3.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:55:53 +02:00
parent e7d7193284
commit cfcb558cfe
3050 changed files with 91703 additions and 48310 deletions
@@ -5,9 +5,19 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4UVHit.hh,v 1.3 2000/02/25 15:59:45 gcosmo Exp $
// GEANT4 tag $Name: geant4-02-00 $
// $Id: G4UVHit.hh,v 1.5 2000/11/08 14:22:05 gcosmo Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
// ----------------------------------------------------------------------
// Class G4UVHit
//
// Class Description:
//
// Utility class for knots.
// Authors: J.Sulkimo, P.Urban.
// Revisions by: L.Broglia, G.Cosmo.
// ----------------------------------------------------------------------
#ifndef __G4UV_Hit
#define __G4UV_Hit
@@ -16,12 +26,18 @@
class G4UVHit
{
public:
G4UVHit(){u=-1;v=-1; next=0;}
G4UVHit(G4double u_hit, G4double v_hit){u = u_hit; v = v_hit; next=0;}
~G4UVHit(){}
G4UVHit() {u=-1; v=-1; next=0;}
G4UVHit(G4double u_hit, G4double v_hit) {u = u_hit; v = v_hit; next=0;}
~G4UVHit() {}
public:
G4UVHit * next;
void SetNext(G4UVHit* n) { next = n; }
G4UVHit* GetNext() { return next; }
G4double GetU() const { return u; }
G4double GetV() const { return v; }
private:
G4UVHit* next;
G4double u, v;
};