Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooRangeBoolean.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 RooRangeBoolean.cxx
19\class RooRangeBoolean
20\ingroup Roofitcore
21
22RooRangeBoolean
23**/
24
25#include "RooFit.h"
26
27#include "Riostream.h"
28#include <math.h>
29
30#include "RooRangeBoolean.h"
31#include "RooAbsReal.h"
32#include "RooRealVar.h"
33#include "RooArgList.h"
34#include "RooMsgService.h"
35
36using namespace std;
37
39
40
41////////////////////////////////////////////////////////////////////////////////
42/// Default constructor
43
45{
46}
47
48
49////////////////////////////////////////////////////////////////////////////////
50
51RooRangeBoolean::RooRangeBoolean(const char* name, const char* title, RooAbsRealLValue& x, const char* rangeName) :
52 RooAbsReal(name, title),
53 _x("x", "Dependent", this, x),
54 _rangeName(rangeName)
55{
56}
57
58
59
60////////////////////////////////////////////////////////////////////////////////
61/// Copy constructor
62
64 RooAbsReal(other, name),
65 _x("x", this, other._x),
66 _rangeName(other._rangeName)
67{
68}
69
70
71
72
73////////////////////////////////////////////////////////////////////////////////
74/// Destructor
75
77{
78}
79
80
81
82
83////////////////////////////////////////////////////////////////////////////////
84/// Return 1 if x is in range, zero otherwis
85
87{
90
91 Double_t ret = (_x >= xmin && _x < xmax) ? 1.0 : 0.0 ;
92 return ret ;
93}
94
95
96
97////////////////////////////////////////////////////////////////////////////////
98
99std::list<Double_t>* RooRangeBoolean::plotSamplingHint(RooAbsRealLValue& obs, Double_t /*xlo*/, Double_t /*xhi*/) const
100{
101 if (string(obs.GetName())!=_x.arg().GetName()) {
102 return 0 ;
103 }
104
105 list<Double_t>* hint = new list<Double_t> ;
106 hint->push_back(((RooAbsRealLValue&)_x.arg()).getMin(_rangeName.Data())-1e-6) ;
107 hint->push_back(((RooAbsRealLValue&)_x.arg()).getMin(_rangeName.Data())+1e-6) ;
108 hint->push_back(((RooAbsRealLValue&)_x.arg()).getMax(_rangeName.Data())-1e-6) ;
109 hint->push_back(((RooAbsRealLValue&)_x.arg()).getMax(_rangeName.Data())+1e-6) ;
110 return hint ;
111}
112
#define e(i)
Definition RSha256.hxx:103
#define ClassImp(name)
Definition Rtypes.h:364
char name[80]
Definition TGX11.cxx:110
float xmin
float xmax
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:61
RooRangeBoolean.
RooRealProxy _x
virtual std::list< Double_t > * plotSamplingHint(RooAbsRealLValue &obs, Double_t xlo, Double_t xhi) const
Interface for returning an optional hint for initial sampling points when constructing a curve projec...
Double_t evaluate() const
Return 1 if x is in range, zero otherwis.
RooRangeBoolean()
Default constructor.
virtual ~RooRangeBoolean()
Destructor.
const T & arg() const
Return reference to object held in proxy.
virtual const char * GetName() const
Returns name of object.
Definition TNamed.h:47
const char * Data() const
Definition TString.h:369
Double_t x[n]
Definition legend1.C:17