Files
geant4/source/processes/electromagnetic/lowenergy/include/G4VTables.hh
T
2016-06-08 15:28:20 +02:00

62 lines
1.1 KiB
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.
//
// -------------------------------------------------------------------
// GEANT 4 class file
//
// For information related to this code contact:
// CERN, IT Division, ASD group
// CERN, Geneva, Switzerland
//
// File name: G4VTables
//
// Author: Alessandra Forti (Alessandra.Forti@cern.ch)
//
// Creation date: 2 February 1999
//
// Modifications:
//
// -------------------------------------------------------------------
#ifndef G4VTables_hh
#define G4VTables_hh
#include "globals.hh"
#include "G4SecondLevel.hh"
class G4VTables{
public:
// Constructors
G4VTables();
// Destructor
~G4VTables();
// Member Functions
// search the data table in the file
virtual void FillDataTable() = 0;
virtual G4SecondLevel* FillTheTable(G4int nemEl = 0) = 0;
protected:
private:
};
#endif // G4VTables