mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-04-30 18:30:03 +02:00
29 lines
777 B
C++
29 lines
777 B
C++
#pragma once
|
|
#include "aare/NDArray.hpp"
|
|
#include "aare/NDView.hpp"
|
|
#include "aare/ClusterVector.hpp"
|
|
#include "aare/ClusterFile.hpp" //Cluster_3x3
|
|
namespace aare{
|
|
|
|
struct Photon{
|
|
double x;
|
|
double y;
|
|
double energy;
|
|
};
|
|
|
|
class Interpolator{
|
|
NDArray<double, 3> m_ietax;
|
|
NDArray<double, 3> m_ietay;
|
|
|
|
NDArray<double, 1> m_etabinsx;
|
|
NDArray<double, 1> m_etabinsy;
|
|
NDArray<double, 1> m_energy_bins;
|
|
public:
|
|
Interpolator(NDView<double, 3> etacube, NDView<double, 1> xbins, NDView<double, 1> ybins, NDView<double, 1> ebins);
|
|
NDArray<double, 3> get_ietax(){return m_ietax;}
|
|
NDArray<double, 3> get_ietay(){return m_ietay;}
|
|
|
|
std::vector<Photon> interpolate(const ClusterVector<int32_t>& clusters);
|
|
};
|
|
|
|
} // namespace aare
|