]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSVertexer.h
Changes to obey our coding conventions
[u/mrichter/AliRoot.git] / ITS / AliITSVertexer.h
index 8b0df00a773dc7920382b53b339d842482c9e02c..25a80e869396b2a71598b490796718d458d4cc11 100644 (file)
@@ -1,11 +1,7 @@
 #ifndef ALIITSVERTEXER_H
 #define ALIITSVERTEXER_H
 
-#include <TTree.h>
-#include <TFile.h>
-#include <AliITSVertex.h>
-#include <AliRun.h>
-
+#include<TObject.h>
 
 ///////////////////////////////////////////////////////////////////
 //                                                               //
@@ -13,6 +9,10 @@
 //                                                               //
 ///////////////////////////////////////////////////////////////////
 
+class TFile;
+class TString;
+class TTRee;
+class AliITSVertex;
 
 
 class AliITSVertexer : public TObject {
@@ -36,6 +36,12 @@ class AliITSVertexer : public TObject {
 
  
  protected:
+    // copy constructor (NO copy allowed: the constructor is protected
+    // to avoid misuse)
+    AliITSVertexer(const AliITSVertexer& vtxr);
+    // assignment operator (NO assignment allowed)
+    AliITSVertexer& operator=(const AliITSVertexer& /* vtxr */);
+
     AliITSVertex *fCurrentVertex;  //! pointer to the vertex of the current
                                    //  event
     Int_t fFirstEvent;          // First event to be processed by FindVertices