]> git.uio.no Git - u/mrichter/AliRoot.git/blame - AD/AliADdigit.cxx
coverity fix
[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"
aa8120bb 17#include "AliADConst.h"
5e319bd5 18
19ClassImp(AliADdigit)
20
21//__________________________________________________________________________
22AliADdigit::AliADdigit()
23 :AliDigit(),
aa8120bb 24 fPMNumber(0),
25 fTime(0.),
26 fWidth(0.),
27 fIntegrator(0)
5e319bd5 28
29{
30 // Standard default
31 // constructor
aa8120bb 32 for(Int_t iClock = 0; iClock < kNClocks; ++iClock) fChargeADC[iClock] = 0;
5e319bd5 33}
34
35//__________________________________________________________________________
aa8120bb 36AliADdigit::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(),
42fPMNumber(PMnumber),
43fTime(time),
44fWidth(width),
45fIntegrator(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 }
5e319bd5 57
aa8120bb 58 if (labels)
59 for(Int_t iTrack = 0; iTrack < 3; ++iTrack) fTracks[iTrack] = labels[iTrack];
5e319bd5 60}
11509371 61//__________________________________________________________________________
62Bool_t AliADdigit::GetIntegratorFlag(Int_t clock)
63{
64if (clock >= 0 && clock < kNClocks){
65 if(clock%2 == 0) return fIntegrator;
66 else return !fIntegrator;
67 }
68
69else return kFALSE;
70}
5e319bd5 71//__________________________________________________________________________
72void AliADdigit::Print(const Option_t*) const
73{
74 // Dumps digit object
75 Dump();
76}