]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3FileHandler.h
5e70d9577a76ff38374523f10057e9467e9c49a8
[u/mrichter/AliRoot.git] / HLT / src / AliL3FileHandler.h
1 // @(#) $Id$
2
3 #ifndef ALIL3FILEHANDLER_H
4 #define ALIL3FILEHANDLER_H
5
6 #include "AliL3MemHandler.h"
7
8 class TClonesArray;
9
10 #include <AliSimDigits.h>
11 #include <AliTPCParam.h>
12 #ifdef use_newio
13 #include <AliRunLoader.h>
14 #endif
15
16 #include <TObject.h>
17 #include <TFile.h>
18 #include <TTree.h>
19
20 class AliL3SpacePointData;
21 class AliL3DigitRowData;
22 class AliL3TrackSegmentData;
23 class AliL3TrackArray;
24
25 class AliL3FileHandler:public AliL3MemHandler{
26
27  protected:
28 #ifdef use_newio
29   AliRunLoader *fInAli;
30 #else
31   TFile *fInAli;
32 #endif
33   AliTPCParam *fParam;
34   virtual Bool_t SetAliInput();
35   //  Int_t fLastIndex;
36   AliSimDigits *fDigits;
37   TTree *fDigitsTree;
38   FILE *fMC;//!
39   
40   Bool_t fIndexCreated;   //is index created
41   Int_t  fIndex[36][159]; //stores index over digitstree 
42                           //for faster access w/o ASVVERSION
43
44   Bool_t GetDigitsTree(Int_t event);
45   Bool_t CreateIndex();  //create the index
46
47  public:
48   AliL3FileHandler();
49   ~AliL3FileHandler();
50
51   void FreeDigitsTree();
52   Bool_t SetAliInput(Char_t *name);
53   Bool_t SetAliInput(TFile *file);
54 #ifdef use_newio
55   Bool_t SetAliInput(AliRunLoader *runLoader);
56 #else
57 #endif
58   void CloseAliInput(); 
59   Bool_t IsDigit(Int_t event);
60   
61   Bool_t SetMCOutput(Char_t *name);
62   Bool_t SetMCOutput(FILE *file);
63   void CloseMCOutput();
64
65   //Digit IO
66   Bool_t AliDigits2Binary(Int_t event=0,Bool_t altro=kFALSE);
67   AliL3DigitRowData *AliDigits2Memory(UInt_t & nrow,Int_t event=0); //Allocates Memory
68   AliL3DigitRowData *AliAltroDigits2Memory(UInt_t & nrow,Int_t event=0,Bool_t eventmerge=kFALSE); 
69   //Allocates Memory
70   Bool_t AliDigits2CompBinary(Int_t event=0,Bool_t altro=kFALSE);  
71   void AliDigits2RootFile(AliL3DigitRowData *rowPt,Char_t *new_digitsfile);
72
73   //Point IO
74   Bool_t AliPoints2Binary(Int_t eventn=0);
75   AliL3SpacePointData *AliPoints2Memory(UInt_t & npoint,Int_t eventn=0);//Allocates Memory
76
77   ClassDef(AliL3FileHandler,1)   //Filehandler class
78 };
79
80 #endif