mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Janitor : Missing initialization in constructor
This commit is contained in:
parent
03c436393c
commit
746385fbce
@ -89,7 +89,6 @@ public:
|
|||||||
void finish();
|
void finish();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
const rips::NNCValuesInputRequest* m_request;
|
|
||||||
RimEclipseCase* m_eclipseCase;
|
RimEclipseCase* m_eclipseCase;
|
||||||
size_t m_cellCount;
|
size_t m_cellCount;
|
||||||
size_t m_streamedValueCount;
|
size_t m_streamedValueCount;
|
||||||
|
@ -100,6 +100,10 @@ RimSimWellInView::RimSimWellInView()
|
|||||||
m_resultWellIndex = cvf::UNDEFINED_SIZE_T;
|
m_resultWellIndex = cvf::UNDEFINED_SIZE_T;
|
||||||
|
|
||||||
simwellFractureCollection = new RimSimWellFractureCollection();
|
simwellFractureCollection = new RimSimWellFractureCollection();
|
||||||
|
|
||||||
|
m_isInjector = false;
|
||||||
|
m_isValidDisk = false;
|
||||||
|
m_diskScale = 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
@ -45,9 +45,6 @@ public:
|
|||||||
void setTimeStepRange( time_t startTime, time_t endTime );
|
void setTimeStepRange( time_t startTime, time_t endTime );
|
||||||
void setTimeStepList( std::vector<time_t> timeSteps );
|
void setTimeStepList( std::vector<time_t> timeSteps );
|
||||||
|
|
||||||
double minValue;
|
|
||||||
double maxValue;
|
|
||||||
|
|
||||||
RimObjectiveFunction( const RimSummaryCaseCollection* summaryCaseCollection, FunctionType type );
|
RimObjectiveFunction( const RimSummaryCaseCollection* summaryCaseCollection, FunctionType type );
|
||||||
|
|
||||||
double value( size_t caseIndex,
|
double value( size_t caseIndex,
|
||||||
|
@ -35,7 +35,8 @@
|
|||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
RigNNCData::RigNNCData()
|
RigNNCData::RigNNCData()
|
||||||
: m_connectionsAreProcessed( false )
|
: m_nativeConnectionCount( 0 )
|
||||||
|
, m_connectionsAreProcessed( false )
|
||||||
, m_mainGrid( nullptr )
|
, m_mainGrid( nullptr )
|
||||||
, m_activeCellInfo( nullptr )
|
, m_activeCellInfo( nullptr )
|
||||||
, m_computeNncForInactiveCells( false )
|
, m_computeNncForInactiveCells( false )
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
RigWellLogCurveData::RigWellLogCurveData()
|
RigWellLogCurveData::RigWellLogCurveData()
|
||||||
{
|
{
|
||||||
m_isExtractionCurve = false;
|
m_isExtractionCurve = false;
|
||||||
|
m_rkbDiff = 0.0;
|
||||||
m_depthUnit = RiaDefines::DepthUnitType::UNIT_METER;
|
m_depthUnit = RiaDefines::DepthUnitType::UNIT_METER;
|
||||||
m_xUnitString = RiaWellLogUnitTools<double>::noUnitString();
|
m_xUnitString = RiaWellLogUnitTools<double>::noUnitString();
|
||||||
}
|
}
|
||||||
|
@ -57,6 +57,8 @@ RigWellPath::RigWellPath( const std::vector<cvf::Vec3d>& wellPathPoints, const s
|
|||||||
: cvf::Object()
|
: cvf::Object()
|
||||||
, m_wellPathPoints( wellPathPoints )
|
, m_wellPathPoints( wellPathPoints )
|
||||||
, m_measuredDepths( measuredDepths )
|
, m_measuredDepths( measuredDepths )
|
||||||
|
, m_hasDatumElevation( false )
|
||||||
|
, m_datumElevation( 0.0 )
|
||||||
, m_startIndex( 0u )
|
, m_startIndex( 0u )
|
||||||
, objectBeingDeleted( this )
|
, objectBeingDeleted( this )
|
||||||
{
|
{
|
||||||
|
@ -47,6 +47,7 @@ protected:
|
|||||||
tickStartX = 0;
|
tickStartX = 0;
|
||||||
tickMidX = 0;
|
tickMidX = 0;
|
||||||
|
|
||||||
|
tickTextLeadSpace = 5;
|
||||||
overallLegendSize = size;
|
overallLegendSize = size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user