source:
git/external/Hector/H_CircularAperture.h@
7312b4d
Last change on this file since 7312b4d was 3c40083, checked in by , 11 years ago | |
---|---|
|
|
File size: 899 bytes |
Rev | Line | |
---|---|---|
[5b822e5] | 1 | #ifndef _H_CircularAperture_ |
2 | #define _H_CircularAperture_ | |
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_CircularAperture.h | |
16 | /// \brief Defines the circular aperture of beamline elements. | |
17 | ||
18 | // local #includes | |
19 | #include "H_EllipticAperture.h" | |
20 | ||
21 | ||
22 | /// Circular apertures | |
23 | class H_CircularAperture: public H_EllipticAperture { | |
24 | ||
25 | public: | |
26 | /// Constructors and destructor | |
27 | //@{ | |
[3c40083] | 28 | H_CircularAperture():H_EllipticAperture(0,0,0,0) {type = CIRCULAR; setApertureString();} |
29 | H_CircularAperture(const float, const float, const float); | |
30 | ~H_CircularAperture() {return;}; | |
[5b822e5] | 31 | //@} |
[3c40083] | 32 | virtual void printProperties() const; |
[5b822e5] | 33 | }; |
34 | ||
35 | #endif |
Note:
See TracBrowser
for help on using the repository browser.