X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MUON%2FAliMUONMchViewApplication.h;h=442348870847729ef6dd1be49d0dc2ef7ea4f503;hb=c5b9a3cd399b25a070da3265ba7e93ad11bb8cda;hp=90f47c5f52bc75382e01a9412859044a2329bc99;hpb=66cdf5b356ddec79996c44150fae1a3b8755e933;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONMchViewApplication.h b/MUON/AliMUONMchViewApplication.h index 90f47c5f52b..44234887084 100644 --- a/MUON/AliMUONMchViewApplication.h +++ b/MUON/AliMUONMchViewApplication.h @@ -16,9 +16,11 @@ # include #endif -class AliMUONPainterMasterFrame; +class TList; class TDirectory; class TGMainFrame; +class AliMUONPainterMatrix; +class TGTab; class AliMUONMchViewApplication : public TRint { @@ -30,7 +32,7 @@ public: void HandleMenu(Int_t i); /// Return the version number of the mchview application - static const char* Version() { return "0.97"; } + static const char* Version() { return "1.11"; } /// Return the SVN revision and version number of the mchview application static const char* FullVersion() { return Form("mchview Version %s ($Id$)",Version()); } @@ -44,6 +46,7 @@ private: AliMUONMchViewApplication& operator=(const AliMUONMchViewApplication& rhs); void CompareData(); + void CompareAlignments(); void CreateMenuBar(UInt_t w); void Save(); void Save(const char* filename); @@ -51,10 +54,12 @@ private: 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 @@ -62,10 +67,11 @@ private: static const Int_t fgkFILEPRINTAS; ///< File/Print As... menu static const Int_t fgkABOUT; ///< About menu static const Int_t fgkCOMPAREDATA; ///< Tools/Compare Data menu + static const Int_t fgkCOMPAREALIGNMENTS; ///< Tools/Compare Alignments menu static const char* fgkFileTypes[]; ///< For the open menu - ClassDef(AliMUONMchViewApplication,4) // mchview application + ClassDef(AliMUONMchViewApplication,5) // mchview application }; #endif