]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALTrackSegmentMaker.h
Boost method added.
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALTrackSegmentMaker.h
1 #ifndef ALIEMCALTRACKSEGMENTMAKER_H
2 #define ALIEMCALTRACKSEGMENTMAKER_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 EMCAL track segments
10 // Associates EMC and PPSD clusters
11 // Unfolds the EMC cluster   
12 //                  
13 //*-- Author: Dmitri Peressounko (RRC Kurchatov Institute  & SUBATECH)
14 //             Adapted from PHOS by Y. Schutz (SUBATECH)
15
16 // --- ROOT system ---
17 #include "TTask.h"
18 class TFile ;
19
20 // --- Standard library ---
21
22 // --- AliRoot header files ---
23
24
25 class AliEMCALClusterizer ;
26 class AliEMCALGeometry ;
27
28 class  AliEMCALTrackSegmentMaker : public TTask {
29
30 public:
31
32   AliEMCALTrackSegmentMaker() ;                     
33   AliEMCALTrackSegmentMaker(const char* headerFile, const char* name, const Bool_t toSplit) ;                     
34   
35   virtual ~ AliEMCALTrackSegmentMaker() ;
36
37   virtual void    Exec(Option_t * option){Warning("Exec", "Not Defined" ) ; } 
38   virtual const Int_t GetTrackSegmentsInRun()  const {Warning("GetTrackSegmentsInRun", "Not Defined" ) ; return 0 ; } 
39
40   virtual void    Print(Option_t * option)const {Warning("Print", "Not Defined" ) ; }  
41   virtual const char * Version() const {Warning("Version", "Not Defined" ) ; return 0 ; }   
42   virtual void WriteTrackSegments(Int_t event){Warning("WriteTrackSegments", "Not Defined" ) ; } 
43   
44 protected:
45   
46   TFile * fSplitFile ;             //! file in which TrackSegments will eventually be stored
47   Bool_t  fToSplit ;               //! Do we work in the split mode
48
49   ClassDef( AliEMCALTrackSegmentMaker,1)    // Algorithm class to make EMCAL track segments (Base Class)
50
51 };
52
53 #endif // ALIEMCALTRACKSEGMENTMAKER_H