]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - T0/AliT0Reconstructor.h
Pseudo code - description
[u/mrichter/AliRoot.git] / T0 / AliT0Reconstructor.h
... / ...
CommitLineData
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 */
5
6/* $Id$ */
7/********************************************************************
8 * header class T0 reconstruction
9 * Alla Maevskaya INR RAS alla@inr.ru *
10 * Alla.Maevskaya@cern.ch
11 *******************************************************************/
12
13#include "AliReconstructor.h"
14#include "AliT0Parameters.h"
15#include "AliT0Calibrator.h"
16
17class AliT0Reconstructor: public AliReconstructor {
18 public:
19 AliT0Reconstructor();
20 virtual ~AliT0Reconstructor() {};
21 AliT0Reconstructor( const AliT0Reconstructor&r );
22 AliT0Reconstructor& operator=(const AliT0Reconstructor&r);
23
24
25 virtual void Reconstruct(TTree* fdigits, TTree * frecpoints) const;
26 virtual void Reconstruct(AliRawReader*rawReader , TTree* recTree) const;
27
28 virtual void FillESD( AliRawReader*/*rawReader*/, TTree*clustersTree, AliESDEvent*esd ) const
29 {FillESD((TTree*)NULL,clustersTree,esd);}
30 virtual void FillESD( TTree* digitsTree, TTree*clustersTree, AliESDEvent*esd ) const;
31
32 virtual Bool_t HasDigitConversion() const {return kFALSE;}
33
34 protected:
35 Float_t fdZonA; // Zideal - Zreal side A
36 Float_t fdZonC; // Zideal - Zreal side C
37 Float_t fZposition; // vertex position
38 Float_t fTime0vertex[24]; // time position if Zvertex=0
39 AliT0Parameters *fParam; //pointer to T0 parameters class
40 TObjArray fAmpLEDrec; // amp LED-CFD
41 TObjArray fQTC; // QTC vs #MIPs
42 TObjArray fAmpLED; // LED-CFD vs #MIPs
43 AliT0Calibrator *fCalib; //pointer to T0 Calibrator
44
45 ClassDef(AliT0Reconstructor, 3) // class for the T0 reconstruction
46
47};
48
49typedef AliT0Reconstructor AliSTARTReconstructor; // for backward compatibility
50
51#endif