SOLARPROP  1.0
 All Classes Functions Variables
standard2D.h
1 /*
2  * standard2D.h
3  *
4  * Author: kappl
5  */
6 
7 #ifndef STANDARD2D_H_
8 #define STANDARD2D_H_
9 
10 #include "particle.h"
11 
15 class Standard2D : public Particle
16 {
17  private:
18  double getf() const;
19  double getfprime() const;
20  double getalphaH() const;
21  double getKappaParallel() const;
22  double getKappaRR() const;
23 
24  double getDriftR() const;
25  double getDriftTheta() const;
26  double getDriftSheetR() const;
27 
28  double getDeltaR(Random&) const;
29  double getDeltaTheta(Random&) const;
30  void calculate();
31 
32  public:
34  virtual ~Standard2D();
35 
36  double getISFlux(int) const;
37 };
38 
39 #endif /* STANDARD2D_H_ */