Fork me on GitHub

source: git/external/Hector/H_EllipticAperture.cc@ a097e98

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

switch to a more stable Hector version

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*
2---- Hector the simulator ----
3 A fast simulator of particles through generic beamlines.
4 J. de Favereau, X. Rouby ~~~ hector_devel@cp3.phys.ucl.ac.be
5
6 http://www.fynu.ucl.ac.be/hector.html
7
8 Centre de Physique des Particules et de Phénoménologie (CP3)
9 Université Catholique de Louvain (UCL)
10*/
11
12/// \file H_EllipticAperture.cc
13/// \brief Defines the elliptic aperture of beamline elements.
14
15// C++ #includes
16#include <iostream>
17
18// ROOT #includes
19//#include "TEllipse.h"
20
21// local #includes
22#include "H_Parameters.h"
23#include "H_Aperture.h"
24#include "H_EllipticAperture.h"
25using namespace std;
26
27H_EllipticAperture::H_EllipticAperture(const float x1, const float x2, const float posx, const float posy) :H_Aperture(ELLIPTIC,x1,x2,0,0,posx,posy) {
28 /// @param x1, x2 are the length and height of the elliptic shape
29 /// @param posx, posy are the (x,y) coordinates of the center of the ellipse
30}
31
32bool H_EllipticAperture::isInside(const float x, const float y) const {
33 /// @param x, y are the (x,y) coordinates of the proton
34 return (((x-fx)/x1)*((x-fx)/x1) + ((y-fy)/x2)*((y-fy)/x2) < 1);
35}
36
37void H_EllipticAperture::draw() const {
38/* Ellipse* te = new TEllipse(fx,fy,x1,x2);
39 te->SetFillStyle(3003);
40 te->SetLineColor(2);
41 te->SetFillColor(2);
42 te->Draw();
43 return;
44*/
45}
46
47void H_EllipticAperture::printProperties() const {
48 cout<< "Aperture shape:" << getTypeString() << ", ellipse axes : "<<x1<<", "<<x2<<endl;
49 cout << " \t Center : " << fx << "," << fy << endl;
50 return;
51}
Note: See TracBrowser for help on using the repository browser.