Dummy.hh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "boca/tagger/Tagger.hh"
4 #include "boca/branch/Global.hh"
6 
7 namespace boca
8 {
9 
10 namespace tagger
11 {
12 
13 class Dummy : public boca::Tagger<boca::Global, boca::branch::Global>
14 {
15 
16 public:
17 
18  int Train(boca::Event const & event, boca::PreCuts const & pre_cuts, boca::Tag tag) override;
19 
20  std::vector<boca::Global> Multiplets(boca::Event const& event, boca::PreCuts const& pre_cuts, TMVA::Reader const & reader) override;
21 
22  std::string Name() const override;
23 
24 };
25 
26 }
27 
28 }
std::vector< boca::Global > Multiplets(boca::Event const &event, boca::PreCuts const &pre_cuts, TMVA::Reader const &reader) override
Definition: Dummy.cpp:17
Definition: PreCuts.hh:14
Definition: Dummy.hh:13
Tag
The Tag distinguishes between signal and background events.
Definition: Tag.hh:14
Base class for the event Topology.
Definition: Event.hh:53
Boosted Collider Analysis.
Definition: Analysis.hh:15
std::string Name() const override
Definition: Dummy.cpp:23
Tagger base class using Branch template
Definition: Tagger.hh:23
Reading stage.
int Train(boca::Event const &event, boca::PreCuts const &pre_cuts, boca::Tag tag) override
Definition: Dummy.cpp:11