55 TMVA::BinarySearchTreeNode::BinarySearchTreeNode( const Event* e,
UInt_t )
58 fTargets (
std::vector<Float_t>() ),
64 for (
UInt_t ivar=0; ivar<e->GetNVariables(); ivar++) fEventV.push_back(e->GetValue(ivar));
65 for (std::vector<Float_t>::const_iterator it = e->GetTargets().begin(); it < e->GetTargets().end(); it++ ) {
66 fTargets.push_back( (*it) );
91 fEventV ( n.fEventV ),
92 fTargets ( n.fTargets ),
93 fWeight ( n.fWeight ),
95 fSelector( n.fSelector )
118 if (e.
GetValue(fSelector) > GetEventV()[fSelector])
return true;
127 if (e.
GetValue(fSelector) <= GetEventV()[fSelector])
return true;
138 for (
UInt_t i=0; i<GetEventV().size(); i++) {
139 result&= (e.
GetValue(i) == GetEventV()[i]);
149 os <<
"< *** " << std::endl <<
" node.Data: ";
150 std::vector<Float_t>::const_iterator it=fEventV.begin();
151 os << fEventV.size() <<
" vars: ";
152 for (;it!=fEventV.end(); it++) os <<
" " << std::setw(10) << *it;
153 os <<
" EvtWeight " << std::setw(10) << fWeight;
154 os << std::setw(10) <<
"Class: " <<
GetClass() << std::endl;
156 os <<
"Selector: " << this->GetSelector() <<std::endl;
157 os <<
"My address is " << long(
this) <<
", ";
158 if (this->GetParent() !=
NULL) os <<
" parent at addr: " << long(this->GetParent()) ;
159 if (this->GetLeft() !=
NULL) os <<
" left daughter at addr: " << long(this->GetLeft());
160 if (this->GetRight() !=
NULL) os <<
" right daughter at addr: " << long(this->GetRight()) ;
162 os <<
" **** > "<< std::endl;
170 os << this->GetDepth() <<
" " << this->GetPos() <<
" " << this->GetSelector()
171 <<
" data: " << std::endl;
172 std::vector<Float_t>::const_iterator it=fEventV.begin();
173 os << fEventV.size() <<
" vars: ";
174 for (;it!=fEventV.end(); it++) os <<
" " << std::setw(10) << *it;
175 os <<
" EvtWeight " << std::setw(10) << fWeight;
176 os << std::setw(10) <<
"Class: " <<
GetClass() << std::endl;
178 if (this->GetLeft() !=
NULL)this->GetLeft()->PrintRec(os) ;
179 if (this->GetRight() !=
NULL)this->GetRight()->PrintRec(os);
189 UInt_t depth, selIdx, nvar;
196 if ( itmp==-1 ) {
return kFALSE; }
200 this->SetDepth(depth);
202 this->SetSelector(selIdx);
208 for (
UInt_t ivar=0; ivar<nvar; ivar++) {
209 is >> evtValFloat; fEventV.push_back(evtValFloat);
211 is >> tmp >> fWeight;
213 fClass = (sigbkgd==
"S" || sigbkgd==
"Signal")?0:1;
227 if (sb==
"Signal" || sb==
"0")
234 fEventV.resize(nvars);
255 std::ios_base::fmtflags ff = s.flags();
257 for (
UInt_t i=0; i<fEventV.size(); i++) s << std::scientific <<
" " << fEventV[i];
258 for (
UInt_t i=0; i<fTargets.size(); i++) s << std::scientific <<
" " << fTargets[i];
267 for (
UInt_t i=0; i<fEventV.size(); i++){
271 while (s >> temp) fTargets.push_back(temp);
virtual Bool_t GoesRight(const Event &) const
check if the event fed into the node goes/decends to the right daughter
virtual void SetRight(Node *r)
Float_t GetValue(UInt_t ivar) const
return value of i'th variable
virtual void SetLeft(Node *l)
virtual Bool_t ReadDataRecord(std::istream &is, UInt_t tmva_Version_Code=TMVA_VERSION_CODE)
Read the data block.
virtual void PrintRec(std::ostream &os) const
recursively print the node and its daughters (–> print the 'tree')
TClass * fClass
pointer to the foreign object
virtual ~BinarySearchTreeNode()
node destructor
virtual void ReadAttributes(void *node, UInt_t tmva_Version_Code=TMVA_VERSION_CODE)
read attributes from XML
virtual void AddAttributesToNode(void *node) const
adding attributes to tree node
Double_t GetWeight(Double_t x) const
virtual void SetParent(Node *p)
virtual void AddContentToNode(std::stringstream &s) const
adding attributes to tree node
virtual Bool_t GoesLeft(const Event &) const
check if the event fed into the node goes/decends to the left daughter
virtual Node * GetRight() const
BinarySearchTreeNode(const Event *e=NULL, UInt_t signalClass=0)
Abstract ClassifierFactory template that handles arbitrary types.
virtual Bool_t EqualsMe(const Event &) const
check if the event fed into the node actually equals the event that forms the node (in case of a sear...
virtual void Print(std::ostream &os) const
print the node
virtual void ReadContent(std::stringstream &s)
read events from node
virtual Node * GetLeft() const
ClassImp(TMVA::BinarySearchTreeNode) TMVA
constructor of a node for the search tree