Belle II Software  release-05-01-25
FlavorTaggerInfoFillerModule.h
1 /**************************************************************************
2 * BASF2 (Belle Analysis Framework 2) *
3 * Copyright(C) 2010 - Belle II Collaboration *
4 * *
5 * Author: The Belle II Collaboration *
6 * Contributors: Fernando Abudinen *
7 * *
8 * This software is provided "as is" without any warranty. *
9 **************************************************************************/
10 
11 #pragma once
12 #include <framework/core/Module.h>
13 #include <string>
14 
15 namespace Belle2 {
35  class FlavorTaggerInfoFillerModule : public Module {
36  private:
37 
39  std::vector<std::tuple<std::string, std::string>> m_trackLevelParticleLists;
40 
42  std::vector<std::tuple<std::string, std::string, std::string>> m_eventLevelParticleLists;
43 
44  bool m_FANNmlp;
46  bool m_TMVAfbdt;
48  bool m_qpCategories;
50  bool m_targetProb;
56  public:
59 
61  virtual void initialize() override;
63  virtual void event() override;
65  virtual void terminate() override;
66  };
68 } // end namespace Belle2
69 
70 
Belle2::FlavorTaggerInfoFillerModule::m_trackLevelParticleLists
std::vector< std::tuple< std::string, std::string > > m_trackLevelParticleLists
Used Flavor Tagger trackLevel Categories of the lists.
Definition: FlavorTaggerInfoFillerModule.h:47
Belle2::FlavorTaggerInfoFillerModule::m_targetProb
bool m_targetProb
Sets if individual Categories output will be saved or not.
Definition: FlavorTaggerInfoFillerModule.h:58
Belle2::FlavorTaggerInfoFillerModule::m_trackPointers
bool m_trackPointers
Sets if track pointers to target tracks are saved or not.
Definition: FlavorTaggerInfoFillerModule.h:60
Belle2::FlavorTaggerInfoFillerModule::m_FANNmlp
bool m_FANNmlp
Sets if FANN Combiner output will be saved or not.
Definition: FlavorTaggerInfoFillerModule.h:52
Belle2::FlavorTaggerInfoFillerModule::m_qpCategories
bool m_qpCategories
Sets if individual Categories output will be saved or not.
Definition: FlavorTaggerInfoFillerModule.h:56
Belle2::FlavorTaggerInfoFillerModule::terminate
virtual void terminate() override
Write TTree to file, and close file if necessary.
Definition: FlavorTaggerInfoFillerModule.cc:185
Belle2::FlavorTaggerInfoFillerModule::m_istrueCategories
bool m_istrueCategories
Sets if individual MC thruth for each Category is saved or not.
Definition: FlavorTaggerInfoFillerModule.h:62
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::FlavorTaggerInfoFillerModule::event
virtual void event() override
Method called for each event.
Definition: FlavorTaggerInfoFillerModule.cc:53
Belle2::FlavorTaggerInfoFillerModule::FlavorTaggerInfoFillerModule
FlavorTaggerInfoFillerModule()
Constructor.
Definition: FlavorTaggerInfoFillerModule.cc:30
Belle2::FlavorTaggerInfoFillerModule::initialize
virtual void initialize() override
Initialises the module.
Definition: FlavorTaggerInfoFillerModule.cc:49
Belle2::FlavorTaggerInfoFillerModule::m_TMVAfbdt
bool m_TMVAfbdt
Sets if FastBDT Combiner output will be saved or not.
Definition: FlavorTaggerInfoFillerModule.h:54
Belle2::FlavorTaggerInfoFillerModule::m_eventLevelParticleLists
std::vector< std::tuple< std::string, std::string, std::string > > m_eventLevelParticleLists
Used Flavor Tagger eventLevel Categories of the lists.
Definition: FlavorTaggerInfoFillerModule.h:50