Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 #include "DicomBeamDevice.hh" 27 28 #include "dcmtk/dcmrt/seq/drtrbs8.h" // DRTRe 29 30 #include "globals.hh" 31 32 //....oooOO0OOooo........oooOO0OOooo........oo 33 DicomBeamDevice::DicomBeamDevice(DRTBeamLimiti 34 { 35 OFString fstr; 36 Sint32 fint; 37 Float64 ffloat; 38 OFVector<Float64> fvfloat; 39 40 bldsItem.getRTBeamLimitingDeviceType(fstr); 41 G4cout << " " 42 << " RTBeamLimitingDeviceType " << fs 43 SetType(fstr); 44 bldsItem.getSourceToBeamLimitingDeviceDistan 45 G4cout << " " 46 << " SourceToBeamLimitingDeviceDistan 47 SetSourceToBeamLimitingDeviceDistance(ffloat 48 bldsItem.getNumberOfLeafJawPairs(fint); 49 SetNumberOfLeafJawPairs(fint); 50 G4cout << " " 51 << " NumberOfLeafJawPairs " << fint < 52 bldsItem.getLeafPositionBoundaries(fvfloat); 53 if (fint != 1) fint++; 54 for (int ii = 0; ii < fint; ii++) { 55 G4cout << " " << ii << " LeafPositionBou 56 AddPositionBoundary(fvfloat[ii]); 57 } 58 } 59 60 //....oooOO0OOooo........oooOO0OOooo........oo 61 DicomBeamDevice::DicomBeamDevice(DRTBeamLimiti 62 { 63 OFString fstr; 64 Float64 ffloat; 65 66 bldpsItem.getRTBeamLimitingDeviceType(fstr); 67 G4cout << " " 68 << " BeamLimitingDeviceType " << fstr 69 SetType(fstr); 70 for (size_t ii = 0;; ii++) { 71 if (bldpsItem.getLeafJawPositions(ffloat, 72 G4cout << " " << ii << " LeafPosition 73 AddPositionBoundary(ffloat); 74 } 75 else { 76 break; 77 } 78 } 79 } 80 81 //....oooOO0OOooo........oooOO0OOooo........oo 82 void DicomBeamDevice::Print(std::ostream&) {} 83