The AGN sample
  • Home
  • Power spectra
  • Posterior samples
  • Bayes factors

The AGN sample

This website contains the plots and results of the X-ray variability study of 56 AGN.

On this page you can find the re-calibrated black hole masses as presented in the paper. Detailed information on each source can be found by clicking on the source name in the table below:

Code
function make_links(x){
  return htl.html`<a href="${x}">ADS link</a>`
}
function pretty2dirname(x){
  return x.replace(" ","_").replace("+","p").replace(".","d")
}
function make_src_links(x){
  return htl.html`<a href="sources/${pretty2dirname(x)}.html">${x}</a>`
}



data = FileAttachment("website_sources_data.csv").csv({ typed: true })

sources = Inputs.table(data,{
    rows:57,
    select:false,
    sort:true,
    multiple:false,
    format:{
        Object: (x)=>make_src_links(x),
        Ref: (x)=>make_links(x),
        "Lbol (ref)": (x)=>make_links(x)
            },
    columns:["Object","M_BH","err_M_BH","log10_L5100"],
    header: {Object: "Object",
            "M_BH": "Black hole mass (1E6 M_sun)",
            "err_M_BH": "Uncertainty black hole mass (1E6 M_sun) (1sigma)",
            "log10_L5100":"log10(L5100)"
    }
  }
)
  • View source