]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDsdigit.cxx
Typo corrected (Sun)
[u/mrichter/AliRoot.git] / PMD / AliPMDsdigit.cxx
CommitLineData
ec3caada 1//-----------------------------------------------------//
2// //
3// Date : August 05 2003 //
4// used to store the info into TreeS //
5// //
6//-----------------------------------------------------//
7
8#include "AliPMDsdigit.h"
9#include <stdio.h>
10
11ClassImp(AliPMDsdigit)
12
13AliPMDsdigit::AliPMDsdigit()
14{
15 fTrNumber = 0;
16 fDet = 0;
17 fSMN = 0;
18 fCellNumber = 0;
19 fEdep = 0.;
20}
21
22AliPMDsdigit::AliPMDsdigit(Int_t trnumber, Int_t det, Int_t smn,
23 Int_t cellnumber, Float_t edep)
24{
25 fTrNumber = trnumber;
26 fDet = det;
27 fSMN = smn;
28 fCellNumber = cellnumber;
29 fEdep = edep;
30}
31AliPMDsdigit::~AliPMDsdigit()
32{
33
34}
35Int_t AliPMDsdigit::GetTrackNumber() const
36{
37 return fTrNumber;
38}
39Int_t AliPMDsdigit::GetDetector() const
40{
41 return fDet;
42}
43Int_t AliPMDsdigit::GetSMNumber() const
44{
45 return fSMN;
46}
47Int_t AliPMDsdigit::GetCellNumber() const
48{
49 return fCellNumber;
50}
51
52Float_t AliPMDsdigit::GetCellEdep() const
53{
54 return fEdep;
55}