// $Id: rootfits.cxx,v 1.1 2007/05/25 12:41:05 oxon Exp $ // Author: Akira Okumura 2007/5/21 #include "TRint.h" #include "FITSfunctions.h" int main(int argc, char** argv) { // dummy block to force the CERNLIB functions to be linked by C++ if(0){ CCfits::FITS* fits; fits = 0; } // if // Create an interactive ROOT application TRint* theApp = new TRint("Rint", &argc, argv); // and enter event loop ... theApp->Run(kTRUE); delete theApp; return 0; }