Files
geant4/source/geometry/volumes/src/G4BlockingList.cc
T
2016-06-08 15:28:20 +02:00

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;
}
}