Show
Ignore:
Timestamp:
07/31/09 15:17:20 (15 years ago)
Author:
vbarta
Message:

moved test of marginal & condition to epdf_harness

Files:
1 modified

Legend:

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

    r461 r462  
    611611class mepdf : public mpdf { 
    612612public: 
    613         //!Default constructor 
    614         mepdf() { } 
    615  
    616         mepdf(shared_ptr<epdf> em) :mpdf ( ) { set_ep(em); dimc=0; } 
    617  
    618         void condition ( const vec &cond ) {} 
    619  
    620   //! Load from structure with elements: 
    621   //!  \code 
    622   //! { class = "mepdf",          
    623   //!   epdfs = {class="epdfs",...} 
    624   //! } 
    625   //! \endcode 
    626   //!@} 
    627         void from_setting(const Setting &set){ 
    628                 epdf *e = UI::build<epdf>(set, "epdf"); 
    629                 set_ep(e); 
    630         } 
     613    //!Default constructor 
     614    mepdf() { } 
     615 
     616    mepdf(shared_ptr<epdf> em) { 
     617        set_ep(em); 
     618        dimc = 0; 
     619    } 
     620 
     621    //! empty 
     622    void condition(const vec &cond); 
     623 
     624    //! Load from structure with elements: 
     625    //!  \code 
     626    //! { class = "mepdf",          
     627    //!   epdfs = {class="epdfs",...} 
     628    //! } 
     629    //! \endcode 
     630    //!@} 
     631    void from_setting(const Setting &set); 
    631632}; 
    632633UIREGISTER(mepdf);