]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TOF/AliTOFHitDataBuffer.cxx
Deleted erroneously added simlinks
[u/mrichter/AliRoot.git] / TOF / AliTOFHitDataBuffer.cxx
... / ...
CommitLineData
1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/*
17$Log$
18Revision 1.1 2007/04/27 11:03:09 arcelli
19container for TOF raw data
20
21 authors: Roberto Preghenella, preghenella@bo.infn.it
22 with contribution from Chiara Zampolli, zampolli@bo.infn.it
23*/
24
25
26////////////////////////////////////////////////////////////////////////
27// //
28// This class provides access to TOF raw data in DDL files. //
29// //
30// It loops over all TOF raw data given by the AliRawReader. //
31// //
32////////////////////////////////////////////////////////////////////////
33
34#include "AliLog.h"
35#include "AliTOFHitDataBuffer.h"
36
37ClassImp(AliTOFHitDataBuffer)
38
39AliTOFHitDataBuffer::AliTOFHitDataBuffer() :
40 TObject(),
41 fBuffer("AliTOFHitData")
42{
43 fBuffer.SetOwner(kTRUE);
44}
45
46//-----------------------------------------------------------------------------
47
48AliTOFHitDataBuffer::AliTOFHitDataBuffer(Int_t size) :
49 TObject(),
50 fBuffer("AliTOFHitData", size)
51{
52 fBuffer.SetOwner(kTRUE);
53}
54
55//-----------------------------------------------------------------------------
56
57AliTOFHitDataBuffer::~AliTOFHitDataBuffer()
58{
59}
60
61//-----------------------------------------------------------------------------
62Bool_t AliTOFHitDataBuffer::Add(AliTOFHitData &HitData) {
63 // adding a new entry
64
65 new (fBuffer[GetEntries()]) AliTOFHitData(HitData);
66 return kFALSE;
67}
68
69