CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
TtSemiLRSignalSelCalc Class Reference

Class to calculate the jet combination LR value and purity from a root-file with fit functions. More...

#include "TopQuarkAnalysis/TopLeptonSelection/interface/TtSemiLRSignalSelCalc.h"

Public Member Functions

void operator() (TtSemiEvtSolution &)
 
 TtSemiLRSignalSelCalc ()
 
 TtSemiLRSignalSelCalc (const TString &, const std::vector< int > &)
 
 ~TtSemiLRSignalSelCalc ()
 

Private Attributes

bool addPurity
 
LRHelpFunctionsmyLR
 

Detailed Description

Class to calculate the jet combination LR value and purity from a root-file with fit functions.

Author
Jan Heyninck
Version
Id:
TtSemiLRSignalSelCalc.h,v 1.2 2008/02/17 11:18:54 rwolf Exp

Definition at line 31 of file TtSemiLRSignalSelCalc.h.

Constructor & Destructor Documentation

TtSemiLRSignalSelCalc::TtSemiLRSignalSelCalc ( )
TtSemiLRSignalSelCalc::TtSemiLRSignalSelCalc ( const TString &  fitInputPath,
const std::vector< int > &  observables 
)

Definition at line 9 of file TtSemiLRSignalSelCalc.cc.

References addPurity, gather_cfg::cout, and myLR.

10 {
11  std::cout << "=== Constructing a TtSemiLRSignalSelCalc... " << std::endl;
12  myLR = new LRHelpFunctions();
13  addPurity = false;
14  if(observables[0] == -1) addPurity = true;
15  myLR -> readObsHistsAndFits(fitInputPath, observables, addPurity);
16  std::cout << "=== done." << std::endl;
17 }
Help functionalities to implement and evaluate LR ratio method.
tuple cout
Definition: gather_cfg.py:121
TtSemiLRSignalSelCalc::~TtSemiLRSignalSelCalc ( )

Definition at line 19 of file TtSemiLRSignalSelCalc.cc.

References myLR.

20 {
21  delete myLR;
22 }

Member Function Documentation

void TtSemiLRSignalSelCalc::operator() ( TtSemiEvtSolution sol)

Definition at line 24 of file TtSemiLRSignalSelCalc.cc.

References addPurity, LRHelpFunctions::calcLRval(), LRHelpFunctions::calcProb(), TtSemiEvtSolution::getLRSignalEvtObsVal(), myLR, python.connectstrParser::o, LRHelpFunctions::obsFitIncluded(), TtSemiEvtSolution::setLRSignalEvtLRval(), and TtSemiEvtSolution::setLRSignalEvtProb().

25 {
26  // find the used observables
27  std::vector<double> obsVals;
28  for(unsigned int o = 0; o<100; o++){
29  if( myLR->obsFitIncluded(o) ) obsVals.push_back(sol.getLRSignalEvtObsVal(o));
30  }
31 
32  // calculate the logLR and the purity
33  double logLR = myLR->calcLRval(obsVals);
34  double prob = -999.;
35  if(addPurity) prob = myLR->calcProb(logLR);
36 
37  // fill these values to the members in the TtSemiEvtSolution
38  sol.setLRSignalEvtLRval(logLR);
39  sol.setLRSignalEvtProb(prob);
40 }
double calcLRval(const std::vector< double > &)
void setLRSignalEvtLRval(double clr)
double getLRSignalEvtObsVal(unsigned int) const
double calcProb(double)
bool obsFitIncluded(int)
void setLRSignalEvtProb(double plr)

Member Data Documentation

bool TtSemiLRSignalSelCalc::addPurity
private

Definition at line 44 of file TtSemiLRSignalSelCalc.h.

Referenced by operator()(), and TtSemiLRSignalSelCalc().

LRHelpFunctions* TtSemiLRSignalSelCalc::myLR
private