]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONMchViewApplication.h
o updates (Alla, Filip)
[u/mrichter/AliRoot.git] / MUON / AliMUONMchViewApplication.h
index 944aeccc0b1a0349b3e0d3810d74b852faa9defd..695bdbdd44caa1dccc3c2fbaa80cc879b9875a04 100644 (file)
 #   include <TRint.h>
 #endif
 
-class AliMUONPainterMasterFrame;
+class TList;
+class TDirectory;
 class TGMainFrame;
+class AliMUONPainterMatrix;
+class TGTab;
 
 class AliMUONMchViewApplication : public TRint
 {
 public:
   AliMUONMchViewApplication(const char* name, int* argc, char** argv, 
-                            Float_t wfraction, Float_t hfraction);
+                            UInt_t w=0, UInt_t h=0, UInt_t ox=0, UInt_t oy=0);
   virtual ~AliMUONMchViewApplication();
 
   void HandleMenu(Int_t i);
 
   /// Return the version number of the mchview application
-  static const char* Version() { return "0.93"; }
+  static const char* Version() { return "1.10"; }
   
   /// Return the SVN revision  and version number of the mchview application
   static const char* FullVersion() { return Form("mchview Version %s ($Id$)",Version()); }
@@ -49,10 +52,13 @@ private:
   void Open();
   void PrintAs();
   void ReleaseNotes();
-  
+  void ReadDir(TDirectory& dir);
+       AliMUONPainterMatrix* GenerateStartupMatrix();
+
 private:
   TGMainFrame* fMainFrame; ///< pointer to our mainframe
-  AliMUONPainterMasterFrame* fPainterMasterFrame; ///< pointer to our main object
+  TList* fPainterMasterFrameList; ///< list of painterMasterFrame objects
+  TGTab* fTabs; ///< our tabs
   
   static const Int_t fgkFILESAVEAS; ///< File/Save As... menu
   static const Int_t fgkFILEOPEN; ///< File/Open... menu
@@ -63,7 +69,7 @@ private:
   
   static const char* fgkFileTypes[]; ///< For the open menu
   
-  ClassDef(AliMUONMchViewApplication,4) // mchview application
+  ClassDef(AliMUONMchViewApplication,5) // mchview application
 };
 
 #endif