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