]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONRawWriter.h
Updated list of MUON libraries
[u/mrichter/AliRoot.git] / MUON / AliMUONRawWriter.h
index f87a8f26d709863ebc2bc56d6b27f7d602953e95..2e53d3aebea8f6d602b00f453230167c2a500447 100644 (file)
@@ -5,11 +5,11 @@
 
 /*$Id$*/
 
-/// \ingroup sim
+/// \ingroup base
 /// \class AliMUONRawWriter
 /// \brief Raw data class for trigger and tracker chambers
 ///
-/// \author Christian Finck and Laurent Aphecetche, Subatech
+//  Author Christian Finck and Laurent Aphecetche, Subatech
 
 #include <TObject.h>
 #include "AliRawDataHeader.h"
@@ -24,9 +24,8 @@ class AliMUONLocalStruct;
 class AliMpExMap;
 class AliMUONBusStruct;
 class AliMUONGlobalTrigger;
-class AliMpBusPatch;
+class AliMpDDLStore;
 class AliMUONTriggerCrateStore;
-class AliMpSegFactory;
 class TStopwatch;
 
 class AliMUONRawWriter : public TObject 
@@ -48,15 +47,14 @@ protected:
   Int_t WriteTriggerDDL();
   
 private:
-
-    void AddData(const AliMUONBusStruct& event);
-
   Int_t GetBusPatch(const AliMUONDigit& digit) const;
-  Int_t GetBusPatch(Int_t detElemId, Int_t manuId) const;
-
-  Int_t GetGlobalTriggerPattern(const AliMUONGlobalTrigger* gloTrg) const;
 
 private:
+  /// Not implemented copy constructor
+  AliMUONRawWriter (const AliMUONRawWriter& rhs); // copy constructor
+  /// Not implemented assignment operator
+  AliMUONRawWriter& operator=(const AliMUONRawWriter& rhs);
+
 
   AliMUONData*  fMUONData;           //!< Data container for MUON subsystem 
  
@@ -68,26 +66,16 @@ private:
   AliMUONRegHeader*   fRegHeader;    //!< DDL regional header class pointers
   AliMUONLocalStruct* fLocalStruct;  //!< DDL local structure class pointers
 
-  AliMpBusPatch*            fBusPatchManager; //!< buspatch versus DE's & DDL
-  AliMUONTriggerCrateStore* fCrateManager;    //!< Crate array
+  AliMpDDLStore*            fDDLStore;     //!< DDL store pointer
+  AliMUONTriggerCrateStore* fCrateManager; //!< Crate array
 
   Bool_t fScalerEvent;               ///< flag to generates scaler event
 
   AliRawDataHeader    fHeader;           ///< header of DDL
 
-  static Int_t fgManuPerBusSwp1B[12];   //!< array containing the first manuId for each buspatch st1, Bending
-  static Int_t fgManuPerBusSwp1NB[12];  //!< array containing the first manuId for each buspatch st1, NBending
-
-  static Int_t fgManuPerBusSwp2B[12];   //!< array containing the first manuId for each buspatch st2, Bending
-  static Int_t fgManuPerBusSwp2NB[12];  //!< array containing the first manuId for each buspatch st2, NBending
   
   TStopwatch* fTimers;             //!< time watchers
   
-  AliMpSegFactory* fSegFactory;         //!< mapping segmentation factory
-  
-  AliMUONRawWriter (const AliMUONRawWriter& rhs); // copy constructor
-  AliMUONRawWriter& operator=(const AliMUONRawWriter& rhs); // assignment operator
-
   ClassDef(AliMUONRawWriter,2) // MUON cluster reconstructor in ALICE
 };