1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 Revision 1.1 2007/04/27 11:03:09 arcelli
19 container for TOF raw data
21 authors: Roberto Preghenella, preghenella@bo.infn.it
22 with contribution from Chiara Zampolli, zampolli@bo.infn.it
26 ////////////////////////////////////////////////////////////////////////
28 // This class provides access to TOF raw data in DDL files. //
30 // It loops over all TOF raw data given by the AliRawReader. //
32 ////////////////////////////////////////////////////////////////////////
34 #include "AliTOFHitDataBuffer.h"
35 #include "AliTOFHitData.h"
37 ClassImp(AliTOFHitDataBuffer)
39 AliTOFHitDataBuffer::AliTOFHitDataBuffer() :
41 fBuffer("AliTOFHitData")
43 fBuffer.SetOwner(kTRUE);
46 //-----------------------------------------------------------------------------
48 AliTOFHitDataBuffer::AliTOFHitDataBuffer(Int_t size) :
50 fBuffer("AliTOFHitData", size)
52 fBuffer.SetOwner(kTRUE);
55 //-----------------------------------------------------------------------------
57 AliTOFHitDataBuffer::~AliTOFHitDataBuffer()
61 //-----------------------------------------------------------------------------
63 AliTOFHitDataBuffer& AliTOFHitDataBuffer::operator=(const AliTOFHitDataBuffer & source) {
65 if (&source != this) {
66 TObject::operator=(source);
67 fBuffer = source.fBuffer;
72 //-----------------------------------------------------------------------------
73 Bool_t AliTOFHitDataBuffer::Add(AliTOFHitData &HitData) {
76 new (fBuffer[GetEntries()]) AliTOFHitData(HitData);