ROOT
6.07/01
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
roofit
histfactory
inc
RooStats
HistFactory
HistFactoryException.h
Go to the documentation of this file.
1
// @(#)root/roostats:$Id$
2
// Author: George Lewis, Kyle Cranmer
3
/*************************************************************************
4
* Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
5
* All rights reserved. *
6
* *
7
* For the licensing terms see $ROOTSYS/LICENSE. *
8
* For the list of contributors see $ROOTSYS/README/CREDITS. *
9
*************************************************************************/
10
11
12
#ifndef HISTFACTORY_EXCEPTION
13
#define HISTFACTORY_EXCEPTION
14
15
#include <iostream>
16
#include <exception>
17
18
19
namespace
RooStats{
20
namespace
HistFactory{
21
22
class
hf_exc
:
public
std::exception
23
{
24
virtual
const
char
*
what
()
const
throw()
25
{
26
return
"HistFactory - Exception"
;
27
}
28
};
29
30
}
31
}
32
33
//static hf_exc bad_hf;
34
35
#endif
RooStats::HistFactory::hf_exc
Definition:
HistFactoryException.h:22
RooStats::HistFactory::hf_exc::what
virtual const char * what() const
Definition:
HistFactoryException.h:24