]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/rec/AliHLTOUTDigitReader.h
doing backward compatibility correctly
[u/mrichter/AliRoot.git] / HLT / rec / AliHLTOUTDigitReader.h
1 //-*- Mode: C++ -*-
2 // $Id$
3
4 #ifndef ALIHLTOUTDIGITREADER_H
5 #define ALIHLTOUTDIGITREADER_H
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                               */
9
10 /** @file   AliHLTOUTDigitReader.h
11     @author Matthias Richter
12     @date   
13     @brief  HLTOUT data wrapper for simulated AliRoot HLT digit data.
14 */
15
16 #include "AliHLTOUTHomerCollection.h"
17 #include "TString.h"
18
19 class AliRawReader;
20 class AliHLTHOMERReader;
21 class TTree;
22 class TFile;
23 class TArrayC;
24
25 /**
26  * @class AliHLTOUTDigitReader
27  * Handler of HLTOUT data for simulated HLT digit input.
28  */
29 class AliHLTOUTDigitReader : public AliHLTOUTHomerCollection {
30  public:
31   /** constructor */
32   AliHLTOUTDigitReader(int event=-1, AliHLTEsdManager* pEsdManager=NULL, const char* digitFile="HLT.Digits.root");
33   /** destructor */
34   virtual ~AliHLTOUTDigitReader();
35
36  protected:
37   // interface functions of AliHLTOUTHomerCollection
38   Bool_t ReadNextData(UChar_t*& data);
39   int Reset();
40   int GetDataSize();
41   const AliRawDataHeader* GetDataHeader();
42   void SelectEquipment(int equipmentType, int minEquipmentId = -1, int maxEquipmentId = -1);
43   int GetEquipmentId();
44
45  private:
46   /** copy constructor prohibited */
47   AliHLTOUTDigitReader(const AliHLTOUTDigitReader&);
48   /** assignment operator prohibited */
49   AliHLTOUTDigitReader& operator=(const AliHLTOUTDigitReader&);
50
51   /**
52    * Read the data from the root file and HLTOUT raw tree.
53    * Retrieve the number of branches and allocate arrays acording
54    * to that. After initialization of the arrays and variables, the
55    * event fEnvent is read.
56    */
57   bool ReadArrays();
58
59   /**
60    * Cleanup tree and data arrays.
61    */
62   int CloseTree();
63
64   /** name of the digit file */
65   TString fDigitFileName; //! transient
66
67   /** the root file for the HLT 'digit' output */
68   TFile* fpDigitFile; //!transient
69
70   /** the tree for the HLT 'digit' output */
71   TTree* fpDigitTree; //!transient
72
73   /** min DDL id for equipment selection */
74   int fMinDDL; //!transient
75
76   /** max DDL id for equipment selection */
77   int fMaxDDL; //!transient
78
79   /** array of digit data read from tree */
80   TArrayC** fppDigitArrays; //!transient
81
82   /** array of equipment ids for the corresponding data blocks in fppDigitArrays */
83   int* fpEquipments; //!transient
84
85   /** number of DDL objects -> size of the arrays */
86   int fNofDDLs; //!transient
87
88   /** current position in the array */
89   int fCurrent; //!transient
90
91   ClassDef(AliHLTOUTDigitReader, 0)
92 };
93 #endif