CMS 3D CMS Logo

Public Member Functions | Protected Member Functions | Private Attributes | Friends

StEvtSolution Class Reference

#include <StEvtSolution.h>

List of all members.

Public Member Functions

bool getBestSol () const
pat::Jet getBottom () const
int getChangeBL () const
double getChi2Prob () const
std::string getDecay () const
double getDeltaRB () const
double getDeltaRL () const
pat::Electron getElectron () const
pat::Particle getFitBottom () const
reco::Particle getFitLept () const
pat::Particle getFitLepton () const
reco::Particle getFitLepW () const
pat::Particle getFitLight () const
pat::Particle getFitNeutrino () const
const reco::GenParticlegetGenBottom () const
const edm::RefProd< StGenEvent > & getGenEvent () const
const reco::GenParticlegetGenLept () const
const reco::GenParticlegetGenLepton () const
const reco::GenParticlegetGenLepW () const
const reco::GenParticlegetGenNeutrino () const
reco::Particle getLept () const
reco::Particle getLepW () const
pat::Jet getLight () const
pat::Muon getMuon () const
pat::MET getNeutrino () const
double getPtrueBhadrSel () const
double getPtrueBJetSel () const
double getPtrueCombExist () const
double getPtrueJetComb () const
pat::Jet getRecBottom () const
pat::Electron getRecElectron () const
reco::Particle getRecLept () const
reco::Particle getRecLepW () const
pat::Jet getRecLight () const
pat::Muon getRecMuon () const
pat::MET getRecNeutrino () const
std::vector< double > getScanValues () const
double getSignalLRTot () const
double getSignalPur () const
double getSumDeltaRjp () const
 StEvtSolution ()
virtual ~StEvtSolution ()

Protected Member Functions

void setBestSol (bool bs)
void setBottom (const edm::Handle< std::vector< pat::Jet > > &jet, int i)
void setChangeBL (int bl)
void setChi2Prob (double prob)
void setDeltaRB (double adr)
void setDeltaRL (double adr)
void setElectron (const edm::Handle< std::vector< pat::Electron > > &elec, int i)
void setFitBottom (const pat::Particle &part)
void setFitLepton (const pat::Particle &part)
void setFitLight (const pat::Particle &part)
void setFitNeutrino (const pat::Particle &part)
void setGenEvt (const edm::Handle< StGenEvent > &)
void setJetCorrectionScheme (int scheme)
void setLight (const edm::Handle< std::vector< pat::Jet > > &jet, int i)
void setMuon (const edm::Handle< std::vector< pat::Muon > > &muon, int i)
void setNeutrino (const edm::Handle< std::vector< pat::MET > > &met, int i)
void setPtrueBhadrSel (double pbh)
void setPtrueBJetSel (double pbs)
void setPtrueCombExist (double pce)
void setPtrueJetComb (double pt)
void setScanValues (const std::vector< double > &)
void setSignalLRTot (double lrt)
void setSignalPurity (double pur)
void setSumDeltaRjp (double sdr)

Private Attributes

bool bestSol_
edm::Ref< std::vector< pat::Jet > > bottom_
int changeBL_
double chi2Prob_
std::string decay_
double deltaRB_
double deltaRL_
edm::Ref< std::vector
< pat::Electron > > 
electron_
std::vector< pat::ParticlefitBottom_
std::vector< pat::ParticlefitLepton_
std::vector< pat::ParticlefitLight_
std::vector< pat::ParticlefitNeutrino_
int jetCorrScheme_
edm::Ref< std::vector< pat::Jet > > light_
edm::Ref< std::vector
< pat::Muon > > 
muon_
edm::Ref< std::vector< pat::MET > > neutrino_
double pTrueBhadrSel_
double pTrueBJetSel_
double pTrueCombExist_
double pTrueJetComb_
std::vector< double > scanValues_
double signalLRTot_
double signalPur_
double sumDeltaRjp_
edm::RefProd< StGenEventtheGenEvt_

Friends

class StEvtSolutionMaker
class StKinFitter

Detailed Description

Definition at line 22 of file StEvtSolution.h.


Constructor & Destructor Documentation

StEvtSolution::StEvtSolution ( )
StEvtSolution::~StEvtSolution ( ) [virtual]

Definition at line 25 of file StEvtSolution.cc.

{
}

Member Function Documentation

bool StEvtSolution::getBestSol ( ) const [inline]

Definition at line 95 of file StEvtSolution.h.

References bestSol_.

{ return bestSol_; }
pat::Jet StEvtSolution::getBottom ( ) const

Definition at line 32 of file StEvtSolution.cc.

References bottom_, and jetCorrScheme_.

Referenced by StKinFitter::addKinFitInfo(), getLept(), and getRecBottom().

{
  // WARNING this is obsolete and only 
  // kept for backwards compatibility
  if(jetCorrScheme_==1){
    //jet calibrated according to MC truth
    return bottom_->correctedJet("HAD", "B");
  } 
  else if(jetCorrScheme_==2){
    return bottom_->correctedJet("HAD", "B");
  }
  else{
    return *bottom_;
  }
}
int StEvtSolution::getChangeBL ( ) const [inline]

Definition at line 94 of file StEvtSolution.h.

References changeBL_.

{ return changeBL_; }
double StEvtSolution::getChi2Prob ( ) const [inline]

Definition at line 84 of file StEvtSolution.h.

References chi2Prob_.

{ return chi2Prob_; }
std::string StEvtSolution::getDecay ( ) const [inline]

Definition at line 78 of file StEvtSolution.h.

References decay_.

Referenced by StKinFitter::addKinFitInfo(), getLept(), getLepW(), and getRecLept().

{ return decay_; }
double StEvtSolution::getDeltaRB ( ) const [inline]

Definition at line 92 of file StEvtSolution.h.

References deltaRB_.

{ return deltaRB_; }
double StEvtSolution::getDeltaRL ( ) const [inline]

Definition at line 93 of file StEvtSolution.h.

References deltaRL_.

{ return deltaRL_; }
pat::Electron StEvtSolution::getElectron ( ) const [inline]

Definition at line 38 of file StEvtSolution.h.

References electron_.

Referenced by StKinFitter::addKinFitInfo(), getLept(), getLepW(), getRecElectron(), and getRecLept().

{ return *electron_; };
pat::Particle StEvtSolution::getFitBottom ( ) const [inline]

Definition at line 68 of file StEvtSolution.h.

References fitBottom_.

Referenced by getFitLept().

{ return (fitBottom_.size()>0 ? fitBottom_.front() : pat::Particle()); };
reco::Particle StEvtSolution::getFitLept ( ) const

Definition at line 144 of file StEvtSolution.cc.

References getFitBottom(), getFitLepton(), getFitNeutrino(), and p4.

{ 
  // FIXME: provide the correct charge from generated event
  return reco::Particle(0, this->getFitLepton().p4()+this->getFitNeutrino().p4()+this->getFitBottom().p4());
}
pat::Particle StEvtSolution::getFitLepton ( ) const [inline]

Definition at line 70 of file StEvtSolution.h.

References fitLepton_.

Referenced by getFitLept(), and getFitLepW().

{ return (fitLepton_.size()>0 ? fitLepton_.front() : pat::Particle()); };
reco::Particle StEvtSolution::getFitLepW ( ) const

Definition at line 138 of file StEvtSolution.cc.

References getFitLepton(), getFitNeutrino(), and p4.

{
  // FIXME: provide the correct charge from generated event
  return reco::Particle(0, this->getFitLepton().p4()+this->getFitNeutrino().p4());
}
pat::Particle StEvtSolution::getFitLight ( ) const [inline]

Definition at line 69 of file StEvtSolution.h.

References fitLight_.

{ return (fitLight_.size()>0 ? fitLight_.front() : pat::Particle()); };
pat::Particle StEvtSolution::getFitNeutrino ( ) const [inline]

Definition at line 71 of file StEvtSolution.h.

References fitNeutrino_.

Referenced by getFitLept(), and getFitLepW().

{ return (fitNeutrino_.size()>0 ? fitNeutrino_.front() : pat::Particle()); };
const reco::GenParticle * StEvtSolution::getGenBottom ( ) const

Definition at line 86 of file StEvtSolution.cc.

References theGenEvt_.

{ 
  if(!theGenEvt_) return 0; 
  else return theGenEvt_->decayB();
}
const edm::RefProd<StGenEvent>& StEvtSolution::getGenEvent ( ) const [inline]

Definition at line 46 of file StEvtSolution.h.

References theGenEvt_.

{ return theGenEvt_; };
const reco::GenParticle * StEvtSolution::getGenLept ( ) const

Definition at line 117 of file StEvtSolution.cc.

References theGenEvt_.

{ 
  if (!theGenEvt_) return 0; 
  else return theGenEvt_->singleTop(); 
}
const reco::GenParticle * StEvtSolution::getGenLepton ( ) const

Definition at line 99 of file StEvtSolution.cc.

References theGenEvt_.

{ 
  if(!theGenEvt_) return 0; 
  else return theGenEvt_->singleLepton(); 
}
const reco::GenParticle * StEvtSolution::getGenLepW ( ) const

Definition at line 111 of file StEvtSolution.cc.

References theGenEvt_.

{ 
  if (!theGenEvt_) return 0; 
  else return theGenEvt_->singleW(); 
}
const reco::GenParticle * StEvtSolution::getGenNeutrino ( ) const

Definition at line 105 of file StEvtSolution.cc.

References theGenEvt_.

{ 
  if(!theGenEvt_) return 0; 
  else return theGenEvt_->singleNeutrino(); 
}
reco::Particle StEvtSolution::getLept ( ) const

Definition at line 73 of file StEvtSolution.cc.

References getBottom(), getDecay(), getElectron(), getMuon(), getNeutrino(), AlCaHLTBitMon_ParallelJobs::p, and p4.

{
  // FIXME: the charge from the genevent
  reco::Particle p;
  if(this->getDecay() == "muon") p=reco::Particle(0, this->getMuon().p4()+this->getNeutrino().p4()+this->getBottom().p4(), math::XYZPoint());
  if(this->getDecay() == "electron") p=reco::Particle(0, this->getElectron().p4()+this->getNeutrino().p4()+this->getBottom().p4(), math::XYZPoint());
  return p;
}
reco::Particle StEvtSolution::getLepW ( ) const

Definition at line 64 of file StEvtSolution.cc.

References getDecay(), getElectron(), getMuon(), getNeutrino(), AlCaHLTBitMon_ParallelJobs::p, and p4.

Referenced by getRecLepW().

{
  // FIXME: the charge from the genevent
  reco::Particle p;
  if(this->getDecay() == "muon") p=reco::Particle(0, this->getMuon().p4()+this->getNeutrino().p4(), math::XYZPoint());
  if(this->getDecay() == "electron") p=reco::Particle(0, this->getElectron().p4()+this->getNeutrino().p4(), math::XYZPoint());
  return p;
}
pat::Jet StEvtSolution::getLight ( ) const

Definition at line 48 of file StEvtSolution.cc.

References jetCorrScheme_, and light_.

Referenced by StKinFitter::addKinFitInfo(), and getRecLight().

{
  // WARNING this is obsolete and only 
  // kept for backwards compatibility
  if(jetCorrScheme_==1){
    //jet calibrated according to MC truth
    return light_->correctedJet("HAD", "UDS");
  }
  else if(jetCorrScheme_==2){
    return light_->correctedJet("HAD", "UDS");
  }
  else{
    return *light_;
  }
}
pat::Muon StEvtSolution::getMuon ( ) const [inline]

Definition at line 37 of file StEvtSolution.h.

References muon_.

Referenced by StKinFitter::addKinFitInfo(), getLept(), getLepW(), getRecLept(), and getRecMuon().

{ return *muon_; };
pat::MET StEvtSolution::getNeutrino ( ) const [inline]

Definition at line 39 of file StEvtSolution.h.

References neutrino_.

Referenced by StKinFitter::addKinFitInfo(), getLept(), getLepW(), getRecLept(), and getRecNeutrino().

{ return *neutrino_; };
double StEvtSolution::getPtrueBhadrSel ( ) const [inline]

Definition at line 87 of file StEvtSolution.h.

References pTrueBhadrSel_.

{ return pTrueBhadrSel_; }
double StEvtSolution::getPtrueBJetSel ( ) const [inline]

Definition at line 86 of file StEvtSolution.h.

References pTrueBJetSel_.

{ return pTrueBJetSel_; }
double StEvtSolution::getPtrueCombExist ( ) const [inline]

Definition at line 85 of file StEvtSolution.h.

References pTrueCombExist_.

{ return pTrueCombExist_; }
double StEvtSolution::getPtrueJetComb ( ) const [inline]

Definition at line 88 of file StEvtSolution.h.

References pTrueJetComb_.

{ return pTrueJetComb_; }
pat::Jet StEvtSolution::getRecBottom ( ) const [inline]

Definition at line 57 of file StEvtSolution.h.

References pat::Jet::correctedJet(), and getBottom().

Referenced by getRecLept().

{ return this->getBottom().correctedJet("RAW"); };
pat::Electron StEvtSolution::getRecElectron ( ) const [inline]

Definition at line 60 of file StEvtSolution.h.

References getElectron().

{ return this->getElectron(); }; // redundant
reco::Particle StEvtSolution::getRecLept ( ) const

Definition at line 126 of file StEvtSolution.cc.

References getDecay(), getElectron(), getMuon(), getNeutrino(), getRecBottom(), AlCaHLTBitMon_ParallelJobs::p, and p4.

{
  // FIXME: the charge from the genevent
  reco::Particle p;
  if(this->getDecay() == "muon") p=reco::Particle(0, this->getMuon().p4()+this->getNeutrino().p4()+this->getRecBottom().p4(), math::XYZPoint());
  if(this->getDecay() == "electron") p=reco::Particle(0, this->getElectron().p4()+this->getNeutrino().p4()+this->getRecBottom().p4(), math::XYZPoint());
  return p;
}
reco::Particle StEvtSolution::getRecLepW ( ) const [inline]

Definition at line 62 of file StEvtSolution.h.

References getLepW().

{ return this->getLepW(); };     // redundant
pat::Jet StEvtSolution::getRecLight ( ) const [inline]

Definition at line 58 of file StEvtSolution.h.

References pat::Jet::correctedJet(), and getLight().

{ return this->getLight ().correctedJet("RAW"); };
pat::Muon StEvtSolution::getRecMuon ( ) const [inline]

Definition at line 59 of file StEvtSolution.h.

References getMuon().

{ return this->getMuon(); };     // redundant
pat::MET StEvtSolution::getRecNeutrino ( ) const [inline]

Definition at line 61 of file StEvtSolution.h.

References getNeutrino().

{ return this->getNeutrino(); }; // redundant
std::vector<double> StEvtSolution::getScanValues ( ) const [inline]

Definition at line 83 of file StEvtSolution.h.

References scanValues_.

{ return scanValues_; }
double StEvtSolution::getSignalLRTot ( ) const [inline]

Definition at line 90 of file StEvtSolution.h.

References signalLRTot_.

{ return signalLRTot_; }
double StEvtSolution::getSignalPur ( ) const [inline]

Definition at line 89 of file StEvtSolution.h.

References signalPur_.

{ return signalPur_; }
double StEvtSolution::getSumDeltaRjp ( ) const [inline]

Definition at line 91 of file StEvtSolution.h.

References sumDeltaRjp_.

{ return sumDeltaRjp_; }
void StEvtSolution::setBestSol ( bool  bs) [inline, protected]

Definition at line 142 of file StEvtSolution.h.

{ bestSol_  = bs; };
void StEvtSolution::setBottom ( const edm::Handle< std::vector< pat::Jet > > &  jet,
int  i 
) [inline, protected]

Definition at line 108 of file StEvtSolution.h.

References bottom_, i, and metsig::jet.

Referenced by StEvtSolutionMaker::produce().

void StEvtSolution::setChangeBL ( int  bl) [inline, protected]

Definition at line 141 of file StEvtSolution.h.

References changeBL_.

{ changeBL_ = bl; };
void StEvtSolution::setChi2Prob ( double  prob) [inline, protected]

Definition at line 130 of file StEvtSolution.h.

References chi2Prob_.

Referenced by StKinFitter::addKinFitInfo().

{ chi2Prob_ = prob; };
void StEvtSolution::setDeltaRB ( double  adr) [inline, protected]

Definition at line 139 of file StEvtSolution.h.

References deltaRB_.

{ deltaRB_ = adr; };
void StEvtSolution::setDeltaRL ( double  adr) [inline, protected]

Definition at line 140 of file StEvtSolution.h.

References deltaRL_.

{ deltaRL_ = adr; };
void StEvtSolution::setElectron ( const edm::Handle< std::vector< pat::Electron > > &  elec,
int  i 
) [inline, protected]

Definition at line 114 of file StEvtSolution.h.

References decay_, electron_, and i.

Referenced by StEvtSolutionMaker::produce().

  { electron_ = edm::Ref<std::vector<pat::Electron> >(elec, i); decay_ = "electron"; };
void StEvtSolution::setFitBottom ( const pat::Particle part) [inline, protected]

Definition at line 122 of file StEvtSolution.h.

References fitBottom_.

Referenced by StKinFitter::addKinFitInfo().

{ fitBottom_.clear(); fitBottom_.push_back(part); };
void StEvtSolution::setFitLepton ( const pat::Particle part) [inline, protected]

Definition at line 124 of file StEvtSolution.h.

References fitLepton_.

Referenced by StKinFitter::addKinFitInfo().

{ fitLepton_.clear(); fitLepton_.push_back(part); };
void StEvtSolution::setFitLight ( const pat::Particle part) [inline, protected]

Definition at line 123 of file StEvtSolution.h.

References fitLight_.

Referenced by StKinFitter::addKinFitInfo().

{ fitLight_.clear(); fitLight_.push_back(part); };
void StEvtSolution::setFitNeutrino ( const pat::Particle part) [inline, protected]

Definition at line 125 of file StEvtSolution.h.

References fitNeutrino_.

Referenced by StKinFitter::addKinFitInfo().

{ fitNeutrino_.clear(); fitNeutrino_.push_back(part); };
void StEvtSolution::setGenEvt ( const edm::Handle< StGenEvent > &  aGenEvt) [protected]

Definition at line 153 of file StEvtSolution.cc.

References theGenEvt_.

void StEvtSolution::setJetCorrectionScheme ( int  scheme) [inline, protected]

Definition at line 107 of file StEvtSolution.h.

References jetCorrScheme_.

Referenced by StEvtSolutionMaker::produce().

{ jetCorrScheme_ = scheme;};
void StEvtSolution::setLight ( const edm::Handle< std::vector< pat::Jet > > &  jet,
int  i 
) [inline, protected]

Definition at line 110 of file StEvtSolution.h.

References i, metsig::jet, and light_.

Referenced by StEvtSolutionMaker::produce().

void StEvtSolution::setMuon ( const edm::Handle< std::vector< pat::Muon > > &  muon,
int  i 
) [inline, protected]

Definition at line 112 of file StEvtSolution.h.

References decay_, i, metsig::muon, and muon_.

Referenced by StEvtSolutionMaker::produce().

void StEvtSolution::setNeutrino ( const edm::Handle< std::vector< pat::MET > > &  met,
int  i 
) [inline, protected]

Definition at line 116 of file StEvtSolution.h.

References i, CaloMET_cfi::met, and neutrino_.

Referenced by StEvtSolutionMaker::produce().

void StEvtSolution::setPtrueBhadrSel ( double  pbh) [inline, protected]

Definition at line 134 of file StEvtSolution.h.

References pTrueBhadrSel_.

{ pTrueBhadrSel_  = pbh; };
void StEvtSolution::setPtrueBJetSel ( double  pbs) [inline, protected]

Definition at line 133 of file StEvtSolution.h.

References pTrueBJetSel_.

{ pTrueBJetSel_   = pbs; };
void StEvtSolution::setPtrueCombExist ( double  pce) [inline, protected]

Definition at line 132 of file StEvtSolution.h.

References pTrueCombExist_.

{ pTrueCombExist_ = pce; };
void StEvtSolution::setPtrueJetComb ( double  pt) [inline, protected]

Definition at line 135 of file StEvtSolution.h.

References pTrueJetComb_.

{ pTrueJetComb_   = pt;  };
void StEvtSolution::setScanValues ( const std::vector< double > &  val) [protected]

Definition at line 160 of file StEvtSolution.cc.

References i, and scanValues_.

                                                               {
  for(unsigned int i=0; i<val.size(); i++) scanValues_.push_back(val[i]);
}
void StEvtSolution::setSignalLRTot ( double  lrt) [inline, protected]

Definition at line 137 of file StEvtSolution.h.

References signalLRTot_.

{ signalLRTot_ = lrt; };
void StEvtSolution::setSignalPurity ( double  pur) [inline, protected]

Definition at line 136 of file StEvtSolution.h.

References signalPur_.

{ signalPur_ = pur; };
void StEvtSolution::setSumDeltaRjp ( double  sdr) [inline, protected]

Definition at line 138 of file StEvtSolution.h.

References sumDeltaRjp_.

{ sumDeltaRjp_ = sdr; };

Friends And Related Function Documentation

friend class StEvtSolutionMaker [friend]

Definition at line 24 of file StEvtSolution.h.

friend class StKinFitter [friend]

Definition at line 25 of file StEvtSolution.h.


Member Data Documentation

bool StEvtSolution::bestSol_ [private]

Definition at line 167 of file StEvtSolution.h.

Referenced by getBestSol(), and StEvtSolution().

edm::Ref<std::vector<pat::Jet> > StEvtSolution::bottom_ [private]

Definition at line 150 of file StEvtSolution.h.

Referenced by getBottom(), and setBottom().

int StEvtSolution::changeBL_ [private]

Definition at line 166 of file StEvtSolution.h.

Referenced by getChangeBL(), setChangeBL(), and StEvtSolution().

double StEvtSolution::chi2Prob_ [private]

Definition at line 161 of file StEvtSolution.h.

Referenced by getChi2Prob(), setChi2Prob(), and StEvtSolution().

std::string StEvtSolution::decay_ [private]

Definition at line 159 of file StEvtSolution.h.

Referenced by getDecay(), setElectron(), and setMuon().

double StEvtSolution::deltaRB_ [private]

Definition at line 165 of file StEvtSolution.h.

Referenced by getDeltaRB(), setDeltaRB(), and StEvtSolution().

double StEvtSolution::deltaRL_ [private]

Definition at line 165 of file StEvtSolution.h.

Referenced by getDeltaRL(), setDeltaRL(), and StEvtSolution().

Definition at line 152 of file StEvtSolution.h.

Referenced by getElectron(), and setElectron().

std::vector<pat::Particle> StEvtSolution::fitBottom_ [private]

Definition at line 154 of file StEvtSolution.h.

Referenced by getFitBottom(), and setFitBottom().

std::vector<pat::Particle> StEvtSolution::fitLepton_ [private]

Definition at line 154 of file StEvtSolution.h.

Referenced by getFitLepton(), and setFitLepton().

std::vector<pat::Particle> StEvtSolution::fitLight_ [private]

Definition at line 154 of file StEvtSolution.h.

Referenced by getFitLight(), and setFitLight().

Definition at line 154 of file StEvtSolution.h.

Referenced by getFitNeutrino(), and setFitNeutrino().

Definition at line 160 of file StEvtSolution.h.

Referenced by getBottom(), getLight(), setJetCorrectionScheme(), and StEvtSolution().

edm::Ref<std::vector<pat::Jet> > StEvtSolution::light_ [private]

Definition at line 150 of file StEvtSolution.h.

Referenced by getLight(), and setLight().

edm::Ref<std::vector<pat::Muon> > StEvtSolution::muon_ [private]

Definition at line 151 of file StEvtSolution.h.

Referenced by getMuon(), and setMuon().

edm::Ref<std::vector<pat::MET> > StEvtSolution::neutrino_ [private]

Definition at line 153 of file StEvtSolution.h.

Referenced by getNeutrino(), and setNeutrino().

Definition at line 163 of file StEvtSolution.h.

Referenced by getPtrueBhadrSel(), setPtrueBhadrSel(), and StEvtSolution().

double StEvtSolution::pTrueBJetSel_ [private]

Definition at line 163 of file StEvtSolution.h.

Referenced by getPtrueBJetSel(), setPtrueBJetSel(), and StEvtSolution().

Definition at line 163 of file StEvtSolution.h.

Referenced by getPtrueCombExist(), setPtrueCombExist(), and StEvtSolution().

double StEvtSolution::pTrueJetComb_ [private]

Definition at line 163 of file StEvtSolution.h.

Referenced by getPtrueJetComb(), setPtrueJetComb(), and StEvtSolution().

std::vector<double> StEvtSolution::scanValues_ [private]

Definition at line 162 of file StEvtSolution.h.

Referenced by getScanValues(), and setScanValues().

double StEvtSolution::signalLRTot_ [private]

Definition at line 164 of file StEvtSolution.h.

Referenced by getSignalLRTot(), setSignalLRTot(), and StEvtSolution().

double StEvtSolution::signalPur_ [private]

Definition at line 164 of file StEvtSolution.h.

Referenced by getSignalPur(), setSignalPurity(), and StEvtSolution().

double StEvtSolution::sumDeltaRjp_ [private]

Definition at line 165 of file StEvtSolution.h.

Referenced by getSumDeltaRjp(), setSumDeltaRjp(), and StEvtSolution().