]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDmatrix.cxx
Coding conventions
[u/mrichter/AliRoot.git] / TRD / AliTRDmatrix.cxx
index 5b40846b772776f84ff5b2db70d1b4f7ef0c5f19..e98e5d87fc95ded14ab0d63a6fe23bf2ee226e1a 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.10  2000/11/20 08:56:51  cblume
+Fix the binning of the histograms
+
 Revision 1.9  2000/11/01 14:53:21  cblume
 Merge with TRD-develop
 
@@ -60,6 +63,7 @@ Introduction of the Copyright and cvs Log
 //                                                                           //
 //  Contains the pixel information for one TRD chamber                       //
 //                                                                           //
+//                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
 #include <TObjArray.h>
@@ -525,6 +529,9 @@ Int_t AliTRDmatrix::GetTrack(Int_t iRow, Int_t iCol, Int_t iTime
 //_____________________________________________________________________________
 Int_t AliTRDmatrix::GetIndex(Int_t iRow, Int_t iCol, Int_t iTime) const
 {
+  //
+  // Get the index of a given pixel
+  //
 
   if ((iRow  >= 0) && (iRow  < fRow ) &&
       (iCol  >= 0) && (iCol  < fCol ) &&
@@ -540,6 +547,9 @@ Int_t AliTRDmatrix::GetIndex(Int_t iRow, Int_t iCol, Int_t iTime) const
 //_____________________________________________________________________________
 AliTRDpixel *AliTRDmatrix::GetPixel(Int_t iRow, Int_t iCol, Int_t iTime) const
 {
+  //
+  // Get one pixel
+  //
 
   Int_t iPixel = GetIndex(iRow,iCol,iTime);
   if (iPixel < 0) {