laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauAbsFitModel.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2004 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 
63 #ifndef LAU_ABS_FIT_MODEL
64 #define LAU_ABS_FIT_MODEL
65 
66 #include "LauComplex.hh"
67 #include "LauFitObject.hh"
68 #include "LauFormulaPar.hh"
69 #include "LauSimFitTask.hh"
70 
71 #include "TMatrixDfwd.h"
72 #include "TStopwatch.h"
73 #include "TString.h"
74 
75 #include <iosfwd>
76 #include <set>
77 #include <vector>
78 // LauSPlot included to get LauSPlot::NameSet typedef
79 #include "LauSPlot.hh"
80 
81 class LauAbsCoeffSet;
82 class LauAbsPdf;
83 class LauFitDataTree;
84 class LauGenNtuple;
85 class LauAbsRValue;
86 class LauParameter;
87 
88 class LauAbsFitModel : public LauSimFitTask {
89 
90  public:
93 
95  virtual ~LauAbsFitModel();
96 
98  Bool_t useDP() const { return usingDP_; }
99 
101 
104  void useDP( Bool_t usingDP ) { usingDP_ = usingDP; }
105 
107  Bool_t doSFit() const { return doSFit_; }
108 
110 
114  void doSFit( const TString& sWeightBranchName, Double_t scaleFactor = 1.0 );
115 
117  Bool_t doEMLFit() const { return emlFit_; }
118 
120 
123  void doEMLFit( Bool_t emlFit ) { emlFit_ = emlFit; }
124 
126  Bool_t doPoissonSmearing() const { return poissonSmear_; }
127 
129 
132  void doPoissonSmearing( Bool_t poissonSmear ) { poissonSmear_ = poissonSmear; }
133 
135  Bool_t enableEmbedding() const { return enableEmbedding_; }
136 
138 
141  void enableEmbedding( Bool_t enable ) { enableEmbedding_ = enable; }
142 
144  Bool_t writeLatexTable() const { return writeLatexTable_; }
145 
147 
150  void writeLatexTable( Bool_t writeTable ) { writeLatexTable_ = writeTable; }
151 
153  Bool_t saveFilePDF() const { return savePDF_; }
154 
156 
159  void saveFilePDF( Bool_t savePDF ) { savePDF_ = savePDF; }
160 
162 
168  void writeSPlotData( const TString& fileName,
169  const TString& treeName,
170  Bool_t storeDPEfficiency,
171  const TString& verbosity = "q" );
172 
174  Bool_t writeSPlotData() const { return writeSPlotData_; }
175 
177  Bool_t storeDPEff() const { return storeDPEff_; }
178 
180  Bool_t useRandomInitFitPars() const { return randomFit_; }
181 
183  void useRandomInitFitPars( Bool_t boolean ) { randomFit_ = boolean; }
184 
186 
189  virtual void setBkgndClassNames( const std::vector<TString>& names );
190 
192  inline UInt_t nBkgndClasses() const { return bkgndClassNames_.size(); }
193 
195 
198  virtual void setNSigEvents( LauParameter* nSigEvents ) = 0;
199 
201 
207  virtual void setNBkgndEvents( LauAbsRValue* nBkgndEvents ) = 0;
208 
210 
217  virtual void setAmpCoeffSet( LauAbsCoeffSet* coeffSet ) = 0;
218 
220 
228  void compareFitData( UInt_t toyMCScale = 10,
229  const TString& mcFileName = "fitToyMC.root",
230  const TString& tableFileName = "fitToyMCTable.tex",
231  Bool_t poissonSmearing = kTRUE );
232 
234 
241  void run( const TString& applicationCode,
242  const TString& dataFileName,
243  const TString& dataTreeName,
244  const TString& histFileName,
245  const TString& tableFileName = "" );
246 
248 
255  virtual void setParsFromMinuit( Double_t* par, Int_t npar );
256 
258 
262  virtual Double_t getTotNegLogLikelihood();
263 
265 
270  void setParametersFromFile( const TString& fileName, const TString& treeName, const Bool_t fix );
271 
273 
280  void setParametersFromMap( const std::map<TString, Double_t>& parameters, const Bool_t fix );
281 
283 
292  void setNamedParameters( const TString& fileName,
293  const TString& treeName,
294  const std::set<TString>& parameters,
295  const Bool_t fix );
296 
298 
307  void setParametersFileFallback( const TString& fileName,
308  const TString& treeName,
309  const std::map<TString, Double_t>& parameters,
310  const Bool_t fix );
311 
313 
320  virtual std::map<TString, LauComplex> getDPAmps( const Double_t m13Sq, const Double_t m23Sq ) = 0;
321 
323 
330  virtual std::map<TString, Double_t> getDPLikelihoods( const Double_t m13Sq,
331  const Double_t m23Sq ) = 0;
332 
333  protected:
334  // Some typedefs
335 
337  typedef std::vector<LauAbsPdf*> LauPdfPList;
339  typedef std::vector<LauParameter*> LauParameterPList;
341  typedef std::vector<LauAbsRValue*> LauAbsRValuePList;
343  typedef std::set<LauParameter*> LauParameterPSet;
345  typedef std::vector<LauParameter> LauParameterList;
347  typedef std::map<UInt_t, TString> LauBkgndClassMap;
348 
350  void clearFitParVectors();
351 
353  void clearExtraVarVectors();
354 
356 
360  virtual void weightEvents( const TString& dataFileName, const TString& dataTreeName ) = 0;
361 
363 
369  virtual void generate( const TString& dataFileName,
370  const TString& dataTreeName,
371  const TString& histFileName,
372  const TString& tableFileNameBase );
373 
375 
378  virtual Bool_t genExpt() = 0;
379 
381 
387  void fit( const TString& dataFileName,
388  const TString& dataTreeName,
389  const TString& histFileName,
390  const TString& tableFileNameBase );
391 
393  void fitExpt();
394 
396 
399  Bool_t runMinimisation();
400 
402 
406  void createFitToyMC( const TString& mcFileName, const TString& tableFileName );
407 
409 
412  virtual UInt_t readExperimentData();
413 
415 
419  virtual Bool_t verifyFitData( const TString& dataFileName, const TString& dataTreeName );
420 
422  virtual void cacheInputFitVars() = 0;
423 
425  virtual void cacheInputSWeights();
426 
428 
434  virtual void initialise() = 0;
435 
437  virtual void recalculateNormalisation() = 0;
438 
440  virtual void initialiseDPModels() = 0;
441 
449  virtual void updateCoeffs() = 0;
450 
452  virtual void propagateParUpdates() = 0;
453 
455 
459  Double_t getLogLikelihood( UInt_t iStart, UInt_t iEnd );
460 
462  Double_t getLogLikelihoodPenalty();
463 
465 
468  virtual Double_t getTotEvtLikelihood( UInt_t iEvt ) = 0;
469 
471  virtual Double_t getEventSum() const = 0;
472 
474 
477  virtual void printEventInfo( UInt_t iEvt ) const;
478 
480  virtual void printVarsInfo() const;
481 
483  virtual void checkInitFitParams() = 0;
484 
486 
490  virtual void setupResultsOutputs( const TString& histFileName, const TString& tableFileName );
491 
493 
496  virtual void prepareInitialParArray( TObjArray& array );
497 
499 
509  virtual void finaliseExperiment( const LauAbsFitter::FitStatus& fitStat,
510  const TObjArray* parsFromCoordinator,
511  const TMatrixD* covMat,
512  TObjArray& parsToCoordinator );
513 
515 
518  virtual void finaliseFitResults( const TString& tableFileName ) = 0;
519 
521 
524  virtual void savePDFPlots( const TString& label ) = 0;
525 
527 
531  virtual void savePDFPlotsWave( const TString& label, const Int_t& spin ) = 0;
532 
534 
537  virtual void writeOutTable( const TString& outputFile ) = 0;
538 
540  virtual void storePerEvtLlhds() = 0;
541 
543  virtual void calculateSPlotData();
544 
546  void setGenValues();
547 
549  virtual void setupBkgndVectors() = 0;
550 
552 
556  Bool_t validBkgndClass( const TString& className ) const;
557 
559 
563  UInt_t bkgndClassID( const TString& className ) const;
564 
566 
570  const TString& bkgndClassName( UInt_t classID ) const;
571 
573  virtual void setupGenNtupleBranches() = 0;
574 
576 
579  virtual void addGenNtupleIntegerBranch( const TString& name );
580 
582 
585  virtual void addGenNtupleDoubleBranch( const TString& name );
586 
588 
592  virtual void setGenNtupleIntegerBranchValue( const TString& name, Int_t value );
593 
595 
599  virtual void setGenNtupleDoubleBranchValue( const TString& name, Double_t value );
600 
602 
606  virtual Int_t getGenNtupleIntegerBranchValue( const TString& name ) const;
607 
609 
613  virtual Double_t getGenNtupleDoubleBranchValue( const TString& name ) const;
614 
616  virtual void fillGenNtupleBranches();
617 
619  virtual void setupSPlotNtupleBranches() = 0;
620 
622 
625  virtual void addSPlotNtupleIntegerBranch( const TString& name );
626 
628 
631  virtual void addSPlotNtupleDoubleBranch( const TString& name );
632 
634 
638  virtual void setSPlotNtupleIntegerBranchValue( const TString& name, Int_t value );
639 
641 
645  virtual void setSPlotNtupleDoubleBranchValue( const TString& name, Double_t value );
646 
648  virtual void fillSPlotNtupleBranches();
649 
651  virtual LauSPlot::NameSet variableNames() const = 0;
652 
654  virtual LauSPlot::NumbMap freeSpeciesNames() const = 0;
655 
657  virtual LauSPlot::NumbMap fixdSpeciesNames() const = 0;
658 
660  virtual LauSPlot::TwoDMap twodimPDFs() const = 0;
661 
663  virtual Bool_t splitSignal() const = 0;
664 
666  virtual Bool_t scfDPSmear() const = 0;
667 
669 
674  UInt_t addFitParameters( LauParameter* param, const Bool_t addFixed = kFALSE );
675 
677 
682  UInt_t addFitParameters( LauAbsRValue* param, const Bool_t addFixed = kFALSE );
683 
685 
690  UInt_t addFitParameters( LauParameterPList& paramList, const Bool_t addFixed = kFALSE );
691 
693 
698  UInt_t addFitParameters( LauAbsRValuePList& paramList, const Bool_t addFixed = kFALSE );
699 
701 
706  UInt_t addFitParameters( LauPdfPList& pdfList, const Bool_t addFixed = kFALSE );
707 
709 
713  UInt_t addResonanceParameters( LauParameter* param );
714 
716 
720  UInt_t addResonanceParameters( LauParameterPList& paramList );
721 
723  void addConParameters();
724 
726 
730  void printFitParameters( const LauPdfPList& pdfList, std::ostream& fout ) const;
731 
733 
736  void updateFitParameters( LauPdfPList& pdfList );
737 
739 
743  void cacheInfo( LauPdfPList& pdfList, const LauFitDataTree& theData );
744 
746 
750  Double_t prodPdfValue( LauPdfPList& pdfList, UInt_t iEvt );
751 
753 
756  Bool_t pdfsDependOnDP() const { return pdfsDependOnDP_; }
757 
759 
762  void pdfsDependOnDP( Bool_t dependOnDP ) { pdfsDependOnDP_ = dependOnDP; }
763 
765  const LauParameterPList& fitPars() const { return fitVars_; }
766 
768  const LauParameterPSet& resPars() const { return resVars_; }
769 
771  const LauParameterList& extraPars() const { return extraVars_; }
772 
775 
777  const LauAbsRValuePList& conPars() const { return conVars_; }
778 
780  const LauGenNtuple* genNtuple() const { return genNtuple_; }
781 
784 
786  const LauGenNtuple* sPlotNtuple() const { return sPlotNtuple_; }
787 
790 
792  const LauFitDataTree* fitData() const { return inputFitData_; }
793 
796 
799 
802 
804  std::map<TString, Double_t> fixParamMap_;
805 
807  std::set<TString> fixParamNames_;
808 
810  Bool_t fixParams_;
811 
813  // set to be fixed in the fit. In addition to those from fixParamNames_, these
814  // include those imported from a file.
815  std::set<LauParameter*> allImportedFreeParams_;
816 
817  private:
820 
823 
824  // Various control booleans
825 
829  Bool_t savePDF_;
835  Bool_t storeDPEff_;
837  Bool_t randomFit_;
839  Bool_t emlFit_;
845  Bool_t usingDP_;
848 
849  // Info on number of experiments and number of events
850 
853 
856 
859 
862 
865 
866  // Input data and output ntuple
867 
874 
875  // Background class names
876 
880  const TString nullString_;
881 
882  // sFit related variables
883 
885  Bool_t doSFit_;
889  std::vector<Double_t> sWeights_;
892 
893  // Fit timers
894 
896  TStopwatch timer_;
898  TStopwatch cumulTimer_;
899 
902 
903  // Comparison toy MC related variables
904 
913 
914  // sPlot related variables
915 
917  TString sPlotFileName_;
919  TString sPlotTreeName_;
922 
923  ClassDef( LauAbsFitModel, 0 ) // Abstract interface to fit/toyMC model
924 };
925 
926 #endif
LauFitDataTree * inputFitData_
The input data.
virtual UInt_t readExperimentData()
Read in the data for the current experiment.
Bool_t doEMLFit() const
Determine whether an extended maximum likelihood fit it being performed.
virtual void initialiseDPModels()=0
Initialise the DP models.
virtual Int_t getGenNtupleIntegerBranchValue(const TString &name) const
Get the value of an integer branch in the gen tree.
UInt_t addResonanceParameters(LauParameter *param)
Add the given parameter to the list of resonance parameters and the list of all fit parameters.
const TString nullString_
An empty string.
Class for defining the abstract interface for complex coefficient classes.
Class for defining the fit parameter objects.
Definition: LauParameter.hh:49
Bool_t saveFilePDF() const
save files containing graphs of the resonance's PDFs
virtual void writeOutTable(const TString &outputFile)=0
Write the latex table.
Bool_t writeSPlotData_
Option to write sPlot data.
Struct to store fit status information.
Definition: LauAbsFitter.hh:54
Bool_t doPoissonSmearing() const
Determine whether Poisson smearing is enabled for the toy MC generation.
Bool_t doSFit() const
Return the flag to store the status of using an sFit or not.
virtual Double_t getTotEvtLikelihood(UInt_t iEvt)=0
Calculates the likelihood for a given event.
TString sPlotFileName_
The name of the sPlot file.
virtual Double_t getGenNtupleDoubleBranchValue(const TString &name) const
Get the value of a double branch in the gen tree.
virtual void setGenNtupleIntegerBranchValue(const TString &name, Int_t value)
Set the value of an integer branch in the gen tree.
virtual std::map< TString, LauComplex > getDPAmps(const Double_t m13Sq, const Double_t m23Sq)=0
Calculate the DP amplitude(s) for a given DP position.
virtual void savePDFPlots(const TString &label)=0
Save the pdf Plots for all the resonances of experiment number fitExp.
void setParametersFromMap(const std::map< TString, Double_t > &parameters, const Bool_t fix)
Set model parameters from a given std::map.
Bool_t writeSPlotData() const
Determine whether the sPlot data is to be written out.
LauParameterPSet fitVarsSet_
Internal set of the same fit parameters (used to check uniqueness)
virtual std::map< TString, Double_t > getDPLikelihoods(const Double_t m13Sq, const Double_t m23Sq)=0
Calculate the DP likelihood(s) for a given DP position.
LauGenNtuple * genNtuple()
Access the gen ntuple.
virtual Bool_t verifyFitData(const TString &dataFileName, const TString &dataTreeName)
Open the input file and verify that all required variables are present.
const LauParameterPSet & resPars() const
Const access the fit variables which affect the DP normalisation.
TString fitToyMCTableName_
The output table name for Toy MC.
Bool_t poissonSmear_
Option to perform Poisson smearing.
LauParameterList & extraPars()
Non-const access the extra variables.
LauBkgndClassMap bkgndClassNames_
The background class names.
virtual void printEventInfo(UInt_t iEvt) const
Prints the values of all the fit variables for the specified event - useful for diagnostics.
virtual Double_t getEventSum() const =0
Returns the sum of the expected events over all hypotheses; used in the EML fit scenario.
virtual void initialise()=0
Initialise the fit par vectors.
Bool_t storeDPEff() const
Determine whether the efficiency information should be stored in the sPlot ntuple.
File containing declaration of LauSPlot class.
virtual LauSPlot::NumbMap fixdSpeciesNames() const =0
Returns the names and yields of species that are fixed in the fit.
virtual void propagateParUpdates()=0
This function (specific to each model) calculates anything that depends on the fit parameter values.
virtual ~LauAbsFitModel()
Destructor.
void cacheInfo(LauPdfPList &pdfList, const LauFitDataTree &theData)
Have all PDFs in the list cache the data.
void setParametersFileFallback(const TString &fileName, const TString &treeName, const std::map< TString, Double_t > &parameters, const Bool_t fix)
Set named model parameters from a given std::map, with fallback to those from a file.
Bool_t enableEmbedding() const
Determine whether embedding of events is enabled in the generation.
virtual void generate(const TString &dataFileName, const TString &dataTreeName, const TString &histFileName, const TString &tableFileNameBase)
Generate toy MC.
const LauFitDataTree * fitData() const
Const access the data store.
virtual Bool_t genExpt()=0
The method that actually generates the toy MC events for the given experiment.
void useRandomInitFitPars(Bool_t boolean)
Randomise the initial values of the fit parameters, in particular the isobar coefficient parameters.
virtual void addGenNtupleDoubleBranch(const TString &name)
Add a branch to the gen tree for storing a double.
The base class for any task process for simultaneous/combined fits.
virtual void printVarsInfo() const
Same as printEventInfo, but printing out the values of the variables in the fit.
TString fixParamTreeName_
Imported parameters tree name.
TString fitToyMCFileName_
The output file name for Toy MC.
std::set< LauParameter * > allImportedFreeParams_
The set of parameters that are imported (either from a file or by value) and not.
const TString & bkgndClassName(UInt_t classID) const
Get the name of a background class from the number.
Bool_t randomFit_
Option to randomise the initial values of the fit parameters.
virtual void finaliseExperiment(const LauAbsFitter::FitStatus &fitStat, const TObjArray *parsFromCoordinator, const TMatrixD *covMat, TObjArray &parsToCoordinator)
Perform all finalisation actions.
void useDP(Bool_t usingDP)
Switch on/off the Dalitz plot term in the Likelihood (allows fits to other quantities,...
std::vector< LauParameter > LauParameterList
List of parameters.
UInt_t bkgndClassID(const TString &className) const
The number assigned to a background class.
virtual LauSPlot::NameSet variableNames() const =0
Returns the names of all variables in the fit.
std::vector< LauParameter * > LauParameterPList
List of parameter pointers.
virtual Double_t getTotNegLogLikelihood()
Calculates the total negative log-likelihood.
virtual void weightEvents(const TString &dataFileName, const TString &dataTreeName)=0
Weighting - allows e.g. MC events to be weighted by the DP model.
LauParameterList extraVars_
Extra variables that aren't in the fit but are stored in the ntuple.
std::set< TString > NameSet
Type to store names, e.g. of the discriminating/control variables.
Definition: LauSPlot.hh:72
virtual void cacheInputSWeights()
Cache the value of the sWeights to be used in the sFit.
Bool_t doSFit_
Option to perfom the sFit.
Class to store the input fit variables.
virtual void setNBkgndEvents(LauAbsRValue *nBkgndEvents)=0
Set the number of background events.
TString fixParamFileName_
Imported parameters file name.
Bool_t storeDPEff_
Option to store DP efficiencies in the sPlot ntuple.
void saveFilePDF(Bool_t savePDF)
Turn on or off the save of files containing graphs of the resonance's PDFs.
void addConParameters()
Add parameters to the list of Gaussian constrained parameters.
virtual void setupSPlotNtupleBranches()=0
Setup the branches of the sPlot tuple.
LauAbsFitModel(const LauAbsFitModel &rhs)
Copy constructor (not implemented)
Bool_t useRandomInitFitPars() const
Determine whether the initial values of the fit parameters, in particular the isobar coefficient para...
const LauGenNtuple * genNtuple() const
Const access the gen ntuple.
LauAbsFitModel & operator=(const LauAbsFitModel &rhs)
Copy assignment operator (not implemented)
UInt_t addFitParameters(LauParameter *param, const Bool_t addFixed=kFALSE)
Add the given parameter to the list of all fit parameters.
virtual void cacheInputFitVars()=0
Cache the input data values to calculate the likelihood during the fit.
void createFitToyMC(const TString &mcFileName, const TString &tableFileName)
Create a toy MC sample from the fitted parameters.
Double_t sWeightScaleFactor_
The sWeight scaling factor.
std::map< TString, Double_t > NumbMap
Type to associate a category name with a double precision number, e.g. a yield or PDF value for a giv...
Definition: LauSPlot.hh:75
TString sPlotTreeName_
The name of the sPlot tree.
std::vector< LauAbsRValue * > LauAbsRValuePList
List of parameter pointers.
virtual void setSPlotNtupleDoubleBranchValue(const TString &name, Double_t value)
Set the value of a double branch in the sPlot tree.
File containing declaration of LauComplex class.
virtual void setupGenNtupleBranches()=0
Setup the generation ntuple branches.
virtual void fillSPlotNtupleBranches()
Fill the sPlot tuple.
Double_t prodPdfValue(LauPdfPList &pdfList, UInt_t iEvt)
Calculate the product of the per-event likelihoods of the PDFs in the list.
void doPoissonSmearing(Bool_t poissonSmear)
Turn Poisson smearing (for the toy MC generation) on or off.
void setParametersFromFile(const TString &fileName, const TString &treeName, const Bool_t fix)
Set model parameters from a file.
virtual void addSPlotNtupleIntegerBranch(const TString &name)
Add a branch to the sPlot tree for storing an integer.
virtual void prepareInitialParArray(TObjArray &array)
Package the initial fit parameters for transmission to the coordinator.
LauGenNtuple * genNtuple_
The generated ntuple.
virtual void setBkgndClassNames(const std::vector< TString > &names)
Setup the background class names.
Class for defining the abstract interface for PDF classes.
Definition: LauAbsPdf.hh:54
virtual void setGenNtupleDoubleBranchValue(const TString &name, Double_t value)
Set the value of a double branch in the gen tree.
void enableEmbedding(Bool_t enable)
Turn on or off embedding of events in the generation.
LauAbsFitModel()
Constructor.
void fit(const TString &dataFileName, const TString &dataTreeName, const TString &histFileName, const TString &tableFileNameBase)
Perform the total fit.
void compareFitData(UInt_t toyMCScale=10, const TString &mcFileName="fitToyMC.root", const TString &tableFileName="fitToyMCTable.tex", Bool_t poissonSmearing=kTRUE)
Specify that a toy MC sample should be created for a successful fit to an experiment.
void setGenValues()
Make sure all parameters hold their genValue as the current value.
virtual void calculateSPlotData()
Calculate the sPlot data.
Bool_t pdfsDependOnDP() const
Do any of the PDFs have a dependence on the DP?
Bool_t writeLatexTable() const
Determine whether writing out of the latex table is enabled.
void run(const TString &applicationCode, const TString &dataFileName, const TString &dataTreeName, const TString &histFileName, const TString &tableFileName="")
Start the toy generation / fitting.
Pure abstract base class for defining a parameter containing an R value.
Definition: LauAbsRValue.hh:45
virtual Bool_t splitSignal() const =0
Check if the signal is split into well-reconstructed and mis-reconstructed types.
const LauParameterList & extraPars() const
Const access the extra variables.
std::map< TString, Double_t > fixParamMap_
Map from imported parameter name to value.
void writeLatexTable(Bool_t writeTable)
Turn on or off the writing out of the latex table.
virtual void setupResultsOutputs(const TString &histFileName, const TString &tableFileName)
Setup saving of fit results to ntuple/LaTeX table etc.
virtual void addSPlotNtupleDoubleBranch(const TString &name)
Add a branch to the sPlot tree for storing a double.
LauFitDataTree * fitData()
Access the data store.
UInt_t nBkgndClasses() const
Returns the number of background classes.
void pdfsDependOnDP(Bool_t dependOnDP)
Do any of the PDFs have a dependence on the DP?
virtual void setAmpCoeffSet(LauAbsCoeffSet *coeffSet)=0
Set the DP amplitude coefficients.
const LauParameterPList & fitPars() const
Const access to the fit variables.
void clearFitParVectors()
Clear the vectors containing fit parameters.
virtual void storePerEvtLlhds()=0
Store the per-event likelihood values.
LauGenNtuple * sPlotNtuple()
Access the sPlot ntuple.
virtual void savePDFPlotsWave(const TString &label, const Int_t &spin)=0
Save the pdf Plots for the sum of ressonances correspondint to "sin" of experiment number fitExp.
Bool_t writeLatexTable_
Option to output a Latex format table.
LauAbsRValuePList conVars_
Internal vectors of Gaussian parameters.
void doEMLFit(Bool_t emlFit)
Choice to perform an extended maximum likelihood fit.
virtual void addGenNtupleIntegerBranch(const TString &name)
Add a branch to the gen tree for storing an integer.
Bool_t runMinimisation()
Routine to perform the minimisation.
std::set< LauParameter * > LauParameterPSet
Set of parameter pointers.
std::map< UInt_t, TString > LauBkgndClassMap
A type to store background classes.
const LauAbsRValuePList & conPars() const
Const access the Gaussian constrained variables.
Bool_t emlFit_
Option to perform an extended ML fit.
Bool_t useDP() const
Is the Dalitz plot term in the likelihood.
File containing declaration of LauSimFitTask class.
virtual void setSPlotNtupleIntegerBranchValue(const TString &name, Int_t value)
Set the value of an integer branch in the sPlot tree.
void clearExtraVarVectors()
Clear the vectors containing extra ntuple variables.
virtual void setNSigEvents(LauParameter *nSigEvents)=0
Set the number of signal events.
UInt_t fitToyMCScale_
The scaling factor (toy vs data statistics)
Bool_t fixParams_
Whether to fix the loaded parameters (kTRUE) or leave them floating (kFALSE)
Bool_t fitToyMCPoissonSmear_
Option to perform Poisson smearing.
void printFitParameters(const LauPdfPList &pdfList, std::ostream &fout) const
Print the fit parameters for all PDFs in the list.
Bool_t pdfsDependOnDP_
Option to state if pdfs depend on DP position.
TString sWeightBranchName_
The name of the sWeight branch.
virtual Bool_t scfDPSmear() const =0
Check if the mis-reconstructed signal is to be smeared in the DP.
std::multimap< TString, std::pair< TString, TString > > TwoDMap
Type to associate the name of the species that have 2D PDFs with the names of the two variables invol...
Definition: LauSPlot.hh:81
virtual void finaliseFitResults(const TString &tableFileName)=0
Write the results of the fit into the ntuple.
void setNamedParameters(const TString &fileName, const TString &treeName, const std::set< TString > &parameters, const Bool_t fix)
Set named model parameters from a file.
Bool_t usingDP_
Option to include the DP as part of the fit.
virtual LauSPlot::NumbMap freeSpeciesNames() const =0
Returns the names and yields of species that are free in the fit.
virtual void checkInitFitParams()=0
Update initial fit parameters if required.
Bool_t enableEmbedding_
Option to enable embedding.
Double_t getLogLikelihoodPenalty()
Calculate the penalty terms to the log likelihood from Gaussian constraints.
File containing declaration of LauFitObject class.
TStopwatch timer_
The fit timer.
virtual void fillGenNtupleBranches()
Fill the gen tuple branches.
TString sPlotVerbosity_
Control the verbosity of the sFit.
File containing declaration of LauFormulaPar class.
Double_t getLogLikelihood(UInt_t iStart, UInt_t iEnd)
Calculate the sum of the log-likelihood over the specified events.
const LauGenNtuple * sPlotNtuple() const
Const access the sPlot ntuple.
TString outputTableName_
The output table name.
LauParameterPList fitVars_
Internal vector of fit parameters.
void updateFitParameters(LauPdfPList &pdfList)
Update the fit parameters for all PDFs in the list.
TStopwatch cumulTimer_
The total fit timer.
Bool_t savePDF_
Option to output a .C file of PDF's.
void fitExpt()
Routine to perform the actual fit for a given experiment.
Abstract interface to the fitting and toy MC model.
std::set< TString > fixParamNames_
Imported parameter names.
Bool_t validBkgndClass(const TString &className) const
Check if the given background class is in the list.
LauGenNtuple * sPlotNtuple_
The sPlot ntuple.
Bool_t compareFitData_
Option to make toy from 1st successful experiment.
virtual void setParsFromMinuit(Double_t *par, Int_t npar)
This function sets the parameter values from Minuit.
virtual LauSPlot::TwoDMap twodimPDFs() const =0
Returns the species and variables for all 2D PDFs in the fit.
Class to store the results from the toy MC generation into an ntuple.
Definition: LauGenNtuple.hh:45
LauParameterPSet resVars_
Internal set of fit parameters upon which the DP normalisation depends.
virtual void updateCoeffs()=0
std::vector< Double_t > sWeights_
The vector of sWeights.
std::vector< LauAbsPdf * > LauPdfPList
List of Pdfs.
virtual void recalculateNormalisation()=0
Recalculate normalisation the signal DP model(s)
virtual void setupBkgndVectors()=0
Method to set up the storage for background-related quantities called by setBkgndClassNames.