]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDhit.cxx
gain values initialised to -1
[u/mrichter/AliRoot.git] / PMD / AliPMDhit.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 #include "AliPMDhit.h"
17 #include <TClonesArray.h>
18 #include "Riostream.h"
19 #include "Rtypes.h"
20
21 ClassImp(AliPMDhit)
22   
23 //_____________________________________________________________________________
24 AliPMDhit::AliPMDhit():
25   fEnergy(0.)
26 {
27   for (Int_t i=0; i<10; i++)
28     {
29       fVolume[i] = 0;
30     }
31 }
32 //_____________________________________________________________________________
33 AliPMDhit::AliPMDhit(Int_t shunt,Int_t track, Int_t *vol, Float_t *hits):
34   AliHit(shunt, track),
35   fEnergy(hits[3])
36 {
37   //
38   // Add a PMD hit
39   //
40   Int_t i;
41   for (i=0;i<10;i++) fVolume[i] = vol[i];
42   fX=hits[0];
43   fY=hits[1];
44   fZ=hits[2];
45
46 }
47 //_____________________________________________________________________________
48 AliPMDhit::AliPMDhit(AliPMDhit* oldhit):
49   fEnergy(0.)
50 {
51   *this=*oldhit;
52 }
53
54 //_____________________________________________________________________________
55 int AliPMDhit::operator == (AliPMDhit &cell) const
56 {
57   Int_t i;
58   if(fTrack!=cell.GetTrack()) return 0;
59   for (i=0; i<10; i++) if(fVolume[i]!=cell.GetVolume(i)) return 0;
60   return 1;
61 }