]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/EVE/AliHLTEveTRD.h
Fixes for parameters aliases
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEveTRD.h
index f2d4e9a5eff8b5b222e839ba94b02af56ef54ecb..160ffa69624dc1b666cbc05d7e71bc498b7bcded 100644 (file)
@@ -1,18 +1,20 @@
-/* This file is property of and copyright by the ALICE HLT Project        *
- * ALICE Experiment at CERN, All rights reserved.                         *
- * See cxx source for full Copyright notice                               */
+//-*- Mode: C++ -*-
+// $Id$
+#ifndef ALIHLTEVETRD_H
+#define ALIHLTEVETRD_H
+//* This file is property of and copyright by the ALICE HLT Project        * 
+//* ALICE Experiment at CERN, All rights reserved.                         *
+//* See cxx source for full Copyright notice                               *
 
-/// @file   AliHLTEveCalo.h
+/// @file   AliHLTEveTRD.h
 /// @author Svein Lindal
 /// @brief  TRD Instance of Eve display processor
 
-#ifndef ALIHLTEVETRD_H
-#define ALIHLTEVETRD_H
-
 #include "AliHLTEveBase.h"
 class TEvePointSetArray;
 class TEvePointSet;
 class TH1F;
+class TClonesArray;
 
 class AliHLTEveTRD : public AliHLTEveBase {
 
@@ -37,7 +39,7 @@ private:
   /** copy constructor prohibited */
   AliHLTEveTRD(const AliHLTEveTRD&);
   /** assignment operator prohibited */
-  AliHLTEveTRD& operator = (const AliHLTEveTRD );
+  AliHLTEveTRD& operator = (const AliHLTEveTRD& );
 
   /** Create clusters pointset */
   TEvePointSet * CreatePointSet();
@@ -45,7 +47,7 @@ private:
   TEvePointSetArray * CreatePointSetArray();
 
   /** Proces clusters block */
-  Int_t ProcessClusters( AliHLTHOMERBlockDesc * block, TEvePointSet * cont, TEvePointSetArray * contCol );
+  Int_t ProcessClusters( AliHLTHOMERBlockDesc * block, TEvePointSetArray * contCol );
 
   /** Inherited from AliHLTEveBase */
   void AddHistogramsToCanvas(AliHLTHOMERBlockDesc* block, TCanvas * canvas, Int_t &cdCount );
@@ -53,6 +55,7 @@ private:
   TEvePointSet * fEveClusters;         //clusters pointset
   TEvePointSetArray * fEveColClusters; //Color coded clusters pointset
   const Int_t fNColorBins;    //Number of colorbins for the colored clusters
+  TClonesArray* fClusterArray;
 
   ClassDef(AliHLTEveTRD, 0);
 };