]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSTrackSegmentMakerv1.h
Raw2SDigits() implemented
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMakerv1.h
CommitLineData
6ad0bfa0 1#ifndef ALIPHOSTRACKSEGMENTMAKERV1_H
2#define ALIPHOSTRACKSEGMENTMAKERV1_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$ */
702ab87e 7/* History of cvs commits:
8 *
9 * $Log$
354883bc 10 * Revision 1.48 2006/08/28 10:01:56 kharlov
11 * Effective C++ warnings fixed (Timur Pocheptsov)
12 *
3663622c 13 * Revision 1.47 2005/11/17 12:35:27 hristov
14 * Use references instead of objects. Avoid to create objects when they are not really needed
15 *
7b51037f 16 * Revision 1.46 2005/05/28 14:19:05 schutz
17 * Compilation warnings fixed by T.P.
18 *
702ab87e 19 */
6ad0bfa0 20
b2a60966 21//_________________________________________________________________________
22// Implementation version 1 of algorithm class to construct PHOS track segments
194f9939 23// Associates EMC and CPV lusters
b2a60966 24// Unfolds the EMC cluster
25//
26//*-- Author: Dmitri Peressounko (RRC Ki & SUBATECH)
d15a28e7 27
28// --- ROOT system ---
5fe305fe 29#include <TVector3.h>
d15a28e7 30
31// --- Standard library ---
32
33// --- AliRoot header files ---
d15a28e7 34#include "AliPHOSTrackSegmentMaker.h"
2731cd1e 35
36class AliPHOSEmcRecPoint ;
2bb500e5 37class AliPHOSCpvRecPoint ;
354883bc 38class TClonesArray;
2731cd1e 39
d15a28e7 40class AliPHOSTrackSegmentMakerv1 : public AliPHOSTrackSegmentMaker {
41
42public:
43
44 AliPHOSTrackSegmentMakerv1() ;
3663622c 45 AliPHOSTrackSegmentMakerv1(const TString & alirunFileNameFile, const TString & eventFolderName = AliConfig::GetDefaultEventFolderName());
46 AliPHOSTrackSegmentMakerv1(const AliPHOSTrackSegmentMakerv1 & tsm);
47
9f616d61 48 virtual ~ AliPHOSTrackSegmentMakerv1() ; // dtor
d15a28e7 49
fbf811ec 50 // virtual char* GetRecPointsBranch (void)const{return (char*)fRecPointsBranchTitle.Data() ;}
51 // virtual char* GetTrackSegmentsBranch(void)const{return (char*)fTrackSegmentsBranchTitle.Data() ;}
17323043 52 virtual Int_t GetTrackSegmentsInRun()const {return fTrackSegmentsInRun ;}
2731cd1e 53
eabde521 54 virtual void Exec(Option_t *option); // Does the job
2731cd1e 55 void FillOneModule() ; // Finds range in which RecPoints belonging current PHOS module are
56
194f9939 57 void MakeLinks() const; //Evaluates distances(links) between EMC and CPV
2731cd1e 58 void MakePairs() ; //Finds pairs(triplets) with smallest link
702ab87e 59 virtual void Print(const Option_t * = "") const ;
adcca1e6 60 //Switch to "on flyght" mode, without writing to TreeR and file
5d0435dd 61 void SetWriting(Bool_t toWrite = kFALSE){fWrite = toWrite;}
fbf811ec 62 virtual void SetMaxEmcCPVDistance(Float_t r){ fRcpv = r ;} //Maximal distance (in PHOS plane)
63 //between EMCrp and CPVrp
743cb288 64 virtual void SetMaxCPVTPCDistance(Float_t r){ fRtpc = r ;} //Maximal distance
fbf811ec 65 //between EMCrp and extrapolation of TPC track
66 // virtual void SetRecPointsBranch(const char * title) { fRecPointsBranchTitle = title ;}
67 // virtual void SetTrackSegmentsBranch(const char * title){ fTrackSegmentsBranchTitle = title ; }
7b7c1533 68 virtual const char * Version() const { return "tsm-v1" ; }
d15a28e7 69
2f04ed65 70 AliPHOSTrackSegmentMakerv1 & operator = (const AliPHOSTrackSegmentMakerv1 & ) {
baef0810 71 // assignement operator requested by coding convention but not needed
f1611b7c 72 Fatal("operator =", "not implemented") ;
839ffcb3 73 return *this ;
74 }
88cb7938 75 void Unload() ;
7b7c1533 76
d15a28e7 77private:
fc12304f 78
79 const TString BranchName() const ;
194f9939 80 Float_t GetDistanceInPHOSPlane(AliPHOSEmcRecPoint * EmcClu , AliPHOSCpvRecPoint * Cpv , Int_t & track ) const ; // see R0
7b51037f 81 void PropagateToPlane(TVector3& globalIntersection,
82 Double_t *x, Double_t *p,
83 const char *det, Int_t module) const;
2731cd1e 84 void Init() ;
8d0f3f77 85 void InitParameters() ;
2731cd1e 86 void PrintTrackSegments(Option_t *option) ;
90cceaf6 87 virtual void WriteTrackSegments() ;
2731cd1e 88
89private:
90
92f521a9 91 Bool_t fDefaultInit; //! Says if the task was created by defaut ctor (only parameters are initialized)
adcca1e6 92 Bool_t fWrite ; // Write Tracks to TreeT
fc12304f 93
7b7c1533 94 Int_t fNTrackSegments ; // number of track segments found
88cb7938 95
fbf811ec 96 Float_t fRcpv ; // Maximum distance between a EMC RecPoint and a CPV RecPoint
97 Float_t fRtpc ; // Maximum distance between a EMC RecPoint and extrapolation of a TPC track
98
2731cd1e 99 TClonesArray * fLinkUpArray ; //!
2731cd1e 100 Int_t fEmcFirst; //! Index of first EMC RecPoint belonging to currect PHOS module
101 Int_t fEmcLast ; //!
102 Int_t fCpvFirst; //! Cpv upper layer
103 Int_t fCpvLast; //!
2731cd1e 104 Int_t fModule ; //! number of module being processed
2b60655b 105 Int_t fTrackSegmentsInRun ; //! Total number of track segments in one run
d15a28e7 106
88cb7938 107 ClassDef( AliPHOSTrackSegmentMakerv1,3) // Implementation version 1 of algorithm class to make PHOS track segments
d15a28e7 108
88cb7938 109 };
d15a28e7 110
6ad0bfa0 111#endif // AliPHOSTRACKSEGMENTMAKERV1_H