33void TMVARegressionApplication(
TString myMethodList =
"" )
40 std::map<std::string,int> Use;
73 std::cout << std::endl;
74 std::cout <<
"==> Start TMVARegressionApplication" << std::endl;
77 if (myMethodList !=
"") {
78 for (std::map<std::string,int>::iterator it = Use.begin(); it != Use.end(); it++) it->second = 0;
81 for (
UInt_t i=0; i<mlist.size(); i++) {
82 std::string regMethod(mlist[i]);
84 if (Use.find(regMethod) == Use.end()) {
85 std::cout <<
"Method \"" << regMethod <<
"\" not known in TMVA under this name. Choose among the following:" << std::endl;
86 for (std::map<std::string,int>::iterator it = Use.begin(); it != Use.end(); it++) std::cout << it->first <<
" ";
87 std::cout << std::endl;
113 TString dir =
"dataset/weights/";
114 TString prefix =
"TMVARegression";
117 for (std::map<std::string,int>::iterator it = Use.begin(); it != Use.end(); it++) {
119 TString methodName = it->first +
" method";
120 TString weightfile = dir + prefix +
"_" +
TString(it->first) +
".weights.xml";
121 reader->
BookMVA( methodName, weightfile );
128 for (std::map<std::string,int>::iterator it = Use.begin(); it != Use.end(); it++) {
129 TH1*
h =
new TH1F( it->first.c_str(),
TString(it->first) +
" method", 100, -100, 600 );
130 if (it->second) hists[++nhists] =
h;
139 TString fname =
"./tmva_reg_example.root";
145 input =
TFile::Open(
"http://root.cern.ch/files/tmva_reg_example.root",
"CACHEREAD");
148 std::cout <<
"ERROR: could not open data file" << std::endl;
151 std::cout <<
"--- TMVARegressionApp : Using input file: " << input->GetName() << std::endl;
161 std::cout <<
"--- Select signal sample" << std::endl;
165 std::cout <<
"--- Processing: " << theTree->
GetEntries() <<
" events" << std::endl;
170 if (ievt%1000 == 0) {
171 std::cout <<
"--- ... Processing event: " << ievt << std::endl;
179 for (
Int_t ih=0; ih<nhists; ih++) {
182 hists[ih]->
Fill( val );
186 std::cout <<
"--- End of event loop: "; sw.
Print();
190 TFile *target =
new TFile(
"TMVARegApp.root",
"RECREATE" );
191 for (
Int_t ih=0; ih<nhists; ih++) hists[ih]->Write();
194 std::cout <<
"--- Created root file: \"" << target->
GetName()
195 <<
"\" containing the MVA output histograms" << std::endl;
199 std::cout <<
"==> TMVARegressionApplication is done!" << std::endl << std::endl;
202int main(
int argc,
char** argv )
206 for (
int i=1; i<argc; i++) {
208 if(regMethod==
"-b" || regMethod==
"--batch")
continue;
210 methodList += regMethod;
212 TMVARegressionApplication(methodList);
R__EXTERN TSystem * gSystem
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
virtual void Close(Option_t *option="")
Close a file.
static Bool_t SetCacheFileDir(ROOT::Internal::TStringView cacheDir, Bool_t operateDisconnected=kTRUE, Bool_t forceCacheread=kFALSE)
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseGeneralPurpose, Int_t netopt=0)
Create / open a file.
1-D histogram with a float per channel (see TH1 documentation)}
virtual Int_t Fill(Double_t x)
Increment bin with abscissa X by 1.
The Reader class serves to use the MVAs in a specific analysis context.
const std::vector< Float_t > & EvaluateRegression(const TString &methodTag, Double_t aux=0)
evaluates MVA for given set of input variables
IMethod * BookMVA(const TString &methodTag, const TString &weightfile)
read method name from weight file
void AddSpectator(const TString &expression, Float_t *)
Add a float spectator or expression to the reader.
void AddVariable(const TString &expression, Float_t *)
Add a float variable or expression to the reader.
virtual const char * GetTitle() const
Returns title of object.
virtual const char * GetName() const
Returns name of object.
void Start(Bool_t reset=kTRUE)
Start the stopwatch.
void Stop()
Stop the stopwatch.
void Print(Option_t *option="") const
Print the real and cpu time passed between the start and stop events.
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
A TTree represents a columnar dataset.
virtual Int_t SetBranchAddress(const char *bname, void *add, TBranch **ptr=0)
Change branch address, dealing with clone trees properly.
virtual Long64_t GetEntries() const
virtual Int_t GetEntry(Long64_t entry=0, Int_t getall=0)
Read all branches of entry and return total number of bytes read.
int main(int argc, char **argv)
create variable transformations