]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROdigit.cxx
Adding a bit that specifies if the online (beam-beam,beam-gas) flags are filled ...
[u/mrichter/AliRoot.git] / VZERO / AliVZEROdigit.cxx
CommitLineData
47890cd3 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
47890cd3 16#include "AliVZEROdigit.h"
b2501ea3 17
47890cd3 18ClassImp(AliVZEROdigit)
19
d0502ab2 20//__________________________________________________________________________
6905601e 21AliVZEROdigit::AliVZEROdigit()
0b2bea8b 22 :AliDigit(),
0b2bea8b 23 fPMNumber(0),
db0db003 24 fADC(0.),
25 fTime(0.),
26 fWidth(0.),
db0db003 27 fIntegrator(0)
0b2bea8b 28
6905601e 29{
30c4ff64 30 // Standard default
31 // constructor
32 for(Int_t iClock = 0; iClock < kNClocks; ++iClock) fChargeADC[iClock] = 0;
47890cd3 33}
34
d0502ab2 35//__________________________________________________________________________
db0db003 36AliVZEROdigit::AliVZEROdigit(Int_t PMnumber, Float_t adc, Float_t time)
0b2bea8b 37 :AliDigit(),
30c4ff64 38 fPMNumber(PMnumber),
39 fADC(adc),
40 fTime(time),
db0db003 41 fWidth(0.),
db0db003 42 fIntegrator(0)
6905601e 43{
30c4ff64 44 // Constructor
45 // so far used in raw->sdigits
46 for(Int_t iClock = 0; iClock < kNClocks; ++iClock) fChargeADC[iClock] = 0;
6905601e 47}
47890cd3 48
fad64858 49//__________________________________________________________________________
db0db003 50AliVZEROdigit::AliVZEROdigit(Int_t PMnumber, Float_t adc, Float_t time,
b6fd9c4a 51 Float_t width,
30c4ff64 52 Bool_t integrator,
53 Short_t *chargeADC,
54 Int_t *labels)
fad64858 55:AliDigit(),
fad64858 56fPMNumber(PMnumber),
57fADC(adc),
58fTime(time),
59fWidth(width),
fad64858 60fIntegrator(integrator)
61{
30c4ff64 62 // Constructor
63 // Used in the digitizer
64 if (chargeADC) {
65 for(Int_t iClock = 0; iClock < kNClocks; ++iClock)
66 fChargeADC[iClock] = chargeADC[iClock];
67 }
68 else {
69 for(Int_t iClock = 0; iClock < kNClocks; ++iClock)
70 fChargeADC[iClock] = 0;
71 }
72
73 if (labels)
74 for(Int_t iTrack = 0; iTrack < 3; ++iTrack) fTracks[iTrack] = labels[iTrack];
d0502ab2 75}
76
77//__________________________________________________________________________
8db56859 78void AliVZEROdigit::Print(const Option_t*) const
79{
d0502ab2 80 // Dumps digit object
8db56859 81 Dump();
82}