Logo ROOT  
Reference Guide
RooRangeBinning.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * @(#)root/roofitcore:$Id$
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16
17/**
18\file RooRangeBinning.cxx
19\class RooRangeBinning
20\ingroup Roofitcore
21
22RooRangeBinning is binning/range definition that only defines a range
23but no binning. It it used to store named ranges created by
24the RooRealVar::setRange() method
25**/
26
27#include "RooFit.h"
28
29#include "RooNumber.h"
30#include "RooNumber.h"
31#include "RooMsgService.h"
32#include "Riostream.h"
33#include "RooMsgService.h"
34
35#include "RooRangeBinning.h"
36
37using namespace std;
38
40;
41
42
43
44////////////////////////////////////////////////////////////////////////////////
45/// Default constructor
46
49{
52
53}
54
55
56////////////////////////////////////////////////////////////////////////////////
57/// Construct binning with range [xmin,xmax] with no binning substructure
58
61{
62 _range[0] = xmin ;
63 _range[1] = xmax ;
64}
65
66
67
68////////////////////////////////////////////////////////////////////////////////
69/// Copy constructor
70
73{
74 _range[0] = other._range[0] ;
75 _range[1] = other._range[1] ;
76}
77
78
79
80////////////////////////////////////////////////////////////////////////////////
81/// Destructor
82
84{
85}
86
87
88
89////////////////////////////////////////////////////////////////////////////////
90/// Change limits of the binning to [xlo,xhi]
91
93{
94 if (xlo>xhi) {
95 oocoutE((TObject*)0,InputArguments) << "RooRangeBinning::setRange: ERROR low bound > high bound" << endl ;
96 return ;
97 }
98
99 _range[0] = xlo ;
100 _range[1] = xhi ;
101}
#define oocoutE(o, a)
Definition: RooMsgService.h:49
double Double_t
Definition: RtypesCore.h:55
#define ClassImp(name)
Definition: Rtypes.h:365
char name[80]
Definition: TGX11.cxx:109
float xmin
Definition: THbookFile.cxx:93
float xmax
Definition: THbookFile.cxx:93
RooAbsBinning is the abstract base class for RooRealVar binning definitions This class defines the in...
Definition: RooAbsBinning.h:26
static Double_t infinity()
Return internal infinity representation.
Definition: RooNumber.cxx:49
RooRangeBinning is binning/range definition that only defines a range but no binning.
Double_t _range[2]
virtual void setRange(Double_t xlo, Double_t xhi)
Change limits of the binning to [xlo,xhi].
RooRangeBinning(const char *name=0)
Default constructor.
virtual ~RooRangeBinning()
Destructor.
Mother of all ROOT objects.
Definition: TObject.h:37
@ InputArguments
Definition: RooGlobalFunc.h:68