Changeset 6922 for trunk/MagicSoft/Mars
- Timestamp:
- 04/08/05 18:37:37 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6921 r6922 66 66 - implemented new values from new starguider report as defined 67 67 in TDAS00-07 V7.1 68 - Fixed the formerly wrong unit of fDevAz and fDevZd (unit now 69 is arcmin) 68 70 69 71 * mjobs/MJCalibrateSignal.cc: … … 81 83 - removed condition IsUseBlindPixel() and IsUsePINDiode from 82 84 setting filter and applied it to the corresponding task 85 86 * mjobs/MDataSet.cc: 87 - fixed a bug using the default paths 83 88 84 89 -
trunk/MagicSoft/Mars/NEWS
r6921 r6922 54 54 - implemented new values from new starguider report as defined 55 55 in TDAS00-07 V7.1 (eg SkyBrighness) 56 57 - Fixed the formerly wrong unit of azimuth and zenith angle deviation 58 in starguider report (If you merpp the same reports with this version 59 you'll get the correct units (arcmin) but a different result 60 than with old versions (wrong units)) 56 61 57 62 -
trunk/MagicSoft/Mars/mjobs/MDataSet.cc
r6906 r6922 122 122 // Set default sequence file and dir name 123 123 if (name.IsNull()) 124 name = Form("/magic/sequences/%04d/sequence%08d.txt", num[i]/1000 , num[i]);124 name = Form("/magic/sequences/%04d/sequence%08d.txt", num[i]/10000, num[i]); 125 125 if (dir.IsNull()) 126 name = Form("/magic/data/star/%04d/%08d", num[i]/1000, num[i]);126 dir = Form("/magic/data/star/%04d/%08d", num[i]/10000, num[i]); 127 127 128 128 if (gSystem->AccessPathName(name, kFileExists)) -
trunk/MagicSoft/Mars/mreport/MReportStarguider.cc
r6920 r6922 36 36 // Class Version 1: 37 37 // ---------------- 38 // + Double_t fDevAz; // [ deg] azimuth mispointing39 // + Double_t fDevZd; // [ deg] zenith mispointing38 // + Double_t fDevAz; // [arcmin] azimuth mispointing 39 // + Double_t fDevZd; // [arcmin] zenith mispointing 40 40 // 41 41 // … … 95 95 96 96 if (ver < 200503170) 97 { 98 // Fix a problem with the units 99 fDevAz *= 60./TMath::RadToDeg(); 100 fDevZd *= 60./TMath::RadToDeg(); 97 101 return str.IsNull() ? kTRUE : kCONTINUE; 102 } 98 103 99 104 MAstro::String2Angle(str, fNominalZd); // Nom Zd 100 105 MAstro::String2Angle(str, fNominalAz); // Nom Az 106 107 if (ver < 999999999) 108 { 109 // Until a fix in the software the written position was nonsense 110 fNominalZd = 0; 111 fNominalAz = 0; 112 } 101 113 102 114 n=sscanf(str.Data(), "%f %f %d %lf %lf %n", -
trunk/MagicSoft/Mars/mreport/MReportStarguider.h
r6921 r6922 9 9 { 10 10 private: 11 Double_t fDevAz; // [ deg]azimuth mispointing12 Double_t fDevZd; // [ deg]zenith mispointing11 Double_t fDevAz; // [arcmin] azimuth mispointing 12 Double_t fDevZd; // [arcmin] zenith mispointing 13 13 14 14 Double_t fNominalZd; // [deg] Nominal zenith distance
Note:
See TracChangeset
for help on using the changeset viewer.