]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/src/AliL3Vertex.cxx
Coding conventions.
[u/mrichter/AliRoot.git] / HLT / src / AliL3Vertex.cxx
index cbd2365e70b485970cc0b9e2e7e3524ff4f5e3b6..29532e9fdb8de136794f7b4e04f071265874cf40 100644 (file)
@@ -1,26 +1,31 @@
-//Author:        Uli Frankenfeld
-//Last Modified: 07.11.2000
+// @(#) $Id$
 
+// Author: Uli Frankenfeld <mailto:franken@fi.uib.no>
+//*-- Copyright &copy ALICE HLT Group
+
+#include "AliL3StandardIncludes.h"
 #include "AliL3RootTypes.h"
-#include <iostream.h>
 #include "AliL3Logging.h"
+#include "AliL3VertexData.h"
 #include "AliL3Vertex.h"
 
+/** \class AliL3Vertex
+<pre>
 //_____________________________________________________________
-//
 // AliL3Vertex
 //
-// stores the information of the vertex position
+// Stores the information of the vertex position
 //
-
+</pre>
+*/
 
 ClassImp(AliL3Vertex)
+
 AliL3Vertex::AliL3Vertex(){
   //
   // default constructor for the AliL3Vertex class. 
   //
 
-  //Set vertex to zero.
   SetZero();  
 }
 
@@ -30,8 +35,9 @@ AliL3Vertex::~AliL3Vertex(){
   //
 }
 
-void AliL3Vertex::SetZero(){
-  // doit
+void AliL3Vertex::SetZero()
+{
+  // set vertex to zero
   SetX(0);
   SetY(0);
   SetZ(0);
@@ -40,12 +46,12 @@ void AliL3Vertex::SetZero(){
   SetZErr(1);
   fR=0;
   fPhi=0;
-
   fMWxy = 1.;
 }
 
-void AliL3Vertex::Read(AliL3VertexData *vertex){
-  // doit
+void AliL3Vertex::Read(const AliL3VertexData *vertex)
+{
+  // read vertex
   SetX(vertex->fX);
   SetY(vertex->fY);
   SetZ(vertex->fZ);
@@ -54,7 +60,6 @@ void AliL3Vertex::Read(AliL3VertexData *vertex){
   SetZErr(vertex->fZErr);
   fR=0;
   fPhi=0;
-
   fMWxy = 1.;
 }