#1842 RFT Plot. First visible RFT curve

This commit is contained in:
Bjørn Erik Jensen
2017-10-03 13:54:07 +02:00
parent 947d31bfcc
commit d090f8ac2d
6 changed files with 130 additions and 40 deletions

View File

@@ -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;
}