コード例 #1
0
ファイル: EmissionMap.cpp プロジェクト: CRPropa/CRPropa3
bool EmissionMap::drawDirection(const ParticleState& state, Vector3d& direction) const {
	return drawDirection(state.getId(), state.getEnergy(), direction);
}
コード例 #2
0
ファイル: EmissionMap.cpp プロジェクト: CRPropa/CRPropa3
bool EmissionMap::checkDirection(const ParticleState& state) const {
	return checkDirection(state.getId(), state.getEnergy(), state.getDirection());
}
コード例 #3
0
ファイル: EmissionMap.cpp プロジェクト: CRPropa/CRPropa3
void EmissionMap::fillMap(const ParticleState& state, double weight) {
	fillMap(state.getId(), state.getEnergy(), state.getDirection(), weight);
}