]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALTrackSegmentMaker.h
Made more robust
[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 ---
88cb7938 23#include "AliConfig.h"
5502f2ea 24class AliEMCALClusterizer ;
25class AliEMCALGeometry ;
26
27class AliEMCALTrackSegmentMaker : public TTask {
28
29public:
30
31 AliEMCALTrackSegmentMaker() ;
88cb7938 32 AliEMCALTrackSegmentMaker(const TString alirunFileName, const TString eventFolderName = AliConfig::fgkDefaultEventFolderName) ;
f5dc24cb 33 AliEMCALTrackSegmentMaker(const AliEMCALTrackSegmentMaker & tsmaker):TTask(tsmaker) { ; }
5502f2ea 34 virtual ~ AliEMCALTrackSegmentMaker() ;
35
9e5d2067 36 virtual void Exec(Option_t *) = 0;
5502f2ea 37 virtual const Int_t GetTrackSegmentsInRun() const {Warning("GetTrackSegmentsInRun", "Not Defined" ) ; return 0 ; }
38
9e5d2067 39 virtual void Print(Option_t *) = 0;
5502f2ea 40 virtual const char * Version() const {Warning("Version", "Not Defined" ) ; return 0 ; }
9e5d2067 41 virtual void WriteTrackSegments() = 0;
5502f2ea 42
43protected:
88cb7938 44 TString fEventFolderName ; // event folder name
5502f2ea 45
f5dc24cb 46 ClassDef( AliEMCALTrackSegmentMaker,2) // Algorithm class to make EMCAL track segments (Base Class)
5502f2ea 47
48};
49
50#endif // ALIEMCALTRACKSEGMENTMAKER_H