#include <MultiSVInfoPlus.h>
Definition at line 15 of file MultiSVInfoPlus.h.
◆ MultiSVInfoPlus() [1/3]
| Analysis::MultiSVInfoPlus::MultiSVInfoPlus |
( |
| ) |
|
default constructor
Definition at line 10 of file MultiSVInfoPlus.cxx.
BaseTagInfo()
default constructor
std::vector< MSVVtxInfo * > m_vtxInfo
◆ MultiSVInfoPlus() [2/3]
| Analysis::MultiSVInfoPlus::MultiSVInfoPlus |
( |
const TagInfoType & | x | ) |
|
constructor with info type
Definition at line 17 of file MultiSVInfoPlus.cxx.
23 {
25 }
std::vector< double > m_tagLikelihood
vector to hold the taglikelihood (signal plus N background)
◆ MultiSVInfoPlus() [3/3]
| Analysis::MultiSVInfoPlus::MultiSVInfoPlus |
( |
const MultiSVInfoPlus & | MultiSVInfoPlus | ) |
|
copy destructor
Definition at line 28 of file MultiSVInfoPlus.cxx.
33 {
35 for(
unsigned int i=0;
i<rhs.m_vtxInfo.size(); ++
i){
36 m_vtxInfo.push_back(
new MSVVtxInfo( *(rhs.m_vtxInfo[i]) ) );
37 }
38 }
◆ ~MultiSVInfoPlus()
| Analysis::MultiSVInfoPlus::~MultiSVInfoPlus |
( |
| ) |
|
|
virtual |
◆ addVtxInfo() [1/2]
| void Analysis::MultiSVInfoPlus::addVtxInfo |
( |
MSVVtxInfo * | i | ) |
|
|
inline |
◆ addVtxInfo() [2/2]
| void Analysis::MultiSVInfoPlus::addVtxInfo |
( |
std::unique_ptr< MSVVtxInfo > | i | ) |
|
|
inline |
◆ clone()
◆ getN2T()
| long int Analysis::MultiSVInfoPlus::getN2T |
( |
| ) |
const |
|
inline |
◆ getNGTrackInJet()
| long int Analysis::MultiSVInfoPlus::getNGTrackInJet |
( |
| ) |
const |
|
inline |
◆ getNGTrackInSvx()
| long int Analysis::MultiSVInfoPlus::getNGTrackInSvx |
( |
| ) |
const |
|
inline |
◆ getNormDist()
| float Analysis::MultiSVInfoPlus::getNormDist |
( |
| ) |
const |
|
inline |
◆ getVtxInfo()
| const MSVVtxInfo * Analysis::MultiSVInfoPlus::getVtxInfo |
( |
unsigned int | i | ) |
const |
|
inline |
◆ infoType()
| TagInfoType Analysis::BaseTagInfo::infoType |
( |
void | | ) |
const |
|
inlinevirtualinherited |
returns the infoType of the info objects.
This has to be set by the tagger.
Implements Analysis::ITagInfo.
Definition at line 81 of file BaseTagInfo.h.
82{
84}
TagInfoType m_tagJetInfoType
string to hold the info type (specified by the tag tool)
◆ isValid()
| bool Analysis::BaseTagInfo::isValid |
( |
| ) |
const |
|
inlinevirtualinherited |
returns true if the tag was successfull
Implements Analysis::ITagInfo.
Definition at line 73 of file BaseTagInfo.h.
74{
76}
bool m_isValid
true if the tagger could tag the jet, default is false
◆ makeValid()
| void Analysis::BaseTagInfo::makeValid |
( |
| ) |
|
|
inlinevirtualinherited |
◆ numVtxInfo()
| int Analysis::MultiSVInfoPlus::numVtxInfo |
( |
| ) |
const |
|
inline |
◆ operator=() [1/2]
assigenment operator
Definition at line 40 of file MultiSVInfoPlus.cxx.
41 {
42 if (this!=&rhs)
43 {
51 for(
unsigned int i=0;
i<rhs.m_vtxInfo.size(); ++
i){
52 m_vtxInfo.push_back(
new MSVVtxInfo( *(rhs.m_vtxInfo[i]) ) );
53 }
56 }
57 return *this;
58 }
◆ operator=() [2/2]
Definition at line 60 of file MultiSVInfoPlus.cxx.
61 {
62 if (this!=&rhs)
63 {
73 }
74 return *this;
75 }
◆ setN2T()
| void Analysis::MultiSVInfoPlus::setN2T |
( |
long int | li | ) |
|
|
inline |
◆ setNGTrackInJet()
| void Analysis::MultiSVInfoPlus::setNGTrackInJet |
( |
long int | li | ) |
|
|
inline |
◆ setNGTrackInSvx()
| void Analysis::MultiSVInfoPlus::setNGTrackInSvx |
( |
long int | li | ) |
|
|
inline |
◆ setNormDist()
| void Analysis::MultiSVInfoPlus::setNormDist |
( |
float | nd | ) |
|
|
inline |
◆ setTagJetInfoType()
| void Analysis::BaseTagInfo::setTagJetInfoType |
( |
const TagInfoType & | type | ) |
|
|
inlineprotectedinherited |
◆ setTagLikelihood() [1/2]
| void Analysis::BaseTagInfo::setTagLikelihood |
( |
const std::vector< double > & | tagLikelihood | ) |
|
|
inlinevirtualinherited |
Return and set methods for the likelihood.
to set the tag likelihood for one tagger
Implements Analysis::ITagInfo.
Definition at line 85 of file BaseTagInfo.h.
86{
88}
virtual const std::vector< double > & tagLikelihood(void) const
returns the tag likelihood of one tagger
◆ setTagLikelihood() [2/2]
| void Analysis::BaseTagInfo::setTagLikelihood |
( |
std::vector< double > && | tagLikelihood | ) |
|
|
inlinevirtualinherited |
◆ setValid()
| void Analysis::BaseTagInfo::setValid |
( |
bool | valid | ) |
|
|
inlineprotectedinherited |
◆ setWeight()
| void Analysis::BaseTagInfo::setWeight |
( |
double | weight | ) |
|
|
inlinevirtualinherited |
set the weight for one tagger
Implements Analysis::ITagInfo.
Definition at line 105 of file BaseTagInfo.h.
106{
108}
double m_weight
weight for this tag
virtual double weight() const
get the weight of one tagger
◆ tagLikelihood()
| const std::vector< double > & Analysis::BaseTagInfo::tagLikelihood |
( |
void | | ) |
const |
|
inlinevirtualinherited |
◆ weight()
| double Analysis::BaseTagInfo::weight |
( |
void | | ) |
const |
|
inlinevirtualinherited |
get the weight of one tagger
Implements Analysis::ITagInfo.
Definition at line 109 of file BaseTagInfo.h.
110{
112}
virtual bool isValid() const
returns true if the tag was successfull
◆ m_isValid
| bool Analysis::BaseTagInfo::m_isValid |
|
protectedinherited |
true if the tagger could tag the jet, default is false
Definition at line 66 of file BaseTagInfo.h.
◆ m_N2Tpair
| long int Analysis::MultiSVInfoPlus::m_N2Tpair |
|
private |
◆ m_NGTinJet
| long int Analysis::MultiSVInfoPlus::m_NGTinJet |
|
private |
◆ m_NGTinSvx
| long int Analysis::MultiSVInfoPlus::m_NGTinSvx |
|
private |
◆ m_normdist
| float Analysis::MultiSVInfoPlus::m_normdist |
|
private |
◆ m_tagJetInfoType
string to hold the info type (specified by the tag tool)
Definition at line 69 of file BaseTagInfo.h.
◆ m_tagLikelihood
| std::vector<double> Analysis::BaseTagInfo::m_tagLikelihood |
|
protectedinherited |
vector to hold the taglikelihood (signal plus N background)
Definition at line 67 of file BaseTagInfo.h.
◆ m_vtxInfo
| std::vector<MSVVtxInfo*> Analysis::MultiSVInfoPlus::m_vtxInfo |
|
private |
◆ m_weight
| double Analysis::BaseTagInfo::m_weight |
|
protectedinherited |
The documentation for this class was generated from the following files: