mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
clang-format : Set PenaltyBreakAssignment to 130
This commit is contained in:
@@ -76,8 +76,8 @@ void RicExportFishbonesLateralsFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
for ( size_t lateralIndex : sub.lateralIndices )
|
||||
{
|
||||
std::vector<std::pair<cvf::Vec3d, double>> coordsAndMD = fishbone->coordsAndMDForLateral( sub.subIndex,
|
||||
lateralIndex );
|
||||
std::vector<std::pair<cvf::Vec3d, double>> coordsAndMD =
|
||||
fishbone->coordsAndMDForLateral( sub.subIndex, lateralIndex );
|
||||
|
||||
std::vector<cvf::Vec3d> lateralCoords;
|
||||
std::vector<double> lateralMDs;
|
||||
|
||||
@@ -115,8 +115,8 @@ RimFishbonesCollection* RicNewFishbonesSubsFeature::selectedFishbonesCollection(
|
||||
{
|
||||
return wellPaths[0]->fishbonesCollection();
|
||||
}
|
||||
RimWellPathCompletions* completions = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimWellPathCompletions>();
|
||||
RimWellPathCompletions* completions =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimWellPathCompletions>();
|
||||
if ( completions )
|
||||
{
|
||||
return completions->fishbonesCollection();
|
||||
|
||||
@@ -99,8 +99,8 @@ RimPerforationCollection* RicNewPerforationIntervalFeature::selectedPerforationC
|
||||
RimWellPath* wellPath = dynamic_cast<RimWellPath*>( objHandle );
|
||||
if ( wellPath ) return wellPath->perforationIntervalCollection();
|
||||
|
||||
RimWellPathCompletions* completions = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimWellPathCompletions>();
|
||||
RimWellPathCompletions* completions =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimWellPathCompletions>();
|
||||
if ( completions ) return completions->perforationCollection();
|
||||
}
|
||||
return nullptr;
|
||||
|
||||
@@ -257,7 +257,8 @@ QList<caf::PdmOptionItemInfo>
|
||||
wellList = candidateWellList;
|
||||
}
|
||||
|
||||
QString wellStringWithPressure = QString( "%1 (%2)" ).arg( it->second[w].first ).arg( it->second[w].second );
|
||||
QString wellStringWithPressure =
|
||||
QString( "%1 (%2)" ).arg( it->second[w].first ).arg( it->second[w].second );
|
||||
QStringList candidateWellPressureList = wellPressureList;
|
||||
candidateWellPressureList << wellStringWithPressure;
|
||||
if ( startStringFormat.arg( candidateWellPressureList.join( ", " ) ).length() < maxStringLength )
|
||||
|
||||
@@ -63,12 +63,12 @@ void RicExportCompletionsWellSegmentsFeature::onActionTriggered( bool isChecked
|
||||
RimWellPath* wellPath = caf::SelectionManager::instance()->selectedItemAncestorOfType<RimWellPath>();
|
||||
CVF_ASSERT( wellPath );
|
||||
|
||||
RimFishbonesCollection* fishbonesCollection = caf::SelectionManager::instance()
|
||||
->selectedItemAncestorOfType<RimFishbonesCollection>();
|
||||
RimWellPathFractureCollection* fractureCollection = caf::SelectionManager::instance()
|
||||
->selectedItemAncestorOfType<RimWellPathFractureCollection>();
|
||||
RimPerforationCollection* perforationCollection = caf::SelectionManager::instance()
|
||||
->selectedItemAncestorOfType<RimPerforationCollection>();
|
||||
RimFishbonesCollection* fishbonesCollection =
|
||||
caf::SelectionManager::instance()->selectedItemAncestorOfType<RimFishbonesCollection>();
|
||||
RimWellPathFractureCollection* fractureCollection =
|
||||
caf::SelectionManager::instance()->selectedItemAncestorOfType<RimWellPathFractureCollection>();
|
||||
RimPerforationCollection* perforationCollection =
|
||||
caf::SelectionManager::instance()->selectedItemAncestorOfType<RimPerforationCollection>();
|
||||
|
||||
CVF_ASSERT( fishbonesCollection || fractureCollection || perforationCollection );
|
||||
|
||||
|
||||
@@ -368,11 +368,8 @@ std::vector<RigCompletionData> RicExportFractureCompletionsImpl::generateCompdat
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<RigCompletionData> allCompletionsForOneFracture = generateCompdatValuesForFracture( matrixToWellTrans,
|
||||
wellNameForExport,
|
||||
caseToApply,
|
||||
fracture,
|
||||
fracTemplate );
|
||||
std::vector<RigCompletionData> allCompletionsForOneFracture =
|
||||
generateCompdatValuesForFracture( matrixToWellTrans, wellNameForExport, caseToApply, fracture, fracTemplate );
|
||||
|
||||
if ( fractureDataReportItems )
|
||||
{
|
||||
|
||||
@@ -215,10 +215,10 @@ void RicFishbonesTransmissibilityCalculationFeatureImp::findFishboneLateralsWell
|
||||
{
|
||||
for ( std::shared_ptr<RicMswSubSegmentCellIntersection> intersection : segment->intersections() )
|
||||
{
|
||||
double diameter = location->holeDiameter();
|
||||
QString completionMetaData = ( location->label() + QString( ": Sub: %1 Lateral: %2" )
|
||||
.arg( location->subIndex() )
|
||||
.arg( completion->index() ) );
|
||||
double diameter = location->holeDiameter();
|
||||
QString completionMetaData =
|
||||
( location->label() +
|
||||
QString( ": Sub: %1 Lateral: %2" ).arg( location->subIndex() ).arg( completion->index() ) );
|
||||
|
||||
WellBorePartForTransCalc wellBorePart = WellBorePartForTransCalc( intersection->lengthsInCell(),
|
||||
diameter / 2.0,
|
||||
|
||||
@@ -212,8 +212,8 @@ std::vector<RimWellPath*> RicWellPathExportCompletionDataFeature::selectedWellPa
|
||||
|
||||
if ( wellPaths.empty() )
|
||||
{
|
||||
RimWellPathCompletions* completions = caf::SelectionManager::instance()
|
||||
->selectedItemAncestorOfType<RimWellPathCompletions>();
|
||||
RimWellPathCompletions* completions =
|
||||
caf::SelectionManager::instance()->selectedItemAncestorOfType<RimWellPathCompletions>();
|
||||
if ( completions )
|
||||
{
|
||||
RimWellPath* wellPath = nullptr;
|
||||
|
||||
@@ -476,10 +476,10 @@ std::vector<RigCompletionData>
|
||||
exportSettings.includePerforations = true;
|
||||
exportSettings.includeFractures = true;
|
||||
|
||||
completionsPerEclipseCell = generatePerforationsCompdatValues( wellPath,
|
||||
wellPath->perforationIntervalCollection()
|
||||
->perforations(),
|
||||
exportSettings );
|
||||
completionsPerEclipseCell =
|
||||
generatePerforationsCompdatValues( wellPath,
|
||||
wellPath->perforationIntervalCollection()->perforations(),
|
||||
exportSettings );
|
||||
}
|
||||
|
||||
return completionsPerEclipseCell;
|
||||
@@ -1201,8 +1201,8 @@ std::vector<RigCompletionData> RicWellPathExportCompletionDataFeatureImpl::gener
|
||||
cell.globCellIndex,
|
||||
cell.intersectionLengthsInCellCS );
|
||||
|
||||
const RimNonDarcyPerforationParameters* nonDarcyParameters = wellPath->perforationIntervalCollection()
|
||||
->nonDarcyParameters();
|
||||
const RimNonDarcyPerforationParameters* nonDarcyParameters =
|
||||
wellPath->perforationIntervalCollection()->nonDarcyParameters();
|
||||
|
||||
double transmissibility = 0.0;
|
||||
double kh = RigCompletionData::defaultValue();
|
||||
@@ -1438,7 +1438,8 @@ TransmissibilityData
|
||||
|
||||
const double totalKh = RigTransmissibilityEquations::totalKh( permx, permy, permz, internalCellLengths, latNtg, ntg );
|
||||
|
||||
const double effectiveK = RigTransmissibilityEquations::effectiveK( permx, permy, permz, internalCellLengths, latNtg, ntg );
|
||||
const double effectiveK =
|
||||
RigTransmissibilityEquations::effectiveK( permx, permy, permz, internalCellLengths, latNtg, ntg );
|
||||
const double effectiveH = RigTransmissibilityEquations::effectiveH( internalCellLengths, latNtg, ntg );
|
||||
|
||||
double darcy = RiaEclipseUnitTools::darcysConstant( wellPath->unitSystem() );
|
||||
|
||||
@@ -89,8 +89,8 @@ void RicWellPathExportMswCompletionsImpl::exportWellSegmentsForAllCompletions(
|
||||
std::shared_ptr<QFile> unifiedExportFile;
|
||||
if ( exportSettings.fileSplit() == RicExportCompletionDataSettingsUi::UNIFIED_FILE )
|
||||
{
|
||||
QString unifiedFileName = QString( "UnifiedCompletions_MSW_%1" )
|
||||
.arg( exportSettings.caseToApply->caseUserDescription() );
|
||||
QString unifiedFileName =
|
||||
QString( "UnifiedCompletions_MSW_%1" ).arg( exportSettings.caseToApply->caseUserDescription() );
|
||||
unifiedExportFile = RicWellPathExportCompletionsFileTools::openFileForExport( exportSettings.folder,
|
||||
unifiedFileName );
|
||||
}
|
||||
|
||||
@@ -88,9 +88,9 @@ void RicAdvancedSnapshotExportFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
QString fallbackFolderName = RiaApplication::instance()->createAbsolutePathFromProjectRelativePath(
|
||||
"snapshots" );
|
||||
QString folderName = RiaApplication::instance()
|
||||
->lastUsedDialogDirectoryWithFallback( "ADVANCED_SNAPSHOT_EXPORT",
|
||||
fallbackFolderName );
|
||||
QString folderName =
|
||||
RiaApplication::instance()->lastUsedDialogDirectoryWithFallback( "ADVANCED_SNAPSHOT_EXPORT",
|
||||
fallbackFolderName );
|
||||
dlg.setExportFolder( folderName );
|
||||
}
|
||||
|
||||
|
||||
@@ -79,10 +79,8 @@ bool RicEclipseCellResultToFileImpl::writeBinaryResultToTextFile( const QString&
|
||||
{
|
||||
CVF_TIGHT_ASSERT( eclipseCase );
|
||||
|
||||
cvf::ref<RigResultAccessor> resultAccessor = RigResultAccessorFactory::createFromResultDefinition( eclipseCase,
|
||||
0,
|
||||
timeStep,
|
||||
resultDefinition );
|
||||
cvf::ref<RigResultAccessor> resultAccessor =
|
||||
RigResultAccessorFactory::createFromResultDefinition( eclipseCase, 0, timeStep, resultDefinition );
|
||||
if ( resultAccessor.isNull() )
|
||||
{
|
||||
return false;
|
||||
|
||||
@@ -70,7 +70,8 @@ void RicExportEclipseSectorModelFeature::openDialogAndExecuteCommand( RimEclipse
|
||||
cvf::Vec3i min, max;
|
||||
std::tie( min, max ) = getVisibleCellRange( view, cellVisibility );
|
||||
|
||||
RicExportEclipseSectorModelUi* exportSettings = RiaApplication::instance()->project()->dialogData()->exportSectorModelUi();
|
||||
RicExportEclipseSectorModelUi* exportSettings =
|
||||
RiaApplication::instance()->project()->dialogData()->exportSectorModelUi();
|
||||
exportSettings->setCaseData( caseData, min, max );
|
||||
|
||||
exportSettings->applyBoundaryDefaults();
|
||||
|
||||
@@ -42,7 +42,8 @@ bool RicAddStoredFlowCharacteristicsPlotFeature::isCommandEnabled()
|
||||
{
|
||||
if ( RiaApplication::instance()->project() )
|
||||
{
|
||||
RimFlowPlotCollection* flowPlotColl = RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
RimFlowPlotCollection* flowPlotColl =
|
||||
RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
if ( flowPlotColl )
|
||||
{
|
||||
RimFlowCharacteristicsPlot* flowCharacteristicsPlot = dynamic_cast<RimFlowCharacteristicsPlot*>(
|
||||
@@ -65,7 +66,8 @@ void RicAddStoredFlowCharacteristicsPlotFeature::onActionTriggered( bool isCheck
|
||||
{
|
||||
if ( RiaApplication::instance()->project() )
|
||||
{
|
||||
RimFlowPlotCollection* flowPlotColl = RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
RimFlowPlotCollection* flowPlotColl =
|
||||
RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
if ( flowPlotColl )
|
||||
{
|
||||
RimFlowCharacteristicsPlot* sourceObject = dynamic_cast<RimFlowCharacteristicsPlot*>(
|
||||
|
||||
@@ -42,7 +42,8 @@ bool RicAddStoredWellAllocationPlotFeature::isCommandEnabled()
|
||||
{
|
||||
if ( RiaApplication::instance()->project() )
|
||||
{
|
||||
RimFlowPlotCollection* flowPlotColl = RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
RimFlowPlotCollection* flowPlotColl =
|
||||
RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
if ( flowPlotColl )
|
||||
{
|
||||
RimWellAllocationPlot* wellAllocationPlot = dynamic_cast<RimWellAllocationPlot*>(
|
||||
@@ -65,7 +66,8 @@ void RicAddStoredWellAllocationPlotFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
if ( RiaApplication::instance()->project() )
|
||||
{
|
||||
RimFlowPlotCollection* flowPlotColl = RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
RimFlowPlotCollection* flowPlotColl =
|
||||
RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
if ( flowPlotColl )
|
||||
{
|
||||
RimWellAllocationPlot* sourceObject = dynamic_cast<RimWellAllocationPlot*>(
|
||||
|
||||
@@ -89,10 +89,10 @@ void RicShowContributingWellsFeature::onActionTriggered( bool isChecked )
|
||||
RimEclipseResultCase* eclipseResultCase = nullptr;
|
||||
well->firstAncestorOrThisOfTypeAsserted( eclipseResultCase );
|
||||
|
||||
RimEclipseView* modifiedView = RicShowContributingWellsFeatureImpl::manipulateSelectedView( eclipseResultCase,
|
||||
well->name(),
|
||||
eclipseView
|
||||
->currentTimeStep() );
|
||||
RimEclipseView* modifiedView =
|
||||
RicShowContributingWellsFeatureImpl::manipulateSelectedView( eclipseResultCase,
|
||||
well->name(),
|
||||
eclipseView->currentTimeStep() );
|
||||
if ( modifiedView )
|
||||
{
|
||||
modifiedView->createDisplayModelAndRedraw();
|
||||
|
||||
@@ -105,7 +105,8 @@ void RicShowWellAllocationPlotFeature::onActionTriggered( bool isChecked )
|
||||
|
||||
if ( RiaApplication::instance()->project() )
|
||||
{
|
||||
RimFlowPlotCollection* flowPlotColl = RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
RimFlowPlotCollection* flowPlotColl =
|
||||
RiaApplication::instance()->project()->mainPlotCollection->flowPlotCollection();
|
||||
if ( flowPlotColl )
|
||||
{
|
||||
flowPlotColl->defaultWellAllocPlot()->setFromSimulationWell( simWell );
|
||||
|
||||
@@ -170,8 +170,8 @@ RimWellPathFractureCollection* RicNewWellPathFractureFeature::selectedWellPathFr
|
||||
{
|
||||
return wellPaths[0]->fractureCollection();
|
||||
}
|
||||
RimWellPathCompletions* completions = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimWellPathCompletions>();
|
||||
RimWellPathCompletions* completions =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimWellPathCompletions>();
|
||||
if ( completions )
|
||||
{
|
||||
return completions->fractureCollection();
|
||||
|
||||
@@ -50,9 +50,9 @@ bool RicCreateGridCrossPlotFeature::isCommandEnabled()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RicCreateGridCrossPlotFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
RimProject* project = RiaApplication::instance()->project();
|
||||
RimGridCrossPlotCollection* collection = caf::SelectionManager::instance()
|
||||
->selectedItemAncestorOfType<RimGridCrossPlotCollection>();
|
||||
RimProject* project = RiaApplication::instance()->project();
|
||||
RimGridCrossPlotCollection* collection =
|
||||
caf::SelectionManager::instance()->selectedItemAncestorOfType<RimGridCrossPlotCollection>();
|
||||
if ( !collection )
|
||||
{
|
||||
collection = project->mainPlotCollection()->gridCrossPlotCollection();
|
||||
|
||||
@@ -56,7 +56,8 @@ void RicHoloLensExportToFolderFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
RimGridView* activeView = RiaApplication::instance()->activeGridView();
|
||||
|
||||
RicHoloLensExportToFolderUi* featureUi = RiaApplication::instance()->project()->dialogData()->holoLensExportToFolderData();
|
||||
RicHoloLensExportToFolderUi* featureUi =
|
||||
RiaApplication::instance()->project()->dialogData()->holoLensExportToFolderData();
|
||||
featureUi->setViewForExport( activeView );
|
||||
|
||||
caf::PdmUiPropertyViewDialog propertyDialog( nullptr,
|
||||
|
||||
@@ -116,9 +116,8 @@ void VdeVizDataExtractor::extractViewContents( QString* modelMetaJson
|
||||
if ( !packetDirectory->lookupPacket( arrayIdsThisMesh.connArrId ) )
|
||||
{
|
||||
cvf::Trace::show( " generating connectivities, arrayId=%d", arrayIdsThisMesh.connArrId );
|
||||
std::unique_ptr<VdeArrayDataPacket> dataPacket = VdeArrayDataPacket::fromUint32Arr( arrayIdsThisMesh.connArrId,
|
||||
uintArr,
|
||||
arrElementCount );
|
||||
std::unique_ptr<VdeArrayDataPacket> dataPacket =
|
||||
VdeArrayDataPacket::fromUint32Arr( arrayIdsThisMesh.connArrId, uintArr, arrElementCount );
|
||||
|
||||
// Debug testing of decoding
|
||||
// debugComparePackets(*dataPacket, VdeArrayDataPacket::fromRawPacketBuffer(dataPacket->fullPacketRawPtr(),
|
||||
@@ -131,12 +130,12 @@ void VdeVizDataExtractor::extractViewContents( QString* modelMetaJson
|
||||
if ( mesh->texCoordArr.notNull() && mesh->texImage.notNull() )
|
||||
{
|
||||
{
|
||||
const float* floatArr = reinterpret_cast<const float*>( mesh->texCoordArr->ptr() );
|
||||
const size_t arrElementCount = 2 * mesh->texCoordArr->size();
|
||||
arrayIdsThisMesh.texCoordsArrId = m_cachingIdFactory
|
||||
->getOrCreateIdForFloatArr( VdeCachingHashedIdFactory::TexCoordsArr,
|
||||
floatArr,
|
||||
arrElementCount );
|
||||
const float* floatArr = reinterpret_cast<const float*>( mesh->texCoordArr->ptr() );
|
||||
const size_t arrElementCount = 2 * mesh->texCoordArr->size();
|
||||
arrayIdsThisMesh.texCoordsArrId =
|
||||
m_cachingIdFactory->getOrCreateIdForFloatArr( VdeCachingHashedIdFactory::TexCoordsArr,
|
||||
floatArr,
|
||||
arrElementCount );
|
||||
|
||||
if ( !packetDirectory->lookupPacket( arrayIdsThisMesh.texCoordsArrId ) )
|
||||
{
|
||||
@@ -153,10 +152,10 @@ void VdeVizDataExtractor::extractViewContents( QString* modelMetaJson
|
||||
}
|
||||
{
|
||||
cvf::ref<cvf::UByteArray> byteArr = mesh->texImage->toRgb();
|
||||
arrayIdsThisMesh.texImageArrId = m_cachingIdFactory
|
||||
->getOrCreateIdForUint8Arr( VdeCachingHashedIdFactory::TexImage,
|
||||
byteArr->ptr(),
|
||||
byteArr->size() );
|
||||
arrayIdsThisMesh.texImageArrId =
|
||||
m_cachingIdFactory->getOrCreateIdForUint8Arr( VdeCachingHashedIdFactory::TexImage,
|
||||
byteArr->ptr(),
|
||||
byteArr->size() );
|
||||
|
||||
if ( !packetDirectory->lookupPacket( arrayIdsThisMesh.texImageArrId ) )
|
||||
{
|
||||
|
||||
@@ -72,9 +72,9 @@ void RicCopyReferencesToClipboardFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
if ( RicCopyReferencesToClipboardFeature::isCopyOfObjectSupported( pdmObject ) )
|
||||
{
|
||||
QString itemRef = caf::PdmReferenceHelper::referenceFromRootToObject( caf::SelectionManager::instance()
|
||||
->pdmRootObject(),
|
||||
pdmObject );
|
||||
QString itemRef =
|
||||
caf::PdmReferenceHelper::referenceFromRootToObject( caf::SelectionManager::instance()->pdmRootObject(),
|
||||
pdmObject );
|
||||
|
||||
referenceList.push_back( itemRef );
|
||||
}
|
||||
|
||||
@@ -59,9 +59,9 @@ void RicCutReferencesToClipboardFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
if ( RicCutReferencesToClipboardFeature::isCuttingOfObjectSupported( pdmObject ) )
|
||||
{
|
||||
QString itemRef = caf::PdmReferenceHelper::referenceFromRootToObject( caf::SelectionManager::instance()
|
||||
->pdmRootObject(),
|
||||
pdmObject );
|
||||
QString itemRef =
|
||||
caf::PdmReferenceHelper::referenceFromRootToObject( caf::SelectionManager::instance()->pdmRootObject(),
|
||||
pdmObject );
|
||||
|
||||
referenceList.push_back( itemRef );
|
||||
}
|
||||
|
||||
@@ -89,7 +89,8 @@ void RicSummaryPlotTemplateTools::appendSummaryPlotToPlotCollection(
|
||||
|
||||
if ( selectedSummaryCases.empty() && selectedEnsembles.empty() ) return;
|
||||
|
||||
RimSummaryPlotCollection* plotColl = RiaApplication::instance()->project()->mainPlotCollection()->summaryPlotCollection();
|
||||
RimSummaryPlotCollection* plotColl =
|
||||
RiaApplication::instance()->project()->mainPlotCollection()->summaryPlotCollection();
|
||||
|
||||
plotColl->summaryPlots.push_back( summaryPlot );
|
||||
summaryPlot->resolveReferencesRecursively();
|
||||
|
||||
@@ -54,10 +54,10 @@ bool RicNewContourMapViewFeature::isCommandEnabled()
|
||||
{
|
||||
bool selectedView = caf::SelectionManager::instance()->selectedItemOfType<RimGridView>() != nullptr;
|
||||
bool selectedCase = caf::SelectionManager::instance()->selectedItemOfType<RimCase>() != nullptr;
|
||||
bool selectedEclipseContourMapCollection = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimEclipseContourMapViewCollection>();
|
||||
bool selectedGeoMechContourMapCollection = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimGeoMechContourMapViewCollection>();
|
||||
bool selectedEclipseContourMapCollection =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimEclipseContourMapViewCollection>();
|
||||
bool selectedGeoMechContourMapCollection =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimGeoMechContourMapViewCollection>();
|
||||
return selectedView || selectedCase || selectedEclipseContourMapCollection || selectedGeoMechContourMapCollection;
|
||||
}
|
||||
|
||||
@@ -67,14 +67,14 @@ bool RicNewContourMapViewFeature::isCommandEnabled()
|
||||
void RicNewContourMapViewFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
RimEclipseView* reservoirView = caf::SelectionManager::instance()->selectedItemOfType<RimEclipseView>();
|
||||
RimEclipseContourMapView* existingEclipseContourMap = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimEclipseContourMapView>();
|
||||
RimEclipseContourMapView* existingEclipseContourMap =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimEclipseContourMapView>();
|
||||
RimEclipseCase* eclipseCase = caf::SelectionManager::instance()->selectedItemAncestorOfType<RimEclipseCase>();
|
||||
RimEclipseContourMapView* eclipseContourMap = nullptr;
|
||||
|
||||
RimGeoMechView* geoMechView = caf::SelectionManager::instance()->selectedItemOfType<RimGeoMechView>();
|
||||
RimGeoMechContourMapView* existingGeoMechContourMap = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimGeoMechContourMapView>();
|
||||
RimGeoMechContourMapView* existingGeoMechContourMap =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimGeoMechContourMapView>();
|
||||
RimGeoMechCase* geoMechCase = caf::SelectionManager::instance()->selectedItemAncestorOfType<RimGeoMechCase>();
|
||||
RimGeoMechContourMapView* geoMechContourMap = nullptr;
|
||||
|
||||
|
||||
@@ -82,8 +82,8 @@ RicfCommandResponse RicNewGridPlotWindowFeature::execute()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RicNewGridPlotWindowFeature::isCommandEnabled()
|
||||
{
|
||||
RimGridPlotWindowCollection* gridPlotCollection = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimGridPlotWindowCollection>();
|
||||
RimGridPlotWindowCollection* gridPlotCollection =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimGridPlotWindowCollection>();
|
||||
if ( gridPlotCollection )
|
||||
{
|
||||
return true;
|
||||
|
||||
@@ -73,8 +73,8 @@ RimEclipseView* RicSelectOrCreateViewFeatureImpl::showViewSelection( RimEclipseR
|
||||
viewToManipulate = featureUi.selectedView();
|
||||
}
|
||||
|
||||
QString refFromProjectToView = caf::PdmReferenceHelper::referenceFromRootToObject( RiaApplication::instance()->project(),
|
||||
viewToManipulate );
|
||||
QString refFromProjectToView =
|
||||
caf::PdmReferenceHelper::referenceFromRootToObject( RiaApplication::instance()->project(), viewToManipulate );
|
||||
RiaApplication::instance()->setCacheDataObject( lastUsedViewKey, refFromProjectToView );
|
||||
|
||||
return viewToManipulate;
|
||||
|
||||
@@ -72,7 +72,8 @@ void RicPasteTimeHistoryCurveFeature::onActionTriggered( bool isChecked )
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<caf::PdmPointer<RimGridTimeHistoryCurve>> sourceObjects = RicPasteTimeHistoryCurveFeature::timeHistoryCurves();
|
||||
std::vector<caf::PdmPointer<RimGridTimeHistoryCurve>> sourceObjects =
|
||||
RicPasteTimeHistoryCurveFeature::timeHistoryCurves();
|
||||
|
||||
for ( size_t i = 0; i < sourceObjects.size(); i++ )
|
||||
{
|
||||
|
||||
@@ -155,9 +155,9 @@ void RicSummaryCurveCalculator::defineUiOrdering( QString uiConfigName, caf::Pdm
|
||||
}
|
||||
|
||||
{
|
||||
caf::PdmUiGroup* group = uiOrdering
|
||||
.addNewGroupWithKeyword( "Calculated Summaries",
|
||||
RicSummaryCurveCalculator::calculatedSummariesGroupName() );
|
||||
caf::PdmUiGroup* group =
|
||||
uiOrdering.addNewGroupWithKeyword( "Calculated Summaries",
|
||||
RicSummaryCurveCalculator::calculatedSummariesGroupName() );
|
||||
group->add( &m_currentCalculation );
|
||||
group->add( &m_newCalculation );
|
||||
group->add( &m_deleteCalculation );
|
||||
|
||||
@@ -500,8 +500,8 @@ void RicSummaryPlotFeatureImpl::createSummaryPlotsFromArgumentLine( const QStrin
|
||||
{
|
||||
for ( RimSummaryCase* sumCase : summaryCasesToUse )
|
||||
{
|
||||
const std::set<RifEclipseSummaryAddress>& allAddrsInCase = sumCase->summaryReader()
|
||||
->allResultAddresses();
|
||||
const std::set<RifEclipseSummaryAddress>& allAddrsInCase =
|
||||
sumCase->summaryReader()->allResultAddresses();
|
||||
if ( allAddrsInCase.count( addr ) )
|
||||
{
|
||||
RimSummaryCurve* newCurve = new RimSummaryCurve();
|
||||
|
||||
@@ -132,8 +132,8 @@ bool RicNewWellBoreStabilityPlotFeature::isCommandEnabled()
|
||||
void RicNewWellBoreStabilityPlotFeature::onActionTriggered( bool isChecked )
|
||||
{
|
||||
RimWellPath* wellPath = caf::SelectionManager::instance()->selectedItemAncestorOfType<RimWellPath>();
|
||||
RimWellLogPlotCollection* plotCollection = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimWellLogPlotCollection>();
|
||||
RimWellLogPlotCollection* plotCollection =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimWellLogPlotCollection>();
|
||||
if ( !wellPath )
|
||||
{
|
||||
if ( plotCollection )
|
||||
@@ -293,13 +293,8 @@ void RicNewWellBoreStabilityPlotFeature::createStabilityCurvesTrack( RimWellBore
|
||||
{
|
||||
const QString& resultName = resultNames[i];
|
||||
RigFemResultAddress resAddr( RIG_WELLPATH_DERIVED, resultName.toStdString(), "" );
|
||||
RimWellLogWbsCurve* curve = RicWellLogTools::addWellLogWbsCurve( stabilityCurvesTrack,
|
||||
geoMechCase,
|
||||
nullptr,
|
||||
wellPath,
|
||||
-1,
|
||||
false,
|
||||
false );
|
||||
RimWellLogWbsCurve* curve =
|
||||
RicWellLogTools::addWellLogWbsCurve( stabilityCurvesTrack, geoMechCase, nullptr, wellPath, -1, false, false );
|
||||
curve->setGeoMechResultAddress( resAddr );
|
||||
curve->setCurrentTimeStep( timeStep );
|
||||
curve->setAutoNameComponents( false, true, false, false, false );
|
||||
|
||||
@@ -108,11 +108,11 @@ bool RicCreateWellTargetsPickEventHandler::handle3dPickEvent( const Ric3dPickEve
|
||||
intersectionPointInDomain );
|
||||
|
||||
double md = wellPathSourceInfo->measuredDepth( firstPickItem.faceIdx(), intersectionPointInDomain );
|
||||
doSetAzimuthAndInclination = calculateAzimuthAndInclinationAtMd( md,
|
||||
wellPathSourceInfo->wellPath()
|
||||
->wellPathGeometry(),
|
||||
&azimuth,
|
||||
&inclination );
|
||||
doSetAzimuthAndInclination =
|
||||
calculateAzimuthAndInclinationAtMd( md,
|
||||
wellPathSourceInfo->wellPath()->wellPathGeometry(),
|
||||
&azimuth,
|
||||
&inclination );
|
||||
}
|
||||
else if ( isGridSourceObject( firstPickItem.sourceInfo() ) )
|
||||
{
|
||||
|
||||
@@ -71,8 +71,8 @@ void RicDeleteWellPathAttributeFeature::onActionTriggered( bool isChecked )
|
||||
}
|
||||
else
|
||||
{
|
||||
wellPathAttributeCollection = caf::SelectionManager::instance()
|
||||
->selectedItemOfType<RimWellPathAttributeCollection>();
|
||||
wellPathAttributeCollection =
|
||||
caf::SelectionManager::instance()->selectedItemOfType<RimWellPathAttributeCollection>();
|
||||
if ( wellPathAttributeCollection )
|
||||
{
|
||||
wellPathAttributeCollection->deleteAllAttributes();
|
||||
|
||||
Reference in New Issue
Block a user