Changeset 924
- Timestamp:
- 09/06/01 10:59:19 (23 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 12 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r921 r924 1 1 -*-*- END -*-*- 2 2001/09/06 - Thomas Bretz: 3 4 * MCosy.[cc,h] 5 - moved to main 6 - moved logging files to log dir 7 8 * MStarguider.[h,cc] 9 - moved to main 10 11 * Starguider.[h,cc]: 12 - renamed to MGStarguider.[h,cc] 13 - moved to gui dir 14 15 * cosy.cc: 16 - moved logging file to log dir 17 18 * starg.cc: 19 - removed InitGui stuff 20 21 22 2 23 2001/08/30 - Thomas Bretz: 3 24 -
trunk/MagicSoft/Cosy/Makefile
r914 r924 23 23 SOLIB = 24 24 CINT = M 25 INCLUDES = -I. -I incl -Ibase -Igui -Idevdrv -Icandrv-Ivideodev -Icatalog25 INCLUDES = -I. -Imain -Ibase -Icandrv -Iincl -Igui -Ivideodev -Icatalog 26 26 LIBS = -lpng -lz -L/usr/X11R6/lib -lpthread 27 27 … … 38 38 # 39 39 SUBDIRS = \ 40 main \ 40 41 gui \ 41 42 candrv \ … … 52 53 .SUFFIXES: .c .cc .h .o 53 54 54 SRCFILES = MCosy.cc Starguider.cc55 SRCFILES = 55 56 56 57 SRCS = $(SRCFILES) … … 112 113 @cd catalog; make mrproper; cd .. 113 114 @echo "cd .." 115 @echo "cd main" 116 @cd main; make mrproper; cd .. 117 @echo "cd .." 114 118 115 119 tar: mrproper -
trunk/MagicSoft/Cosy/cosy.cc
r920 r924 1 #include "MCosy.h"2 3 1 #include <iomanip.h> 4 2 #include <fstream.h> … … 9 7 #include <TApplication.h> 10 8 9 #include "MCosy.h" 11 10 #include "MLogManip.h" 12 11 #include "base/timer.h" … … 23 22 // this must move to MGCosy !!!! (or MApplication) 24 23 // 25 MLog lout(" cosy.log", kTRUE);24 MLog lout("log/cosy.log", kTRUE); 26 25 27 26 clog("Starting Cosy at " << time.GetTimeStr() << " ..."); -
trunk/MagicSoft/Cosy/devdrv/shaftencoder.h
r921 r924 59 59 void DisplayVal(); 60 60 61 bool IsPosHasChanged() const { return fPosHasChanged; }61 bool PosHasChanged() const { return fPosHasChanged; } 62 62 void ResetPosHasChanged() { fPosHasChanged = false; } 63 63 }; -
trunk/MagicSoft/Cosy/gui/Makefile
r913 r924 20 20 # @endcode 21 21 22 INCLUDES = -I. -I.. -I../base -I../slalib -I../candrv -I../incl -I../catalog 22 INCLUDES = -I. -I.. -I../base -I../slalib -I../candrv -I../incl \ 23 -I../catalog -I../videodev 23 24 24 25 # @code … … 38 39 MGAccuracy.cc \ 39 40 MGVelocity.cc \ 41 MGStarguider.cc \ 40 42 MGSkyPosition.cc 41 43 -
trunk/MagicSoft/Cosy/starg.cc
r738 r924 4 4 #include <TApplication.h> 5 5 6 #include " Starguider.h"6 #include "MGStarguider.h" 7 7 8 8 /* ---------------------------------------------------------------------- */ 9 9 10 extern void InitGui();11 VoidFuncPtr_t initfuncs[] = { InitGui, 0 };10 //extern void InitGui(); 11 //VoidFuncPtr_t initfuncs[] = { InitGui, 0 }; 12 12 13 13 int main(int argc, char **argv) 14 14 { 15 TROOT root("GUI", "GUI test environement" , initfuncs);15 TROOT root("GUI", "GUI test environement"); //, initfuncs); 16 16 17 17 TApplication app("Starguider", &argc, argv); 18 18 19 Starguider starg;19 MGStarguider starg; 20 20 21 21 starg.Loop(0);
Note:
See TracChangeset
for help on using the changeset viewer.