Logo ROOT  
Reference Guide
RooAbsHiddenReal.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooAbsHiddenReal.h,v 1.10 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_ABS_HIDDEN_REAL
17#define ROO_ABS_HIDDEN_REAL
18
19class RooArgSet ;
20#include "RooAbsReal.h"
21#include "RooCategoryProxy.h"
22
23class RooCategory ;
24
26public:
27 // Constructors, assignment etc.
28 inline RooAbsHiddenReal() {
29 // Default constructor
30 }
31 RooAbsHiddenReal(const char *name, const char *title, const char *unit= "") ;
32 RooAbsHiddenReal(const char *name, const char *title, RooAbsCategory& blindState, const char *unit= "") ;
33 RooAbsHiddenReal(const RooAbsHiddenReal& other, const char* name=0) ;
34 virtual ~RooAbsHiddenReal();
35
36 // I/O streaming interface (machine readable)
37 virtual Bool_t readFromStream(std::istream& is, Bool_t compact, Bool_t verbose=kFALSE) ;
38 virtual void writeToStream(std::ostream& os, Bool_t compact) const ;
39
40 // Printing interface (human readable)
41 virtual void printValue(std::ostream& stream) const ;
42
43 inline Bool_t isHidden() const {
44 // If true, hiding mode is active
45 return _state.arg().getCurrentIndex()!=0 ;
46 }
47
48 Double_t getHiddenVal(const RooArgSet* nset=0) const {
49 // Bypass accessor to function value that also works in hidden mode
50 return RooAbsReal::getVal(nset) ;
51 }
52
53protected:
54
55 // This is dubious from a C++ point of view, but it blocks the interactive user
56 // from accidentally calling getVal() without explicit cast, which is the whole
57 // point of this class
58 virtual Double_t getValV(const RooArgSet* nset=0) const {
59 // Forward call to RooAbsReal
60 return RooAbsReal::getValV(nset) ;
61 }
62
65
66 RooCategoryProxy _state ; // Proxy to hiding state category
67
68 ClassDef(RooAbsHiddenReal,1) // Abstract hidden real-valued variable
69};
70
71#endif
const Bool_t kFALSE
Definition: RtypesCore.h:90
double Double_t
Definition: RtypesCore.h:57
#define ClassDef(name, id)
Definition: Rtypes.h:322
char name[80]
Definition: TGX11.cxx:109
RooAbsCategory is the base class for objects that represent a discrete value with a finite number of ...
virtual value_type getCurrentIndex() const
Return index number of current state.
RooAbsHiddenReal is a base class for objects that want to hide their return value from interactive us...
RooCategoryProxy _state
RooAbsCategory & dummyBlindState() const
Return reference to internal dummy RooCategory implementation blinding state switch.
virtual void printValue(std::ostream &stream) const
Special version of printValue that doesn't reveal the objects value.
virtual ~RooAbsHiddenReal()
Destructor.
virtual void writeToStream(std::ostream &os, Bool_t compact) const
Special version of writeToStream that disallows reading from stream.
Double_t getHiddenVal(const RooArgSet *nset=0) const
Bool_t isHidden() const
static RooCategory * _dummyBlindState
virtual Double_t getValV(const RooArgSet *nset=0) const
Return value of object.
virtual Bool_t readFromStream(std::istream &is, Bool_t compact, Bool_t verbose=kFALSE)
Special version of readFromStream that disallows reading from stream.
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:60
Double_t getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
Definition: RooAbsReal.h:90
virtual Double_t getValV(const RooArgSet *normalisationSet=nullptr) const
Return value of object.
Definition: RooAbsReal.cxx:270
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgSet.h:28
RooCategory is an object to represent discrete states.
Definition: RooCategory.h:23
const T & arg() const
Return reference to object held in proxy.