RayZaler 0.1
The free opto-mechanical simulation framework
All.h
1//
2// Copyright (c) 2024 Gonzalo José Carracedo Carballal
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU Lesser General Public License as
6// published by the Free Software Foundation, either version 3 of the
7// License, or (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful, but
10// WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU Lesser General Public License for more details.
13//
14// You should have received a copy of the GNU Lesser General Public
15// License along with this program. If not, see
16// <http://www.gnu.org/licenses/>
17//
18
19#ifndef _ELEMENTS_ALL_H
20#define _ELEMENTS_ALL_H
21
22#include <Elements/ApertureStop.h>
23#include <Elements/BenchElement.h>
24#include <Elements/BlockElement.h>
25#include <Elements/CircularWindow.h>
26#include <Elements/ConicLens.h>
27#include <Elements/ConicMirror.h>
28#include <Elements/Detector.h>
29#include <Elements/FlatMirror.h>
30#include <Elements/IdealLens.h>
31#include <Elements/LensletArray.h>
32#include <Elements/Obstruction.h>
33#include <Elements/ParabolicLens.h>
34#include <Elements/ParabolicMirror.h>
35#include <Elements/PhaseScreen.h>
36#include <Elements/RayBeamElement.h>
37#include <Elements/RectangularStop.h>
38#include <Elements/RodElement.h>
39#include <Elements/SphericalLens.h>
40#include <Elements/SphericalMirror.h>
41#include <Elements/StlMesh.h>
42#include <Elements/Tripod.h>
43#include <Elements/TubeElement.h>
44
45#endif // _ELEMENTS_ALL_H
46