]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFRawDigit.cxx
Al layer: positioning correction
[u/mrichter/AliRoot.git] / TOF / AliTOFRawDigit.cxx
1 ////////////////////////////////////////////////
2 //  Digitization class for set: TOF           //
3 //  AliTOFRawDigit  class                     //
4 //  Member variables                          //
5 //                                            //
6 //  Member functions                          //
7 //                                            //
8 //*-- Authors: Pierella, Seganti, Vicinanza   //
9 //    (Bologna and Salerno University)        //
10 ////////////////////////////////////////////////
11
12
13 /**************************************************************************
14  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
15  *                                                                        *
16  * Author: The ALICE Off-line Project.                                    *
17  * Contributors are mentioned in the code where appropriate.              *
18  *                                                                        *
19  * Permission to use, copy, modify and distribute this software and its   *
20  * documentation strictly for non-commercial purposes is hereby granted   *
21  * without fee, provided that the above copyright notice appears in all   *
22  * copies and that both the copyright notice and this permission notice   *
23  * appear in the supporting documentation. The authors make no claims     *
24  * about the suitability of this software for any purpose. It is          *
25  * provided "as is" without express or implied warranty.                  *
26  **************************************************************************/
27
28 #include "AliTOFRawDigit.h"
29
30
31 //******************************************************************************
32
33 ClassImp(AliTOFRawDigit)
34
35 //______________________________________________________________________________
36 AliTOFRawDigit::AliTOFRawDigit()
37 {
38 //
39 // Constructor of AliTOFRawDigit class  
40 //
41  
42   fTreeD     = 0;
43   fRawDigits = 0;  
44 }
45
46 //******************************************************************************
47