//------------------------------------------------------------------------------ // DAQ application task -- // (C) Devis Contarato 2009, Berkeley Lab -- //------------------------------------------------------------------------------ //______________________________________________________________________________ // {Trace} // [File name] "task_DAQ_Detector.h" // [Author] "Devis Contarato" // [Version] "0.5" // [Modified by] "Devis Contarato" // [Last revision] "23 Mar 2009" // [Language] "C++" // [Compiler] "Visual C++ 8.x 9.x" // [Member of] "Cool SEAL" // [Project] "SEAL" // [Description] "DAQ application task" // [Key documentation] // "Visual C++ Reference Help" // {Trace} //______________________________________________________________________________ // Overloading check #ifndef task_DAQ_Detector_H #define task_DAQ_Detector_H // Standard components //#include #include #include // Root components #include // Application components // Data #include "data_Burst.h" #include "geom_Frame.h" //______________________________________________________________________________ class task_DAQ_Detector: public task_Object { private: // Setup function void Init(); // Set up the detector description public: std::vector detector; // Vector with detector description(s) // Special members task_DAQ_Detector(); ~task_DAQ_Detector(); }; // Overloading check #endif