]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCDigitReaderDecoder.cxx
Adding a getter which would allow to acess the number of tracks per alignable element...
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCDigitReaderDecoder.cxx
CommitLineData
f8121cb1 1// $Id: AliHLTTPCDigitReaderDecoder.cxx,v 1.18 2007/11/26 23:19:47 richterm Exp $
2
3//**************************************************************************
4//* This file is property of and copyright by the ALICE HLT Project *
5//* ALICE Experiment at CERN, All rights reserved. *
6//* *
7//* Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
8//* Timm Steinbeck <timm@kip.uni-heidelberg.de> *
9//* Jochen Thaeder <thaeder@kip.uni-heidelberg.de> *
10//* for The ALICE HLT Project. *
11//* *
12//* Permission to use, copy, modify and distribute this software and its *
13//* documentation strictly for non-commercial purposes is hereby granted *
14//* without fee, provided that the above copyright notice appears in all *
15//* copies and that both the copyright notice and this permission notice *
16//* appear in the supporting documentation. The authors make no claims *
17//* about the suitability of this software for any purpose. It is *
18//* provided "as is" without express or implied warranty. *
19//**************************************************************************
20
21/** @file AliHLTTPCDigitReaderDecoder.cxx
22 @author Kenneth Aamodt, Matthias Richter
23 @date
24 @brief DigitReader implementation for the fast ALTRO Decoder
25*/
26
27#if __GNUC__>= 3
28using namespace std;
29#endif
30
31#include "AliHLTTPCDigitReaderDecoder.h"
32#include "AliAltroDecoder.h"
33#include "AliAltroData.h"
34#include "AliAltroBunch.h"
35
36ClassImp(AliHLTTPCDigitReaderDecoder)
37
38AliHLTTPCDigitReaderDecoder::AliHLTTPCDigitReaderDecoder()
39 :
40 AliHLTTPCDigitReader()
41{
42 // see header file for class documentation
43 // or
44 // refer to README to build package
45 // or
46 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
47}
48
49AliHLTTPCDigitReaderDecoder::~AliHLTTPCDigitReaderDecoder()
50{
51 // see header file for class documentation
52}
53
54int AliHLTTPCDigitReaderDecoder::InitBlock(void* ptr,unsigned long size, Int_t patch, Int_t slice)
55{
56 // see header file for class documentation
57 return 0;
58}
59
60bool AliHLTTPCDigitReaderDecoder::NextChannel()
61{
62 // see header file for class documentation
63 return false;
64}
65
66int AliHLTTPCDigitReaderDecoder::NextBunch()
67{
68 // see header file for class documentation
69 return 0;
70}
71
72bool AliHLTTPCDigitReaderDecoder::NextSignal()
73{
74 // see header file for class documentation
75 return false;
76}
77
78AliHLTUInt32_t* AliHLTTPCDigitReaderDecoder::GetSignals()
79{
80 // see header file for class documentation
81 return NULL;
82}
83
84int AliHLTTPCDigitReaderDecoder::GetRow()
85{
86 // see header file for class documentation
87 return 0;
88}
89
90int AliHLTTPCDigitReaderDecoder::GetPad()
91{
92 // see header file for class documentation
93 return 0;
94}
95
96int AliHLTTPCDigitReaderDecoder::GetSignal()
97{
98 // see header file for class documentation
99 return 0;
100}
101
102int AliHLTTPCDigitReaderDecoder::GetTime()
103{
104 // see header file for class documentation
105 return 0;
106}