Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4SmartVoxelProxy.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4SmartVoxelProxy
27//
28// Class description:
29//
30// Class for proxying smart voxels. The class represents either a header
31// (in turn refering to more VoxelProxies) or a node. If created as a node,
32// calls to GetHeader cause an exception, and likewise GetNode when a header.
33//
34// Note that the proxy does NOT gain deletion responsibility for proxied
35// objects.
36
37// Author: Paul Kent (CERN), 12.07.1995 - Initial version
38// --------------------------------------------------------------------
39#ifndef G4SMARTVOXELPROXY_HH
40#define G4SMARTVOXELPROXY_HH
41
42#include <assert.h>
43
44#include "geomwdefs.hh"
45#include "G4Types.hh"
46
49
50/**
51 * @brief G4SmartVoxelProxy is a class for proxying smart voxels. The class
52 * represents either a header (in turn referring to more VoxelProxies) or a
53 * node. If created as a node, calls to GetHeader() cause an exception, and
54 * likewise GetNode() when a header.
55 */
56
58{
59 public:
60
61 /**
62 * Constructs a Proxy for the specified header.
63 * @param[in] pHeader Pointer to the voxel header.
64 */
66
67 /**
68 * Constructs a Proxy for the specified node.
69 * @param[in] pNode Pointer to the voxel node.
70 */
72
73 /**
74 * Default destructor. Not responsible for proxied objects.
75 */
76 ~G4SmartVoxelProxy() = default;
77
78 /**
79 * Equality operator. True when objects share the same address.
80 */
81 inline G4bool operator == (const G4SmartVoxelProxy& v) const;
82
83 /**
84 * Returns true if proxying for a header, else false.
85 */
86 inline G4bool IsHeader() const;
87
88 /**
89 * Returns true if proxying for a node, else false.
90 */
91 inline G4bool IsNode() const;
92
93 /**
94 * Returns the pointer to the proxied node, else throws a G4Exception.
95 */
96 inline G4SmartVoxelNode* GetNode() const;
97
98 /**
99 * Returns the pointer to the proxied header, else throws a G4Exception.
100 */
102
103 private:
104
105 G4SmartVoxelHeader* fHeader = nullptr;
106 G4SmartVoxelNode* fNode = nullptr;
107};
108
109#include "G4SmartVoxelProxy.icc"
110
111#endif
bool G4bool
Definition G4Types.hh:86
G4SmartVoxelHeader represents a set of voxels, created by a single axis of virtual division....
G4SmartVoxelNode defines a node in the smart voxel hierarchy, i.e. a 'slice' of space along a given a...
G4bool operator==(const G4SmartVoxelProxy &v) const
~G4SmartVoxelProxy()=default
G4bool IsNode() const
G4SmartVoxelProxy(G4SmartVoxelHeader *pHeader)
G4SmartVoxelProxy(G4SmartVoxelNode *pNode)
G4SmartVoxelNode * GetNode() const
G4SmartVoxelHeader * GetHeader() const
G4bool IsHeader() const