]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONTriggerEfficiencyCells.h
In AliMUONCheck:
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerEfficiencyCells.h
index 22ad6f1af55bdb7a647c2cf818122081053f48b4..4df354b0981bb728255f6a6bd6bca7b3991a145b 100755 (executable)
@@ -1,6 +1,8 @@
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
+// $Id$
+
 /// \ingroup calib
 /// \class AliMUONTriggerEfficiencyCells
 /// \brief Store and give access to the trigger chamber efficiency.
 #define ALIMUONTRIGGEREFFICIENCYCELLS_H
 
 #include "TObject.h"
-#include "TArrayF.h"
-#include "TArrayI.h"
-#include "TVector2.h"
-#include "TString.h"
-#include "TMatrix.h"
+class TH1F;
+class TList;
 
 class AliMUONTriggerEfficiencyCells : public TObject
 {
 public:
   AliMUONTriggerEfficiencyCells();
-  AliMUONTriggerEfficiencyCells(const char* filename);
+  AliMUONTriggerEfficiencyCells(const Char_t* filename, const Char_t* listname="triggerChamberEff");
+  AliMUONTriggerEfficiencyCells(TList *countHistoList);
+
+  AliMUONTriggerEfficiencyCells(const AliMUONTriggerEfficiencyCells& other); // copy constructor
+  AliMUONTriggerEfficiencyCells& operator=(const AliMUONTriggerEfficiencyCells& other); // assignment operator
 
   virtual ~AliMUONTriggerEfficiencyCells();
 
-  void GetCellEfficiency(Int_t detElemId, Float_t x, Float_t y, Float_t &eff1, Float_t &eff2) const;
-  void GetCellEfficiency(Int_t detElemId, Int_t localBoard, Float_t &eff1, Float_t &eff2) const;
-    
-  void IsTriggered(Int_t detElemId, Float_t x, Float_t y, Bool_t &trig1, Bool_t &trig2) const;
-  void IsTriggered(Int_t detElemId, Int_t localBoard, Bool_t &trig1, Bool_t &trig2) const;
+  enum {
+    kBendingEff,     ///< Bending plane fired
+    kNonBendingEff,  ///< Non-bending plane fired
+    kBothPlanesEff,  ///< Both planes fired
+    kAllTracks,      ///< tracks used for calculation
+    kNcounts         ///< Number of count type
+  };
 
-  TVector2 ChangeReferenceFrame(Float_t x, Float_t y, Float_t x0, Float_t y0);
+  enum {
+    kHboardCount,   ///< Counts per board index 
+    kHslatCount,    ///< Counts per slat index
+    kHchamberCount  ///< Counts per chamber index
+  };
+
+  const Char_t* GetHistoName(Int_t histoType, Int_t countType, 
+                            Int_t chamber = -1);
+
+  /// Get list of histograms
+  TList* GetHistoList() { return fCountHistoList; }
+
+  TH1F* GetOldEffHisto(Int_t hType, Int_t ich, Int_t icath) const; // obsolete
 
-  void Reset();
-    
 protected:
-    TArrayI CellByCoord(Int_t detElemId, Float_t x, Float_t y) const;
-    void ReadFile(const char* filename="$ALICE_ROOT/MUON/data/efficiencyCells.dat");
+    void ResetHistos(Bool_t deleteObjects = kFALSE);
+
+    void ReadFile(const Char_t* filename, 
+                 const Char_t* listname);
 
 private:
     void CheckConstants() const;
-    Int_t FindChamberIndex(Int_t detElemId) const;
-    Int_t FindSlatIndex(Int_t detElemId) const;
-    void ReadFileXY(ifstream &file);
-    void ReadFileBoards(ifstream &file);
-    void ReadHistoBoards(const char* filename="MUON.TriggerEfficiencyMap.root");
-    
-    static const Int_t fgkNcells=80;   ///< Number of cells
+
     static const Int_t fgkNcathodes=2; ///<Number of cathodes
     static const Int_t fgkNchambers=4; ///<Number of chambers
     static const Int_t fgkNplanes=8;   ///<Number of planes
-    static const Int_t fgkNslats=18;   ///<Number of slats
-
     
-    TMatrixF fCellContent[fgkNplanes][fgkNslats]; ///< the cells content
-    TArrayF  fCellSize[fgkNplanes];    ///< the size of the cells
-    TArrayI  fCellNumber[fgkNplanes];  ///< id of the cells
-    TArrayF  fBoardContent[fgkNplanes];///< the boards content
+    TH1F *fBoardEfficiency[fgkNplanes];///< the boards content (obsolete)
+    TH1F *fSlatEfficiency[fgkNplanes];///< the slats content (obsolete)
+
+    TList *fCountHistoList; ///< list of histograms for efficiency calculation
+    TList *fNoCountHistoList; ///<list of efficiency denominators (obsolete)
+    TList *fFiredStrips; ///<list of fired strips for efficiency check (obsolete)
 
-    ClassDef(AliMUONTriggerEfficiencyCells,3) // Trigger efficiency store
+    ClassDef(AliMUONTriggerEfficiencyCells,6) // Trigger efficiency store
 };
 #endif