31 lines
577 B
C++
31 lines
577 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: G4VHit.cc,v 1.1.10.1 1999/12/07 20:47:48 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
|
|
// G4VHit
|
|
#include "G4VHit.hh"
|
|
#include "globals.hh"
|
|
|
|
G4VHit::G4VHit()
|
|
{;}
|
|
|
|
G4VHit::~G4VHit()
|
|
{;}
|
|
|
|
int G4VHit::operator==(const G4VHit &right) const
|
|
{ return false; }
|
|
|
|
void G4VHit::Draw()
|
|
{;}
|
|
|
|
void G4VHit::Print()
|
|
{;}
|
|
|