CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TtSemiLRSignalSelCalc.cc
Go to the documentation of this file.
1 //
2 // Author: Jan Heyninck
3 // Created: Tue Apr 3 17:33:23 PDT 2007
4 //
5 // $Id: TtSemiLRSignalSelCalc.cc,v 1.4 2013/05/28 17:54:37 gartung Exp $
6 //
8 
9 // constructor with path; default should not be used
10 TtSemiLRSignalSelCalc::TtSemiLRSignalSelCalc(const TString& fitInputPath, const std::vector<int>& observables)
11 {
12  std::cout << "=== Constructing a TtSemiLRSignalSelCalc... " << std::endl;
13  myLR = new LRHelpFunctions();
14  addPurity = false;
15  if(observables[0] == -1) addPurity = true;
16  myLR -> readObsHistsAndFits(fitInputPath, observables, addPurity);
17  std::cout << "=== done." << std::endl;
18 }
19 
21 {
22  delete myLR;
23 }
24 
26 {
27  // find the used observables
28  std::vector<double> obsVals;
29  for(unsigned int o = 0; o<100; o++){
30  if( myLR->obsFitIncluded(o) ) obsVals.push_back(sol.getLRSignalEvtObsVal(o));
31  }
32 
33  // calculate the logLR and the purity
34  double logLR = myLR->calcLRval(obsVals);
35  double prob = -999.;
36  if(addPurity) prob = myLR->calcProb(logLR);
37 
38  // fill these values to the members in the TtSemiEvtSolution
39  sol.setLRSignalEvtLRval(logLR);
40  sol.setLRSignalEvtProb(prob);
41 }
double calcLRval(const std::vector< double > &)
void setLRSignalEvtLRval(double clr)
double getLRSignalEvtObsVal(unsigned int) const
double calcProb(double)
Help functionalities to implement and evaluate LR ratio method.
bool obsFitIncluded(int)
void operator()(TtSemiEvtSolution &)
void setLRSignalEvtProb(double plr)
tuple cout
Definition: gather_cfg.py:121