]> git.uio.no Git - u/mrichter/AliRoot.git/blame - AD/AliADdigit.cxx
Update to FindFASTJET.cmake; now accepts also for -DFASTJET= option
[u/mrichter/AliRoot.git] / AD / AliADdigit.cxx
CommitLineData
5e319bd5 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
18ClassImp(AliADdigit)
19
20//__________________________________________________________________________
21AliADdigit::AliADdigit()
22 :AliDigit(),
23 fModule(0),
24 fCell(0)
25
26{
27 // Standard default
28 // constructor
29}
30
31//__________________________________________________________________________
32AliADdigit::AliADdigit(Int_t module, Float_t cellPad)
33 : AliDigit(),
34 fModule(module),
35 fCell(cellPad)
36{
37}
38
39//__________________________________________________________________________
40AliADdigit::AliADdigit(Int_t* tracks, Int_t module, Float_t cellPad)
41 :AliDigit(tracks),
42 fModule(module),
43 fCell(cellPad)
44{
45}
46//__________________________________________________________________________
47AliADdigit::AliADdigit(Int_t* module, Float_t cellPad)
48 : AliDigit(module),
49 fModule(0),
50 fCell(cellPad)
51{
52}
53//__________________________________________________________________________
54AliADdigit::~AliADdigit()
55{
56 //
57 //
58 //
59}
60
61
62//__________________________________________________________________________
63void AliADdigit::Print(const Option_t*) const
64{
65 // Dumps digit object
66 Dump();
67}