ROOT logo
/**************************************************************************
 * Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
 *                                                                        *
 * Author: The ALICE Off-line Project.                                    *
 * Contributors are mentioned in the code where appropriate.              *
 *                                                                        *
 * Permission to use, copy, modify and distribute this software and its   *
 * documentation strictly for non-commercial purposes is hereby granted   *
 * without fee, provided that the above copyright notice appears in all   *
 * copies and that both the copyright notice and this permission notice   *
 * appear in the supporting documentation. The authors make no claims     *
 * about the suitability of this software for any purpose. It is          *
 * provided "as is" without express or implied warranty.                  *
 **************************************************************************/
#include "AliITSZPoint.h"
#include <Riostream.h>

///////////////////////////////////////////////////////////////////
//                                                               //
// Class used by AliITSVertexerZ                                 //
// Contains Z coordinates with their error                       //
// is sortable                                                   //
//                                                               //
///////////////////////////////////////////////////////////////////

ClassImp(AliITSZPoint)

//______________________________________________________________________
AliITSZPoint::AliITSZPoint():TObject(),
fZ(0.),
fErrz(0.){
  // Default constructor
}

//______________________________________________________________________
AliITSZPoint::AliITSZPoint(Float_t z, Float_t ez):TObject(),
fZ(z),
fErrz(ez){
  // Standard Constructor
}

//______________________________________________________________________
  AliITSZPoint::~AliITSZPoint(){
  // Destructor
  fZ=0.;
  fErrz=0.;
}

//______________________________________________________________________
void AliITSZPoint::Print(Option_t* /*option */) const {
  // print data members
  printf("Z projection %f , error %f \n",fZ,fErrz);
}
 AliITSZPoint.cxx:1
 AliITSZPoint.cxx:2
 AliITSZPoint.cxx:3
 AliITSZPoint.cxx:4
 AliITSZPoint.cxx:5
 AliITSZPoint.cxx:6
 AliITSZPoint.cxx:7
 AliITSZPoint.cxx:8
 AliITSZPoint.cxx:9
 AliITSZPoint.cxx:10
 AliITSZPoint.cxx:11
 AliITSZPoint.cxx:12
 AliITSZPoint.cxx:13
 AliITSZPoint.cxx:14
 AliITSZPoint.cxx:15
 AliITSZPoint.cxx:16
 AliITSZPoint.cxx:17
 AliITSZPoint.cxx:18
 AliITSZPoint.cxx:19
 AliITSZPoint.cxx:20
 AliITSZPoint.cxx:21
 AliITSZPoint.cxx:22
 AliITSZPoint.cxx:23
 AliITSZPoint.cxx:24
 AliITSZPoint.cxx:25
 AliITSZPoint.cxx:26
 AliITSZPoint.cxx:27
 AliITSZPoint.cxx:28
 AliITSZPoint.cxx:29
 AliITSZPoint.cxx:30
 AliITSZPoint.cxx:31
 AliITSZPoint.cxx:32
 AliITSZPoint.cxx:33
 AliITSZPoint.cxx:34
 AliITSZPoint.cxx:35
 AliITSZPoint.cxx:36
 AliITSZPoint.cxx:37
 AliITSZPoint.cxx:38
 AliITSZPoint.cxx:39
 AliITSZPoint.cxx:40
 AliITSZPoint.cxx:41
 AliITSZPoint.cxx:42
 AliITSZPoint.cxx:43
 AliITSZPoint.cxx:44
 AliITSZPoint.cxx:45
 AliITSZPoint.cxx:46
 AliITSZPoint.cxx:47
 AliITSZPoint.cxx:48
 AliITSZPoint.cxx:49
 AliITSZPoint.cxx:50
 AliITSZPoint.cxx:51
 AliITSZPoint.cxx:52
 AliITSZPoint.cxx:53