]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Adding missing comments
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 16 Nov 2007 12:29:37 +0000 (12:29 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 16 Nov 2007 12:29:37 +0000 (12:29 +0000)
(Diego)

MUON/AliMUONTriggerChamberEff.h
MUON/AliMUONTriggerEfficiencyCells.cxx
MUON/AliMUONTriggerEfficiencyCells.h

index 7646b218952e419135a364d8d43ecf1808285e08..8f24a7f4380d76432f49a578097076dd5f92951d 100644 (file)
@@ -74,7 +74,9 @@ protected:
     
 private:
     void CheckConstants() const;
+    /// Get max number of strips along x
     inline Int_t GetMaxX(Int_t cath){return (cath==0) ? 7 : 112;}
+    /// Get max number of strips along x
     inline Int_t GetMaxY(Int_t cath){return (cath==0) ? 64 : 1;}
 
     const AliMUONGeometryTransformer* fTransformer; //!< geometry transformer
index a273fa0feb86e27e874dfd00d3b36bbca2ee2d16..96071df5d7ac9d1e46b22f74125f27eeea6a931d 100755 (executable)
@@ -707,6 +707,12 @@ void AliMUONTriggerEfficiencyCells::DisplayEfficiency(Bool_t perSlat, const Char
 //__________________________________________________________________________
 Bool_t AliMUONTriggerEfficiencyCells::GetListsForCheck(const Char_t* geoFilename)
 {
+  //
+  /// Getting histograms for efficiency, 
+  /// map of fired strips entering efficiency calculations,
+  /// fits for checking switched-off elements in chambers.
+  //
+
   const Int_t kNumOfBoards = AliMpConstants::NofLocalBoards();
   const Float_t kChi2RedMax = 1.5;
   const Float_t kDummyFired = 1e-5;
index 97f2487d0b45440fdcf77aca6b313f4e690d5917..03816e30b846d1f195e4c51009672a8902369833 100755 (executable)
@@ -39,6 +39,7 @@ public:
   void DisplayEfficiency(Bool_t perSlat=kFALSE, const Char_t* geoFilename="geometry.root");
   Bool_t SumRunEfficiency(const AliMUONTriggerEfficiencyCells &other);
 
+  /// Set the list of fired strips
   void SetFiredStrips(TList *firedStrips){fFiredStrips = firedStrips;}
   void CheckFiredStrips(const Char_t *geoFilename="geometry.root");
                                 // Check for strips with lower counts than others:
@@ -83,10 +84,10 @@ private:
     TList *fNoCountHistoList; ///<list of efficiency denominators
     TList *fFiredStrips; ///<list of fired strips for efficiency check
 
-    TList *fDisplayHistoList; //! list of efficiency histograms for display
-    TList *fBoardLabelList; //! list of board labels for display
-    TList *fFiredFitHistoList; //! list of fired strips for checks
-    TList *fFiredDisplayHistoList; //! list of fired strips for display
+    TList *fDisplayHistoList; //!< list of efficiency histograms for display
+    TList *fBoardLabelList; //!< list of board labels for display
+    TList *fFiredFitHistoList; //!< list of fired strips for checks
+    TList *fFiredDisplayHistoList; //!< list of fired strips for display
 
     ClassDef(AliMUONTriggerEfficiencyCells,5) // Trigger efficiency store
 };