Holds set(s) of results from more than one kinematic fits. More...
#include <Fit_Results.h>
Public Member Functions | |
Fit_Results (int max_len, int n_lists) | |
Constructor, make n_list of lists, each of maximum length max_len. | |
const Fit_Result_Vec & | operator[] (std::vector< Fit_Result_Vec >::size_type i) const |
Access the i-th list. | |
void | push (double chisq, const Lepjets_Event &ev, const Column_Vector &pullx, const Column_Vector &pully, double umwhad, double utmass, double mt, double sigmt, const std::vector< int > &list_flags) |
Add a new fit result. | |
Private Attributes | |
std::vector< Fit_Result_Vec > | _v |
Friends | |
std::ostream & | operator<< (std::ostream &s, const Fit_Results &res) |
Output stream operator, print the content of this Fit_Results to an output stream. |
Holds set(s) of results from more than one kinematic fits.
Definition at line 60 of file Fit_Results.h.
hitfit::Fit_Results::Fit_Results | ( | int | max_len, |
int | n_lists | ||
) |
Constructor, make n_list of lists, each of maximum length max_len.
max_len | The maximum length of each list. |
n_lists | The number of lists. |
Definition at line 48 of file Fit_Results.cc.
const Fit_Result_Vec & hitfit::Fit_Results::operator[] | ( | std::vector< Fit_Result_Vec >::size_type | i | ) | const |
void hitfit::Fit_Results::push | ( | double | chisq, |
const Lepjets_Event & | ev, | ||
const Column_Vector & | pullx, | ||
const Column_Vector & | pully, | ||
double | umwhad, | ||
double | utmass, | ||
double | mt, | ||
double | sigmt, | ||
const std::vector< int > & | list_flags | ||
) |
Add a new fit result.
chisq | The fit . |
ev | The event kinematics. |
pullx | The pull quantities for the well-measured variables. |
pully | The pull quantities for the poorly-measured variables. |
umwhad | The hadronic W mass before fit. |
utmass | The top quark mass before the fit. |
mt | The top quark mass after the fit. |
sigmt | The top quark mass uncertainty after the fit. |
list_flags | Vector indicating to which lists the result should be added. This vector should have a same length as the internal object _v. |
Definition at line 68 of file Fit_Results.cc.
std::ostream& operator<< | ( | std::ostream & | s, |
const Fit_Results & | res | ||
) | [friend] |
Output stream operator, print the content of this Fit_Results to an output stream.
s | The output stream to which to write. |
res | The instance Fit_Results to be printed. |
Definition at line 118 of file Fit_Results.cc.
std::vector<Fit_Result_Vec> hitfit::Fit_Results::_v [private] |
Definition at line 125 of file Fit_Results.h.
Referenced by hitfit::operator<<(), operator[](), and push().