EGSnrc C++ class library  Report PIRS-898 (2021)
Iwan Kawrakow, Ernesto Mainegra-Hing, Frederic Tessier, Reid Townson and Blake Walters
egs_circle.cpp
Go to the documentation of this file.
1 /*
2 ###############################################################################
3 #
4 # EGSnrc egs++ circle shape
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:
27 #
28 ###############################################################################
29 */
30 
31 
37 #include "egs_circle.h"
38 #include "egs_input.h"
39 #include "egs_functions.h"
40 
41 extern "C" {
42 
43  EGS_CIRCLE_EXPORT EGS_BaseShape *createShape(EGS_Input *input,
44  EGS_ObjectFactory *f) {
45  if (!input) {
46  egsWarning("createShape(circle): null input?\n");
47  return 0;
48  }
49  EGS_Float radius;
50  int err = input->getInput("radius",radius);
51  if (err) {
52  egsWarning("createShape(circle): no 'radius' input\n");
53  return 0;
54  }
55  EGS_Float Ro;
56  err = input->getInput("inner radius",Ro);
57  if (err) {
58  Ro = 0;
59  }
60  vector<EGS_Float> pos;
61  err = input->getInput("midpoint",pos);
62  if (err) {
63  pos.clear();
64  pos.push_back(0);
65  pos.push_back(0);
66  }
67  else {
68  if (pos.size() != 2) {
69  egsWarning("createShape(circle): 2 instead of %d inputs expected"
70  " for keyword 'midpoint'. Reseting midpoint to (0,0)\n",
71  pos.size());
72  pos.clear();
73  pos.push_back(0);
74  pos.push_back(0);
75  }
76  }
77  EGS_CircleShape *shape = new EGS_CircleShape(pos[0],pos[1],radius,Ro,"",f);
78  shape->setName(input);
79  shape->setTransformation(input);
80  return shape;
81  }
82 
83 }
void setTransformation(EGS_Input *inp)
Set the transformation attached to this shape.
Definition: egs_shapes.cpp:68
EGS_Input class header file.
Global egspp functions header file.
Base shape class. All shapes in the EGSnrc C++ class library are derived from EGS_BaseShape.
Definition: egs_shapes.h:112
An object factory.
void setName(EGS_Input *inp)
Set the name of the object from the information provided by inp.
A circle shape.
Definition: egs_circle.h:87
A circular shape.
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
EGS_InfoFunction EGS_EXPORT egsWarning
Always use this function for reporting warnings.