/usr/include/root/RooStats/HypoTestPlot.h is in libroot-roofit-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | // @(#)root/roostats:$Id$
// Author: Sven Kreiss June 2010
/*************************************************************************
* Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOSTATS_HypoTestPlot
#define ROOSTATS_HypoTestPlot
#ifndef ROOSTATS_SamplingDistPlot
#include "RooStats/SamplingDistPlot.h"
#endif
#ifndef ROOSTATS_SamplingDistribution
#include "RooStats/SamplingDistribution.h"
#endif
#ifndef ROOSTATS_HypoTestResult
#include "RooStats/HypoTestResult.h"
#endif
namespace RooStats {
class HypoTestPlot: public SamplingDistPlot {
public:
/// Constructor
HypoTestPlot() : SamplingDistPlot() , fHypoTestResult(0) {} // needed for IO
HypoTestPlot(HypoTestResult& result, Int_t bins=100, Option_t* opt = "NORMALIZE HIST");
HypoTestPlot(HypoTestResult& result, Int_t bins, Double_t min, Double_t max, Option_t* opt = "NORMALIZE HIST");
~HypoTestPlot(void) {}
// Applies a HypoTestResult.
void ApplyResult(HypoTestResult& result, Option_t* opt = "NORMALIZE HIST");
// Set default style options (also called in the constructor that takes a HypoTestResult).
void ApplyDefaultStyle(void);
private:
HypoTestResult *fHypoTestResult;
protected:
ClassDef(HypoTestPlot,1)
};
}
#endif
|