Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // >> 26 // >> 27 // $Id: G4SmartVoxelHeader.icc,v 1.6 2006/06/29 18:32:09 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-09-01-patch-03 $ >> 29 // >> 30 // 26 // G4SmartVoxelHeader Inline implementation 31 // G4SmartVoxelHeader Inline implementation 27 // 32 // 28 // ------------------------------------------- 33 // -------------------------------------------------------------------- 29 34 30 inline 35 inline 31 G4int G4SmartVoxelHeader::GetMaxEquivalentSlic 36 G4int G4SmartVoxelHeader::GetMaxEquivalentSliceNo() const 32 { 37 { 33 return fmaxEquivalent; 38 return fmaxEquivalent; 34 } 39 } 35 40 36 inline 41 inline 37 void G4SmartVoxelHeader::SetMaxEquivalentSlice 42 void G4SmartVoxelHeader::SetMaxEquivalentSliceNo(G4int pMax) 38 { 43 { 39 fmaxEquivalent = pMax; << 44 fmaxEquivalent=pMax; 40 } 45 } 41 46 42 inline 47 inline 43 G4int G4SmartVoxelHeader::GetMinEquivalentSlic 48 G4int G4SmartVoxelHeader::GetMinEquivalentSliceNo() const 44 { 49 { 45 return fminEquivalent; 50 return fminEquivalent; 46 } 51 } 47 52 48 inline 53 inline 49 void G4SmartVoxelHeader::SetMinEquivalentSlice 54 void G4SmartVoxelHeader::SetMinEquivalentSliceNo(G4int pMin) 50 { 55 { 51 fminEquivalent = pMin; << 56 fminEquivalent=pMin; 52 } 57 } 53 58 54 inline 59 inline 55 EAxis G4SmartVoxelHeader::GetAxis() const 60 EAxis G4SmartVoxelHeader::GetAxis() const 56 { 61 { 57 return faxis; 62 return faxis; 58 } 63 } 59 64 60 inline 65 inline 61 EAxis G4SmartVoxelHeader::GetParamAxis() const 66 EAxis G4SmartVoxelHeader::GetParamAxis() const 62 { 67 { 63 return fparamAxis; 68 return fparamAxis; 64 } 69 } 65 70 66 inline 71 inline 67 G4double G4SmartVoxelHeader::GetMaxExtent() co 72 G4double G4SmartVoxelHeader::GetMaxExtent() const 68 { 73 { 69 return fmaxExtent; 74 return fmaxExtent; 70 } 75 } 71 76 72 inline 77 inline 73 G4double G4SmartVoxelHeader::GetMinExtent() co 78 G4double G4SmartVoxelHeader::GetMinExtent() const 74 { 79 { 75 return fminExtent; 80 return fminExtent; 76 } 81 } 77 82 78 inline 83 inline 79 std::size_t G4SmartVoxelHeader::GetNoSlices() << 84 G4int G4SmartVoxelHeader::GetNoSlices() const 80 { 85 { 81 return fslices.size(); 86 return fslices.size(); 82 } 87 } 83 88 84 inline 89 inline 85 G4SmartVoxelProxy* G4SmartVoxelHeader::GetSlic << 90 G4SmartVoxelProxy* G4SmartVoxelHeader::GetSlice(G4int n) const 86 { 91 { 87 return fslices[n]; 92 return fslices[n]; 88 } 93 } 89 94