SOLARPROP  1.0
 All Classes Functions Variables
distribution.h
1 /*
2  * distribution.h
3  *
4  * Author: kappl
5  */
6 
7 #ifndef DISTRIBUTION_H_
8 #define DISTRIBUTION_H_
9 
10 #include <map>
11 #include <vector>
12 #include <string>
13 #include "density.h"
14 
19 {
20  private:
21  std::vector<double> flux;
22 
23  public:
24  Distribution(Density&, const std::vector<double>&);
25  ~Distribution();
26 
27  double getFlux(int) const;
28 };
29 
30 #endif /* DISTRIBUTION_H_ */