#ifndef MCAMDISPLAY_H #define MCAMDISPLAY_H #include #include "MAGIC.h" class TClonesArray ; class MNphotEvent ; class MCamDisplay : public TObject { private: Int_t fNbPixels ; // TClonesArray *fPixels ; //! public: MCamDisplay ( Int_t type=0 ) ; ~MCamDisplay () ; void Init() ; void Draw(Option_t *option = "" ) ; void Draw( MNphotEvent *event) ; void Reset() ; void TestColor() ; //Int_t GetNbPixels() ; ClassDef(MCamDisplay, 1) // Base (abstract) class for a task }; #endif