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 //-------------------------------------------- 26 //-------------------------------------------------------------------------- 27 // File and Version Information: 27 // File and Version Information: 28 // 28 // 29 // Description: 29 // Description: 30 // Create a HepRep XML File (HepRep version 1 30 // Create a HepRep XML File (HepRep version 1). 31 // 31 // 32 // Environment: 32 // Environment: 33 // Software developed for the general High En 33 // Software developed for the general High Energy Physics community. 34 // 34 // 35 // Author : 35 // Author : 36 // J. Perl Original A 36 // J. Perl Original Author 37 // 37 // 38 // Copyright Information: 38 // Copyright Information: 39 // Copyright (C) 2001 Stanford L 39 // Copyright (C) 2001 Stanford Linear Accelerator Center 40 //-------------------------------------------- 40 //------------------------------------------------------------------------ 41 41 42 #include "G4HepRepFileXMLWriter.hh" 42 #include "G4HepRepFileXMLWriter.hh" 43 43 44 #include "G4HepRepMessenger.hh" 44 #include "G4HepRepMessenger.hh" 45 #include "G4ios.hh" 45 #include "G4ios.hh" 46 46 47 G4HepRepFileXMLWriter::G4HepRepFileXMLWriter() 47 G4HepRepFileXMLWriter::G4HepRepFileXMLWriter() 48 { 48 { 49 isOpen = false; 49 isOpen = false; 50 init(); 50 init(); 51 } 51 } 52 52 53 void G4HepRepFileXMLWriter::init() 53 void G4HepRepFileXMLWriter::init() 54 { 54 { 55 typeDepth = -1; 55 typeDepth = -1; 56 56 57 int i = -1; 57 int i = -1; 58 while(i++ < 49) << 58 while (i++<49) { 59 { << 60 prevTypeName[i] = new char[1]; 59 prevTypeName[i] = new char[1]; 61 strcpy(prevTypeName[i], ""); << 60 strcpy(prevTypeName[i],""); 62 61 63 inType[i] = false; << 62 inType[i] = false; 64 inInstance[i] = false; 63 inInstance[i] = false; 65 } 64 } 66 65 67 inPrimitive = false; 66 inPrimitive = false; 68 inPoint = false; << 67 inPoint = false; 69 } 68 } 70 69 71 void G4HepRepFileXMLWriter::addType(const char << 70 void G4HepRepFileXMLWriter::addType(const char* name,int newTypeDepth) 72 { 71 { 73 if(fout.good()) << 72 if (fout.good()) 74 { 73 { 75 // Flatten structure if it exceeds maximum 74 // Flatten structure if it exceeds maximum allowed typeDepth of 49. 76 if(newTypeDepth > 49) << 75 if (newTypeDepth > 49) 77 newTypeDepth = 49; 76 newTypeDepth = 49; 78 77 79 if(newTypeDepth < 0) << 78 if (newTypeDepth < 0) 80 newTypeDepth = 0; 79 newTypeDepth = 0; 81 80 82 // Insert any layers that are missing from 81 // Insert any layers that are missing from the hierarchy (protects against 83 // callers that skip from, say, layer 1 to 82 // callers that skip from, say, layer 1 to layer 3 with no layer 2). 84 while(typeDepth < (newTypeDepth - 1)) << 83 while (typeDepth < (newTypeDepth-1)) { 85 { << 86 addType("Layer Inserted by G4HepRepFileX 84 addType("Layer Inserted by G4HepRepFileXMLWriter", typeDepth + 1); 87 addInstance(); 85 addInstance(); 88 } 86 } 89 87 90 // If moving closer to the root, close pre 88 // If moving closer to the root, close previously open types. 91 while(newTypeDepth < typeDepth) << 89 while (newTypeDepth<typeDepth) 92 endType(); 90 endType(); 93 91 94 // Close any remaining primitives of the c 92 // Close any remaining primitives of the current instance. 95 endPrimitive(); 93 endPrimitive(); 96 94 97 // If this is a new type name for the curr 95 // If this is a new type name for the current depth, declare the 98 // new Type. Otherwise, it is just anothe 96 // new Type. Otherwise, it is just another Instance of the current Type. 99 if(strcmp(name, prevTypeName[newTypeDepth] << 97 if (strcmp(name,prevTypeName[newTypeDepth])!=0) 100 { 98 { 101 if(inType[newTypeDepth]) << 99 if (inType[newTypeDepth]) 102 endType(); << 100 endType(); 103 101 104 prevTypeName[newTypeDepth] = new char[st << 102 prevTypeName[newTypeDepth] = new char[strlen(name)+1]; 105 strcpy(prevTypeName[newTypeDepth], name) << 103 strcpy(prevTypeName[newTypeDepth],name); 106 104 107 inType[newTypeDepth] = true; 105 inType[newTypeDepth] = true; 108 indent(); 106 indent(); 109 fout << "<heprep:type version=\"null\" n 107 fout << "<heprep:type version=\"null\" name=\"" << name << "\">" 110 << G4endl; << 108 << G4endl; 111 109 112 typeDepth = newTypeDepth; 110 typeDepth = newTypeDepth; 113 } 111 } 114 } << 112 } else { 115 else << 116 { << 117 #ifdef G4HEPREPFILEDEBUG 113 #ifdef G4HEPREPFILEDEBUG 118 G4cout << "G4HepRepFileXMLWriter:addType N << 114 G4cout << "G4HepRepFileXMLWriter:addType No file is currently open." << G4endl; 119 << G4endl; << 120 #endif 115 #endif 121 } 116 } 122 } 117 } 123 118 124 void G4HepRepFileXMLWriter::addInstance() 119 void G4HepRepFileXMLWriter::addInstance() 125 { 120 { 126 if(fout.good()) << 121 if (fout.good()) 127 { 122 { 128 if(inType[typeDepth]) << 123 if (inType[typeDepth]) 129 { 124 { 130 endInstance(); 125 endInstance(); 131 inInstance[typeDepth] = true; 126 inInstance[typeDepth] = true; 132 indent(); 127 indent(); 133 fout << "<heprep:instance>" << G4endl; 128 fout << "<heprep:instance>" << G4endl; 134 } << 129 } else { 135 else << 136 { << 137 #ifdef G4HEPREPFILEDEBUG 130 #ifdef G4HEPREPFILEDEBUG 138 G4cout << 131 G4cout << "G4HepRepFileXMLWriter:addInstance No HepRep Type is currently open" << G4endl; 139 << "G4HepRepFileXMLWriter:addInstance << 140 << G4endl; << 141 #endif 132 #endif 142 } 133 } 143 } << 134 } else { 144 else << 145 { << 146 #ifdef G4HEPREPFILEDEBUG 135 #ifdef G4HEPREPFILEDEBUG 147 G4cout << "G4HepRepFileXMLWriter:addInstan << 136 G4cout << "G4HepRepFileXMLWriter:addInstance No file is currently open" << G4endl; 148 << G4endl; << 149 #endif 137 #endif 150 } 138 } 151 } 139 } 152 140 153 void G4HepRepFileXMLWriter::addPrimitive() 141 void G4HepRepFileXMLWriter::addPrimitive() 154 { 142 { 155 if(fout.good()) << 143 if (fout.good()) 156 { 144 { 157 if(inInstance[typeDepth]) << 145 if (inInstance[typeDepth]) 158 { 146 { 159 endPrimitive(); 147 endPrimitive(); 160 inPrimitive = true; 148 inPrimitive = true; 161 indent(); 149 indent(); 162 fout << "<heprep:primitive>" << G4endl; 150 fout << "<heprep:primitive>" << G4endl; 163 } << 151 } else { 164 else << 165 { << 166 #ifdef G4HEPREPFILEDEBUG 152 #ifdef G4HEPREPFILEDEBUG 167 G4cout << "G4HepRepFileXMLWriter:addPrim << 153 G4cout << "G4HepRepFileXMLWriter:addPrimitive No HepRep Instance is currently open" << G4endl; 168 "currently open" << 169 << G4endl; << 170 #endif 154 #endif 171 } 155 } 172 } << 156 } else { 173 else << 174 { << 175 #ifdef G4HEPREPFILEDEBUG 157 #ifdef G4HEPREPFILEDEBUG 176 G4cout << "G4HepRepFileXMLWriter:addPrimit << 158 G4cout << "G4HepRepFileXMLWriter:addPrimitive No file is currently open" << G4endl; 177 << G4endl; << 178 #endif 159 #endif 179 } 160 } 180 } 161 } 181 162 182 void G4HepRepFileXMLWriter::addPoint(double x, 163 void G4HepRepFileXMLWriter::addPoint(double x, double y, double z) 183 { 164 { 184 if(fout.good()) << 165 if (fout.good()) 185 { 166 { 186 if(inPrimitive) << 167 if (inPrimitive) 187 { 168 { 188 endPoint(); 169 endPoint(); 189 inPoint = true; 170 inPoint = true; 190 indent(); 171 indent(); 191 << 172 192 // Include scale and center values << 173 // Include scale and center values 193 G4HepRepMessenger* messenger = G4HepRepM << 174 G4HepRepMessenger* messenger = G4HepRepMessenger::GetInstance(); 194 G4double scale = messenger << 175 G4double scale = messenger->getScale(); 195 G4ThreeVector center = messenger << 176 G4ThreeVector center = messenger->getCenter(); 196 G4double xNew = scale * ( << 177 G4double xNew = scale * ( x - center.x()); 197 G4double yNew = scale * ( << 178 G4double yNew = scale * ( y - center.y()); 198 G4double zNew = scale * ( << 179 G4double zNew = scale * ( z - center.z()); 199 << 180 200 fout << "<heprep:point x=\"" << xNew << << 181 fout << "<heprep:point x=\"" << xNew << "\" y=\"" << yNew << "\" z=\"" << zNew << "\">" << G4endl; 201 << zNew << "\">" << G4endl; << 182 } else { 202 } << 203 else << 204 { << 205 #ifdef G4HEPREPFILEDEBUG 183 #ifdef G4HEPREPFILEDEBUG 206 G4cout << "G4HepRepFileXMLWriter:addPoin << 184 G4cout << "G4HepRepFileXMLWriter:addPoint No HepRep Primitive is currently open" << G4endl; 207 "currently open" << 208 << G4endl; << 209 #endif 185 #endif 210 } 186 } 211 } << 187 } else { 212 else << 213 { << 214 #ifdef G4HEPREPFILEDEBUG 188 #ifdef G4HEPREPFILEDEBUG 215 G4cout << "G4HepRepFileXMLWriter:addPoint << 189 G4cout << "G4HepRepFileXMLWriter:addPoint No file is currently open" << G4endl; 216 << G4endl; << 217 #endif 190 #endif 218 } 191 } 219 } 192 } 220 193 221 void G4HepRepFileXMLWriter::addAttDef(const ch << 194 void G4HepRepFileXMLWriter::addAttDef(const char* name, 222 const ch << 195 const char* desc, >> 196 const char* type, >> 197 const char* extra) 223 { 198 { 224 if(fout.good()) << 199 if (fout.good()) 225 { 200 { 226 indent(); 201 indent(); 227 fout << " <heprep:attdef extra=\"" << ext << 202 fout << " <heprep:attdef extra=\"" << extra << "\" name=\"" << name << "\" type=\"" << type << "\"" << G4endl; 228 << "\" type=\"" << type << "\"" << G4 << 229 indent(); 203 indent(); 230 fout << " desc=\"" << desc << "\"/>" << G 204 fout << " desc=\"" << desc << "\"/>" << G4endl; 231 } << 205 } else { 232 else << 233 { << 234 #ifdef G4HEPREPFILEDEBUG 206 #ifdef G4HEPREPFILEDEBUG 235 G4cout << "G4HepRepFileXMLWriter:addAttDef << 207 G4cout << "G4HepRepFileXMLWriter:addAttDef No file is currently open" << G4endl; 236 << G4endl; << 237 #endif 208 #endif 238 } 209 } 239 } 210 } 240 211 241 // Four methods to fill attValues 212 // Four methods to fill attValues 242 void G4HepRepFileXMLWriter::addAttValue(const << 213 void G4HepRepFileXMLWriter::addAttValue (const char* name, >> 214 const char* value) 243 { 215 { 244 if(fout.good()) << 216 if (fout.good()) 245 { 217 { 246 indent(); 218 indent(); 247 fout << " <heprep:attvalue showLabel=\"NO << 219 fout << " <heprep:attvalue showLabel=\"NONE\" name=\"" << name << "\"" << G4endl; 248 << G4endl; << 249 indent(); 220 indent(); 250 fout << " value=\"" << value << "\"/>" 221 fout << " value=\"" << value << "\"/>" << G4endl; 251 } << 222 } else { 252 else << 253 { << 254 #ifdef G4HEPREPFILEDEBUG 223 #ifdef G4HEPREPFILEDEBUG 255 G4cout << "G4HepRepFileXMLWriter:addAttVal << 224 G4cout << "G4HepRepFileXMLWriter:addAttValue No file is currently open" << G4endl; 256 << G4endl; << 257 #endif 225 #endif 258 } 226 } 259 } 227 } 260 228 261 void G4HepRepFileXMLWriter::addAttValue(const << 229 void G4HepRepFileXMLWriter::addAttValue (const char* name, >> 230 double value) 262 { 231 { 263 if(fout.good()) << 232 if (fout.good()) 264 { 233 { 265 indent(); 234 indent(); 266 fout << " <heprep:attvalue showLabel=\"NO << 235 fout << " <heprep:attvalue showLabel=\"NONE\" name=\"" << name << "\"" << G4endl; 267 << G4endl; << 268 indent(); 236 indent(); 269 fout << " value=\"" << value << "\"/>" 237 fout << " value=\"" << value << "\"/>" << G4endl; 270 } << 238 } else { 271 else << 272 { << 273 #ifdef G4HEPREPFILEDEBUG 239 #ifdef G4HEPREPFILEDEBUG 274 G4cout << "G4HepRepFileXMLWriter:addAttVal << 240 G4cout << "G4HepRepFileXMLWriter:addAttValue No file is currently open" << G4endl; 275 << G4endl; << 276 #endif 241 #endif 277 } 242 } 278 } 243 } 279 244 280 void G4HepRepFileXMLWriter::addAttValue(const << 245 void G4HepRepFileXMLWriter::addAttValue (const char* name, >> 246 int value) 281 { 247 { 282 if(fout.good()) << 248 if (fout.good()) 283 { 249 { 284 indent(); 250 indent(); 285 fout << " <heprep:attvalue showLabel=\"NO << 251 fout << " <heprep:attvalue showLabel=\"NONE\" name=\"" << name << "\"" << G4endl; 286 << G4endl; << 287 indent(); 252 indent(); 288 fout << " value=\"" << value << "\"/>" 253 fout << " value=\"" << value << "\"/>" << G4endl; 289 } << 254 } else { 290 else << 291 { << 292 #ifdef G4HEPREPFILEDEBUG 255 #ifdef G4HEPREPFILEDEBUG 293 G4cout << "G4HepRepFileXMLWriter:addAttVal << 256 G4cout << "G4HepRepFileXMLWriter:addAttValue No file is currently open" << G4endl; 294 << G4endl; << 295 #endif 257 #endif 296 } 258 } 297 } 259 } 298 260 299 void G4HepRepFileXMLWriter::addAttValue(const << 261 void G4HepRepFileXMLWriter::addAttValue (const char* name, >> 262 bool value) 300 { 263 { 301 if(fout.good()) << 264 if (fout.good()) 302 { 265 { 303 indent(); 266 indent(); 304 fout << " <heprep:attvalue showLabel=\"NO << 267 fout << " <heprep:attvalue showLabel=\"NONE\" name=\"" << name << "\"" << G4endl; 305 << G4endl; << 306 indent(); 268 indent(); 307 if(value) << 269 if (value) 308 fout << " value=\"True\"/>" << G4endl 270 fout << " value=\"True\"/>" << G4endl; 309 else 271 else 310 fout << " value=\"False\"/>" << G4end 272 fout << " value=\"False\"/>" << G4endl; 311 } << 273 } else { 312 else << 313 { << 314 #ifdef G4HEPREPFILEDEBUG 274 #ifdef G4HEPREPFILEDEBUG 315 G4cout << "G4HepRepFileXMLWriter:addAttVal << 275 G4cout << "G4HepRepFileXMLWriter:addAttValue No file is currently open" << G4endl; 316 << G4endl; << 317 #endif 276 #endif 318 } 277 } 319 } 278 } 320 279 321 void G4HepRepFileXMLWriter::addAttValue(const << 280 void G4HepRepFileXMLWriter::addAttValue (const char* name, 322 double << 281 double value1, >> 282 double value2, >> 283 double value3) 323 { 284 { 324 if(fout.good()) << 285 if (fout.good()) 325 { 286 { 326 int redness = int(value1 * 255.); << 287 int redness = int(value1*255.); 327 int greenness = int(value2 * 255.); << 288 int greenness = int(value2*255.); 328 int blueness = int(value3 * 255.); << 289 int blueness = int(value3*255.); 329 indent(); 290 indent(); 330 fout << " <heprep:attvalue showLabel=\"NO << 291 fout << " <heprep:attvalue showLabel=\"NONE\" name=\"" << name << "\"" << G4endl; 331 << G4endl; << 332 indent(); 292 indent(); 333 fout << " value=\"" << redness << "," < << 293 fout << " value=\"" << redness << "," << greenness << "," << blueness << "\"/>" << G4endl; 334 << "\"/>" << G4endl; << 294 } else { 335 } << 336 else << 337 { << 338 #ifdef G4HEPREPFILEDEBUG 295 #ifdef G4HEPREPFILEDEBUG 339 G4cout << "G4HepRepFileXMLWriter:addAttVal << 296 G4cout << "G4HepRepFileXMLWriter:addAttValue No file is currently open" << G4endl; 340 << G4endl; << 341 #endif 297 #endif 342 } 298 } 343 } 299 } 344 300 345 void G4HepRepFileXMLWriter::open(const char* f 301 void G4HepRepFileXMLWriter::open(const char* fileSpec) 346 { 302 { 347 if(isOpen) << 303 if (isOpen) 348 close(); 304 close(); 349 << 305 350 fout.open(fileSpec); 306 fout.open(fileSpec); 351 << 307 352 if(fout.good()) << 308 if (fout.good()) { 353 { << 354 fout << "<?xml version=\"1.0\" ?>" << G4en 309 fout << "<?xml version=\"1.0\" ?>" << G4endl; 355 fout << "<heprep:heprep " << 310 fout << "<heprep:heprep xmlns:heprep=\"http://www.slac.stanford.edu/~perl/heprep/\"" << G4endl; 356 "xmlns:heprep=\"http://www.slac.st << 311 fout << " xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\" xsi:schemaLocation=\"HepRep.xsd\">" << G4endl; 357 << G4endl; << 312 358 fout << " xmlns:xsi=\"http://www.w3.org/1 << 359 "xsi:schemaLocation=\"HepRep.xsd\" << 360 << G4endl; << 361 << 362 isOpen = true; 313 isOpen = true; 363 init(); 314 init(); 364 } << 315 } else { 365 else << 316 G4cout << "G4HepRepFileXMLWriter:open Unable to write to file " << fileSpec << G4endl; 366 { << 367 G4cout << "G4HepRepFileXMLWriter:open Unab << 368 << G4endl; << 369 } 317 } 370 } 318 } 371 319 372 void G4HepRepFileXMLWriter::close() 320 void G4HepRepFileXMLWriter::close() 373 { 321 { 374 // Close any remaining open Types 322 // Close any remaining open Types 375 endTypes(); 323 endTypes(); 376 324 377 if(fout.good()) << 325 if (fout.good()) { 378 { << 379 fout << "</heprep:heprep>" << G4endl; 326 fout << "</heprep:heprep>" << G4endl; 380 fout.close(); << 327 fout.close( ); 381 isOpen = false; 328 isOpen = false; 382 } << 329 } else { 383 else << 384 { << 385 G4cout << "G4HepRepFileXMLWriter:close No 330 G4cout << "G4HepRepFileXMLWriter:close No file is currently open" << G4endl; 386 } 331 } 387 } 332 } 388 333 389 void G4HepRepFileXMLWriter::endTypes() 334 void G4HepRepFileXMLWriter::endTypes() 390 { 335 { 391 // Close any remaining open Types 336 // Close any remaining open Types 392 while(typeDepth > -1) << 337 while(typeDepth>-1) 393 endType(); << 338 endType(); 394 } 339 } 395 340 396 void G4HepRepFileXMLWriter::endType() 341 void G4HepRepFileXMLWriter::endType() 397 { 342 { 398 endInstance(); 343 endInstance(); 399 indent(); 344 indent(); 400 fout << "</heprep:type>" << G4endl; 345 fout << "</heprep:type>" << G4endl; 401 inType[typeDepth] = false; 346 inType[typeDepth] = false; 402 delete[] prevTypeName[typeDepth]; << 347 delete [] prevTypeName[typeDepth]; 403 prevTypeName[typeDepth] = new char[1]; 348 prevTypeName[typeDepth] = new char[1]; 404 strcpy(prevTypeName[typeDepth], ""); << 349 strcpy(prevTypeName[typeDepth],""); 405 typeDepth--; 350 typeDepth--; 406 } 351 } 407 352 408 void G4HepRepFileXMLWriter::endInstance() 353 void G4HepRepFileXMLWriter::endInstance() 409 { 354 { 410 if(inInstance[typeDepth]) << 355 if (inInstance[typeDepth]) 411 { 356 { 412 endPrimitive(); 357 endPrimitive(); 413 indent(); 358 indent(); 414 fout << "</heprep:instance>" << G4endl; 359 fout << "</heprep:instance>" << G4endl; 415 inInstance[typeDepth] = false; 360 inInstance[typeDepth] = false; 416 } 361 } 417 } 362 } 418 363 419 void G4HepRepFileXMLWriter::endPrimitive() 364 void G4HepRepFileXMLWriter::endPrimitive() 420 { 365 { 421 if(inPrimitive) << 366 if (inPrimitive) 422 { 367 { 423 endPoint(); 368 endPoint(); 424 indent(); 369 indent(); 425 fout << "</heprep:primitive>" << G4endl; 370 fout << "</heprep:primitive>" << G4endl; 426 inPrimitive = false; 371 inPrimitive = false; 427 } 372 } 428 } 373 } 429 374 430 void G4HepRepFileXMLWriter::endPoint() 375 void G4HepRepFileXMLWriter::endPoint() 431 { 376 { 432 if(inPoint) << 377 if (inPoint) 433 { 378 { 434 indent(); 379 indent(); 435 fout << "</heprep:point>" << G4endl; 380 fout << "</heprep:point>" << G4endl; 436 inPoint = false; 381 inPoint = false; 437 } 382 } 438 } 383 } 439 384 440 void G4HepRepFileXMLWriter::indent() 385 void G4HepRepFileXMLWriter::indent() 441 { 386 { 442 if(fout.good()) << 387 if (fout.good()) 443 { 388 { 444 int i = 0; 389 int i = 0; 445 while(inType[i] && i < 12) << 390 while (inType[i] && i<12) { 446 { << 447 fout << " "; 391 fout << " "; 448 if(inInstance[i]) << 392 if (inInstance[i]) 449 fout << " "; 393 fout << " "; 450 i++; 394 i++; 451 } 395 } 452 396 453 if(inPrimitive) << 397 if (inPrimitive) 454 fout << " "; 398 fout << " "; 455 if(inPoint) << 399 if (inPoint) 456 fout << " "; 400 fout << " "; 457 } 401 } 458 } 402 } 459 403