]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSTrackSegmentMaker.h
Ordered things differently: first do everything for one detector then go to the next
[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 ---
79bf6a2f 20#include <iostream>
d15a28e7 21
22// --- AliRoot header files ---
23
d15a28e7 24
2731cd1e 25class AliPHOSClusterizer ;
26class AliPHOSGeometry ;
27
28class AliPHOSTrackSegmentMaker : public TTask {
d15a28e7 29
30public:
31
6ad0bfa0 32 AliPHOSTrackSegmentMaker() ;
7b7c1533 33 AliPHOSTrackSegmentMaker(const char* headerFile, const char* name) ;
d15a28e7 34
b27d82c8 35 virtual ~ AliPHOSTrackSegmentMaker(){
36 // dtor
37 }
d15a28e7 38
79bf6a2f 39 virtual void Exec(Option_t * option){cout << "Not Defined" << endl ; }
40 virtual char* GetRecPointsBranch ()const{cout << "Not Defined" << endl ; return 0 ; }
41 virtual char* GetTrackSegmentsBranch ()const{cout << "Not Defined" << endl ; return 0 ; }
42 virtual const Int_t GetTrackSegmentsInRun() const {cout << "Not Defined" << endl ; return 0 ; }
2731cd1e 43
79bf6a2f 44 virtual void Print(Option_t * option)const {cout << "Not Defined" << endl ; }
2731cd1e 45 // virtual void Set... // method to choose recPoints: along z only, along x ...???
79bf6a2f 46 // virtual void SetChoosingAlgirithm(){cout << "Not Defined" << endl ; return 0 ; }
47 // virtual void SetMaxEmcCpvDistance(Float_t r) {cout << "Not Defined" << endl ; return 0 ; }
48 virtual void SetRecPointsBranch(const char * title){cout << "Not Defined" << endl ; }
49 virtual void SetTrackSegmentsBranch(const char * title){cout << "Not Defined" << endl ; }
50 virtual const char * Version() const {cout << "Not Defined" << endl ; return 0 ; }
51 virtual void WriteTrackSegments(Int_t event){cout << "Not Defined" << endl ; }
b2a60966 52
508efc0a 53 ClassDef( AliPHOSTrackSegmentMaker,1) // Algorithm class to make PHOS track segments (Base Class)
d15a28e7 54
55};
56
92862013 57#endif // ALIPHOSTRACKSEGMENTMAKER_H