Loading...
Searching...
No Matches
DicomBeamDevice.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26#include "DicomBeamDevice.hh"
27#include "dcmtk/dcmrt/seq/drtrbs8.h" // DRTReferencedBeamSequenceInRTFractionSchemeModule
28#include "globals.hh"
29
30//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31DicomBeamDevice::DicomBeamDevice(DRTBeamLimitingDeviceSequenceInRTBeamsModule::Item bldsItem)
32{
33 OFString fstr;
34 Sint32 fint;
35 Float64 ffloat;
36 OFVector<Float64> fvfloat;
37
38 bldsItem.getRTBeamLimitingDeviceType(fstr);
39 G4cout << " " << " RTBeamLimitingDeviceType " << fstr << G4endl;
40 SetType(fstr);
41 bldsItem.getSourceToBeamLimitingDeviceDistance(ffloat);
42 G4cout << " " << " SourceToBeamLimitingDeviceDistance " << ffloat << G4endl;
44 bldsItem.getNumberOfLeafJawPairs(fint);
46 G4cout << " " << " NumberOfLeafJawPairs " << fint << G4endl;
47 bldsItem.getLeafPositionBoundaries(fvfloat);
48 if( fint != 1 ) fint++;
49 for( int ii = 0; ii < fint; ii++ ) {
50 G4cout << " " << ii << " LeafPositionBoundaries " << fvfloat[ii] << G4endl;
51 AddPositionBoundary(fvfloat[ii]);
52 }
53}
54
55//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56DicomBeamDevice::DicomBeamDevice(DRTBeamLimitingDevicePositionSequence::Item bldpsItem)
57{
58 OFString fstr;
59 Float64 ffloat;
60
61 bldpsItem.getRTBeamLimitingDeviceType(fstr);
62 G4cout << " " << " BeamLimitingDeviceType " << fstr << G4endl;
63 SetType(fstr);
64 for(size_t ii = 0;; ii++ ){
65 if( bldpsItem.getLeafJawPositions(ffloat,ii) == EC_Normal ){
66 G4cout << " " << ii << " LeafPositionBoundaries " << ffloat << G4endl;
67 AddPositionBoundary(ffloat);
68 } else {
69 break;
70 }
71 }
72}
73
74//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
75void DicomBeamDevice::Print( std::ostream& )
76{
77
78}
void SetSourceToBeamLimitingDeviceDistance(Float64 dat)
void AddPositionBoundary(Float64 dat)
void SetType(OFString dat)
DicomBeamDevice(DRTBeamLimitingDeviceSequenceInRTBeamsModule::Item bldsItem)
void SetNumberOfLeafJawPairs(Sint32 dat)
void Print(std::ostream &out)

Applications | User Support | Publications | Collaboration