source: PSPA/Interface_Web/trunk/pspaWT/src/bareParticle.cc @ 54

Last change on this file since 54 was 54, checked in by lemeur, 12 years ago

reorganisation des widgets et essai dessin

File size: 373 bytes
Line 
1#include "bareParticle.h"
2
3
4  void bareParticle::imprimer() const 
5  {
6    cout << " ---- impression particule nue ----- " << endl;
7    cout << " position : " << endl;
8    position_.print();
9    cout << " betas : " << endl;
10    TRIDVECTOR betas;
11    double fac = 1.0/gamma_;
12    betas = betagamma_ * fac;
13    betas.print();
14    cout << " gamma = " << gamma_  << endl;
15
16  }
Note: See TracBrowser for help on using the repository browser.