MaCh3  2.6.0
Reference Guide
SampleHandlerBase.h
Go to the documentation of this file.
1 #pragma once
2 
3 //MaCh3 includes
4 #include "Samples/SampleInfo.h"
5 #include "Samples/EventInfo.h"
6 
11 #include "Samples/BinningHandler.h"
13 
15 #include "THStack.h"
16 #include "TLegend.h"
18 
20  kModePlot = 0,
21  kOscChannelPlot = 1
22 };
23 
36 {
37  public:
38  //######################################### Functions #########################################
41  SampleHandlerBase(std::string ConfigFileName, ParameterHandlerGeneric* _ParHandler,
42  const std::shared_ptr<OscillationHandler>& OscillatorObj_ = nullptr);
44  virtual ~SampleHandlerBase();
45 
47  int GetNDim(const int Sample) const final { return SampleDetails[Sample].nDimensions; }
49  std::string GetName() const final;
51  std::string GetSampleTitle(const int Sample) const final {return SampleDetails[Sample].SampleTitle;}
54  std::string GetSampleName(const int Sample) const {return SampleDetails[Sample].SampleName;}
56  std::string GetKinVarName(const int iSample, const int Dimension) const final;
57 
59  void PrintIntegral(const int iSample, const TString& OutputName="/dev/null", const int WeightStyle=0, const TString& OutputCSVName="/dev/null");
60 
64  void AddData(const int Sample, TH1* Data);
65 
69  void AddData(const int Sample, const std::vector<double>& Data_Array);
70 
72  void PrintRates(const bool DataOnly = false) final;
74  double GetLikelihood() const override;
76  double GetSampleLikelihood(const int isample) const override;
77  //===============================================================================
78 
81  int GetSampleIndex(const std::string& SampleTitle) const;
82 
84  const TH1* GetDataHist(const int Sample) final;
87  const TH1* GetDataHist(const std::string& Sample);
88 
90  const TH1* GetMCHist(const int Sample) final;
93  const TH1* GetMCHist(const std::string& Sample);
94 
96  const TH1* GetW2Hist(const int Sample) final;
99  const TH1* GetW2Hist(const std::string& Sample);
101  void Reweight() override;
104  M3::float_t GetEventWeight(const int iEvent);
105 
107  int GetNOscChannels(const int iSample) const final {return static_cast<int>(SampleDetails[iSample].OscChannels.size());};
109  std::string GetFlavourName(const int iSample, const int iChannel) const final {
110  if (iChannel < 0 || iChannel > GetNOscChannels(iSample)) {
111  MACH3LOG_ERROR("Invalid Channel Requested: {}", iChannel);
112  throw MaCh3Exception(__FILE__ , __LINE__);
113  }
114  return SampleDetails[iSample].OscChannels[iChannel].flavourName;
115  }
117  std::unique_ptr<TH1> Get1DVarHist(const int iSample, const std::string &ProjectionVar,
118  const std::vector<KinematicCut> &EventSelectionVec = {}, int WeightStyle = 0,
119  const std::vector<KinematicCut> &SubEventSelectionVec = {}) final;
121  std::unique_ptr<TH2> Get2DVarHist(const int iSample, const std::string& ProjectionVarX, const std::string& ProjectionVarY,
122  const std::vector< KinematicCut >& EventSelectionVec = {},
123  int WeightStyle = 0, const std::vector< KinematicCut >& SubEventSelectionVec = {}) final;
126  std::vector<KinematicCut> BuildModeChannelSelection(const int iSample, const int kModeToFill, const int kChannelToFill) const;
128  void Fill1DSubEventHist(const int iSample, TH1D* _h1DVar, const std::string& ProjectionVar,
129  const std::vector< KinematicCut >& SubEventSelectionVec = {},
130  int WeightStyle=0);
132  void Fill2DSubEventHist(const int iSample, TH2* _h2DVar, const std::string& ProjectionVarX, const std::string& ProjectionVarY,
133  const std::vector< KinematicCut >& SubEventSelectionVec = {}, int WeightStyle = 0);
135  std::unique_ptr<TH1> Get1DVarHistByModeAndChannel(const int iSample, const std::string& ProjectionVar_Str,
136  const int kModeToFill = -1, const int kChannelToFill = -1,
137  const int WeightStyle = 0) final;
139  std::unique_ptr<TH2> Get2DVarHistByModeAndChannel(const int iSample, const std::string& ProjectionVar_StrX,
140  const std::string& ProjectionVar_StrY, const int kModeToFill = -1,
141  const int kChannelToFill = -1, const int WeightStyle = 0) final;
142 
146  int GetRangeForPlotType(const SamplePlotType TypeEnum, const int iSample) const;
147 
148  std::vector<std::unique_ptr<TH1>> ReturnHistsBySelection1D(const int iSample, const std::string& KinematicProjection,
149  const SamplePlotType Selection1, const int Selection2 = -1,
150  const int WeightStyle = 0);
151  std::vector<std::unique_ptr<TH2>> ReturnHistsBySelection2D(const int iSample, const std::string& KinematicProjectionX,
152  const std::string& KinematicProjectionY,
153  const SamplePlotType Selection1, const int Selection2 = -1,
154  const int WeightStyle=0);
155  std::unique_ptr<THStack> ReturnStackedHistBySelection1D(const int iSample, const std::string& KinematicProjection,
156  const SamplePlotType Selection1, const int Selection2 = -1, const int WeightStyle = 0);
158  const TLegend* ReturnStackHistLegend() const {return THStackLeg;}
159 
161  int ReturnKinematicParameterFromString(const std::string& KinematicStr) const;
163  std::string ReturnStringFromKinematicParameter(const int KinematicVariable) const;
164 
166  void SaveAdditionalInfo(TDirectory* Dir) final;
167 
169  int ReturnKinematicVectorFromString(const std::string& KinematicStr) const;
171  std::string ReturnStringFromKinematicVector(const int KinematicVariable) const;
173  bool IsSubEventVarString(const std::string& VarStr) const;
174 
176  unsigned int GetNEvents() const {return nEvents;}
177 
179  auto GetDataArray() const {
180  return SampleHandler_data;
181  }
183  auto GetMCArray() const {
184  return SampleHandler_array;
185  }
187  auto GetW2Array() const {
188  return SampleHandler_array_w2;
189  }
191  std::vector<double> GetArrayForSample(const int Sample, std::vector<double> const & array) const;
192 
195  std::vector<double> GetDataArray(const int Sample) const {
196  return GetArrayForSample(Sample, SampleHandler_data);
197  }
200  std::vector<double> GetMCArray(const int Sample) const {
201  return GetArrayForSample(Sample, SampleHandler_array);
202  }
205  std::vector<double> GetW2Array(const int Sample) const {
207  }
209  void CheckEmptyBins() const;
210 
211  protected:
216  const M3::float_t* GetNuOscillatorPointers(const int iEvent) const;
220  void ReadConfig();
222  void LoadSingleSample(const int iSample, const YAML::Node& Settings);
223 
225  virtual void AddAdditionalWeightPointers() = 0;
226 
228  void SetupKinematicMap();
229 
232  virtual void SetupSplines() = 0;
233 
234  //DB Require all objects to have a function which reads in the MC
236  virtual void Init() = 0;
237 
239  virtual int SetupExperimentMC() = 0;
240 
242  virtual void SetupMC() = 0;
244  virtual void InititialiseData() = 0;
245 
247  void Initialise();
248 
249  //===============================================================================
252  void SetSplinePointers();
255  std::vector< SplineIndex > GetSplineBins(int Event, BinnedSplineHandler* BinnedSpline, bool& ThrowCrititcal) const;
256 
258  void FindNominalBinAndEdges();
259 
261  void SetBinning();
262 
264  void SetupReweightArrays();
265  //===============================================================================
266 
267  // ----- start Functional Parameters -----
271  virtual void PrepFunctionalParameters(){};
272 
293  template <typename EventType, typename SFType>
295  std::vector<EventType> &ExptEvents,
296  std::vector<std::string> const &par_names,
297  SFType shift_func);
298 
301  template <typename EventType, typename SFType>
302  void RegisterIndividualFunctionalParameter(std::vector<EventType> &ExptEvents,
303  std::string const &par_name,
304  SFType shift_func);
307  virtual void ApplyShifts(const int iEvent);
309  virtual void ResetShifts([[maybe_unused]] const int iEvent) {};
314  virtual void FinaliseShifts([[maybe_unused]] const int iEvent) {};
315  // ----- end Functional Parameters -----
316 
318  bool IsEventSelected(const int iSample, const int iEvent) _noexcept_;
320  bool IsSubEventSelected(const std::vector<KinematicCut> &SubEventCuts, const int iEvent, unsigned const int iSubEvent, size_t nsubevents);
321 
324  void CalcNormsBins(std::vector<std::vector<NormParameter>>& norm_parameters, std::vector< std::vector< int > >& norms_bins);
325  template <typename ParT> bool PassesSelection(const ParT& Par, std::size_t iEvent);
328 
334  virtual void CalcWeightFunc([[maybe_unused]] const int iEvent) {return;};
335 
337  double ReturnKinematicParameter(const std::string& KinematicParameter, int iEvent) const {
338  return ReturnKinematicParameter(ReturnKinematicParameterFromString(KinematicParameter), iEvent);
339  }
341  virtual double ReturnKinematicParameter(const int KinematicVariable, const int iEvent) const = 0;
342 
343  // === JM declare the same functions for kinematic vectors ===
344  std::vector<double> ReturnKinematicVector(const std::string& KinematicParameter, const int iEvent) const {
345  return ReturnKinematicVector(ReturnKinematicVectorFromString(KinematicParameter), iEvent);
346  }
347  virtual std::vector<double> ReturnKinematicVector([[maybe_unused]] const int KinematicVariable,
348  [[maybe_unused]] const int iEvent) const {return {};};
349  // ===========================================================
350 
352  std::vector<double> ReturnKinematicParameterBinning(const int Sample, const std::string &KinematicParameter) const final;
353 
354  const double* GetPointerToKinematicParameter(const std::string& KinematicParameter, int iEvent) const {
355  return GetPointerToKinematicParameter(ReturnKinematicParameterFromString(KinematicParameter), iEvent);
356  }
357  virtual const double* GetPointerToKinematicParameter(const int KinematicVariable, const int iEvent) const = 0;
358 
360  const double* GetPointerToOscChannel(const int iEvent) const;
362  void SetupNormParameters();
364  void SetupOscParameters();
365  //===============================================================================
370  void FillHist(const int Sample, TH1* Hist, std::vector<double> &Array);
371 
373 #ifdef MULTITHREAD
376  void FillArray_MP();
377 #endif
380  void FillArray();
381 
383  void ResetHistograms();
385  void InitialiseSplineObject();
386 
388  std::unique_ptr<SplineBase> SplineHandler;
389 
391  std::shared_ptr<OscillationHandler> Oscillator;
392 
393  //===============================================================================
394  //DB Variables required for GetLikelihood
396  std::unique_ptr<BinningHandler> Binning;
398  std::vector<double> SampleHandler_array;
400  std::vector<double> SampleHandler_array_w2;
402  std::vector<double> SampleHandler_data;
403  //===============================================================================
404 
405  //===============================================================================
407  std::vector<EventInfo> MCEvents;
409  std::vector<SampleInfo> SampleDetails;
410  //===============================================================================
411 
412  //===============================================================================
413  //DB Covariance Objects
416 
417  //===============================================================================
419  std::string SampleHandlerName;
420 
421  //===========================================================================
425  std::vector< std::vector< KinematicCut > > StoredSelection;
428  std::vector< std::vector< KinematicCut > > Selection;
429  //===========================================================================
430 
432  const std::unordered_map<std::string, int>* KinematicParameters;
434  const std::unordered_map<int, std::string>* ReversedKinematicParameters;
435 
436  // === JM mapping between string and kinematic vector enum ===
437  const std::unordered_map<std::string, int>* KinematicVectors;
438  const std::unordered_map<int, std::string>* ReversedKinematicVectors;
439  // ===========================================================
440 
442  std::unique_ptr<Manager> SampleManager;
443 
444  std::unordered_map<std::string, double> _modeNomWeightMap;
445 
446  //===============================================================================
448  TLegend* THStackLeg = nullptr;
449 
453  bool UpdateW2;
454 
456  NuPDG GetInitPDGFromFileName(const std::string& FileName) const {return FileToInitPDGMap.at(FileName);}
458  NuPDG GetFinalPDGFromFileName(const std::string& FileName) const {return FileToFinalPDGMap.at(FileName);}
459 
460  private:
463  std::vector<std::vector<KinematicCut>> ApplyTemporarySelection(const int iSample,
464  const std::vector<KinematicCut>& ExtraCuts);
466  std::unordered_map<std::string, NuPDG> FileToInitPDGMap;
468  std::unordered_map<std::string, NuPDG> FileToFinalPDGMap;
469 
472 
474  unsigned int nEvents;
475 };
476 
477 //template implementation details live here
#define _noexcept_
KS: noexcept can help with performance but is terrible for debugging, this is meant to help easy way ...
Definition: Core.h:96
#define _MaCh3_Safe_Include_Start_
KS: Avoiding warning checking for headers.
Definition: Core.h:126
#define _MaCh3_Safe_Include_End_
#define _restrict_
KS: Using restrict limits the effects of pointer aliasing, aiding optimizations. While reading I foun...
Definition: Core.h:108
#define MACH3LOG_ERROR
Definition: MaCh3Logger.h:37
SamplePlotType
@ kOscChannelPlot
@ kModePlot
NuPDG
Enum to track the incoming neutrino species.
Definition: SampleStructs.h:94
Bin-by-bin class calculating response for spline parameters.
Custom exception class used throughout MaCh3.
Class responsible for handling of systematic error parameters with different types defined in the con...
Class responsible for handling implementation of samples used in analysis, reweighting and returning ...
M3::float_t GetEventWeight(const int iEvent)
Computes the total event weight for a given entry.
std::vector< double > ReturnKinematicVector(const std::string &KinematicParameter, const int iEvent) const
void InitialiseSplineObject()
Setup spline handler (both binned or unbinned)
virtual ~SampleHandlerBase()
destructor
std::string SampleHandlerName
Identifier of this Sample Handler, mostly used for fancy printing in FitterBase.
void RegisterIndividualFunctionalParameter(std::vector< EventType > &ExptEvents, std::string const &par_name, SFType shift_func)
LP - Registration template function for one-dimensional functional shifts.
const std::unordered_map< int, std::string > * ReversedKinematicParameters
Mapping between kinematic enum and string.
virtual const double * GetPointerToKinematicParameter(const int KinematicVariable, const int iEvent) const =0
std::shared_ptr< OscillationHandler > Oscillator
Contains oscillator handling calculating oscillation probabilities.
int GetNDim(const int Sample) const final
DB Get what dimensionality binning for given sample has.
std::vector< KinematicCut > BuildModeChannelSelection(const int iSample, const int kModeToFill, const int kChannelToFill) const
Construct vector of kinematic cuts that will be applied, on top of default cuts include stuff like cu...
void SetBinning()
set the binning for 2D sample used for the likelihood calculation
void PrintIntegral(const int iSample, const TString &OutputName="/dev/null", const int WeightStyle=0, const TString &OutputCSVName="/dev/null")
Computes and prints the integral breakdown of all modes and oscillation channels for a given sample.
void RegisterIndividualFunctionalParameter(std::vector< EventType > &ExptEvents, std::vector< std::string > const &par_names, SFType shift_func)
LP - Registration template function for multi-dimensional functional shifts.
std::unique_ptr< Manager > SampleManager
The manager object used to read the sample yaml file.
std::string GetKinVarName(const int iSample, const int Dimension) const final
Return Kinematic Variable name for specified sample and dimension for example "Reconstructed_Neutrino...
bool PassesSelection(const ParT &Par, std::size_t iEvent)
bool IsSubEventVarString(const std::string &VarStr) const
JM: Check if a kinematic parameter string corresponds to a subevent-level variable.
std::unique_ptr< TH1 > Get1DVarHistByModeAndChannel(const int iSample, const std::string &ProjectionVar_Str, const int kModeToFill=-1, const int kChannelToFill=-1, const int WeightStyle=0) final
Build a 1D histogram for a given variable, optionally filtered by mode and channel.
void SetupNormParameters()
Setup the norm parameters by assigning each event with bin.
void ReadConfig()
Load information about sample handler and corresponding samples from config file.
const TH1 * GetW2Hist(const int Sample) final
Get W2 histogram.
void SetupKinematicMap()
Ensure Kinematic Map is setup and make sure it is initialised correctly.
NuPDG GetFinalPDGFromFileName(const std::string &FileName) const
Retrieve the final neutrino PDG code associated with a given input file name.
std::vector< std::vector< KinematicCut > > StoredSelection
DB Vectors to store which kinematic cuts we apply. Gets used in IsEventSelected Read in from sample y...
virtual void Init()=0
Initialise any variables that your experiment specific SampleHandler needs.
const TH1 * GetDataHist(const int Sample) final
Get Data histogram.
SampleHandlerBase(std::string ConfigFileName, ParameterHandlerGeneric *_ParHandler, const std::shared_ptr< OscillationHandler > &OscillatorObj_=nullptr)
Constructor.
std::string GetFlavourName(const int iSample, const int iChannel) const final
Get the flavour name for a given sample and oscillation channel.
std::unordered_map< std::string, NuPDG > FileToFinalPDGMap
Mapping from input file names to final neutrino PDG codes.
std::vector< double > ReturnKinematicParameterBinning(const int Sample, const std::string &KinematicParameter) const final
Return the binning used to draw a kinematic parameter.
void InitialiseNuOscillatorObjects()
including Dan's magic NuOscillator
const std::unordered_map< std::string, int > * KinematicParameters
Mapping between string and kinematic enum.
const TLegend * ReturnStackHistLegend() const
Return the legend used for stacked histograms with sample info.
std::unordered_map< std::string, double > _modeNomWeightMap
void FillArray_MP()
DB Nice new multi-threaded function which calculates the event weights and fills the relevant bins of...
void CheckEmptyBins() const
Loop over bins and checks if there are any which have 0 entries.
std::string ReturnStringFromKinematicVector(const int KinematicVariable) const
JM: Convert a kinematic vector integer ID to its corresponding name as a string.
bool IsEventSelected(const int iSample, const int iEvent) _noexcept_
DB Function which determines if an event is selected based on KinematicCut.
void SaveAdditionalInfo(TDirectory *Dir) final
Store additional info in a chain.
std::vector< std::unique_ptr< TH2 > > ReturnHistsBySelection2D(const int iSample, const std::string &KinematicProjectionX, const std::string &KinematicProjectionY, const SamplePlotType Selection1, const int Selection2=-1, const int WeightStyle=0)
virtual void PrepFunctionalParameters()
Update the functional parameter values to the latest proposed values. Needs to be called before every...
std::unordered_map< std::string, NuPDG > FileToInitPDGMap
Mapping from input file names to initial neutrino PDG codes.
void SetSplinePointers()
Set pointers for each event to appropriate weights, for unbinned based on event number while for binn...
std::unique_ptr< BinningHandler > Binning
KS: This stores binning information, in future could be come vector to store binning for every used s...
ParameterHandlerGeneric * ParHandler
ETA - All experiments will need an xsec, det and osc cov.
NuPDG GetInitPDGFromFileName(const std::string &FileName) const
Retrieve the initial neutrino PDG code associated with a given input file name.
bool UpdateW2
KS:Super hacky to update W2 or not.
const std::unordered_map< int, std::string > * ReversedKinematicVectors
void Fill1DSubEventHist(const int iSample, TH1D *_h1DVar, const std::string &ProjectionVar, const std::vector< KinematicCut > &SubEventSelectionVec={}, int WeightStyle=0)
Fill projection histogram by looping over all events, and skipping one which doesn't pass specified c...
virtual void SetupMC()=0
Function which translates experiment struct into core struct.
virtual void InititialiseData()=0
Function responsible for loading data from file or loading from file.
virtual void CalcWeightFunc([[maybe_unused]] const int iEvent)
Calculate weights for function parameters.
unsigned int GetNEvents() const
Return total number of events.
virtual void ApplyShifts(const int iEvent)
ETA - generic function applying shifts.
void Initialise()
Function which does a lot of the lifting regarding the workflow in creating different MC objects.
virtual void SetupSplines()=0
initialise your splineXX object and then use InitialiseSplineObject to conveniently setup everything ...
M3::detail::Functional functional
Helper object for storing/updating information related to functional shift parameters.
double GetSampleLikelihood(const int isample) const override
Get likelihood (-logL) for a single sample.
virtual void RegisterFunctionalParameters()
HH - a experiment-specific function where the maps to actual functions are set up.
void SetupReweightArrays()
Initialise data, MC and W2 histograms.
void ResetHistograms()
Helper function to reset histograms.
virtual void AddAdditionalWeightPointers()=0
DB Function to determine which weights apply to which types of samples.
void Fill2DSubEventHist(const int iSample, TH2 *_h2DVar, const std::string &ProjectionVarX, const std::string &ProjectionVarY, const std::vector< KinematicCut > &SubEventSelectionVec={}, int WeightStyle=0)
Fill projection histogram by looping over all events, and skipping one which doesn't pass specified c...
void FillHist(const int Sample, TH1 *Hist, std::vector< double > &Array)
Fill a histogram with the event-level information used in the fit.
virtual int SetupExperimentMC()=0
Experiment specific setup, returns the number of events which were loaded.
void FindNominalBinAndEdges()
Functions which find the nominal bin and bin edges.
std::string GetSampleName(const int Sample) const
Sample name tag used only for getting relevant uncertainties.
const M3::float_t * GetNuOscillatorPointers(const int iEvent) const
Get pointer to NuOscillator weight for a given event.
std::string GetName() const final
Get name for Sample Handler.
virtual void FinaliseShifts([[maybe_unused]] const int iEvent)
LP - Optionally calculate derived observables after all shifts have been applied.
std::vector< SplineIndex > GetSplineBins(int Event, BinnedSplineHandler *BinnedSpline, bool &ThrowCrititcal) const
Retrieve the spline bin indices associated with a given event.
virtual void ResetShifts([[maybe_unused]] const int iEvent)
HH - reset the shifted values to the original values.
std::vector< std::vector< KinematicCut > > ApplyTemporarySelection(const int iSample, const std::vector< KinematicCut > &ExtraCuts)
Temporarily extend Selection for a given sample with additional cuts. Returns the original Selection ...
const double * GetPointerToOscChannel(const int iEvent) const
Get pointer to oscillation channel associated with given event. Osc channel is const.
std::vector< double > GetW2Array(const int Sample) const
Return array storing W2 entries for single sample.
const std::unordered_map< std::string, int > * KinematicVectors
int GetSampleIndex(const std::string &SampleTitle) const
Get index of sample based on name.
std::vector< std::vector< KinematicCut > > Selection
a way to store selection cuts which you may push back in the get1DVar functions most of the time this...
TLegend * THStackLeg
DB: Legend associated with stacked histograms produced by this class.
void AddData(const int Sample, TH1 *Data)
DB: Add data for a given sample from a ROOT histogram.
void SetupNuOscillatorPointers()
Initialise pointer to oscillation weight to NuOscillator object.
double ReturnKinematicParameter(const std::string &KinematicParameter, int iEvent) const
Return the value of an associated kinematic parameter for an event.
std::vector< double > GetDataArray(const int Sample) const
Return array storing data entries for every bin.
std::unique_ptr< THStack > ReturnStackedHistBySelection1D(const int iSample, const std::string &KinematicProjection, const SamplePlotType Selection1, const int Selection2=-1, const int WeightStyle=0)
double GetLikelihood() const override
Return likelihood (-LogL) for all samples.
unsigned int nEvents
Number of MC events are there.
std::vector< EventInfo > MCEvents
Stores information about every MC event.
M3::float_t CalcWeightTotal(const EventInfo *_restrict_ MCEvent) const _noexcept_
Calculate the total weight weight for a given event.
std::vector< double > GetMCArray(const int Sample) const
Return array storing MC entries for every bin.
auto GetDataArray() const
Return array storing data entries for every bin.
std::unique_ptr< SplineBase > SplineHandler
Contains all your splines (binned or unbinned) and handles the setup and the returning of weights fro...
std::vector< SampleInfo > SampleDetails
Stores info about currently initialised sample.
int GetNOscChannels(const int iSample) const final
Get number of oscillation channels for a single sample.
std::vector< std::unique_ptr< TH1 > > ReturnHistsBySelection1D(const int iSample, const std::string &KinematicProjection, const SamplePlotType Selection1, const int Selection2=-1, const int WeightStyle=0)
std::string GetSampleTitle(const int Sample) const final
Get fancy title for specified samples.
void CalcNormsBins(std::vector< std::vector< NormParameter >> &norm_parameters, std::vector< std::vector< int > > &norms_bins)
Check whether a normalisation systematic affects an event or not.
std::unique_ptr< TH2 > Get2DVarHist(const int iSample, const std::string &ProjectionVarX, const std::string &ProjectionVarY, const std::vector< KinematicCut > &EventSelectionVec={}, int WeightStyle=0, const std::vector< KinematicCut > &SubEventSelectionVec={}) final
Build a 2D projection of MC events into specified variables.
void LoadSingleSample(const int iSample, const YAML::Node &Settings)
Initialise single sample from config file.
std::vector< double > SampleHandler_data
DB Array to be filled in AddData.
std::vector< double > SampleHandler_array_w2
KS Array used for MC stat.
int GetRangeForPlotType(const SamplePlotType TypeEnum, const int iSample) const
KS: Return range for plot type, for example number of modes, osc channels etc.
void PrintRates(const bool DataOnly=false) final
Helper function to print rates for the samples with LLH.
void Reweight() override
main routine modifying MC prediction based on proposed parameter values
std::string ReturnStringFromKinematicParameter(const int KinematicVariable) const
ETA function to generically convert a kinematic type from param handler to a string.
std::unique_ptr< TH2 > Get2DVarHistByModeAndChannel(const int iSample, const std::string &ProjectionVar_StrX, const std::string &ProjectionVar_StrY, const int kModeToFill=-1, const int kChannelToFill=-1, const int WeightStyle=0) final
Build a 2D histogram for given variables, optionally filtered by mode and channel.
std::unique_ptr< TH1 > Get1DVarHist(const int iSample, const std::string &ProjectionVar, const std::vector< KinematicCut > &EventSelectionVec={}, int WeightStyle=0, const std::vector< KinematicCut > &SubEventSelectionVec={}) final
Return 1D projection of MC into given 1D variable (doesn't have to be variable used in the fit)
void SetupOscParameters()
Setup the osc parameters.
int ReturnKinematicParameterFromString(const std::string &KinematicStr) const
ETA function to generically convert a string from param handler to a kinematic type.
bool IsSubEventSelected(const std::vector< KinematicCut > &SubEventCuts, const int iEvent, unsigned const int iSubEvent, size_t nsubevents)
JM Function which determines if a subevent is selected.
std::vector< double > GetArrayForSample(const int Sample, std::vector< double > const &array) const
Return a sub-array for a given sample.
const double * GetPointerToKinematicParameter(const std::string &KinematicParameter, int iEvent) const
std::vector< double > SampleHandler_array
DB Array to be filled after reweighting.
virtual std::vector< double > ReturnKinematicVector([[maybe_unused]] const int KinematicVariable, [[maybe_unused]] const int iEvent) const
int ReturnKinematicVectorFromString(const std::string &KinematicStr) const
JM: Convert a kinematic vector name to its corresponding integer ID.
auto GetMCArray() const
Return array storing MC entries for every bin.
const TH1 * GetMCHist(const int Sample) final
Get MC histogram.
virtual double ReturnKinematicParameter(const int KinematicVariable, const int iEvent) const =0
Return the value of an associated kinematic parameter for an event.
void FillArray()
Function which does the core reweighting, fills the SampleHandlerBase::SampleHandler_array vector wit...
auto GetW2Array() const
Return array storing W2 entries for every bin.
bool FirstTimeW2
KS:Super hacky to update W2 or not.
Class responsible for handling implementation of samples used in analysis, reweighting and returning ...
Main namespace for MaCh3 software.
double float_t
Definition: Core.h:37
Stores info about each MC event used during reweighting routine.
Definition: EventInfo.h:13
Helper object for storing/updating information related to functional shift parameters.