Doublet.hh
Go to the documentation of this file.
1 
4 #pragma once
5 
7 
8 namespace boca
9 {
10 
16 class Doublet : public boca::TwoBody<boca::Singlet, boca::Singlet>
17 {
18 
19 public:
20 
22 
23  boca::Singlet const &Singlet1() const;
24 
25  boca::Singlet const &Singlet2() const;
26 
27 private:
28 
29  std::string Name() const override;
30 
31 };
32 
33 }
34 
Wrapper for a Jet in order to make it behave like a Multiplet.
Definition: Singlet.hh:19
Two body base class.
Definition: TwoBody.hh:24
boca::Singlet const & Singlet1() const
Definition: Doublet.cpp:9
boca::Singlet const & Singlet2() const
Definition: Doublet.cpp:14
Boosted Collider Analysis.
Definition: Analysis.hh:15
A Doublet consisting of two Singlets.
Definition: Doublet.hh:16