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 scale, RooAbsReal& blindValue);
29 RooUnblindUniform(const RooUnblindUniform& other, const char* name=nullptr);
30 TObject* clone(const char* newname) const override { return new RooUnblindUniform(*this,newname); }
31 ~RooUnblindUniform() override;
32
33protected:
34
35 // Function evaluation
36 double evaluate() const override ;
37
40
41 ClassDefOverride(RooUnblindUniform,1) // Uniform unblinding transformation
42};
43
44#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
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:62
Implementation of BlindTools' offset blinding method.
RooBlindTools _blindEngine
RooUnblindUniform()
Default constructor.
TObject * clone(const char *newname) const override
~RooUnblindUniform() override
Destructor.
double evaluate() const override
Evaluate RooBlindTools unhide-offset method on blind value.
Mother of all ROOT objects.
Definition TObject.h:41