mirror of
https://github.com/gwm17/Mask.git
synced 2024-11-13 14:08:49 -05:00
39 lines
892 B
C++
39 lines
892 B
C++
#ifndef ANGULARDISTRIBUTION_H
|
|
#define ANGULARDISTRIBUTION_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <random>
|
|
|
|
class AngularDistribution {
|
|
public:
|
|
AngularDistribution();
|
|
AngularDistribution(const std::string& file);
|
|
~AngularDistribution();
|
|
void ReadDistributionFile(const std::string& file);
|
|
void AttachRandomNumberGenerator(std::mt19937* random) { generator = random; };
|
|
double GetRandomCosTheta();
|
|
int GetL() { return L; };
|
|
double GetBranchingRatio() { return branchingRatio; };
|
|
|
|
private:
|
|
bool IsIsotropic();
|
|
bool IsGeneratorSet() {
|
|
if(generator) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
std::mt19937* generator; //NOT OWNED BY ANGULAR DISTRIBUTION
|
|
std::uniform_real_distribution<double> uniform_cosine_dist;
|
|
std::uniform_real_distribution<double> uniform_prob_dist;
|
|
|
|
double branchingRatio;
|
|
int L;
|
|
std::vector<double> constants;
|
|
bool isoFlag;
|
|
};
|
|
|
|
#endif |