#4683 clang-format on all files in ApplicationCode

This commit is contained in:
Magne Sjaastad
2019-09-06 10:40:57 +02:00
parent 3a317504bb
commit fe9e567825
2092 changed files with 117952 additions and 111846 deletions

View File

@@ -1,26 +1,26 @@
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2016- Statoil ASA
//
//
// ResInsight is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.
//
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
//
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#include "RigLasFileExporter.h"
#include "RiaDefines.h"
#include "RigWellLogCurveData.h"
#include "RimCase.h"
#include "RiaDefines.h"
#include "RimWellLogCurve.h"
#include "RimWellLogExtractionCurve.h"
@@ -35,39 +35,40 @@
#include <cmath> // Needed for HUGE_VAL on Linux
namespace NRLib
{
class LasWell;
class LasWell;
};
class SingleChannelData
{
public:
SingleChannelData(const std::string& channelName, const std::string& unit, const std::string& comment, const RigWellLogCurveData* curveData)
: m_channelName(channelName),
m_unit(unit),
m_comment(comment),
m_curveData(curveData)
SingleChannelData( const std::string& channelName,
const std::string& unit,
const std::string& comment,
const RigWellLogCurveData* curveData )
: m_channelName( channelName )
, m_unit( unit )
, m_comment( comment )
, m_curveData( curveData )
{
}
void appendDataToLasFile(NRLib::LasWell* lasFile, double absentValue) const
void appendDataToLasFile( NRLib::LasWell* lasFile, double absentValue ) const
{
CVF_ASSERT(lasFile);
CVF_ASSERT( lasFile );
std::vector<double> wellLogValues = m_curveData->xValues();
for (size_t vIdx = 0; vIdx < wellLogValues.size(); vIdx++)
for ( size_t vIdx = 0; vIdx < wellLogValues.size(); vIdx++ )
{
double value = wellLogValues[vIdx];
if (value == HUGE_VAL || value == -HUGE_VAL || value != value)
if ( value == HUGE_VAL || value == -HUGE_VAL || value != value )
{
wellLogValues[vIdx] = absentValue;
}
}
lasFile->AddLog(m_channelName, m_unit, m_comment, wellLogValues);
lasFile->AddLog( m_channelName, m_unit, m_comment, wellLogValues );
}
std::string channelName() const
@@ -92,13 +93,13 @@ class SingleLasFileMetaData
{
public:
SingleLasFileMetaData()
: m_rkbDiff(HUGE_VAL)
, m_exportTvdrkb(false)
, m_minimumCurveValue(HUGE_VAL)
: m_rkbDiff( HUGE_VAL )
, m_exportTvdrkb( false )
, m_minimumCurveValue( HUGE_VAL )
{
}
void setWellName(const QString& wellName)
void setWellName( const QString& wellName )
{
m_wellName = wellName;
}
@@ -108,17 +109,17 @@ public:
return m_wellName;
}
void setCaseName(const QString& caseName)
void setCaseName( const QString& caseName )
{
m_caseName = caseName;
}
void setDate(const QString& date)
void setDate( const QString& date )
{
m_date = date;
}
void setRkbDiff(double rkbDiff)
void setRkbDiff( double rkbDiff )
{
m_rkbDiff = rkbDiff;
}
@@ -133,13 +134,16 @@ public:
return m_rkbDiff;
}
void addLogData(const std::string& channelName, const std::string& unit, const std::string& comment, const RigWellLogCurveData* curveData)
void addLogData( const std::string& channelName,
const std::string& unit,
const std::string& comment,
const RigWellLogCurveData* curveData )
{
m_logCurveData.push_back(SingleChannelData(channelName, unit, comment, curveData));
m_logCurveData.push_back( SingleChannelData( channelName, unit, comment, curveData ) );
for (double xValue : curveData->xValues())
for ( double xValue : curveData->xValues() )
{
if (xValue < m_minimumCurveValue)
if ( xValue < m_minimumCurveValue )
{
m_minimumCurveValue = xValue;
}
@@ -149,140 +153,138 @@ public:
std::string generateFilename() const
{
QString fileBasenameCandidate;
QString separator("-");
QString separator( "-" );
if (!m_wellName.isEmpty())
if ( !m_wellName.isEmpty() )
{
fileBasenameCandidate += m_wellName;
}
if (!m_caseName.isEmpty())
if ( !m_caseName.isEmpty() )
{
if (!fileBasenameCandidate.isEmpty()) fileBasenameCandidate += separator;
if ( !fileBasenameCandidate.isEmpty() ) fileBasenameCandidate += separator;
fileBasenameCandidate += m_caseName;
}
// Add property name if only one curve is exported
if (m_logCurveData.size() == 1)
if ( m_logCurveData.size() == 1 )
{
if (!fileBasenameCandidate.isEmpty()) fileBasenameCandidate += separator;
fileBasenameCandidate += QString::fromStdString(m_logCurveData[0].channelName());
if ( !fileBasenameCandidate.isEmpty() ) fileBasenameCandidate += separator;
fileBasenameCandidate += QString::fromStdString( m_logCurveData[0].channelName() );
}
if (!m_date.isEmpty())
if ( !m_date.isEmpty() )
{
if (!fileBasenameCandidate.isEmpty()) fileBasenameCandidate += separator;
if ( !fileBasenameCandidate.isEmpty() ) fileBasenameCandidate += separator;
fileBasenameCandidate += m_date;
}
QString cleanFileName = caf::Utils::makeValidFileBasename( fileBasenameCandidate);
QString cleanFileName = caf::Utils::makeValidFileBasename( fileBasenameCandidate );
cleanFileName += ".las";
return cleanFileName.toStdString();
}
void appendDataToLasFile(NRLib::LasWell* lasFile) const
void appendDataToLasFile( NRLib::LasWell* lasFile ) const
{
if (m_logCurveData.size() == 0) return;
if ( m_logCurveData.size() == 0 ) return;
lasFile->addWellInfo("WELL", m_wellName.toStdString());
lasFile->addWellInfo( "WELL", m_wellName.toStdString() );
QString wellLogDate = m_date;
wellLogDate.replace(".", "_");
wellLogDate.replace(" ", "_");
wellLogDate.replace( ".", "_" );
wellLogDate.replace( " ", "_" );
lasFile->addWellInfo("DATE", wellLogDate.toStdString());
lasFile->addWellInfo( "DATE", wellLogDate.toStdString() );
const RigWellLogCurveData* firstCurveData = curveDataForFirstCurve();
if (firstCurveData->depthUnit() == RiaDefines::UNIT_METER)
if ( firstCurveData->depthUnit() == RiaDefines::UNIT_METER )
{
lasFile->AddLog("DEPTH", "M", "Depth in meters", firstCurveData->measuredDepths());
lasFile->AddLog( "DEPTH", "M", "Depth in meters", firstCurveData->measuredDepths() );
}
else if (firstCurveData->depthUnit() == RiaDefines::UNIT_FEET)
else if ( firstCurveData->depthUnit() == RiaDefines::UNIT_FEET )
{
lasFile->AddLog("DEPTH", "FT", "Depth in feet", firstCurveData->measuredDepths());
lasFile->AddLog( "DEPTH", "FT", "Depth in feet", firstCurveData->measuredDepths() );
}
else if ( firstCurveData->depthUnit() == RiaDefines::UNIT_NONE )
{
CVF_ASSERT(false);
lasFile->AddLog("DEPTH", "", "Depth in Connection number", firstCurveData->measuredDepths());
CVF_ASSERT( false );
lasFile->AddLog( "DEPTH", "", "Depth in Connection number", firstCurveData->measuredDepths() );
}
if (firstCurveData->tvDepths().size())
if ( firstCurveData->tvDepths().size() )
{
lasFile->AddLog("TVDMSL", "M", "True vertical depth in meters", firstCurveData->tvDepths());
lasFile->AddLog( "TVDMSL", "M", "True vertical depth in meters", firstCurveData->tvDepths() );
if (m_exportTvdrkb && m_rkbDiff != -1.0)
if ( m_exportTvdrkb && m_rkbDiff != -1.0 )
{
// Export True Vertical Depth Rotary Kelly Bushing - TVDRKB
std::vector<double> tvdrkbValues = firstCurveData->tvDepths();
for (auto& value : tvdrkbValues)
for ( auto& value : tvdrkbValues )
{
value += m_rkbDiff;
}
if (firstCurveData->depthUnit() == RiaDefines::UNIT_METER)
if ( firstCurveData->depthUnit() == RiaDefines::UNIT_METER )
{
lasFile->AddLog("TVDRKB", "M", "True vertical depth (Rotary Kelly Bushing)", tvdrkbValues);
lasFile->AddLog( "TVDRKB", "M", "True vertical depth (Rotary Kelly Bushing)", tvdrkbValues );
}
else if (firstCurveData->depthUnit() == RiaDefines::UNIT_FEET)
else if ( firstCurveData->depthUnit() == RiaDefines::UNIT_FEET )
{
lasFile->AddLog("TVDRKB", "FT", "True vertical depth (Rotary Kelly Bushing)", tvdrkbValues);
lasFile->AddLog( "TVDRKB", "FT", "True vertical depth (Rotary Kelly Bushing)", tvdrkbValues );
}
else if ( firstCurveData->depthUnit() == RiaDefines::UNIT_NONE )
{
CVF_ASSERT(false);
lasFile->AddLog("TVDRKB", "", "", tvdrkbValues);
CVF_ASSERT( false );
lasFile->AddLog( "TVDRKB", "", "", tvdrkbValues );
}
}
}
double minDepth = 0.0;
double maxDepth = 0.0;
firstCurveData->calculateMDRange(&minDepth, &maxDepth);
firstCurveData->calculateMDRange( &minDepth, &maxDepth );
lasFile->setStartDepth(minDepth);
lasFile->setStopDepth(maxDepth);
lasFile->setStartDepth( minDepth );
lasFile->setStopDepth( maxDepth );
if (firstCurveData->depthUnit() == RiaDefines::UNIT_METER)
if ( firstCurveData->depthUnit() == RiaDefines::UNIT_METER )
{
lasFile->setDepthUnit("M");
lasFile->setDepthUnit( "M" );
}
else if (firstCurveData->depthUnit() == RiaDefines::UNIT_FEET)
else if ( firstCurveData->depthUnit() == RiaDefines::UNIT_FEET )
{
lasFile->setDepthUnit("FT");
lasFile->setDepthUnit( "FT" );
}
else if ( firstCurveData->depthUnit() == RiaDefines::UNIT_NONE )
{
CVF_ASSERT(false);
CVF_ASSERT( false );
}
double absentValue = SingleLasFileMetaData::createAbsentValue(m_minimumCurveValue);
lasFile->SetMissing(absentValue);
double absentValue = SingleLasFileMetaData::createAbsentValue( m_minimumCurveValue );
lasFile->SetMissing( absentValue );
for (auto curveData : m_logCurveData)
for ( auto curveData : m_logCurveData )
{
curveData.appendDataToLasFile(lasFile, absentValue);
curveData.appendDataToLasFile( lasFile, absentValue );
}
}
private:
const RigWellLogCurveData* curveDataForFirstCurve() const
{
CVF_ASSERT(m_logCurveData.size() > 0);
CVF_ASSERT( m_logCurveData.size() > 0 );
return m_logCurveData[0].curveData();
}
static double createAbsentValue(double lowestDataValue)
static double createAbsentValue( double lowestDataValue )
{
double absentValue = -999.0;
while (absentValue > lowestDataValue)
while ( absentValue > lowestDataValue )
{
absentValue *= 10;
absentValue -= 9;
@@ -295,146 +297,148 @@ private:
QString m_wellName;
QString m_caseName;
QString m_date;
double m_rkbDiff;
bool m_exportTvdrkb;
RiaDefines::DepthUnitType m_depthUnit;
std::vector<double> m_depthValues;
std::vector<double> m_depthValues;
std::vector<SingleChannelData> m_logCurveData;
double m_minimumCurveValue;
double m_minimumCurveValue;
};
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
RigLasFileExporter::RigLasFileExporter(const std::vector<RimWellLogCurve*>& curves)
: m_curves(curves),
m_isResampleActive(false),
m_resamplingInterval(1.0)
RigLasFileExporter::RigLasFileExporter( const std::vector<RimWellLogCurve*>& curves )
: m_curves( curves )
, m_isResampleActive( false )
, m_resamplingInterval( 1.0 )
{
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
void RigLasFileExporter::setResamplingInterval(double interval)
void RigLasFileExporter::setResamplingInterval( double interval )
{
m_isResampleActive = true;
m_isResampleActive = true;
m_resamplingInterval = interval;
m_resampledCurveDatas.clear();
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
void RigLasFileExporter::wellPathsAndRkbDiff(std::vector<QString>* wellNames, std::vector<double>* rkbDiffs)
void RigLasFileExporter::wellPathsAndRkbDiff( std::vector<QString>* wellNames, std::vector<double>* rkbDiffs )
{
std::vector<SingleLasFileMetaData> lasFileDescriptions = createLasFileDescriptions(m_curves);
std::vector<SingleLasFileMetaData> lasFileDescriptions = createLasFileDescriptions( m_curves );
std::set<QString> uniqueWellNames;
for (auto metaData : lasFileDescriptions)
for ( auto metaData : lasFileDescriptions )
{
QString wellName = metaData.wellName();
if (uniqueWellNames.find(wellName) == uniqueWellNames.end())
if ( uniqueWellNames.find( wellName ) == uniqueWellNames.end() )
{
uniqueWellNames.insert(wellName);
wellNames->push_back(wellName);
rkbDiffs->push_back(metaData.rkbDiff());
uniqueWellNames.insert( wellName );
wellNames->push_back( wellName );
rkbDiffs->push_back( metaData.rkbDiff() );
}
}
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
void RigLasFileExporter::setRkbDiffs(const std::vector<QString>& wellNames, const std::vector<double>& rkbDiffs)
void RigLasFileExporter::setRkbDiffs( const std::vector<QString>& wellNames, const std::vector<double>& rkbDiffs )
{
assert(wellNames.size() == rkbDiffs.size());
assert( wellNames.size() == rkbDiffs.size() );
std::vector<SingleLasFileMetaData> lasFileDescriptions = createLasFileDescriptions(m_curves);
std::vector<SingleLasFileMetaData> lasFileDescriptions = createLasFileDescriptions( m_curves );
for (size_t i = 0; i < wellNames.size(); i++)
for ( size_t i = 0; i < wellNames.size(); i++ )
{
for (auto& metaData : lasFileDescriptions)
for ( auto& metaData : lasFileDescriptions )
{
if (metaData.wellName() == wellNames[i])
if ( metaData.wellName() == wellNames[i] )
{
m_userDefinedRkbOffsets.push_back(rkbDiffs[i]);
m_userDefinedRkbOffsets.push_back( rkbDiffs[i] );
}
}
}
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
bool RigLasFileExporter::writeToFolder(const QString& exportFolder)
bool RigLasFileExporter::writeToFolder( const QString& exportFolder )
{
std::vector<SingleLasFileMetaData> lasFileDescriptions = createLasFileDescriptions(m_curves);
std::vector<SingleLasFileMetaData> lasFileDescriptions = createLasFileDescriptions( m_curves );
applyUserDefinedRkbOffsets(&lasFileDescriptions);
applyUserDefinedRkbOffsets( &lasFileDescriptions );
for (auto lasFileDescr : lasFileDescriptions)
for ( auto lasFileDescr : lasFileDescriptions )
{
NRLib::LasWell lasFile;
lasFile.setVersionInfo("2.0");
lasFile.setVersionInfo( "2.0" );
lasFileDescr.appendDataToLasFile(&lasFile);
if (m_isResampleActive)
lasFileDescr.appendDataToLasFile( &lasFile );
if ( m_isResampleActive )
{
lasFile.setDepthStep(m_resamplingInterval);
lasFile.setDepthStep( m_resamplingInterval );
}
QDir dir(exportFolder);
QString fileName = dir.absoluteFilePath(QString::fromStdString(lasFileDescr.generateFilename()));
if (caf::Utils::fileExists(fileName))
QDir dir( exportFolder );
QString fileName = dir.absoluteFilePath( QString::fromStdString( lasFileDescr.generateFilename() ) );
if ( caf::Utils::fileExists( fileName ) )
{
QString txt = QString("File %1 exists.\n\nDo you want to overwrite the file?").arg(fileName);
int ret = QMessageBox::question(nullptr, "LAS File Export",
txt,
QMessageBox::Yes | QMessageBox::No,
QMessageBox::Yes);
QString txt = QString( "File %1 exists.\n\nDo you want to overwrite the file?" ).arg( fileName );
int ret = QMessageBox::question( nullptr,
"LAS File Export",
txt,
QMessageBox::Yes | QMessageBox::No,
QMessageBox::Yes );
if (ret != QMessageBox::Yes) continue;
if ( ret != QMessageBox::Yes ) continue;
}
std::vector<std::string> commentHeader;
lasFile.WriteToFile(fileName.toStdString(), commentHeader);
lasFile.WriteToFile( fileName.toStdString(), commentHeader );
}
return true;
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
std::vector<SingleLasFileMetaData> RigLasFileExporter::createLasFileDescriptions(const std::vector<RimWellLogCurve*>& curves)
std::vector<SingleLasFileMetaData>
RigLasFileExporter::createLasFileDescriptions( const std::vector<RimWellLogCurve*>& curves )
{
std::vector<RimWellLogCurve*> eclipseCurves;
std::vector<RimWellLogCurve*> geoMechCurves;
std::vector<RimWellLogCurve*> externalLasCurves;
for (auto curve : curves)
for ( auto curve : curves )
{
RimWellLogExtractionCurve* extractionCurve = dynamic_cast<RimWellLogExtractionCurve*>(curve);
if (extractionCurve)
RimWellLogExtractionCurve* extractionCurve = dynamic_cast<RimWellLogExtractionCurve*>( curve );
if ( extractionCurve )
{
if (extractionCurve->isEclipseCurve())
if ( extractionCurve->isEclipseCurve() )
{
eclipseCurves.push_back(extractionCurve);
eclipseCurves.push_back( extractionCurve );
}
else
{
geoMechCurves.push_back(extractionCurve);
geoMechCurves.push_back( extractionCurve );
}
}
else
{
externalLasCurves.push_back(curve);
externalLasCurves.push_back( curve );
}
}
@@ -442,33 +446,33 @@ std::vector<SingleLasFileMetaData> RigLasFileExporter::createLasFileDescriptions
std::vector<SingleLasFileMetaData> lasFileDescriptions;
appendLasFileDescriptions(externalLasCurves, &lasFileDescriptions);
appendLasFileDescriptions(eclipseCurves, &lasFileDescriptions);
appendLasFileDescriptions(geoMechCurves, &lasFileDescriptions);
appendLasFileDescriptions( externalLasCurves, &lasFileDescriptions );
appendLasFileDescriptions( eclipseCurves, &lasFileDescriptions );
appendLasFileDescriptions( geoMechCurves, &lasFileDescriptions );
return lasFileDescriptions;
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
void RigLasFileExporter::appendLasFileDescriptions(const std::vector<RimWellLogCurve*>& curves, std::vector<SingleLasFileMetaData>* lasFileDescriptions)
void RigLasFileExporter::appendLasFileDescriptions( const std::vector<RimWellLogCurve*>& curves,
std::vector<SingleLasFileMetaData>* lasFileDescriptions )
{
CVF_ASSERT(lasFileDescriptions);
CVF_ASSERT( lasFileDescriptions );
struct CurveCollectionDefinition
{
CurveCollectionDefinition(const QString& wellName, const QString& caseName, const QString& date)
: m_wellName(wellName),
m_caseName(caseName),
m_date(date)
{}
bool isEqual(RimWellLogCurve* curve, const QString& caseName)
CurveCollectionDefinition( const QString& wellName, const QString& caseName, const QString& date )
: m_wellName( wellName )
, m_caseName( caseName )
, m_date( date )
{
if (m_wellName == curve->wellName() &&
m_caseName == caseName &&
m_date == curve->wellDate())
}
bool isEqual( RimWellLogCurve* curve, const QString& caseName )
{
if ( m_wellName == curve->wellName() && m_caseName == caseName && m_date == curve->wellDate() )
{
return true;
}
@@ -482,45 +486,45 @@ void RigLasFileExporter::appendLasFileDescriptions(const std::vector<RimWellLogC
};
std::vector<CurveCollectionDefinition> curveDefinitions;
for (auto curve : curves)
for ( auto curve : curves )
{
QString caseName = caseNameFromCurve(curve);
QString caseName = caseNameFromCurve( curve );
bool found = false;
for (auto curveDef : curveDefinitions)
for ( auto curveDef : curveDefinitions )
{
if (curveDef.isEqual(curve, caseName))
if ( curveDef.isEqual( curve, caseName ) )
{
found = true;
}
}
if (!found)
if ( !found )
{
CurveCollectionDefinition curveDefCandidate(curve->wellName(), caseName, curve->wellDate());
curveDefinitions.push_back(curveDefCandidate);
CurveCollectionDefinition curveDefCandidate( curve->wellName(), caseName, curve->wellDate() );
curveDefinitions.push_back( curveDefCandidate );
}
}
for (auto curveDef : curveDefinitions)
for ( auto curveDef : curveDefinitions )
{
SingleLasFileMetaData singleLasFileMeta;
singleLasFileMeta.setWellName(curveDef.m_wellName);
singleLasFileMeta.setCaseName(curveDef.m_caseName);
singleLasFileMeta.setDate(curveDef.m_date);
singleLasFileMeta.setWellName( curveDef.m_wellName );
singleLasFileMeta.setCaseName( curveDef.m_caseName );
singleLasFileMeta.setDate( curveDef.m_date );
for (auto curve : curves)
for ( auto curve : curves )
{
if (curveDef.isEqual(curve, caseNameFromCurve(curve)))
if ( curveDef.isEqual( curve, caseNameFromCurve( curve ) ) )
{
singleLasFileMeta.setRkbDiff(rkbDiff(curve));
singleLasFileMeta.setRkbDiff( rkbDiff( curve ) );
const RigWellLogCurveData* curveData = nullptr;
if (m_isResampleActive)
if ( m_isResampleActive )
{
cvf::ref<RigWellLogCurveData> resampledData = curve->curveData()->calculateResampledCurveData(m_resamplingInterval);
m_resampledCurveDatas.push_back(resampledData.p());
cvf::ref<RigWellLogCurveData> resampledData = curve->curveData()->calculateResampledCurveData(
m_resamplingInterval );
m_resampledCurveDatas.push_back( resampledData.p() );
curveData = resampledData.p();
}
@@ -528,23 +532,23 @@ void RigLasFileExporter::appendLasFileDescriptions(const std::vector<RimWellLogC
{
curveData = curve->curveData();
}
singleLasFileMeta.addLogData(curve->wellLogChannelName().toStdString(), "NO_UNIT", "", curveData);
singleLasFileMeta.addLogData( curve->wellLogChannelName().toStdString(), "NO_UNIT", "", curveData );
}
}
lasFileDescriptions->push_back(singleLasFileMeta);
lasFileDescriptions->push_back( singleLasFileMeta );
}
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
QString RigLasFileExporter::caseNameFromCurve(RimWellLogCurve* curve)
QString RigLasFileExporter::caseNameFromCurve( RimWellLogCurve* curve )
{
QString caseName;
RimWellLogExtractionCurve* extractionCurve = dynamic_cast<RimWellLogExtractionCurve*>(curve);
if (extractionCurve)
RimWellLogExtractionCurve* extractionCurve = dynamic_cast<RimWellLogExtractionCurve*>( curve );
if ( extractionCurve )
{
caseName = extractionCurve->caseName();
}
@@ -557,12 +561,12 @@ QString RigLasFileExporter::caseNameFromCurve(RimWellLogCurve* curve)
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
double RigLasFileExporter::rkbDiff(RimWellLogCurve* curve)
double RigLasFileExporter::rkbDiff( RimWellLogCurve* curve )
{
RimWellLogExtractionCurve* extractionCurve = dynamic_cast<RimWellLogExtractionCurve*>(curve);
if (extractionCurve)
RimWellLogExtractionCurve* extractionCurve = dynamic_cast<RimWellLogExtractionCurve*>( curve );
if ( extractionCurve )
{
return extractionCurve->rkbDiff();
}
@@ -571,20 +575,19 @@ double RigLasFileExporter::rkbDiff(RimWellLogCurve* curve)
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
void RigLasFileExporter::applyUserDefinedRkbOffsets(std::vector<SingleLasFileMetaData>* lasFileDescriptions)
void RigLasFileExporter::applyUserDefinedRkbOffsets( std::vector<SingleLasFileMetaData>* lasFileDescriptions )
{
if (m_userDefinedRkbOffsets.size() == lasFileDescriptions->size())
if ( m_userDefinedRkbOffsets.size() == lasFileDescriptions->size() )
{
for (size_t i = 0; i < m_userDefinedRkbOffsets.size(); i++)
for ( size_t i = 0; i < m_userDefinedRkbOffsets.size(); i++ )
{
if (m_userDefinedRkbOffsets[i] != HUGE_VAL)
if ( m_userDefinedRkbOffsets[i] != HUGE_VAL )
{
lasFileDescriptions->at(i).setRkbDiff(m_userDefinedRkbOffsets[i]);
lasFileDescriptions->at(i).enableTvdrkbExport();
lasFileDescriptions->at( i ).setRkbDiff( m_userDefinedRkbOffsets[i] );
lasFileDescriptions->at( i ).enableTvdrkbExport();
}
}
}
}