ROOT logo
// @(#)root/roostats:$Id: HypoTestInverterPlot.h 31276 2009-11-18 15:06:42Z moneta $
// Author: Kyle Cranmer, Lorenzo Moneta, Gregory Schott, Wouter Verkerke
/*************************************************************************
 * 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_HypoTestInverterPlot
#define ROOSTATS_HypoTestInverterPlot

#include "TNamed.h"

class TGraphErrors; 


namespace RooStats {

  class HypoTestInverterResult; 

  class HypoTestInverterPlot : public TNamed {

  public:

    // constructor
    HypoTestInverterPlot( const char* name, 
			  const char* title,
			  HypoTestInverterResult* results ) ;

    TGraphErrors* MakePlot() ;

    // destructor
    ~HypoTestInverterPlot() ;

  private:

    HypoTestInverterResult* fResults;

  protected:

    ClassDef(HypoTestInverterPlot,1)  // HypoTestInverterPlot class

  };
}

#endif
 HypoTestInverterPlot.h:1
 HypoTestInverterPlot.h:2
 HypoTestInverterPlot.h:3
 HypoTestInverterPlot.h:4
 HypoTestInverterPlot.h:5
 HypoTestInverterPlot.h:6
 HypoTestInverterPlot.h:7
 HypoTestInverterPlot.h:8
 HypoTestInverterPlot.h:9
 HypoTestInverterPlot.h:10
 HypoTestInverterPlot.h:11
 HypoTestInverterPlot.h:12
 HypoTestInverterPlot.h:13
 HypoTestInverterPlot.h:14
 HypoTestInverterPlot.h:15
 HypoTestInverterPlot.h:16
 HypoTestInverterPlot.h:17
 HypoTestInverterPlot.h:18
 HypoTestInverterPlot.h:19
 HypoTestInverterPlot.h:20
 HypoTestInverterPlot.h:21
 HypoTestInverterPlot.h:22
 HypoTestInverterPlot.h:23
 HypoTestInverterPlot.h:24
 HypoTestInverterPlot.h:25
 HypoTestInverterPlot.h:26
 HypoTestInverterPlot.h:27
 HypoTestInverterPlot.h:28
 HypoTestInverterPlot.h:29
 HypoTestInverterPlot.h:30
 HypoTestInverterPlot.h:31
 HypoTestInverterPlot.h:32
 HypoTestInverterPlot.h:33
 HypoTestInverterPlot.h:34
 HypoTestInverterPlot.h:35
 HypoTestInverterPlot.h:36
 HypoTestInverterPlot.h:37
 HypoTestInverterPlot.h:38
 HypoTestInverterPlot.h:39
 HypoTestInverterPlot.h:40
 HypoTestInverterPlot.h:41
 HypoTestInverterPlot.h:42
 HypoTestInverterPlot.h:43
 HypoTestInverterPlot.h:44
 HypoTestInverterPlot.h:45
 HypoTestInverterPlot.h:46
 HypoTestInverterPlot.h:47
 HypoTestInverterPlot.h:48