105 lines
3.8 KiB
C++
105 lines
3.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * 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.hh,v 1.2 2003/11/02 14:01:21 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-06-00-patch-01 $
|
|
//
|
|
// class G4BlockingList
|
|
//
|
|
// Class description:
|
|
//
|
|
// A utility class responsible for (efficiently) maintaining a List
|
|
// of blocked volume numbers, with rapid `reset' operations.
|
|
//
|
|
// Notes:
|
|
//
|
|
// Implemented via a ValVector of ints: a tag value is used to set
|
|
// the indices of blocked volumes. On reset the current tag value is
|
|
// increased, so that the ValVector must only be zeroed when the
|
|
// numerical range of the tag is used.
|
|
|
|
// History:
|
|
//
|
|
// 24.7.96 P.Kent Separated from G4Navigator
|
|
// --------------------------------------------------------------------
|
|
#ifndef G4BLOCKINGLIST_HH
|
|
#define G4BLOCKINGLIST_HH
|
|
|
|
#include "G4Types.hh"
|
|
#include <vector>
|
|
|
|
const G4int kBlockingListMaxDefault = 500; // Block up to 511 daughters
|
|
// initially
|
|
const G4int kBlockingListStride = 128;
|
|
const G4int kBlockTagNoMax = 2147483647; // 2^31-1 maximum tag no may reach
|
|
|
|
class G4BlockingList
|
|
{
|
|
public: // with description
|
|
|
|
G4BlockingList(G4int maxDefault=kBlockingListMaxDefault,
|
|
G4int stride=kBlockingListStride);
|
|
// Create empty blocking List of default size and `stride' resize count.
|
|
|
|
~G4BlockingList();
|
|
// Destructor. No operations.
|
|
|
|
void Reset();
|
|
// Efficiently `Reset' the blocking List, so that no volumes
|
|
// are blocked [Advance tag number and only fully clear List
|
|
// if tag max reached]
|
|
|
|
void FullyReset();
|
|
// Clear the blocking List and reset tag value [slow].
|
|
|
|
void Enlarge(const G4int nv);
|
|
// Enlarges blocking List if current size < nv, in units of stride.
|
|
// Clears the new part of the List.
|
|
|
|
G4int Length() const;
|
|
// Returns the current length of the List. Note a length of 16
|
|
// means volumes of indices between 0 & 15 inclusive may be blocked.
|
|
|
|
void BlockVolume(const G4int v);
|
|
// Block the volume number v.
|
|
// Requires: 0<=v<Length().
|
|
|
|
G4bool IsBlocked(const G4int v) const;
|
|
// Return true if the volume number v is blocked, else false.
|
|
// Requires: 0<=v<Length().
|
|
|
|
private:
|
|
|
|
G4int fBlockTagNo, fStride;
|
|
// Current blocked volume tag number.
|
|
|
|
std::vector<G4int> fBlockingList;
|
|
// Blocked volumes: Elements with indices
|
|
// corresponding to blocked volume set to fBlockTagNo.
|
|
|
|
};
|
|
|
|
#include "G4BlockingList.icc"
|
|
|
|
#endif
|