Changeset 8377 for trunk/MagicSoft
- Timestamp:
- 03/14/07 19:16:34 (18 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r8376 r8377 8 8 catalog/StarCatalog.cc, gui/MGAccuracy.cc, gui/MGCoordinate.cc, 9 9 gui/MGCoordinates.cc, gui/MGCosy.cc, gui/MGNumStars.cc, 10 gui/MGSkyPosition.cc, main/MBending.cc, main/MStargHistograms.cc: 10 gui/MGSkyPosition.cc, main/MBending.cc, main/MStargHistograms.cc, 11 base/coord.h, main/MCaos.cc, main/MCosy.cc, main/MPointing.cc, 12 main/MStarguider.cc, main/MTracking.cc: 11 13 - replaced obsolete .h by C++ headers 12 14 - added namespace std … … 15 17 - fixed warnings about overwriting of Delete 16 18 17 * base/MStopwatch.h, gui/MGCoordinate.h, gui/MGCoordinates.h: 19 * base/MStopwatch.h, gui/MGCoordinate.h, gui/MGCoordinates.h, 20 main/MStarguider.h: 18 21 - fixed warning about overwriting of Print() 19 22 … … 21 24 - fixed default argument is declaration 22 25 23 * catalog/StarCatalog.cc, gui/MGAccuracy.cc: 26 * catalog/StarCatalog.cc, gui/MGAccuracy.cc, main/MCaos.[h,cc], 27 main/MCosy.cc, main/MPointing.cc, main/MStarguider.cc, 28 main/MTracking.cc: 24 29 - fixed a type problem (int instead of double) 25 30 -
trunk/MagicSoft/Cosy/main/MStarguider.h
r7792 r8377 103 103 AltAz fAltAzOffsetFromTp; 104 104 105 Double_tfNumStarsDetected;106 Double_tfNumStarsCorrelated;105 Int_t fNumStarsDetected; 106 Int_t fNumStarsCorrelated; 107 107 108 108 StarCatalog *fSao; … … 146 146 147 147 XY FindRoqueLamp(FilterLed &f, FilterLed &f2, Ring &CameraCenter, MTime &t, 148 Double_t cut, Double_t box, XY SearchCenter);148 Double_t cut, Int_t box, XY SearchCenter); 149 149 150 150 ZdAz FindStar(FilterLed &f, FilterLed &f2, Ring ¢er, MTime &t, 151 Double_t cut, Double_t box, Double_t scalefactor);151 Double_t cut, Int_t box, Double_t scalefactor); 152 152 153 153 //void InitHists(); … … 191 191 192 192 void Print(TString &str, Double_t deg) const; 193 void Print(Option_t *o) const { } 193 194 194 195 ClassDef(MStarguider, 0) -
trunk/MagicSoft/Cosy/main/MTracking.cc
r7313 r8377 10 10 11 11 ClassImp(MTracking); 12 13 using namespace std; 12 14 13 15 //#define EXPERT … … 358 360 // Estimate Offset before starting to track 359 361 ZdAz repos = fCosy->GetRePos(); 360 fCosy->fZd1->SetOffset( repos.Zd());361 fCosy->fZd2->SetOffset( repos.Zd());362 fCosy->fAz->SetOffset( repos.Az());362 fCosy->fZd1->SetOffset(TMath::Nint(repos.Zd())); 363 fCosy->fZd2->SetOffset(TMath::Nint(repos.Zd())); 364 fCosy->fAz->SetOffset(TMath::Nint(repos.Az())); 363 365 364 366 fCosy->SetTrackingPosRE(GetPointingPosRE()); -
trunk/MagicSoft/Cosy/videodev/FilterLed.cc
r7794 r8377 2 2 3 3 #include <memory.h> // memset 4 #include <iostream .h> // cout4 #include <iostream> // cout 5 5 6 6 #include "Led.h" … … 11 11 12 12 ClassImp(FilterLed); 13 14 using namespace std; 13 15 14 16 class ClusterFinder
Note:
See TracChangeset
for help on using the changeset viewer.