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