You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
341 B
20 lines
341 B
template < typename > struct vector {};
|
|
|
|
#include <map>
|
|
#include "Types.h"
|
|
|
|
struct TString {
|
|
TString (char *);
|
|
};
|
|
|
|
struct TreeInfo {};
|
|
|
|
class DataInputHandler {
|
|
void AddTree ();
|
|
void SignalTreeInfo () {
|
|
fInputTrees[(char*)""];
|
|
}
|
|
map <TString, vector <TreeInfo> >fInputTrees;
|
|
map <string, bool> fExplicitTrainTest;
|
|
};
|