Changeset 8838
- Timestamp:
- 01/30/08 13:55:40 (17 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r8837 r8838 1 1 -*-*- END -*-*- 2 3 2008/01/30 Thomas Bretz 4 5 * candrv/sdolist.cc: 6 - use the ?: operator instead of a cast 7 8 * gui/GuiIncl.h: 9 - removed obsolete coord.h 10 11 * gui/MGCoordinates.h: 12 - added include of MPointing instead of forward declaration of class XY 13 14 * gui/MGCosy.cc: 15 - revised includes 16 - added some manipulators 17 18 * main/MStarguider.cc: 19 - revised includes 20 21 2 22 3 23 2008/01/27 Thomas Bretz … … 91 111 - thread doesn't run detached anymore 92 112 93 * candrv/nodedrv.[h,cc], devdrv/macs.[h,cc], devdrv/shaftencoder.[h,cc]: 113 * candrv/nodedrv.[h,cc], devdrv/macs.[h,cc], devdrv/shaftencoder.[h,cc], 114 candrv/network.[h,cc]: 94 115 - changed from lout to gLog 95 116 - added maipulators -
trunk/MagicSoft/Cosy/candrv/sdolist.cc
r8376 r8838 93 93 int PendingSDOList::IsPending() const 94 94 { 95 return (int)fFirst->Next;95 return fFirst->Next ? 1 : 0; 96 96 } 97 97 -
trunk/MagicSoft/Cosy/gui/GuiIncl.h
r1109 r8838 1 1 #ifndef __CINT__ 2 2 3 #include "coord.h"4 5 3 #endif // __CINT__ -
trunk/MagicSoft/Cosy/gui/MGCoordinates.h
r8376 r8838 1 1 #ifndef COSY_MGCoordinates 2 2 #define COSY_MGCoordinates 3 4 //5 // This File contains the declaration of the MGCoordinates-class6 //7 // Author: Thomas Bretz8 // Version: V1.0 (1-8-2000)9 3 10 4 #ifndef ROOT_TGFrame … … 12 6 #endif 13 7 14 class XY; 8 #ifndef MARS_MPointing 9 #include "MPointing.h" 10 #endif 15 11 16 12 enum { -
trunk/MagicSoft/Cosy/gui/MGCosy.cc
r8824 r8838 3 3 #include <iomanip> 4 4 #include <fstream> 5 6 #include "msgqueue.h"7 #include "coord.h"8 #include "slalib.h"9 5 10 6 #include <TROOT.h> … … 22 18 #include <TApplication.h> // gApplication 23 19 24 #include "MCosy.h" 20 #include "MLog.h" 21 #include "MLogManip.h" 22 25 23 #include "MTime.h" 26 24 #include "MString.h" 27 25 #include "MAstro.h" 26 27 #include "MCosy.h" 28 28 #include "MGList.h" 29 29 #include "MDriveCom.h" … … 36 36 37 37 #include "SlaStars.h" 38 /* 39 #include "msgqueue.h" 40 #include "coord.h" 41 #include "slalib.h" 42 */ 38 43 39 44 #define DEBUG … … 323 328 if (!fin) 324 329 { 325 cout<< "ERROR: Predifined positions in 'prepos.txt' not found." << endl;330 gLog << err << "ERROR: Predifined positions in 'prepos.txt' not found." << endl; 326 331 return; 327 332 } … … 359 364 if (!fin) 360 365 { 361 cout<< "ERROR: Star List 'stars.txt' not found." << endl;366 gLog << err << "ERROR: Star List 'stars.txt' not found." << endl; 362 367 return; 363 368 } -
trunk/MagicSoft/Cosy/main/MStarguider.cc
r8824 r8838 5 5 6 6 #include <fstream> // ifstream 7 #include <iostream> // cout8 #include <iomanip> // cout9 7 10 8 #include <TH2F.h> … … 14 12 #include <TFile.h> // temp writeout of histos 15 13 #include <TSocket.h> 16 17 #include "MAstro.h"18 #include "MString.h"19 14 20 15 #include <TGMenu.h> … … 25 20 #include <TGLayout.h> 26 21 #include "MString.h" 22 23 #include "MLog.h" 24 #include "MLogManip.h" 25 26 #include "MAstro.h" 27 #include "MString.h" 28 27 29 28 30 #include "MCosy.h"
Note:
See TracChangeset
for help on using the changeset viewer.