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 // G4GDMLReadParamvol implementation << 26 // $Id: G4GDMLReadParamvol.cc 77913 2013-11-29 10:59:07Z gcosmo $ 27 // 27 // 28 // Author: Zoltan Torzsok, November 2007 << 28 // class G4GDMLReadParamvol Implementation 29 // ------------------------------------------- << 29 // >> 30 // History: >> 31 // - Created. Zoltan Torzsok, November 2007 >> 32 // ------------------------------------------------------------------------- 30 33 31 #include "G4GDMLReadParamvol.hh" 34 #include "G4GDMLReadParamvol.hh" 32 #include "G4GDMLReadSolids.hh" 35 #include "G4GDMLReadSolids.hh" 33 #include "G4LogicalVolume.hh" 36 #include "G4LogicalVolume.hh" 34 #include "G4PVParameterised.hh" 37 #include "G4PVParameterised.hh" 35 #include "G4PVPlacement.hh" 38 #include "G4PVPlacement.hh" 36 #include "G4VPhysicalVolume.hh" 39 #include "G4VPhysicalVolume.hh" 37 #include "G4UnitsTable.hh" << 38 40 39 // ------------------------------------------- << 40 G4GDMLReadParamvol::G4GDMLReadParamvol() 41 G4GDMLReadParamvol::G4GDMLReadParamvol() 41 : G4GDMLReadSetup() << 42 : G4GDMLReadSetup(), parameterisation(0) 42 { 43 { 43 } 44 } 44 45 45 G4GDMLReadParamvol::~G4GDMLReadParamvol() 46 G4GDMLReadParamvol::~G4GDMLReadParamvol() 46 { 47 { 47 } 48 } 48 49 49 // ------------------------------------------- << 50 void G4GDMLReadParamvol:: 50 void G4GDMLReadParamvol::Box_dimensionsRead( << 51 Box_dimensionsRead( const xercesc::DOMElement* const element, 51 const xercesc::DOMElement* const element, << 52 G4GDMLParameterisation::PARAMETER& parameter ) 52 G4GDMLParameterisation::PARAMETER& parameter << 53 { 53 { << 54 G4double lunit = 1.0; 54 G4double lunit = 1.0; << 55 55 << 56 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); 56 const xercesc::DOMNamedNodeMap* const attrib << 57 XMLSize_t attributeCount = attributes->getLength(); 57 XMLSize_t attributeCount << 58 58 << 59 for (XMLSize_t attribute_index=0; 59 for(XMLSize_t attribute_index = 0; attribute << 60 attribute_index<attributeCount; attribute_index++) 60 ++attribute_index) << 61 { 61 { << 62 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); 62 xercesc::DOMNode* attribute_node = attribu << 63 63 << 64 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) 64 if(attribute_node->getNodeType() != xerces << 65 { continue; } 65 { << 66 66 continue; << 67 const xercesc::DOMAttr* const attribute 67 } << 68 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); 68 << 69 if (!attribute) 69 const xercesc::DOMAttr* const attribute = << 70 { 70 dynamic_cast<xercesc::DOMAttr*>(attribut << 71 G4Exception("G4GDMLReadParamvol::Box_dimensionsRead()", 71 if(attribute == nullptr) << 72 "InvalidRead", FatalException, "No attribute found!"); 72 { << 73 return; 73 G4Exception("G4GDMLReadParamvol::Box_dim << 74 } 74 FatalException, "No attribut << 75 const G4String attName = Transcode(attribute->getName()); 75 return; << 76 const G4String attValue = Transcode(attribute->getValue()); 76 } << 77 77 const G4String attName = Transcode(attrib << 78 if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else 78 const G4String attValue = Transcode(attrib << 79 if (attName=="x") { parameter.dimension[0] = eval.Evaluate(attValue); } else 79 << 80 if (attName=="y") { parameter.dimension[1] = eval.Evaluate(attValue); } else 80 if(attName == "lunit") << 81 if (attName=="z") { parameter.dimension[2] = eval.Evaluate(attValue); } 81 { << 82 } 82 lunit = G4UnitDefinition::GetValueOf(att << 83 83 if(G4UnitDefinition::GetCategory(attValu << 84 parameter.dimension[0] *= 0.5*lunit; 84 { << 85 parameter.dimension[1] *= 0.5*lunit; 85 G4Exception("G4GDMLReadParamvol::Box_d << 86 parameter.dimension[2] *= 0.5*lunit; 86 FatalException, "Invalid u << 87 } 87 } << 88 88 } << 89 void G4GDMLReadParamvol:: 89 else if(attName == "x") << 90 Trd_dimensionsRead( const xercesc::DOMElement* const element, 90 { << 91 G4GDMLParameterisation::PARAMETER& parameter ) 91 parameter.dimension[0] = eval.Evaluate(a << 92 { 92 } << 93 G4double lunit = 1.0; 93 else if(attName == "y") << 94 94 { << 95 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); 95 parameter.dimension[1] = eval.Evaluate(a << 96 XMLSize_t attributeCount = attributes->getLength(); 96 } << 97 97 else if(attName == "z") << 98 for (XMLSize_t attribute_index=0; 98 { << 99 attribute_index<attributeCount; attribute_index++) 99 parameter.dimension[2] = eval.Evaluate(a << 100 { 100 } << 101 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); 101 } << 102 102 << 103 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) 103 parameter.dimension[0] *= 0.5 * lunit; << 104 { continue; } 104 parameter.dimension[1] *= 0.5 * lunit; << 105 105 parameter.dimension[2] *= 0.5 * lunit; << 106 const xercesc::DOMAttr* const attribute 106 } << 107 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); 107 << 108 if (!attribute) 108 // ------------------------------------------- << 109 { 109 void G4GDMLReadParamvol::Trd_dimensionsRead( << 110 G4Exception("G4GDMLReadParamvol::Trd_dimensionsRead()", 110 const xercesc::DOMElement* const element, << 111 "InvalidRead", FatalException, "No attribute found!"); 111 G4GDMLParameterisation::PARAMETER& parameter << 112 return; 112 { << 113 } 113 G4double lunit = 1.0; << 114 const G4String attName = Transcode(attribute->getName()); 114 << 115 const G4String attValue = Transcode(attribute->getValue()); 115 const xercesc::DOMNamedNodeMap* const attrib << 116 116 XMLSize_t attributeCount << 117 if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else 117 << 118 if (attName=="x1") { parameter.dimension[0]=eval.Evaluate(attValue); } else 118 for(XMLSize_t attribute_index = 0; attribute << 119 if (attName=="x2") { parameter.dimension[1]=eval.Evaluate(attValue); } else 119 ++attribute_index) << 120 if (attName=="y1") { parameter.dimension[2]=eval.Evaluate(attValue); } else 120 { << 121 if (attName=="y2") { parameter.dimension[3]=eval.Evaluate(attValue); } else 121 xercesc::DOMNode* attribute_node = attribu << 122 if (attName=="z") { parameter.dimension[4]=eval.Evaluate(attValue); } 122 << 123 } 123 if(attribute_node->getNodeType() != xerces << 124 124 { << 125 parameter.dimension[0] *= 0.5*lunit; 125 continue; << 126 parameter.dimension[1] *= 0.5*lunit; 126 } << 127 parameter.dimension[2] *= 0.5*lunit; 127 << 128 parameter.dimension[3] *= 0.5*lunit; 128 const xercesc::DOMAttr* const attribute = << 129 parameter.dimension[4] *= 0.5*lunit; 129 dynamic_cast<xercesc::DOMAttr*>(attribut << 130 } 130 if(attribute == nullptr) << 131 131 { << 132 void G4GDMLReadParamvol:: 132 G4Exception("G4GDMLReadParamvol::Trd_dim << 133 Trap_dimensionsRead( const xercesc::DOMElement* const element, 133 FatalException, "No attribut << 134 G4GDMLParameterisation::PARAMETER& parameter ) 134 return; << 135 { 135 } << 136 G4double lunit = 1.0; 136 const G4String attName = Transcode(attrib << 137 G4double aunit = 1.0; 137 const G4String attValue = Transcode(attrib << 138 138 << 139 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); 139 if(attName == "lunit") << 140 XMLSize_t attributeCount = attributes->getLength(); 140 { << 141 141 lunit = G4UnitDefinition::GetValueOf(att << 142 for (XMLSize_t attribute_index=0; 142 if(G4UnitDefinition::GetCategory(attValu << 143 attribute_index<attributeCount; attribute_index++) 143 { << 144 { 144 G4Exception("G4GDMLReadParamvol::Trd_d << 145 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); 145 FatalException, "Invalid u << 146 146 } << 147 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) 147 } << 148 { continue; } 148 else if(attName == "x1") << 149 149 { << 150 const xercesc::DOMAttr* const attribute 150 parameter.dimension[0] = eval.Evaluate(a << 151 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); 151 } << 152 if (!attribute) 152 else if(attName == "x2") << 153 { 153 { << 154 G4Exception("G4GDMLReadParamvol::Trap_dimensionsRead()", 154 parameter.dimension[1] = eval.Evaluate(a << 155 "InvalidRead", FatalException, "No attribute found!"); 155 } << 156 return; 156 else if(attName == "y1") << 157 } 157 { << 158 const G4String attName = Transcode(attribute->getName()); 158 parameter.dimension[2] = eval.Evaluate(a << 159 const G4String attValue = Transcode(attribute->getValue()); 159 } << 160 160 else if(attName == "y2") << 161 if (attName=="lunit") 161 { << 162 { lunit = eval.Evaluate(attValue); } else 162 parameter.dimension[3] = eval.Evaluate(a << 163 if (attName=="aunit") 163 } << 164 { aunit = eval.Evaluate(attValue); } else 164 else if(attName == "z") << 165 if (attName=="z") 165 { << 166 { parameter.dimension[0] = eval.Evaluate(attValue); } else 166 parameter.dimension[4] = eval.Evaluate(a << 167 if (attName=="theta") 167 } << 168 { parameter.dimension[1] = eval.Evaluate(attValue); } else 168 } << 169 if (attName=="phi") 169 << 170 { parameter.dimension[2] = eval.Evaluate(attValue); } else 170 parameter.dimension[0] *= 0.5 * lunit; << 171 if (attName=="y1") 171 parameter.dimension[1] *= 0.5 * lunit; << 172 { parameter.dimension[3] = eval.Evaluate(attValue); } else 172 parameter.dimension[2] *= 0.5 * lunit; << 173 if (attName=="x1") 173 parameter.dimension[3] *= 0.5 * lunit; << 174 { parameter.dimension[4] = eval.Evaluate(attValue); } else 174 parameter.dimension[4] *= 0.5 * lunit; << 175 if (attName=="x2") 175 } << 176 { parameter.dimension[5] = eval.Evaluate(attValue); } else 176 << 177 if (attName=="alpha1") 177 // ------------------------------------------- << 178 { parameter.dimension[6] = eval.Evaluate(attValue); } else 178 void G4GDMLReadParamvol::Trap_dimensionsRead( << 179 if (attName=="y2") 179 const xercesc::DOMElement* const element, << 180 { parameter.dimension[7] = eval.Evaluate(attValue); } else 180 G4GDMLParameterisation::PARAMETER& parameter << 181 if (attName=="x3") 181 { << 182 { parameter.dimension[8] = eval.Evaluate(attValue); } else 182 G4double lunit = 1.0; << 183 if (attName=="x4") 183 G4double aunit = 1.0; << 184 { parameter.dimension[9] = eval.Evaluate(attValue); } else 184 << 185 if (attName=="alpha2") 185 const xercesc::DOMNamedNodeMap* const attrib << 186 { parameter.dimension[10] = eval.Evaluate(attValue); } 186 XMLSize_t attributeCount << 187 } 187 << 188 188 for(XMLSize_t attribute_index = 0; attribute << 189 parameter.dimension[0] *= 0.5*lunit; 189 ++attribute_index) << 190 parameter.dimension[1] *= aunit; 190 { << 191 parameter.dimension[2] *= aunit; 191 xercesc::DOMNode* attribute_node = attribu << 192 parameter.dimension[3] *= 0.5*lunit; 192 << 193 parameter.dimension[4] *= 0.5*lunit; 193 if(attribute_node->getNodeType() != xerces << 194 parameter.dimension[5] *= 0.5*lunit; 194 { << 195 parameter.dimension[6] *= aunit; 195 continue; << 196 parameter.dimension[7] *= 0.5*lunit; 196 } << 197 parameter.dimension[8] *= 0.5*lunit; 197 << 198 parameter.dimension[9] *= 0.5*lunit; 198 const xercesc::DOMAttr* const attribute = << 199 parameter.dimension[10] *= aunit; 199 dynamic_cast<xercesc::DOMAttr*>(attribut << 200 } 200 if(attribute == nullptr) << 201 201 { << 202 void G4GDMLReadParamvol:: 202 G4Exception("G4GDMLReadParamvol::Trap_di << 203 Tube_dimensionsRead( const xercesc::DOMElement* const element, 203 FatalException, "No attribut << 204 G4GDMLParameterisation::PARAMETER& parameter ) 204 return; << 205 { 205 } << 206 G4double lunit = 1.0; 206 const G4String attName = Transcode(attrib << 207 G4double aunit = 1.0; 207 const G4String attValue = Transcode(attrib << 208 208 << 209 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); 209 if(attName == "lunit") << 210 XMLSize_t attributeCount = attributes->getLength(); 210 { << 211 211 lunit = G4UnitDefinition::GetValueOf(att << 212 for (XMLSize_t attribute_index=0; 212 if(G4UnitDefinition::GetCategory(attValu << 213 attribute_index<attributeCount; attribute_index++) 213 { << 214 { 214 G4Exception("G4GDMLReadParamvol::Trap_ << 215 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); 215 FatalException, "Invalid u << 216 216 } << 217 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) 217 } << 218 { continue; } 218 else if(attName == "aunit") << 219 219 { << 220 const xercesc::DOMAttr* const attribute 220 aunit = G4UnitDefinition::GetValueOf(att << 221 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); 221 if(G4UnitDefinition::GetCategory(attValu << 222 if (!attribute) 222 { << 223 { 223 G4Exception("G4GDMLReadParamvol::Trap_ << 224 G4Exception("G4GDMLReadParamvol::Tube_dimensionsRead()", 224 FatalException, "Invalid u << 225 "InvalidRead", FatalException, "No attribute found!"); 225 } << 226 return; 226 } << 227 } 227 else if(attName == "z") << 228 const G4String attName = Transcode(attribute->getName()); 228 { << 229 const G4String attValue = Transcode(attribute->getValue()); 229 parameter.dimension[0] = eval.Evaluate(a << 230 230 } << 231 if (attName=="lunit") 231 else if(attName == "theta") << 232 { lunit = eval.Evaluate(attValue); } else 232 { << 233 if (attName=="aunit") 233 parameter.dimension[1] = eval.Evaluate(a << 234 { aunit = eval.Evaluate(attValue); } else 234 } << 235 if (attName=="InR") 235 else if(attName == "phi") << 236 { parameter.dimension[0] = eval.Evaluate(attValue); } else 236 { << 237 if (attName=="OutR") 237 parameter.dimension[2] = eval.Evaluate(a << 238 { parameter.dimension[1] = eval.Evaluate(attValue); } else 238 } << 239 if (attName=="hz") 239 else if(attName == "y1") << 240 { parameter.dimension[2] = eval.Evaluate(attValue); } else 240 { << 241 if (attName=="StartPhi") 241 parameter.dimension[3] = eval.Evaluate(a << 242 { parameter.dimension[3] = eval.Evaluate(attValue); } else 242 } << 243 if (attName=="DeltaPhi") 243 else if(attName == "x1") << 244 { parameter.dimension[4] = eval.Evaluate(attValue); } 244 { << 245 } 245 parameter.dimension[4] = eval.Evaluate(a << 246 246 } << 247 parameter.dimension[0] *= lunit; 247 else if(attName == "x2") << 248 parameter.dimension[1] *= lunit; 248 { << 249 parameter.dimension[2] *= 0.5*lunit; 249 parameter.dimension[5] = eval.Evaluate(a << 250 parameter.dimension[3] *= aunit; 250 } << 251 parameter.dimension[4] *= aunit; 251 else if(attName == "alpha1") << 252 } 252 { << 253 253 parameter.dimension[6] = eval.Evaluate(a << 254 void G4GDMLReadParamvol:: 254 } << 255 Cone_dimensionsRead( const xercesc::DOMElement* const element, 255 else if(attName == "y2") << 256 G4GDMLParameterisation::PARAMETER& parameter ) 256 { << 257 { 257 parameter.dimension[7] = eval.Evaluate(a << 258 G4double lunit = 1.0; 258 } << 259 G4double aunit = 1.0; 259 else if(attName == "x3") << 260 260 { << 261 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); 261 parameter.dimension[8] = eval.Evaluate(a << 262 XMLSize_t attributeCount = attributes->getLength(); 262 } << 263 263 else if(attName == "x4") << 264 for (XMLSize_t attribute_index=0; 264 { << 265 attribute_index<attributeCount; attribute_index++) 265 parameter.dimension[9] = eval.Evaluate(a << 266 { 266 } << 267 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); 267 else if(attName == "alpha2") << 268 268 { << 269 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) 269 parameter.dimension[10] = eval.Evaluate( << 270 { continue; } 270 } << 271 271 } << 272 const xercesc::DOMAttr* const attribute 272 << 273 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); 273 parameter.dimension[0] *= 0.5 * lunit; << 274 if (!attribute) 274 parameter.dimension[1] *= aunit; << 275 { 275 parameter.dimension[2] *= aunit; << 276 G4Exception("G4GDMLReadParamvol::Cone_dimensionsRead()", 276 parameter.dimension[3] *= 0.5 * lunit; << 277 "InvalidRead", FatalException, "No attribute found!"); 277 parameter.dimension[4] *= 0.5 * lunit; << 278 return; 278 parameter.dimension[5] *= 0.5 * lunit; << 279 } 279 parameter.dimension[6] *= aunit; << 280 const G4String attName = Transcode(attribute->getName()); 280 parameter.dimension[7] *= 0.5 * lunit; << 281 const G4String attValue = Transcode(attribute->getValue()); 281 parameter.dimension[8] *= 0.5 * lunit; << 282 282 parameter.dimension[9] *= 0.5 * lunit; << 283 if (attName=="lunit") 283 parameter.dimension[10] *= aunit; << 284 { lunit = eval.Evaluate(attValue); } else 284 } << 285 if (attName=="aunit") 285 << 286 { aunit = eval.Evaluate(attValue); } else 286 // ------------------------------------------- << 287 if (attName=="rmin1") 287 void G4GDMLReadParamvol::Tube_dimensionsRead( << 288 { parameter.dimension[0] = eval.Evaluate(attValue); } else 288 const xercesc::DOMElement* const element, << 289 if (attName=="rmax1") 289 G4GDMLParameterisation::PARAMETER& parameter << 290 { parameter.dimension[1] = eval.Evaluate(attValue); } else 290 { << 291 if (attName=="rmin2") 291 G4double lunit = 1.0; << 292 { parameter.dimension[2] = eval.Evaluate(attValue); } else 292 G4double aunit = 1.0; << 293 if (attName=="rmax2") 293 << 294 { parameter.dimension[3] = eval.Evaluate(attValue); } else 294 const xercesc::DOMNamedNodeMap* const attrib << 295 if (attName=="z") 295 XMLSize_t attributeCount << 296 { parameter.dimension[4] = eval.Evaluate(attValue); } else 296 << 297 if (attName=="startphi") 297 for(XMLSize_t attribute_index = 0; attribute << 298 { parameter.dimension[5] = eval.Evaluate(attValue); } else 298 ++attribute_index) << 299 if (attName=="deltaphi") 299 { << 300 { parameter.dimension[6] = eval.Evaluate(attValue); } 300 xercesc::DOMNode* attribute_node = attribu << 301 } 301 << 302 302 if(attribute_node->getNodeType() != xerces << 303 parameter.dimension[0] *= lunit; 303 { << 304 parameter.dimension[1] *= lunit; 304 continue; << 305 parameter.dimension[2] *= lunit; 305 } << 306 parameter.dimension[3] *= lunit; 306 << 307 parameter.dimension[4] *= 0.5*lunit; 307 const xercesc::DOMAttr* const attribute = << 308 parameter.dimension[5] *= aunit; 308 dynamic_cast<xercesc::DOMAttr*>(attribut << 309 parameter.dimension[6] *= aunit; 309 if(attribute == nullptr) << 310 } 310 { << 311 311 G4Exception("G4GDMLReadParamvol::Tube_di << 312 void G4GDMLReadParamvol:: 312 FatalException, "No attribut << 313 Sphere_dimensionsRead( const xercesc::DOMElement* const element, 313 return; << 314 G4GDMLParameterisation::PARAMETER& parameter ) 314 } << 315 { 315 const G4String attName = Transcode(attrib << 316 G4double lunit = 1.0; 316 const G4String attValue = Transcode(attrib << 317 G4double aunit = 1.0; 317 << 318 318 if(attName == "lunit") << 319 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); 319 { << 320 XMLSize_t attributeCount = attributes->getLength(); 320 lunit = G4UnitDefinition::GetValueOf(att << 321 321 if(G4UnitDefinition::GetCategory(attValu << 322 for (XMLSize_t attribute_index=0; 322 { << 323 attribute_index<attributeCount; attribute_index++) 323 G4Exception("G4GDMLReadParamvol::Tube_ << 324 { 324 FatalException, "Invalid u << 325 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); 325 } << 326 326 } << 327 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) 327 else if(attName == "aunit") << 328 { continue; } 328 { << 329 329 aunit = G4UnitDefinition::GetValueOf(att << 330 const xercesc::DOMAttr* const attribute 330 if(G4UnitDefinition::GetCategory(attValu << 331 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); 331 { << 332 if (!attribute) 332 G4Exception("G4GDMLReadParamvol::Tube_ << 333 FatalException, "Invalid u << 334 } << 335 } << 336 else if(attName == "InR") << 337 { << 338 parameter.dimension[0] = eval.Evaluate(a << 339 } << 340 else if(attName == "OutR") << 341 { << 342 parameter.dimension[1] = eval.Evaluate(a << 343 } << 344 else if(attName == "hz") << 345 { << 346 parameter.dimension[2] = eval.Evaluate(a << 347 } << 348 else if(attName == "StartPhi") << 349 { << 350 parameter.dimension[3] = eval.Evaluate(a << 351 } << 352 else if(attName == "DeltaPhi") << 353 { << 354 parameter.dimension[4] = eval.Evaluate(a << 355 } << 356 } << 357 << 358 parameter.dimension[0] *= lunit; << 359 parameter.dimension[1] *= lunit; << 360 parameter.dimension[2] *= 0.5 * lunit; << 361 parameter.dimension[3] *= aunit; << 362 parameter.dimension[4] *= aunit; << 363 } << 364 << 365 // ------------------------------------------- << 366 void G4GDMLReadParamvol::Cone_dimensionsRead( << 367 const xercesc::DOMElement* const element, << 368 G4GDMLParameterisation::PARAMETER& parameter << 369 { << 370 G4double lunit = 1.0; << 371 G4double aunit = 1.0; << 372 << 373 const xercesc::DOMNamedNodeMap* const attrib << 374 XMLSize_t attributeCount << 375 << 376 for(XMLSize_t attribute_index = 0; attribute << 377 ++attribute_index) << 378 { << 379 xercesc::DOMNode* attribute_node = attribu << 380 << 381 if(attribute_node->getNodeType() != xerces << 382 { << 383 continue; << 384 } << 385 << 386 const xercesc::DOMAttr* const attribute = << 387 dynamic_cast<xercesc::DOMAttr*>(attribut << 388 if(attribute == nullptr) << 389 { << 390 G4Exception("G4GDMLReadParamvol::Cone_di << 391 FatalException, "No attribut << 392 return; << 393 } << 394 const G4String attName = Transcode(attrib << 395 const G4String attValue = Transcode(attrib << 396 << 397 if(attName == "lunit") << 398 { << 399 lunit = G4UnitDefinition::GetValueOf(att << 400 if(G4UnitDefinition::GetCategory(attValu << 401 { << 402 G4Exception("G4GDMLReadParamvol::Cone_ << 403 FatalException, "Invalid u << 404 } << 405 } << 406 else if(attName == "aunit") << 407 { << 408 aunit = G4UnitDefinition::GetValueOf(att << 409 if(G4UnitDefinition::GetCategory(attValu << 410 { << 411 G4Exception("G4GDMLReadParamvol::Cone_ << 412 FatalException, "Invalid u << 413 } << 414 } << 415 else if(attName == "rmin1") << 416 { << 417 parameter.dimension[0] = eval.Evaluate(a << 418 } << 419 else if(attName == "rmax1") << 420 { << 421 parameter.dimension[1] = eval.Evaluate(a << 422 } << 423 else if(attName == "rmin2") << 424 { << 425 parameter.dimension[2] = eval.Evaluate(a << 426 } << 427 else if(attName == "rmax2") << 428 { << 429 parameter.dimension[3] = eval.Evaluate(a << 430 } << 431 else if(attName == "z") << 432 { << 433 parameter.dimension[4] = eval.Evaluate(a << 434 } << 435 else if(attName == "startphi") << 436 { << 437 parameter.dimension[5] = eval.Evaluate(a << 438 } << 439 else if(attName == "deltaphi") << 440 { << 441 parameter.dimension[6] = eval.Evaluate(a << 442 } << 443 } << 444 << 445 parameter.dimension[0] *= lunit; << 446 parameter.dimension[1] *= lunit; << 447 parameter.dimension[2] *= lunit; << 448 parameter.dimension[3] *= lunit; << 449 parameter.dimension[4] *= 0.5 * lunit; << 450 parameter.dimension[5] *= aunit; << 451 parameter.dimension[6] *= aunit; << 452 } << 453 << 454 // ------------------------------------------- << 455 void G4GDMLReadParamvol::Sphere_dimensionsRead << 456 const xercesc::DOMElement* const element, << 457 G4GDMLParameterisation::PARAMETER& parameter << 458 { << 459 G4double lunit = 1.0; << 460 G4double aunit = 1.0; << 461 << 462 const xercesc::DOMNamedNodeMap* const attrib << 463 XMLSize_t attributeCount << 464 << 465 for(XMLSize_t attribute_index = 0; attribute << 466 ++attribute_index) << 467 { << 468 xercesc::DOMNode* attribute_node = attribu << 469 << 470 if(attribute_node->getNodeType() != xerces << 471 { << 472 continue; << 473 } << 474 << 475 const xercesc::DOMAttr* const attribute = << 476 dynamic_cast<xercesc::DOMAttr*>(attribut << 477 if(attribute == nullptr) << 478 { << 479 G4Exception("G4GDMLReadParamvol::Sphere_ << 480 FatalException, "No attribut << 481 return; << 482 } << 483 const G4String attName = Transcode(attrib << 484 const G4String attValue = Transcode(attrib << 485 << 486 if(attName == "lunit") << 487 { << 488 lunit = G4UnitDefinition::GetValueOf(att << 489 if(G4UnitDefinition::GetCategory(attValu << 490 { << 491 G4Exception("G4GDMLReadParamvol::Spher << 492 "InvalidRead", FatalExcept << 493 } << 494 } << 495 else if(attName == "aunit") << 496 { << 497 aunit = G4UnitDefinition::GetValueOf(att << 498 if(G4UnitDefinition::GetCategory(attValu << 499 { 333 { 500 G4Exception("G4GDMLReadParamvol::Spher 334 G4Exception("G4GDMLReadParamvol::Sphere_dimensionsRead()", 501 "InvalidRead", FatalExcept << 335 "InvalidRead", FatalException, "No attribute found!"); >> 336 return; 502 } 337 } 503 } << 338 const G4String attName = Transcode(attribute->getName()); 504 else if(attName == "rmin") << 339 const G4String attValue = Transcode(attribute->getValue()); 505 { << 506 parameter.dimension[0] = eval.Evaluate(a << 507 } << 508 else if(attName == "rmax") << 509 { << 510 parameter.dimension[1] = eval.Evaluate(a << 511 } << 512 else if(attName == "startphi") << 513 { << 514 parameter.dimension[2] = eval.Evaluate(a << 515 } << 516 else if(attName == "deltaphi") << 517 { << 518 parameter.dimension[3] = eval.Evaluate(a << 519 } << 520 else if(attName == "starttheta") << 521 { << 522 parameter.dimension[4] = eval.Evaluate(a << 523 } << 524 else if(attName == "deltatheta") << 525 { << 526 parameter.dimension[5] = eval.Evaluate(a << 527 } << 528 } << 529 << 530 parameter.dimension[0] *= lunit; << 531 parameter.dimension[1] *= lunit; << 532 parameter.dimension[2] *= aunit; << 533 parameter.dimension[3] *= aunit; << 534 parameter.dimension[4] *= aunit; << 535 parameter.dimension[5] *= aunit; << 536 } << 537 << 538 // ------------------------------------------- << 539 void G4GDMLReadParamvol::Orb_dimensionsRead( << 540 const xercesc::DOMElement* const element, << 541 G4GDMLParameterisation::PARAMETER& parameter << 542 { << 543 G4double lunit = 1.0; << 544 << 545 const xercesc::DOMNamedNodeMap* const attrib << 546 XMLSize_t attributeCount << 547 << 548 for(XMLSize_t attribute_index = 0; attribute << 549 ++attribute_index) << 550 { << 551 xercesc::DOMNode* attribute_node = attribu << 552 << 553 if(attribute_node->getNodeType() != xerces << 554 { << 555 continue; << 556 } << 557 << 558 const xercesc::DOMAttr* const attribute = << 559 dynamic_cast<xercesc::DOMAttr*>(attribut << 560 if(attribute == nullptr) << 561 { << 562 G4Exception("G4GDMLReadParamvol::Orb_dim << 563 FatalException, "No attribut << 564 return; << 565 } << 566 const G4String attName = Transcode(attrib << 567 const G4String attValue = Transcode(attrib << 568 << 569 if(attName == "lunit") << 570 { << 571 lunit = G4UnitDefinition::GetValueOf(att << 572 } << 573 if(G4UnitDefinition::GetCategory(attValue) << 574 { << 575 G4Exception("G4GDMLReadParamvol::Orb_dim << 576 FatalException, "Invalid uni << 577 } << 578 else if(attName == "r") << 579 { << 580 parameter.dimension[0] = eval.Evaluate(a << 581 } << 582 } << 583 << 584 parameter.dimension[0] *= lunit; << 585 } << 586 << 587 // ------------------------------------------- << 588 void G4GDMLReadParamvol::Torus_dimensionsRead( << 589 const xercesc::DOMElement* const element, << 590 G4GDMLParameterisation::PARAMETER& parameter << 591 { << 592 G4double lunit = 1.0; << 593 G4double aunit = 1.0; << 594 << 595 const xercesc::DOMNamedNodeMap* const attrib << 596 XMLSize_t attributeCount << 597 << 598 for(XMLSize_t attribute_index = 0; attribute << 599 ++attribute_index) << 600 { << 601 xercesc::DOMNode* attribute_node = attribu << 602 << 603 if(attribute_node->getNodeType() != xerces << 604 { << 605 continue; << 606 } << 607 << 608 const xercesc::DOMAttr* const attribute = << 609 dynamic_cast<xercesc::DOMAttr*>(attribut << 610 if(attribute == nullptr) << 611 { << 612 G4Exception("G4GDMLReadParamvol::Torus_d << 613 FatalException, "No attribut << 614 return; << 615 } << 616 const G4String attName = Transcode(attrib << 617 const G4String attValue = Transcode(attrib << 618 << 619 if(attName == "lunit") << 620 { << 621 lunit = G4UnitDefinition::GetValueOf(att << 622 if(G4UnitDefinition::GetCategory(attValu << 623 { << 624 G4Exception("G4GDMLReadParamvol::Torus << 625 FatalException, "Invalid u << 626 } << 627 } << 628 else if(attName == "aunit") << 629 { << 630 aunit = G4UnitDefinition::GetValueOf(att << 631 if(G4UnitDefinition::GetCategory(attValu << 632 { << 633 G4Exception("G4GDMLReadParamvol::Torus << 634 FatalException, "Invalid u << 635 } << 636 } << 637 else if(attName == "rmin") << 638 { << 639 parameter.dimension[0] = eval.Evaluate(a << 640 } << 641 else if(attName == "rmax") << 642 { << 643 parameter.dimension[1] = eval.Evaluate(a << 644 } << 645 else if(attName == "rtor") << 646 { << 647 parameter.dimension[2] = eval.Evaluate(a << 648 } << 649 else if(attName == "startphi") << 650 { << 651 parameter.dimension[3] = eval.Evaluate(a << 652 } << 653 else if(attName == "deltaphi") << 654 { << 655 parameter.dimension[4] = eval.Evaluate(a << 656 } << 657 } << 658 << 659 parameter.dimension[0] *= lunit; << 660 parameter.dimension[1] *= lunit; << 661 parameter.dimension[2] *= lunit; << 662 parameter.dimension[3] *= aunit; << 663 parameter.dimension[4] *= aunit; << 664 } << 665 << 666 // ------------------------------------------- << 667 void G4GDMLReadParamvol::Ellipsoid_dimensionsR << 668 const xercesc::DOMElement* const element, << 669 G4GDMLParameterisation::PARAMETER& parameter << 670 { << 671 G4double lunit << 672 const xercesc::DOMNamedNodeMap* const attrib << 673 XMLSize_t attributeCount << 674 << 675 for(XMLSize_t attribute_index = 0; attribute << 676 ++attribute_index) << 677 { << 678 xercesc::DOMNode* attribute_node = attribu << 679 << 680 if(attribute_node->getNodeType() != xerces << 681 { << 682 continue; << 683 } << 684 << 685 const xercesc::DOMAttr* const attribute = << 686 dynamic_cast<xercesc::DOMAttr*>(attribut << 687 if(attribute == nullptr) << 688 { << 689 G4Exception("G4GDMLReadParamvol::Ellipso << 690 "InvalidRead", FatalExceptio << 691 return; << 692 } << 693 const G4String attName = Transcode(attrib << 694 const G4String attValue = Transcode(attrib << 695 340 696 if(attName == "lunit") << 341 if (attName=="lunit") 697 { << 342 { lunit = eval.Evaluate(attValue); } else 698 lunit = G4UnitDefinition::GetValueOf(att << 343 if (attName=="aunit") 699 if(G4UnitDefinition::GetCategory(attValu << 344 { aunit = eval.Evaluate(attValue); } else >> 345 if (attName=="rmin") >> 346 { parameter.dimension[0] = eval.Evaluate(attValue); } else >> 347 if (attName=="rmax") >> 348 { parameter.dimension[1] = eval.Evaluate(attValue); } else >> 349 if (attName=="startphi") >> 350 { parameter.dimension[2] = eval.Evaluate(attValue); } else >> 351 if (attName=="deltaphi") >> 352 { parameter.dimension[3] = eval.Evaluate(attValue); } else >> 353 if (attName=="starttheta") >> 354 { parameter.dimension[4] = eval.Evaluate(attValue); } else >> 355 if (attName=="deltatheta") >> 356 { parameter.dimension[5] = eval.Evaluate(attValue); } >> 357 } >> 358 >> 359 parameter.dimension[0] *= lunit; >> 360 parameter.dimension[1] *= lunit; >> 361 parameter.dimension[2] *= aunit; >> 362 parameter.dimension[3] *= aunit; >> 363 parameter.dimension[4] *= aunit; >> 364 parameter.dimension[5] *= aunit; >> 365 } >> 366 >> 367 void G4GDMLReadParamvol:: >> 368 Orb_dimensionsRead( const xercesc::DOMElement* const element, >> 369 G4GDMLParameterisation::PARAMETER& parameter ) >> 370 { >> 371 G4double lunit = 1.0; >> 372 >> 373 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); >> 374 XMLSize_t attributeCount = attributes->getLength(); >> 375 >> 376 for (XMLSize_t attribute_index=0; >> 377 attribute_index<attributeCount; attribute_index++) >> 378 { >> 379 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); >> 380 >> 381 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) >> 382 { continue; } >> 383 >> 384 const xercesc::DOMAttr* const attribute >> 385 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); >> 386 if (!attribute) >> 387 { >> 388 G4Exception("G4GDMLReadParamvol::Orb_dimensionsRead()", >> 389 "InvalidRead", FatalException, "No attribute found!"); >> 390 return; >> 391 } >> 392 const G4String attName = Transcode(attribute->getName()); >> 393 const G4String attValue = Transcode(attribute->getValue()); >> 394 >> 395 if (attName=="lunit") { lunit = eval.Evaluate(attValue); } else >> 396 if (attName=="r") { parameter.dimension[0] = eval.Evaluate(attValue); } >> 397 } >> 398 >> 399 parameter.dimension[0] *= lunit; >> 400 } >> 401 >> 402 void G4GDMLReadParamvol:: >> 403 Torus_dimensionsRead( const xercesc::DOMElement* const element, >> 404 G4GDMLParameterisation::PARAMETER& parameter ) >> 405 { >> 406 G4double lunit = 1.0; >> 407 G4double aunit = 1.0; >> 408 >> 409 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); >> 410 XMLSize_t attributeCount = attributes->getLength(); >> 411 >> 412 for (XMLSize_t attribute_index=0; >> 413 attribute_index<attributeCount; attribute_index++) >> 414 { >> 415 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); >> 416 >> 417 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) >> 418 { continue; } >> 419 >> 420 const xercesc::DOMAttr* const attribute >> 421 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); >> 422 if (!attribute) >> 423 { >> 424 G4Exception("G4GDMLReadParamvol::Torus_dimensionsRead()", >> 425 "InvalidRead", FatalException, "No attribute found!"); >> 426 return; >> 427 } >> 428 const G4String attName = Transcode(attribute->getName()); >> 429 const G4String attValue = Transcode(attribute->getValue()); >> 430 >> 431 if (attName=="lunit") >> 432 { lunit = eval.Evaluate(attValue); } else >> 433 if (attName=="aunit") >> 434 { aunit = eval.Evaluate(attValue); } else >> 435 if (attName=="rmin") >> 436 { parameter.dimension[0] = eval.Evaluate(attValue); } else >> 437 if (attName=="rmax") >> 438 { parameter.dimension[1] = eval.Evaluate(attValue); } else >> 439 if (attName=="rtor") >> 440 { parameter.dimension[2] = eval.Evaluate(attValue); } else >> 441 if (attName=="startphi") >> 442 { parameter.dimension[3] = eval.Evaluate(attValue); } else >> 443 if (attName=="deltaphi") >> 444 { parameter.dimension[4] = eval.Evaluate(attValue); } >> 445 } >> 446 >> 447 parameter.dimension[0] *= lunit; >> 448 parameter.dimension[1] *= lunit; >> 449 parameter.dimension[2] *= lunit; >> 450 parameter.dimension[3] *= aunit; >> 451 parameter.dimension[4] *= aunit; >> 452 } >> 453 >> 454 void G4GDMLReadParamvol:: >> 455 Ellipsoid_dimensionsRead( const xercesc::DOMElement* const element, >> 456 G4GDMLParameterisation::PARAMETER& parameter ) >> 457 { >> 458 G4double lunit = 1.0; >> 459 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); >> 460 XMLSize_t attributeCount = attributes->getLength(); >> 461 >> 462 for (XMLSize_t attribute_index=0; >> 463 attribute_index<attributeCount; attribute_index++) >> 464 { >> 465 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); >> 466 >> 467 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) >> 468 { continue; } >> 469 >> 470 const xercesc::DOMAttr* const attribute >> 471 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); >> 472 if (!attribute) 700 { 473 { 701 G4Exception("G4GDMLReadParamvol::Ellip 474 G4Exception("G4GDMLReadParamvol::Ellipsoid_dimensionsRead()", 702 "InvalidRead", FatalExcept << 475 "InvalidRead", FatalException, "No attribute found!"); 703 } << 476 return; 704 } << 705 else if(attName == "ax") << 706 { << 707 parameter.dimension[0] = eval.Evaluate(a << 708 } << 709 else if(attName == "by") << 710 { << 711 parameter.dimension[1] = eval.Evaluate(a << 712 } << 713 else if(attName == "cz") << 714 { << 715 parameter.dimension[2] = eval.Evaluate(a << 716 } << 717 else if(attName == "zcut1") << 718 { << 719 parameter.dimension[3] = eval.Evaluate(a << 720 } << 721 else if(attName == "zcut2") << 722 { << 723 parameter.dimension[4] = eval.Evaluate(a << 724 } << 725 } << 726 << 727 parameter.dimension[0] *= lunit; << 728 parameter.dimension[1] *= lunit; << 729 parameter.dimension[2] *= lunit; << 730 parameter.dimension[3] *= lunit; << 731 parameter.dimension[4] *= lunit; << 732 } << 733 << 734 // ------------------------------------------- << 735 void G4GDMLReadParamvol::Para_dimensionsRead( << 736 const xercesc::DOMElement* const element, << 737 G4GDMLParameterisation::PARAMETER& parameter << 738 { << 739 G4double lunit = 1.0; << 740 G4double aunit = 1.0; << 741 << 742 const xercesc::DOMNamedNodeMap* const attrib << 743 XMLSize_t attributeCount << 744 << 745 for(XMLSize_t attribute_index = 0; attribute << 746 ++attribute_index) << 747 { << 748 xercesc::DOMNode* attribute_node = attribu << 749 << 750 if(attribute_node->getNodeType() != xerces << 751 { << 752 continue; << 753 } << 754 << 755 const xercesc::DOMAttr* const attribute = << 756 dynamic_cast<xercesc::DOMAttr*>(attribut << 757 if(attribute == nullptr) << 758 { << 759 G4Exception("G4GDMLReadParamvol::Para_di << 760 FatalException, "No attribut << 761 return; << 762 } << 763 const G4String attName = Transcode(attrib << 764 const G4String attValue = Transcode(attrib << 765 << 766 if(attName == "lunit") << 767 { << 768 lunit = G4UnitDefinition::GetValueOf(att << 769 if(G4UnitDefinition::GetCategory(attValu << 770 { << 771 G4Exception("G4GDMLReadParamvol::Para_ << 772 FatalException, "Invalid u << 773 } << 774 } << 775 else if(attName == "aunit") << 776 { << 777 aunit = G4UnitDefinition::GetValueOf(att << 778 if(G4UnitDefinition::GetCategory(attValu << 779 { << 780 G4Exception("G4GDMLReadParamvol::Para_ << 781 FatalException, "Invalid u << 782 } << 783 } << 784 else if(attName == "x") << 785 { << 786 parameter.dimension[0] = eval.Evaluate(a << 787 } << 788 else if(attName == "y") << 789 { << 790 parameter.dimension[1] = eval.Evaluate(a << 791 } << 792 else if(attName == "z") << 793 { << 794 parameter.dimension[2] = eval.Evaluate(a << 795 } << 796 else if(attName == "alpha") << 797 { << 798 parameter.dimension[3] = eval.Evaluate(a << 799 } << 800 else if(attName == "theta") << 801 { << 802 parameter.dimension[4] = eval.Evaluate(a << 803 } << 804 else if(attName == "phi") << 805 { << 806 parameter.dimension[5] = eval.Evaluate(a << 807 } << 808 } << 809 << 810 parameter.dimension[0] = 0.5 * lunit; << 811 parameter.dimension[1] = 0.5 * lunit; << 812 parameter.dimension[2] = 0.5 * lunit; << 813 parameter.dimension[3] = aunit; << 814 parameter.dimension[4] = aunit; << 815 parameter.dimension[5] = aunit; << 816 } << 817 << 818 // ------------------------------------------- << 819 void G4GDMLReadParamvol::Hype_dimensionsRead( << 820 const xercesc::DOMElement* const element, << 821 G4GDMLParameterisation::PARAMETER& parameter << 822 { << 823 G4double lunit = 1.0; << 824 G4double aunit = 1.0; << 825 << 826 const xercesc::DOMNamedNodeMap* const attrib << 827 XMLSize_t attributeCount << 828 << 829 for(XMLSize_t attribute_index = 0; attribute << 830 ++attribute_index) << 831 { << 832 xercesc::DOMNode* attribute_node = attribu << 833 << 834 if(attribute_node->getNodeType() != xerces << 835 { << 836 continue; << 837 } << 838 << 839 const xercesc::DOMAttr* const attribute = << 840 dynamic_cast<xercesc::DOMAttr*>(attribut << 841 if(attribute == nullptr) << 842 { << 843 G4Exception("G4GDMLReadParamvol::Hype_di << 844 FatalException, "No attribut << 845 return; << 846 } << 847 const G4String attName = Transcode(attrib << 848 const G4String attValue = Transcode(attrib << 849 << 850 if(attName == "lunit") << 851 { << 852 lunit = G4UnitDefinition::GetValueOf(att << 853 if(G4UnitDefinition::GetCategory(attValu << 854 { << 855 G4Exception("G4GDMLReadParamvol::Hype_ << 856 FatalException, "Invalid u << 857 } 477 } 858 } << 478 const G4String attName = Transcode(attribute->getName()); 859 else if(attName == "aunit") << 479 const G4String attValue = Transcode(attribute->getValue()); 860 { << 861 aunit = G4UnitDefinition::GetValueOf(att << 862 if(G4UnitDefinition::GetCategory(attValu << 863 { << 864 G4Exception("G4GDMLReadParamvol::Hype_ << 865 FatalException, "Invalid u << 866 } << 867 } << 868 else if(attName == "rmin") << 869 { << 870 parameter.dimension[0] = eval.Evaluate(a << 871 } << 872 else if(attName == "rmax") << 873 { << 874 parameter.dimension[1] = eval.Evaluate(a << 875 } << 876 else if(attName == "inst") << 877 { << 878 parameter.dimension[2] = eval.Evaluate(a << 879 } << 880 else if(attName == "outst") << 881 { << 882 parameter.dimension[3] = eval.Evaluate(a << 883 } << 884 else if(attName == "z") << 885 { << 886 parameter.dimension[4] = eval.Evaluate(a << 887 } << 888 } << 889 << 890 parameter.dimension[0] = lunit; << 891 parameter.dimension[1] = lunit; << 892 parameter.dimension[2] = aunit; << 893 parameter.dimension[3] = aunit; << 894 parameter.dimension[4] = 0.5 * lunit; << 895 } << 896 << 897 // ------------------------------------------- << 898 void G4GDMLReadParamvol::Polycone_dimensionsRe << 899 const xercesc::DOMElement* const element, << 900 G4GDMLParameterisation::PARAMETER& parameter << 901 { << 902 G4double lunit = 1.0; << 903 G4double aunit = 1.0; << 904 << 905 std::vector<zplaneType> zplaneList; << 906 480 907 const xercesc::DOMNamedNodeMap* const attrib << 481 if (attName=="lunit") 908 XMLSize_t attributeCount << 482 { lunit = eval.Evaluate(attValue); } else 909 << 483 if (attName=="ax") 910 for(XMLSize_t attribute_index = 0; attribute << 484 { parameter.dimension[0] = eval.Evaluate(attValue); } else 911 ++attribute_index) << 485 if (attName=="by") 912 { << 486 { parameter.dimension[1] = eval.Evaluate(attValue); } else 913 xercesc::DOMNode* attribute_node = attribu << 487 if (attName=="cz") 914 << 488 { parameter.dimension[2] = eval.Evaluate(attValue); } else 915 if(attribute_node->getNodeType() != xerces << 489 if (attName=="zcut1") 916 { << 490 { parameter.dimension[3] = eval.Evaluate(attValue); } else 917 continue; << 491 if (attName=="zcut2") 918 } << 492 { parameter.dimension[4] = eval.Evaluate(attValue); } 919 << 493 } 920 const xercesc::DOMAttr* const attribute = << 494 921 dynamic_cast<xercesc::DOMAttr*>(attribut << 495 parameter.dimension[0] *= lunit; 922 if(attribute == nullptr) << 496 parameter.dimension[1] *= lunit; 923 { << 497 parameter.dimension[2] *= lunit; 924 G4Exception("G4GDMLReadParamvol::Polycon << 498 parameter.dimension[3] *= lunit; 925 "InvalidRead", FatalExceptio << 499 parameter.dimension[4] *= lunit; 926 return; << 500 } 927 } << 501 928 const G4String attName = Transcode(attrib << 502 void G4GDMLReadParamvol:: 929 const G4String attValue = Transcode(attrib << 503 Para_dimensionsRead( const xercesc::DOMElement* const element, 930 << 504 G4GDMLParameterisation::PARAMETER& parameter ) 931 if(attName == "lunit") << 505 { 932 { << 506 G4double lunit = 1.0; 933 lunit = G4UnitDefinition::GetValueOf(att << 507 G4double aunit = 1.0; 934 if(G4UnitDefinition::GetCategory(attValu << 508 >> 509 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); >> 510 XMLSize_t attributeCount = attributes->getLength(); >> 511 >> 512 for (XMLSize_t attribute_index=0; >> 513 attribute_index<attributeCount; attribute_index++) >> 514 { >> 515 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); >> 516 >> 517 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) >> 518 { continue; } >> 519 >> 520 const xercesc::DOMAttr* const attribute >> 521 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); >> 522 if (!attribute) >> 523 { >> 524 G4Exception("G4GDMLReadParamvol::Para_dimensionsRead()", >> 525 "InvalidRead", FatalException, "No attribute found!"); >> 526 return; >> 527 } >> 528 const G4String attName = Transcode(attribute->getName()); >> 529 const G4String attValue = Transcode(attribute->getValue()); >> 530 >> 531 if (attName=="lunit") >> 532 { lunit = eval.Evaluate(attValue); } else >> 533 if (attName=="aunit") >> 534 { aunit = eval.Evaluate(attValue); } else >> 535 if (attName=="x") >> 536 { parameter.dimension[0] = eval.Evaluate(attValue); } else >> 537 if (attName=="y") >> 538 { parameter.dimension[1] = eval.Evaluate(attValue); } else >> 539 if (attName=="z") >> 540 { parameter.dimension[2] = eval.Evaluate(attValue); } else >> 541 if (attName=="alpha") >> 542 { parameter.dimension[3] = eval.Evaluate(attValue); } else >> 543 if (attName=="theta") >> 544 { parameter.dimension[4] = eval.Evaluate(attValue); } else >> 545 if (attName=="phi") >> 546 { parameter.dimension[5] = eval.Evaluate(attValue); } >> 547 } >> 548 >> 549 parameter.dimension[0] = 0.5*lunit; >> 550 parameter.dimension[1] = 0.5*lunit; >> 551 parameter.dimension[2] = 0.5*lunit; >> 552 parameter.dimension[3] = aunit; >> 553 parameter.dimension[4] = aunit; >> 554 parameter.dimension[5] = aunit; >> 555 } >> 556 >> 557 void G4GDMLReadParamvol:: >> 558 Hype_dimensionsRead( const xercesc::DOMElement* const element, >> 559 G4GDMLParameterisation::PARAMETER& parameter ) >> 560 { >> 561 G4double lunit = 1.0; >> 562 G4double aunit = 1.0; >> 563 >> 564 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); >> 565 XMLSize_t attributeCount = attributes->getLength(); >> 566 >> 567 for (XMLSize_t attribute_index=0; >> 568 attribute_index<attributeCount; attribute_index++) >> 569 { >> 570 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); >> 571 >> 572 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) >> 573 { continue; } >> 574 >> 575 const xercesc::DOMAttr* const attribute >> 576 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); >> 577 if (!attribute) >> 578 { >> 579 G4Exception("G4GDMLReadParamvol::Hype_dimensionsRead()", >> 580 "InvalidRead", FatalException, "No attribute found!"); >> 581 return; >> 582 } >> 583 const G4String attName = Transcode(attribute->getName()); >> 584 const G4String attValue = Transcode(attribute->getValue()); >> 585 >> 586 if (attName=="lunit") >> 587 { lunit = eval.Evaluate(attValue); } else >> 588 if (attName=="aunit") >> 589 { aunit = eval.Evaluate(attValue); } else >> 590 if (attName=="rmin") >> 591 { parameter.dimension[0] = eval.Evaluate(attValue); } else >> 592 if (attName=="rmax") >> 593 { parameter.dimension[1] = eval.Evaluate(attValue); } else >> 594 if (attName=="inst") >> 595 { parameter.dimension[2] = eval.Evaluate(attValue); } else >> 596 if (attName=="outst") >> 597 { parameter.dimension[3] = eval.Evaluate(attValue); } else >> 598 if (attName=="z") >> 599 { parameter.dimension[4] = eval.Evaluate(attValue); } >> 600 } >> 601 >> 602 parameter.dimension[0] = lunit; >> 603 parameter.dimension[1] = lunit; >> 604 parameter.dimension[2] = aunit; >> 605 parameter.dimension[3] = aunit; >> 606 parameter.dimension[4] = 0.5*lunit; >> 607 } >> 608 >> 609 void G4GDMLReadParamvol:: >> 610 Polycone_dimensionsRead( const xercesc::DOMElement* const element, >> 611 G4GDMLParameterisation::PARAMETER& parameter ) >> 612 { >> 613 G4double lunit = 1.0; >> 614 G4double aunit = 1.0; >> 615 >> 616 std::vector<zplaneType> zplaneList; >> 617 >> 618 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); >> 619 XMLSize_t attributeCount = attributes->getLength(); >> 620 >> 621 for (XMLSize_t attribute_index=0; >> 622 attribute_index<attributeCount; attribute_index++) >> 623 { >> 624 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); >> 625 >> 626 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) >> 627 { continue; } >> 628 >> 629 const xercesc::DOMAttr* const attribute >> 630 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); >> 631 if (!attribute) 935 { 632 { 936 G4Exception("G4GDMLReadParamvol::Polyc 633 G4Exception("G4GDMLReadParamvol::Polycone_dimensionsRead()", 937 "InvalidRead", FatalExcept << 634 "InvalidRead", FatalException, "No attribute found!"); >> 635 return; 938 } 636 } 939 } << 637 const G4String attName = Transcode(attribute->getName()); 940 else if(attName == "aunit") << 638 const G4String attValue = Transcode(attribute->getValue()); 941 { << 639 942 aunit = G4UnitDefinition::GetValueOf(att << 640 if (attName=="lunit") 943 if(G4UnitDefinition::GetCategory(attValu << 641 { lunit = eval.Evaluate(attValue); } else >> 642 if (attName=="aunit") >> 643 { aunit = eval.Evaluate(attValue); } else >> 644 if (attName=="startPhi") >> 645 { parameter.dimension[0] = eval.Evaluate(attValue); } else >> 646 if (attName=="openPhi") >> 647 { parameter.dimension[1] = eval.Evaluate(attValue); } else >> 648 if (attName=="numRZ") >> 649 { parameter.dimension[2] = eval.Evaluate(attValue); } >> 650 } >> 651 >> 652 parameter.dimension[0] *= aunit; >> 653 parameter.dimension[1] *= aunit; >> 654 >> 655 for (xercesc::DOMNode* iter = element->getFirstChild(); >> 656 iter != 0; iter = iter->getNextSibling()) >> 657 { >> 658 if (iter->getNodeType() != xercesc::DOMNode::ELEMENT_NODE) { continue; } >> 659 >> 660 const xercesc::DOMElement* const child >> 661 = dynamic_cast<xercesc::DOMElement*>(iter); >> 662 if (!child) >> 663 { >> 664 G4Exception("G4GDMLReadParamVol::Polycone_dimensionsRead()", >> 665 "InvalidRead", FatalException, "No child found!"); >> 666 return; >> 667 } >> 668 const G4String tag = Transcode(child->getTagName()); >> 669 >> 670 if (tag=="zplane") { zplaneList.push_back(ZplaneRead(child)); } >> 671 } >> 672 >> 673 G4int numZPlanes = zplaneList.size(); >> 674 for (G4int i=0; i<numZPlanes; i++) >> 675 { >> 676 parameter.dimension[3+i*3] = zplaneList[i].rmin*lunit; >> 677 parameter.dimension[4+i*3] = zplaneList[i].rmax*lunit; >> 678 parameter.dimension[5+i*3] = zplaneList[i].z*lunit; >> 679 } >> 680 } >> 681 >> 682 void G4GDMLReadParamvol:: >> 683 Polyhedra_dimensionsRead( const xercesc::DOMElement* const element, >> 684 G4GDMLParameterisation::PARAMETER& parameter ) >> 685 { >> 686 G4double lunit = 1.0; >> 687 G4double aunit = 1.0; >> 688 >> 689 std::vector<zplaneType> zplaneList; >> 690 >> 691 const xercesc::DOMNamedNodeMap* const attributes = element->getAttributes(); >> 692 XMLSize_t attributeCount = attributes->getLength(); >> 693 >> 694 for (XMLSize_t attribute_index=0; >> 695 attribute_index<attributeCount; attribute_index++) >> 696 { >> 697 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); >> 698 >> 699 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) >> 700 { continue; } >> 701 >> 702 const xercesc::DOMAttr* const attribute >> 703 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); >> 704 if (!attribute) 944 { 705 { 945 G4Exception("G4GDMLReadParamvol::Polyc 706 G4Exception("G4GDMLReadParamvol::Polycone_dimensionsRead()", 946 "InvalidRead", FatalExcept << 707 "InvalidRead", FatalException, "No attribute found!"); >> 708 return; 947 } 709 } 948 } << 710 const G4String attName = Transcode(attribute->getName()); 949 else if(attName == "startPhi") << 711 const G4String attValue = Transcode(attribute->getValue()); 950 { << 712 951 parameter.dimension[0] = eval.Evaluate(a << 713 if (attName=="lunit") 952 } << 714 { lunit = eval.Evaluate(attValue); } else 953 else if(attName == "openPhi") << 715 if (attName=="aunit") 954 { << 716 { aunit = eval.Evaluate(attValue); } else 955 parameter.dimension[1] = eval.Evaluate(a << 717 if (attName=="startPhi") 956 } << 718 { parameter.dimension[0] = eval.Evaluate(attValue); } else 957 else if(attName == "numRZ") << 719 if (attName=="openPhi") 958 { << 720 { parameter.dimension[1] = eval.Evaluate(attValue); } else 959 parameter.dimension[2] = eval.Evaluate(a << 721 if (attName=="numRZ") 960 } << 722 { parameter.dimension[2] = eval.Evaluate(attValue); } else 961 } << 723 if (attName=="numSide") 962 << 724 { parameter.dimension[3] = eval.Evaluate(attValue); } 963 parameter.dimension[0] *= aunit; << 725 } 964 parameter.dimension[1] *= aunit; << 726 965 << 727 parameter.dimension[0] *= aunit; 966 for(xercesc::DOMNode* iter = element->getFir << 728 parameter.dimension[1] *= aunit; 967 iter = iter->getNextSi << 729 968 { << 730 for (xercesc::DOMNode* iter = element->getFirstChild(); 969 if(iter->getNodeType() != xercesc::DOMNode << 731 iter != 0; iter = iter->getNextSibling()) 970 { << 732 { 971 continue; << 733 if (iter->getNodeType() != xercesc::DOMNode::ELEMENT_NODE) { continue; } 972 } << 734 973 << 735 const xercesc::DOMElement* const child 974 const xercesc::DOMElement* const child = << 736 = dynamic_cast<xercesc::DOMElement*>(iter); 975 dynamic_cast<xercesc::DOMElement*>(iter) << 737 if (!child) 976 if(child == nullptr) << 738 { 977 { << 739 G4Exception("G4GDMLReadParamvo::PolyhedraRead()", 978 G4Exception("G4GDMLReadParamVol::Polycon << 740 "InvalidRead", FatalException, "No child found!"); 979 "InvalidRead", FatalExceptio << 741 return; 980 return; << 742 } 981 } << 743 const G4String tag = Transcode(child->getTagName()); 982 const G4String tag = Transcode(child->getT << 744 983 << 745 if (tag=="zplane") { zplaneList.push_back(ZplaneRead(child)); } 984 if(tag == "zplane") << 746 } 985 { << 747 986 zplaneList.push_back(ZplaneRead(child)); << 748 G4int numZPlanes = zplaneList.size(); 987 } << 749 for (G4int i=0; i<numZPlanes; i++) 988 } << 750 { 989 << 751 parameter.dimension[4+i*3] = zplaneList[i].rmin*lunit; 990 std::size_t numZPlanes = zplaneList.size(); << 752 parameter.dimension[5+i*3] = zplaneList[i].rmax*lunit; 991 for(std::size_t i = 0; i < numZPlanes; ++i) << 753 parameter.dimension[6+i*3] = zplaneList[i].z*lunit; 992 { << 754 } 993 parameter.dimension[3 + i * 3] = zplaneLis << 755 } 994 parameter.dimension[4 + i * 3] = zplaneLis << 756 995 parameter.dimension[5 + i * 3] = zplaneLis << 757 void G4GDMLReadParamvol:: 996 } << 758 ParametersRead(const xercesc::DOMElement* const element) 997 } << 759 { 998 << 760 G4ThreeVector rotation(0.0,0.0,0.0); 999 // ------------------------------------------- << 761 G4ThreeVector position(0.0,0.0,0.0); 1000 void G4GDMLReadParamvol::Polyhedra_dimensions << 762 1001 const xercesc::DOMElement* const element, << 763 G4GDMLParameterisation::PARAMETER parameter; 1002 G4GDMLParameterisation::PARAMETER& paramete << 764 1003 { << 765 for (xercesc::DOMNode* iter = element->getFirstChild(); 1004 G4double lunit = 1.0; << 766 iter != 0; iter = iter->getNextSibling()) 1005 G4double aunit = 1.0; << 767 { 1006 << 768 if (iter->getNodeType() != xercesc::DOMNode::ELEMENT_NODE) { continue; } 1007 std::vector<zplaneType> zplaneList; << 769 1008 << 770 const xercesc::DOMElement* const child 1009 const xercesc::DOMNamedNodeMap* const attri << 771 = dynamic_cast<xercesc::DOMElement*>(iter); 1010 XMLSize_t attributeCount << 772 if (!child) >> 773 { >> 774 G4Exception("G4GDMLReadParamvol::ParametersRead()", >> 775 "InvalidRead", FatalException, "No child found!"); >> 776 return; >> 777 } >> 778 const G4String tag = Transcode(child->getTagName()); >> 779 if (tag=="rotation") { VectorRead(child,rotation); } else >> 780 if (tag=="position") { VectorRead(child,position); } else >> 781 if (tag=="positionref") >> 782 { position = GetPosition(GenerateName(RefRead(child))); } else >> 783 if (tag=="rotationref") >> 784 { rotation = GetRotation(GenerateName(RefRead(child))); } else >> 785 if (tag=="box_dimensions") { Box_dimensionsRead(child,parameter); } else >> 786 if (tag=="trd_dimensions") { Trd_dimensionsRead(child,parameter); } else >> 787 if (tag=="trap_dimensions") { Trap_dimensionsRead(child,parameter); } else >> 788 if (tag=="tube_dimensions") { Tube_dimensionsRead(child,parameter); } else >> 789 if (tag=="cone_dimensions") { Cone_dimensionsRead(child,parameter); } else >> 790 if (tag=="sphere_dimensions") { Sphere_dimensionsRead(child,parameter); } else >> 791 if (tag=="orb_dimensions") { Orb_dimensionsRead(child,parameter); } else >> 792 if (tag=="torus_dimensions") { Torus_dimensionsRead(child,parameter); } else >> 793 if (tag=="ellipsoid_dimensions") { Ellipsoid_dimensionsRead(child,parameter); } else >> 794 if (tag=="para_dimensions") { Para_dimensionsRead(child,parameter); } else >> 795 if (tag=="polycone_dimensions") { Polycone_dimensionsRead(child,parameter); } else >> 796 if (tag=="polyhedra_dimensions") { Polyhedra_dimensionsRead(child,parameter); } else >> 797 if (tag=="hype_dimensions") { Hype_dimensionsRead(child,parameter); } >> 798 else >> 799 { >> 800 G4String error_msg = "Unknown tag in parameters: " + tag; >> 801 G4Exception("G4GDMLReadParamvol::ParametersRead()", "ReadError", >> 802 FatalException, error_msg); >> 803 } >> 804 } >> 805 >> 806 parameter.pRot = new G4RotationMatrix(); >> 807 >> 808 parameter.pRot->rotateX(rotation.x()); >> 809 parameter.pRot->rotateY(rotation.y()); >> 810 parameter.pRot->rotateZ(rotation.z()); >> 811 >> 812 parameter.position = position; >> 813 >> 814 parameterisation->AddParameter(parameter); >> 815 } >> 816 >> 817 void G4GDMLReadParamvol:: >> 818 ParameterisedRead(const xercesc::DOMElement* const element) >> 819 { >> 820 for (xercesc::DOMNode* iter = element->getFirstChild(); >> 821 iter != 0; iter = iter->getNextSibling()) >> 822 { >> 823 if (iter->getNodeType() != xercesc::DOMNode::ELEMENT_NODE) { continue; } >> 824 >> 825 const xercesc::DOMElement* const child >> 826 = dynamic_cast<xercesc::DOMElement*>(iter); >> 827 if (!child) >> 828 { >> 829 G4Exception("G4GDMLReadParamvol::ParameterisedRead()", >> 830 "InvalidRead", FatalException, "No child found!"); >> 831 return; >> 832 } >> 833 const G4String tag = Transcode(child->getTagName()); >> 834 >> 835 if (tag=="parameters") >> 836 { >> 837 const xercesc::DOMNamedNodeMap* const attributes >> 838 = element->getAttributes(); >> 839 XMLSize_t attributeCount = attributes->getLength(); >> 840 for (XMLSize_t attribute_index=0; >> 841 attribute_index<attributeCount; attribute_index++) >> 842 { >> 843 xercesc::DOMNode* attribute_node = attributes->item(attribute_index); 1011 844 1012 for(XMLSize_t attribute_index = 0; attribut << 845 if (attribute_node->getNodeType() != xercesc::DOMNode::ATTRIBUTE_NODE) 1013 ++attribute_index) << 846 { continue; } 1014 { << 1015 xercesc::DOMNode* attribute_node = attrib << 1016 << 1017 if(attribute_node->getNodeType() != xerce << 1018 { << 1019 continue; << 1020 } << 1021 847 1022 const xercesc::DOMAttr* const attribute = << 848 const xercesc::DOMAttr* const attribute 1023 dynamic_cast<xercesc::DOMAttr*>(attribu << 849 = dynamic_cast<xercesc::DOMAttr*>(attribute_node); 1024 if(attribute == nullptr) << 850 if (!attribute) 1025 { << 851 { 1026 G4Exception("G4GDMLReadParamvol::Polyco << 852 G4Exception("G4GDMLReadParamvol::ParameterisedRead()", 1027 "InvalidRead", FatalExcepti << 853 "InvalidRead", FatalException, "No attribute found!"); 1028 return; << 854 return; 1029 } << 855 } 1030 const G4String attName = Transcode(attri << 856 const G4String attName = Transcode(attribute->getName()); 1031 const G4String attValue = Transcode(attri << 857 const G4String attValue = Transcode(attribute->getValue()); 1032 858 1033 if(attName == "lunit") << 859 if (attName=="number") { eval.Evaluate(attValue); } 1034 { << 860 } 1035 lunit = G4UnitDefinition::GetValueOf(at << 861 ParametersRead(child); 1036 if(G4UnitDefinition::GetCategory(attVal << 1037 { << 1038 G4Exception("G4GDMLReadParamvol::Poly << 1039 "InvalidRead", FatalExcep << 1040 } 862 } 1041 } << 863 else 1042 else if(attName == "aunit") << 1043 { << 1044 aunit = G4UnitDefinition::GetValueOf(at << 1045 if(G4UnitDefinition::GetCategory(attVal << 1046 { 864 { 1047 G4Exception("G4GDMLReadParamvol::Poly << 865 if (tag=="loop") { LoopRead(child,&G4GDMLRead::Paramvol_contentRead); } 1048 "InvalidRead", FatalExcep << 1049 } 866 } 1050 } 867 } 1051 else if(attName == "startPhi") << 1052 { << 1053 parameter.dimension[0] = eval.Evaluate( << 1054 } << 1055 else if(attName == "openPhi") << 1056 { << 1057 parameter.dimension[1] = eval.Evaluate( << 1058 } << 1059 else if(attName == "numRZ") << 1060 { << 1061 parameter.dimension[2] = eval.Evaluate( << 1062 } << 1063 else if(attName == "numSide") << 1064 { << 1065 parameter.dimension[3] = eval.Evaluate( << 1066 } << 1067 } << 1068 << 1069 parameter.dimension[0] *= aunit; << 1070 parameter.dimension[1] *= aunit; << 1071 << 1072 for(auto iter = element->getFirstChild(); i << 1073 iter = iter->getNextSibling()) << 1074 { << 1075 if(iter->getNodeType() != xercesc::DOMNod << 1076 { << 1077 continue; << 1078 } << 1079 << 1080 const xercesc::DOMElement* const child = << 1081 dynamic_cast<xercesc::DOMElement*>(iter << 1082 if(child == nullptr) << 1083 { << 1084 G4Exception("G4GDMLReadParamvo::Polyhed << 1085 FatalException, "No child f << 1086 return; << 1087 } << 1088 const G4String tag = Transcode(child->get << 1089 << 1090 if(tag == "zplane") << 1091 { << 1092 zplaneList.push_back(ZplaneRead(child)) << 1093 } << 1094 } << 1095 << 1096 std::size_t numZPlanes = zplaneList.size(); << 1097 for(std::size_t i = 0; i < numZPlanes; ++i) << 1098 { << 1099 parameter.dimension[4 + i * 3] = zplaneLi << 1100 parameter.dimension[5 + i * 3] = zplaneLi << 1101 parameter.dimension[6 + i * 3] = zplaneLi << 1102 } << 1103 } 868 } 1104 869 1105 // ------------------------------------------ << 870 void G4GDMLReadParamvol:: 1106 void G4GDMLReadParamvol::ParametersRead( << 871 Paramvol_contentRead(const xercesc::DOMElement* const element) 1107 const xercesc::DOMElement* const element) << 1108 { 872 { 1109 G4ThreeVector rotation(0.0, 0.0, 0.0); << 873 for (xercesc::DOMNode* iter = element->getFirstChild(); 1110 G4ThreeVector position(0.0, 0.0, 0.0); << 874 iter != 0; iter = iter->getNextSibling()) 1111 << 875 { 1112 G4GDMLParameterisation::PARAMETER parameter << 876 if (iter->getNodeType() != xercesc::DOMNode::ELEMENT_NODE) { continue; } 1113 877 1114 for(xercesc::DOMNode* iter = element->getFi << 878 const xercesc::DOMElement* const child 1115 iter = iter->getNextS << 879 = dynamic_cast<xercesc::DOMElement*>(iter); 1116 { << 880 if (!child) 1117 if(iter->getNodeType() != xercesc::DOMNod << 1118 { << 1119 continue; << 1120 } << 1121 << 1122 const xercesc::DOMElement* const child = << 1123 dynamic_cast<xercesc::DOMElement*>(iter << 1124 if(child == nullptr) << 1125 { << 1126 G4Exception("G4GDMLReadParamvol::Parame << 1127 FatalException, "No child f << 1128 return; << 1129 } << 1130 const G4String tag = Transcode(child->get << 1131 if(tag == "rotation") << 1132 { << 1133 VectorRead(child, rotation); << 1134 } << 1135 else if(tag == "position") << 1136 { << 1137 VectorRead(child, position); << 1138 } << 1139 else if(tag == "positionref") << 1140 { << 1141 position = GetPosition(GenerateName(Ref << 1142 } << 1143 else if(tag == "rotationref") << 1144 { << 1145 rotation = GetRotation(GenerateName(Ref << 1146 } << 1147 else if(tag == "box_dimensions") << 1148 { << 1149 Box_dimensionsRead(child, parameter); << 1150 } << 1151 else if(tag == "trd_dimensions") << 1152 { << 1153 Trd_dimensionsRead(child, parameter); << 1154 } << 1155 else if(tag == "trap_dimensions") << 1156 { << 1157 Trap_dimensionsRead(child, parameter); << 1158 } << 1159 else if(tag == "tube_dimensions") << 1160 { << 1161 Tube_dimensionsRead(child, parameter); << 1162 } << 1163 else if(tag == "cone_dimensions") << 1164 { << 1165 Cone_dimensionsRead(child, parameter); << 1166 } << 1167 else if(tag == "sphere_dimensions") << 1168 { << 1169 Sphere_dimensionsRead(child, parameter) << 1170 } << 1171 else if(tag == "orb_dimensions") << 1172 { << 1173 Orb_dimensionsRead(child, parameter); << 1174 } << 1175 else if(tag == "torus_dimensions") << 1176 { << 1177 Torus_dimensionsRead(child, parameter); << 1178 } << 1179 else if(tag == "ellipsoid_dimensions") << 1180 { << 1181 Ellipsoid_dimensionsRead(child, paramet << 1182 } << 1183 else if(tag == "para_dimensions") << 1184 { << 1185 Para_dimensionsRead(child, parameter); << 1186 } << 1187 else if(tag == "polycone_dimensions") << 1188 { << 1189 Polycone_dimensionsRead(child, paramete << 1190 } << 1191 else if(tag == "polyhedra_dimensions") << 1192 { << 1193 Polyhedra_dimensionsRead(child, paramet << 1194 } << 1195 else if(tag == "hype_dimensions") << 1196 { << 1197 Hype_dimensionsRead(child, parameter); << 1198 } << 1199 else << 1200 { << 1201 G4String error_msg = "Unknown tag in pa << 1202 G4Exception("G4GDMLReadParamvol::Parame << 1203 FatalException, error_msg); << 1204 } << 1205 } << 1206 << 1207 parameter.pRot = new G4RotationMatrix(); << 1208 << 1209 parameter.pRot->rotateX(rotation.x()); << 1210 parameter.pRot->rotateY(rotation.y()); << 1211 parameter.pRot->rotateZ(rotation.z()); << 1212 << 1213 parameter.position = position; << 1214 << 1215 parameterisation->AddParameter(parameter); << 1216 } << 1217 << 1218 // ------------------------------------------ << 1219 void G4GDMLReadParamvol::ParameterisedRead( << 1220 const xercesc::DOMElement* const element) << 1221 { << 1222 for(xercesc::DOMNode* iter = element->getFi << 1223 iter = iter->getNextS << 1224 { << 1225 if(iter->getNodeType() != xercesc::DOMNod << 1226 { << 1227 continue; << 1228 } << 1229 << 1230 const xercesc::DOMElement* const child = << 1231 dynamic_cast<xercesc::DOMElement*>(iter << 1232 if(child == nullptr) << 1233 { << 1234 G4Exception("G4GDMLReadParamvol::Parame << 1235 FatalException, "No child f << 1236 return; << 1237 } << 1238 const G4String tag = Transcode(child->get << 1239 << 1240 if(tag == "parameters") << 1241 { << 1242 const xercesc::DOMNamedNodeMap* const a << 1243 element->getAttributes(); << 1244 XMLSize_t attributeCount = attributes-> << 1245 for(XMLSize_t attribute_index = 0; attr << 1246 ++attribute_index) << 1247 { 881 { 1248 xercesc::DOMNode* attribute_node = at << 882 G4Exception("G4GDMLReadParamvol::Paramvol_contentRead()", "InvalidRead", 1249 << 883 FatalException, "No child found!"); 1250 if(attribute_node->getNodeType() != x << 884 return; 1251 { << 1252 continue; << 1253 } << 1254 << 1255 const xercesc::DOMAttr* const attribu << 1256 dynamic_cast<xercesc::DOMAttr*>(att << 1257 if(attribute == nullptr) << 1258 { << 1259 G4Exception("G4GDMLReadParamvol::Pa << 1260 FatalException, "No att << 1261 return; << 1262 } << 1263 const G4String attName = Transcode(a << 1264 const G4String attValue = Transcode(a << 1265 << 1266 if(attName == "number") << 1267 { << 1268 eval.Evaluate(attValue); << 1269 } << 1270 } << 1271 ParametersRead(child); << 1272 } << 1273 else << 1274 { << 1275 if(tag == "loop") << 1276 { << 1277 LoopRead(child, &G4GDMLRead::Paramvol << 1278 } 885 } >> 886 const G4String tag = Transcode(child->getTagName()); >> 887 if (tag=="parameterised_position_size") { ParameterisedRead(child); }else >> 888 if (tag=="loop") { LoopRead(child,&G4GDMLRead::Paramvol_contentRead); } 1279 } 889 } 1280 } << 1281 } 890 } 1282 891 1283 // ------------------------------------------ << 892 void G4GDMLReadParamvol:: 1284 void G4GDMLReadParamvol::Paramvol_contentRead << 893 ParamvolRead(const xercesc::DOMElement* const element, G4LogicalVolume* mother) 1285 const xercesc::DOMElement* const element) << 1286 { 894 { 1287 for(xercesc::DOMNode* iter = element->getFi << 895 G4String volumeref; 1288 iter = iter->getNextS << 1289 { << 1290 if(iter->getNodeType() != xercesc::DOMNod << 1291 { << 1292 continue; << 1293 } << 1294 896 1295 const xercesc::DOMElement* const child = << 897 parameterisation = new G4GDMLParameterisation(); 1296 dynamic_cast<xercesc::DOMElement*>(iter << 898 for (xercesc::DOMNode* iter = element->getFirstChild(); 1297 if(child == nullptr) << 899 iter != 0; iter = iter->getNextSibling()) 1298 { << 900 { 1299 G4Exception("G4GDMLReadParamvol::Paramv << 901 if (iter->getNodeType() != xercesc::DOMNode::ELEMENT_NODE) { continue; } 1300 FatalException, "No child f << 1301 return; << 1302 } << 1303 const G4String tag = Transcode(child->get << 1304 if(tag == "parameterised_position_size") << 1305 { << 1306 ParameterisedRead(child); << 1307 } << 1308 else if(tag == "loop") << 1309 { << 1310 LoopRead(child, &G4GDMLRead::Paramvol_c << 1311 } << 1312 } << 1313 } << 1314 << 1315 // ------------------------------------------ << 1316 void G4GDMLReadParamvol::ParamvolRead(const x << 1317 G4Logic << 1318 { << 1319 G4String volumeref; << 1320 << 1321 parameterisation = new G4GDMLParameterisati << 1322 for(xercesc::DOMNode* iter = element->getFi << 1323 iter = iter->getNextS << 1324 { << 1325 if(iter->getNodeType() != xercesc::DOMNod << 1326 { << 1327 continue; << 1328 } << 1329 902 1330 const xercesc::DOMElement* const child = << 903 const xercesc::DOMElement* const child 1331 dynamic_cast<xercesc::DOMElement*>(iter << 904 = dynamic_cast<xercesc::DOMElement*>(iter); 1332 if(child == nullptr) << 905 if (!child) 1333 { << 906 { 1334 G4Exception("G4GDMLReadParamvol::Paramv << 907 G4Exception("G4GDMLReadParamvol::ParamvolRead()", "InvalidRead", 1335 FatalException, "No child f << 908 FatalException, "No child found!"); 1336 return; << 909 return; 1337 } << 910 } 1338 const G4String tag = Transcode(child->get << 911 const G4String tag = Transcode(child->getTagName()); 1339 912 1340 if(tag == "volumeref") << 913 if (tag=="volumeref") { volumeref = RefRead(child); } 1341 { << 914 1342 volumeref = RefRead(child); << 915 } 1343 } << 1344 } << 1345 916 1346 Paramvol_contentRead(element); << 917 Paramvol_contentRead(element); 1347 918 1348 G4LogicalVolume* logvol = GetVolume(Generat << 919 G4LogicalVolume* logvol = GetVolume(GenerateName(volumeref)); 1349 920 1350 if(parameterisation->GetSize() == 0) << 921 if (parameterisation->GetSize()==0) 1351 { << 922 { 1352 G4Exception("G4GDMLReadParamvol::Paramvol << 923 G4Exception("G4GDMLReadParamvol::ParamvolRead()", 1353 FatalException, << 924 "ReadError", FatalException, 1354 "No parameters are defined in << 925 "No parameters are defined in parameterised volume!"); 1355 } << 926 } 1356 G4String pv_name = logvol->GetName() + "_pa << 927 G4String pv_name = logvol->GetName() + "_param"; 1357 new G4PVParameterised(pv_name, logvol, moth << 928 new G4PVParameterised(pv_name, logvol, mother, kUndefined, 1358 parameterisation->Get << 929 parameterisation->GetSize(), parameterisation, check); 1359 } 930 } 1360 931