Import Geant4 2.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:42:07 +02:00
parent 103bda00c8
commit e7d7193284
3106 changed files with 171117 additions and 90550 deletions
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4UVHit.hh,v 1.2 1999/12/15 14:49:58 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// $Id: G4UVHit.hh,v 1.3 2000/02/25 15:59:45 gcosmo Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
#ifndef __G4UV_Hit
#define __G4UV_Hit
@@ -15,12 +15,14 @@
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(){}
public:
G4UVHit * next;
int sub;
G4double u, v;
G4UVHit(){u=-1;next=this;}
G4UVHit(G4double u_hit, G4double v_hit){u = u_hit; v = v_hit;}
};
#endif