Show
Ignore:
Timestamp:
07/02/09 22:16:20 (15 years ago)
Author:
smidl
Message:

merger finalization

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/mex/merger.cpp

    r407 r411  
    88#endif 
    99 
     10/*! \file  
     11\brief Merging static pdfs 
     12Merger is a program/mex-function for static merging of given pdfs on given support. 
     13 
     14In command line, it expected config file with the following structure: 
     15\code 
     16Sources = (... any epdf or mpdf  ...); 
     17Support = {grid=([low1d,high1d],[low2d,high2d],...); 
     18                   nbins=[bins1d,bins2d,... ]};  
     19// OR 
     20Support = {pdf={class='epdf',...}; 
     21                   nsamples=2};  
     22Merger = {class="merger_base",...} 
     23\endcode 
     24 
     25In mex-file, the above structures (Sources,Support,Merger) are input arguments. Type >>merger for help. 
     26*/ 
     27 
    1028using namespace bdm; 
    1129 
    12 #ifdef MEX 
     30#ifdef MEX  
    1331void mexFunction(int n_output, mxArray *output[], int n_input, const mxArray *input[]) 
    1432{