/*************************************************************************** * Copyright (C) 2006 by pamelaprod * * pamelaprod@P1.pamela * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #ifndef FIRST_H #define FIRST_H #include #include #include "TROOT.h" #include "YMcmd.h" //#include "OrbitalInfoStruct.h" /** @author pamelaprod */ class Quaternions: public InclinationInfoItem { public: Quaternions(); ~Quaternions(); //Int_t CodeErrQua; }; class InclinationInfo: public TObject { public: InclinationInfo(); ~InclinationInfo(); Double_t Tangazh; Double_t Ryskanie; Double_t Kren; bool mode; // Float_t dircutoff; 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); // float_t procRegidity(double_t L, double_t B, double_t R); void Clear(); }; #endif