56      const TH1* h1 =  
dynamic_cast<const TH1*
>(o1);
 
   57      const TH1* h2 =  
dynamic_cast<const TH1*
>(o2);
 
   59      if (h1->GetDimension() != 1 || h2->GetDimension() != 1) {
 
   63      const int n1 = h1 -> GetNbinsX();
 
   64      const int n2 = h2 -> GetNbinsX();
 
   67        THROW(
JValueOutOfRange, 
"JTestKolmogorov_1D::test(): Histograms with different bining. The objects: " <<
 
   68              h1->GetName() << 
" and " << h2->GetName() << 
" can not be compared." << endl);
 
   71      TH1* h3 = (TH1*) h1->Clone(h1->GetName() == h2->GetName() ?
 
   75      const double s1 = 1./h1->Integral();
 
   76      const double s2 = 1./h2->Integral();
 
   78      double ew1, ew2, w1 = 0, w2 = 0;
 
   80      for (
int bin = 1; bin <= n1; ++bin){
 
   81        ew1 = h1->GetBinError(bin);
 
   82        ew2 = h2->GetBinError(bin);
 
   90      double esum1 = 0, esum2 = 0;
 
  104      if (afunc2 && afunc1) {
 
  108      double dmax = 0, 
c1 = 0, c2 = 0;
 
  110      for (
int bin=1 ; bin<=n1 ; ++bin) {
 
  112        c1 += s1*h1->GetBinContent(bin);
 
  113        c2 += s2*h2->GetBinContent(bin);
 
  115        double d = TMath::Abs(
c1-c2)*TMath::Sqrt(esum1*esum2/(esum1+esum2));
 
  116        double p = TMath::KolmogorovProb(d);
 
  118        dmax = TMath::Max(dmax,TMath::Abs(
c1-c2));
 
  120        h3->SetBinContent(bin,p);
 
  126        z = dmax*TMath::Sqrt(esum2);
 
  128        z = dmax*TMath::Sqrt(esum1);
 
  130        z = dmax*TMath::Sqrt(esum1*esum2/(esum1+esum2));
 
  133      const double pValue = TMath::KolmogorovProb(z);
 
  135      const bool passed = (pValue > 
threshold);
 
  139      h3->SetTitle(title.
getTitle().c_str());