Fork me on GitHub

source: git/external/Hector/H_CircularAperture.h@ 0a9be59

ImprovedOutputFile Timing llp
Last change on this file since 0a9be59 was 3c40083, checked in by pavel <pavel@…>, 10 years ago

switch to a more stable Hector version

  • Property mode set to 100644
File size: 899 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() {return;};
31 //@}
32 virtual void printProperties() const;
33};
34
35#endif
Note: See TracBrowser for help on using the repository browser.