00001 // -*- mode: c++ -*- 00002 // 00003 #ifndef angle_ 00004 #define angle_ 00005 00006 #include <cmath> 00007 00008 //******ROOT********* 00009 //#include "Rtypes.h" 00010 00017 class CAngle 00018 { 00019 protected: 00020 00021 public: 00022 static float const pi; 00023 float theta; 00024 float phi; 00025 CAngle(float,float); 00026 CAngle(){}; 00027 static CAngle transform(CAngle angle1,CAngle angle2); 00028 00029 //*****ROOT************ 00030 //ClassDef(CAngle,1) //Gemini CAngle 00031 }; 00032 00033 00034 #endif