]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONTriggerGUIbdmap.h
Also get stuff from directories
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerGUIbdmap.h
index 453e4ece1d4ac4104521f5fcea7bb84f06ccdf88..a15e2e1d3a00b9f4b071eab2fc5d1ffe6ce5319a 100644 (file)
@@ -30,6 +30,7 @@ class AliMUONTriggerCrateStore;
 class AliMUONMCDataInterface;
 class AliMUONDigitStoreV1;
 class AliMUONTriggerStoreV1;
+class AliMUONCalibrationData;
 class AliLoader;
 
 class AliMUONTriggerGUIbdmap : public TGFrame
@@ -37,28 +38,28 @@ class AliMUONTriggerGUIbdmap : public TGFrame
 
 public:
 
-  AliMUONTriggerGUIbdmap(const TGWindow *p, const TGWindow *main, UInt_t w, UInt_t h);
+  AliMUONTriggerGUIbdmap(const TGWindow *p, const TGWindow *mainWindow, UInt_t w, UInt_t h);
   virtual ~AliMUONTriggerGUIbdmap();
   
   /// set the name of the board gui window
   void SetName(const Char_t *name)         { fMain->SetWindowName(name); };
   /// set the board associated to this instance
-  void SetBoard(AliMUONTriggerGUIboard *b) { fBoard = b; };  
+  void SetBoard(AliMUONTriggerGUIboard * const b) { fBoard = b; };  
   /// set the board associated to this instance, from boards array and id
-  void SetBoard(TObjArray *boards, Int_t id) { 
+  void SetBoard(TObjArray * const boards, Int_t id) { 
     fBoards = boards;
     fBoard  = (AliMUONTriggerGUIboard*)boards->UncheckedAt(id); }
   /// set the current muon loader
-  void SetLoader(AliLoader *loader)        { fLoader = loader; };
+  void SetLoader(AliLoader * const loader)        { fLoader = loader; };
   /// set the MC data interface
-  void SetMCDataInterface(AliMUONMCDataInterface *mc) { fMCDataInterface = mc; };
+  void SetMCDataInterface(AliMUONMCDataInterface * const mc) { fMCDataInterface = mc; };
   /// set the digit store from raw data
-  void SetRawDigitStore(AliMUONDigitStoreV1 *ds) { fRawDigitStore = ds; };
+  void SetRawDigitStore(AliMUONDigitStoreV1 * const ds) { fRawDigitStore = ds; };
   /// set the trigger store from raw data
-  void SetRawTriggerStore(AliMUONTriggerStoreV1 *ts) { fRawTriggerStore = ts; };
+  void SetRawTriggerStore(AliMUONTriggerStoreV1 * const ts) { fRawTriggerStore = ts; };
 
   /// set the trigger boards manager
-  void SetCrateManager(AliMUONTriggerCrateStore *crates) { fCrateManager = crates; };
+  void SetCrateManager(AliMUONTriggerCrateStore * const crates) { fCrateManager = crates; };
 
   void Show();