CMS 3D CMS Logo

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