Update 'MassFit.cpp'

Renata Kopecná 2022-01-28 14:10:35 +01:00
parent 015cedb5ae
commit 5dae033c29

@ -1,18 +1,18 @@
# Classes
### TMefficiencyClass
* **Public members:**
| Name | Description |
| ------------- | ------------- |
| string sVariable | LaTeX name of the parameter |
| std::vector\<string>sBranchName | |
| Int_t Bins | |
| Float_t Range\[2\] | |
| std::vector\<std::array\<double,2>> vVarRange | |
| std::vector\<double> binEdges | |
| std::vector\<double> binEdgesEquidistant | |
| bool isEquidistant | |
| Float_t Step | |
| string cut | |
| Name | Description |
| ------------- | ------------- |
| string sVariable | LaTeX name of the parameter |
| std::vector\<string>sBranchName | vector of branches needed to get this variable|
| Int_t Bins | Number of bins in the var |
| Float_t Range\[2\] | Range of the var, \[low_edge,high_edge\] |
| std::vector\<std::array\<double,2>> vVarRange | Range of the variables directly from the branch |
| std::vector\<double> binEdges | vector containing the bin borders |
| std::vector\<double> binEdgesEquidistant | vector containing the bin borders assuming equidistant binning |
| bool isEquidistant | is the binning equidistant? |
| Float_t Step | Bin width; more of a helper, equal to \(Range\[1\] - Range\[0\]\) / Bins|
| string cut | string in a TFormula format handlight the branches (eg."TMath::Abs(pi_zero_resolved_ETA_DTF-K_plus_ETA_DTF)" |
* **Functions:**