Files
geant4/source/persistency/digits+hits/digits/include/G4PVDigit.ddl
T
2016-06-08 15:55:53 +02:00

45 lines
1.0 KiB
SQL

// 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: G4PVDigit.ddl,v 1.3 2000/12/15 08:04:13 morita Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
// Class Description:
// This is a persistent version of abstract base class of a detector
// digit. User should inherit from this class for his/her sensitive
// detector digit, to be added to the correponding digits collection.
//
#ifndef G4PVDigit_h
#define G4PVDigit_h 1
#include "G4PersistentSchema.hh"
#include "G4VDigi.hh"
#include "HepODBMS/odbms/HepODBMS.h"
class G4PVDigit
: public HepPersObj, public G4VDigi
{
public: // with description
G4PVDigit();
// Constructor.
virtual ~G4PVDigit();
// (Virtual) destructor.
public:
int operator==(const G4PVDigit &right) const;
virtual void Draw();
virtual void Print();
};
#endif