240 lines
6.8 KiB
C++
240 lines
6.8 KiB
C++
// 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: G4SmartVoxelHeader.hh,v 1.1 1999/01/07 16:07:16 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-00-01 $
|
|
//
|
|
// class G4SmartVoxelHeader
|
|
//
|
|
// Represents set of voxels, created by a single axis of virtual division.
|
|
// Contains the individual voxels, which are potentially further divided
|
|
// along different axes
|
|
//
|
|
// Member functions:
|
|
//
|
|
// G4SmartVoxelHeader(G4LogicalVolume* pVolume,const G4int pSlice=0)
|
|
// Constructor for topmost header, to begin voxel construction at a
|
|
// given logical volume. pSlice is used to set max and min equivalent slice
|
|
// nos for the header - they apply to the level of the header, not its nodes.
|
|
//
|
|
// ~G4SmartVoxelHeader()
|
|
// Delete all referenced nodes [but *not* referenced physical volumes]
|
|
//
|
|
// EAxis GetAxis() const
|
|
// Return the current division axis
|
|
//
|
|
// G4double GetMaxExtent() const
|
|
// Return the maximum coordinate limit along the current axis
|
|
// G4double GetMinExtent() const
|
|
// Return the minimum coordinate limit along the current axis
|
|
//
|
|
// G4int GetNoSlices() const
|
|
// Return the no of slices along the current axis
|
|
// G4SmartVoxelProxy* GetSlice(const G4int n) const
|
|
// Return ptr to the proxy for the nth slice (numbering from 0, no
|
|
// bounds checking)
|
|
//
|
|
//
|
|
// Private functions:
|
|
//
|
|
// G4SmartVoxelHeader(G4LogicalVolume* pVolume,G4VoxelLimits& pLimits,
|
|
// RWTValOrderedVector<G4int>& pCandidates,
|
|
// const G4int pSlice=0)
|
|
// Build and refine voxels between specified limits, considering only
|
|
// the physical volumes numbered `pCandidates'. pSlice is used to set max
|
|
// and min equivalent slice nos for the header - they apply to the level
|
|
// of the header, not its nodes.
|
|
//
|
|
|
|
// extra functions...
|
|
|
|
// Member data:
|
|
//
|
|
// EAxis faxis
|
|
// The (cartesian) slicing/division axis
|
|
// G4double fmaxExtent
|
|
// G4double fminExtent
|
|
// Minimum and maximum coordiantes along the axis
|
|
// RWTPtrOrderedVector<G4SmartVoxelProxy> fslices
|
|
// The slices along the axis
|
|
//
|
|
// G4int fminEquivalent
|
|
// G4int fmaxEquivalent
|
|
// Minimum and maximum equivalent slice nos. [Applies to the level of
|
|
// the header, not its nodes]
|
|
//
|
|
// History:
|
|
// 13.07.95 P.Kent Initial version
|
|
|
|
#ifndef G4SMARTVOXELHEADER_HH
|
|
#define G4SMARTVOXELHEADER_HH
|
|
|
|
#include "globals.hh"
|
|
#include "geomdefs.hh"
|
|
#include "voxeldefs.hh"
|
|
|
|
#include "G4SmartVoxelProxy.hh"
|
|
#include "G4SmartVoxelNode.hh"
|
|
|
|
#include "G4ios.hh"
|
|
|
|
#include <rw/tvvector.h>
|
|
#include <rw/tpordvec.h>
|
|
#include <rw/tvordvec.h>
|
|
// Forward declarations
|
|
class G4LogicalVolume;
|
|
class G4VoxelLimits;
|
|
class G4VPhysicalVolume;
|
|
|
|
|
|
typedef RWTPtrOrderedVector<G4SmartVoxelProxy> G4ProxyVector;
|
|
typedef RWTPtrOrderedVector<G4SmartVoxelNode> G4NodeVector;
|
|
typedef RWTValOrderedVector<G4int> G4VolumeNosVector;
|
|
typedef RWTValVector<G4double> G4VolumeExtentVector;
|
|
|
|
class G4SmartVoxelHeader
|
|
{
|
|
public:
|
|
// Constructor for topmost header, to begin voxel construction at a
|
|
// given logical volume
|
|
G4SmartVoxelHeader(G4LogicalVolume* pVolume,const G4int pSlice=0);
|
|
|
|
~G4SmartVoxelHeader();
|
|
|
|
// Access functions for min/max equivalent slices (nodes & headers)
|
|
G4int GetMaxEquivalentSliceNo() const
|
|
{
|
|
return fmaxEquivalent;
|
|
}
|
|
void SetMaxEquivalentSliceNo(const G4int pMax)
|
|
{
|
|
fmaxEquivalent=pMax;
|
|
}
|
|
G4int GetMinEquivalentSliceNo() const
|
|
{
|
|
return fminEquivalent;
|
|
}
|
|
void SetMinEquivalentSliceNo(const G4int pMin)
|
|
{
|
|
fminEquivalent=pMin;
|
|
}
|
|
|
|
// Axis enquiry
|
|
EAxis GetAxis() const
|
|
{
|
|
return faxis;
|
|
}
|
|
|
|
// Extent enquiry functions
|
|
G4double GetMaxExtent() const
|
|
{
|
|
return fmaxExtent;
|
|
}
|
|
|
|
G4double GetMinExtent() const
|
|
{
|
|
return fminExtent;
|
|
}
|
|
|
|
// Slice enquiry functions
|
|
G4int GetNoSlices() const
|
|
{
|
|
return fslices.entries();
|
|
}
|
|
|
|
// Slice access
|
|
G4SmartVoxelProxy* GetSlice(const G4int n) const
|
|
{
|
|
return fslices(n);
|
|
}
|
|
|
|
// True if all slices equal (after collection)
|
|
G4bool AllSlicesEqual() const;
|
|
|
|
G4bool operator == (const G4SmartVoxelHeader& pHead) const;
|
|
|
|
friend ostream& operator << (ostream&s, const G4SmartVoxelHeader& h);
|
|
|
|
protected:
|
|
|
|
G4SmartVoxelHeader(G4LogicalVolume* pVolume,
|
|
const G4VoxelLimits& pLimits,
|
|
const G4VolumeNosVector* pCandidates,
|
|
const G4int pSlice=0);
|
|
|
|
// `Worker' / operation functions:
|
|
|
|
|
|
// Build and refine voxels for daughters of specified volume which
|
|
// DOES NOT contain a REPLICATED daughter
|
|
void BuildVoxels(G4LogicalVolume* pVolume);
|
|
|
|
// Build voxels for specified volume containing a single
|
|
// replicated volume
|
|
void BuildReplicaVoxels(G4LogicalVolume* pVolume);
|
|
|
|
// Construct nodes in simple consuming case
|
|
void BuildConsumedNodes(const G4int nReplicas);
|
|
|
|
// Build and refine voxels between specified limits, considering only
|
|
// the physical volumes `pCandidates'. Main entry point for "construction"
|
|
// Hardwired to stop at third level of refinement, using the xyz cartesian
|
|
// axes in any order
|
|
void BuildVoxelsWithinLimits(G4LogicalVolume* pVolume,
|
|
G4VoxelLimits pLimits,
|
|
const G4VolumeNosVector* pCandidates);
|
|
|
|
|
|
// Calculate and Store the minimum and maximum equivalent neighbour
|
|
// values for all slices
|
|
void BuildEquivalentSliceNos();
|
|
|
|
// Collect common nodes, deleting all but one to save memory, and adjusting
|
|
// stored slice ptrs appropriately.
|
|
void CollectEquivalentNodes();
|
|
|
|
// Collect common headers, deleting all but one to save memory, and adjusting
|
|
// stored slice ptrs appropriately.
|
|
void CollectEquivalentHeaders();
|
|
|
|
|
|
// Build the nodes corresponding to the specified axis, within
|
|
// the specified limits, considering the daughters numbered pCandidates
|
|
// of the logical volume
|
|
G4ProxyVector* BuildNodes(G4LogicalVolume* pVolume,
|
|
G4VoxelLimits pLimits,
|
|
const G4VolumeNosVector* pCandidates,
|
|
EAxis pAxis);
|
|
|
|
// Calculate a "quality value" for the specified vector of voxels
|
|
// The value returned should be >0 and such that the smaller the
|
|
// number the higher the quality of the slice.
|
|
//
|
|
// pSlice must consist of smartvoxelnodeproxies only
|
|
G4double CalculateQuality(G4ProxyVector *pSlice);
|
|
|
|
// Examined each contained node, refine (create a replacement additional
|
|
// dimension of voxels) when there is more than one voxel in the slice
|
|
void RefineNodes(G4LogicalVolume* pVolume,G4VoxelLimits pLimits);
|
|
|
|
// Min and max equivalent slice nos for previous level
|
|
G4int fminEquivalent;
|
|
G4int fmaxEquivalent;
|
|
|
|
// Axis for slices
|
|
EAxis faxis;
|
|
// Max and min coordinate along faxis
|
|
G4double fmaxExtent;
|
|
G4double fminExtent;
|
|
// Slices along axis
|
|
G4ProxyVector fslices;
|
|
};
|
|
#endif
|
|
|
|
|
|
|