CMS 3D CMS Logo

FWInvMassDialog.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FWInvMassDialog
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author: Matevz Tadel
10 // Created: Mon Nov 22 11:05:57 CET 2010
11 //
12 
13 // system include files
14 
15 // user include files
19 
23 
24 #include "TClass.h"
25 #include "TMath.h"
26 
27 #include "TGTextView.h"
28 #include "TGButton.h"
29 
30 //
31 // constants, enums and typedefs
32 //
33 
34 //
35 // static data member definitions
36 //
37 
38 //
39 // constructors and destructor
40 //
41 
43  : TGMainFrame(gClient->GetRoot(), 470, 240), m_selectionMgr(sm), m_text(nullptr), m_button(nullptr) {
44  SetWindowName("Invariant Mass Dialog");
45  SetCleanup(kDeepCleanup);
46 
47  m_text = new TGTextView(this);
48  AddFrame(m_text, new TGLayoutHints(kLHintsNormal | kLHintsExpandX | kLHintsExpandY, 1, 1, 1, 1));
49 
50  m_button = new TGTextButton(this, "Calculate");
51  AddFrame(m_button, new TGLayoutHints(kLHintsNormal | kLHintsExpandX, 1, 1, 1, 1));
52 
53  m_button->Connect("Clicked()", "FWInvMassDialog", this, "Calculate()");
54 
55  Layout();
56  MapSubwindows();
57 }
58 
59 // FWInvMassDialog::FWInvMassDialog(const FWInvMassDialog& rhs)
60 // {
61 // // do actual copying here;
62 // }
63 
65 
66 void FWInvMassDialog::CloseWindow() { UnmapWindow(); }
67 
68 //
69 // assignment operators
70 //
71 // const FWInvMassDialog& FWInvMassDialog::operator=(const FWInvMassDialog& rhs)
72 // {
73 // //An exception safe implementation is
74 // FWInvMassDialog temp(rhs);
75 // swap(rhs);
76 //
77 // return *this;
78 // }
79 
80 //
81 // member functions
82 //
83 
85  m_text->Clear();
86  m_firstLine = true;
87 }
88 
89 void FWInvMassDialog::addLine(const TString &line) {
90  TGText *txt = m_text->GetText();
91 
92  if (m_firstLine) {
93  txt->InsText(TGLongPosition(0, 0), line);
94  m_firstLine = false;
95  } else {
96  txt->InsText(TGLongPosition(0, txt->RowCount()), line);
97  }
98 }
99 
100 void FWInvMassDialog::endUpdate() { m_text->Update(); }
101 
103  const std::set<FWModelId> &sted = m_selectionMgr->selected();
104 
105  beginUpdate();
106 
107  addLine(TString::Format(" %d items in selection", (int)sted.size()));
108  addLine("");
109  addLine("--------------------------------------------------+--------------");
110  addLine(" px py pz pT | Collection");
111  addLine("--------------------------------------------------+--------------");
112 
113  TClass *rc_class = TClass::GetClass(typeid(reco::Candidate));
114  TClass *rtb_class = TClass::GetClass(typeid(reco::TrackBase));
115 
116  math::XYZVector sum;
117  double sum_len = 0;
118  double sum_len_xy = 0;
119 
121  int n = 0;
122 
123  for (std::set<FWModelId>::const_iterator i = sted.begin(); i != sted.end(); ++i, ++n) {
124  TString line;
125 
126  TClass *model_class = const_cast<TClass *>(i->item()->modelType());
127  void *model_data = const_cast<void *>(i->item()->modelData(i->index()));
128 
130  bool ok_p = false;
131 
132  reco::Candidate *rc = reinterpret_cast<reco::Candidate *>(model_class->DynamicCast(rc_class, model_data));
133 
134  if (rc != nullptr) {
135  ok_p = true;
136  v.SetXYZ(rc->px(), rc->py(), rc->pz());
137  } else {
138  reco::TrackBase *rtb = reinterpret_cast<reco::TrackBase *>(model_class->DynamicCast(rtb_class, model_data));
139 
140  if (rtb != nullptr) {
141  ok_p = true;
142  v.SetXYZ(rtb->px(), rtb->py(), rtb->pz());
143  }
144  }
145 
146  if (ok_p) {
147  sum += v;
148  sum_len += TMath::Sqrt(v.mag2());
149  sum_len_xy += TMath::Sqrt(v.perp2());
150 
151  line = TString::Format(" %+10.3f %+10.3f %+10.3f %10.3f", v.x(), v.y(), v.z(), TMath::Sqrt(v.perp2()));
152 
153  } else {
154  line = TString::Format(" -------- not a Candidate or TrackBase --------");
155  }
156  line += TString::Format(" | %s[%d]", i->item()->name().c_str(), i->index());
157 
158  addLine(line);
159 
160  if (n == 0)
161  first = v;
162  else if (n == 1)
163  second = v;
164  }
165 
166  addLine("--------------------------------------------------+--------------");
167  addLine(TString::Format(
168  " %+10.3f %+10.3f %+10.3f %10.3f | Sum", sum.x(), sum.y(), sum.z(), TMath::Sqrt(sum.perp2())));
169  addLine("");
170  addLine(TString::Format("m = %10.3f", TMath::Sqrt(TMath::Max(0.0, sum_len * sum_len - sum.mag2()))));
171  addLine(TString::Format("mT = %10.3f", TMath::Sqrt(TMath::Max(0.0, sum_len_xy * sum_len_xy - sum.perp2()))));
172  addLine(TString::Format("HT = %10.3f", sum_len_xy));
173 
174  if (n == 2) {
175  addLine(TString::Format("deltaPhi = %+6.4f", deltaPhi(first.Phi(), second.Phi())));
176  addLine(TString::Format("deltaEta = %+6.4f", first.Eta() - second.Eta()));
177  addLine(TString::Format("deltaR = % 6.4f", deltaR(first.Eta(), first.Phi(), second.Eta(), second.Phi())));
178  }
179 
180  endUpdate();
181 }
182 
183 //
184 // const member functions
185 //
186 
187 //
188 // static member functions
189 //
double px() const
x coordinate of momentum vector
Definition: TrackBase.h:640
virtual double pz() const =0
z coordinate of momentum vector
double py() const
y coordinate of momentum vector
Definition: TrackBase.h:643
~FWInvMassDialog() override
FWInvMassDialog(FWSelectionManager *sm)
U second(std::pair< T, U > const &p)
TGTextView * m_text
void addLine(const TString &line)
void CloseWindow() override
virtual double py() const =0
y coordinate of momentum vector
virtual double px() const =0
x coordinate of momentum vector
XYZVectorD XYZVector
spatial vector with cartesian internal representation
Definition: Vector3D.h:31
double pz() const
z coordinate of momentum vector
Definition: TrackBase.h:646
TGTextButton * m_button
const std::set< FWModelId > & selected() const
FWSelectionManager * m_selectionMgr