]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSTrackSegmentMaker.h
Update with mevsim libraries.
[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//
13//*-- Author: Dmitri Peressounko (RRC Ki & SUBATECH)
d15a28e7 14
15// --- ROOT system ---
16
17// --- Standard library ---
18
19// --- AliRoot header files ---
20
21#include "TObjArray.h"
83974468 22#include "AliPHOSDigit.h"
23#include "AliPHOSRecPoint.h"
508efc0a 24#include "AliPHOSIndexToObject.h"
83974468 25#include "AliPHOSTrackSegment.h"
d15a28e7 26
27class AliPHOSTrackSegmentMaker : public TObject {
28
29public:
30
6ad0bfa0 31 AliPHOSTrackSegmentMaker() ;
d15a28e7 32
b27d82c8 33 virtual ~ AliPHOSTrackSegmentMaker(){
34 // dtor
35 }
d15a28e7 36
88714635 37 virtual void MakeTrackSegments(DigitsList * DL,
38 AliPHOSRecPoint::RecPointsList * emcl,
39 AliPHOSRecPoint::RecPointsList * ppsdl,
40 AliPHOSTrackSegment::TrackSegmentsList * trsl ) = 0 ; // does the job
d912c4d7 41 virtual void SetMaxEmcPpsdDistance(Float_t r) = 0 ;
42 virtual void SetUnfoldFlag() = 0 ;
43 virtual void UnsetUnfoldFlag() = 0 ;
b2a60966 44
45 protected:
46
508efc0a 47 Int_t fNTrackSegments ; // number of track segments found
48 AliPHOSGeometry * fGeom ; // pointer to PHOS geometry
2f04ed65 49 AliPHOSIndexToObject * fPlease ; // factory used to convert an index into the associated object
508efc0a 50
51 ClassDef( AliPHOSTrackSegmentMaker,1) // Algorithm class to make PHOS track segments (Base Class)
d15a28e7 52
53};
54
92862013 55#endif // ALIPHOSTRACKSEGMENTMAKER_H