Logo ROOT   6.18/05
Reference Guide
RooRealConstant.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooRealConstant.h,v 1.13 2007/05/11 09:11:30 verkerke Exp $
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#ifndef ROO_REAL_CONSTANT
17#define ROO_REAL_CONSTANT
18
19#include "Rtypes.h"
20
21class RooAbsReal ;
22class RooArgList ;
23class TIterator ;
24#include "RooConstVar.h"
25
27public:
28
29 inline RooRealConstant() {} ;
30 virtual ~RooRealConstant() {} ;
32
33 static void cleanup() ;
34
35 static RooConstVar& removalDummy() ;
36
37protected:
38
39 static void init() ;
40
41 static RooArgList* _constDB ; // List of already instantiated constants
42
43 ClassDef(RooRealConstant,0) // RooRealVar constants factory
44};
45
46
47#endif
48
double Double_t
Definition: RtypesCore.h:55
#define ClassDef(name, id)
Definition: Rtypes.h:326
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:53
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgList.h:21
RooConstVar represent a constant real-valued object.
Definition: RooConstVar.h:25
RooRealConstant provides static functions to create and keep track of RooRealVar constants.
static RooArgList * _constDB
static void init()
One-time initialization of constants database.
static void cleanup()
Cleanup function register with RooSentinel for cleanup in atexit()
virtual ~RooRealConstant()
static RooConstVar & removalDummy()
Create a dummy node used in node-removal operations.
static RooConstVar & value(Double_t value)
Return a constant value object with given value.
Iterator abstract base class.
Definition: TIterator.h:30