]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSTrackSegmentMaker.h
removed iostream
[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 class TFile ;
18
19 // --- Standard library ---
20
21 // --- AliRoot header files ---
22
23
24 class AliPHOSClusterizer ;
25 class AliPHOSGeometry ;
26
27 class  AliPHOSTrackSegmentMaker : public TTask {
28
29 public:
30
31   AliPHOSTrackSegmentMaker() ;                     
32   AliPHOSTrackSegmentMaker(const char* headerFile, const char* name, const Bool_t toSplit) ;                     
33   
34   virtual ~ AliPHOSTrackSegmentMaker() ;
35
36   virtual void    Exec(Option_t * option){Warning("Exec", "Not Defined" ) ; } 
37   //  virtual char*   GetRecPointsBranch ()const{Warning("GetRecPointsBranch", "Not Defined" ) ; return 0 ; } 
38   //  virtual char*   GetTrackSegmentsBranch ()const{Warning(" GetTrackSegmentsBranch", "Not Defined" ) ; return 0 ; } 
39   virtual const Int_t GetTrackSegmentsInRun()  const {Warning("GetTrackSegmentsInRun", "Not Defined" ) ; return 0 ; } 
40
41   virtual void    Print(Option_t * option)const {Warning("Print", "Not Defined" ) ; }  
42   //  virtual void Set...   // method to choose recPoints: along z only, along x ...???
43   //  virtual void SetChoosingAlgirithm(){Warning("SetChoosingAlgirithm", "Not Defined" ) ; return 0 ; } 
44   //  virtual void SetMaxEmcCpvDistance(Float_t r) {Warning("SetMaxEmcCpvDistance", "Not Defined" ) ; return 0 ; } 
45   //  virtual void SetRecPointsBranch(const char * title){Warning("SetRecPointsBranch", "Not Defined" ) ; } 
46   //  virtual void SetTrackSegmentsBranch(const char * title){Warning("SetTrackSegmentsBranch", "Not Defined" ) ; } 
47   //  virtual void SetSplitFile(const TString splitFileName = "PHOS.RecData.root") const ; 
48   virtual const char * Version() const {Warning("Version", "Not Defined" ) ; return 0 ; }   
49   virtual void WriteTrackSegments(Int_t event){Warning("WriteTrackSegments", "Not Defined" ) ; } 
50   
51 protected:
52   
53   TFile * fSplitFile ;             //! file in which TrackSegments will eventually be stored
54   Bool_t  fToSplit ;               //! Do we work in the split mode
55
56   ClassDef( AliPHOSTrackSegmentMaker,1)    // Algorithm class to make PHOS track segments (Base Class)
57
58 };
59
60 #endif // ALIPHOSTRACKSEGMENTMAKER_H