Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
FITS_tutorial3.C File Reference

Detailed Description

View in nbviewer Open in SWAN Open a FITS file and retrieve the first plane of the image array as a TImage object.

void FITS_tutorial3()
{
// We open a FITS file that contains several image
// extensions. The primary HDU contains no data.
// Data copyright: NASA
// Open extensions 1 to 5 from file
TString dir = gROOT->GetTutorialDir();
auto c = new TCanvas("c1", "FITS tutorial #1", 800, 700);
c->Divide(2, 3);
for (auto i : ROOT::TSeqI(1, 6)) {
TFITSHDU hdu(dir + "/fitsio/sample3.fits", i);
TImage* im = (TImage *)hdu.ReadAsImage(0);
c->cd(i);
im->Draw();
}
}
#define c(i)
Definition RSha256.hxx:101
#define gROOT
Definition TROOT.h:406
The Canvas class.
Definition TCanvas.h:23
FITS file interface class.
Definition TFITS.h:35
An abstract interface to image processing library.
Definition TImage.h:29
virtual void Draw(Option_t *option="")
Default Draw method for all objects.
Definition TObject.cxx:197
Basic string class.
Definition TString.h:136
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Author
Claudi Martinez

Definition in file FITS_tutorial3.C.