Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
ProfileInspector.h
Go to the documentation of this file.
1 // @(#)root/roostats:$Id: ProfileInspector.h 31793 2009-12-10 14:43:51Z cranmer $
2 
3 /*************************************************************************
4  * Project: RooStats *
5  * Package: RooFit/RooStats *
6  * Authors: *
7  * Kyle Cranmer, Lorenzo Moneta, Gregory Schott, Wouter Verkerke *
8  * Akira Shibata
9  *************************************************************************
10  * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
11  * All rights reserved. *
12  * *
13  * For the licensing terms see $ROOTSYS/LICENSE. *
14  * For the list of contributors see $ROOTSYS/README/CREDITS. *
15  *************************************************************************/
16 
17 #ifndef ROOSTATS_ProfileInspector
18 #define ROOSTATS_ProfileInspector
19 
20 #include "TList.h"
21 #include "RooStats/ModelConfig.h"
22 #include "RooAbsData.h"
23 
24 namespace RooStats {
25 
26  class ProfileInspector {
27 
28  public:
29  ProfileInspector();
30 
31  // Destructor
32  virtual ~ProfileInspector();
33 
34  TList * GetListOfProfilePlots( RooAbsData& data, RooStats::ModelConfig * config);
35 
36 
37 
38  protected:
39 
40  ClassDef(ProfileInspector,1) // Class containing the results of the IntervalCalculator
41  };
42 }
43 
44 #endif