]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDsdigit.h
Remove minor warning
[u/mrichter/AliRoot.git] / PMD / AliPMDsdigit.h
CommitLineData
ec3caada 1#ifndef PMDsdigit_H
2#define PMDsdigit_H
3//-----------------------------------------------------//
4// //
5// //
6// Date : August 05 2003 //
7// used to store the info into TreeS //
8// //
9//-----------------------------------------------------//
10
11#include "Riostream.h"
12#include "Rtypes.h"
13#include "TObject.h"
14#include "TClonesArray.h"
15
16class AliPMDsdigit : public TObject
17{
18
19 protected:
20
21 Int_t fTrNumber, fDet, fSMN, fCellNumber;
22 Float_t fEdep;
23
24 public:
25 AliPMDsdigit();
26 AliPMDsdigit(Int_t /* trnumber */, Int_t /* det */, Int_t /* smn */,
27 Int_t /* cellnumber */, Float_t /* edep */);
28 AliPMDsdigit(AliPMDsdigit *pmdsdigit) {*this = *pmdsdigit;}
29
30 virtual ~AliPMDsdigit();
31
32 Int_t GetTrackNumber() const;
33 Int_t GetDetector() const;
34 Int_t GetSMNumber() const;
35 Int_t GetCellNumber() const;
36 Float_t GetCellEdep() const;
37
38 ClassDef(AliPMDsdigit,1)
39};
40
41#endif