]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARTRecPoint.cxx
macros for reading RecPoints
[u/mrichter/AliRoot.git] / START / AliSTARTRecPoint.cxx
CommitLineData
ee74718b 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
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 **************************************************************************/
15
16/* $Id$ */
17/////////////////////////////////////////////////////////////////////////
18// Class AliSTARTRecPoint for START time and ADC signals
19// fTimeRight - right side TOF signal
20// fTimeLeft - left side TOF signal
21// fTimeBestRight - TOF first particle on the right side
22// TimeBestLeft - TOF first particle on the left side
23// fTimeAverage = (fTimeBestRight + TimeBestLeft ) /2. START signal
24// fVertex - vertex position
25//
26///////////////////////////////////////////////////////////////////////
27
28
29
30
ee74718b 31#include "AliSTARTRecPoint.h"
32#include <Riostream.h>
33
34ClassImp(AliSTARTRecPoint)
35
36//------------------------------------
51f1bdcf 37 AliSTARTRecPoint::AliSTARTRecPoint() : TObject(), fTimeAverage(0),fVertexPosition(0),fTimeBestRight(0),fTimeBestLeft(0),fMultC(0),fMultA(0)
ee74718b 38{
39 //ctor
db173afc 40 fTimeAverage=99999;
41 fTimeBestRight=99999;
42 fTimeBestLeft=99999;
43 fVertexPosition=99999;
44 fMultA=0;
45 fMultC=0;
4c7da157 46 for (Int_t i=0; i<24; i++) { fTime[i]=0; fADC[i]=0; fADCLED[i]=0;}
ee74718b 47}