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