Changeset 607 in Sophya for trunk/SophyaLib/SkyT/specresp.cc


Ignore:
Timestamp:
Nov 20, 1999, 10:00:54 PM (26 years ago)
Author:
ansari
Message:

Modifs preparatoire pour Garching MAP , Reza 20/11/99

File:
1 edited

Legend:

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

    r601 r607  
    11//--------------------------------------------------------------------------
    22// File and Version Information:
    3 //      $Id: specresp.cc,v 1.1.1.1 1999-11-19 16:34:32 ansari Exp $
     3//      $Id: specresp.cc,v 1.2 1999-11-20 21:00:52 ansari Exp $
    44//
    55// Description:
     
    112112  if(numax >= _numax) numax = _numax;
    113113  TrpzInteg I(SpectralResponse_transmission , numin, numax); 
    114   return((double)I);
     114  double val = (double)I;
    115115  _mySpecResp= NULL;
     116  return(val);
    116117}
    117118
     
    137138  _myLogSpecResp = const_cast<SpectralResponse *>(this);
    138139  TrpzInteg I(SpectralResponse_logTransmission ,f1Log,f2Log);
    139   return((double)I*log(10.));
     140  double val = (double)I;
    140141  _myLogSpecResp= NULL;
     142  return(val*log(10.));
    141143}
    142144
Note: See TracChangeset for help on using the changeset viewer.