-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAverageCacheT1KDEVelocity.h
More file actions
46 lines (39 loc) · 958 Bytes
/
AverageCacheT1KDEVelocity.h
File metadata and controls
46 lines (39 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* @file AverageCacheT1KDEVelocity.h
* @author Dan R. Lipsa
* @date 10 March 2011
* @ingroup model
* @brief Cache of 2D averages for T1KDE and velocity.
*/
#ifndef __AVERAGE_CACHE_T1KDE_VELOCITY_H__
#define __AVERAGE_CACHE_T1KDE_VELOCITY_H__
/**
* @brief Cache of 2D averages for T1KDE and velocity.
*/
class AverageCacheT1KDEVelocity
{
public:
void SetT1KDE (vtkSmartPointer<vtkImageData> average)
{
m_t1KDE = average;
}
vtkSmartPointer<vtkImageData> GetT1KDE () const
{
return m_t1KDE;
}
void SetVelocity (vtkSmartPointer<vtkImageData> average)
{
m_velocityAverage = average;
}
vtkSmartPointer<vtkImageData> GetVelocity () const
{
return m_velocityAverage;
}
private:
vtkSmartPointer<vtkImageData> m_t1KDE;
vtkSmartPointer<vtkImageData> m_velocityAverage;
};
#endif //__AVERAGE_CACHE_T1KDE_VELOCITY_H__
// Local Variables:
// mode: c++
// End: