mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1842 RFT Plot. First visible RFT curve
This commit is contained in:
@@ -176,3 +176,16 @@ QString RimWellLogFile::date() const
|
||||
{
|
||||
return m_date;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<RimWellLogFileChannel*> RimWellLogFile::wellLogChannels() const
|
||||
{
|
||||
std::vector<RimWellLogFileChannel*> channels;
|
||||
for (const auto& channel : m_wellLogChannelNames)
|
||||
{
|
||||
channels.push_back(channel);
|
||||
}
|
||||
return channels;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user