- Timestamp:
- 04/10/01 12:20:13 (24 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 3 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Makefile
r738 r748 57 57 58 58 #------------------------------------------------------------------------------ 59 #.SILENT:59 .SILENT: 60 60 61 61 .SUFFIXES: .c .cc .h .o -
trunk/MagicSoft/Cosy/Starguider.cc
r738 r748 30 30 IDM_kRate30s, 31 31 IDM_kRate1m, 32 IDM_kRate5m 32 IDM_kRate5m, 33 IDM_kSetup, 34 IDM_kLimMag3, 35 IDM_kLimMag4, 36 IDM_kLimMag5, 37 IDM_kLimMag6, 38 IDM_kLimMag7, 39 IDM_kLimMag8, 40 IDM_kLimMag9 33 41 }; 34 42 … … 88 96 fList.Add(fWrite); 89 97 98 fLimMag = new TGPopupMenu(p); 99 fLimMag->AddEntry("3", IDM_kLimMag3); 100 fLimMag->AddEntry("4", IDM_kLimMag4); 101 fLimMag->AddEntry("5", IDM_kLimMag5); 102 fLimMag->AddEntry("6", IDM_kLimMag6); 103 fLimMag->AddEntry("7", IDM_kLimMag7); 104 fLimMag->AddEntry("8", IDM_kLimMag8); 105 fLimMag->AddEntry("9", IDM_kLimMag9); 106 fLimMag->CheckEntry(IDM_kLimMag8); 107 fLimMag->Associate(this); 108 fList.Add(fLimMag); 109 110 fSao.SetLimitMag(8.0); 111 112 fSetup = new TGPopupMenu(p); 113 fSetup->AddPopup("Lim. &Magnitude", fLimMag); 114 fSetup->Associate(this); 115 fList.Add(fSetup); 116 90 117 fMenu = new TGMenuBar(this, 0, 0, kHorizontalFrame); 91 118 fMenu->AddPopup("&Display", fDisplay, NULL); 92 119 fMenu->AddPopup("&Write", fWrite, NULL); 120 fMenu->AddPopup("&Setup", fSetup, NULL); 93 121 fMenu->Resize(fMenu->GetDefaultSize()); 94 122 AddFrame(fMenu); //, new TGLayoutHints (kLHintsNormal, 0, 4, 0, 0)); … … 128 156 MapWindow(); 129 157 130 131 fSao.SetLimitMag(9.0);132 158 fSao.SetPixSize(0.006); 133 159 } … … 243 269 } 244 270 return kTRUE; 271 272 case IDM_kLimMag3: 273 case IDM_kLimMag4: 274 case IDM_kLimMag5: 275 case IDM_kLimMag6: 276 case IDM_kLimMag7: 277 case IDM_kLimMag8: 278 case IDM_kLimMag9: 279 for (int i=IDM_kLimMag3; i<=IDM_kLimMag9; i++) 280 if (mp1==i) 281 fLimMag->CheckEntry(i); 282 else 283 fLimMag->UnCheckEntry(i); 284 285 fSao.SetLimitMag(mp1-IDM_kLimMag3+3); 286 return kTRUE; 245 287 } 246 288 break; -
trunk/MagicSoft/Cosy/Starguider.h
r738 r748 32 32 TGPopupMenu *fWriteType; 33 33 TGPopupMenu *fWriteRate; 34 TGPopupMenu *fSetup; 35 TGPopupMenu *fLimMag; 34 36 35 37 MGCoordinates *fCRaDec; -
trunk/MagicSoft/Cosy/base/File.cc
r732 r748 6 6 { 7 7 f = fopen(name, flags); 8 if (!f) 9 printf("WARNING: Cannot open '%s'\n", name); 8 10 } 9 11 -
trunk/MagicSoft/Cosy/base/File.h
r732 r748 27 27 void Newline() const; 28 28 void Skip(int cnt) const; 29 30 int operator!() { return !f; } 29 31 }; 30 32 -
trunk/MagicSoft/Cosy/catalog/SaoFile.cc
r740 r748 66 66 { 67 67 file = new File(name, "r"); 68 69 if (!*file) 70 exit(0); 68 71 69 72 compressed = !strcasecmp(name+strlen(name)-4, ".cmp"); -
trunk/MagicSoft/Cosy/catalog/StarCatalog.cc
r740 r748 28 28 // read index file 29 29 // 30 File idx("sao-sort.idx", "r"); 30 File idx("sao/sao-sort.idx", "r"); 31 32 if (!idx) 33 exit(0); 34 31 35 while (!idx.Eof()) 32 36 { … … 50 54 // open catalog 51 55 // 52 fSao = new SaoFile("sao -sort.cmp");56 fSao = new SaoFile("sao/sao-sort.cmp"); 53 57 } 54 58
Note:
See TracChangeset
for help on using the changeset viewer.