1 #ifndef __JCOMPAREHISTOGRAMS__JTESTKOLMOGOROV_1D__
2 #define __JCOMPAREHISTOGRAMS__JTESTKOLMOGOROV_1D__
19 namespace JCOMPAREHISTOGRAMS {}
20 namespace JPP {
using namespace JCOMPAREHISTOGRAMS; }
22 namespace JCOMPAREHISTOGRAMS {
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) {
60 THROW(JValueOutOfRange,
"JTestKolmogorov_1D::test(): Given histograms must be 1-D.");
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) {
105 THROW(JValueOutOfRange,
"JTestKolmogorov_1D::test(): Errors are zero for both histograms.");
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);
133 const double pValue = TMath::KolmogorovProb(z);
135 const bool passed = (pValue >
threshold);
139 h3->SetTitle(title.
getTitle().c_str());
157 std::istream&
read(std::istream&
in)
override
163 if (threshold < 0.0 || threshold > 1.0) {
164 THROW(JValueOutOfRange,
"JTestKolmogorov_1D::read(): Invalid threshold value " <<
threshold);
Interface to read input and write output for TObject tests.
std::string getTitle() const
Returns a standard string to be used as title of a graphical root object.
void test(const TObject *o1, const TObject *o2) override
Applies Kolmogorov test for two ROOT TH1 histograms.
Class dedicated to standardize the title of the graphical objects produced by the JTest_t() derived c...
#define THROW(JException_t, A)
Marco for throwing exception with std::ostream compatible message.
#define MAKE_CSTRING(A)
Make C-string.
JTestKolmogorov_1D()
Default constructor.
Auxiliary class to handle file name, ROOT directory and object name.
#define MAKE_STRING(A)
Make string.
std::istream & read(std::istream &in) override
Read test parameters from input.
JSqrt< JF1_t > Sqrt(const JF1_t &f1)
Square root of function.
double threshold
threshold p-value to decide if test is passed.
const std::string resultType
test result type
const std::string testName
test name
TCanvas * c1
Global variables to handle mouse events.
then JMuonMCEvt f $INPUT_FILE o $INTERMEDIATE_FILE d
then fatal The output file must have the wildcard in the e g root fi eval JPrintDetector a $DETECTOR O IDENTIFIER eval JPrintDetector a $DETECTOR O SUMMARY JAcoustics sh $DETECTOR_ID source JAcousticsToolkit sh CHECK_EXIT_CODE typeset A EMITTERS get_tripods $WORKDIR tripod txt EMITTERS get_transmitters $WORKDIR transmitter txt EMITTERS for EMITTER in
Structure containing the result of the test.
Implementation of the Kolmogorov test for 1D histograms.