]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALTrackSegmentMaker.h
Adaption to new fluka common blocks (E. Futo)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALTrackSegmentMaker.h
CommitLineData
5502f2ea 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"
18class TFile ;
19
20// --- Standard library ---
21
22// --- AliRoot header files ---
23
24
25class AliEMCALClusterizer ;
26class AliEMCALGeometry ;
27
28class AliEMCALTrackSegmentMaker : public TTask {
29
30public:
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
44protected:
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