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,12 +89,11 @@ public:
|
||||
void finish();
|
||||
|
||||
protected:
|
||||
const rips::NNCValuesInputRequest* m_request;
|
||||
RimEclipseCase* m_eclipseCase;
|
||||
size_t m_cellCount;
|
||||
size_t m_streamedValueCount;
|
||||
size_t m_timeStep;
|
||||
QString m_propertyName;
|
||||
RimEclipseCase* m_eclipseCase;
|
||||
size_t m_cellCount;
|
||||
size_t m_streamedValueCount;
|
||||
size_t m_timeStep;
|
||||
QString m_propertyName;
|
||||
};
|
||||
|
||||
//==================================================================================================
|
||||
|
@ -100,6 +100,10 @@ RimSimWellInView::RimSimWellInView()
|
||||
m_resultWellIndex = cvf::UNDEFINED_SIZE_T;
|
||||
|
||||
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 setTimeStepList( std::vector<time_t> timeSteps );
|
||||
|
||||
double minValue;
|
||||
double maxValue;
|
||||
|
||||
RimObjectiveFunction( const RimSummaryCaseCollection* summaryCaseCollection, FunctionType type );
|
||||
|
||||
double value( size_t caseIndex,
|
||||
|
@ -35,7 +35,8 @@
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RigNNCData::RigNNCData()
|
||||
: m_connectionsAreProcessed( false )
|
||||
: m_nativeConnectionCount( 0 )
|
||||
, m_connectionsAreProcessed( false )
|
||||
, m_mainGrid( nullptr )
|
||||
, m_activeCellInfo( nullptr )
|
||||
, m_computeNncForInactiveCells( false )
|
||||
|
@ -34,6 +34,7 @@
|
||||
RigWellLogCurveData::RigWellLogCurveData()
|
||||
{
|
||||
m_isExtractionCurve = false;
|
||||
m_rkbDiff = 0.0;
|
||||
m_depthUnit = RiaDefines::DepthUnitType::UNIT_METER;
|
||||
m_xUnitString = RiaWellLogUnitTools<double>::noUnitString();
|
||||
}
|
||||
|
@ -57,6 +57,8 @@ RigWellPath::RigWellPath( const std::vector<cvf::Vec3d>& wellPathPoints, const s
|
||||
: cvf::Object()
|
||||
, m_wellPathPoints( wellPathPoints )
|
||||
, m_measuredDepths( measuredDepths )
|
||||
, m_hasDatumElevation( false )
|
||||
, m_datumElevation( 0.0 )
|
||||
, m_startIndex( 0u )
|
||||
, objectBeingDeleted( this )
|
||||
{
|
||||
|
@ -47,6 +47,7 @@ protected:
|
||||
tickStartX = 0;
|
||||
tickMidX = 0;
|
||||
|
||||
tickTextLeadSpace = 5;
|
||||
overallLegendSize = size;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user