]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCclusterKr.cxx
Possibility to getthe data from zip file
[u/mrichter/AliRoot.git] / TPC / AliTPCclusterKr.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 /* $Id: AliTPCclusterKr.cxx,v 1.7 2008/01/22 17:24:53 matyja Exp $ */
17
18 //-----------------------------------------------------------------
19 //           Implementation of the TPC Kr cluster class
20 //
21 // Origin: Adam Matyja, INP PAN, adam.matyja@ifj.edu.pl
22 //-----------------------------------------------------------------
23
24 #include "AliTPCclusterKr.h"
25 #include "TObject.h"
26 #include <vector>
27 #include "AliTPCvtpr.h"
28
29 ClassImp(AliTPCclusterKr)
30
31
32 AliTPCclusterKr::AliTPCclusterKr()
33 :fMax(),
34   fADCcluster(0),
35   fNsec(0),
36   fNpads(0),
37   fSize(0)
38 {
39 //
40 // default constructor
41 //
42 }
43
44 AliTPCclusterKr::AliTPCclusterKr(const AliTPCclusterKr &param)
45 :fMax(),
46   fADCcluster(0),
47   fNsec(0),
48   fNpads(0),
49   fSize(0)
50 {
51 //
52 // copy constructor
53 //
54   fADCcluster = param.fADCcluster;
55   fNsec  = param.fNsec ;
56   fNpads = param.fNpads;
57   fMax = param.fMax;
58   fCluster=param.fCluster;
59   fSize=param.fSize;
60
61
62 AliTPCclusterKr &AliTPCclusterKr::operator = (const AliTPCclusterKr & param)
63 {
64   fADCcluster = param.fADCcluster;
65   fNsec  = param.fNsec ;
66   fNpads = param.fNpads;
67   fMax = param.fMax;
68   fCluster=param.fCluster;
69   fSize=param.fSize;
70   return (*this);
71 }
72
73 AliTPCclusterKr::~AliTPCclusterKr()
74 {
75   //
76   // destructor
77   //
78 }