4 #include "Oscillator/OscillatorFactory.h"
5 #include "Constants/OscillatorConstants.h"
10 std::vector<const M3::float_t*> OscParams_,
const int SubChannels) {
17 auto OscillFactory = std::make_unique<OscillatorFactory>();
26 [](
const std::string& message) {
MACH3LOG_INFO(
"{}", message); },
27 [
this, &OscillFactory, &NuOscillatorConfigFile]() {
28 this->
NuOscProbCalcers[0][0] = std::unique_ptr<OscillatorBase>(OscillFactory->CreateOscillator(NuOscillatorConfigFile));
32 MACH3LOG_ERROR(
"Attempted to use equal binning per oscillation channel, but not binning has been set in the NuOscillator::Oscillator object");
36 [](
const std::string& message) {
MACH3LOG_INFO(
"{}", message); },
42 for (
int iChannel = 0; iChannel < SubChannels; iChannel++) {
43 MACH3LOG_INFO(
"Setting up NuOscillator::Oscillator object in OscillationChannel: {}/{}", iChannel, SubChannels);
46 [](
const std::string& message) {
MACH3LOG_INFO(
"{}", message); },
47 [
this, iChannel, &OscillFactory, &NuOscillatorConfigFile]() {
49 OscillFactory->CreateOscillator(NuOscillatorConfigFile));
64 MACH3LOG_ERROR(
"Trying to add sample while EqualBinningPerOscChannel is enabled. This will not work...");
67 auto OscillFactory = std::make_unique<OscillatorFactory>();
69 std::vector<std::unique_ptr<OscillatorBase>> OscProbCalcersTemp(SubChannels);
71 for (
int iChannel = 0; iChannel < SubChannels; iChannel++) {
72 MACH3LOG_INFO(
"Setting up NuOscillator::Oscillator object in OscillationChannel: {}/{}", iChannel, SubChannels);
75 [](
const std::string& message) {
MACH3LOG_INFO(
"{}", message); },
76 [&OscProbCalcersTemp, iChannel, &OscillFactory, &NuOscillatorConfigFile]() {
77 OscProbCalcersTemp[iChannel] = std::unique_ptr<OscillatorBase>(
78 OscillFactory->CreateOscillator(NuOscillatorConfigFile));
90 std::vector<FLOAT_T> OscVec(
OscParams.size());
91 for (
size_t iPar = 0; iPar <
OscParams.size(); ++iPar) {
92 #pragma GCC diagnostic push
93 #pragma GCC diagnostic ignored "-Wuseless-cast"
94 OscVec[iPar] =
static_cast<FLOAT_T
>(*
OscParams[iPar]);
95 #pragma GCC diagnostic pop
102 for (
size_t iChannel = 0; iChannel <
NuOscProbCalcers[iSample].size(); iChannel++) {
112 const int FinalFlav,
const FLOAT_T TrueEnu,
const FLOAT_T TrueCosZenith) {
115 int IndexChannel = 0;
117 IndexSample = Sample;
118 IndexChannel = Channel;
121 if(TrueCosZenith != -999) {
122 return NuOscProbCalcers[IndexSample][IndexChannel]->ReturnWeightPointer(InitFlav ,FinalFlav, TrueEnu, TrueCosZenith);
124 return NuOscProbCalcers[IndexSample][IndexChannel]->ReturnWeightPointer(InitFlav ,FinalFlav, TrueEnu);
131 const std::vector<M3::float_t>& CosineZArray) {
135 if(CosineZArray.size() != 0)
NuOscProbCalcers[Sample][Channel]->SetCosineZArrayInCalcer(CosineZArray);
138 [](
const std::string& message) {
MACH3LOG_INFO(
"{}", message); },
139 [
this, Sample, Channel]() {
#define _MaCh3_Safe_Include_Start_
KS: Avoiding warning checking for headers.
#define _MaCh3_Safe_Include_End_
void LoggerPrint(const std::string &LibName, LogFunc logFunction, Func &&func, Args &&... args)
KS: This is bit convoluted but this is to allow redirecting cout and errors from external library int...
Custom exception class used throughout MaCh3.
void AddSample(const std::string &NuOscillatorConfigFile, const int SubChannels)
Add different oscillator for sample.
OscillationHandler(const std::string &ConfigFile, bool EqualBinningPerChannel, std::vector< const M3::float_t * > OscParams_, const int SubChannels)
Constructor.
std::vector< std::vector< std::unique_ptr< OscillatorBase > > > NuOscProbCalcers
DB Variables required for oscillation.
void Evaluate()
DB Evaluate oscillation weights for each defined event/bin.
virtual ~OscillationHandler()
Destructor.
const M3::float_t * GetNuOscillatorPointers(const int Sample, const int Channel, const int InitFlav, const int FinalFlav, const FLOAT_T TrueEnu, const FLOAT_T TrueCosZenith=-999)
Get pointer to oscillation weight.
std::vector< const M3::float_t * > OscParams
pointer to osc params, since not all params affect every sample, we perform some operations before ha...
void SetOscillatorBinning(const int Sample, const int Channel, const std::vector< M3::float_t > &EnergyArray, const std::vector< M3::float_t > &CosineZArray)
Setup binning, arrays correspond to events and their energy bins.
bool EqualBinningPerOscChannel
flag used to define whether all oscillation channels have a probability calculated using the same bin...