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 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G4ModelingParameters.icc,v 1.4 2001/07/11 10:09:21 gunter Exp $ >> 25 // GEANT4 tag $Name: geant4-08-00 $ 27 // 26 // 28 // 27 // 29 // John Allison 31st December 1997. 28 // John Allison 31st December 1997. 30 // Parameters associated with the modeling of 29 // Parameters associated with the modeling of GEANT4 objects. 31 30 32 inline G4bool G4ModelingParameters::IsWarning << 33 return fWarning; << 34 } << 35 << 36 inline const G4VisAttributes* 31 inline const G4VisAttributes* 37 G4ModelingParameters::GetDefaultVisAttributes 32 G4ModelingParameters::GetDefaultVisAttributes () const { 38 return fpDefaultVisAttributes; 33 return fpDefaultVisAttributes; 39 } 34 } 40 35 41 inline G4ModelingParameters::DrawingStyle << 36 inline G4ModelingParameters::RepStyle 42 G4ModelingParameters::GetDrawingStyle () const << 37 G4ModelingParameters::GetRepStyle () const { 43 return fDrawingStyle; << 38 return fRepStyle; 44 } << 45 << 46 inline G4int G4ModelingParameters::GetNumberOf << 47 return fNumberOfCloudPoints; << 48 } 39 } 49 40 50 inline G4bool G4ModelingParameters::IsCulling 41 inline G4bool G4ModelingParameters::IsCulling () const { 51 return fCulling; 42 return fCulling; 52 } 43 } 53 44 54 inline G4bool G4ModelingParameters::IsCullingI 45 inline G4bool G4ModelingParameters::IsCullingInvisible () const { 55 return fCullInvisible; 46 return fCullInvisible; 56 } 47 } 57 48 58 inline G4bool G4ModelingParameters::IsDensityC 49 inline G4bool G4ModelingParameters::IsDensityCulling () const { 59 return fDensityCulling; 50 return fDensityCulling; 60 } 51 } 61 52 62 inline G4double G4ModelingParameters::GetVisib 53 inline G4double G4ModelingParameters::GetVisibleDensity () const { 63 return fVisibleDensity; 54 return fVisibleDensity; 64 } 55 } 65 56 66 inline G4bool G4ModelingParameters::IsCullingC 57 inline G4bool G4ModelingParameters::IsCullingCovered () const { 67 return fCullCovered; 58 return fCullCovered; 68 } 59 } 69 60 70 inline G4int G4ModelingParameters::GetCBDAlgor << 71 return fCBDAlgorithmNumber; << 72 } << 73 << 74 inline const std::vector<G4double>& G4Modeling << 75 return fCBDParameters; << 76 } << 77 << 78 inline G4bool G4ModelingParameters::IsExplode << 79 return fExplodeFactor > 1.; << 80 } << 81 << 82 inline G4double G4ModelingParameters::GetExplo << 83 return fExplodeFactor; << 84 } << 85 << 86 inline const G4Point3D& G4ModelingParameters:: << 87 return fExplodeCentre; << 88 } << 89 << 90 inline G4int G4ModelingParameters::GetNoOfSide 61 inline G4int G4ModelingParameters::GetNoOfSides () const { 91 return fNoOfSides; 62 return fNoOfSides; 92 } 63 } 93 64 94 inline G4DisplacedSolid* G4ModelingParameters: << 65 inline G4bool G4ModelingParameters::IsViewGeom () const { 95 {return fpSectionSolid;} << 66 return fViewGeom; 96 << 97 inline G4ModelingParameters::CutawayMode G4Mod << 98 { return fCutawayMode;} << 99 << 100 inline G4DisplacedSolid* G4ModelingParameters: << 101 {return fpCutawaySolid;} << 102 << 103 inline const G4Event* G4ModelingParameters::Ge << 104 {return fpEvent;} << 105 << 106 inline const std::vector<G4ModelingParameters: << 107 G4ModelingParameters::GetVisAttributesModifier << 108 return fVisAttributesModifiers; << 109 } 67 } 110 68 111 inline G4bool G4ModelingParameters::IsSpecialM << 69 inline G4bool G4ModelingParameters::IsViewHits () const { 112 {return fSpecialMeshRendering;} << 70 return fViewHits; 113 << 71 } 114 inline const std::vector<G4ModelingParameters: << 115 G4ModelingParameters::GetSpecialMeshVolumes() << 116 {return fSpecialMeshVolumes;} << 117 72 118 inline void G4ModelingParameters::SetWarning ( << 73 inline G4bool G4ModelingParameters::IsViewDigis () const { 119 fWarning = value; << 74 return fViewDigis; 120 } 75 } 121 76 122 inline void G4ModelingParameters::SetDefaultVi 77 inline void G4ModelingParameters::SetDefaultVisAttributes 123 (const G4VisAttributes* pDefaultVisAttributes) 78 (const G4VisAttributes* pDefaultVisAttributes) { 124 fpDefaultVisAttributes = pDefaultVisAttribut 79 fpDefaultVisAttributes = pDefaultVisAttributes; 125 } 80 } 126 81 127 inline void 82 inline void 128 G4ModelingParameters::SetDrawingStyle << 83 G4ModelingParameters::SetRepStyle (G4ModelingParameters::RepStyle style) { 129 (G4ModelingParameters::DrawingStyle style) { << 84 fRepStyle = style; 130 fDrawingStyle = style; << 131 } << 132 << 133 inline void G4ModelingParameters::SetNumberOfC << 134 fNumberOfCloudPoints = n; << 135 } 85 } 136 86 137 inline void G4ModelingParameters::SetCulling ( 87 inline void G4ModelingParameters::SetCulling (G4bool value) { 138 fCulling = value; 88 fCulling = value; 139 } 89 } 140 90 141 inline void G4ModelingParameters::SetCullingIn 91 inline void G4ModelingParameters::SetCullingInvisible (G4bool value) { 142 fCullInvisible = value; 92 fCullInvisible = value; 143 } 93 } 144 94 145 inline void G4ModelingParameters::SetDensityCu 95 inline void G4ModelingParameters::SetDensityCulling (G4bool value) { 146 fDensityCulling = value; 96 fDensityCulling = value; 147 } 97 } 148 98 149 inline void G4ModelingParameters::SetCullingCo 99 inline void G4ModelingParameters::SetCullingCovered (G4bool value) { 150 fCullCovered = value; 100 fCullCovered = value; 151 } 101 } 152 102 153 inline void G4ModelingParameters::SetCBDAlgori << 103 inline void G4ModelingParameters::SetViewGeom () { 154 fCBDAlgorithmNumber = n; << 104 fViewGeom = true; 155 } << 156 << 157 inline void G4ModelingParameters::SetCBDParame << 158 fCBDParameters = p; << 159 } 105 } 160 106 161 inline void G4ModelingParameters::SetExplodeFa << 107 inline void G4ModelingParameters::UnsetViewGeom () { 162 fExplodeFactor = explodeFactor; << 108 fViewGeom = false; 163 } 109 } 164 110 165 inline void G4ModelingParameters::SetExplodeCe << 111 inline void G4ModelingParameters::SetViewHits () { 166 (const G4Point3D& explodeCentre) { << 112 fViewHits = true; 167 fExplodeCentre = explodeCentre; << 168 } 113 } 169 114 170 inline void G4ModelingParameters::SetCutawayMo << 115 inline void G4ModelingParameters::UnsetViewHits () { 171 (G4ModelingParameters::CutawayMode cutawayMode << 116 fViewHits = false; 172 fCutawayMode = cutawayMode; << 173 } 117 } 174 118 175 inline void G4ModelingParameters::SetEvent(con << 119 inline void G4ModelingParameters::SetViewDigis () { 176 fpEvent = pEvent; << 120 fViewDigis = true; 177 } 121 } 178 122 179 inline void G4ModelingParameters::SetVisAttrib << 123 inline void G4ModelingParameters::UnsetViewDigis () { 180 (const std::vector<G4ModelingParameters::VisAt << 124 fViewDigis = false; 181 fVisAttributesModifiers = vams; << 182 } 125 } 183 << 184 inline void G4ModelingParameters::SetSpecialMe << 185 {fSpecialMeshRendering = smr;} << 186 << 187 inline void G4ModelingParameters::SetSpecialMe << 188 (const std::vector<G4ModelingParameters::PVNam << 189 {fSpecialMeshVolumes = smvs;} << 190 126