Logo ROOT   6.08/07
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 #include "Riosfwd.h"
21 
22 class RooAbsReal ;
23 class RooArgList ;
24 class TIterator ;
25 #include "RooConstVar.h"
26 
28 public:
29 
30  inline RooRealConstant() {} ;
31  virtual ~RooRealConstant() {} ;
32  static RooConstVar& value(Double_t value) ;
33 
34  static void cleanup() ;
35 
36  static RooConstVar& removalDummy() ;
37 
38 protected:
39 
40  static void init() ;
41 
42  static RooArgList* _constDB ; // List of already instantiated constants
43  static TIterator* _constDBIter ; // Iterator over constants list
44 
45  ClassDef(RooRealConstant,0) // RooRealVar constants factory
46 };
47 
48 
49 #endif
50 
static TIterator * _constDBIter
RooRealConstant provides static functions to create and keep track of RooRealVar constants.
Iterator abstract base class.
Definition: TIterator.h:32
#define ClassDef(name, id)
Definition: Rtypes.h:254
RooConstVar represent a constant real-valued object.
Definition: RooConstVar.h:25
virtual ~RooRealConstant()
double Double_t
Definition: RtypesCore.h:55
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:53
static RooArgList * _constDB
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.
static void cleanup()
Cleanup function register with RooSentinel for cleanup in atexit()
static void init()
One-time initialization of constants database.