]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Not-implemented methods should be defined as private
authorcvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 14 May 2007 16:09:16 +0000 (16:09 +0000)
committercvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 14 May 2007 16:09:16 +0000 (16:09 +0000)
STEER/AliKFVertex.h

index 060151bc97a67df7e4744681d6ee495ae1ffb0d3..000fcb8cd39d46ff7849302162e3a5b85936db2f 100644 (file)
@@ -54,11 +54,6 @@ class AliKFVertex :public AliKFParticle
   //*
 
 
-  //* Simple way to construct vertices ex. D0 = Pion + Kaon; 
-
-  AliKFParticle operator +( const AliKFParticle &Daughter ) const;
-
-  void operator +=( const AliKFParticle &Daughter );  
 
   //* Subtract particle from vertex
 
@@ -71,6 +66,14 @@ class AliKFVertex :public AliKFParticle
   void ConstructPrimaryVertex( const AliKFParticle *vDaughters[], int NDaughters, 
                               Double_t ChiCut=3.5  );
 
+private:
+
+  //* Simple way to construct vertices ex. D0 = Pion + Kaon - NOT IMPLEMENTED 
+
+  AliKFParticle operator +( const AliKFParticle &Daughter ) const;
+
+  void operator +=( const AliKFParticle &Daughter );  
+
   ClassDef( AliKFVertex, 1 );
 
 };