Newer
Older
Gigg, Martyn Anthony
committed
#ifndef MANTID_GEOMETRY_ICOMPASSEMBLY_
#define MANTID_GEOMETRY_ICOMPASSEMBLY_
#include "MantidGeometry/IComponent.h"
Gigg, Martyn Anthony
committed
#include "MantidGeometry/DllConfig.h"
Gigg, Martyn Anthony
committed
#include <deque>
#include <string>
#include <vector>
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
namespace Mantid {
namespace Geometry {
// Forward declaration
class Track;
/** @class ICompAssembly
@brief Class for Assembly of geometric components.
@version A
@author Laurent C Chapon, ISIS RAL
@date 01/11/2007
CompAssembly allows Components to be positioned
in a hierarchical structure in the form of a tree.
CompAssembly inherits from component.
Copyright © 2007-8 ISIS Rutherford Appleton Laboratory, NScD Oak Ridge
National Laboratory & European Spallation Source
This file is part of Mantid.
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class MANTID_GEOMETRY_DLL ICompAssembly : public virtual IComponent {
public:
/// String description of the type of component
std::string type() const override { return "ICompAssembly"; }
/// Make a clone of the present component
IComponent *clone() const override = 0;
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/// Return the number of elements in the assembly
virtual int nelements() const = 0;
/// Add a component to the assembly
virtual int add(IComponent *) = 0;
/// Add a copy (clone) of a component
virtual int addCopy(IComponent *) = 0;
/// Add a copy (clone) of a component and rename it
virtual int addCopy(IComponent *, const std::string &) = 0;
/// Get a pointer to the ith component within the assembly. Easier to use than
/// [] when you have a pointer
virtual boost::shared_ptr<IComponent> getChild(const int i) const = 0;
/// Returns a pointer to the first component of assembly encountered with the
/// given name
virtual boost::shared_ptr<const IComponent>
getComponentByName(const std::string &cname, int nlevels = 0) const = 0;
/// Get all children
virtual void getChildren(std::vector<IComponent_const_sptr> &outVector,
bool recursive) const = 0;
/// Overloaded index operator. Get a pointer to the ith component in the
/// assembly
virtual boost::shared_ptr<IComponent> operator[](int i) const = 0;
/// Print information about all children
virtual void printChildren(std::ostream &) const = 0;
/** Print information about all the elements in the tree to a stream
* Loops through all components in the tree
* and call printSelf(os).
*/
virtual void printTree(std::ostream &) const = 0;
/// Test the intersection of the ray with the children of the component
/// assembly
virtual void testIntersectionWithChildren(
Track &testRay, std::deque<IComponent_const_sptr> &searchQueue) const = 0;
protected:
/// Protected copy constructor
ICompAssembly(const ICompAssembly &) = default;
ICompAssembly &operator=(const ICompAssembly &) = delete;
};
/// Shared pointer to a ICompAssembly
using ICompAssembly_sptr = boost::shared_ptr<ICompAssembly>;
/// Shared pointer to a const ICompAssembly
using ICompAssembly_const_sptr = boost::shared_ptr<const ICompAssembly>;
} // Namespace Geometry
} // Namespace Mantid
Gigg, Martyn Anthony
committed