%%%--------------------------MODEL DESCRIPTION--------------------------%%%
Model to fit pair correlation data to a log normal distribution

|Amplitude|/|x|*|exp(- |(lnx-�)^2/ |(2sigma^2)|)
%%%-------------------------PARAMETER DEFINITION------------------------%%%
Param(1): A             = 1;    LB = 0;     UB = Inf;
Param(2): Mode[ms]      = 20;   LB = 0;     UB = Inf;   
Param(3): sigma         = 1;    LB = 0;     UB = Inf;
Param(4): y0            = 0;    LB = -10;   UB = 10;
%%%------------------------BRIGHTNESS DEFINITION------------------------%%%
B=1/P(1); 
%%%-----------------------------FIT FUNCTION----------------------------%%%  
OUT=P(1).*exp(-(log(x/P(2)*1000)).^2/(2*P(3)^2))+P(4);