1 |
/*************************************************************************** |
2 |
* Copyright (C) 2006 by pamelaprod * |
3 |
* pamelaprod@P1.pamela * |
4 |
* * |
5 |
* This program is free software; you can redistribute it and/or modify * |
6 |
* it under the terms of the GNU General Public License as published by * |
7 |
* the Free Software Foundation; either version 2 of the License, or * |
8 |
* (at your option) any later version. * |
9 |
* * |
10 |
* This program is distributed in the hope that it will be useful, * |
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of * |
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
13 |
* GNU General Public License for more details. * |
14 |
* * |
15 |
* You should have received a copy of the GNU General Public License * |
16 |
* along with this program; if not, write to the * |
17 |
* Free Software Foundation, Inc., * |
18 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
19 |
***************************************************************************/ |
20 |
#ifndef FIRST_H |
21 |
#define FIRST_H |
22 |
|
23 |
#include <TObject.h> |
24 |
#include <iostream> |
25 |
|
26 |
#include "TROOT.h" |
27 |
|
28 |
#include "YMcmd.h" |
29 |
//#include "OrbitalInfoStruct.h" |
30 |
/** |
31 |
@author pamelaprod |
32 |
*/ |
33 |
class Quaternions: public InclinationInfoItem { |
34 |
public: |
35 |
|
36 |
Quaternions(); |
37 |
~Quaternions(); |
38 |
|
39 |
//Int_t CodeErrQua; |
40 |
|
41 |
}; |
42 |
|
43 |
class InclinationInfo: public TObject { |
44 |
|
45 |
public: |
46 |
|
47 |
InclinationInfo(); |
48 |
~InclinationInfo(); |
49 |
|
50 |
Double_t Tangazh; |
51 |
Double_t Ryskanie; |
52 |
Double_t Kren; |
53 |
|
54 |
bool mode; |
55 |
// Float_t dircutoff; |
56 |
|
57 |
void TransAngle(Double_t x,Double_t y,Double_t z,Double_t Vx0,Double_t Vy0, Double_t Vz0, Double_t q0, Double_t q1, Double_t q2, Double_t q3); |
58 |
|
59 |
// float_t procRegidity(double_t L, double_t B, double_t R); |
60 |
|
61 |
void Clear(); |
62 |
}; |
63 |
|
64 |
#endif |