]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSTrackSegmentMaker.h
Removing old include file AliMC.h
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMaker.h
CommitLineData
92862013 1#ifndef ALIPHOSTRACKSEGMENTMAKER_H
2#define ALIPHOSTRACKSEGMENTMAKER_H
d15a28e7 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6ad0bfa0 6/* $Id$ */
7
b2a60966 8//_________________________________________________________________________
9// Algorithm Base class to construct PHOS track segments
10// Associates EMC and PPSD clusters
11// Unfolds the EMC cluster
12//
2731cd1e 13//*-- Author: Dmitri Peressounko (RRC Kurchatov Institute & SUBATECH)
d15a28e7 14
15// --- ROOT system ---
2731cd1e 16#include "TTask.h"
88cb7938 17#include "AliConfig.h"
18class TFile ;
d15a28e7 19
20// --- Standard library ---
88cb7938 21#include <iostream>
d15a28e7 22
23// --- AliRoot header files ---
24
d15a28e7 25
2731cd1e 26class AliPHOSClusterizer ;
27class AliPHOSGeometry ;
28
29class AliPHOSTrackSegmentMaker : public TTask {
d15a28e7 30
31public:
32
88cb7938 33 AliPHOSTrackSegmentMaker();
34 AliPHOSTrackSegmentMaker(const TString alirunFileName, const TString eventFolderName = AliConfig::fgkDefaultEventFolderName) ;
a8c47ab6 35 AliPHOSTrackSegmentMaker(const AliPHOSTrackSegmentMaker & tsmaker) : TTask(tsmaker) { ; }
8d0f3f77 36 virtual ~ AliPHOSTrackSegmentMaker() ;
d15a28e7 37
90cceaf6 38 virtual void Exec(Option_t *) = 0;
88cb7938 39
21cd0c07 40 virtual const Int_t GetTrackSegmentsInRun() const {Warning("GetTrackSegmentsInRun", "Not Defined" ) ; return 0 ; }
2731cd1e 41
88cb7938 42 virtual void Print()const {Warning("Print", "Not Defined" ) ; }
43 void SetEventFolderName(TString name) { fEventFolderName = name ; }
b9791748 44
90cceaf6 45 virtual void WriteTrackSegments() = 0;
8d0f3f77 46
88cb7938 47protected:
48 TString fEventFolderName ; // event folder name
d15a28e7 49
88cb7938 50 ClassDef( AliPHOSTrackSegmentMaker,3) // Algorithm class to make PHOS track segments (Base Class)
d15a28e7 51};
52
92862013 53#endif // ALIPHOSTRACKSEGMENTMAKER_H