]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSHit.cxx
New overloaded Make(). Changes in debug printouts
[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)
23
24 // --- ROOT system ---
25
26 // --- Standard library ---
27 #include <stdio.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <strstream.h>
31
32 // --- AliRoot header files ---
33 #include "AliPHOSHit.h"
34 #include "AliRun.h"
35 #include "AliConst.h"
36
37
38 ClassImp(AliPHOSHit)
39
40 //____________________________________________________________________________
41 AliPHOSHit::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
55 //____________________________________________________________________________
56 AliPHOSHit::AliPHOSHit(Int_t Shunt, Int_t primary, Int_t Track, Int_t id, Float_t *hits) : AliHit(Shunt, Track)
57 {
58   // ctor
59   
60    fId         = id ;
61    fTrack      = Track;
62    fX          = hits[0] ;
63    fY          = hits[1] ;
64    fZ          = hits[2] ;
65    fELOS       = hits[3] ;
66    fPrimary    = primary ;
67 }
68
69 //____________________________________________________________________________
70 Bool_t AliPHOSHit::operator==(AliPHOSHit const &rValue) const
71
72   // Two hits are identical if they have the same Id and originate from the same primary
73
74   Bool_t rv = kFALSE ; 
75
76   if ( fId == rValue.GetId() && fPrimary == rValue.GetPrimary() ) 
77     rv = kTRUE;
78   
79   return rv;
80 }
81
82 //____________________________________________________________________________
83 AliPHOSHit AliPHOSHit::operator+(const AliPHOSHit &rValue) const
84 {
85   // Add the energy of the hit
86   
87   AliPHOSHit added(*this);
88
89    added.fX    = rValue.fX  ;
90    added.fY    = rValue.fY ;
91    added.fZ    = rValue.fZ ;
92
93    added.fELOS += rValue.GetEnergy() ;
94     
95    return added;
96
97 }
98
99 //____________________________________________________________________________
100 ostream& operator << (ostream& out, const AliPHOSHit& hit) 
101 {
102   // Print out Id and energy 
103   
104   out << "AliPHOSHit = " << hit.GetId() << " " << hit.GetEnergy() << endl ;
105   return out ;
106 }
107
108
109