]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFRawDigit.h
Pointers initialised to 0 in the default constructor
[u/mrichter/AliRoot.git] / TOF / AliTOFRawDigit.h
1 ////////////////////////////////////////////////
2 //  Digitization class for set: TOF           //
3 //  AliTOFRawDigit  class                     //
4 //  Interface                                 // 
5 //  Description                               //
6 //*-- Authors: Pierella, Seganti, Vicinanza   //
7 //    (Bologna and Salerno University)        //
8 ////////////////////////////////////////////////
9
10
11 #ifndef ALITOFRAWDIGIT_H
12 #define ALITOFRAWDIGIT_H
13
14 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
15  * See cxx source for full Copyright notice                               */
16
17
18 #include "TObject.h"
19 #include "TClonesArray.h"
20
21 //_______________________________________________________
22 class AliTOFRawDigit : public TObject{
23
24 public:
25   AliTOFRawDigit(); 
26   virtual ~AliTOFRawDigit(){};
27   
28 protected:
29   Int_t fTreeD;     // class under construction
30   Int_t fRawDigits; // class under construction
31     
32     
33   ClassDef(AliTOFRawDigit,2) // TOF Digit in rawdata format
34 };
35
36 #endif /* ALITOFRAWDIGIT_H */