]> git.uio.no Git - u/mrichter/AliRoot.git/blob - AD/AliADdigit.cxx
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[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 #include "AliADConst.h"
18
19 ClassImp(AliADdigit)
20
21 //__________________________________________________________________________
22 AliADdigit::AliADdigit()
23    :AliDigit(),
24     fPMNumber(0),
25     fTime(0.),
26     fWidth(0.),
27     fIntegrator(0)
28
29 {
30   // Standard default
31   // constructor 
32   for(Int_t iClock = 0; iClock < kNClocks; ++iClock) fChargeADC[iClock] = 0;
33 }
34
35 //__________________________________________________________________________
36 AliADdigit::AliADdigit(Int_t   PMnumber, Float_t time, 
37                              Float_t width,
38                              Bool_t integrator,
39                              Short_t *chargeADC,
40                              Int_t *labels)
41 :AliDigit(),
42 fPMNumber(PMnumber),
43 fTime(time),
44 fWidth(width),
45 fIntegrator(integrator)
46 {  
47   // Constructor
48   // Used in the digitizer
49   if (chargeADC) {
50     for(Int_t iClock = 0; iClock < kNClocks; ++iClock)
51       fChargeADC[iClock] = chargeADC[iClock];
52   }
53   else {
54     for(Int_t iClock = 0; iClock < kNClocks; ++iClock)
55       fChargeADC[iClock] = 0;
56   }
57
58   if (labels)
59     for(Int_t iTrack = 0; iTrack < 3; ++iTrack) fTracks[iTrack] = labels[iTrack];
60 }
61
62
63 //__________________________________________________________________________
64 void AliADdigit::Print(const Option_t*) const
65 {
66     // Dumps digit object
67     Dump();
68 }