opened up function obect interface

This commit is contained in:
andy
2009-07-06 12:31:16 +01:00
parent 383823e69d
commit b1d2ecd38a
2 changed files with 89 additions and 20 deletions

View File

@ -175,9 +175,8 @@ public:
);
// Destructor
virtual ~probes();
//- Destructor
virtual ~probes();
// Member Functions
@ -188,6 +187,18 @@ public:
return name_;
}
//- Return names of fields to probe
virtual const wordList& fieldNames() const
{
return fieldNames_;
}
//- Return locations to probe
virtual const vectorField& probeLocations() const
{
return probeLocations_;
}
//- Cells to be probed (obtained from the locations)
const labelList& cells() const
{