Logo ROOT   6.14/05
Reference Guide
RooUnblindCPAsymVar.cxx
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitModels *
4  * @(#)root/roofit:$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 
17 /** \class RooUnblindCPAsymVar
18  \ingroup Roofit
19 
20 Implementation of BlindTools' CP asymmetry blinding method
21 A RooUnblindCPAsymVar object is a real valued function
22 object, constructed from a blind value holder and a
23 set of unblinding parameters. When supplied to a PDF
24 in lieu of a regular parameter, the blind value holder
25 supplied to the unblinded objects will in a fit be minimized
26 to blind value corresponding to the actual minimum of the
27 parameter. The transformation is chosen such that the
28 the error on the blind parameters is identical to that
29 of the unblind parameter
30 **/
31 
32 #include "RooFit.h"
33 
34 #include "RooArgSet.h"
35 #include "RooArgSet.h"
36 #include "RooUnblindCPAsymVar.h"
37 
38 
39 using namespace std;
40 
42 
43 ////////////////////////////////////////////////////////////////////////////////
44 /// Default constructor
45 
47 {
48 }
49 
50 ////////////////////////////////////////////////////////////////////////////////
51 /// Constructor from a given RooAbsReal (to hold the blind value) and a set of blinding parameters
52 
53 RooUnblindCPAsymVar::RooUnblindCPAsymVar(const char *name, const char *title,
54  const char *blindString, RooAbsReal& cpasym)
55  : RooAbsHiddenReal(name,title),
56  _asym("asym","CP Asymmetry",this,cpasym),
57  _blindEngine(blindString)
58 {
59 }
60 
61 ////////////////////////////////////////////////////////////////////////////////
62 /// Constructor from a given RooAbsReal (to hold the blind value) and a set of blinding parameters
63 
64 RooUnblindCPAsymVar::RooUnblindCPAsymVar(const char *name, const char *title,
65  const char *blindString, RooAbsReal& cpasym, RooAbsCategory& blindState)
66  : RooAbsHiddenReal(name,title,blindState),
67  _asym("asym","CP Asymmetry",this,cpasym),
68  _blindEngine(blindString)
69 {
70 }
71 
72 ////////////////////////////////////////////////////////////////////////////////
73 /// Copy constructor
74 
76  RooAbsHiddenReal(other, name),
77  _asym("asym",this,other._asym),
79 {
80 }
81 
82 ////////////////////////////////////////////////////////////////////////////////
83 /// Copy constructor
84 
86 {
87 }
88 
89 ////////////////////////////////////////////////////////////////////////////////
90 
92 {
93  if (isHidden()) {
94  // Blinding active for this event
96  } else {
97  // Blinding not active for this event
98  return _asym ;
99  }
100 }
virtual ~RooUnblindCPAsymVar()
Copy constructor.
STL namespace.
Bool_t isHidden() const
RooUnblindCPAsymVar()
Default constructor.
virtual Double_t evaluate() const
Implementation of BlindTools' CP asymmetry blinding method A RooUnblindCPAsymVar object is a real val...
#define ClassImp(name)
Definition: Rtypes.h:359
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
RooBlindTools _blindEngine
Double_t UnHideAsym(Double_t AsymPrime) const
RooAbsHiddenReal is a base class for objects that want to hide their return value from interactive us...
RooAbsCategory is the common abstract base class for objects that represent a discrete value with a f...
char name[80]
Definition: TGX11.cxx:109