]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDdigit.cxx
Bug fix. DOS to Unix (M.Ivanov)
[u/mrichter/AliRoot.git] / PMD / AliPMDdigit.cxx
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 //                                                     //
17 //  Date   : August 05 2003                            //
18 //                                                     //
19 //  Store digits for ALICE-PMD                         //
20 //                                                     //
21 //-----------------------------------------------------//
22 #include "Riostream.h"
23 #include "Rtypes.h"
24 #include "AliPMDdigit.h"
25 #include <stdio.h>
26
27 ClassImp(AliPMDdigit)
28
29 AliPMDdigit::AliPMDdigit()
30 {
31   // Default Constructor
32   fTrNumber   = 0;
33   fDet        = 0;
34   fSMNumber   = 0;
35   fRow        = 0;
36   fColumn     = 0;
37   fADC        = 0.;
38 }
39
40 AliPMDdigit::AliPMDdigit(Int_t trnumber, Int_t det, Int_t smnumber, 
41                          Int_t irow, Int_t icol, Float_t adc)
42 {
43   // Constructor
44   fTrNumber   = trnumber;
45   fDet        = det;
46   fSMNumber   = smnumber;
47   fRow        = irow;
48   fColumn     = icol;
49   fADC        = adc;
50 }
51 AliPMDdigit::AliPMDdigit(const AliPMDdigit& pmddigit):TObject(pmddigit) {
52   //Copy Constructor 
53   if(&pmddigit == this) return;
54   this->fTrNumber   = pmddigit.fTrNumber;
55   this->fDet        = pmddigit.fDet;
56   this->fSMNumber   = pmddigit.fSMNumber;
57   this->fRow        = pmddigit.fRow;
58   this->fColumn     = pmddigit.fColumn;
59   this->fADC        = pmddigit.fADC;
60   return;
61 }
62 AliPMDdigit & AliPMDdigit::operator=(const AliPMDdigit& pmddigit) {
63   //Assignment operator 
64   if(&pmddigit == this) return *this;
65   this->fTrNumber   = pmddigit.fTrNumber;
66   this->fDet        = pmddigit.fDet;
67   this->fSMNumber   = pmddigit.fSMNumber;
68   this->fRow        = pmddigit.fRow;
69   this->fColumn     = pmddigit.fColumn;
70   this->fADC        = pmddigit.fADC;
71   return *this;
72 }
73 AliPMDdigit::~AliPMDdigit()
74 {
75   // Default destructor
76 }
77 Int_t AliPMDdigit::GetTrackNumber() const
78 {
79   return fTrNumber;
80 }
81 Int_t AliPMDdigit::GetDetector() const
82 {
83   return fDet;
84 }
85 Int_t AliPMDdigit::GetSMNumber() const
86 {
87   return fSMNumber;
88 }
89 Int_t AliPMDdigit::GetRow() const
90 {
91   return fRow;
92 }
93 Int_t AliPMDdigit::GetColumn() const
94 {
95   return fColumn;
96 }
97 Float_t AliPMDdigit::GetADC() const
98 {
99   return fADC;
100 }
101