#ifndef ALIT0RECPOINT_H #define ALIT0RECPOINT_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ #include //___________________________________________ class AliT0RecPoint: public TObject { //////////////////////////////////////////////////////////////////////// public: AliT0RecPoint(); AliT0RecPoint(const AliT0RecPoint &o); AliT0RecPoint& operator= (const AliT0RecPoint &) { return *this;} virtual ~AliT0RecPoint() {} Double32_t GetMeanTime() const {return fTimeAverage;} Int_t GetOnlineMean() const {return fTimeOnlineMean;} Double32_t GetBestTimeA() const {return fTimeBestA ;} Double32_t GetBestTimeC() const {return fTimeBestC ;} Float_t GetMultC() const {return fMultC;} Float_t GetMultA() const {return fMultA;} Double32_t GetVertex() const {return fVertexPosition;} void SetMeanTime(Double32_t time) {fTimeAverage=time;} void SetOnlineMean(Int_t time) {fTimeOnlineMean=time;} void SetTimeBestA( Double32_t time) {fTimeBestA = time;} void SetTimeBestC( Double32_t time) {fTimeBestC = time;} void SetVertex( Double32_t vertex) {fVertexPosition= vertex;} void SetMultC(Float_t mult) {fMultC = mult;} void SetMultA(Float_t mult) {fMultA = mult;} void SetTime (Int_t ipmt, Double32_t time) { fTime[ipmt] = time;} Double32_t GetTime (Int_t ipmt)const { return fTime[ipmt];} void SetAmp (Int_t ipmt, Double32_t adc) { fADC[ipmt] = adc;} Double32_t GetAmp (Int_t ipmt) const{ return fADC[ipmt];} void SetAmpLED (Int_t ipmt, Double32_t adc) { fADCLED[ipmt] = adc;} Double32_t AmpLED (Int_t ipmt) const{ return fADCLED[ipmt];} void SetT0clock (Double32_t time) { fT0clock = time;} Double32_t GetT0clock () const{ return fT0clock;} Bool_t GetT0Trig(Int_t i) {return fT0trig&(1<