Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-11-16 09:54:51

0001 // @(#)root/roostats:$Id: ProfileInspector.h 31793 2009-12-10 14:43:51Z cranmer $
0002 
0003 /*************************************************************************
0004  * Project: RooStats                                                     *
0005  * Package: RooFit/RooStats                                              *
0006  * Authors:                                                              *
0007  *   Kyle Cranmer, Lorenzo Moneta, Gregory Schott, Wouter Verkerke       *
0008  *   Akira Shibata
0009  *************************************************************************
0010  * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers.               *
0011  * All rights reserved.                                                  *
0012  *                                                                       *
0013  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0014  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0015  *************************************************************************/
0016 
0017 #ifndef ROOSTATS_ProfileInspector
0018 #define ROOSTATS_ProfileInspector
0019 
0020 #include "RooStats/ModelConfig.h"
0021 #include "RooAbsData.h"
0022 
0023 class TList;
0024 
0025 namespace RooStats {
0026 
0027   class ProfileInspector {
0028 
0029    public:
0030     ProfileInspector();
0031 
0032     // Destructor
0033     virtual ~ProfileInspector();
0034 
0035     TList * GetListOfProfilePlots( RooAbsData& data, RooStats::ModelConfig * config);
0036 
0037 
0038 
0039   protected:
0040 
0041     ClassDef(ProfileInspector,1)  // Class containing the results of the IntervalCalculator
0042   };
0043 }
0044 
0045 #endif