]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDclusterizer.h
New directory for the VMC tests (Ivana, Eva)
[u/mrichter/AliRoot.git] / TRD / AliTRDclusterizer.h
index 55d94ba1c033db33ece2e16c5a51e487d02a0ce3..624cbd5847cd01ce0b23faa9d295602fc82e03f5 100644 (file)
@@ -51,12 +51,12 @@ class AliTRDclusterizer : public TNamed
 
   struct MaxStruct
   {
-    Int_t       row;
-    Int_t       col;
-    Int_t       time;
-    Short_t     signals[3];
-    UChar_t     padStatus;
-    Bool_t      fivePad;
+    Int_t       row;           // row of the current cluster candidate
+    Int_t       col;           // col of the current cluster candidate
+    Int_t       time;          // time -"-
+    Short_t     signals[3];    // signals of the maximum pad and it's twon neigbours
+    UChar_t     padStatus;     // padStatus of the current cluster candidate
+    Bool_t      fivePad;       // is this cluster candidate part of a 5 pad cluster (two overlaping clusters)?
   MaxStruct():row(-1),col(0),time(0),padStatus(0),fivePad(kFALSE)
       {memset(signals, 0, 3*sizeof(Short_t));}
     MaxStruct &operator=(const MaxStruct &a)