]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0Reconstructor.h
no cout anymore, please use AliDebug
[u/mrichter/AliRoot.git] / T0 / AliT0Reconstructor.h
CommitLineData
dc7ca31d 1#ifndef ALIT0RECONSTRUCTOR_H
2#define ALIT0RECONSTRUCTOR_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
dc7ca31d 5
72e48d95 6/* $Id$ */
7/********************************************************************
8 * header class T0 reconstruction
9 * Alla Maevskaya INR RAS alla@inr.ru *
10 * Alla.Maevskaya@cern.ch
11 *******************************************************************/
f16935f7 12
dc7ca31d 13#include "AliReconstructor.h"
f16935f7 14#include "AliT0Parameters.h"
dc7ca31d 15
16class AliT0Reconstructor: public AliReconstructor {
e0bba6cc 17 public:
c41ceaac 18 AliT0Reconstructor();
dc7ca31d 19 virtual ~AliT0Reconstructor() {};
f16935f7 20 AliT0Reconstructor( const AliT0Reconstructor&r );
21 AliT0Reconstructor& operator=(const AliT0Reconstructor&r);
e0bba6cc 22
c41ceaac 23
d76c31f4 24 virtual void Reconstruct(TTree* fdigits, TTree * frecpoints) const;
c41ceaac 25 virtual void Reconstruct(AliRawReader*rawReader , TTree* recTree) const;
dc7ca31d 26
f16935f7 27 virtual void FillESD( AliRawReader*/*rawReader*/, TTree*clustersTree, AliESDEvent*esd ) const
d76c31f4 28 {FillESD((TTree*)NULL,clustersTree,esd);}
f16935f7 29 virtual void FillESD( TTree* digitsTree, TTree*clustersTree, AliESDEvent*esd ) const;
d76c31f4 30
f16935f7 31 virtual Bool_t HasDigitConversion() const {return kFALSE;}
32
e0bba6cc 33 protected:
f16935f7 34 Float_t fdZonA; // Zideal - Zreal side A
35 Float_t fdZonC; // Zideal - Zreal side C
36 Float_t fZposition; // vertex position
37 Float_t fTime0vertex[24]; // time position if Zvertex=0
74adb36a 38 AliT0Parameters *fParam; //pointer to T0 parameters class
39 TObjArray fAmpLEDrec; // amp LED-CFD
dc7ca31d 40
f16935f7 41 ClassDef(AliT0Reconstructor, 1) // class for the T0 reconstruction
dc7ca31d 42
43};
44
45typedef AliT0Reconstructor AliSTARTReconstructor; // for backward compatibility
46
47#endif