2016-05-09 05:13:54 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2016- Statoil ASA
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2016-05-09 05:13:54 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2016-05-09 05:13:54 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2016-05-09 05:13:54 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RicNewSummaryPlotFeature.h"
|
|
|
|
|
2016-06-30 03:06:15 -05:00
|
|
|
#include "RiaApplication.h"
|
2016-10-24 06:54:35 -05:00
|
|
|
#include "RiaPreferences.h"
|
2017-11-15 00:07:26 -06:00
|
|
|
#include "RiaSummaryTools.h"
|
2016-06-30 03:06:15 -05:00
|
|
|
|
2017-10-27 01:26:20 -05:00
|
|
|
#include "RicEditSummaryPlotFeature.h"
|
2019-12-06 02:20:38 -06:00
|
|
|
#include "RicNewSummaryEnsembleCurveSetFeature.h"
|
2020-02-18 05:29:13 -06:00
|
|
|
#include "RicSummaryPlotEditorDialog.h"
|
2020-02-18 06:36:07 -06:00
|
|
|
#include "RicSummaryPlotEditorUi.h"
|
2017-09-26 00:48:42 -05:00
|
|
|
|
2018-05-31 03:23:51 -05:00
|
|
|
#include "RimEnsembleCurveFilter.h"
|
|
|
|
#include "RimEnsembleCurveFilterCollection.h"
|
2019-09-06 03:40:57 -05:00
|
|
|
#include "RimProject.h"
|
2018-05-31 03:23:51 -05:00
|
|
|
#include "RimRegularLegendConfig.h"
|
2018-05-07 02:45:50 -05:00
|
|
|
#include "RimSummaryCase.h"
|
|
|
|
#include "RimSummaryCaseCollection.h"
|
2018-09-13 05:38:17 -05:00
|
|
|
#include "RimSummaryCaseMainCollection.h"
|
2019-09-06 03:40:57 -05:00
|
|
|
#include "RimSummaryCurveFilter.h"
|
|
|
|
#include "RimSummaryPlot.h"
|
|
|
|
#include "RimSummaryPlotCollection.h"
|
2017-09-26 00:48:42 -05:00
|
|
|
|
2018-04-26 23:28:08 -05:00
|
|
|
#include "RiuPlotMainWindow.h"
|
2016-05-09 05:13:54 -05:00
|
|
|
|
2020-03-10 08:11:22 -05:00
|
|
|
#include "cafPdmFieldIOScriptability.h"
|
|
|
|
#include "cafPdmFieldScriptability.h"
|
2018-05-07 02:45:50 -05:00
|
|
|
#include "cafSelectionManagerTools.h"
|
2019-09-06 03:40:57 -05:00
|
|
|
#include "cvfAssert.h"
|
2017-09-26 00:48:42 -05:00
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
CAF_CMD_SOURCE_INIT( RicNewSummaryPlotFeature, "RicNewSummaryPlotFeature" );
|
2016-05-09 05:13:54 -05:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2016-05-09 05:13:54 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RicNewSummaryPlotFeature::isCommandEnabled()
|
|
|
|
{
|
2017-11-15 00:07:26 -06:00
|
|
|
RimSummaryPlotCollection* sumPlotColl = nullptr;
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
caf::PdmObject* selObj = dynamic_cast<caf::PdmObject*>( caf::SelectionManager::instance()->selectedItem() );
|
|
|
|
if ( selObj )
|
2017-11-15 00:07:26 -06:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
sumPlotColl = RiaSummaryTools::parentSummaryPlotCollection( selObj );
|
2017-11-15 00:07:26 -06:00
|
|
|
}
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
auto ensembleFilter = dynamic_cast<RimEnsembleCurveFilter*>( selObj );
|
|
|
|
auto ensembleFilterColl = dynamic_cast<RimEnsembleCurveFilterCollection*>( selObj );
|
|
|
|
auto legendConfig = dynamic_cast<RimRegularLegendConfig*>( selObj );
|
2018-05-31 03:23:51 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( ensembleFilter || ensembleFilterColl || legendConfig ) return false;
|
|
|
|
if ( sumPlotColl ) return true;
|
2017-11-15 00:07:26 -06:00
|
|
|
|
2018-05-07 02:45:50 -05:00
|
|
|
// Multiple case selections
|
|
|
|
std::vector<caf::PdmUiItem*> selectedItems = caf::selectedObjectsByTypeStrict<caf::PdmUiItem*>();
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( auto item : selectedItems )
|
2018-05-07 02:45:50 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( !dynamic_cast<RimSummaryCase*>( item ) && !dynamic_cast<RimSummaryCaseCollection*>( item ) ) return false;
|
2018-05-07 02:45:50 -05:00
|
|
|
}
|
|
|
|
return true;
|
2016-05-09 05:13:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2016-05-09 05:13:54 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RicNewSummaryPlotFeature::onActionTriggered( bool isChecked )
|
2016-05-09 05:13:54 -05:00
|
|
|
{
|
|
|
|
RimProject* project = RiaApplication::instance()->project();
|
2019-09-06 03:40:57 -05:00
|
|
|
CVF_ASSERT( project );
|
2016-05-09 05:13:54 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
std::vector<RimSummaryCase*> selectedCases = caf::selectedObjectsByType<RimSummaryCase*>();
|
2018-05-07 02:45:50 -05:00
|
|
|
std::vector<RimSummaryCaseCollection*> selectedGroups = caf::selectedObjectsByType<RimSummaryCaseCollection*>();
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
std::vector<caf::PdmObject*> sourcesToSelect( selectedCases.begin(), selectedCases.end() );
|
2018-05-28 06:26:56 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( sourcesToSelect.empty() && selectedGroups.empty() )
|
2018-09-13 05:38:17 -05:00
|
|
|
{
|
|
|
|
const auto allSingleCases = project->firstSummaryCaseMainCollection()->topLevelSummaryCases();
|
2019-09-06 03:40:57 -05:00
|
|
|
const auto allGroups = project->summaryGroups();
|
2018-09-13 05:38:17 -05:00
|
|
|
std::vector<RimSummaryCaseCollection*> allEnsembles;
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( const auto group : allGroups )
|
|
|
|
if ( group->isEnsemble() ) allEnsembles.push_back( group );
|
2018-09-13 05:38:17 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( !allSingleCases.empty() )
|
2018-09-13 05:38:17 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
sourcesToSelect.push_back( allSingleCases.front() );
|
2018-09-13 05:38:17 -05:00
|
|
|
}
|
2019-09-06 03:40:57 -05:00
|
|
|
else if ( !allEnsembles.empty() )
|
2018-09-13 05:38:17 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
sourcesToSelect.push_back( allEnsembles.front() );
|
2018-09-13 05:38:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 02:45:50 -05:00
|
|
|
// Append grouped cases
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( auto group : selectedGroups )
|
2018-05-07 02:45:50 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( group->isEnsemble() )
|
2018-05-28 06:26:56 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
sourcesToSelect.push_back( group );
|
2018-05-28 06:26:56 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto groupCases = group->allSummaryCases();
|
2019-09-06 03:40:57 -05:00
|
|
|
sourcesToSelect.insert( sourcesToSelect.end(), groupCases.begin(), groupCases.end() );
|
2018-05-28 06:26:56 -05:00
|
|
|
}
|
2018-05-07 02:45:50 -05:00
|
|
|
}
|
|
|
|
|
2017-10-27 01:26:20 -05:00
|
|
|
auto dialog = RicEditSummaryPlotFeature::curveCreatorDialog();
|
2016-05-09 05:13:54 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( !dialog->isVisible() )
|
2017-09-21 08:48:00 -05:00
|
|
|
{
|
2017-09-21 02:49:49 -05:00
|
|
|
dialog->show();
|
2017-09-21 08:48:00 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dialog->raise();
|
|
|
|
}
|
2016-05-09 05:13:54 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
dialog->updateFromDefaultCases( sourcesToSelect );
|
2016-06-30 06:21:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2016-06-30 06:21:04 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RicNewSummaryPlotFeature::setupActionLook( QAction* actionToSetup )
|
2016-06-30 06:21:04 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
actionToSetup->setText( "Open Summary Plot Editor" );
|
|
|
|
actionToSetup->setIcon( QIcon( ":/SummaryPlotLight16x16.png" ) );
|
2016-06-30 06:21:04 -05:00
|
|
|
}
|
|
|
|
|
2019-08-09 02:54:55 -05:00
|
|
|
//==================================================================================================
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2019-08-09 02:54:55 -05:00
|
|
|
//==================================================================================================
|
|
|
|
|
2019-08-08 09:22:00 -05:00
|
|
|
#include "RicNewSummaryCurveFeature.h"
|
2019-08-09 02:54:55 -05:00
|
|
|
#include "RicSummaryPlotFeatureImpl.h"
|
2019-09-06 03:40:57 -05:00
|
|
|
#include "RimMainPlotCollection.h"
|
|
|
|
#include "RiuPlotMainWindowTools.h"
|
2019-08-08 09:22:00 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
CAF_CMD_SOURCE_INIT( RicNewDefaultSummaryPlotFeature, "RicNewDefaultSummaryPlotFeature" );
|
2019-08-08 09:22:00 -05:00
|
|
|
|
2019-12-06 02:20:38 -06:00
|
|
|
void extractPlotObjectsFromSelection( std::vector<RimSummaryCase*>* selectedIndividualSummaryCases,
|
|
|
|
std::vector<RimSummaryCaseCollection*>* selectedEnsembles )
|
2019-08-08 09:22:00 -05:00
|
|
|
{
|
2019-12-06 02:20:38 -06:00
|
|
|
CAF_ASSERT( selectedIndividualSummaryCases && selectedEnsembles );
|
2019-08-08 09:22:00 -05:00
|
|
|
|
2019-12-06 02:20:38 -06:00
|
|
|
// First try selected ensembles
|
|
|
|
caf::SelectionManager::instance()->objectsByTypeStrict( selectedEnsembles );
|
|
|
|
if ( !selectedEnsembles->empty() )
|
2019-08-08 09:22:00 -05:00
|
|
|
{
|
2019-12-06 02:20:38 -06:00
|
|
|
return;
|
2019-08-08 09:22:00 -05:00
|
|
|
}
|
2019-12-06 02:20:38 -06:00
|
|
|
// Second try selected summary cases
|
|
|
|
caf::SelectionManager::instance()->objectsByTypeStrict( selectedIndividualSummaryCases );
|
|
|
|
if ( !selectedIndividualSummaryCases->empty() )
|
2019-08-08 09:22:00 -05:00
|
|
|
{
|
2019-12-06 02:20:38 -06:00
|
|
|
return;
|
2019-08-08 09:22:00 -05:00
|
|
|
}
|
|
|
|
|
2019-12-06 02:20:38 -06:00
|
|
|
RimSummaryPlotCollection* sumPlotColl =
|
|
|
|
caf::SelectionManager::instance()->selectedItemAncestorOfType<RimSummaryPlotCollection>();
|
|
|
|
|
|
|
|
if ( sumPlotColl )
|
|
|
|
{
|
|
|
|
RimSummaryCase* firstIndividualSummaryCase = nullptr;
|
|
|
|
RimSummaryCaseCollection* firstEnsemble = nullptr;
|
|
|
|
|
|
|
|
auto sumCaseVector = RiaApplication::instance()->project()->allSummaryCases();
|
|
|
|
for ( RimSummaryCase* summaryCase : sumCaseVector )
|
|
|
|
{
|
|
|
|
RimSummaryCaseCollection* parentEnsemble = nullptr;
|
|
|
|
summaryCase->firstAncestorOrThisOfType( parentEnsemble );
|
|
|
|
if ( !parentEnsemble && !firstIndividualSummaryCase )
|
|
|
|
{
|
|
|
|
firstIndividualSummaryCase = summaryCase;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ( parentEnsemble && !firstEnsemble )
|
|
|
|
{
|
|
|
|
firstEnsemble = parentEnsemble;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( firstIndividualSummaryCase )
|
|
|
|
{
|
|
|
|
selectedIndividualSummaryCases->push_back( firstIndividualSummaryCase );
|
|
|
|
}
|
|
|
|
else if ( firstEnsemble )
|
|
|
|
{
|
|
|
|
selectedEnsembles->push_back( firstEnsemble );
|
|
|
|
}
|
|
|
|
}
|
2019-08-08 09:22:00 -05:00
|
|
|
}
|
|
|
|
|
2020-03-10 08:11:22 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimSummaryPlot* RicNewDefaultSummaryPlotFeature::createFromSummaryCases( RimSummaryPlotCollection* plotCollection,
|
|
|
|
const std::vector<RimSummaryCase*>& summaryCases )
|
|
|
|
{
|
|
|
|
RimSummaryPlot* newPlot = plotCollection->createSummaryPlotWithAutoTitle();
|
|
|
|
|
|
|
|
for ( RimSummaryCase* sumCase : summaryCases )
|
|
|
|
{
|
|
|
|
RicSummaryPlotFeatureImpl::addDefaultCurvesToPlot( newPlot, sumCase );
|
|
|
|
}
|
|
|
|
|
|
|
|
newPlot->applyDefaultCurveAppearances();
|
|
|
|
newPlot->loadDataAndUpdate();
|
|
|
|
|
|
|
|
plotCollection->updateConnectedEditors();
|
|
|
|
|
|
|
|
RiuPlotMainWindowTools::setExpanded( newPlot );
|
|
|
|
RiuPlotMainWindowTools::selectAsCurrentItem( newPlot );
|
|
|
|
return newPlot;
|
|
|
|
}
|
|
|
|
|
2019-08-08 09:22:00 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2019-08-08 09:22:00 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-08-09 02:54:55 -05:00
|
|
|
bool RicNewDefaultSummaryPlotFeature::isCommandEnabled()
|
2019-08-08 09:22:00 -05:00
|
|
|
{
|
2019-12-06 02:20:38 -06:00
|
|
|
std::vector<RimSummaryCase*> selectedIndividualSummaryCases;
|
|
|
|
std::vector<RimSummaryCaseCollection*> selectedEnsembles;
|
2019-08-08 09:22:00 -05:00
|
|
|
|
2019-12-06 02:20:38 -06:00
|
|
|
extractPlotObjectsFromSelection( &selectedIndividualSummaryCases, &selectedEnsembles );
|
|
|
|
|
|
|
|
return !( selectedIndividualSummaryCases.empty() && selectedEnsembles.empty() );
|
2019-08-08 09:22:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2019-08-08 09:22:00 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RicNewDefaultSummaryPlotFeature::onActionTriggered( bool isChecked )
|
2019-08-08 09:22:00 -05:00
|
|
|
{
|
2019-12-06 02:20:38 -06:00
|
|
|
std::vector<RimSummaryCase*> selectedIndividualSummaryCases;
|
|
|
|
std::vector<RimSummaryCaseCollection*> selectedEnsembles;
|
|
|
|
extractPlotObjectsFromSelection( &selectedIndividualSummaryCases, &selectedEnsembles );
|
2019-08-08 09:22:00 -05:00
|
|
|
|
2019-12-06 02:20:38 -06:00
|
|
|
if ( !selectedIndividualSummaryCases.empty() )
|
2019-08-09 06:15:32 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
RimSummaryPlotCollection* sumPlotColl =
|
|
|
|
RiaApplication::instance()->project()->mainPlotCollection()->summaryPlotCollection();
|
2020-03-10 08:11:22 -05:00
|
|
|
createFromSummaryCases( sumPlotColl, selectedIndividualSummaryCases );
|
2019-08-08 09:22:00 -05:00
|
|
|
}
|
2019-12-06 02:20:38 -06:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CAF_ASSERT( !selectedEnsembles.empty() );
|
|
|
|
RicNewSummaryEnsembleCurveSetFeature::createPlotForCurveSetsAndUpdate( selectedEnsembles );
|
|
|
|
}
|
2019-08-08 09:22:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2019-08-08 09:22:00 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RicNewDefaultSummaryPlotFeature::setupActionLook( QAction* actionToSetup )
|
2019-08-08 09:22:00 -05:00
|
|
|
{
|
2019-12-06 02:20:38 -06:00
|
|
|
std::vector<RimSummaryCase*> selectedIndividualSummaryCases;
|
|
|
|
std::vector<RimSummaryCaseCollection*> selectedEnsembles;
|
|
|
|
|
|
|
|
extractPlotObjectsFromSelection( &selectedIndividualSummaryCases, &selectedEnsembles );
|
|
|
|
|
|
|
|
if ( !selectedIndividualSummaryCases.empty() )
|
|
|
|
{
|
|
|
|
actionToSetup->setText( "New Summary Plot" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actionToSetup->setText( "New Ensemble Summary Plot" );
|
|
|
|
}
|
2019-09-06 03:40:57 -05:00
|
|
|
actionToSetup->setIcon( QIcon( ":/SummaryPlotLight16x16.png" ) );
|
2019-08-08 09:22:00 -05:00
|
|
|
}
|
2020-03-10 08:11:22 -05:00
|
|
|
|
|
|
|
CAF_PDM_OBJECT_METHOD_SOURCE_INIT( RimSummaryPlotCollection, RimSummaryPlotCollection_newSummaryPlot, "NewSummaryPlot" );
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimSummaryPlotCollection_newSummaryPlot::RimSummaryPlotCollection_newSummaryPlot( caf::PdmObjectHandle* self )
|
|
|
|
: caf::PdmObjectMethod( self )
|
|
|
|
{
|
|
|
|
CAF_PDM_InitObject( "Create Summary Plot", "", "", "Create a new Summary Plot" );
|
|
|
|
CAF_PDM_InitScriptableFieldWithIONoDefault( &m_summaryCases, "SummaryCases", "", "", "", "Summary Cases" );
|
|
|
|
CAF_PDM_InitScriptableFieldWithIONoDefault( &m_ensembles, "Ensembles", "", "", "", "Ensembles" );
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
caf::PdmObjectHandle* RimSummaryPlotCollection_newSummaryPlot::execute()
|
|
|
|
{
|
|
|
|
if ( !m_summaryCases.empty() )
|
|
|
|
{
|
|
|
|
return RicNewDefaultSummaryPlotFeature::createFromSummaryCases( self<RimSummaryPlotCollection>(),
|
|
|
|
m_summaryCases.ptrReferencedObjects() );
|
|
|
|
}
|
|
|
|
else if ( !m_ensembles.empty() )
|
|
|
|
{
|
|
|
|
return RicNewSummaryEnsembleCurveSetFeature::createPlotForCurveSetsAndUpdate( m_ensembles.ptrReferencedObjects() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RimSummaryPlotCollection_newSummaryPlot::deleteObjectAfterReply() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|