Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooUnblindUniform.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitModels *
4 * File: $Id: RooUnblindUniform.h,v 1.5 2007/05/11 10:15:52 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_UNBLIND_UNIFORM
17#define ROO_UNBLIND_UNIFORM
18
19#include "RooAbsHiddenReal.h"
20#include "RooRealProxy.h"
21#include "RooBlindTools.h"
22
24public:
25 // Constructors, assignment etc
27 RooUnblindUniform(const char *name, const char *title,
28 const char *blindString, Double_t scale, RooAbsReal& blindValue);
29 RooUnblindUniform(const RooUnblindUniform& other, const char* name=0);
30 virtual TObject* clone(const char* newname) const { return new RooUnblindUniform(*this,newname); }
31 virtual ~RooUnblindUniform();
32
33protected:
34
35 // Function evaluation
36 virtual Double_t evaluate() const ;
37
40
41 ClassDef(RooUnblindUniform,1) // Uniform unblinding transformation
42};
43
44#endif
double Double_t
Definition RtypesCore.h:59
#define ClassDef(name, id)
Definition Rtypes.h:325
char name[80]
Definition TGX11.cxx:110
RooAbsHiddenReal is a base class for objects that want to hide their return value from interactive us...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:61
Implementation of BlindTools' offset blinding method.
RooBlindTools _blindEngine
RooUnblindUniform()
Default constructor.
virtual Double_t evaluate() const
Evaluate RooBlindTools unhide-offset method on blind value.
virtual TObject * clone(const char *newname) const
virtual ~RooUnblindUniform()
Destructor.
Mother of all ROOT objects.
Definition TObject.h:37