laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauASqMaxFinder.cc
Go to the documentation of this file.
1 
2 /*
3 Copyright 2022 University of Warwick
4 
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8 
9  http://www.apache.org/licenses/LICENSE-2.0
10 
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 */
17 
18 /*
19 Laura++ package authors:
20 John Back
21 Paul Harrison
22 Thomas Latham
23 */
24 
29 #include "LauASqMaxFinder.hh"
30 
31 #include "LauAbsResonance.hh"
32 #include "LauFitter.hh"
33 #include "LauIsobarDynamics.hh"
34 #include "LauKinematics.hh"
35 #include "LauParameter.hh"
36 
37 #include "TSystem.h"
38 
39 #include <array>
40 #include <iostream>
41 #include <memory>
42 
44  iso_ { iso }
45 {
46  const LauKinematics* kinematics { iso_.getKinematics() };
47  const Double_t m13SqMin { kinematics->getm13SqMin() };
48  const Double_t m13SqMax { kinematics->getm13SqMax() };
49  const Double_t m23SqMin { kinematics->getm23SqMin() };
50  const Double_t m23SqMax { kinematics->getm23SqMax() };
51 
52  ownedParams_.resize( 2 );
53  ownedParams_[0] = std::make_unique<LauParameter>( "m13Sq",
54  0.5 * ( m13SqMin + m13SqMax ),
55  m13SqMin,
56  m13SqMax,
57  kFALSE );
58  ownedParams_[1] = std::make_unique<LauParameter>( "m23Sq",
59  0.5 * ( m23SqMin + m23SqMax ),
60  m23SqMin,
61  m23SqMax,
62  kFALSE );
63 
64  params_.resize( 2 );
65  params_[0] = ownedParams_[0].get();
66  params_[1] = ownedParams_[1].get();
67 }
68 
69 void LauASqMaxFinder::setParsFromMinuit( Double_t* par, Int_t npar )
70 {
71  if ( static_cast<std::size_t>( npar ) != params_.size() ) {
72  std::cerr << "ERROR in LauASqMaxFinder::setParsFromMinuit : Unexpected number of free parameters: "
73  << npar << ".\n";
74  std::cerr << " Expected: " << params_.size()
75  << ".\n"
76  << std::endl;
77  gSystem->Exit( EXIT_FAILURE );
78  }
79 
80  for ( Int_t i { 0 }; i < npar; ++i ) {
81  params_[i]->value( par[i] );
82  }
83 
84  return;
85 }
86 
88 {
89  const Double_t m13Sq { params_[0]->unblindValue() };
90  const Double_t m23Sq { params_[1]->unblindValue() };
91 
92  if ( ! iso_.getKinematics()->withinDPLimits( m13Sq, m23Sq ) ) {
94  std::cerr << "WARNING in LauASqMaxFinder::getTotNegLogLikelihood : Fit has wandered outside the phase space boundary\n";
95  std::cerr << " : Returning 0.0 value (further warnings of this type will be suppressed)"
96  << std::endl;
98  }
99  return 0.0;
100  }
101 
102  iso_.calcLikelihoodInfo( m13Sq, m23Sq );
103  return -iso_.getEvtIntensity();
104 }
105 
107 {
108  Double_t ASqMax { -1.0 };
109 
110  const LauKinematics* kinematics { iso_.getKinematics() };
111  LauKinematics localKin { kinematics->getm1(),
112  kinematics->getm2(),
113  kinematics->getm3(),
114  kinematics->getmParent() };
115 
116  const Double_t m13SqMin { localKin.getm13Min() };
117  const Double_t m13SqMax { localKin.getm13Max() };
118  const Double_t m23SqMin { localKin.getm23Min() };
119  const Double_t m23SqMax { localKin.getm23Max() };
120 
123 
124  for ( UInt_t iRes { 0 }; iRes < iso_.getnTotAmp(); ++iRes ) {
125  // Find the center of the resonance and set that as the start of the search
126  const LauAbsResonance* res {
127  const_cast<const LauIsobarDynamics&>( iso_ ).getResonance( iRes ) };
128  const Int_t bachelor { res->getPairInt() };
129  const Double_t mass { res->getMass() };
130  const Double_t width { res->getWidth() };
131 
132  const std::array<Double_t, 3> massVals { mass - width, mass, mass + width };
133  const std::array<Double_t, 3> cosHelVals { -1.0, 0.0, 1.0 };
134  for ( Double_t massVal : massVals ) {
135  for ( Double_t cosHel : cosHelVals ) {
136 
137  switch ( bachelor ) {
138  case 0 :
139  localKin.updateKinematics( 0.5 * ( m13SqMax + m13SqMin ),
140  0.5 * ( m23SqMax + m23SqMin ) );
141  break;
142  case 1 :
143  localKin.updateKinematicsFrom23( massVal, cosHel );
144  break;
145  case 2 :
146  localKin.updateKinematicsFrom13( massVal, cosHel );
147  break;
148  case 3 :
149  localKin.updateKinematicsFrom12( massVal, cosHel );
150  break;
151 
152  default :
153  break;
154  }
155 
156  params_[0]->initValue( localKin.getm13Sq() );
157  params_[1]->initValue( localKin.getm23Sq() );
158 
159  params_[0]->error( 0.1 );
160  params_[1]->error( 0.1 );
161 
163 
164  const LauAbsFitter::FitStatus fitResult { LauFitter::fitter().minimise() };
165 
166  if ( fitResult.status != 0 and -fitResult.NLL > ASqMax ) {
167  ASqMax = -fitResult.NLL;
168  }
169  }
170  }
171  }
172 
174 
175  if ( ASqMax < 0.0 ) {
176  std::cerr << "WARNING in LauASqMaxFinder::find : Could not find ASqMax\n";
177  std::cerr << " : Returning -1.0" << std::endl;
178  }
179 
180  return ASqMax;
181 }
File containing declaration of LauFitter class.
Struct to store fit status information.
Definition: LauAbsFitter.hh:54
LauIsobarDynamics & iso_
The isobar dynamics for which we need to find the maximum |A|^2 value.
void calcLikelihoodInfo(const UInt_t iEvt)
Calculate the likelihood (and all associated information) for the given event number.
File containing declaration of LauASqMaxFinder class.
void setParsFromMinuit(Double_t *par, Int_t npar) override
This function sets the parameter values from Minuit.
Bool_t printMinimisationWarnings_
Flag to control printing of warnings if the fit wanders outside the DP.
LauASqMaxFinder(LauIsobarDynamics &iso)
Constructor.
File containing declaration of LauParameter class.
static void setFitterMaxPars(const UInt_t maxPars)
Set the maximum number of parameters for the fitter.
Definition: LauFitter.cc:64
File containing declaration of LauAbsResonance class.
static LauAbsFitter & fitter()
Method that provides access to the singleton fitter.
Definition: LauFitter.cc:75
Bool_t withinDPLimits(const Double_t m13Sq, const Double_t m23Sq) const
Check whether a given (m13Sq,m23Sq) point is within the kinematic limits of the Dalitz plot.
UInt_t getnTotAmp() const
Retrieve the total number of amplitude components.
Double_t find()
Run the minimisation to locate the maximum |A|^2 value.
virtual const FitStatus & minimise()=0
Perform the minimisation of the fit function.
Double_t getm1() const
Get the m1 mass.
Double_t getTotNegLogLikelihood() override
Calculate the new value of the negative log likelihood.
Double_t getEvtIntensity() const
Retrieve the total intensity multiplied by the efficiency for the current event.
static void destroyFitter()
Destroy the current fitter.
Definition: LauFitter.cc:90
@ None
Zero printout.
Double_t getm13SqMin() const
Get the m13Sq minimum, (m1 + m3)^2.
Double_t NLL
The negative log-likelihood.
Definition: LauAbsFitter.hh:58
static void setFitterVerbosity(const LauOutputLevel level)
Set the verbosity level of the fitter.
Definition: LauFitter.cc:53
Abstract class for defining type for resonance amplitude models (Breit-Wigner, Flatte etc....
Class for calculating 3-body kinematic quantities.
virtual void initialise(LauFitObject *fitObj, const std::vector< LauParameter * > &parameters)=0
Initialise the fitter, setting the information on the parameters.
Class for defining signal dynamics using the isobar model.
const LauKinematics * getKinematics() const
Retrieve the Dalitz plot kinematics.
File containing declaration of LauIsobarDynamics class.
File containing declaration of LauKinematics class.
std::vector< LauParameter * > params_
The fit parameters in a form to be passed to the minimiser.