]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSVertexerIons.h
New QA classes (Yves)
[u/mrichter/AliRoot.git] / ITS / AliITSVertexerIons.h
index 67d7fcc4b69147475e837c627ce0ad51eabfa49c..24e9bbdba6a85dd75a697e30fcfae87b14e089e2 100644 (file)
@@ -2,7 +2,6 @@
 #define ALIITSVERTEXERIONS_H
 
 #include <AliITSVertexer.h>
-#include <TH1F.h>
 
 //////////////////////////////////////////////////////////////////////
 // AliITSVertexerIons  is a class for full 3D primary vertex        //
@@ -20,7 +19,8 @@
 //                                                                  //       
 //////////////////////////////////////////////////////////////////////
 
-class AliITS;
+
+class TH1F;
 
 class AliITSVertexerIons : public AliITSVertexer {
 
@@ -41,12 +41,14 @@ class AliITSVertexerIons : public AliITSVertexer {
   Double_t FindMaxAround(Double_t point, TH1F *h, Double_t distance);
 
  protected:
-  AliITS *fITS;            //! pointer to the AliITS object
+
   Int_t fNpThreshold;      // minimum number of rec points for vertexing
-  Double_t fMaxDeltaPhi;
-  Double_t fMaxDeltaZ;
+  Double_t fMaxDeltaPhi;   // Maximum phi difference for rec points correlation
+  Double_t fMaxDeltaZ;     // Maximum z difference for rec points correlation
+  AliITSVertexerIons(const AliITSVertexerIons &source); // copy constructor (NO copy allowed: the constructor is protected to avoid misuse)   
+  AliITSVertexerIons& operator=(const AliITSVertexerIons &source); // assignment operator (NO assignment allowed)
 
-  ClassDef(AliITSVertexerIons,3);
+  ClassDef(AliITSVertexerIons,4);
 };
 
 #endif