]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSTrackSegmentMaker.h
flistTreeFrame attribute added; fCanvasWindow removed
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMaker.h
CommitLineData
92862013 1#ifndef ALIPHOSTRACKSEGMENTMAKER_H
2#define ALIPHOSTRACKSEGMENTMAKER_H
d15a28e7 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6ad0bfa0 6/* $Id$ */
7
b2a60966 8//_________________________________________________________________________
9// Algorithm Base class to construct PHOS track segments
10// Associates EMC and PPSD clusters
11// Unfolds the EMC cluster
12//
2731cd1e 13//*-- Author: Dmitri Peressounko (RRC Kurchatov Institute & SUBATECH)
d15a28e7 14
15// --- ROOT system ---
2731cd1e 16#include "TTask.h"
17
d15a28e7 18
19// --- Standard library ---
20
21// --- AliRoot header files ---
22
d15a28e7 23
2731cd1e 24class AliPHOSClusterizer ;
25class AliPHOSGeometry ;
26
27class AliPHOSTrackSegmentMaker : public TTask {
d15a28e7 28
29public:
30
6ad0bfa0 31 AliPHOSTrackSegmentMaker() ;
7b7c1533 32 AliPHOSTrackSegmentMaker(const char* headerFile, const char* name) ;
d15a28e7 33
b27d82c8 34 virtual ~ AliPHOSTrackSegmentMaker(){
35 // dtor
36 }
d15a28e7 37
2731cd1e 38 virtual void Exec(Option_t * option) = 0 ;
39 virtual char* GetRecPointsBranch ()const = 0 ;
40 virtual char* GetTrackSegmentsBranch ()const = 0 ;
41
42 virtual void Print(Option_t * option)const = 0;
43 // virtual void Set... // method to choose recPoints: along z only, along x ...???
44 // virtual void SetChoosingAlgirithm() = 0 ;
45 // virtual void SetMaxEmcCpvDistance(Float_t r) = 0 ;
7b7c1533 46 virtual Bool_t ReadRecPoints(Int_t ievent) = 0 ;
2731cd1e 47 virtual void SetRecPointsBranch(const char * title) = 0 ;
48 virtual void SetTrackSegmentsBranch(const char * title) = 0 ;
7b7c1533 49 virtual const char * Version() const = 0 ;
50 virtual void WriteTrackSegments(Int_t event) = 0 ;
b2a60966 51
508efc0a 52 ClassDef( AliPHOSTrackSegmentMaker,1) // Algorithm class to make PHOS track segments (Base Class)
d15a28e7 53
54};
55
92862013 56#endif // ALIPHOSTRACKSEGMENTMAKER_H