3.4.3pre12
Last change
on this file since 7dac4ea was 3c40083, checked in by pavel <pavel@…>, 11 years ago |
switch to a more stable Hector version
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Rev | Line | |
---|
[5b822e5] | 1 | #ifndef _H_RectangularAperture_
|
---|
| 2 | #define _H_RectangularAperture_
|
---|
| 3 |
|
---|
[3c40083] | 4 | /*
|
---|
| 5 | ---- Hector the simulator ----
|
---|
| 6 | A fast simulator of particles through generic beamlines.
|
---|
| 7 | J. de Favereau, X. Rouby ~~~ hector_devel@cp3.phys.ucl.ac.be
|
---|
| 8 |
|
---|
| 9 | http://www.fynu.ucl.ac.be/hector.html
|
---|
| 10 |
|
---|
| 11 | Centre de Physique des Particules et de Phénoménologie (CP3)
|
---|
| 12 | Université Catholique de Louvain (UCL)
|
---|
| 13 | */
|
---|
[5b822e5] | 14 |
|
---|
| 15 | /// \file H_RectangularAperture.h
|
---|
| 16 | /// \brief Defines the rectangular aperture of beamline elements.
|
---|
| 17 |
|
---|
| 18 | // local #includes
|
---|
| 19 | #include "H_Aperture.h"
|
---|
| 20 |
|
---|
| 21 | /// Rectangular apertures
|
---|
| 22 | class H_RectangularAperture : public H_Aperture {
|
---|
| 23 |
|
---|
| 24 | public:
|
---|
| 25 | /// Constructors and destructor
|
---|
| 26 | //@{
|
---|
| 27 | H_RectangularAperture():H_Aperture(RECTANGULAR,0,0,0,0,0,0) {}
|
---|
| 28 | H_RectangularAperture(const float,const float,const float,const float);
|
---|
[3c40083] | 29 | ~H_RectangularAperture() {return;};
|
---|
[5b822e5] | 30 | //@}
|
---|
| 31 | /// Checks whether the point is inside the aperture or not
|
---|
| 32 | virtual bool isInside(const float, const float) const;
|
---|
| 33 | /// Draws the aperture shape.
|
---|
[3c40083] | 34 | virtual void draw() const;
|
---|
| 35 | virtual void printProperties() const;
|
---|
[5b822e5] | 36 | };
|
---|
| 37 |
|
---|
| 38 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.