]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Coding violations...
authorcvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 18 Jun 2004 10:45:22 +0000 (10:45 +0000)
committercvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 18 Jun 2004 10:45:22 +0000 (10:45 +0000)
HLT/hough/AliL3HoughTransformer.cxx
HLT/hough/AliL3HoughTransformer.h
HLT/hough/AliL3HoughTransformerRow.cxx
HLT/hough/AliL3HoughTransformerRow.h

index 7350cdf4986844a30bc480a46f94a948caa9a0df..0cf36f5ab9117ab2550e2e566dfbf6e71a0b2af1 100644 (file)
@@ -745,7 +745,7 @@ void AliL3HoughTransformer::TransformLineC(Int_t *rowrange,Float_t *phirange)
   delete [] digits;
 }
 
-Int_t AliL3HoughTransformer::GetTrackID(Int_t etaindex,Double_t kappa,Double_t psi)
+Int_t AliL3HoughTransformer::GetTrackID(Int_t etaindex,Double_t kappa,Double_t psi) const
 {
   // Returns the MC label for a given peak found in the Hough space
   if(!fDoMC)
index 918da5b3ccd54694d393cf4868dd2358217bd782..b37731f2ce99b75a21ad0538bb8db886b6aa028f 100644 (file)
@@ -29,7 +29,7 @@ class AliL3HoughTransformer : public AliL3HoughBaseTransformer {
   void GetEtaIndexes(Double_t eta,Int_t *indexes) const;
   AliL3Histogram *GetHistogram(Int_t etaindex);
   Double_t GetEta(Int_t etaindex,Int_t slice) const;
-  Int_t GetTrackID(Int_t etaindex,Double_t kappa,Double_t psi);
+  Int_t GetTrackID(Int_t etaindex,Double_t kappa,Double_t psi) const;
   
  private:
   
index 0694a46a6e677700e4bac9295bfb2e6defe2ac25..a1ea8e8b756a2f4fcae0952a04505b0123538e0c 100644 (file)
@@ -789,7 +789,7 @@ void AliL3HoughTransformerRow::TransformCircle()
   delete [] etaclust;
 }
 
-Int_t AliL3HoughTransformerRow::GetTrackID(Int_t etaindex,Double_t kappa,Double_t psi)
+Int_t AliL3HoughTransformerRow::GetTrackID(Int_t etaindex,Double_t kappa,Double_t psi) const
 {
   // Returns the MC label for a given peak found in the Hough space
   if(!fDoMC)
index e210b4479f0d327973f7825410a8bf66d95349c8..41ff466dd94cc49c41a18fd464e822330628bbf3 100644 (file)
@@ -30,7 +30,7 @@ class AliL3HoughTransformerRow : public AliL3HoughBaseTransformer {
   Int_t GetEtaIndex(Double_t eta) const;
   AliL3Histogram *GetHistogram(Int_t etaindex);
   Double_t GetEta(Int_t etaindex,Int_t slice) const;
-  Int_t GetTrackID(Int_t etaindex,Double_t kappa,Double_t psi);
+  Int_t GetTrackID(Int_t etaindex,Double_t kappa,Double_t psi) const;
   UChar_t *GetRowCount(Int_t etaindex);
   UChar_t *GetGapCount(Int_t etaindex);
   UChar_t *GetCurrentRowCount(Int_t etaindex);