Fork me on GitHub

source: svn/trunk/Utilities/Hector/include/H_SectorDipole.h@ 281

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

new Hector version

File size: 1.8 KB
RevLine 
[3]1#ifndef _H_SectorDipole_
2#define _H_SectorDipole_
3
[281]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 * * * * * * * * * * * * * * * * * * * * * * * * * * * */
[3]21
[281]22/// \file H_SectorDipole.h
23/// \brief Classes aiming at simulating sector dipoles.
[3]24
25#include "H_Dipole.h"
26
27/// Sector dipoles.
28class H_SectorDipole : public H_Dipole {
29
30 public:
31 /// Constructors and destructor
32 //@{
33 H_SectorDipole():H_Dipole(SDIPOLE,0.,0.,0.) {init();}
34 H_SectorDipole(const double s, const double k, const double l) :H_Dipole(SDIPOLE,s,k,l){init();}
[281]35 H_SectorDipole(const string& nameE, const double s, const double k, const double l) :H_Dipole(nameE,SDIPOLE,s,k,l){init();}
[216]36 ~H_SectorDipole() {};
[3]37 //@}
38 H_SectorDipole* clone() const ;
39 private:
40 virtual void setTypeString() { typestring = SDIPOLENAME;};
41 virtual void setMatrix(const float ,const float, const float) ;
42};
43
44#endif
Note: See TracBrowser for help on using the repository browser.