GLAMERDOC++
Gravitational Lensing Code Library
Loading...
Searching...
No Matches
source_models.h
1/*
2 * source_models.h
3 *
4 * Created on: Oct 8, 2011
5 * Author: bmetcalf
6 */
7
8#ifndef source_model_declare
9#define source_model_declare
10
11#include "source.h"
12
13// Separate files
14double blr_surface_brightness_spherical(double x,const SourceBLR *source);
15double blr_surface_brightness_spherical_random_motions(double x,const SourceBLR *source);
16double blr_surface_brightness_spherical_circular_motions(double x,const SourceBLR *source);
17double blr_surface_brightness_disk(double x[],const SourceBLR *source);
18
19#endif
Base class for all sources representing the Broad Line Region (BLR) of a AGN/QSO.
Definition source.h:548