Line data Source code
1 : // @(#) $Id$
2 : // Author: Fons Rademakers 26/11/99
3 :
4 : /**************************************************************************
5 : * Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
6 : * *
7 : * Author: The ALICE Off-line Project. *
8 : * Contributors are mentioned in the code where appropriate. *
9 : * *
10 : * Permission to use, copy, modify and distribute this software and its *
11 : * documentation strictly for non-commercial purposes is hereby granted *
12 : * without fee, provided that the above copyright notice appears in all *
13 : * copies and that both the copyright notice and this permission notice *
14 : * appear in the supporting documentation. The authors make no claims *
15 : * about the suitability of this software for any purpose. It is *
16 : * provided "as is" without express or implied warranty. *
17 : **************************************************************************/
18 :
19 : //////////////////////////////////////////////////////////////////////////
20 : // //
21 : // AliRawData //
22 : // //
23 : //////////////////////////////////////////////////////////////////////////
24 :
25 : #include "AliRawData.h"
26 :
27 :
28 128 : ClassImp(AliRawData)
29 :
30 : AliRawData::AliRawData():
31 848 : TObject(),
32 848 : fSize(0),
33 848 : fRawData(NULL),
34 848 : fOwner(kTRUE)
35 4240 : {
36 : // Default constructor
37 1696 : }
|