]> git.uio.no Git - u/mrichter/AliRoot.git/blob - AD/AliADdigit.cxx
add qa check
[u/mrichter/AliRoot.git] / AD / AliADdigit.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
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  **************************************************************************/
15
16 #include "AliADdigit.h"
17
18 ClassImp(AliADdigit)
19
20 //__________________________________________________________________________
21 AliADdigit::AliADdigit()
22    :AliDigit(),
23     fModule(0),
24     fCell(0)
25
26 {
27   // Standard default
28   // constructor 
29 }
30
31 //__________________________________________________________________________
32 AliADdigit::AliADdigit(Int_t module, Float_t cellPad)
33         : AliDigit(),
34         fModule(module),
35         fCell(cellPad)
36 {
37 }
38
39 //__________________________________________________________________________
40 AliADdigit::AliADdigit(Int_t* tracks, Int_t  module, Float_t cellPad)
41         :AliDigit(tracks),
42         fModule(module),
43         fCell(cellPad)
44 {
45 }
46 //__________________________________________________________________________
47 AliADdigit::AliADdigit(Int_t* module, Float_t cellPad)
48         : AliDigit(module),
49           fModule(0),
50           fCell(cellPad)
51 {
52 }
53 //__________________________________________________________________________
54 AliADdigit::~AliADdigit()
55 {
56   //
57   //
58   //
59 }
60
61
62 //__________________________________________________________________________
63 void AliADdigit::Print(const Option_t*) const
64 {
65     // Dumps digit object
66     Dump();
67 }