1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
16 /////////////////////////////////////////////////////////////////////
18 // class AliSurveyPoint //
19 // Retrieve and Convert survey data into ROOT Objects //
21 /////////////////////////////////////////////////////////////////////
23 #include "AliSurveyPoint.h"
25 ClassImp(AliSurveyPoint)
27 //_____________________________________________________________________________
28 AliSurveyPoint::AliSurveyPoint():
43 //_____________________________________________________________________________
44 AliSurveyPoint::AliSurveyPoint(TString name, Float_t x, Float_t y,
45 Float_t z, Float_t precX, Float_t precY,
46 Float_t precZ, Char_t type, Bool_t Target):
61 //_____________________________________________________________________________
62 AliSurveyPoint::~AliSurveyPoint() {
67 //_____________________________________________________________________________
68 void AliSurveyPoint::PrintPoint() {
69 // Prints X, Y and Z coordinates of the point
70 printf("Point Coordinates \"%s\": %f %f %f\n", (const char*) fPointName, fX, fY, fZ);