Changeset 4563 for trunk/MagicSoft/Mars
- Timestamp:
- 08/10/04 16:03:01 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4562 r4563 24 24 * mbadpixels/MBadPixelsTreat.[h,cc] 25 25 - replaced flag SetSloppyTreatment() with SetHardTreatment() 26 27 28 29 26 Now the default behaviour consists on treating only the 27 unsuitable pixels, and not also the ureliable, as it was 28 before. If you want to keep on treating both unsuitable and 29 unreliable pixels, please set the new flag on in your macro. 30 30 31 31 * mjobs/MJExtractCalibTest.cc 32 32 - removed line containing SetSloppyTreatment() 33 33 34 34 35 … … 41 42 mpedestal/MPedCalcFromLoGain.[h,cc]: 42 43 - removed dependancy on MBadPixelsCam 44 45 * mastro/MAstro.[h,cc]: 46 - implemented GetMoonPeriod 47 - implemented GetMoonPhase 48 49 * mbase/MTime.cc: 50 - Fixed a floating point problem in Set(&tv) 51 - added GetDateOfSunrise 52 43 53 44 54 … … 56 66 - set the possibility to have the datacheck display with the 57 67 function SetDataCheckDisplay() 68 69 58 70 59 71 2004/08/09: Wolfgang Wittek -
trunk/MagicSoft/Mars/NEWS
r4521 r4563 2 2 *** Version <cvs> 3 3 4 - new macros for database interaction: filldotrun.C 4 - new macros for database interaction: filldotrun.C, filldotrbk.C 5 5 6 6 -
trunk/MagicSoft/Mars/macros/sql/filldotrun.C
r4516 r4563 45 45 // info will be put into the DB, eg: 46 46 // "/data/MAGIC" would do it for all data 47 // "/data/MAGIC/Period019 "would do it for one Period47 // "/data/MAGIC/Period019/ccdata" would do it for one Period 48 48 // "/data/MAGIC/Period019/ccdata/2004_05_17" would do it for a single day 49 49 // -
trunk/MagicSoft/Mars/macros/sql/readrbk.C
r4513 r4563 173 173 // loop over all files in this path 174 174 // 175 void readrbk(TString path="/data/MAGIC/Period01 4")175 void readrbk(TString path="/data/MAGIC/Period017/ccdata") 176 176 { 177 177 MDirIter Next(path, "*.rbk", -1); -
trunk/MagicSoft/Mars/mastro/MAstro.cc
r3666 r4563 405 405 return TMath::ATan2(cosl*sinp, snlt-cslt*cosp); 406 406 } 407 408 409 // -------------------------------------------------------------------------- 410 // 411 // Kepler - solve the equation of Kepler 412 // 413 Double_t MAstro::Kepler(Double_t m, Double_t ecc) 414 { 415 m *= TMath::DegToRad(); 416 417 Double_t delta = 0; 418 Double_t e = m; 419 do { 420 delta = e - ecc * sin(e) - m; 421 e -= delta / (1 - ecc * cos(e)); 422 } while (fabs(delta) > 1e-6); 423 424 return e; 425 } 426 427 // -------------------------------------------------------------------------- 428 // 429 // GetMoonPhase - calculate phase of moon as a fraction: 430 // Returns -1 if calculation failed 431 // 432 Double_t MAstro::GetMoonPhase(Double_t mjd) 433 { 434 /****** Calculation of the Sun's position. ******/ 435 436 // date within epoch 437 const Double_t epoch = 44238; // 1980 January 0.0 438 const Double_t day = mjd - epoch; 439 if (day<0) 440 { 441 cout << "MAstro::GetMoonPhase - Day before Jan 1980" << endl; 442 return -1; 443 } 444 445 // mean anomaly of the Sun 446 const Double_t n = fmod(day*360/365.2422, 360); 447 448 const Double_t elonge = 278.833540; // ecliptic longitude of the Sun at epoch 1980.0 449 const Double_t elongp = 282.596403; // ecliptic longitude of the Sun at perigee 450 451 // convert from perigee co-ordinates to epoch 1980.0 452 const Double_t m = fmod(n + elonge - elongp + 360, 360); 453 454 // solve equation of Kepler 455 const Double_t eccent = 0.016718; // eccentricity of Earth's orbit 456 const Double_t k = Kepler(m, eccent); 457 const Double_t ec0 = sqrt((1 + eccent) / (1 - eccent)) * tan(k / 2); 458 // true anomaly 459 const Double_t ec = 2 * atan(ec0) * TMath::RadToDeg(); 460 461 // Sun's geocentric ecliptic longitude 462 const Double_t lambdasun = fmod(ec + elongp + 720, 360); 463 464 465 /****** Calculation of the Moon's position. ******/ 466 467 // Moon's mean longitude. 468 const Double_t mmlong = 64.975464; // moon's mean lonigitude at the epoch 469 const Double_t ml = fmod(13.1763966*day + mmlong + 360, 360); 470 // Moon's mean anomaly. 471 const Double_t mmlongp = 349.383063; // mean longitude of the perigee at the epoch 472 const Double_t mm = fmod(ml - 0.1114041*day - mmlongp + 720, 360); 473 // Evection. 474 const Double_t ev = 1.2739 * sin((2 * (ml - lambdasun) - mm)*TMath::DegToRad()); 475 // Annual equation. 476 const Double_t sinm = TMath::Sin(m*TMath::DegToRad()); 477 const Double_t ae = 0.1858 * sinm; 478 // Correction term. 479 const Double_t a3 = 0.37 * sinm; 480 // Corrected anomaly. 481 const Double_t mmp = (mm + ev - ae - a3)*TMath::DegToRad(); 482 // Correction for the equation of the centre. 483 const Double_t mec = 6.2886 * sin(mmp); 484 // Another correction term. 485 const Double_t a4 = 0.214 * sin(2 * mmp); 486 // Corrected longitude. 487 const Double_t lp = ml + ev + mec - ae + a4; 488 // Variation. 489 const Double_t v = 0.6583 * sin(2 * (lp - lambdasun)*TMath::DegToRad()); 490 // True longitude. 491 const Double_t lpp = lp + v; 492 // Age of the Moon in degrees. 493 const Double_t age = (lpp - lambdasun)*TMath::DegToRad(); 494 495 // Calculation of the phase of the Moon. 496 return (1 - TMath::Cos(age)) / 2; 497 } 498 499 // -------------------------------------------------------------------------- 500 // 501 // Calculate the Period to which the time belongs to. The Period is defined 502 // as the number of synodic months ellapsed since the first full moon 503 // after Jan 1st 1980 (which was @ MJD=44240.37917) 504 // 505 // In a addition to this calculation an offset of 284 periods is substracted. 506 // Taking this offset into account you get the Period as it is defined 507 // for the MAGIC observations. If you want to get the MAGIC observation 508 // period number make sure that your Mjd is a integer without a floating 509 // point reminder. 510 // 511 // For MAGIC observation period do eg: 512 // GetMoonPeriod(53257) 513 // or 514 // MTime t; 515 // t.SetMjd(53257); 516 // GetMoonPeriod(t.GetMjd()); 517 // or 518 // MTime t; 519 // t.Set(2004, 1, 1, 0); 520 // GetMoonPeriod(t.GetMjd()); 521 // or 522 // MTime t; 523 // t.Now(); 524 // GetMoonPeriod(TMath::Floor(t.GetMjd())); 525 // 526 Double_t MAstro::GetMoonPeriod(Double_t mjd, Int_t offset) 527 { 528 const Double_t synmonth = 29.53058868; // synodic month (new Moon to new Moon) 529 const Double_t epoch0 = 44240.37917; // First full moon after 1980/1/1 530 531 const Double_t et = mjd-epoch0; // Ellapsed time 532 return TMath::Floor(et/synmonth) + offset; 533 } -
trunk/MagicSoft/Mars/mastro/MAstro.h
r3568 r4563 11 11 static Double_t Round(Double_t val); 12 12 static Double_t Trunc(Double_t val); 13 14 static Double_t Kepler(Double_t m, Double_t ecc); 13 15 14 16 public: … … 54 56 static Double_t RotationAngle(Double_t sinl, Double_t cosl, Double_t theta, Double_t phi); 55 57 58 static Double_t GetMoonPhase(Double_t mjd); 59 static Double_t GetMoonPeriod(Double_t mjd, Int_t offset=-284); 60 56 61 ClassDef(MAstro, 0) 57 62 }; -
trunk/MagicSoft/Mars/mbase/MTime.cc
r4452 r4563 113 113 // -------------------------------------------------------------------------- 114 114 // 115 // Return date as year(y), month(m), day(d). If the time is afternoon 116 // (>=13:00:00) the date of the next day is returned. 117 // 118 void MTime::GetDateOfSunrise(UShort_t &y, Byte_t &m, Byte_t &d) const 119 { 120 MAstro::Mjd2Ymd(fMjd, y, m, d); 121 } 122 123 // -------------------------------------------------------------------------- 124 // 115 125 // Return the time in the range [0h, 24h) = [0h0m0.000s - 23h59m59.999s] 116 126 // … … 227 237 void MTime::Set(const struct timeval &tv) 228 238 { 229 const UInt_t mjd = 1000*tv.tv_sec/kDay + 40587; 239 const UInt_t mjd = (UInt_t)TMath::Floor(1000.*tv.tv_sec/kDay) + 40587; 240 230 241 const Long_t tm = tv.tv_sec%(24*3600)*1000 + tv.tv_usec/1000; 231 242 const UInt_t ms = tv.tv_usec%1000; -
trunk/MagicSoft/Mars/mbase/MTime.h
r3967 r4563 92 92 TString GetFileName() const; 93 93 void GetDate(UShort_t &y, Byte_t &m, Byte_t &d) const; 94 void GetDateOfSunrise(UShort_t &y, Byte_t &m, Byte_t &d) const; 94 95 TTime GetRootTime() const; 95 96 Double_t GetAxisTime() const;
Note:
See TracChangeset
for help on using the changeset viewer.