EventCharged.hh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "boca/branch/Event.hh"
4 
5 namespace heavyhiggs
6 {
7 
8 using namespace boca;
9 
10 namespace branch
11 {
12 
19 {
20 
21 public:
22 
23  EventCharged();
24 
25  float HiggsMass;
26  float PairRap;
27  float HiggsBdt;
28  float SignatureBdt;
29 
30  template<typename Multiplet>
31  void Fill(Multiplet const& event) {
32  Event::Fill(event);
33  HiggsMass = event.Signature().Quartet1().Mass() / GeV;
34  HiggsBdt = event.Signature().Quartet1().Bdt();
35  SignatureBdt = event.Signature().Bdt();
36  PairRap = event.Signature().Quartet2().DeltaRap() / rad;
37  }
38 
39  Observables Variables();
40 
41 private:
42 
43  ClassDef(EventCharged, 1)
44 
45 };
46 
47 }
48 
49 }
float PairRap
Definition: EventCharged.hh:26
void Fill(Multiplet const &event)
Definition: EventCharged.hh:31
Heavy Higgs partner.
Definition: Charged.hh:7
Higgs cpv tagger root tree structure.
Definition: EventCharged.hh:18
float SignatureBdt
Definition: EventCharged.hh:28
Boosted Collider Analysis.
Definition: Analysis.hh:15
float HiggsMass
Definition: EventCharged.hh:25
Multiplet base class
Definition: Multiplet.hh:21
float HiggsBdt
Definition: EventCharged.hh:27
Event tree branch
Definition: Event.hh:16
void Fill(Multiplet const &multiplet)
Definition: Event.hh:24
Container for Observable.
Definition: Observables.hh:17