]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TRD/AliHLTTRDClusterizer.h
unify system of the input multiplier for clusterizer and tracker and
[u/mrichter/AliRoot.git] / HLT / TRD / AliHLTTRDClusterizer.h
CommitLineData
93ce7d1b 1//-*- Mode: C++ -*-
2// $Id$
3
dc2e6604 4#ifndef ALIHLTTRDCLUSTERIZER_H
5#define ALIHLTTRDCLUSTERIZER_H
93ce7d1b 6//* This file is property of and copyright by the ALICE HLT Project *
7//* ALICE Experiment at CERN, All rights reserved. *
8//* See cxx source for full Copyright notice *
dc2e6604 9
10////////////////////////////////////////////////////////////////////////////
11// //
12// HLT TRD cluster finder //
13// //
14////////////////////////////////////////////////////////////////////////////
15
16#include "AliTRDclusterizer.h"
775f67d7 17#include "AliTRDReconstructor.h"
dc2e6604 18#include "AliHLTTRDCluster.h"
19#include "AliHLTDataTypes.h"
775f67d7 20#include "AliHLTTRDTrackletWordArray.h"
dc2e6604 21
dc2e6604 22class AliHLTTRDClusterizer : public AliTRDclusterizer
23{
24 public:
25 AliHLTTRDClusterizer(const AliTRDReconstructor *const rec = 0x0);
26 AliHLTTRDClusterizer(const Text_t *const name, const Text_t *const title, const AliTRDReconstructor *const rec = 0x0);
27 AliHLTTRDClusterizer(const AliHLTTRDClusterizer& c);
e47650f5 28 virtual ~AliHLTTRDClusterizer() {};
dc2e6604 29 AliHLTTRDClusterizer& operator=(const AliHLTTRDClusterizer& c);
30
18ada816 31 void Copy(TObject& c) const;
775f67d7 32 void SetMemBlock(AliHLTUInt8_t* ptr){
33 if(fReconstructor->IsProcessingTracklets()){
34 fTrMemBlock=ptr; fTrMemCurrPtr=ptr;
93ce7d1b 35 fClMemBlock=ptr+GetTrMemBlockSize(); //if IsProcessingTracklets() is enabled we always reserve a data block of size GetTrMemBlockSize() for the tracklets
775f67d7 36 }else{
93ce7d1b 37 fClMemBlock=ptr;
775f67d7 38 }
93ce7d1b 39 fNoOfClusters=0;
775f67d7 40 }
41 AliHLTUInt8_t* GetClMemBlock(){return fClMemBlock;}
42 AliHLTUInt8_t* GetTrMemBlock(){return fTrMemBlock;}
43 UInt_t GetAddedClSize(){return fNoOfClusters*sizeof(AliHLTTRDCluster);}
44 UInt_t GetAddedTrSize(){return (AliHLTUInt8_t*)fTrMemCurrPtr-(AliHLTUInt8_t*)fTrMemBlock;}
45 UInt_t GetTrMemBlockSize(){return 30*(sizeof(AliHLTTRDTrackletWordArray)+512*sizeof(UInt_t));}
dc2e6604 46
47 protected:
dc2e6604 48 void AddClusterToArray(AliTRDcluster *cluster);
775f67d7 49 void AddTrackletsToArray();
18ada816 50
775f67d7 51 TClonesArray* RecPoints(){return 0x0;} //these are functions in the parents class and must not be used in hlt!
52 TClonesArray* TrackletsArray(){return 0x0;} //if used accidentally it may give a compilation error because they are protected,
53 void SetClustersOwner(Bool_t /*own*/){} //but it could be that the error appears only in run time
dc2e6604 54
775f67d7 55 AliHLTUInt8_t* fClMemBlock;
56 AliHLTUInt8_t* fTrMemBlock;
57 AliHLTUInt8_t* fTrMemCurrPtr;
dc2e6604 58
775f67d7 59 ClassDef(AliHLTTRDClusterizer, 1)
dc2e6604 60};
61
62#endif