Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DicomBeamDeviceRef.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 "DicomBeamDeviceRef.hh"
27 #include "dcmtk/dcmrt/seq/drtrbs8.h" // DRTReferencedBeamSequenceInRTFractionSchemeModule
28 #include "globals.hh"
29 
30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31 DicomBeamDeviceRef::DicomBeamDeviceRef(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......
56 void DicomBeamDeviceRef::DumpToFile( std::ofstream& fout )
57 {
58 
59  fout << ":P " << theType << "_Z " << theSourceToBeamLimitingDeviceDistance << G4endl;
60 
61  /* if( theType == "MLCX" || theType == "MLCY" ) {
62  G4int nLeafs = theNumberOfLeafJawPairs;
63  for( G4int jj = 0; jj < nLeafs; jj++ ){
64  fout << ":P " << theType << "_" + std::to_string(jj+1) + "_CROSS "
65  << thePositionBoundaries[jj] << G4endl;
66  }
67  }*/
68 
69 }
70 
71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72 void DicomBeamDeviceRef::Print( std::ostream& )
73 {
74 
75 }
DicomBeamDeviceRef(DRTBeamLimitingDeviceSequenceInRTBeamsModule::Item bldsItem)
G4GLOB_DLL std::ostream G4cout
void AddPositionBoundary(Float64 dat)
void SetNumberOfLeafJawPairs(Sint32 dat)
void SetType(OFString dat)
void Print(std::ostream &out)
void DumpToFile(std::ofstream &out)
#define G4endl
Definition: G4ios.hh:61
void SetSourceToBeamLimitingDeviceDistance(Float64 dat)