]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDclupid.cxx
Revert unwanted changes concerning PID in HLT
[u/mrichter/AliRoot.git] / PMD / AliPMDclupid.cxx
CommitLineData
7dcaf913 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 : March 22 2004 //
18// //
19// Store cluster information //
20// after discrimination //
21// //
22//-----------------------------------------------------//
23#include "Riostream.h"
24#include "Rtypes.h"
25#include "AliPMDclupid.h"
26#include <stdio.h>
27
28ClassImp(AliPMDclupid)
29
30AliPMDclupid::AliPMDclupid():
31 fDet(0),
b0e4d1e1 32 fSMN(0),
33 fTrNo(0),
34 fTrPid(0),
35 fMstatus(0)
7dcaf913 36{
37 // Default constructor
b0e4d1e1 38 for (Int_t i = 0; i < 7; i++)
7dcaf913 39 {
40 fClusData[i] = 0.;
41 }
42}
43// ------------------------------------------------------------------ //
b0e4d1e1 44AliPMDclupid::AliPMDclupid(Int_t idet, Int_t ismn, Int_t trno, Int_t trpid,
45 Int_t mstat, Float_t *clusdata):
a48edddd 46 fDet(idet),
b0e4d1e1 47 fSMN(ismn),
48 fTrNo(trno),
49 fTrPid(trpid),
50 fMstatus(mstat)
7dcaf913 51{
52 // Constructor
b0e4d1e1 53 for (Int_t i = 0; i < 7; i++)
7dcaf913 54 {
55 fClusData[i] = clusdata[i];
56 }
57}
58// ------------------------------------------------------------------ //
a48edddd 59AliPMDclupid::AliPMDclupid(AliPMDclupid *pmdclupid):
60 fDet(0),
b0e4d1e1 61 fSMN(0),
62 fTrNo(0),
63 fTrPid(0),
64 fMstatus(0)
a48edddd 65{
66 *this = *pmdclupid;
67}
68
69// ------------------------------------------------------------------ //
70AliPMDclupid::AliPMDclupid(const AliPMDclupid &pmdclupid):
71 TObject(pmdclupid),
72 fDet(pmdclupid.fDet),
b0e4d1e1 73 fSMN(pmdclupid.fSMN),
74 fTrNo(pmdclupid.fTrNo),
75 fTrPid(pmdclupid.fTrPid),
76 fMstatus(pmdclupid.fMstatus)
7dcaf913 77{
78 //Copy Constructor
b0e4d1e1 79 for(Int_t i=0; i<7; i++)
7dcaf913 80 {
a48edddd 81 fClusData[i] = pmdclupid.fClusData[i];
7dcaf913 82 }
7dcaf913 83}
84// ------------------------------------------------------------------ //
85AliPMDclupid & AliPMDclupid::operator=(const AliPMDclupid &pmdclupid)
86{
87 // Assignment operator
a48edddd 88 if(this != &pmdclupid)
7dcaf913 89 {
b0e4d1e1 90 fDet = pmdclupid.fDet;
91 fSMN = pmdclupid.fSMN;
92 fTrNo = pmdclupid.fTrNo;
93 fTrPid = pmdclupid.fTrPid;
94 fMstatus = pmdclupid.fMstatus;
95 for(Int_t i=0; i<7; i++)
a48edddd 96 {
97 fClusData[i] = pmdclupid.fClusData[i];
98 }
7dcaf913 99 }
100 return *this;
101}
102// ------------------------------------------------------------------ //
103AliPMDclupid::~AliPMDclupid()
104{
105 // Destructor
106}
107// ------------------------------------------------------------------ //
108Int_t AliPMDclupid::GetDetector() const
109{
110 return fDet;
111}
112// ------------------------------------------------------------------ //
113Int_t AliPMDclupid::GetSMN() const
114{
115 return fSMN;
116}
117// ------------------------------------------------------------------ //
b0e4d1e1 118Int_t AliPMDclupid::GetClusTrackNo() const
119{
120 return fTrNo;
121}
122// ------------------------------------------------------------------ //
123Int_t AliPMDclupid::GetClusTrackPid() const
124{
125 return fTrPid;
126}
127// ------------------------------------------------------------------ //
128Int_t AliPMDclupid::GetClusMatching() const
129{
130 return fMstatus;
131}
132// ------------------------------------------------------------------ //
7dcaf913 133Float_t AliPMDclupid::GetClusX() const
134{
135 return fClusData[0];
136}
137// ------------------------------------------------------------------ //
138Float_t AliPMDclupid::GetClusY() const
139{
140 return fClusData[1];
141}
142// ------------------------------------------------------------------ //
143Float_t AliPMDclupid::GetClusADC() const
144{
145 return fClusData[2];
146}
147// ------------------------------------------------------------------ //
148Float_t AliPMDclupid::GetClusCells() const
149{
150 return fClusData[3];
151}
152// ------------------------------------------------------------------ //
b0e4d1e1 153Float_t AliPMDclupid::GetClusSigmaX() const
7dcaf913 154{
155 return fClusData[4];
156}
157// ------------------------------------------------------------------ //
b0e4d1e1 158Float_t AliPMDclupid::GetClusSigmaY() const
7dcaf913 159{
160 return fClusData[5];
161}
b0e4d1e1 162// ------------------------------------------------------------------ //
163Float_t AliPMDclupid::GetClusPID() const
164{
165 return fClusData[6];
166}
7dcaf913 167
168