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