valSPH
 All Classes Files Functions Variables
FourTensor.h
Go to the documentation of this file.
1 
10 #ifndef __FourTensor_h__
11 #define __FourTensor_h__
12 
13 
14 #include <vector>
15 
16 #include "ThreeTensor.h"
17 
18 
19 using namespace std;
20 
21 
22 class FourTensor {
23 
24 
25  private:
26 
27 
28  vector< ThreeTensor > threeTensors;
29 
30 
31  public:
32 
33 
37  FourTensor ();
38 
39 
47  ThreeTensor at (int pos);
48 
49 
55  void push_back (ThreeTensor threeTensor);
56 
57 
61  ~FourTensor ();
62 
63 
64 };
65 
66 
67 #endif