Changeset 669 in Sophya for trunk/SophyaLib/SkyT/blackbody.cc


Ignore:
Timestamp:
Nov 29, 1999, 5:59:13 PM (26 years ago)
Author:
ansari
Message:

Adaptation a PPersist de SpectralResponse - Suite 1 , Sophie 29/11/99

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SkyT/blackbody.cc

    r668 r669  
    11//--------------------------------------------------------------------------
    22// File and Version Information:
    3 //      $Id: blackbody.cc,v 1.3 1999-11-29 14:16:03 ansari Exp $
     3//      $Id: blackbody.cc,v 1.4 1999-11-29 16:59:09 ansari Exp $
    44//
    55// Description:
     
    5757}
    5858
     59
     60void
     61BlackBody::Print(ostream& os) const
     62{
     63  os << "BlackBody::Print Temp= " << getTemperature()
     64     << " - Fmin,Fmax= " << minFreq() << "," << maxFreq() << endl;
     65  os << "MeanFreq= " << meanFreq() << "  Emission= " << flux(meanFreq()) << endl;
     66  os << "PeakFreq= " << peakFreq() << "  Emission= " << flux(peakFreq()) << endl;
     67
     68}
     69
     70/*
    5971void
    6072BlackBody::WriteSelf(POutPersist& s) 
     
    7587}
    7688
    77 
    78 void
    79 BlackBody::Print(ostream& os) const
    80 {
    81   os << "BlackBody::Print Temp= " << getTemperature()
    82      << " - Fmin,Fmax= " << minFreq() << "," << maxFreq() << endl;
    83   os << "MeanFreq= " << meanFreq() << "  Emission= " << flux(meanFreq()) << endl;
    84   os << "PeakFreq= " << peakFreq() << "  Emission= " << flux(peakFreq()) << endl;
    85 
    86 }
     89*/
Note: See TracChangeset for help on using the changeset viewer.