Changeset 250 for bdm

Show
Ignore:
Timestamp:
01/26/09 20:39:40 (15 years ago)
Author:
smidl
Message:

useing ui in sim.cpp

Location:
bdm/stat
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libBM.h

    r229 r250  
    384384        RV Urv; // 
    385385public: 
     386        DS():Drv(RV0),Urv(RV0) {}; 
    386387        //! Returns full vector of observed data 
    387388        void getdata ( vec &dt ); 
  • bdm/stat/loggers.h

    r198 r250  
    3333        Array<string> names; 
    3434public: 
    35 //!Default constructor 
     35        //!Default constructor 
    3636        logger ( ) : entries(0),names ( 0 ) {} 
    3737 
    38 //! returns an identifier which will be later needed for calling the log() function 
     38        //! returns an identifier which will be later needed for calling the log() function 
    3939        virtual int add (const RV &rv, string name="" ) { 
    4040                int id=entries.length(); 
     
    4545        } 
    4646 
    47 //! log this vector 
     47        //! log this vector 
    4848        virtual void logit ( int id, const vec &v ) =0; 
    4949 
    50 //! Shifts storage position for another time step. 
     50        //! Shifts storage position for another time step. 
    5151        virtual void step() =0; 
    5252 
     
    5454        virtual void finalize() {}; 
    5555 
     56        //! Initialize the storage 
     57        virtual void init(){}; 
     58         
    5659        //! for future use 
    5760        virtual ~logger() {};