21 #ifndef __SOLVER_VARIABLE_STORAGE_RAWDATA_H__
22 #define __SOLVER_VARIABLE_STORAGE_RAWDATA_H__
24 #include <yuni/yuni.h>
26 #include <antares/study/study.h>
28 #include "intermediate.h"
30 namespace Antares::Solver::Variable::R::AllYears
51 double monthly[MONTHS_PER_YEAR];
52 double weekly[WEEKS_PER_YEAR];
53 double daily[DAYS_PER_YEAR];
54 Antares::Memory::Stored<double>::Type hourly;
55 std::vector<double> year;
56 mutable double allYears;
57 unsigned int nbYearsCapacity;
RawData()
Default constructor.
Definition: rawdata.cpp:30
~RawData()
Destructor.
Definition: rawdata.cpp:36