1 // Author: Cvetan Cheshkov 27/03/2007
3 /**************************************************************************
4 * Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
6 * Author: The ALICE Off-line Project. *
7 * Contributors are mentioned in the code where appropriate. *
9 * Permission to use, copy, modify and distribute this software and its *
10 * documentation strictly for non-commercial purposes is hereby granted *
11 * without fee, provided that the above copyright notice appears in all *
12 * copies and that both the copyright notice and this permission notice *
13 * appear in the supporting documentation. The authors make no claims *
14 * about the suitability of this software for any purpose. It is *
15 * provided "as is" without express or implied warranty. *
16 **************************************************************************/
18 //////////////////////////////////////////////////////////////////////////
20 // AliRawDataArrayV2 //
21 // A container object which is used in order to write the sub-detector //
22 // raw-data payloads into a separate branches //
24 //////////////////////////////////////////////////////////////////////////
26 #include "AliRawDataArrayV2.h"
27 #include "AliRawData.h"
30 ClassImp(AliRawDataArrayV2)
32 AliRawDataArrayV2::AliRawDataArrayV2():
33 fRawDataArray("AliRawData",100),
36 // Default constructor
39 AliRawDataArrayV2::AliRawDataArrayV2(Int_t n):
40 fRawDataArray("AliRawData",n),
43 // Default constructor
46 AliRawDataArrayV2::~AliRawDataArrayV2()
48 fRawDataArray.Delete();
51 void AliRawDataArrayV2::ClearData()
53 fRawDataArray.Clear();
56 AliRawData *AliRawDataArrayV2::Add()
58 Int_t nEntries = fRawDataArray.GetEntriesFast();
59 if (nEntries < fNAlloc) {
60 return (AliRawData *)fRawDataArray[nEntries];
63 fNAlloc = nEntries + 1;
64 return new (fRawDataArray[nEntries]) AliRawData();