source: Sophya/trunk/SophyaPI/PI/pistlist.h@ 119

Last change on this file since 119 was 119, checked in by ansari, 27 years ago

1/ Premiere mise au point des DrawerTools, amelioration de PIImage Tools,
2/ creation de pipodrw.cc .h pour Drawers Outils PEIDA++
3/ ajout de P1DArrayAdapter Reza 12/07/98

File size: 755 bytes
RevLine 
[37]1#ifndef PISTLIST_H
2#define PISTLIST_H
3
[52]4#include "stlist.h"
[107]5#include "pidrawer.h"
[37]6
[107]7class PIStarList : public PIDrawer {
[37]8public:
[119]9 PIStarList(StarList* stl, bool ad);
[37]10 virtual ~PIStarList();
11
[71]12 virtual void Draw(PIGraphicUC* g, float xmin, float ymin, float xmax, float ymax);
[52]13 virtual void UpdateSize();
[37]14
[119]15 void SetFluxLimits(float min=1., float max=-1., int nl=5, bool dispflx=false, bool refr=false);
[37]16
17 inline StarList* StList() { return(mStL); }
18 inline float FluxMin() { return(mFmin); }
19 inline float FluxMax() { return(mFmax); }
20
21protected:
22 StarList* mStL;
[107]23 bool mAdDO;
[37]24 float mFmin, mFmax;
[119]25 int mNLev;
[37]26 double mF0, mDLgF;
27 bool mDspFV;
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.