3.4.3pre11
Last change
on this file since 3b3071a was 3c40083, checked in by pavel <pavel@…>, 11 years ago |
switch to a more stable Hector version
|
-
Property mode
set to
100644
|
File size:
803 bytes
|
Rev | Line | |
---|
[3c40083] | 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 | */
|
---|
[5b822e5] | 11 |
|
---|
| 12 | /// \file H_SectorDipole.cc
|
---|
| 13 | /// \brief Classes aiming at simulating sector dipoles
|
---|
| 14 |
|
---|
| 15 | #include "H_SectorDipole.h"
|
---|
| 16 | #include "H_TransportMatrices.h"
|
---|
| 17 |
|
---|
[3c40083] | 18 | void H_SectorDipole::setMatrix(const float eloss, const float p_mass, const float p_charge) const {
|
---|
| 19 | if (fk !=0 ) *element_mat = sdipmat(element_length,fk,eloss,p_mass,p_charge);
|
---|
[5b822e5] | 20 | else {
|
---|
[3c40083] | 21 | *element_mat = driftmat(element_length);
|
---|
| 22 | if(VERBOSE) cout<<"\t WARNING : k0= 0, drift-like dipole (" << name << ") !" << endl;
|
---|
[5b822e5] | 23 | }
|
---|
| 24 | return ;
|
---|
| 25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.