Fork me on GitHub

source: svn/trunk/Utilities/Hector/include/H_CircularAperture.h@ 235

Last change on this file since 235 was 216, checked in by Xavier Rouby, 16 years ago

passing all objects as references

File size: 929 bytes
Line 
1#ifndef _H_CircularAperture_
2#define _H_CircularAperture_
3
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*/
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
23class H_CircularAperture: public H_EllipticAperture {
24
25 public:
26 /// Constructors and destructor
27 //@{
28 H_CircularAperture():H_EllipticAperture(0,0,0,0) {type = CIRCULAR; setApertureString();}
29 H_CircularAperture(const float, const float, const float);
30 ~H_CircularAperture() {};
31 H_CircularAperture* clone() const;
32 //@}
33 virtual void printProperties() const;
34};
35
36#endif
Note: See TracBrowser for help on using the repository browser.