Changeset 7868 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
08/09/06 10:39:45 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MMath.cc

    r7867 r7868  
    168168Double_t MMath::MedianDevImp(Size n, const Element *a)
    169169{
     170    // Sanity check
     171    if (n <= 0 || !a)
     172        return 0;
     173
    170174    // Get median of distribution
    171175    const Double_t med = TMath::Median(n, a);
    172176
    173     // Allocate space for distribution
    174     Double_t *arr = new Double_t[n];
    175 
    176177    // Create the abs(a[i]-med) distribution
     178    Double_t arr[n];
    177179    for (int i=0; i<n; i++)
    178180        arr[i] = TMath::Abs(a[i]-med);
    179181
    180182    // FIXME: GausProb() is a workaround. It should be taken into account in Median!
    181     const Double_t rc = TMath::Median(n, arr);
    182 
    183     // delete space
    184     delete arr;
    185 
    186     // return result
    187     return rc;
     183    return TMath::Median(n, arr);
     184    /*
     185    // Sort distribution
     186    Long64_t idx[n];
     187    TMath::SortImp(n, arr, idx, kTRUE);
     188
     189    // Define where to divide
     190    const Int_t div = TMath::Nint(n*MMath::GaussProb(1.0));
     191
     192    // Calculate result
     193    Double_t dev = TMath::KOrdStat(n, arr, div, idx);
     194    if (n%2 == 0)
     195    {
     196        dev += TMath::KOrdStat(n, arr, div-1, idx);
     197        dev /= 2;
     198    }
     199
     200    return dev;
     201*/
    188202}
    189203
Note: See TracChangeset for help on using the changeset viewer.