19#include "analysis/OrcaKinFit/SoftBWMassConstraint.h"
20#include "analysis/OrcaKinFit/ParticleFitObject.h"
21#include <framework/logging/Logger.h>
35 namespace OrcaKinFit {
38 SoftBWMassConstraint::SoftBWMassConstraint(
double gamma_,
double mass_,
double massmin_,
double massmax_)
39 : SoftBWParticleConstraint(gamma_, massmin_ - mass_, massmax_ - mass_),
44 SoftBWMassConstraint::~SoftBWMassConstraint()
48 double SoftBWMassConstraint::getValue()
const
50 double totE[2] = {0, 0};
51 double totpx[2] = {0, 0};
52 double totpy[2] = {0, 0};
53 double totpz[2] = {0, 0};
54 for (
unsigned int i = 0; i < fitobjects.size(); i++) {
55 int index = (flags[i] == 1) ? 0 : 1;
56 totE[index] += fitobjects[i]->getE();
57 totpx[index] += fitobjects[i]->getPx();
58 totpy[index] += fitobjects[i]->getPy();
59 totpz[index] += fitobjects[i]->getPz();
61 double m1 = std::sqrt(std::abs(totE[0] * totE[0] - totpx[0] * totpx[0] - totpy[0] * totpy[0] - totpz[0] * totpz[0]));
62 if (!std::isfinite(m1))
63 B2INFO(
"SoftBWMassConstraint::getValue(): m1 is nan: "
64 <<
"p[0]=(" << totE[0] <<
", " << totpx[0] <<
", " << totpy[0] <<
", " << totpz[0]
65 <<
"), p^2=" << totE[0]*totE[0] - totpx[0]*totpx[0] - totpy[0]*totpy[0] - totpz[0]*totpz[0]);
67 assert(std::isfinite(m1));
68 double m2 = std::sqrt(std::abs(totE[1] * totE[1] - totpx[1] * totpx[1] - totpy[1] * totpy[1] - totpz[1] * totpz[1]));
69 if (!std::isfinite(m2))
70 B2INFO(
"SoftBWMassConstraint::getValue(): m2 is nan: "
71 <<
"p[1]=(" << totE[1] <<
", " << totpx[1] <<
", " << totpy[1] <<
", " << totpz[1]
72 <<
"), p^2=" << totE[1]*totE[1] - totpx[1]*totpx[1] - totpy[1]*totpy[1] - totpz[1]*totpz[1]);
73 assert(std::isfinite(m2));
74 double result = m1 - m2 - mass;
75 assert(std::isfinite(result));
84 void SoftBWMassConstraint::getDerivatives(
int idim,
double der[])
const
86 double totE[2] = {0, 0};
87 double totpx[2] = {0, 0};
88 double totpy[2] = {0, 0};
89 double totpz[2] = {0, 0};
90 bool valid[2] = {
false,
false};
91 for (
unsigned int i = 0; i < fitobjects.size(); i++) {
92 int index = (flags[i] == 1) ? 0 : 1;
94 totE[index] += fitobjects[i]->getE();
95 totpx[index] += fitobjects[i]->getPx();
96 totpy[index] += fitobjects[i]->getPy();
97 totpz[index] += fitobjects[i]->getPz();
100 double m_inv[2] = {0, 0};
101 for (
int index = 0; index < 2; ++index) {
102 m2[index] = totE[index] * totE[index] - totpx[index] * totpx[index]
103 - totpy[index] * totpy[index] - totpz[index] * totpz[index];
104 if (m2[index] < 0 && m2[index] > -1
E-9) m2[index] = 0;
105 if (m2[index] < 0 && valid[index]) {
106 B2ERROR(
"SoftBWMassConstraint::getDerivatives: m2<0!");
107 for (
unsigned int j = 0; j < fitobjects.size(); j++) {
108 int jndex = (flags[j] == 1) ? 0 : 1;
109 if (jndex == index) {
110 B2ERROR(fitobjects[j]->
getName() <<
": E=" << fitobjects[j]->getE() <<
", px=" << fitobjects[j]->getPx()
111 <<
", py=" << fitobjects[j]->getPy() <<
", pz=" << fitobjects[j]->getPz());
114 B2ERROR(
"sum: E=" << totE[index] <<
", px=" << totpx[index]
115 <<
", py=" << totpy[index] <<
", pz=" << totpz[index] <<
", m2=" << m2[index]);
117 if (m2[index] != 0) m_inv[index] = 1 / std::sqrt(std::abs(m2[index]));
120 for (
unsigned int i = 0; i < fitobjects.size(); i++) {
121 int index = (flags[i] == 1) ? 0 : 1;
122 for (
int ilocal = 0; ilocal < fitobjects[i]->getNPar(); ilocal++) {
123 if (!fitobjects[i]->isParamFixed(ilocal)) {
124 int iglobal = fitobjects[i]->getGlobalParNum(ilocal);
125 assert(iglobal >= 0 && iglobal < idim);
126 if (m2[index] != 0) {
127 der[iglobal] = totE[index] * fitobjects[i]->getDE(ilocal)
128 - totpx[index] * fitobjects[i]->getDPx(ilocal)
129 - totpy[index] * fitobjects[i]->getDPy(ilocal)
130 - totpz[index] * fitobjects[i]->getDPz(ilocal);
131 der[iglobal] *= m_inv[index];
132 }
else der[iglobal] = 1;
133 if (index == 1) der[iglobal] *= -1.;
139 double SoftBWMassConstraint::getMass(
int flag)
145 for (
unsigned int i = 0; i < fitobjects.size(); i++) {
146 if (flags[i] == flag) {
147 totE += fitobjects[i]->getE();
148 totpx += fitobjects[i]->getPx();
149 totpy += fitobjects[i]->getPy();
150 totpz += fitobjects[i]->getPz();
153 return std::sqrt(std::abs(totE * totE - totpx * totpx - totpy * totpy - totpz * totpz));
156 void SoftBWMassConstraint::setMass(
double mass_)
161 bool SoftBWMassConstraint::secondDerivatives(
int i,
int j,
double* dderivatives)
const
163 B2DEBUG(14,
"SoftBWMassConstraint::secondDerivatives: i=" << i <<
", j=" << j);
164 int index = (flags[i] == 1) ? 0 : 1;
165 int jndex = (flags[j] == 1) ? 0 : 1;
166 if (index != jndex)
return false;
171 for (
unsigned int k = 0; k < fitobjects.size(); ++k) {
172 int kndex = (flags[k] == 1) ? 0 : 1;
173 B2DEBUG(14,
"SoftBWMassConstraint::secondDerivatives: i=" << i
174 <<
", j=" << j <<
", k=" << k <<
", index=" << index <<
", kndex=" << kndex);
175 const ParticleFitObject* fok = fitobjects[k];
177 B2DEBUG(14,
"fok: E=" << fok->getE());
178 if (index == kndex) {
180 totpx += fok->getPx();
181 totpy += fok->getPy();
182 totpz += fok->getPz();
187 B2ERROR(
"SoftBWMassConstraint::secondDerivatives: totE = " << totE);
190 double m2 = std::abs(totE * totE - totpx * totpx - totpy * totpy - totpz * totpz);
191 double m = std::sqrt(m2);
193 double minv3 = 1 / (m * m * m);
195 assert(dderivatives);
196 for (
int k = 0; k < 16; ++k) dderivatives[k] = 0;
197 dderivatives[4 * 0 + 0] = (m2 - totE * totE) * minv3;
198 dderivatives[4 * 0 + 1] = dderivatives[4 * 1 + 0] = totE * totpx * minv3;
199 dderivatives[4 * 0 + 2] = dderivatives[4 * 2 + 0] = totE * totpy * minv3;
200 dderivatives[4 * 0 + 3] = dderivatives[4 * 3 + 0] = totE * totpz * minv3;
201 dderivatives[4 * 1 + 1] = -(m2 + totpx * totpx) * minv3;
202 dderivatives[4 * 1 + 2] = dderivatives[4 * 2 + 1] = -totpx * totpy * minv3;
203 dderivatives[4 * 1 + 3] = dderivatives[4 * 3 + 1] = -totpx * totpz * minv3;
204 dderivatives[4 * 2 + 2] = -(m2 + totpy * totpy) * minv3;
205 dderivatives[4 * 2 + 3] = dderivatives[4 * 3 + 2] = -totpy * totpz * minv3;
206 dderivatives[4 * 3 + 3] = -(m2 + totpz * totpz) * minv3;
210 bool SoftBWMassConstraint::firstDerivatives(
int i,
double* dderivatives)
const
216 int index = (flags[i] == 1) ? 0 : 1;
217 for (
unsigned int j = 0; j < fitobjects.size(); ++j) {
218 int jndex = (flags[j] == 1) ? 0 : 1;
219 B2DEBUG(14,
"SoftBWMassConstraint::firstDerivatives: i=" << i
220 <<
", j=" << j <<
", index=" << index <<
", jndex=" << jndex);
221 const ParticleFitObject* foj = fitobjects[j];
223 B2DEBUG(14,
"foj: E=" << foj->getE());
224 if (index == jndex) {
226 totpx += foj->getPx();
227 totpy += foj->getPy();
228 totpz += foj->getPz();
233 B2INFO(
"SoftBWMassConstraint::firstDerivatives: totE = " << totE);
236 double m = std::sqrt(std::abs(totE * totE - totpx * totpx - totpy * totpy - totpz * totpz));
239 dderivatives[0] = totE / m;
240 dderivatives[1] = -totpx / m;
241 dderivatives[2] = -totpy / m;
242 dderivatives[3] = -totpz / m;
TString getName(const TObject *obj)
human-readable name (e.g.
Abstract base class for different kinds of events.