Skip to content
Snippets Groups Projects
Commit c3a0cb4c authored by sebwieland's avatar sebwieland
Browse files

reduce max number of jets of permutation manager to reduce memory usage for now

parent f5e1a8ff
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,8 @@ HypothesisCombinatorics(optional_varstring)
{
minJets = 4;
reader_th.reset(new TMVA::Reader( "!Color:!Silent" ));
permutator.reset(new PermutationManager(minJets, 20));
permutator.reset(new PermutationManager(minJets, 10));
permutator->show();
mvars.reset(new MVAvarsJABDTthq());
bdt_name = "tHq JABDT";
......
......@@ -6,7 +6,8 @@ HypothesisCombinatorics(optional_varstring)
{
minJets = 5;
reader_th.reset(new TMVA::Reader( "!Color:!Silent" ));
permutator.reset(new PermutationManager(minJets, 18));
permutator.reset(new PermutationManager(minJets, 10));
permutator->show();
mvars.reset(new MVAvarsJABDTthw());
bdt_name = "tHW JABDT";
......
......@@ -6,7 +6,8 @@ HypothesisCombinatorics(optional_varstring)
{
minJets = 4;
reader_th.reset(new TMVA::Reader( "!Color:!Silent" ));
permutator.reset(new PermutationManager(minJets, 20));
permutator.reset(new PermutationManager(minJets, 10));
permutator->show();
mvars.reset(new MVAvarsJABDTttbar());
bdt_name = "ttbar JABDT";
......
......@@ -6,7 +6,8 @@ HypothesisCombinatorics(optional_varstring)
{
minJets = 6;
reader_th.reset(new TMVA::Reader( "!Color:!Silent" ));
permutator.reset(new PermutationManager(minJets, 18));
permutator.reset(new PermutationManager(minJets, 10));
permutator->show();
mvars.reset(new MVAvarsJABDTtth());
bdt_name = "ttH JABDT";
......
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