]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSHit.cxx
Compliance with Effective C++
[u/mrichter/AliRoot.git] / PHOS / AliPHOSHit.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$ */
17
18 //_________________________________________________________________________
19 //  Hits class for PHOS     
20 //  A hit in PHOS is the sum of all hits in a single crystal
21 //*--
22 //*-- Author: Maxime Volkov (RRC KI) & Yves Schutz (SUBATECH) & Dmitri Peressounko (RRC KI & SUBATECH)
23
24 // --- ROOT system ---
25
26 // --- Standard library ---
27
28 // --- AliRoot header files ---
29 #include "AliPHOSHit.h"
30
31 ClassImp(AliPHOSHit)
32   
33   //____________________________________________________________________________
34 AliPHOSHit::AliPHOSHit(const AliPHOSHit & hit) :
35   AliHit(hit),fId(0),fELOS(0),fTime(0)
36 {
37   // copy ctor
38   hit.Copy(*this);
39
40
41 //____________________________________________________________________________
42 AliPHOSHit::AliPHOSHit(Int_t shunt, Int_t track, Int_t id, Float_t *hits) : 
43   AliHit(shunt, track),fId(0),fELOS(0),fTime(0)
44 {
45   //
46   // Create a CPV hit object
47   //
48   
49   fX          = hits[0] ;
50   fY          = hits[1] ;
51   fZ          = hits[2] ;
52   fTime       = hits[3] ;
53   fId         = id ;
54   fELOS       = hits[4] ;
55 }
56 //____________________________________________________________________________
57 Bool_t AliPHOSHit::operator==(AliPHOSHit const &rValue) const
58
59   // Two hits are identical if they have the same Id and originate from the same primary 
60
61   Bool_t rv = kFALSE ; 
62
63   if ( (fId == rValue.GetId()) && ( fTrack == rValue.GetPrimary() ) )
64     rv = kTRUE;
65   
66   return rv;
67 }
68
69 //____________________________________________________________________________
70 AliPHOSHit AliPHOSHit::operator+(const AliPHOSHit &rValue)
71 {
72   // Add the energy of the hit
73   
74   fELOS += rValue.GetEnergy() ;
75
76   if(rValue.GetTime() < fTime)
77     fTime = rValue.GetTime() ;
78     
79    return *this;
80
81 }
82