38 #ifndef ROOT_TMVA_Configurable
68 TTree * tr = ReadInputTree(fn);
70 AddTree( tr, className, weight, cut, tt );
82 if (!tree)
Log() <<
kFATAL <<
"Zero pointer for tree of class " << className.
Data() <<
Endl;
84 if (fInputTrees[className.
Data()].empty()) {
95 << fInputTrees[className.
Data()][0].GetTree()->GetName() <<
" of class " << className.
Data()
103 fInputTrees[className.
Data()].push_back(
TreeInfo( tree, className, weight, tt ));
112 AddTree( tr,
"Signal", weight,
"", tt );
120 AddTree( tr,
"Background", weight,
"", tt );
128 TTree * tr = ReadInputTree(fn);
130 AddTree( tr,
"Signal", weight,
"", tt );
138 TTree * tr = ReadInputTree(fn);
140 AddTree( tr,
"Background", weight,
"", tt );
149 std::ifstream in(dataFile);
150 tr->
SetDirectory(0);
Log() <<
kWARNING <<
"Watch out, I (Helge) made the Tree not associated to the current directory .. Hopefully that does not have unwanted consequences" <<
Endl;
151 if (!in.good())
Log() <<
kFATAL <<
"Could not open file: " << dataFile <<
Endl;
166 if (!inputTree)
Log() <<
kFATAL <<
"Zero pointer for input tree: " << inputTree <<
Endl;
168 AddTree( inputTree,
"Signal", 1.0, SigCut );
169 AddTree( inputTree,
"Background", 1.0, BgCut );
178 fInputTrees.find(className)->second.clear();
181 Log() <<
kINFO <<
" Clear treelist for class " << className <<
" failed, since class does not exist." <<
Endl;
189 std::vector< TString >* ret =
new std::vector< TString >();
190 for ( std::map<
TString, std::vector<TreeInfo> >::iterator it = fInputTrees.begin(); it != fInputTrees.end(); it++ ){
191 ret->push_back( it->first );
202 std::vector<TreeInfo>::const_iterator tiIt = tiV.begin();
203 for (;tiIt != tiV.end(); tiIt++) entries += tiIt->GetEntries();
213 for (std::map<
TString, std::vector<TreeInfo> >::iterator it = fInputTrees.begin(); it != fInputTrees.end(); it++) {
214 number += GetEntries( it->second );
virtual const char * GetTitle() const
Returns title of object.
MsgLogger & Endl(MsgLogger &ml)
virtual TTree * CopyTree(const char *selection, Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Copy a tree with selection.
const char * Data() const
A specialized string object used for TTree selections.
virtual const char * GetName() const
Returns name of object.
virtual void SetDirectory(TDirectory *dir)
Change the tree's directory.
virtual Long64_t ReadFile(const char *filename, const char *branchDescriptor="", char delimiter= ' ')
Create or simply read branches from filename.
TString()
TString default ctor.
virtual Long64_t GetEntries() const
A TTree object has a header with a name and a title.
virtual void SetName(const char *name)
Change the name of this tree.