]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONPainterRegistry.h
Cuts updated.
[u/mrichter/AliRoot.git] / MUON / AliMUONPainterRegistry.h
index 5e0fb2ab1e631e0069f3ffc467727b2947623cd9..296a0c9452339cf3db73eec7ecb9d0b6e4ec07be 100644 (file)
@@ -21,8 +21,6 @@
 
 class TGPopupMenu;
 class TObjArray;
-class AliMUONVTrackerData;
-class AliMUONVTrackerDataMaker;
 class AliMUONPainterMatrix;
 class TGMenuBar;
 
@@ -31,30 +29,12 @@ class AliMUONPainterRegistry : public TObject, public TQObject
 public:
   virtual ~AliMUONPainterRegistry();
 
-  AliMUONVTrackerDataMaker* DataMaker(Int_t i) const;
-
-  AliMUONVTrackerData* DataSource(Int_t i) const;
-  
-  AliMUONVTrackerData* DataSource(const char* name) const;
-  
-  void DataSourceWasRegistered(AliMUONVTrackerData* data); // *SIGNAL*
-  
-  void DataSourceWasUnregistered(AliMUONVTrackerData* data); // *SIGNAL*
-
-  void DataMakerWasRegistered(AliMUONVTrackerDataMaker* reader); // *SIGNAL*
-  
-  void DataMakerWasUnregistered(AliMUONVTrackerDataMaker* reader); // *SIGNAL*
-  
   Int_t FindIndexOf(AliMUONPainterMatrix* group) const;
   
   void HistoryMenuActivated(Int_t i);
   
   static AliMUONPainterRegistry* Instance();
   
-  Int_t NumberOfDataMakers() const;
-
-  Int_t NumberOfDataSources() const { return NumberOfDataMakers(); }
-
   Int_t NumberOfPainterMatrices() const;
 
   AliMUONPainterMatrix* PainterMatrix(Int_t i) const;
@@ -73,17 +53,11 @@ public:
   
   Int_t Register(AliMUONPainterMatrix* group);
   
-  void Register(AliMUONVTrackerDataMaker* reader);
-
   /// Set the menu bar where to put the history menu
   void SetMenuBar(TGMenuBar* bar) { fMenuBar = bar; }
   
   Bool_t Unregister(AliMUONPainterMatrix* group);
   
-  Bool_t Unregister(AliMUONVTrackerDataMaker* reader);
-
-  void DeleteZombies();
-  
 private:
   /// Not implemented
   AliMUONPainterRegistry();
@@ -95,13 +69,11 @@ private:
 private:
   static AliMUONPainterRegistry* fgInstance; ///< unique instance
   TObjArray* fPainterMatrices; ///< painter matrices
-  TObjArray* fDataMakers; ///< data makers
   TGPopupMenu* fHistoryMenu; ///< history menu
   TGMenuBar* fMenuBar; ///< Menu bar where to put the history menu
   Int_t fHistoryCounter; ///< index to get back history menu items
-  TObjArray* fZombies; ///< data readers to be deleted
   
-  ClassDef(AliMUONPainterRegistry,3) // Registry for AliMUONVPainter related stuff
+  ClassDef(AliMUONPainterRegistry,5) // Registry for AliMUONVPainter related stuff
 };
 
 #endif