15 #include "CeeCore/PtrRef.h" 17 #include "CeeUnstructGrid/Base.h" 18 #include "CeeUnstructGrid/ResultsQueryResult.h" 19 #include "CeeUnstructGrid/ResultsQueryItem.h" 20 #include "CeeUnstructGrid/ResultsQueryResultPosition.h" 29 class ResultsQueryResultPosition;
43 bool scalars(
int scalarId,
int stateId,
size_t geometryIndex,
const std::vector<ResultsQueryItem>* items, std::vector<ResultsQueryResult>* results);
44 bool vectors(
int vectorId,
int stateId,
size_t geometryIndex,
const std::vector<ResultsQueryItem>* items, std::vector<ResultsQueryResult>* results);
45 bool tensors(
int tensorId,
int stateId,
size_t geometryIndex,
const std::vector<ResultsQueryItem>* items, std::vector<ResultsQueryResult>* results);
49 bool minimumScalars(
size_t scalarsCount,
int scalarId,
int stateId,
size_t geometryIndex, std::vector<ResultsQueryResultPosition>* minScalarPositionAndResults);
50 bool maximumScalars(
size_t scalarsCount,
int scalarId,
int stateId,
size_t geometryIndex, std::vector<ResultsQueryResultPosition>* maxScalarPositionAndResults);
53 bool minimumVectors(
size_t vectorsCount,
int vectorId,
int stateId,
size_t geometryIndex, std::vector<ResultsQueryResultPosition>* minVectorPositionAndResults);
54 bool maximumVectors(
size_t vectorsCount,
int vectorId,
int stateId,
size_t geometryIndex, std::vector<ResultsQueryResultPosition>* maxVectorPositionAndResults);
A ResultsQueryResultPosition object contains the Position and the ResultsQueryResult of a specific va...
Definition: ResultsQueryResultPosition.h:32
The data source of the model. For instance a file interface or custom built by the user...
Definition: DataSource.h:35
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
A query object to retrieve results from a given DataSource.
Definition: ResultsQuery.h:37