CG  Version 25
ExternalBoundaryData.h
Go to the documentation of this file.
1 #ifndef EXTERNAL_BOUNDARY_DATA_H
2 #define EXTERNAL_BOUNDARY_DATA_H
3 
4 #include "Overture.h"
5 
6 // This class is used to access time depenedent boundary condition data that has
7 // been saved in a file.
9 {
10 public:
11 
13 {
14  probeBoundingBox // file was saved with cg
15 };
16 
17 
18 
21 
22 int
23 getBoundaryData( real t, CompositeGrid & cg, const int side, const int axis, const int grid, RealArray & bd );
24 
25 int
26 update( GenericGraphicsInterface & gi );
27 
28 
29 protected:
30 
32 
34 GenericDataBase *pdb;
36 RealArray times;
37 int current;
38 
39 };
40 
41 
42 #endif