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 "DicomBeamDeviceRef.hh" 27 28 #include "dcmtk/dcmrt/seq/drtrbs8.h" // DRTRe 29 30 #include "globals.hh" 31 32 //....oooOO0OOooo........oooOO0OOooo........oo 33 DicomBeamDeviceRef::DicomBeamDeviceRef(DRTBeam 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 void DicomBeamDeviceRef::DumpToFile(std::ofstr 62 { 63 fout << ":P " << theType << "_Z " << theSour 64 65 /* if( theType == "MLCX" || theType == "MLC 66 G4int nLeafs = theNumberOfLeafJawPairs; 67 for( G4int jj = 0; jj < nLeafs; jj++ ){ 68 fout << ":P " << theType << "_" + std::t 69 << thePositionBoundaries[jj] << G4e 70 } 71 }*/ 72 } 73 74 //....oooOO0OOooo........oooOO0OOooo........oo 75 void DicomBeamDeviceRef::Print(std::ostream&) 76