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