Changeset 7202 for trunk/MagicSoft/Mars/mpointing
- Timestamp:
- 07/21/05 11:44:05 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/mpointing
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpointing/MHPointing.cc
r7201 r7202 42 42 43 43 #include "MTime.h" 44 #include "MAstro.h" 44 45 45 46 #include "MReportDrive.h" … … 165 166 if (t->GetName()==(TString)"MTimeStarguider") 166 167 { 167 const Double_t max = 30; // [arcsec] maximum starguider deviation which makes sense168 169 168 AddPoint(fBrightness, tm, fReportSG->GetSkyBrightness()); 170 169 AddPoint(fNumStars, tm, fReportSG->GetNumIdentifiedStars()); 171 if (fReportSG->GetDevAbs()<max) 170 171 const Bool_t zdok = TMath::Abs(fReportSG->GetDevZd())<30; 172 const Bool_t azok = TMath::Abs(fReportSG->GetDevAz())<90; 173 174 const Double_t devzd = fReportSG->GetDevZd(); 175 const Double_t devaz = fReportSG->GetDevAz(); 176 177 if (zdok && azok) 172 178 AddPoint(fDevTimeSG, tm, fReportSG->GetDevAbs()); 173 if ( TMath::Abs(fReportSG->GetDevZd())<max)174 AddPoint(fDevZd, tm, fReportSG->GetDevZd());175 if ( TMath::Abs(fReportSG->GetDevAz())<max)176 AddPoint(fDevAz, tm, fReportSG->GetDevAz());179 if (zdok) 180 AddPoint(fDevZd, tm, devzd); 181 if (azok) 182 AddPoint(fDevAz, tm, devaz); 177 183 return kTRUE; 178 184 } … … 198 204 TAxis *axe = h->GetXaxis(); 199 205 axe->SetLabelSize(0.033); 200 axe->SetTimeFormat("%H:%M :%S%F1995-01-01 00:00:00 GMT");206 axe->SetTimeFormat("%H:%M %F1995-01-01 00:00:00 GMT"); 201 207 axe->SetTimeDisplay(1); 202 208 axe->SetTitle("Time"); -
trunk/MagicSoft/Mars/mpointing/Makefile
r7199 r7202 23 23 24 24 SRCFILES = MPointing.cc \ 25 MPointingDev.cc \ 26 MPointingDevCalc.cc \ 25 27 MPointingPos.cc \ 26 28 MPointingPosCalc.cc \ -
trunk/MagicSoft/Mars/mpointing/PointingIncl.h
r3570 r7202 1 1 #ifndef __CINT__ 2 2 3 #include <TVector2.h>4 5 3 #endif // __CINT__ -
trunk/MagicSoft/Mars/mpointing/PointingLinkDef.h
r7199 r7202 6 6 7 7 #pragma link C++ class MPointing+; 8 9 #pragma link C++ class MPointingDev+; 10 #pragma link C++ class MPointingDevCalc+; 8 11 9 12 #pragma link C++ class MPointingPos+;
Note:
See TracChangeset
for help on using the changeset viewer.