]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCFileHandler.h
- adjusting binning of pad histograms to make single pad cluster contribution and...
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCFileHandler.h
CommitLineData
a6c02c85 1// @(#) $Id$
4aa41877 2// Original: AliHLTFileHandler.h,v 1.19 2004/06/11 16:06:33 loizides
a6c02c85 3
4#ifndef ALIHLTTPCFILEHANDLER_H
5#define ALIHLTTPCFILEHANDLER_H
297174de 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 *
5578cf60 9
10/** @file AliHLTTPCFileHandler.h
11 @author U. Frankenfeld, A. Vestbo, C. Loizides, maintained by
12 Matthias Richter
13 @date
14 @brief file input for the TPC tracking code before migration to the
15 HLT component framework
297174de 16*/
5578cf60 17
a6c02c85 18#include "AliHLTTPCMemHandler.h"
19
20class TClonesArray;
21
95d48915 22class AliSimDigits;
23class AliTPCParam;
a6c02c85 24#include <AliRunLoader.h>
a6c02c85 25
95d48915 26class TObject;
27class TFile;
28class TTree;
a6c02c85 29
30class AliHLTTPCSpacePointData;
31class AliHLTTPCDigitRowData;
32class AliHLTTPCTrackSegmentData;
33class AliHLTTPCTrackArray;
34
95d48915 35/**
297174de 36 * @class AliHLTTPCFileHandler
95d48915 37 * This is the input interface class for the TPC tracking code before conversion to
38 * the HLT component framework.
39 *
297174de 40 * @ingroup alihlt_tpc
95d48915 41 */
5578cf60 42class AliHLTTPCFileHandler:public AliHLTTPCMemHandler {
a6c02c85 43
a6c02c85 44 public:
600e6a1b 45 /** standard constructor */
a6c02c85 46 AliHLTTPCFileHandler(Bool_t b=kFALSE);
600e6a1b 47 /** destructor */
95d48915 48 virtual ~AliHLTTPCFileHandler();
a6c02c85 49
50 void FreeDigitsTree();
51 static void CleanStaticIndex();
52 static Int_t SaveStaticIndex(Char_t *prefix=0,Int_t event=0);
53 static Int_t LoadStaticIndex(Char_t *prefix=0,Int_t event=0);
54
55 Bool_t SetAliInput(Char_t *name);
a6c02c85 56 Bool_t SetAliInput(AliRunLoader *runLoader);
a6c02c85 57 void CloseAliInput();
58 Bool_t IsDigit(Int_t event);
59
60 Bool_t SetMCOutput(Char_t *name);
61 Bool_t SetMCOutput(FILE *file);
62 void CloseMCOutput();
63
64 //Digit IO
5578cf60 65
66 /**
67 * Write AliDigits from AliRoot file to binary file.
68 * @param event event no
69 * @param altro use @ref AliDigits2Memory if kFALSE and @ref
70 * AliDigits2Memory if kTRUE
71 *
72 * Calls the @ref AliHLTTPCMemHandler::Memory2BinaryFile to write the file.
73 */
74 Bool_t AliDigits2BinaryFile(Int_t event=0,Bool_t altro=kFALSE);
75
76 /**
77 * Convert AliDigits from AliRoot file to HLT Digit data in memory.
78 * Read and convert/write digits to memory buffer. If no target buffer available,
79 * an appropriate buffer is allocated.<br>
80 * If the variable pTgtSize is prvided, the total size of the result array is
81 * returned. \b Note: the total size differs as the @ref AliHLTTPCDigitRowData
82 * structs are variable in size depending on the no of digits for that particular
83 * row.
84 * @param nrow [OUT] number of rows
85 * @param event the event no
86 * @param tgtBuffer target buffer (optional)
87 * @param pTgtSize size of target buffer (optional)
88 * @return pointer to array, size in nrow <br>
89 * NULL in case of failure, required size in pTgtSize
90 */
5d2abf3b 91 //TODO: Check that the following change works. It should, but just double check.
92 AliHLTTPCDigitRowData *AliDigits2Memory(UInt_t & nrow,Int_t event, Byte_t* tgtBuffer, UInt_t* pTgtSize=NULL);
93
94 AliHLTTPCDigitRowData *AliDigits2Memory(UInt_t & nrow,Int_t event=0)
95 {
96 return AliDigits2Memory(nrow, event, NULL, NULL);
97 }
5578cf60 98
99 /**
c5123824 100 * Convert and filter AliDigits from AliRoot file to HLT Digit data in memory.
5578cf60 101 * This functions is the same as @ref AliDigits2Memory but in addition it
102 * filters out single timebins, which is noise. The timebins which
103 * are removed are timebins which have the 4 zero neighbours;
104 * (pad-1,time),(pad+1,time),(pad,time-1),(pad,time+1).
105 *
c5123824 106 * This is legacy code, the two functions contain big portions of identical code
5578cf60 107 * will be merged.
108 * See @ref AliDigits2Memory for detailed description.
109 */
a6c02c85 110 AliHLTTPCDigitRowData *AliAltroDigits2Memory(UInt_t & nrow,Int_t event=0,Bool_t eventmerge=kFALSE);
5578cf60 111
c5123824 112 /**
113 * Convert AliDigits from AliRoot file to Altro data format in memory.
114 */
115 int AliDigits2Altro(Int_t event, Byte_t* tgtBuffer, UInt_t size);
116
5578cf60 117 /**
118 * Write AliDigits from AliRoot file to binary file.
119 * @param event event no
120 * @param altro use @ref AliDigits2Memory if kFALSE and @ref
121 * AliDigits2Memory if kTRUE
122 *
123 * \b Note: pretty much the same as @ref AliDigits2BinaryFile.
124 * Calls the @ref AliHLTTPCMemHandler::Memory2CompBinary to write the file.
125 */
a6c02c85 126 Bool_t AliDigits2CompBinary(Int_t event=0,Bool_t altro=kFALSE);
5578cf60 127
a6c02c85 128 //Point IO
129 Bool_t AliPoints2Binary(Int_t eventn=0);
130 AliHLTTPCSpacePointData *AliPoints2Memory(UInt_t & npoint,Int_t eventn=0);//Allocates Memory
131
2a083ac4 132 protected:
133 AliRunLoader *fInAli;//!
134 Bool_t fUseRunLoader; //use runloader
135
136 AliTPCParam *fParam;//!
137 AliSimDigits *fDigits;//!
138
139 TTree *fDigitsTree;//!
140 FILE *fMC;//!
0ba35c53 141
2a083ac4 142 Bool_t fIndexCreated; //is index created
0ba35c53 143 Int_t fIndex[fgkNSlice][fgkNRow]; //stores index over digitstree
2a083ac4 144 //for faster access w/o ASVVERSION
145 Bool_t fUseStaticIndex; //take static index
146 static Bool_t fgStaticIndexCreated; //global index created
0ba35c53 147 static Int_t fgStaticIndex[fgkNSlice][fgkNRow]; //global index
2a083ac4 148
149 virtual Bool_t SetAliInput();
150 Bool_t GetDigitsTree(Int_t event);
151 Bool_t CreateIndex(); //create the index
152
5578cf60 153 private:
154 /** copy constructor prohibited */
155 AliHLTTPCFileHandler(const AliHLTTPCFileHandler&);
156 /** assignment operator prohibited */
157 AliHLTTPCFileHandler& operator=(const AliHLTTPCFileHandler&);
158
22240104 159 ClassDef(AliHLTTPCFileHandler,0) //HLT TPC Filehandler IO class
a6c02c85 160};
161
162#endif