SOLARPROP  1.0
 All Classes Functions Variables
yamada.h
1 /*
2  * yamada.h
3  *
4  * Author: kappl
5  */
6 
7 #ifndef YAMADA_H_
8 #define YAMADA_H_
9 
10 #include "particle.h"
11 
15 class Yamada : public Particle
16 {
17  protected:
18  double getKappaRR() const;
19  double getDeltaR(Random&) const;
20 
21  public:
22  Yamada(const TmodelInformation&, const Tproperties&);
23  virtual ~Yamada();
24 
25  double getISFlux(int) const;
26 };
27 
28 #endif /* YAMADA_H_ */