Main Page
Classes
Files
File List
All
Classes
Functions
LegacyCode
DirectAscent
VelIntegral.h
1
#ifndef VELINTEGRAL_H
2
#define VELINTEGRAL_H
3
4
struct
VelIntegral
5
{
6
VelIntegral
() { vel = 0; dvVert = 0; dvHori = 0; }
7
VelIntegral
(
double
vel,
double
dvVert,
double
dvHori )
8
{ this->vel = vel; this->dvVert = dvVert; this->dvHori = dvHori; }
9
double
dv()
const
{
return
dvVert + dvHori; };
10
double
vel;
11
double
dvVert;
12
double
dvHori;
13
};
14
15
#endif // VELINTEGRAL_H
Generated on Sat Feb 23 2013 09:37:08 by
1.8.1.2