| 1 | #ifndef MARS_MAstroCatalog | 
|---|
| 2 | #define MARS_MAstroCatalog | 
|---|
| 3 |  | 
|---|
| 4 | #ifndef ROOT_TVector3 | 
|---|
| 5 | #include <TVector3.h> | 
|---|
| 6 | #endif | 
|---|
| 7 | #ifndef ROOT_TExMap | 
|---|
| 8 | #include <TExMap.h> | 
|---|
| 9 | #endif | 
|---|
| 10 | #ifndef ROOT_TList | 
|---|
| 11 | #include <TList.h> | 
|---|
| 12 | #endif | 
|---|
| 13 |  | 
|---|
| 14 | class MTime; | 
|---|
| 15 | class MObservatory; | 
|---|
| 16 | class TArrayI; | 
|---|
| 17 | class TGToolTip; | 
|---|
| 18 |  | 
|---|
| 19 | class MVector3 : public TVector3 | 
|---|
| 20 | { | 
|---|
| 21 | private: | 
|---|
| 22 | enum VectorType_t | 
|---|
| 23 | { | 
|---|
| 24 | kIsInvalid, | 
|---|
| 25 | kIsRaDec, | 
|---|
| 26 | kIsZdAz, | 
|---|
| 27 | kIsAltAz, | 
|---|
| 28 | kIsArbitrary | 
|---|
| 29 | }; | 
|---|
| 30 |  | 
|---|
| 31 | VectorType_t fType; | 
|---|
| 32 |  | 
|---|
| 33 | TString fName; | 
|---|
| 34 |  | 
|---|
| 35 | public: | 
|---|
| 36 | MVector3() { fType=kIsInvalid; } | 
|---|
| 37 | MVector3(const TVector3 &v3) : TVector3(v3) { fType=kIsArbitrary; } | 
|---|
| 38 | Double_t Magnitude() const { return -2.5*TMath::Log10(Mag()); } | 
|---|
| 39 |  | 
|---|
| 40 | void SetRaDec(Double_t ra, Double_t dec, Double_t mag) | 
|---|
| 41 | { | 
|---|
| 42 | fType = kIsRaDec; | 
|---|
| 43 | SetMagThetaPhi(pow(10, -mag/2.5), TMath::Pi()/2-dec, ra); | 
|---|
| 44 | } | 
|---|
| 45 | void SetName(const TString &str) { fName = str.Strip(TString::kBoth); } | 
|---|
| 46 | void SetZdAz(Double_t zd, Double_t az, Double_t mag) | 
|---|
| 47 | { | 
|---|
| 48 | fType = kIsZdAz; | 
|---|
| 49 | SetMagThetaPhi(pow(10, -mag/2.5), zd, az); | 
|---|
| 50 | } | 
|---|
| 51 | void SetAltAz(Double_t alt, Double_t az, Double_t mag) | 
|---|
| 52 | { | 
|---|
| 53 | fType = kIsAltAz; | 
|---|
| 54 | SetMagThetaPhi(pow(10, -mag/2.5), TMath::Pi()/2-alt, az); | 
|---|
| 55 | } | 
|---|
| 56 |  | 
|---|
| 57 | const char *GetName() const { return fName; } | 
|---|
| 58 |  | 
|---|
| 59 | ClassDef(MVector3, 1) // A specialized TVector3 storeing a star-name | 
|---|
| 60 | }; | 
|---|
| 61 |  | 
|---|
| 62 | class MAstroCatalog : public TObject | 
|---|
| 63 | { | 
|---|
| 64 | private: | 
|---|
| 65 | Double_t   fLimMag;    // [1]   Limiting Magnitude | 
|---|
| 66 | Double_t   fRadiusFOV; // [deg] Radius of Field of View | 
|---|
| 67 |  | 
|---|
| 68 | TExMap     fMapG;      //! A map with all gui primitives and tooltips | 
|---|
| 69 | TGToolTip *fToolTip;   //! The tooltip currently displayed | 
|---|
| 70 |  | 
|---|
| 71 | void ShowToolTip(Int_t px, Int_t py, const char *txt); | 
|---|
| 72 |  | 
|---|
| 73 | TString FindToken(TString &line, Char_t tok=','); | 
|---|
| 74 |  | 
|---|
| 75 | Int_t   atoi(const TSubString &sub); | 
|---|
| 76 | Float_t atof(const TSubString &sub); | 
|---|
| 77 | Int_t   atoi(const TString &s); | 
|---|
| 78 | Float_t atof(const TString &s); | 
|---|
| 79 |  | 
|---|
| 80 | //#if ROOT_VERSION_CODE < ROOT_VERSION(4,00,03) | 
|---|
| 81 | Bool_t fPlainScreen;  //! Just a dummy!!!! ([Set,Is]Freezed) | 
|---|
| 82 | //#endif | 
|---|
| 83 |  | 
|---|
| 84 | virtual Int_t ConvertToPad(const TVector3 &w, TVector2 &v) const; | 
|---|
| 85 | virtual void  AddPrimitives(TString o); | 
|---|
| 86 | virtual void  SetRangePad(Option_t *o); | 
|---|
| 87 |  | 
|---|
| 88 | Int_t     Convert(const TRotation &rot, TVector2 &v) const; | 
|---|
| 89 | void      Draw(const TVector2 &v0, const TRotation &rot, TArrayI &dx, TArrayI &dy, Int_t stepx, Int_t stepy, Int_t type); | 
|---|
| 90 | void      DrawPrimitives(Option_t *o); | 
|---|
| 91 | Bool_t    DrawLine(const TVector2 &v0, Double_t dx, Double_t dy, const TRotation &rot, Int_t type); | 
|---|
| 92 | void      DrawGrid(const TVector3 &v0, const TRotation &rot, Int_t type); | 
|---|
| 93 | void      Paint(Option_t *o=""); | 
|---|
| 94 | Int_t     DistancetoPrimitive(Int_t px, Int_t py); | 
|---|
| 95 | //void      RecursiveRemove(TObject *obj); | 
|---|
| 96 | void      PaintMap(); | 
|---|
| 97 | void      DeleteMap() | 
|---|
| 98 | { | 
|---|
| 99 | Long_t key, val; | 
|---|
| 100 | TExMapIter map(&fMapG); | 
|---|
| 101 | while (map.Next(key, val)) | 
|---|
| 102 | { | 
|---|
| 103 | delete (TObject*)(key); | 
|---|
| 104 | if (!val) | 
|---|
| 105 | continue; | 
|---|
| 106 |  | 
|---|
| 107 | delete (TString*)(val); | 
|---|
| 108 | /* | 
|---|
| 109 | Long_t key2, val2; | 
|---|
| 110 | TExMapIter map2(&fMapG); | 
|---|
| 111 | while (map2.Next(key2, val2)) | 
|---|
| 112 | if (val==val2) | 
|---|
| 113 | { | 
|---|
| 114 | delete (TObject*)key; | 
|---|
| 115 | fMapG.Remove(key); | 
|---|
| 116 | } | 
|---|
| 117 | */ | 
|---|
| 118 | } | 
|---|
| 119 | fMapG.Delete(); | 
|---|
| 120 | } | 
|---|
| 121 |  | 
|---|
| 122 | protected: | 
|---|
| 123 | enum { | 
|---|
| 124 | kHasChanged  = BIT(15), // Display has changed | 
|---|
| 125 | kGuiActive   = BIT(16), // GUI is interactive | 
|---|
| 126 | kPlainScreen = BIT(17), // View is a plain screen view | 
|---|
| 127 | kMirrorX     = BIT(18), // Mirror display in X | 
|---|
| 128 | kMirrorY     = BIT(19), // Mirror display in Y | 
|---|
| 129 | kNoToolTips  = BIT(20)  // suppress tooltips | 
|---|
| 130 | }; | 
|---|
| 131 |  | 
|---|
| 132 | TList    fList;             // List of stars loaded | 
|---|
| 133 | MVector3 fRaDec;            // pointing position | 
|---|
| 134 |  | 
|---|
| 135 | MObservatory *fObservatory; // Possible obervatory location | 
|---|
| 136 | MTime        *fTime;        // Possible observation time | 
|---|
| 137 |  | 
|---|
| 138 | TRotation AlignCoordinates(const TVector3 &v) const; | 
|---|
| 139 | virtual TString GetPadTitle() const; | 
|---|
| 140 | TRotation GetGrid(Bool_t local); | 
|---|
| 141 | void      DrawStar(Double_t x, Double_t y, const TVector3 &v, Bool_t t, const char *txt=0); | 
|---|
| 142 | void      Update(Bool_t upd=kFALSE); | 
|---|
| 143 |  | 
|---|
| 144 | void      ExecuteEventKbd(Int_t keycode, Int_t keysym); | 
|---|
| 145 | void      ExecuteEvent(Int_t event, Int_t mp1, Int_t mp2); | 
|---|
| 146 | TObject  *PickObject(Int_t px, Int_t py, TString &str) const; | 
|---|
| 147 | char     *GetObjectInfo(Int_t px, Int_t py) const; | 
|---|
| 148 |  | 
|---|
| 149 | void AddMap(TObject *k, void *v=0) | 
|---|
| 150 | { | 
|---|
| 151 | fMapG.Add(fMapG.GetSize(), (Long_t)k, (Long_t)v); | 
|---|
| 152 | } | 
|---|
| 153 |  | 
|---|
| 154 | public: | 
|---|
| 155 | MAstroCatalog(); | 
|---|
| 156 | ~MAstroCatalog(); | 
|---|
| 157 |  | 
|---|
| 158 | void SetTime(const MTime &time); | 
|---|
| 159 | void SetObservatory(const MObservatory &obs); | 
|---|
| 160 | void SetLimMag(Double_t mag) { fLimMag=mag; Update(); } // *MENU* *ARGS={mag=>fLimMag} | 
|---|
| 161 | void SetRadiusFOV(Double_t deg) | 
|---|
| 162 | { | 
|---|
| 163 | //const Double_t max = TestBit(kPlainScreen) ? 90 : 55; | 
|---|
| 164 | const Double_t max = TestBit(kPlainScreen) ? 180 : 90; | 
|---|
| 165 | if (deg>max) | 
|---|
| 166 | deg=max; | 
|---|
| 167 | if (deg<1) | 
|---|
| 168 | deg=1; | 
|---|
| 169 |  | 
|---|
| 170 | fRadiusFOV=deg; | 
|---|
| 171 |  | 
|---|
| 172 | Update(); | 
|---|
| 173 | } // *MENU* *ARGS={deg=>fRadiusFOV} | 
|---|
| 174 | void SetRaDec(Double_t ra, Double_t dec) { fRaDec.SetRaDec(ra, dec, 1); Update(); } | 
|---|
| 175 | void SetRaDec(const TVector3 &v)         { fRaDec=v; Update(); } | 
|---|
| 176 | void SetGuiActive(Bool_t b=kTRUE)        { b ? SetBit(kGuiActive) : ResetBit(kGuiActive); } | 
|---|
| 177 |  | 
|---|
| 178 | void   SetPlainScreen(Bool_t b=kTRUE)    { b ? SetBit(kPlainScreen) : ResetBit(kPlainScreen); Update(); } // *TOGGLE* *GETTER=IsPlainScreen | 
|---|
| 179 | Bool_t IsPlainScreen() const             { return TestBit(kPlainScreen); } | 
|---|
| 180 |  | 
|---|
| 181 | void   SetNoToolTips(Bool_t b=kTRUE)     { b ? SetBit(kNoToolTips) : ResetBit(kNoToolTips); } // *TOGGLE* *GETTER=HasNoToolTips | 
|---|
| 182 | Bool_t HasNoToolTips() const             { return TestBit(kNoToolTips); } | 
|---|
| 183 |  | 
|---|
| 184 | Double_t GetLimMag() const { return fLimMag; } // Get Limiting Magnitude | 
|---|
| 185 | Double_t GetRadiusFOV() const { return fRadiusFOV; } // Get maximum radius of Field Of View | 
|---|
| 186 |  | 
|---|
| 187 | void Delete(Option_t *o="") { fList.Delete(); DeleteMap(); } // Delete list of stars | 
|---|
| 188 |  | 
|---|
| 189 | Int_t ReadXephem(TString catalog = "/usr/X11R6/lib/xephem/catalogs/YBS.edb"); | 
|---|
| 190 | Int_t ReadNGC2000(TString catalog = "ngc2000.dat"); | 
|---|
| 191 | Int_t ReadBSC(TString catalog = "bsc5.dat"); | 
|---|
| 192 |  | 
|---|
| 193 | void Print(Option_t *o="") const { fList.Print(); } // Print all stars | 
|---|
| 194 |  | 
|---|
| 195 | TList *GetList() { return &fList; } // Return list of stars | 
|---|
| 196 |  | 
|---|
| 197 | void Draw(Option_t *o=""); | 
|---|
| 198 | void SetDrawOption(Option_t *option="") | 
|---|
| 199 | { | 
|---|
| 200 | TObject::SetDrawOption(option); | 
|---|
| 201 | Update(kTRUE); | 
|---|
| 202 | } //*MENU* | 
|---|
| 203 |  | 
|---|
| 204 | virtual void EventInfo(Int_t event, Int_t px, Int_t py, TObject *selected=0); | 
|---|
| 205 |  | 
|---|
| 206 | ClassDef(MAstroCatalog, 1) // Display class for star catalogs | 
|---|
| 207 | }; | 
|---|
| 208 | #endif | 
|---|