]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - 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
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 "AliVZEROdigit.h"
17
18ClassImp(AliVZEROdigit)
19
20//__________________________________________________________________________
21AliVZEROdigit::AliVZEROdigit()
22 :AliDigit(),
23 fPMNumber(0),
24 fADC(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//__________________________________________________________________________
36AliVZEROdigit::AliVZEROdigit(Int_t PMnumber, Float_t adc, Float_t time)
37 :AliDigit(),
38 fPMNumber(PMnumber),
39 fADC(adc),
40 fTime(time),
41 fWidth(0.),
42 fIntegrator(0)
43{
44 // Constructor
45 // so far used in raw->sdigits
46 for(Int_t iClock = 0; iClock < kNClocks; ++iClock) fChargeADC[iClock] = 0;
47}
48
49//__________________________________________________________________________
50AliVZEROdigit::AliVZEROdigit(Int_t PMnumber, Float_t adc, Float_t time,
51 Float_t width,
52 Bool_t integrator,
53 Short_t *chargeADC,
54 Int_t *labels)
55:AliDigit(),
56fPMNumber(PMnumber),
57fADC(adc),
58fTime(time),
59fWidth(width),
60fIntegrator(integrator)
61{
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];
75}
76
77//__________________________________________________________________________
78void AliVZEROdigit::Print(const Option_t*) const
79{
80 // Dumps digit object
81 Dump();
82}