Fork me on GitHub

source: svn/trunk/Utilities/Hector/include/H_HorizontalKicker.h@ 522

Last change on this file since 522 was 281, checked in by Xavier Rouby, 15 years ago

new Hector version

File size: 1.9 KB
Line 
1#ifndef _H_HorizontalKicker_
2#define _H_HorizontalKicker_
3
4 /* * * * * * * * * * * * * * * * * * * * * * * * * * * *
5 * *
6* --<--<-- A fast simulator --<--<-- *
7* / --<--<-- of particle --<--<-- *
8* ----HECTOR----< *
9* \ -->-->-- transport through -->-->-- *
10* -->-->-- generic beamlines -->-->-- *
11* *
12* JINST 2:P09005 (2007) *
13* X Rouby, J de Favereau, K Piotrzkowski (CP3) *
14* http://www.fynu.ucl.ac.be/hector.html *
15* *
16* Center for Cosmology, Particle Physics and Phenomenology *
17* Universite catholique de Louvain *
18* Louvain-la-Neuve, Belgium *
19 * *
20 * * * * * * * * * * * * * * * * * * * * * * * * * * * */
21
22/// \file H_HorizontalKicker.h
23/// \brief Classes aiming at simulating horizontal kickers in beamline.
24///
25/// fk [rad] for kickers !!!!
26
27// local #includes
28#include "H_Kicker.h"
29
30/// Horizontal kickers for the beamline.
31class H_HorizontalKicker : public H_Kicker {
32
33 public:
34 /// Constructors and destructor
35 //@{
36 H_HorizontalKicker():H_Kicker(HKICKER,0.,0.,0.) {init();}
37 H_HorizontalKicker(const double s, const double k, const double l) :H_Kicker(HKICKER,s,k,l){init();}
38 H_HorizontalKicker(const string &nameE, const double s, const double k, const double l) :H_Kicker(nameE,HKICKER,s,k,l){init();}
39 ~H_HorizontalKicker() {};
40 //@}
41 H_HorizontalKicker* clone() const;
42 private:
43 virtual void setTypeString() {typestring=HKICKERNAME;};
44 virtual void setMatrix(const float, const float, const float) ;
45};
46
47#endif
Note: See TracBrowser for help on using the repository browser.