]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSTrackSegmentMaker.h
Updated SDigitizer; Added AliTOFanalyzeSDigits.C macro
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMaker.h
1 #ifndef ALIPHOSTRACKSEGMENTMAKER_H
2 #define ALIPHOSTRACKSEGMENTMAKER_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 //_________________________________________________________________________
9 // Algorithm Base class to construct PHOS track segments
10 // Associates EMC and PPSD clusters
11 // Unfolds the EMC cluster   
12 //                  
13 //*-- Author: Dmitri Peressounko (RRC Kurchatov Institute  & SUBATECH)
14
15 // --- ROOT system ---
16 #include "TTask.h"
17
18
19 // --- Standard library ---
20 #include <iostream>
21
22 // --- AliRoot header files ---
23
24
25 class AliPHOSClusterizer ;
26 class AliPHOSGeometry ;
27
28 class  AliPHOSTrackSegmentMaker : public TTask {
29
30 public:
31
32   AliPHOSTrackSegmentMaker() ;                     
33   AliPHOSTrackSegmentMaker(const char* headerFile, const char* name) ;                     
34   
35   virtual ~ AliPHOSTrackSegmentMaker(){
36     // dtor 
37   } 
38
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 ; } 
43
44   virtual void    Print(Option_t * option)const {cout << "Not Defined" << endl ; }  
45   //  virtual void Set...   // method to choose recPoints: along z only, along x ...???
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 ; } 
52   
53   ClassDef( AliPHOSTrackSegmentMaker,1)    // Algorithm class to make PHOS track segments (Base Class)
54
55 };
56
57 #endif // ALIPHOSTRACKSEGMENTMAKER_H