Files
geant4/source/persistency/digits+hits/hits/include/G4PVHit.ddl
T
2016-06-08 15:09:25 +02:00

36 lines
799 B
Plaintext

// This code implementation is the intellectual property of
// the RD44 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: G4PVHit.ddl,v 1.1 1999/01/07 16:10:44 gunter Exp $
// GEANT4 tag $Name: geant4-00-01 $
// Takashi.Sasaki@kek.jp
#ifndef G4PVHit_h
#define G4PVHit_h 1
#include "globals.hh"
#include "HepODBMS/odbms/HepODBMS.h"
class G4VHit;
class G4PVHit : public HepPersObj
{
public:
G4PVHit();
virtual ~G4PVHit();
int operator==(const G4PVHit &right) const
{
return (this==&right) ? true : false;
};
virtual G4VHit* MakeTransientObject()=0;
};
#endif