GLAMERDOC++
Gravitational Lensing Code Library
Loading...
Searching...
No Matches
peak_refinement.h
1/*
2 * peak_refinement.h
3 *
4 * Created on: Apr 14, 2011
5 * Author: bmetcalf
6 */
7
8#ifndef beamtypes_declare
9#define beamtypes_declare
10
11#include <grid_maintenance.h>
12
14struct Beam{
15 std::vector<Point_2d> x;
16 std::vector<KappaType> kappa;
17 std::vector<Point_3d<> > gamma;
18};
19
20namespace FindImages {
21 short find_peaks(LensHndl lens,GridHndl grid,double rEinsteinMin,double kappa_max,std::vector<ImageInfo> &imageinfo, int* Nimages);
22}
23
24#endif
A class to represents a lens with multiple planes.
Definition lens.h:71
A simplified data structure for use in interface with other codes.
Definition peak_refinement.h:14
Structure to contain both source and image trees.
Definition grid_maintenance.h:25