mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Improved spacing, and removed some unused includes
This commit is contained in:
parent
fd604f844b
commit
e990de8243
@ -51,9 +51,9 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
RigFemResultPosEnum resultPosType;
|
RigFemResultPosEnum resultPosType;
|
||||||
std::string fieldName;
|
std::string fieldName;
|
||||||
std::string componentName;
|
std::string componentName;
|
||||||
int timeLapseBaseFrameIdx;
|
int timeLapseBaseFrameIdx;
|
||||||
|
|
||||||
static const int ALL_TIME_LAPSES = -2;
|
static const int ALL_TIME_LAPSES = -2;
|
||||||
|
|
||||||
|
@ -20,12 +20,10 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "cvfObject.h"
|
#include "cvfObject.h"
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
|
||||||
|
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
///
|
///
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
class RigStatisticsDataCache;
|
|
||||||
|
|
||||||
class RigFemScalarResultFrames: public cvf::Object
|
class RigFemScalarResultFrames: public cvf::Object
|
||||||
{
|
{
|
||||||
@ -33,11 +31,11 @@ public:
|
|||||||
RigFemScalarResultFrames(int frameCount);
|
RigFemScalarResultFrames(int frameCount);
|
||||||
virtual ~RigFemScalarResultFrames();
|
virtual ~RigFemScalarResultFrames();
|
||||||
|
|
||||||
void enableAsSingleFrameResult();
|
void enableAsSingleFrameResult();
|
||||||
|
|
||||||
std::vector<float>& frameData(size_t frameIndex);
|
std::vector<float>& frameData(size_t frameIndex);
|
||||||
const std::vector<float>& frameData(size_t frameIndex) const;
|
const std::vector<float>& frameData(size_t frameIndex) const;
|
||||||
int frameCount() const;
|
int frameCount() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::vector< std::vector<float> > m_dataForEachFrame;
|
std::vector< std::vector<float> > m_dataForEachFrame;
|
||||||
|
Loading…
Reference in New Issue
Block a user