Changeset 9429 for trunk/MagicSoft
- Timestamp:
- 04/16/09 18:09:30 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9428 r9429 100 100 * mbase/MParSpline.[h,cc]: 101 101 - added 102 103 * msim/MSimAtmosphere.cc: 104 - fixed a bug which caused the aerosol coefficient to be 105 incorrectly initialized 102 106 103 107 -
trunk/MagicSoft/Mars/NEWS
r9427 r9429 35 35 * There is no default pulse shape anymoe it must be given in 36 36 the resource file 37 38 * Fixed a bug which caused the aerosol coefficient to be incorrectly 39 initialized. The effect might be random. 37 40 38 41 ;callisto: -
trunk/MagicSoft/Mars/msim/MSimAtmosphere.cc
r9378 r9429 554 554 555 555 if (IsValid()) 556 PreCalc Ozone();556 PreCalcAerosol(); 557 557 558 558 return kTRUE; … … 621 621 h = 30.e5; 622 622 623 // Mie absorption coefficient at sea level through interpolation624 623 //const float aero_betap[15] = {0.27, 0.26, 0.25, 0.24, 0.24, 0.23, 0.20, 0.180, 0.167, 0.158, 0.150, 0.142, 0.135, 0.127, 0.120}; 625 624 //const Double_t beta0 = getbeta(wavelength, aero_betap); … … 630 629 const UInt_t H = TMath::Nint(h/1e4); 631 630 const UInt_t T = TMath::Min(89, TMath::Nint(theta/STEPTHETA)); 631 632 632 633 633 const Double_t path = aerosol_path[H][T];
Note:
See TracChangeset
for help on using the changeset viewer.