Skip to content
Snippets Groups Projects
Commit b887192b authored by Ernoult's avatar Ernoult Committed by BaM
Browse files

make CreateTMVAInput virtual so the SFR on is used

parent c0758efe
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -262,7 +262,7 @@ void XSM_MLP::BookTMVAReader() { ...@@ -262,7 +262,7 @@ void XSM_MLP::BookTMVAReader() {
//________________________________________________________________________ //________________________________________________________________________
vector<float> XSM_MLP::CreateTMVAInput(IsotopicVector isotopicvector,int TimeStep) vector<float> XSM_MLP::CreateTMVAInput(IsotopicVector isotopicvector,int TimeStep)
{ {
DBGL
vector<float> tmva_input; vector<float> tmva_input;
float Time = 0; float Time = 0;
......
...@@ -128,7 +128,7 @@ class XSM_MLP : public XSModel ...@@ -128,7 +128,7 @@ class XSM_MLP : public XSModel
double ExecuteTMVA(string WeightFile, TTree* InputTree); //!<Execute the MLP according to the input tree created double ExecuteTMVA(string WeightFile, TTree* InputTree); //!<Execute the MLP according to the input tree created
vector<float> CreateTMVAInput(IsotopicVector isotopicvector, int t); //!<Create input tmva tree to be read by ExecuteTMVA virtual vector<float> CreateTMVAInput(IsotopicVector isotopicvector, int t); //!<Create input tmva tree to be read by ExecuteTMVA
vector<double> fMLP_Time; //!< Time vector of the data base vector<double> fMLP_Time; //!< Time vector of the data base
......
...@@ -222,6 +222,7 @@ void XSM_SFR::BookTMVAReader() { ...@@ -222,6 +222,7 @@ void XSM_SFR::BookTMVAReader() {
vector<float> XSM_SFR::CreateTMVAInput(IsotopicVector IV, int TimeStep) vector<float> XSM_SFR::CreateTMVAInput(IsotopicVector IV, int TimeStep)
{ {
DBGL
vector<float> tmva_input_iv = XSM_MLP::CreateTMVAInput(IV, TimeStep); vector<float> tmva_input_iv = XSM_MLP::CreateTMVAInput(IV, TimeStep);
vector<float> tmva_input; vector<float> tmva_input;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment