]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSHit.cxx
Removed global's to comply with Coding Conventions
[u/mrichter/AliRoot.git] / PHOS / AliPHOSHit.cxx
CommitLineData
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
21//
22//*-- Author: Maxime Volkov (RRC KI) & Yves Schutz (SUBATECH)
49cd54c0 23
24// --- ROOT system ---
25
26// --- Standard library ---
de9ec31b 27#include <stdio.h>
28#include <string.h>
29#include <stdlib.h>
30#include <strstream.h>
49cd54c0 31
32// --- AliRoot header files ---
33#include "AliPHOSHit.h"
34#include "AliRun.h"
35#include "AliConst.h"
36
37
38ClassImp(AliPHOSHit)
39
31aa6d6c 40//____________________________________________________________________________
41AliPHOSHit::AliPHOSHit(const AliPHOSHit & hit)
42{
43 // copy ctor
44
45 fId = hit.fId ;
46 fELOS = hit.fELOS ;
47 fPrimary = hit.fPrimary ;
48 fTrack = hit.fTrack ;
49 fX = hit.fX ;
50 fY = hit.fY ;
51 fZ = hit.fZ ;
52
53}
54
49cd54c0 55//____________________________________________________________________________
ff4c968a 56AliPHOSHit::AliPHOSHit(Int_t primary, Int_t id, Float_t *hits)
49cd54c0 57{
b2a60966 58 // ctor
59
ff4c968a 60 fId = id ;
61 fX = hits[0] ;
62 fY = hits[1] ;
63 fZ = hits[2] ;
64 fELOS = hits[3] ;
65 fPrimary = primary ;
49cd54c0 66}
66380251 67AliPHOSHit::AliPHOSHit(Int_t Shunt, Int_t primary, Int_t Track, Int_t id, Float_t *hits) : AliHit(Shunt, Track)
fb689dbe 68{
69 // ctor
70
71 fId = id ;
72 fTrack = Track;
73 fX = hits[0] ;
74 fY = hits[1] ;
75 fZ = hits[2] ;
76 fELOS = hits[3] ;
77 fPrimary = primary ;
78}
79
80
49cd54c0 81
82//____________________________________________________________________________
83Bool_t AliPHOSHit::operator==(AliPHOSHit const &rValue) const
84{
b2a60966 85 // Two hits are identical if they have the same Id and originate from the same primary
86
ff4c968a 87 Bool_t rv = kFALSE ;
88
89 if ( fId == rValue.GetId() && fPrimary == rValue.GetPrimary() )
90 rv = kTRUE;
49cd54c0 91
ff4c968a 92 return rv;
49cd54c0 93}
94
95//____________________________________________________________________________
96AliPHOSHit AliPHOSHit::operator+(const AliPHOSHit &rValue) const
97{
b2a60966 98 // Add the energy of the hit
49cd54c0 99
100 AliPHOSHit added(*this);
101
102 added.fX = rValue.fX ;
103 added.fY = rValue.fY ;
104 added.fZ = rValue.fZ ;
105
ff4c968a 106 added.fELOS += rValue.GetEnergy() ;
107
ff4c968a 108 return added;
49cd54c0 109
110}
111
112//____________________________________________________________________________
113ostream& operator << (ostream& out, const AliPHOSHit& hit)
114{
b2a60966 115 // Print out Id and energy
116
49cd54c0 117 out << "AliPHOSHit = " << hit.GetId() << " " << hit.GetEnergy() << endl ;
118 return out ;
119}
120
121
122