Show
Ignore:
Timestamp:
04/08/10 16:01:03 (14 years ago)
Author:
smidl
Message:

get rid of Yrv in DS

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/bdmbase.h

    r889 r895  
    915915        //! size of data 
    916916        int utsize; 
    917         //!size of output 
    918         int ytsize; 
    919917        //!Description of data returned by \c getdata(). 
    920918        RV Drv; 
    921919        //!Description of data witten by by \c write(). 
    922920        RV Urv; // 
    923         //!Description of output data 
    924         RV Yrv; // 
    925921public: 
    926922        //! default constructors 
    927         DS() : dtsize ( 0 ), utsize ( 0 ), ytsize ( 0 ), Drv(), Urv(), Yrv() { 
     923        DS() : dtsize ( 0 ), utsize ( 0 ), Drv(), Urv(){ 
    928924                log_level[dt] = true; 
    929925        }; 
     
    964960                return Urv; 
    965961        } 
    966         //!access function 
    967         const RV& _yrv() const { 
    968                 return Yrv; 
    969         } 
    970962        //! set random variables 
    971         virtual void set_drv ( const  RV &yrv, const RV &urv ) { 
    972                 Yrv = yrv; 
    973                 Drv = concat ( yrv, urv ); 
     963        virtual void set_drv ( const  RV &drv, const RV &urv) { 
     964                Drv = drv; 
    974965                Urv = urv; 
    975966        }