summaryrefslogblamecommitdiff
path: root/src/test/exerciceP10Test.cc
blob: d67d81287eddbc7ab96321616a7eaef9c7e3945a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                            































                                                                                 




                                                                  


                                                      



                                                     







                   



                             
                          
 



                  
/*
 * exerciceP10.cc
 *
 *  Created on: 20 avr. 2011
 *      Author: christian
 */
#include "Accelerator.h"
#include "Dipole.h"
#include "StraightElement.h"
#include "Quadrupole.h"
#include "FODO.h"
#include <iostream>
#include <string>
#include <vector>

using namespace std;
using namespace vhc;

/** Affiche la réponse de l'exercice P.10 de l'étape 5 (semaine 6) du projet.*/
int main() {

	Accelerator a;

	Dipole* d = new Dipole(
			Vector3D(1,0,0),
			Vector3D(0,-1,0),
			0.1,
			1,
			Vector3D(0,0,7),
			NULL);

	StraightElement* s = new StraightElement(
			Vector3D(0,-1,0),
			Vector3D(-1,-1,0),
			0.1);

	Quadrupole* q = new Quadrupole(
			Vector3D(-1,-1,0),
			Vector3D(-1,-2,0),
			0.1,
			1.2);

	FODO* f = new FODO(
			Vector3D(-1,-2,0),
			Vector3D(-1,0,0),
			0.1,
			1,
			1.2);

	Particle* p1 = new Particle(
			Vector3D( 1.00984,-0.191837,0 ),//position
			constants::PROTON_MASS,//mass
			constants::E,//charge
			2*constants::GeV,//energy
			Vector3D(-1,-1,0));//direction

	Particle* p2 = new Particle(
			Vector3D(0.99016,-0.191837,0),
			constants::PROTON_MASS,//mass
			constants::E,//charge
			2*constants::GeV,//energy
			Vector3D(1,-1,0));//direction

	a.add(*d);
	a.add(*s);
	a.add(*q);
	a.add(*f);
	a.add(*p1);
	a.add(*p2);

	a.enableLinear(true);

	a.close();

	cout << a << endl;

	a.clear();

	return 0;
}