#ifndef MT_HISTOGRAM_REGULARIZATION__HPP #define MT_HISTOGRAM_REGULARIZATION__HPP class MT_histogram_regularization { public: float* data; unsigned int length; float* colorDataY; float* colorDataFY; MT_histogram_regularization(float* d = NULL, unsigned int l = 0, float* cy = NULL, float* cfy = NULL) :data(d), length(l), colorDataY(cy), colorDataFY(cfy) {}; }; #endif