Import Geant4 0.0.0 source tree
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
// 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: G4SurfaceList.hh,v 2.2 1998/10/20 16:31:35 broglia Exp $
|
||||
// GEANT4 tag $Name: geant4-00 $
|
||||
//
|
||||
#ifndef __G4SurfaceList_h
|
||||
#define __G4SurfaceList_h 1
|
||||
|
||||
#include "G4Surface.hh"
|
||||
|
||||
class G4SurfaceList
|
||||
{
|
||||
public:
|
||||
|
||||
G4SurfaceList();
|
||||
~G4SurfaceList();
|
||||
|
||||
int number_of_elements;
|
||||
|
||||
G4Surface* first;
|
||||
G4Surface* next;
|
||||
G4Surface* last;
|
||||
G4Surface* temp;
|
||||
G4Surface* index;
|
||||
|
||||
void MoveToFirst(G4Surface *srf);
|
||||
void AddSurface(G4Surface *srf);
|
||||
|
||||
G4Surface* GetSurface();
|
||||
G4Surface* GetSurface(int number);
|
||||
G4Surface* GetLastSurface();
|
||||
|
||||
void RemoveSurface(G4Surface* srf);
|
||||
void RemovePointer();
|
||||
|
||||
void MoveToFirst();
|
||||
void Step();
|
||||
|
||||
void EmptyList();
|
||||
void G4SortList();
|
||||
|
||||
void QuickG4Sort(G4Surface**, int, int);
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user