1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 //_________________________________________________________________________
19 // Hits class for PHOS
20 // A hit in PHOS is the sum of all hits in a single crystal
22 //*-- Author: Maxime Volkov (RRC KI) & Yves Schutz (SUBATECH) & Dmitri Peressounko (RRC KI & SUBATECH)
24 // --- ROOT system ---
26 // --- Standard library ---
28 // --- AliRoot header files ---
29 #include "AliPHOSHit.h"
33 //____________________________________________________________________________
34 AliPHOSHit::AliPHOSHit(const AliPHOSHit & hit) :
35 AliHit(hit),fId(hit.fId),fELOS(hit.fELOS),fTime(hit.fTime)
40 //____________________________________________________________________________
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)
45 // Create a CPV hit object
55 //____________________________________________________________________________
56 Bool_t AliPHOSHit::operator==(AliPHOSHit const &rValue) const
58 // Two hits are identical if they have the same Id and originate from the same primary
62 if ( (fId == rValue.GetId()) && ( fTrack == rValue.GetPrimary() ) )
68 //____________________________________________________________________________
69 AliPHOSHit AliPHOSHit::operator+(const AliPHOSHit &rValue)
71 // Add the energy of the hit
73 fELOS += rValue.GetEnergy() ;
75 if(rValue.GetTime() < fTime)
76 fTime = rValue.GetTime() ;