Changeset 1085 for library/bdm/stat

Show
Ignore:
Timestamp:
06/11/10 14:34:12 (14 years ago)
Author:
smidl
Message:

doc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/stat/merger.h

    r1083 r1085  
    2424enum MERGER_METHOD {ARITHMETIC = 1, GEOMETRIC = 2, LOGNORMAL = 3}; 
    2525 
    26 /*!  Abstract common class for mergers 
    27  
    28 It defines only common interface of access to sources and operation merge(); The result of merging is available via function epdf() 
     26/*!  \brief Abstract common class for mergers 
     27 
     28It defines only common interface of access to sources and operation merge(); The result of merging is available via function merger() 
    2929*/ 
    3030class MergerBase: public root{ 
     
    6464}; 
    6565 
    66 //! Merger into normal density, max entropy approximator for 2 moments (mean+variance) 
     66//! \brief Merger into normal density, max entropy approximator for 2 moments (mean+variance) 
    6767template<class sq_T> 
    6868class ENormMerger: public MergerBase{