mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#7818 Modeled Well Path : Update location of completions
This commit is contained in:
@@ -141,6 +141,21 @@ std::vector<const RimPerforationInterval*> RimPerforationCollection::perforation
|
||||
return myPerforations;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<RimPerforationInterval*> RimPerforationCollection::perforationsNoConst() const
|
||||
{
|
||||
std::vector<RimPerforationInterval*> myPerforations;
|
||||
|
||||
for ( const auto& perforation : m_perforations )
|
||||
{
|
||||
myPerforations.push_back( perforation );
|
||||
}
|
||||
|
||||
return myPerforations;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user