Changeset 8847
- Timestamp:
- 01/31/08 13:58:30 (17 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 6 deleted
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r8844 r8847 11 11 videodev/Camera.[h,cc]: 12 12 - renamed MyThreadX to MThread 13 14 * Makefile: 15 - removed include of mvideo 16 17 * videodev/Makefile: 18 - removed include of mvideo 19 - added class MVideo 20 21 * videodev/MVideo.[h,cc]: 22 - added 23 24 * base/coord.h, base/log.h, base/threads.h: 25 - obsolete -> removed 26 27 * catalog/SaoFile.h, catalog/SlaPlanets.h, catalog/SlaStars.[h,cc], 28 catalog/Slalib.[h,cc], catalog/StarCatalog.h, gui/MGAccuracy.cc, 29 gui/MGCoordinates.cc, gui/MGCosy.cc, gui/MGPngReader.cc, 30 gui/MGSkyPosition.cc, gui/MGVelocity.cc, main/MStargHistograms.[h,cc], 31 main/MStarguider.cc, main/MTracking.h, tcpip/MDriveCom.cc, 32 tpoint/TPointIncl.h: 33 - revised includes 34 - revised global defines in header files 35 36 * videodev/Writer.[h,cc]: 37 - revised includes 38 - replaced XY by TVector2 13 39 14 40 -
trunk/MagicSoft/Cosy/catalog/SlaPlanets.h
r1758 r8847 1 #ifndef SLAPLANETS_H2 #define SLAPLANETS_H1 #ifndef COSY_SlaPlanets 2 #define COSY_SlaPlanets 3 3 4 #ifndef SLALIB_H4 #ifndef COSY_Slalib 5 5 #include "Slalib.h" 6 #endif 7 8 #ifndef MARS_MPointing 9 #include "MPointing.h" 6 10 #endif 7 11 -
trunk/MagicSoft/Cosy/catalog/SlaStars.cc
r8818 r8847 2 2 3 3 #include "slalib.h" 4 5 #include "MPointing.h" 4 6 5 7 ClassImp(SlaStars); -
trunk/MagicSoft/Cosy/catalog/SlaStars.h
r2615 r8847 1 #ifndef SLASTARS_H2 #define SLASTARS_H1 #ifndef COSY_SlaStars 2 #define COSY_SlaStars 3 3 4 #ifndef COSY_Slalib 4 5 #include "Slalib.h" 6 #endif 5 7 6 #include "coord.h" 8 #ifndef MARS_MPointing 9 #include "MPointing.h" 10 #endif 7 11 8 12 class SlaStars : public Slalib -
trunk/MagicSoft/Cosy/catalog/Slalib.cc
r8818 r8847 4 4 #include <iostream> // cout 5 5 6 #include " coord.h"6 #include "MPointing.h" 7 7 8 8 #include "slalib.h" -
trunk/MagicSoft/Cosy/catalog/Slalib.h
r3897 r8847 1 #ifndef SLALIB_H2 #define SLALIB_H1 #ifndef COSY_Slalib 2 #define COSY_Slalib 3 3 4 #include <TROOT.h> 4 #ifndef MARS_MTime 5 #include "MTime.h" 6 #endif 5 7 6 #include "coord.h" 7 #include "MTime.h" 8 #ifndef MARS_MObservatory 8 9 #include "MObservatory.h" 10 #endif 11 12 class ZdAz; 9 13 10 14 class Slalib : public MObservatory -
trunk/MagicSoft/Cosy/catalog/StarCatalog.h
r8818 r8847 8 8 #include <GuiTypes.h> 9 9 #endif 10 #ifndef SAOFILE_H 11 #include "SaoFile.h" 12 #endif 13 #ifndef SLASTARS_H 10 #ifndef COSY_SlaStars 14 11 #include "SlaStars.h" 15 12 #endif 16 17 #include "coord.h"18 13 19 14 typedef unsigned char byte; -
trunk/MagicSoft/Cosy/gui/MGAccuracy.cc
r8376 r8847 11 11 #include <TCanvas.h> 12 12 13 #include "coord.h"14 13 #include "MTime.h" 15 14 #include "MAstro.h" 15 #include "MPointing.h" 16 16 17 17 ClassImp(MGAccuracy); -
trunk/MagicSoft/Cosy/gui/MGCoordinates.cc
r8376 r8847 10 10 11 11 #include "MGCoordinate.h" 12 #include "coord.h"13 12 14 13 ClassImp(MGCoordinates); -
trunk/MagicSoft/Cosy/gui/MGCosy.cc
r8838 r8847 3 3 #include <iomanip> 4 4 #include <fstream> 5 6 #include <TROOT.h>7 5 8 6 #include <TGTab.h> // TGTab … … 36 34 37 35 #include "SlaStars.h" 38 /*39 #include "msgqueue.h"40 #include "coord.h"41 #include "slalib.h"42 */43 36 44 37 #define DEBUG -
trunk/MagicSoft/Cosy/gui/MGPngReader.cc
r8814 r8847 6 6 7 7 #include <TTimer.h> 8 9 #include <TH1.h> 10 #include <TH2.h> 11 #include <TGraph.h> 12 #include <TCanvas.h> 13 14 #include <TFile.h> 15 #include <TTree.h> 16 #include <TBranch.h> 8 17 9 18 #include <TGMenu.h> … … 17 26 #include "MGDispCoordinates.h" 18 27 19 #include "coord.h"20 21 28 #include "StarCatalog.h" 22 29 … … 28 35 29 36 #include "MStarList.h" 30 31 #include <TH1.h>32 #include <TH2.h>33 #include <TGraph.h>34 #include <TCanvas.h>35 36 #include <TFile.h>37 #include <TTree.h>38 #include <TBranch.h>39 37 40 38 #include "Led.h" -
trunk/MagicSoft/Cosy/gui/MGSkyPosition.cc
r8818 r8847 15 15 #include <TCanvas.h> 16 16 17 #include "coord.h"18 17 #include "MAstro.h" 19 18 #include "SlaStars.h" -
trunk/MagicSoft/Cosy/gui/MGVelocity.cc
r4076 r8847 18 18 #include <TCanvas.h> 19 19 20 #include "coord.h"21 22 20 ClassImp(MGVelocity); 23 21 -
trunk/MagicSoft/Cosy/main/MStargHistograms.cc
r8376 r8847 13 13 14 14 #include "MTime.h" 15 #include "MPointing.h" 15 16 16 17 #include "Led.h" … … 20 21 #include "FilterLed.h" 21 22 #include "MStarList.h" 22 23 #include "coord.h"24 23 25 24 using namespace std; -
trunk/MagicSoft/Cosy/main/MStargHistograms.h
r7764 r8847 40 40 MStargHistograms() : fFile(NULL) 41 41 { 42 43 }44 45 ~MStargHistograms()46 {47 48 42 } 49 43 … … 51 45 Ring ¢er, /*ZdAz ¢erzdaz,*/ ZdAz &star, Double_t bright, 52 46 const ZdAz &pos, const MTime &t); 53 47 54 48 void OpenFile(); 55 49 void CloseFile(); -
trunk/MagicSoft/Cosy/main/MStarguider.cc
r8838 r8847 39 39 #include "MGImage.h" 40 40 #include "MGCoordinates.h" 41 42 #include "coord.h"43 41 44 42 #include "Camera.h" -
trunk/MagicSoft/Cosy/main/MTracking.h
r8843 r8847 1 1 #ifndef COSY_MTracking 2 2 #define COSY_MTracking 3 4 #include "coord.h"5 3 6 4 #ifndef COSY_MSlewing … … 12 10 #endif 13 11 12 class RaDec; 14 13 class SlaStars; 15 14 -
trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
r8378 r8847 3 3 #include <iostream> 4 4 5 #include "coord.h"6 5 #include "MAstro.h" 7 6 #include "MCosy.h" -
trunk/MagicSoft/Cosy/tpoint/TPointIncl.h
r8823 r8847 1 1 #ifndef __CINT__ 2 2 3 #include "coord.h"4 5 3 #endif // __CINT__ -
trunk/MagicSoft/Cosy/videodev/Writer.cc
r8378 r8847 4 4 #include <fstream> // ofstream 5 5 6 #include <TVector2.h> 7 6 8 #include <stdio.h> // FILE 7 9 #include <png.h> 8 #include <coord.h>9 10 10 11 #include "MTime.h" … … 15 16 16 17 void Writer::Png(const char *fname, const byte *buf, 17 struct timeval *date, const XYxy)18 struct timeval *date, const TVector2 xy) 18 19 { 19 20 MTime t(*date); … … 139 140 } 140 141 141 void Writer::Ppm(const char *fname, const byte *img, struct timeval *date, const XYxy)142 void Writer::Ppm(const char *fname, const byte *img, struct timeval *date, const TVector2 xy) 142 143 { 143 144 TString name = fname; -
trunk/MagicSoft/Cosy/videodev/Writer.h
r8810 r8847 9 9 #endif 10 10 11 #ifndef COORD_H 12 #include <coord.h> 13 #endif 11 class TVector2; 14 12 15 13 typedef unsigned char byte; … … 22 20 virtual ~Writer() { } 23 21 24 static void Ppm(const char *fname, const byte *img, struct timeval *date, const XYxy);25 static void Png(const char *fname, const byte *buf, struct timeval *date, const XYxy);22 static void Ppm(const char *fname, const byte *img, struct timeval *date, const TVector2 xy); 23 static void Png(const char *fname, const byte *buf, struct timeval *date, const TVector2 xy); 26 24 27 25 ClassDef(Writer, 0)
Note:
See TracChangeset
for help on using the changeset viewer.