//------------------------------------------------------------------------------ // Application elements used by rootcint to compile the root dictionary -- // (C) Piero Giubilato 2008, Berkeley Lab -- //------------------------------------------------------------------------------ //______________________________________________________________________________ // {Trace} // [File name] "cool.h" // [Author] "Piero Giubilato" // [Version] "0.7" // [Modified by] "Piero Giubilato" // [Last revision] "04 Jan 2009" // [Language] "C++" // [Compiler] "Visual C++ 8.x 9.x" // [Member of] "Cool SEAL" // [Project] "SEAL" // [Description] "This header is the application entry point header." // [Key documentation] // "Visual C++ Reference Help" // "Root reference guide" // {Trace} //______________________________________________________________________________ //______________________________________________________________________________ // // Important: to understand how ROOT is used, read and check what explained into // the 'root_Linkdef.h' file. And remeber to keep it up while adding new classes // to the application! //______________________________________________________________________________ // Overloading check #if !defined cool_H #define cool_H // Inclusions for the global services #include "gui_Main.h" #include "comm_Master.h" #include "comm_Reg.h" #include "console_Out.h" #include "task_Master.h" // Global services namespace cool { extern gui_Main* Gui; // Main gui service extern comm_Master* Comm; // Main communication service extern comm_Reg* Reg; // Main registers access service extern console_Out* Out; // Console output extern task_Master* Task; // Main task service } // End of Overloading check #endif