]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
remove trigger apt cut and coding violation RS1 fixed (Philippe)
authorpcrochet <pcrochet@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 24 Oct 2006 15:34:32 +0000 (15:34 +0000)
committerpcrochet <pcrochet@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 24 Oct 2006 15:34:32 +0000 (15:34 +0000)
MUON/AliMUONTriggerLut.cxx
MUON/AliMUONTriggerLut.h

index 5be553b7f6314d6b14d9a90e695c11b79c5789b6..82c8a38ce43245be764f7d90d8ab92880c185df2 100644 (file)
 
 /* $Id$ */
 
-/// \class AliMUONTriggerLut
-/// Local Trigger Look Up Table - reading interface
-/// LUT data is stored into TH3S histograms and readout 
-/// from the Local Trigger algorithm.
+/// -----------------------
+/// Class AliMUONTriggerLut
+/// -----------------------
+/// Local Trigger Look Up Table
+/// reading interface LUT data is stored into TH3S histograms and readout 
+/// from the Local Trigger algorithm
+/// Author: Philippe Crochet
 
 #include "AliMUONTriggerLut.h"
 
@@ -100,7 +103,7 @@ AliMUONTriggerLut::ReadFromFile(const char* filename)
 //----------------------------------------------------------------------
 void AliMUONTriggerLut::GetLutOutput(Int_t circuit, Int_t xstrip, Int_t idev,
                                     Int_t ystrip, Int_t lutLpt[2], 
-                                    Int_t lutHpt[2], Int_t lutApt[2])
+                                    Int_t lutHpt[2])
 {
 /// Return output of LuT for corresponding TH3S  
 
@@ -138,7 +141,7 @@ void AliMUONTriggerLut::GetLutOutput(Int_t circuit, Int_t xstrip, Int_t idev,
   bin    =          fHptUnde->GetBin(circuit,xstrip,idev);
   binc   = (Short_t)fHptUnde->GetBinContent(bin);
   if ((binc & mask)!=0) lutHpt[0]=lutHpt[1]=1;
-
+/*
   // All pts.............................................
   bin    =          fAptPlus->GetBin(circuit,xstrip,idev);
   binc   = (Short_t)fAptPlus->GetBinContent(bin);
@@ -151,7 +154,7 @@ void AliMUONTriggerLut::GetLutOutput(Int_t circuit, Int_t xstrip, Int_t idev,
   bin    =          fAptUnde->GetBin(circuit,xstrip,idev);
   binc   = (Short_t)fAptUnde->GetBinContent(bin);
   if ((binc & mask)!=0) lutApt[0]=lutApt[1]=1;
-
+*/
 }
 
 //----------------------------------------------------------------------
index 3cefebe71fbe0a3abf98d693911aeca8b11cd0aa..415d6053f7745002ac81bcc399012c5c4286c6a3 100644 (file)
@@ -9,6 +9,8 @@
 /// \ingroup base
 /// \class AliMUONTriggerLut
 /// \brief MUON trigger look up table class 
+///
+/// \author Philippe Crochet
 
 #include <TNamed.h>
 
@@ -24,7 +26,7 @@ class AliMUONTriggerLut : public TNamed
   void ReadFromFile(const char* filename);
   
   void GetLutOutput(Int_t circuit, Int_t xstrip, Int_t idev, Int_t ystrip, 
-                   Int_t lutLpt[2], Int_t lutHpt[2], Int_t lutApt[2]);
+                   Int_t lutLpt[2], Int_t lutHpt[2]);
 
  protected:
   // assignment operator