28 lines
636 B
C++
28 lines
636 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: G4BlockingList.cc,v 1.1.10.1 1999/12/07 20:48:42 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
// class G4BlockingList Implementation
|
|
//
|
|
|
|
#include "G4BlockingList.hh"
|
|
|
|
// Clear List and reset tag
|
|
// Fix: Out of line for HP-CC
|
|
void G4BlockingList::FullyReset()
|
|
{
|
|
fBlockTagNo=1;
|
|
for (G4int i=fBlockingList.length()-1;i>=0;i--)
|
|
{
|
|
fBlockingList(i)=0;
|
|
}
|
|
|
|
}
|