Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooChangeTracker.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $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 #ifndef ROO_CHANGE_TRACKER
17 #define ROO_CHANGE_TRACKER
18 
19 #include "RooAbsReal.h"
20 #include "RooListProxy.h"
21 #include <vector>
22 
23 class RooRealVar;
24 class RooArgList ;
25 
26 class RooChangeTracker : public RooAbsReal {
27 public:
28 
29  RooChangeTracker() ;
30  RooChangeTracker(const char *name, const char *title, const RooArgSet& trackSet, Bool_t checkValues=kFALSE) ;
31  virtual ~RooChangeTracker() ;
32 
33  RooChangeTracker(const RooChangeTracker& other, const char* name = 0);
34  virtual TObject* clone(const char* newname) const { return new RooChangeTracker(*this, newname); }
35 
36  Bool_t hasChanged(Bool_t clearState) ;
37 
38  RooArgSet parameters() const ;
39 
40 
41 protected:
42 
43  RooListProxy _realSet ; // List of reals to track
44  RooListProxy _catSet ; // List of categories to check
45  std::vector<Double_t> _realRef ; // Reference values for reals
46  std::vector<Int_t> _catRef ; // Reference valyes for categories
47  Bool_t _checkVal ; // Check contents as well if true
48 
49  Bool_t _init ; //!
50 
51  Double_t evaluate() const { return 1 ; }
52 
53  ClassDef(RooChangeTracker,1) // Meta object that tracks changes in set of other arguments
54 };
55 
56 #endif