CMS 3D CMS Logo

TtFullLeptonicEvent.h
Go to the documentation of this file.
1 #ifndef TopObjects_TtFullLeptonicEvent_h
2 #define TopObjects_TtFullLeptonicEvent_h
3 
5 
6 namespace TtFullLepDaughter {
9  static const std::string Nu = "Nu", LepBar = "LepBar", WPlus = "WPlus", B = "B", Top = "Top";
10  static const std::string NuBar = "NuBar", Lep = "Lep", WMinus = "WMinus", BBar = "BBar", TopBar = "TopBar";
11 } // namespace TtFullLepDaughter
12 
24 class TtFullLeptonicEvent : public TtEvent {
25 public:
29  ~TtFullLeptonicEvent() override{};
30 
32  const reco::Candidate* top(const std::string& key, const unsigned& cmb = 0) const {
33  return top(hypoClassKeyFromString(key), cmb);
34  };
36  const reco::Candidate* top(const HypoClassKey& key, const unsigned& cmb = 0) const {
37  return !isHypoValid(key, cmb) ? nullptr : eventHypo(key, cmb).daughter(TtFullLepDaughter::Top);
38  };
40  const reco::Candidate* b(const std::string& key, const unsigned& cmb = 0) const {
41  return b(hypoClassKeyFromString(key), cmb);
42  };
44  const reco::Candidate* b(const HypoClassKey& key, const unsigned& cmb = 0) const {
45  return !isHypoValid(key, cmb) ? nullptr : top(key, cmb)->daughter(TtFullLepDaughter::B);
46  };
48  const reco::Candidate* wPlus(const std::string& key, const unsigned& cmb = 0) const {
49  return wPlus(hypoClassKeyFromString(key), cmb);
50  };
52  const reco::Candidate* wPlus(const HypoClassKey& key, const unsigned& cmb = 0) const {
53  return !isHypoValid(key, cmb) ? nullptr : top(key, cmb)->daughter(TtFullLepDaughter::WPlus);
54  };
56  const reco::Candidate* leptonBar(const std::string& key, const unsigned& cmb = 0) const {
57  return leptonBar(hypoClassKeyFromString(key), cmb);
58  };
60  const reco::Candidate* leptonBar(const HypoClassKey& key, const unsigned& cmb = 0) const {
61  return !isHypoValid(key, cmb) ? nullptr : wPlus(key, cmb)->daughter(TtFullLepDaughter::LepBar);
62  };
64  const reco::Candidate* neutrino(const std::string& key, const unsigned& cmb = 0) const {
65  return neutrino(hypoClassKeyFromString(key), cmb);
66  };
68  const reco::Candidate* neutrino(const HypoClassKey& key, const unsigned& cmb = 0) const {
69  return !isHypoValid(key, cmb) ? nullptr : wPlus(key, cmb)->daughter(TtFullLepDaughter::Nu);
70  };
72  const reco::Candidate* topBar(const std::string& key, const unsigned& cmb = 0) const {
73  return topBar(hypoClassKeyFromString(key), cmb);
74  };
76  const reco::Candidate* topBar(const HypoClassKey& key, const unsigned& cmb = 0) const {
77  return !isHypoValid(key, cmb) ? nullptr : eventHypo(key, cmb).daughter(TtFullLepDaughter::TopBar);
78  };
80  const reco::Candidate* bBar(const std::string& key, const unsigned& cmb = 0) const {
81  return bBar(hypoClassKeyFromString(key), cmb);
82  };
84  const reco::Candidate* bBar(const HypoClassKey& key, const unsigned& cmb = 0) const {
85  return !isHypoValid(key, cmb) ? nullptr : topBar(key, cmb)->daughter(TtFullLepDaughter::BBar);
86  };
88  const reco::Candidate* wMinus(const std::string& key, const unsigned& cmb = 0) const {
89  return wMinus(hypoClassKeyFromString(key), cmb);
90  };
92  const reco::Candidate* wMinus(const HypoClassKey& key, const unsigned& cmb = 0) const {
93  return !isHypoValid(key, cmb) ? nullptr : topBar(key, cmb)->daughter(TtFullLepDaughter::WMinus);
94  };
96  const reco::Candidate* lepton(const std::string& key, const unsigned& cmb = 0) const {
97  return lepton(hypoClassKeyFromString(key), cmb);
98  };
100  const reco::Candidate* lepton(const HypoClassKey& key, const unsigned& cmb = 0) const {
101  return !isHypoValid(key, cmb) ? nullptr : wMinus(key, cmb)->daughter(TtFullLepDaughter::Lep);
102  };
104  const reco::Candidate* neutrinoBar(const std::string& key, const unsigned& cmb = 0) const {
105  return neutrinoBar(hypoClassKeyFromString(key), cmb);
106  };
108  const reco::Candidate* neutrinoBar(const HypoClassKey& key, const unsigned& cmb = 0) const {
109  return !isHypoValid(key, cmb) ? nullptr : wMinus(key, cmb)->daughter(TtFullLepDaughter::NuBar);
110  };
111 
113  const reco::GenParticle* genTop() const { return (!genEvt_ ? nullptr : this->genEvent()->top()); };
115  const reco::GenParticle* genB() const { return (!genEvt_ ? nullptr : this->genEvent()->b()); };
117  const reco::GenParticle* genWPlus() const { return (!genEvt_ ? nullptr : this->genEvent()->wPlus()); };
119  const reco::GenParticle* genLeptonBar() const { return (!genEvt_ ? nullptr : this->genEvent()->leptonBar()); };
121  const reco::GenParticle* genNeutrino() const { return (!genEvt_ ? nullptr : this->genEvent()->neutrino()); };
123  const reco::GenParticle* genTopBar() const { return (!genEvt_ ? nullptr : this->genEvent()->topBar()); };
125  const reco::GenParticle* genBBar() const { return (!genEvt_ ? nullptr : this->genEvent()->bBar()); };
127  const reco::GenParticle* genWMinus() const { return (!genEvt_ ? nullptr : this->genEvent()->wMinus()); };
129  const reco::GenParticle* genLepton() const { return (!genEvt_ ? nullptr : this->genEvent()->lepton()); };
131  const reco::GenParticle* genNeutrinoBar() const { return (!genEvt_ ? nullptr : this->genEvent()->neutrinoBar()); };
132 
134  double solWeight(const unsigned& cmb = 0) const { return (cmb < solWeight_.size() ? solWeight_[cmb] : -1.); }
136  bool isWrongCharge() const { return wrongCharge_; }
137 
139  void setSolWeight(const std::vector<double>& val) { solWeight_ = val; };
141  void setWrongCharge(const bool& val) { wrongCharge_ = val; };
142 
145  void print(const int verbosity = 1) const;
146 
147 protected:
149  std::vector<double> solWeight_;
152 };
153 
154 #endif
const reco::GenParticle * genBBar() const
get anti-b of the TtGenEvent
void setWrongCharge(const bool &val)
set right or wrong charge combination of kKinSolution hypothesis
HypoClassKey
supported classes of event hypotheses
Definition: TtEvent.h:26
const Candidate * daughter(size_type) const override
return daughter at a given position, i = 0, ... numberOfDaughters() - 1 (read only mode) ...
const reco::GenParticle * genTopBar() const
get anti-top of the TtGenEvent
virtual const Candidate * daughter(size_type i) const =0
return daughter at a given position, i = 0, ... numberOfDaughters() - 1 (read only mode) ...
static const std::string WMinus
const reco::Candidate * lepton(const HypoClassKey &key, const unsigned &cmb=0) const
get lepton of the given hypothesis
static const std::string Nu
std::vector< double > solWeight_
result of kinematic solution
const reco::Candidate * b(const std::string &key, const unsigned &cmb=0) const
get b of the given hypothesis
const reco::Candidate * leptonBar(const std::string &key, const unsigned &cmb=0) const
get anti-lepton of the given hypothesis
const reco::Candidate * neutrinoBar(const std::string &key, const unsigned &cmb=0) const
get anti-neutrino of the given hypothesis
static const std::string WPlus
static const std::string B
static const std::string Top
const reco::Candidate * bBar(const std::string &key, const unsigned &cmb=0) const
get anti-b of the given hypothesis
const reco::GenParticle * genWPlus() const
get Wplus of the TtGenEvent
const edm::RefProd< TtGenEvent > & genEvent() const
get TtGenEvent
Definition: TtEvent.h:63
const reco::GenParticle * genNeutrino() const
get neutrino of the TtGenEvent
const reco::Candidate * bBar(const HypoClassKey &key, const unsigned &cmb=0) const
get anti-b of the given hypothesis
const reco::GenParticle * genLeptonBar() const
get anti-lepton of the TtGenEvent
bool isWrongCharge() const
return if the kinematic solution of hypothesis &#39;cmb&#39; is right or wrong charge if available; -1 else ...
const reco::GenParticle * genB() const
get b of the TtGenEvent
static const std::string TopBar
const reco::Candidate * top(const HypoClassKey &key, const unsigned &cmb=0) const
get top of the given hypothesis
static const std::string LepBar
key
prepare the HTCondor submission files and eventually submit them
const reco::GenParticle * genTop() const
get top of the TtGenEvent
const reco::Candidate * top(const std::string &key, const unsigned &cmb=0) const
get top of the given hypothesis
const reco::Candidate * topBar(const std::string &key, const unsigned &cmb=0) const
get anti-top of the given hypothesis
Class derived from the TtEvent for the full leptonic decay channel.
HypoClassKey hypoClassKeyFromString(const std::string &label) const
return the corresponding enum value from a string
Definition: TtEvent.cc:15
const reco::GenParticle * genLepton() const
get lepton of the TtGenEvent
void setSolWeight(const std::vector< double > &val)
set weight of kKinSolution hypothesis
const int verbosity
const reco::CompositeCandidate & eventHypo(const HypoClassKey &key, const unsigned &cmb=0) const
Definition: TtEvent.h:59
bool wrongCharge_
right/wrong charge booleans
const reco::Candidate * lepton(const std::string &key, const unsigned &cmb=0) const
get lepton of the given hypothesis
const reco::Candidate * leptonBar(const HypoClassKey &key, const unsigned &cmb=0) const
get anti-lepton of the given hypothesis
Base class to hold information for ttbar event interpretation.
Definition: TtEvent.h:23
double solWeight(const unsigned &cmb=0) const
return the weight of the kinematic solution of hypothesis &#39;cmb&#39; if available; -1 else ...
const reco::Candidate * wMinus(const HypoClassKey &key, const unsigned &cmb=0) const
get Wminus of the given hypothesis
edm::RefProd< TtGenEvent > genEvt_
reference to TtGenEvent (has to be kept in the event!)
Definition: TtEvent.h:188
const reco::GenParticle * genNeutrinoBar() const
get anti-neutrino of the TtGenEvent
const reco::Candidate * topBar(const HypoClassKey &key, const unsigned &cmb=0) const
get anti-top of the given hypothesis
bool isHypoValid(const std::string &key, const unsigned &cmb=0) const
check if hypothesis &#39;cmb&#39; within the hypothesis class was valid; if not it lead to an empty Composite...
Definition: TtEvent.h:78
const reco::GenParticle * genWMinus() const
get Wminus of the TtGenEvent
static const std::string BBar
const reco::Candidate * wPlus(const HypoClassKey &key, const unsigned &cmb=0) const
get Wplus of the given hypothesis
const reco::Candidate * wPlus(const std::string &key, const unsigned &cmb=0) const
get Wplus of the given hypothesis
TtFullLeptonicEvent()
empty constructor
const reco::Candidate * neutrino(const HypoClassKey &key, const unsigned &cmb=0) const
get neutrino of the given hypothesis
const reco::Candidate * b(const HypoClassKey &key, const unsigned &cmb=0) const
get b of the given hypothesis
const reco::Candidate * neutrinoBar(const HypoClassKey &key, const unsigned &cmb=0) const
get anti-neutrino of the given hypothesis
const reco::Candidate * wMinus(const std::string &key, const unsigned &cmb=0) const
get Wminus of the given hypothesis
const reco::Candidate * neutrino(const std::string &key, const unsigned &cmb=0) const
get neutrino of the given hypothesis
static const std::string NuBar
void print(const int verbosity=1) const
static const std::string Lep
~TtFullLeptonicEvent() override
default destructor