Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

docbin.cc

Go to the documentation of this file.
00001 #include "TROOT.h"
00002 #include "TRint.h"
00003 
00004 int Error;
00005 
00006 extern void InitGui(); // Initializer for GUI
00007 VoidFuncPtr_t initfuncs[] = { InitGui, 0 };
00008 
00009 // Initialize the ROOT system
00010 TROOT root("Rint", "The ROOT Interactive Interface", initfuncs);
00011 
00012 int main(int argc, char **argv)
00013 {
00014         // Create interface.
00015         TRint *theApp = new TRint("ROOT example", &argc, argv, NULL, 0);
00016 
00017         // Run interactive interface
00018         theApp->Run();
00019 
00020         return(0);
00021 }
00022 

Generated on Mon Feb 15 11:06:38 2010 for loon by  doxygen 1.3.9.1