]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpDDLStore.h
Replacement of AliMpIntPair object with algoritmic
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpDDLStore.h
index 68b888ae981f13adf99c46df31b28796e1f028cd..d9645c23bde7d0327e03f718e2fced745a67071c 100644 (file)
 #ifndef ALI_MP_DDL_STORE_H
 #define ALI_MP_DDL_STORE_H
 
+#include "AliMpExMap.h"
+#include "AliMpRegionalTrigger.h"
 #include <TObject.h>
 #include <TObjArray.h>
 #include <TArrayI.h>
 
-#include "AliMpExMap.h"
-#include "AliMpIntPair.h"
 
 class AliMpDDL;
 class AliMpDetElement;
 class AliMpBusPatch;
-class AliMpDEStore;
+class AliMpLocalBoard;
+class AliMpTriggerCrate;
+class AliMpDataStreams;
 class TArrayI;
 
 class AliMpDDLStore : public  TObject {
 
   public:
-    AliMpDDLStore(TRootIOCtor* /*ioCtor*/);
+    AliMpDDLStore(TRootIOCtor* ioCtor);
     virtual ~AliMpDDLStore();
     
     // static access method
-    static AliMpDDLStore* Instance(); 
+    static AliMpDDLStore* Instance(Bool_t warn = true); 
+    static AliMpDDLStore* ReadData(const AliMpDataStreams& dataStreams,
+                                   Bool_t warn = true);
     
     // methods
-    AliMpDDL*         GetDDL(Int_t ddlId, Bool_t warn = true) const;
-    AliMpDetElement*  GetDetElement(Int_t detElemId, Bool_t warn = true) const;
-    AliMpBusPatch*    GetBusPatch(Int_t busPatchId, Bool_t warn = true) const;
-
+    AliMpDDL*          GetDDL(Int_t ddlId, Bool_t warn = true) const;
+    AliMpDetElement*   GetDetElement(Int_t detElemId, Bool_t warn = true) const;
+    AliMpBusPatch*     GetBusPatch(Int_t busPatchId, Bool_t warn = true) const;
+    AliMpLocalBoard*   GetLocalBoard(Int_t localBoardId, Bool_t warn = true) const;
+    AliMpTriggerCrate* GetTriggerCrate(TString crateName, Bool_t warn = true) const;
+    AliMpTriggerCrate* GetTriggerCrate(Int_t ddlId, Int_t index, Bool_t warn = true) const;
+
+    /// Return regional trigger object
+    const AliMpRegionalTrigger*  GetRegionalTrigger() const { return &fRegionalTrigger; }
+    
     Int_t  GetDEfromBus(Int_t busPatchId) const;
+    Int_t  GetDEfromLocalBoard(Int_t localBoardId, Int_t chamberId) const;
+    Int_t  GetNextDEfromLocalBoard(Int_t localBoardId, Int_t chamberId) const;
+    Int_t  GetPreviousDEfromLocalBoard(Int_t localBoardId, Int_t chamberId) const;
+    
     Int_t  GetDDLfromBus(Int_t busPatchId) const;
     Int_t  GetBusPatchId(Int_t detElemId, Int_t manuId) const;
-    
-    AliMpIntPair  GetDetElemIdManu(Int_t manuSerial) const;
 
+    Long_t GetLinkPortId(Int_t busPatchId) const;
+
+    /// Print info of all manus
     void PrintAllManu() const;
+    
+    // Set methods
+    void SetRegionalTrigger(const AliMpRegionalTrigger& regionalTrigger);
 
+    TIterator* CreateBusPatchIterator() const; 
+    
   private:
+    AliMpDDLStore(const AliMpDataStreams& dataStreams);
+    /// Not implemented
     AliMpDDLStore();
     /// Not implemented
     AliMpDDLStore(const AliMpDDLStore& rhs);
@@ -63,20 +85,30 @@ class AliMpDDLStore : public  TObject {
     Int_t  GetManuListIndex(Int_t detElemId) const;
     Int_t  GetBusPatchIndex(Int_t detElemId, Int_t manuId) const;
     Bool_t ReadDDLs();
+    Bool_t ReadTrigger();
+    Bool_t SetTriggerDDLs();
     Bool_t SetManus();
+    Bool_t ReadBusPatchSpecial();
     Bool_t SetPatchModules();
+    Bool_t ReadBusPatchInfo();
+    Int_t  GetLocalBoardId(TString name) const;
 
     // static data members     
     static AliMpDDLStore* fgInstance; ///< Singleton instance
     static const Int_t    fgkNofDDLs; ///< Total number of DDLs
+    static const Int_t    fgkNofTriggerDDLs; ///< Total number of trigger DDLs
+    static const TString  fgkRevertKeyword; ///< A keyword for ReadBusPatchSpecial()
+    static const TString  fgkExplicitKeyword; ///< A keyword for ReadBusPatchSpecial()
 
     // data members    
+    const AliMpDataStreams&  fkDataStreams;  //!< Data streams
     TObjArray     fDDLs;           ///< Array of DDL objects
-    AliMpDEStore* fDetElements;    ///< Detection element store
     AliMpExMap    fBusPatches;     ///< The map of bus patches per their IDs
     TArrayI       fManuList12[16]; ///< Arrays of 1st manu in bus
-
-  ClassDef(AliMpDDLStore,1)  // The manager class for definition of detection element types
+    TArrayI       fManuBridge2[16]; ///< Arrays of manu number before the bridge in buspatch
+    AliMpRegionalTrigger fRegionalTrigger; ///< Regional trigger
+        
+  ClassDef(AliMpDDLStore,5)  // The manager class for definition of detection element types
 };
 
 #endif //ALI_MP_DDL_STORE_H