ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4SmartVoxelProxy.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4SmartVoxelProxy.hh
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 // 12.07.95, P.Kent - Initial version
38 // --------------------------------------------------------------------
39 #ifndef G4SMARTVOXELPROXY_HH
40 #define G4SMARTVOXELPROXY_HH
41 
42 #include "G4Types.hh"
43 #include <assert.h>
44 
45 class G4SmartVoxelNode;
46 class G4SmartVoxelHeader;
47 
49 {
50 
51  public: // with description
52 
54  : fHeader(pHeader) {}
55  // Proxy for the specified header.
56 
58  : fNode(pNode) {}
59  // Proxy for the specified node.
60 
62  // Destructor - do nothing. Not responsible for proxied objects.
63 
64  G4bool IsHeader() const;
65  // Return true if proxying for a header, else false.
66 
67  G4bool IsNode() const;
68  // Return true if proxying for a node, else false.
69 
70  G4SmartVoxelNode* GetNode() const;
71  // Return ptr to proxied node, else call G4Exception.
72 
74  // Return ptr to proxied header, else call G4Exception
75 
76  G4bool operator == (const G4SmartVoxelProxy& v) const;
77  // Equality operator.
78  // True when objects share same address.
79 
80  private:
81 
83  G4SmartVoxelNode* fNode = nullptr;
84 };
85 
86 #include "G4SmartVoxelProxy.icc"
87 
88 #endif