Changeset 901 in Sophya


Ignore:
Timestamp:
Apr 13, 2000, 10:17:04 AM (25 years ago)
Author:
ansari
Message:

Sophie: adding the namespace SOPHYA in the .h files

Location:
trunk/SophyaLib/SkyT
Files:
8 edited

Legend:

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

    r669 r901  
    22//--------------------------------------------------------------------------
    33// File and Version Information:
    4 //      $Id: blackbody.h,v 1.4 1999-11-29 16:59:10 ansari Exp $
     4//      $Id: blackbody.h,v 1.5 2000-04-13 08:17:02 ansari Exp $
    55//
    66// Description:
     
    1616#include "radspec.h"
    1717#include "convtools.h"
    18 
     18namespace SOPHYA {
    1919class BlackBody : public RadSpectra
    2020{
     
    4040
    4141};
    42 
     42}
    4343#endif
  • trunk/SophyaLib/SkyT/convtools.h

    r607 r901  
    22//--------------------------------------------------------------------------
    33// File and Version Information:
    4 //      $Id: convtools.h,v 1.2 1999-11-20 21:00:48 ansari Exp $
     4//      $Id: convtools.h,v 1.3 2000-04-13 08:17:02 ansari Exp $
    55//
    66// Description:
     
    1414#ifndef CONV_TOOLS_H_SEEN
    1515#define CONV_TOOLS_H_SEEN
    16 
     16namespace SOPHYA {
    1717class ConvTools
    1818{
     
    2424
    2525};
     26}
    2627#endif
  • trunk/SophyaLib/SkyT/derivblackbody.h

    r879 r901  
    22//--------------------------------------------------------------------------
    33// File and Version Information:
    4 //      $Id: derivblackbody.h,v 1.1 2000-04-11 13:26:05 ansari Exp $
     4//      $Id: derivblackbody.h,v 1.2 2000-04-13 08:17:03 ansari Exp $
    55//
    66// Description:
     
    1616#include "radspec.h"
    1717#include "convtools.h"
    18 
     18namespace SOPHYA {
    1919class DerivBlackBody : public RadSpectra
    2020{
     
    4040
    4141};
    42 
     42}
    4343#endif
  • trunk/SophyaLib/SkyT/nupower.h

    r669 r901  
    22//--------------------------------------------------------------------------
    33// File and Version Information:
    4 //      $Id: nupower.h,v 1.5 1999-11-29 16:59:10 ansari Exp $
     4//      $Id: nupower.h,v 1.6 2000-04-13 08:17:03 ansari Exp $
    55//
    66// Description:
     
    1616#include "radspec.h"
    1717#include "convtools.h"
    18 
     18namespace SOPHYA {
    1919// Power law spectra  f = a ((nu-nu0)/dnu)^b   
    2020class PowerLawSpectra : public RadSpectra
     
    4141  double _a, _b, _nu0, _dnu;
    4242};
    43 
     43}
    4444#endif
  • trunk/SophyaLib/SkyT/radspec.h

    r669 r901  
    22//--------------------------------------------------------------------------
    33// File and Version Information:
    4 //      $Id: radspec.h,v 1.4 1999-11-29 16:59:11 ansari Exp $
     4//      $Id: radspec.h,v 1.5 2000-04-13 08:17:03 ansari Exp $
    55//
    66// Description:
     
    2525// ***IMPORTANT*** All frequencies are expressed in GHz  (10^9 Hz)
    2626//                 and flux in Watt/m^2/sr
    27 
     27namespace SOPHYA {
    2828class RadSpectra
    2929{
     
    8585inline ostream& operator << (ostream& s,  RadSpectra const & rs)
    8686  {  rs.Print(s);  return(s);  }
    87 
     87}
    8888
    8989#endif
  • trunk/SophyaLib/SkyT/radspecvector.h

    r669 r901  
    2424// ***IMPORTANT*** All frequencies are expressed in GHz  (10^9 Hz)
    2525//                 and flux in Watt/m^2/sr
    26 
     26namespace SOPHYA {
    2727class RadSpectraVec : public RadSpectra
    2828{
     
    5757  Vector _vecOfFDeNu;
    5858};
    59 
     59}
    6060#endif
  • trunk/SophyaLib/SkyT/squarefilt.h

    r669 r901  
    22//--------------------------------------------------------------------------
    33// File and Version Information:
    4 //      $Id: squarefilt.h,v 1.4 1999-11-29 16:59:13 ansari Exp $
     4//      $Id: squarefilt.h,v 1.5 2000-04-13 08:17:03 ansari Exp $
    55//
    66// Description:
     
    2626//              -- Class Interface --
    2727//              ---------------------
    28 
     28namespace SOPHYA {
    2929class SquareFilter:public SpectralResponse
    3030{
     
    5353};
    5454
    55 
     55}
    5656#endif
  • trunk/SophyaLib/SkyT/trianglefilt.h

    r669 r901  
    22//--------------------------------------------------------------------------
    33// File and Version Information:
    4 //      $Id: trianglefilt.h,v 1.4 1999-11-29 16:59:13 ansari Exp $
     4//      $Id: trianglefilt.h,v 1.5 2000-04-13 08:17:04 ansari Exp $
    55//
    66// Description:
     
    2525//              -- Class Interface --
    2626//              ---------------------
    27 
     27namespace SOPHYA {
    2828class TriangleFilter:public SpectralResponse
    2929{
     
    4949};
    5050
    51 
     51}
    5252
    5353#endif
Note: See TracChangeset for help on using the changeset viewer.