]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDpixel.cxx
Functions renamed to get a prefix PHOS
[u/mrichter/AliRoot.git] / TRD / AliTRDpixel.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 $Log$
18 Revision 1.3.2.2  2000/10/17 02:27:34  cblume
19 Get rid of global constants
20
21 Revision 1.3.2.1  2000/10/04 16:34:58  cblume
22 Replace include files by forward declarations
23
24 Revision 1.5  2000/06/09 11:10:07  cblume
25 Compiler warnings and coding conventions, next round
26
27 Revision 1.4  2000/06/08 18:32:58  cblume
28 Make code compliant to coding conventions
29
30 Revision 1.3  2000/02/28 19:10:26  cblume
31 Include the new TRD classes
32
33 Revision 1.2.4.1  2000/02/28 17:59:27  cblume
34 Initialize fTrack with -1
35
36 Revision 1.2  1999/09/29 09:24:35  fca
37 Introduction of the Copyright and cvs Log
38
39 */
40
41 ///////////////////////////////////////////////////////////////////////////////
42 //                                                                           //
43 //  Contains the information for one TRD pixel                               //
44 //                                                                           //
45 ///////////////////////////////////////////////////////////////////////////////
46
47 #include "AliTRDpixel.h"
48
49 ClassImp(AliTRDpixel)
50
51 //_____________________________________________________________________________
52
53   // Maximal number of stored tracks
54   const Int_t AliTRDpixel::fgkNTrackPixel = kNTrackPixel;
55
56 //_____________________________________________________________________________
57 AliTRDpixel::AliTRDpixel():TObject()
58 {
59   //
60   // Create a TRD pixel
61   // 
62
63   fSignal   =  0;
64   fTrack[0] = -1;
65   fTrack[1] = -1;
66   fTrack[2] = -1;
67
68 }
69
70 //_____________________________________________________________________________
71 AliTRDpixel::~AliTRDpixel()
72 {
73   //
74   // AliTRDpixel destructor
75   //
76
77 }
78
79 //_____________________________________________________________________________
80 void AliTRDpixel::Copy(TObject &p)
81 {
82   //
83   // Copy function
84   //
85
86   ((AliTRDpixel &) p).fSignal = fSignal;
87   for (Int_t iTrackPixel = 0; iTrackPixel < kNTrackPixel; iTrackPixel++) {
88     ((AliTRDpixel &) p).fTrack[iTrackPixel] = fTrack[iTrackPixel];
89   }
90
91 }