EGSnrc C++ class library  Report PIRS-898 (2021)
Iwan Kawrakow, Ernesto Mainegra-Hing, Frederic Tessier, Reid Townson and Blake Walters
egs_cylinders.cpp
Go to the documentation of this file.
1 /*
2 ###############################################################################
3 #
4 # EGSnrc egs++ cylinder geometry
5 # Copyright (C) 2015 National Research Council Canada
6 #
7 # This file is part of EGSnrc.
8 #
9 # EGSnrc is free software: you can redistribute it and/or modify it under
10 # the terms of the GNU Affero General Public License as published by the
11 # Free Software Foundation, either version 3 of the License, or (at your
12 # option) any later version.
13 #
14 # EGSnrc is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 # FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
17 # more details.
18 #
19 # You should have received a copy of the GNU Affero General Public License
20 # along with EGSnrc. If not, see <http://www.gnu.org/licenses/>.
21 #
22 ###############################################################################
23 #
24 # Author: Iwan Kawrakow, 2005
25 #
26 # Contributors: Frederic Tessier
27 # Marc Chamberland
28 # Reid Townson
29 #
30 ###############################################################################
31 */
32 
33 
39 #include "egs_cylinders.h"
40 #include "egs_input.h"
41 
42 extern "C" {
43 
44  EGS_CYLINDERS_EXPORT EGS_BaseGeometry *createGeometry(EGS_Input *input) {
45  // check for valid input
46  if (!input) {
47  egsWarning("createGeometry(cylinders): null input?\n");
48  return 0;
49  }
50  string type;
51  int err = input->getInput("type",type);
52  if (err) {
53  egsWarning("createGeometry(cylinders): missing type key\n");
54  return 0;
55  }
56 
57  // point on cylinder axis
58  EGS_Vector xo;
59  vector<EGS_Float> Xo;
60  err = input->getInput("midpoint",Xo);
61  if (!err && Xo.size() == 3) {
62  xo = EGS_Vector(Xo[0],Xo[1],Xo[2]);
63  }
64 
65  // cylinder radii
66  vector<EGS_Float> radii;
67  err = input->getInput("radii",radii);
68  if (err) {
69  egsWarning("createGeometry(cylinders): wrong/missing 'radii' input\n");
70  return 0;
71  }
72  EGS_Float *r=new EGS_Float [radii.size()];
73  for (int i=0; i<radii.size(); i++) {
74  r[i]=radii[i];
75  }
76 
77  // select geometry
79  if (type == "EGS_XCylinders") {
80  g = new EGS_CylindersX(radii.size(),r,xo,"",EGS_XProjector("EGS_XCylinders"));
81  }
82  else if (type == "EGS_YCylinders") {
83  g = new EGS_CylindersY(radii.size(),r,xo,"",EGS_YProjector("EGS_YCylinders"));
84  }
85  else if (type == "EGS_ZCylinders") {
86  g = new EGS_CylindersZ(radii.size(),r,xo,"",EGS_ZProjector("EGS_ZCylinders"));
87  }
88  else {
89  vector<EGS_Float> a;
90  err = input->getInput("axis",a);
91  if (err || a.size() != 3) {
92  egsWarning("createGeometry(cylinders): missing/wrong axis input\n");
93  return 0;
94  }
95  egsWarning("got axis (%g,%g,%g)\n",a[0],a[1],a[2]);
96  g = new EGS_Cylinders(radii.size(),r,xo,"",
97  EGS_Projector(EGS_Vector(a[0],a[1],a[2]),""));
98  }
99  g->setName(input);
100  g->setBoundaryTolerance(input);
101  g->setMedia(input);
102  g->setLabels(input);
103  return g;
104  }
105 
106 }
Base geometry class. Every geometry class must be derived from EGS_BaseGeometry.
void setMedia(EGS_Input *inp)
Set the media in the geometry from the input pointed to by inp.
void setName(EGS_Input *inp)
Set the name of the geometry from the input inp.
int setLabels(EGS_Input *input)
Set the labels from an input block.
void setBoundaryTolerance(EGS_Input *inp)
Set the value of the boundary tolerance from the input inp.
A set of concentric cylinders.
A class for storing information in a tree-like structure of key-value pairs. This class is used throu...
Definition: egs_input.h:182
int getInput(const string &key, vector< string > &values) const
Assign values to an array of strings from an input identified by key.
Definition: egs_input.cpp:338
A projector into any plane.
A class representing 3D vectors.
Definition: egs_vector.h:57
A projector into the x-plane.
A projector into the y-plane.
A projector into the z-plane.
A set of concentric cylinders: header.
EGS_GLIB_EXPORT EGS_BaseGeometry * createGeometry(EGS_Input *input)
Definition: egs_glib.cpp:57
EGS_Input class header file.
EGS_InfoFunction EGS_EXPORT egsWarning
Always use this function for reporting warnings.