Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** >> 22 // >> 23 // >> 24 // $Id: G4DrawVoxels.hh,v 1.2 2003/11/03 17:15:20 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-06-00 $ >> 26 // 25 // 27 // 26 // class G4DrawVoxels 28 // class G4DrawVoxels 27 // 29 // 28 // Class description: 30 // Class description: 29 // 31 // 30 // Utility class for the visualization of voxe 32 // Utility class for the visualization of voxels in the detector geometry. 31 // Define G4DrawVoxelsDebug in the environment 33 // Define G4DrawVoxelsDebug in the environment at compilation for debugging 32 // information printed to G4cout. 34 // information printed to G4cout. 33 35 >> 36 // History: >> 37 // 03/08/1999 The G4VisAttributes have been made member data for lifetime >> 38 // reasons / visualisation - L.G (ask John Allison for further >> 39 // explanation). 34 // 29/07/1999 First comitted version - L.G. 40 // 29/07/1999 First comitted version - L.G. 35 // ------------------------------------------- 41 // -------------------------------------------------------------------- 36 #ifndef G4DrawVoxels_HH 42 #ifndef G4DrawVoxels_HH 37 #define G4DrawVoxels_HH 43 #define G4DrawVoxels_HH 38 44 39 #include "G4VisAttributes.hh" 45 #include "G4VisAttributes.hh" 40 #include "G4VoxelLimits.hh" 46 #include "G4VoxelLimits.hh" 41 #include "G4PlacedPolyhedron.hh" 47 #include "G4PlacedPolyhedron.hh" 42 48 43 class G4SmartVoxelHeader; 49 class G4SmartVoxelHeader; 44 class G4LogicalVolume; 50 class G4LogicalVolume; 45 51 46 // ******************************************* 52 // *********************************************************************** 47 53 48 class G4DrawVoxels 54 class G4DrawVoxels 49 { 55 { 50 public: // with description 56 public: // with description 51 57 52 G4DrawVoxels(); 58 G4DrawVoxels(); 53 // Constructor. It initialises the membe 59 // Constructor. It initialises the members data to default colors 54 // Copy constructor and assignment opera 60 // Copy constructor and assignment operator not supported (array 55 // fvoxelcolours ...). 61 // fvoxelcolours ...). 56 62 57 ~G4DrawVoxels() = default; << 63 ~G4DrawVoxels(); 58 // Destructor NOT virtual. Not a base cl 64 // Destructor NOT virtual. Not a base class. 59 65 60 void DrawVoxels(const G4LogicalVolume* lv) 66 void DrawVoxels(const G4LogicalVolume* lv) const; 61 G4PlacedPolyhedronList* CreatePlacedPolyhe 67 G4PlacedPolyhedronList* CreatePlacedPolyhedra(const G4LogicalVolume*) const; 62 68 63 void SetVoxelsVisAttributes(G4VisAttribute 69 void SetVoxelsVisAttributes(G4VisAttributes&, 64 G4VisAttribute 70 G4VisAttributes&, 65 G4VisAttribute 71 G4VisAttributes&); 66 void SetBoundingBoxVisAttributes(G4VisAttr 72 void SetBoundingBoxVisAttributes(G4VisAttributes&); 67 73 68 private: 74 private: 69 << 75 >> 76 // Member data >> 77 G4VisAttributes fVoxelsVisAttributes[3]; >> 78 G4VisAttributes fBoundingBoxVisAttributes; >> 79 70 void ComputeVoxelPolyhedra(const G4Logical 80 void ComputeVoxelPolyhedra(const G4LogicalVolume*, 71 const G4SmartVo 81 const G4SmartVoxelHeader*, 72 G4VoxelLi 82 G4VoxelLimits&, 73 G4PlacedP 83 G4PlacedPolyhedronList*) const; 74 84 75 G4DrawVoxels(const G4DrawVoxels&) = delete << 85 // Copy constructor Assignment operator not supported 76 G4DrawVoxels operator=(const G4DrawVoxels& << 86 // (array fvoxelcolours ...) 77 // Copy constructor and assignment opera << 87 G4DrawVoxels(const G4DrawVoxels&); 78 << 88 G4DrawVoxels operator=(const G4DrawVoxels&); 79 private: << 80 << 81 // Member data << 82 // << 83 G4VisAttributes fVoxelsVisAttributes[3]; << 84 G4VisAttributes fBoundingBoxVisAttributes; << 85 }; 89 }; 86 90 87 #endif 91 #endif 88 92